Whamcloud - gitweb
LU-15210 tests: fix sanity-lnet to handle duplicate IP
[fs/lustre-release.git] / lustre / tests / chownmany.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  */
26 /*
27  * This file is part of Lustre, http://www.lustre.org/
28  */
29
30 #include <stdio.h>
31 #include <sys/types.h>
32 #include <sys/stat.h>
33 #include <time.h>
34 #include <errno.h>
35 #include <string.h>
36 #include <fcntl.h>
37 #include <unistd.h>
38 #include <stdlib.h>
39
40 void usage(char *prog)
41 {
42         printf("usage: %s owner filenamefmt count\n", prog);
43         printf("       %s owner filenamefmt start count\n", prog);
44 }
45
46 int main(int argc, char **argv)
47 {
48         int i, rc = 0, mask = 0;
49         char format[4096], *fmt;
50         char filename[4096];
51         long start, last;
52         long begin = 0, count;
53
54         if (argc < 4 || argc > 5) {
55                 usage(argv[0]);
56                 return 1;
57         }
58
59         mask = strtol(argv[1], NULL, 0);
60
61         if (strlen(argv[2]) > 4080) {
62                 printf("name too long\n");
63                 return 1;
64         }
65
66         start = last = time(0);
67
68         if (argc == 4) {
69                 count = strtol(argv[3], NULL, 0);
70                 if (count < 1) {
71                         printf("count must be at least one\n");
72                         return 1;
73                 }
74         } else {
75                 begin = strtol(argv[3], NULL, 0);
76                 count = strtol(argv[4], NULL, 0);
77         }
78
79         if (strchr(argv[2], '%')) {
80                 fmt = argv[2];
81         } else {
82                 sprintf(format, "%s%%d", argv[2]);
83                 fmt = format;
84         }
85         for (i = 0; i < count; i++, begin++) {
86                 sprintf(filename, fmt, begin);
87                 rc = chown(filename, mask, -1);
88                 if (rc) {
89                         printf("chown (%s) error: %s\n",
90                                filename, strerror(errno));
91                         rc = errno;
92                         break;
93                 }
94                 if ((i % 10000) == 0) {
95                         printf(" - chowned %d (time %ld ; total %ld ; last %ld)\n", i, time(0), time(0) - start,
96                                time(0) - last);
97                         last = time(0);
98                 }
99         }
100         printf("total: %d chowns in %ld seconds: %f chowns/second\n", i,
101                time(0) - start, ((float)i / (time(0) - start)));
102
103         return rc;
104 }