Whamcloud - gitweb
14ea0a2e8fab63863174dab3be1173af8b363721
[fs/lustre-release.git] / lustre / utils / lfs.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/utils/lfs.c
37  *
38  * Author: Peter J. Braam <braam@clusterfs.com>
39  * Author: Phil Schwan <phil@clusterfs.com>
40  * Author: Robert Read <rread@clusterfs.com>
41  */
42
43 /* for O_DIRECTORY */
44 #ifndef _GNU_SOURCE
45 #define _GNU_SOURCE
46 #endif
47
48 #include <stdlib.h>
49 #include <stdio.h>
50 #include <getopt.h>
51 #include <string.h>
52 #include <mntent.h>
53 #include <errno.h>
54 #include <pwd.h>
55 #include <grp.h>
56 #include <sys/types.h>
57 #include <sys/stat.h>
58 #include <fcntl.h>
59 #include <dirent.h>
60 #include <time.h>
61 #include <ctype.h>
62 #ifdef HAVE_SYS_QUOTA_H
63 # include <sys/quota.h>
64 #endif
65
66 /* For dirname() */
67 #include <libgen.h>
68
69 #include <lnet/api-support.h>
70 #include <lnet/lnetctl.h>
71
72 #include <liblustre.h>
73 #include <lustre/lustre_idl.h>
74 #include <lustre/liblustreapi.h>
75 #include <lustre/lustre_user.h>
76 #include <lustre_quota.h>
77
78 #include <libcfs/libcfsutil.h>
79 #include "obdctl.h"
80
81 unsigned int libcfs_subsystem_debug = 0;
82
83 /* all functions */
84 static int lfs_setstripe(int argc, char **argv);
85 static int lfs_find(int argc, char **argv);
86 static int lfs_getstripe(int argc, char **argv);
87 static int lfs_osts(int argc, char **argv);
88 static int lfs_df(int argc, char **argv);
89 static int lfs_check(int argc, char **argv);
90 static int lfs_catinfo(int argc, char **argv);
91 #ifdef HAVE_SYS_QUOTA_H
92 static int lfs_quotachown(int argc, char **argv);
93 static int lfs_quotacheck(int argc, char **argv);
94 static int lfs_quotaon(int argc, char **argv);
95 static int lfs_quotaoff(int argc, char **argv);
96 static int lfs_setquota(int argc, char **argv);
97 static int lfs_quota(int argc, char **argv);
98 static int lfs_quotainv(int argc, char **argv);
99 #endif
100 static int lfs_flushctx(int argc, char **argv);
101 static int lfs_join(int argc, char **argv);
102 static int lfs_lsetfacl(int argc, char **argv);
103 static int lfs_lgetfacl(int argc, char **argv);
104 static int lfs_rsetfacl(int argc, char **argv);
105 static int lfs_rgetfacl(int argc, char **argv);
106 static int lfs_cp(int argc, char **argv);
107 static int lfs_ls(int argc, char **argv);
108 static int lfs_poollist(int argc, char **argv);
109 static int lfs_changelog(int argc, char **argv);
110 static int lfs_changelog_clear(int argc, char **argv);
111 static int lfs_fid2path(int argc, char **argv);
112 static int lfs_path2fid(int argc, char **argv);
113
114 /* all avaialable commands */
115 command_t cmdlist[] = {
116         {"setstripe", lfs_setstripe, 0,
117          "Create a new file with a specific striping pattern or\n"
118          "set the default striping pattern on an existing directory or\n"
119          "delete the default striping pattern from an existing directory\n"
120          "usage: setstripe [--size|-s stripe_size] [--offset|-o start_ost]\n"
121          "                 [--count|-c stripe_count] [--pool|-p <pool>]\n"
122          "                 <dir|filename>\n"
123          "       or \n"
124          "       setstripe -d <dir>   (to delete default striping)\n"
125          "\tstripe_size:  Number of bytes on each OST (0 filesystem default)\n"
126          "\t              Can be specified with k, m or g (in KB, MB and GB\n"
127          "\t              respectively)\n"
128          "\tstart_ost:    OST index of first stripe (-1 filesystem default)\n"
129          "\tstripe_count: Number of OSTs to stripe over (0 default, -1 all)\n"
130          "\tpool:         Name of OST pool"},
131         {"getstripe", lfs_getstripe, 0,
132          "To list the striping info for a given file or files in a\n"
133          "directory or recursively for all files in a directory tree.\n"
134          "usage: getstripe [--obd|-O <uuid>] [--quiet | -q] [--verbose | -v]\n"
135          "                 [--count | -c ] [--size | -s ] [--index | -i ]\n"
136          "                 [--offset | -o ] [--pool | -p ] [--directory | -d]\n"
137          "                 [--mdt | -M] [--recursive | -r] <dir|file> ..."},
138         {"pool_list", lfs_poollist, 0,
139          "List pools or pool OSTs\n"
140          "usage: pool_list <fsname>[.<pool>] | <pathname>\n"},
141         {"find", lfs_find, 0,
142          "To find files that match given parameters recursively in a directory tree.\n"
143          "usage: find <dir|file> ... \n"
144          "     [[!] --atime|-A [+-]N] [[!] --mtime|-M [+-]N] [[!] --ctime|-C [+-]N]\n"
145          "     [--maxdepth|-D N] [[!] --name|-n <pattern>] [--print0|-P]\n"
146          "     [--print|-p] [--obd|-O <uuid[s]>] [[!] --size|-s [+-]N[bkMGTP]]\n"
147          "     [[!] --type|-t <filetype>] [[!] --gid|-g|--group|-G <gid>|<gname>]\n"
148          "     [[!] --uid|-u|--user|-U <uid>|<uname>]\n"
149          "     [[!] --pool <pool>]\n"
150          "\t !: used before an option indicates 'NOT' the requested attribute\n"
151          "\t -: used before an value indicates 'AT MOST' the requested value\n"
152          "\t +: used before an option indicates 'AT LEAST' the requested value\n"},
153         {"check", lfs_check, 0,
154          "Display the status of MDS or OSTs (as specified in the command)\n"
155          "or all the servers (MDS and OSTs).\n"
156          "usage: check <osts|mds|servers>"},
157         {"catinfo", lfs_catinfo, 0,
158          "Show information of specified type logs.\n"
159          "usage: catinfo {keyword} [node name]\n"
160          "\tkeywords are one of followings: config, deletions.\n"
161          "\tnode name must be provided when use keyword config."},
162         {"join", lfs_join, 0,
163          "join two lustre files into one.\n"
164          "obsolete, HEAD does not support it anymore.\n"},
165         {"osts", lfs_osts, 0, "osts"},
166         {"df", lfs_df, 0,
167          "report filesystem disk space usage or inodes usage"
168          "of each MDS and all OSDs or a batch belonging to a specific pool .\n"
169          "Usage: df [-i] [-h] [--pool|-p <fsname>[.<pool>] [path]"},
170 #ifdef HAVE_SYS_QUOTA_H
171         {"quotachown",lfs_quotachown, 0,
172          "Change files' owner or group on the specified filesystem.\n"
173          "usage: quotachown [-i] <filesystem>\n"
174          "\t-i: ignore error if file is not exist\n"},
175         {"quotacheck", lfs_quotacheck, 0,
176          "Scan the specified filesystem for disk usage, and create,\n"
177          "or update quota files.\n"
178          "usage: quotacheck [ -ug ] <filesystem>"},
179         {"quotaon", lfs_quotaon, 0, "Turn filesystem quotas on.\n"
180          "usage: quotaon [ -ugf ] <filesystem>"},
181         {"quotaoff", lfs_quotaoff, 0, "Turn filesystem quotas off.\n"
182          "usage: quotaoff [ -ug ] <filesystem>"},
183         {"setquota", lfs_setquota, 0, "Set filesystem quotas.\n"
184          "usage: setquota <-u|-g> <uname>|<uid>|<gname>|<gid>\n"
185          "                -b <block-softlimit> -B <block-hardlimit>\n"
186          "                -i <inode-softlimit> -I <inode-hardlimit> <filesystem>\n"
187          "       setquota -t <-u|-g> <block-grace> <inode-grace> <filesystem>\n"
188          "       setquota <-u|--user|-g|--group> <uname>|<uid>|<gname>|<gid>\n"
189          "                [--block-softlimit <block-softlimit>]\n"
190          "                [--block-hardlimit <block-hardlimit>]\n"
191          "                [--inode-softlimit <inode-softlimit>]\n"
192          "                [--inode-hardlimit <inode-hardlimit>] <filesystem>\n"
193          "       setquota [-t] <-u|--user|-g|--group>\n"
194          "                [--block-grace <block-grace>]\n"
195          "                [--inode-grace <inode-grace>] <filesystem>\n"
196          "       -b can be used instead of --block-softlimit/--block-grace\n"
197          "       -B can be used instead of --block-hardlimit\n"
198          "       -i can be used instead of --inode-softlimit/--inode-grace\n"
199          "       -I can be used instead of --inode-hardlimit"},
200         {"quota", lfs_quota, 0, "Display disk usage and limits.\n"
201          "usage: quota [-v] [-o obd_uuid|-i mdt_idx|-I ost_idx]\n" 
202          "             [<-u|-g> <uname>|<uid>|<gname>|<gid>] <filesystem>\n"
203          "       quota [-o obd_uuid|-i mdt_idx|-I ost_idx] -t <-u|-g> <filesystem>"},
204         {"quotainv", lfs_quotainv, 0, "Invalidate quota data.\n"
205          "usage: quotainv [-u|-g] <filesystem>"},
206 #endif
207         {"flushctx", lfs_flushctx, 0, "Flush security context for current user.\n"
208          "usage: flushctx [-k] [mountpoint...]"},
209         {"lsetfacl", lfs_lsetfacl, 0,
210          "Remote user setfacl for user/group on the same remote client.\n"
211          "usage: lsetfacl [-bkndRLPvh] [{-m|-x} acl_spec] [{-M|-X} acl_file] file ..."},
212         {"lgetfacl", lfs_lgetfacl, 0,
213          "Remote user getfacl for user/group on the same remote client.\n"
214          "usage: lgetfacl [-dRLPvh] file ..."},
215         {"rsetfacl", lfs_rsetfacl, 0,
216          "Remote user setfacl for user/group on other clients.\n"
217          "usage: rsetfacl [-bkndRLPvh] [{-m|-x} acl_spec] [{-M|-X} acl_file] file ..."},
218         {"rgetfacl", lfs_rgetfacl, 0,
219          "Remote user getfacl for user/group on other clients.\n"
220          "usage: rgetfacl [-dRLPvh] file ..."},
221         {"cp", lfs_cp, 0,
222          "Remote user copy files and directories.\n"
223          "usage: cp [OPTION]... [-T] SOURCE DEST\n\tcp [OPTION]... SOURCE... DIRECTORY\n\tcp [OPTION]... -t DIRECTORY SOURCE..."},
224         {"ls", lfs_ls, 0,
225          "Remote user list directory contents.\n"
226          "usage: ls [OPTION]... [FILE]..."},
227         {"changelog", lfs_changelog, 0,
228          "Show the metadata changes on an MDT."
229          "\nusage: changelog <mdtname> [startrec [endrec]]"},
230         {"changelog_clear", lfs_changelog_clear, 0,
231          "Indicate that old changelog records up to <endrec> are no longer of "
232          "interest to consumer <id>, allowing the system to free up space.\n"
233          "An <endrec> of 0 means all records.\n"
234          "usage: changelog_clear <mdtname> <id> <endrec>"},
235         {"fid2path", lfs_fid2path, 0,
236          "Resolve the full path to a given FID. For a specific hardlink "
237          "specify link number <linkno>.\n"
238          /* "For a historical name, specify changelog record <recno>.\n" */
239          "usage: fid2path <fsname|rootpath> <fid> [--link <linkno>]"
240                 /*[--rec <recno>]*/},
241         {"path2fid", lfs_path2fid, 0, "Display the fid for a given path.\n"
242          "usage: path2fid <path>"},
243         {"help", Parser_help, 0, "help"},
244         {"exit", Parser_quit, 0, "quit"},
245         {"quit", Parser_quit, 0, "quit"},
246         { 0, 0, 0, NULL }
247 };
248
249 static int isnumber(const char *str)
250 {
251         const char *ptr;
252
253         if (str[0] != '-' && !isdigit(str[0]))
254                 return 0;
255
256         for (ptr = str + 1; *ptr != '\0'; ptr++) {
257                 if (!isdigit(*ptr))
258                         return 0;
259         }
260
261         return 1;
262 }
263
264 /* functions */
265 static int lfs_setstripe(int argc, char **argv)
266 {
267         char *fname;
268         int result;
269         unsigned long long st_size;
270         int  st_offset, st_count;
271         char *end;
272         int c;
273         int delete = 0;
274         char *stripe_size_arg = NULL;
275         char *stripe_off_arg = NULL;
276         char *stripe_count_arg = NULL;
277         char *pool_name_arg = NULL;
278         unsigned long long size_units;
279
280         struct option long_opts[] = {
281                 {"size",        required_argument, 0, 's'},
282                 {"count",       required_argument, 0, 'c'},
283                 {"index",       required_argument, 0, 'i'},
284                 {"offset",      required_argument, 0, 'o'},
285                 {"pool",        required_argument, 0, 'p'},
286                 {"delete",      no_argument,       0, 'd'},
287                 {0, 0, 0, 0}
288         };
289
290         st_size = 0;
291         st_offset = -1;
292         st_count = 0;
293
294 #if LUSTRE_VERSION < OBD_OCD_VERSION(2,1,0,0)
295         if (argc == 5 && argv[1][0] != '-' &&
296             isnumber(argv[2]) && isnumber(argv[3]) && isnumber(argv[4])) {
297                 fprintf(stderr, "warning: deprecated usage of setstripe "
298                         "positional parameters.  Use -c, -i, -s instead.\n");
299                 /* for compatibility with the existing positional parameter
300                  * usage */
301                 fname = argv[1];
302                 stripe_size_arg = argv[2];
303                 stripe_off_arg = argv[3];
304                 stripe_count_arg = argv[4];
305                 optind = 4;
306         } else
307 #else
308 #warning "remove obsolete positional parameter code"
309 #endif
310         {
311                 optind = 0;
312                 while ((c = getopt_long(argc, argv, "c:di:o:s:p:",
313                                         long_opts, NULL)) >= 0) {
314                         switch (c) {
315                         case 0:
316                                 /* Long options. */
317                                 break;
318                         case 'c':
319                                 stripe_count_arg = optarg;
320                                 break;
321                         case 'd':
322                                 /* delete the default striping pattern */
323                                 delete = 1;
324                                 break;
325                         case 'i':
326                         case 'o':
327                                 stripe_off_arg = optarg;
328                                 break;
329                         case 's':
330                                 stripe_size_arg = optarg;
331                                 break;
332                         case 'p':
333                                 pool_name_arg = optarg;
334                                 break;
335                         case '?':
336                                 return CMD_HELP;
337                         default:
338                                 fprintf(stderr, "error: %s: option '%s' "
339                                                 "unrecognized\n",
340                                                 argv[0], argv[optind - 1]);
341                                 return CMD_HELP;
342                         }
343                 }
344
345                 fname = argv[optind];
346
347                 if (delete &&
348                     (stripe_size_arg != NULL || stripe_off_arg != NULL ||
349                      stripe_count_arg != NULL || pool_name_arg != NULL)) {
350                         fprintf(stderr, "error: %s: cannot specify -d with "
351                                         "-s, -c -o or -p options\n",
352                                         argv[0]);
353                         return CMD_HELP;
354                 }
355         }
356
357         if (optind == argc) {
358                 fprintf(stderr, "error: %s: missing filename|dirname\n",
359                         argv[0]);
360                 return CMD_HELP;
361         }
362
363         /* get the stripe size */
364         if (stripe_size_arg != NULL) {
365                 result = parse_size(stripe_size_arg, &st_size, &size_units, 0);
366                 if (result) {
367                         fprintf(stderr, "error: %s: bad size '%s'\n",
368                                 argv[0], stripe_size_arg);
369                         return result;
370                 }
371         }
372         /* get the stripe offset */
373         if (stripe_off_arg != NULL) {
374                 st_offset = strtoul(stripe_off_arg, &end, 0);
375                 if (*end != '\0') {
376                         fprintf(stderr, "error: %s: bad stripe offset '%s'\n",
377                                 argv[0], stripe_off_arg);
378                         return CMD_HELP;
379                 }
380         }
381         /* get the stripe count */
382         if (stripe_count_arg != NULL) {
383                 st_count = strtoul(stripe_count_arg, &end, 0);
384                 if (*end != '\0') {
385                         fprintf(stderr, "error: %s: bad stripe count '%s'\n",
386                                 argv[0], stripe_count_arg);
387                         return CMD_HELP;
388                 }
389         }
390
391         do {
392                 result = llapi_file_create_pool(fname, st_size, st_offset,
393                                                 st_count, 0, pool_name_arg);
394                 if (result) {
395                         fprintf(stderr,"error: %s: create stripe file '%s' "
396                                 "failed\n", argv[0], fname);
397                         break;
398                 }
399                 fname = argv[++optind];
400         } while (fname != NULL);
401
402         return result;
403 }
404
405 static int lfs_poollist(int argc, char **argv)
406 {
407         if (argc != 2)
408                 return CMD_HELP;
409
410         return llapi_poollist(argv[1]);
411 }
412
413 static int set_time(time_t *time, time_t *set, char *str)
414 {
415         time_t t;
416         int res = 0;
417
418         if (str[0] == '+')
419                 res = 1;
420         else if (str[0] == '-')
421                 res = -1;
422
423         if (res)
424                 str++;
425
426         t = strtol(str, NULL, 0);
427         if (*time < t * 24 * 60 * 60) {
428                 if (res)
429                         str--;
430                 fprintf(stderr, "Wrong time '%s' is specified.\n", str);
431                 return INT_MAX;
432         }
433
434         *set = *time - t * 24 * 60 * 60;
435         return res;
436 }
437
438 #define USER 0
439 #define GROUP 1
440
441 static int name2id(unsigned int *id, char *name, int type)
442 {
443         if (type == USER) {
444                 struct passwd *entry;
445
446                 if (!(entry = getpwnam(name))) {
447                         if (!errno)
448                                 errno = ENOENT;
449                         return -1;
450                 }
451
452                 *id = entry->pw_uid;
453         } else {
454                 struct group *entry;
455
456                 if (!(entry = getgrnam(name))) {
457                         if (!errno)
458                                 errno = ENOENT;
459                         return -1;
460                 }
461
462                 *id = entry->gr_gid;
463         }
464
465         return 0;
466 }
467
468 static int id2name(char **name, unsigned int id, int type)
469 {
470         if (type == USER) {
471                 struct passwd *entry;
472
473                 if (!(entry = getpwuid(id))) {
474                         if (!errno)
475                                 errno = ENOENT;
476                         return -1;
477                 }
478
479                 *name = entry->pw_name;
480         } else {
481                 struct group *entry;
482
483                 if (!(entry = getgrgid(id))) {
484                         if (!errno)
485                                 errno = ENOENT;
486                         return -1;
487                 }
488
489                 *name = entry->gr_name;
490         }
491
492         return 0;
493 }
494
495 #define FIND_POOL_OPT 3
496 static int lfs_find(int argc, char **argv)
497 {
498         int new_fashion = 1;
499         int c, ret;
500         time_t t;
501         struct find_param param = { .maxdepth = -1 };
502         char str[1024];
503         struct option long_opts[] = {
504                 /* New find options. */
505                 {"atime",     required_argument, 0, 'A'},
506                 {"ctime",     required_argument, 0, 'C'},
507                 {"mtime",     required_argument, 0, 'M'},
508                 {"maxdepth",  required_argument, 0, 'D'},
509                 {"gid",       required_argument, 0, 'g'},
510                 {"group",     required_argument, 0, 'G'},
511                 {"uid",       required_argument, 0, 'u'},
512                 {"user",      required_argument, 0, 'U'},
513                 {"name",      required_argument, 0, 'n'},
514                 /* no short option for pool, p/P already used */
515                 {"pool",      required_argument, 0, FIND_POOL_OPT},
516                 /* --obd is considered as a new option. */
517                 {"obd",       required_argument, 0, 'O'},
518                 {"ost",       required_argument, 0, 'O'},
519                 {"print",     no_argument,       0, 'P'},
520                 {"print0",    no_argument,       0, 'p'},
521                 /* Old find options. */
522                 {"quiet",     no_argument,       0, 'q'},
523                 {"recursive", no_argument,       0, 'r'},
524                 {"size",      required_argument, 0, 's'},
525                 {"type",      required_argument, 0, 't'},
526                 {"verbose",   no_argument,       0, 'v'},
527                 {0, 0, 0, 0}
528         };
529         int pathstart = -1;
530         int pathend = -1;
531         int neg_opt = 0;
532         time_t *xtime;
533         int *xsign;
534         int isoption;
535         char *endptr;
536
537         time(&t);
538
539         optind = 0;
540         /* when getopt_long_only() hits '!' it returns 1, puts "!" in optarg */
541         while ((c = getopt_long_only(argc,argv,"-A:C:D:g:G:M:n:PpO:qrs:t:u:U:v",
542                                      long_opts, NULL)) >= 0) {
543                 xtime = NULL;
544                 xsign = NULL;
545                 if (neg_opt)
546                         --neg_opt;
547                 /* '!' is part of option */
548                 /* when getopt_long_only() finds a string which is not
549                  * an option nor a known option argument it returns 1
550                  * in that case if we already have found pathstart and pathend
551                  * (i.e. we have the list of pathnames),
552                  * the only supported value is "!"
553                  */
554                 isoption = (c != 1) || (strcmp(optarg, "!") == 0);
555                 if (!isoption && pathend != -1) {
556                         fprintf(stderr, "err: %s: filename|dirname must either "
557                                         "precede options or follow options\n",
558                                         argv[0]);
559                         return CMD_HELP;
560                 }
561                 if (!isoption && pathstart == -1)
562                         pathstart = optind - 1;
563                 if (isoption && pathstart != -1 && pathend == -1) {
564                         pathend = optind - 2;
565                         if ((c == 1 && strcmp(optarg, "!") == 0) ||
566                             c == 'P' || c == 'p' || c == 'O' ||
567                             c == 'q' || c == 'r' || c == 'v')
568                                 pathend = optind - 1;
569                 }
570                 switch (c) {
571                 case 0:
572                         /* Long options. */
573                         break;
574                 case 1:
575                         /* unknown; opt is "!" or path component,
576                          * checking done above.
577                          */
578                         if (strcmp(optarg, "!") == 0)
579                                 neg_opt = 2;
580                         break;
581                 case 'A':
582                         xtime = &param.atime;
583                         xsign = &param.asign;
584                 case 'C':
585                         if (c == 'C') {
586                                 xtime = &param.ctime;
587                                 xsign = &param.csign;
588                         }
589                 case 'M':
590                         if (c == 'M') {
591                                 xtime = &param.mtime;
592                                 xsign = &param.msign;
593                         }
594                         new_fashion = 1;
595                         if (neg_opt) {
596                                 if (optarg[0] == '-')
597                                         optarg[0] = '+';
598                                 else if (optarg[0] == '+')
599                                         optarg[0] = '-';
600                                 else {
601                                         str[0] = '-';
602                                         str[1] = '\0';
603                                         strcat(str, optarg);
604                                         optarg = str;
605                                 }
606                         }
607                         ret = set_time(&t, xtime, optarg);
608                         if (ret == INT_MAX)
609                                 return -1;
610                         if (ret)
611                                 *xsign = ret;
612                         break;
613                 case 'D':
614                         new_fashion = 1;
615                         param.maxdepth = strtol(optarg, 0, 0);
616                         break;
617                 case 'g':
618                 case 'G':
619                         new_fashion = 1;
620                         ret = name2id(&param.gid, optarg, GROUP);
621                         if (ret) {
622                                 param.gid = strtoul(optarg, &endptr, 10);
623                                 if (*endptr != '\0') {
624                                         fprintf(stderr, "Group/GID: %s cannot "
625                                                 "be found.\n", optarg);
626                                         return -1;
627                                 }
628                         }           
629                         param.exclude_gid = !!neg_opt;
630                         param.check_gid = 1;
631                         break;
632                 case 'u':
633                 case 'U':
634                         new_fashion = 1;
635                         ret = name2id(&param.uid, optarg, USER);
636                         if (ret) {
637                                 param.uid = strtoul(optarg, &endptr, 10);
638                                 if (*endptr != '\0') {
639                                         fprintf(stderr, "User/UID: %s cannot "
640                                                 "be found.\n", optarg);
641                                         return -1;
642                                 }
643                         }
644                         param.exclude_uid = !!neg_opt;
645                         param.check_uid = 1;
646                         break;
647                 case FIND_POOL_OPT:
648                         new_fashion = 1;
649                         if (strlen(optarg) > LOV_MAXPOOLNAME) {
650                                 fprintf(stderr,
651                                         "Pool name %s is too long"
652                                         " (max is %d)\n", optarg,
653                                         LOV_MAXPOOLNAME);
654                                 return -1;
655                         }
656                         /* we do check for empty pool because empty pool
657                          * is used to find V1 lov attributes */
658                         strncpy(param.poolname, optarg, LOV_MAXPOOLNAME);
659                         param.poolname[LOV_MAXPOOLNAME] = '\0';
660                         param.exclude_pool = !!neg_opt;
661                         param.check_pool = 1;
662                         break;
663                 case 'n':
664                         new_fashion = 1;
665                         param.pattern = (char *)optarg;
666                         param.exclude_pattern = !!neg_opt;
667                         break;
668                 case 'O': {
669                         char *buf, *token, *next, *p;
670                         int len;
671
672                         len = strlen((char *)optarg);
673                         buf = malloc(len+1);
674                         if (buf == NULL)
675                                 return -ENOMEM;
676                         strcpy(buf, (char *)optarg);
677
678                         if (param.num_alloc_obds == 0) {
679                                 param.obduuid = malloc(FIND_MAX_OSTS *
680                                                        sizeof(struct obd_uuid));
681                                 if (param.obduuid == NULL)
682                                         return -ENOMEM;
683                                 param.num_alloc_obds = INIT_ALLOC_NUM_OSTS;
684                         }
685
686                         for (token = buf; token && *token; token = next) {
687                                 p = strchr(token, ',');
688                                 next = 0;
689                                 if (p) {
690                                         *p = 0;
691                                         next = p+1;
692                                 }
693                                 strcpy((char *)&param.obduuid[param.num_obds++].uuid,
694                                        token);
695                         }
696
697                         if (buf)
698                                 free(buf);
699                         break;
700                 }
701                 case 'p':
702                         new_fashion = 1;
703                         param.zeroend = 1;
704                         break;
705                 case 'P':
706                         break;
707                 case 'q':
708                         new_fashion = 0;
709                         param.quiet++;
710                         param.verbose = 0;
711                         break;
712                 case 'r':
713                         new_fashion = 0;
714                         param.recursive = 1;
715                         break;
716                 case 't':
717                         param.exclude_type = !!neg_opt;
718                         switch(optarg[0]) {
719                         case 'b': param.type = S_IFBLK; break;
720                         case 'c': param.type = S_IFCHR; break;
721                         case 'd': param.type = S_IFDIR; break;
722                         case 'f': param.type = S_IFREG; break;
723                         case 'l': param.type = S_IFLNK; break;
724                         case 'p': param.type = S_IFIFO; break;
725                         case 's': param.type = S_IFSOCK; break;
726 #ifdef S_IFDOOR /* Solaris only */
727                         case 'D': param.type = S_IFDOOR; break;
728 #endif
729                         default: fprintf(stderr, "error: %s: bad type '%s'\n",
730                                          argv[0], optarg);
731                                  return CMD_HELP;
732                         };
733                         break;
734                 case 's':
735                         if (neg_opt) {
736                                 if (optarg[0] == '-')
737                                         optarg[0] = '+';
738                                 else if (optarg[0] == '+')
739                                         optarg[0] = '-';
740                                 else {
741                                         str[0] = '-';
742                                         str[1] = '\0';
743                                         strcat(str, optarg);
744                                         optarg = str;
745                                 }
746                         }
747                         if (optarg[0] == '+')
748                                 param.size_sign = -1;
749                         else if (optarg[0] == '-')
750                                 param.size_sign = +1;
751
752                         if (param.size_sign)
753                                 optarg++;
754                         ret = parse_size(optarg, &param.size,
755                                          &param.size_units, 0);
756                         if (ret) {
757                                 fprintf(stderr,"error: bad size '%s'\n",
758                                         optarg);
759                                 return ret;
760                         }
761                         break;
762                 case 'v':
763                         new_fashion = 0;
764                         param.verbose++;
765                         param.quiet = 0;
766                         break;
767                 case '?':
768                         return CMD_HELP;
769                 default:
770                         fprintf(stderr, "error: %s: option '%s' unrecognized\n",
771                                 argv[0], argv[optind - 1]);
772                         return CMD_HELP;
773                 };
774         }
775
776         if (pathstart == -1) {
777                 fprintf(stderr, "error: %s: no filename|pathname\n",
778                         argv[0]);
779                 return CMD_HELP;
780         } else if (pathend == -1) {
781                 /* no options */
782                 pathend = argc;
783         }
784
785         if (new_fashion) {
786                 param.quiet = 1;
787         } else {
788                 static int deprecated_warning;
789                 if (!deprecated_warning) {
790                         fprintf(stderr, "lfs find: -q, -r, -v options "
791                                 "deprecated.  Use 'lfs getstripe' instead.\n");
792                         deprecated_warning = 1;
793                 }
794                 if (!param.recursive && param.maxdepth == -1)
795                         param.maxdepth = 1;
796         }
797
798         do {
799                 if (new_fashion)
800                         ret = llapi_find(argv[pathstart], &param);
801                 else
802                         ret = llapi_getstripe(argv[pathstart], &param);
803         } while (++pathstart < pathend && !ret);
804
805         if (ret)
806                 fprintf(stderr, "error: %s failed for %s.\n",
807                         argv[0], argv[optind - 1]);
808
809         if (param.obduuid && param.num_alloc_obds)
810                 free(param.obduuid);
811
812         return ret;
813 }
814
815 static int lfs_getstripe(int argc, char **argv)
816 {
817         struct option long_opts[] = {
818                 {"obd", 1, 0, 'O'},
819                 {"quiet", 0, 0, 'q'},
820                 {"recursive", 0, 0, 'r'},
821                 {"count", 0, 0, 'c'},
822                 {"size", 0, 0, 's'},
823                 {"index", 0, 0, 'i'},
824                 {"offset", 0, 0, 'o'},
825                 {"pool", 0, 0, 'p'},
826                 {"verbose", 0, 0, 'v'},
827                 {"directory", 0, 0, 'd'},
828                 {"mdt", 0, 0, 'M'},
829                 {0, 0, 0, 0}
830         };
831         int c, rc;
832         struct find_param param = { 0 };
833
834         param.maxdepth = 1;
835         optind = 0;
836         while ((c = getopt_long(argc, argv, "cdhiMoO:pqrsv",
837                                 long_opts, NULL)) != -1) {
838                 switch (c) {
839                 case 'O':
840                         if (param.obduuid) {
841                                 fprintf(stderr,
842                                         "error: %s: only one obduuid allowed",
843                                         argv[0]);
844                                 return CMD_HELP;
845                         }
846                         param.obduuid = (struct obd_uuid *)optarg;
847                         break;
848                 case 'q':
849                         param.quiet++;
850                         break;
851                 case 'd':
852                         param.maxdepth = 0;
853                         break;
854                 case 'r':
855                         param.recursive = 1;
856                         break;
857                 case 'v':
858                         param.verbose = VERBOSE_ALL | VERBOSE_DETAIL;
859                         break;
860                 case 'c':
861                         if (!(param.verbose & VERBOSE_DETAIL)) {
862                                 param.verbose |= VERBOSE_COUNT;
863                                 param.maxdepth = 0;
864                         }
865                         break;
866                 case 's':
867                         if (!(param.verbose & VERBOSE_DETAIL)) {
868                                 param.verbose |= VERBOSE_SIZE;
869                                 param.maxdepth = 0;
870                         }
871                         break;
872                 case 'i':
873                 case 'o':
874                         if (!(param.verbose & VERBOSE_DETAIL)) {
875                                 param.verbose |= VERBOSE_OFFSET;
876                                 param.maxdepth = 0;
877                         }
878                         break;
879                 case 'p':
880                         param.verbose |= VERBOSE_POOL;
881                         break;
882                 case 'M':
883                         param.get_mdt_index = 1;
884                         break;
885                 case '?':
886                         return CMD_HELP;
887                 default:
888                         fprintf(stderr, "error: %s: option '%s' unrecognized\n",
889                                 argv[0], argv[optind - 1]);
890                         return CMD_HELP;
891                 }
892         }
893
894         if (optind >= argc)
895                 return CMD_HELP;
896
897         if (param.recursive)
898                 param.maxdepth = -1;
899
900         if (!param.verbose)
901                 param.verbose = VERBOSE_ALL;
902         if (param.quiet)
903                 param.verbose = VERBOSE_OBJID;
904
905         do {
906                 rc = llapi_getstripe(argv[optind], &param);
907         } while (++optind < argc && !rc);
908
909         if (rc)
910                 fprintf(stderr, "error: %s failed for %s.\n",
911                         argv[0], argv[optind - 1]);
912         return rc;
913 }
914
915 static int lfs_osts(int argc, char **argv)
916 {
917         char mntdir[PATH_MAX] = {'\0'};
918         struct find_param param;
919         int index = 0, rc=0;
920
921         if (argc != 1)
922                 return CMD_HELP;
923
924         while (llapi_search_mounts(NULL, index++, mntdir, NULL) == 0) {
925                 memset(&param, 0, sizeof(param));
926                 rc = llapi_ostlist(mntdir, &param);
927                 if (rc) {
928                         fprintf(stderr, "error: %s: failed on %s\n",
929                                 argv[0], mntdir);
930                 }
931                 memset(mntdir, 0, PATH_MAX);
932         }
933
934         return rc;
935 }
936
937 #define COOK(value)                                                     \
938 ({                                                                      \
939         int radix = 0;                                                  \
940         while (value > 1024) {                                          \
941                 value /= 1024;                                          \
942                 radix++;                                                \
943         }                                                               \
944         radix;                                                          \
945 })
946 #define UUF     "%-20s"
947 #define CSF     "%9s"
948 #define CDF     "%9llu"
949 #define HSF     "%8s"
950 #define HDF     "%6.1f"
951 #define RSF     "%5s"
952 #define RDF     "%4d%%"
953
954 static int showdf(char *mntdir, struct obd_statfs *stat,
955                   char *uuid, int ishow, int cooked,
956                   char *type, int index, int rc)
957 {
958         long long avail, used, total;
959         double ratio = 0;
960         char *suffix = "KMGTPEZY";
961         /* Note if we have >2^64 bytes/fs these buffers will need to be grown */
962         char tbuf[20], ubuf[20], abuf[20], rbuf[20];
963
964         if (!uuid || !stat)
965                 return -EINVAL;
966
967         switch (rc) {
968         case 0:
969                 if (ishow) {
970                         avail = stat->os_ffree;
971                         used = stat->os_files - stat->os_ffree;
972                         total = stat->os_files;
973                 } else {
974                         int shift = cooked ? 0 : 10;
975
976                         avail = (stat->os_bavail * stat->os_bsize) >> shift;
977                         used  = ((stat->os_blocks - stat->os_bfree) *
978                                  stat->os_bsize) >> shift;
979                         total = (stat->os_blocks * stat->os_bsize) >> shift;
980                 }
981
982                 if (total > 0)
983                         ratio = (double)used / (double)total;
984
985                 if (cooked) {
986                         int i;
987                         double cook_val;
988
989                         cook_val = (double)total;
990                         i = COOK(cook_val);
991                         if (i > 0)
992                                 sprintf(tbuf, HDF"%c", cook_val, suffix[i - 1]);
993                         else
994                                 sprintf(tbuf, CDF, total);
995
996                         cook_val = (double)used;
997                         i = COOK(cook_val);
998                         if (i > 0)
999                                 sprintf(ubuf, HDF"%c", cook_val, suffix[i - 1]);
1000                         else
1001                                 sprintf(ubuf, CDF, used);
1002
1003                         cook_val = (double)avail;
1004                         i = COOK(cook_val);
1005                         if (i > 0)
1006                                 sprintf(abuf, HDF"%c", cook_val, suffix[i - 1]);
1007                         else
1008                                 sprintf(abuf, CDF, avail);
1009                 } else {
1010                         sprintf(tbuf, CDF, total);
1011                         sprintf(ubuf, CDF, used);
1012                         sprintf(abuf, CDF, avail);
1013                 }
1014
1015                 sprintf(rbuf, RDF, (int)(ratio * 100));
1016                 printf(UUF" "CSF" "CSF" "CSF" "RSF" %-s",
1017                        uuid, tbuf, ubuf, abuf, rbuf, mntdir);
1018                 if (type)
1019                         printf("[%s:%d]\n", type, index);
1020                 else
1021                         printf("\n");
1022
1023                 break;
1024         case -ENODATA:
1025                 printf(UUF": inactive device\n", uuid);
1026                 break;
1027         default:
1028                 printf(UUF": %s\n", uuid, strerror(-rc));
1029                 break;
1030         }
1031
1032         return 0;
1033 }
1034
1035 static int mntdf(char *mntdir, char *fsname, char *pool, int ishow, int cooked)
1036 {
1037         struct obd_statfs stat_buf, sum = { .os_bsize = 1 };
1038         struct obd_uuid uuid_buf;
1039         char *poolname = NULL;
1040         __u32 index;
1041         int rc;
1042
1043         if (pool) {
1044                 poolname = strchr(pool, '.');
1045                 if (poolname != NULL) {
1046                         if (strncmp(fsname, pool, strlen(fsname))) {
1047                                 fprintf(stderr, "filesystem name incorrect\n");
1048                                 return -ENODEV;
1049                         }
1050                         poolname++;
1051                 } else
1052                         poolname = pool;
1053         }
1054
1055         if (ishow)
1056                 printf(UUF" "CSF" "CSF" "CSF" "RSF" %-s\n",
1057                        "UUID", "Inodes", "IUsed", "IFree",
1058                        "IUse%", "Mounted on");
1059         else
1060                 printf(UUF" "CSF" "CSF" "CSF" "RSF" %-s\n",
1061                        "UUID", cooked ? "bytes" : "1K-blocks",
1062                        "Used", "Available", "Use%", "Mounted on");
1063
1064         for (index = 0; ; index++) {
1065                 memset(&stat_buf, 0, sizeof(struct obd_statfs));
1066                 memset(&uuid_buf, 0, sizeof(struct obd_uuid));
1067                 rc = llapi_obd_statfs(mntdir, LL_STATFS_MDC, index,
1068                                       &stat_buf, &uuid_buf);
1069                 if (rc == -ENODEV)
1070                         break;
1071
1072                 if (rc == -EAGAIN)
1073                         continue;
1074
1075                 if (rc == -ENOTCONN || rc == -ETIMEDOUT || rc == -EIO ||
1076                     rc == -ENODATA || rc == 0) {
1077                         showdf(mntdir, &stat_buf, obd_uuid2str(&uuid_buf),
1078                                ishow, cooked, "MDT", index, rc);
1079                 } else {
1080                         fprintf(stderr,
1081                                 "error: llapi_obd_statfs(%s): %s (%d)\n",
1082                                 obd_uuid2str(&uuid_buf), strerror(-rc), rc);
1083                         return rc;
1084                 }
1085                 if (rc == 0) {
1086                         sum.os_ffree += stat_buf.os_ffree;
1087                         sum.os_files += stat_buf.os_files;
1088                 }
1089         }
1090
1091         for (index = 0; ; index++) {
1092                 memset(&stat_buf, 0, sizeof(struct obd_statfs));
1093                 memset(&uuid_buf, 0, sizeof(struct obd_uuid));
1094                 rc = llapi_obd_statfs(mntdir, LL_STATFS_LOV, index,
1095                                       &stat_buf, &uuid_buf);
1096                 if (rc == -ENODEV)
1097                         break;
1098
1099                 if (rc == -EAGAIN)
1100                         continue;
1101
1102                 if (llapi_search_ost(fsname, poolname,
1103                                      obd_uuid2str(&uuid_buf)) != 1)
1104                         continue;
1105
1106                 if (rc == -ENOTCONN || rc == -ETIMEDOUT || rc == -EIO ||
1107                     rc == -ENODATA || rc == 0) {
1108                         showdf(mntdir, &stat_buf, obd_uuid2str(&uuid_buf),
1109                                ishow, cooked, "OST", index, rc);
1110                 } else {
1111                         fprintf(stderr,
1112                                 "error: llapi_obd_statfs failed: %s (%d)\n",
1113                                 strerror(-rc), rc);
1114                         return rc;
1115                 }
1116                 if (rc == 0) {
1117                         sum.os_blocks += stat_buf.os_blocks * stat_buf.os_bsize;
1118                         sum.os_bfree  += stat_buf.os_bfree * stat_buf.os_bsize;
1119                         sum.os_bavail += stat_buf.os_bavail * stat_buf.os_bsize;
1120                 }
1121         }
1122
1123         printf("\n");
1124         showdf(mntdir, &sum, "filesystem summary:", ishow, cooked, NULL, 0,0);
1125
1126         return 0;
1127 }
1128
1129 static int lfs_df(int argc, char **argv)
1130 {
1131         char *path = NULL;
1132         char *mntdir = NULL;
1133         int ishow = 0, cooked = 0;
1134         int c, rc = 0;
1135         char fsname[PATH_MAX] = "", *pool_name = NULL;
1136         struct option long_opts[] = {
1137                 {"pool", required_argument, 0, 'p'},
1138                 {0, 0, 0, 0}
1139         };
1140
1141         optind = 0;
1142         while ((c = getopt_long(argc, argv, "hip:", long_opts, NULL)) != -1) {
1143                 switch (c) {
1144                 case 'i':
1145                         ishow = 1;
1146                         break;
1147                 case 'h':
1148                         cooked = 1;
1149                         break;
1150                 case 'p':
1151                         pool_name = optarg;
1152                         break;
1153                 default:
1154                         return CMD_HELP;
1155                 }
1156         }
1157         if (optind < argc )
1158                 path = argv[optind];
1159
1160         if ((mntdir = malloc(PATH_MAX)) == NULL) {
1161                 fprintf(stderr, "error: cannot allocate %d bytes\n",
1162                         PATH_MAX);
1163                 return -ENOMEM;
1164         }
1165         memset(mntdir, 0, PATH_MAX);
1166
1167         if (path) {
1168                 char rpath[PATH_MAX] = {'\0'};
1169
1170                 if (!realpath(path, rpath)) {
1171                         rc = -errno;
1172                         fprintf(stderr, "error: invalid path '%s': %s\n",
1173                                         path, strerror(-rc));
1174                 } else {
1175                         rc = llapi_search_mounts(rpath, 0, mntdir, fsname);
1176                         if (rc == 0 && mntdir[0] != '\0') {
1177                                 rc = mntdf(mntdir, fsname, pool_name,
1178                                            ishow, cooked);
1179                                 printf("\n");
1180                         }
1181                 }
1182         } else {
1183                 int index = 0;
1184
1185                 while (llapi_search_mounts(NULL, index++, mntdir, fsname)==0) {
1186                         rc = mntdf(mntdir, fsname, pool_name,
1187                                    ishow, cooked);
1188                         if (rc)
1189                                 break;
1190                         printf("\n");
1191                         fsname[0] = '\0'; /* avoid matching in next loop */
1192                         mntdir[0] = '\0'; /* avoid matching in next loop */
1193                 }
1194         }
1195
1196         free(mntdir);
1197         return rc;
1198 }
1199
1200 static int lfs_check(int argc, char **argv)
1201 {
1202         int rc;
1203         char mntdir[PATH_MAX] = {'\0'};
1204         int num_types = 1;
1205         char *obd_types[2];
1206         char obd_type1[4];
1207         char obd_type2[4];
1208
1209         if (argc != 2)
1210                 return CMD_HELP;
1211
1212         obd_types[0] = obd_type1;
1213         obd_types[1] = obd_type2;
1214
1215         if (strcmp(argv[1], "osts") == 0) {
1216                 strcpy(obd_types[0], "osc");
1217         } else if (strcmp(argv[1], "mds") == 0) {
1218                 strcpy(obd_types[0], "mdc");
1219         } else if (strcmp(argv[1], "servers") == 0) {
1220                 num_types = 2;
1221                 strcpy(obd_types[0], "osc");
1222                 strcpy(obd_types[1], "mdc");
1223         } else {
1224                 fprintf(stderr, "error: %s: option '%s' unrecognized\n",
1225                                 argv[0], argv[1]);
1226                         return CMD_HELP;
1227         }
1228
1229         rc = llapi_search_mounts(NULL, 0, mntdir, NULL);
1230         if (rc < 0 || mntdir[0] == '\0') {
1231                 fprintf(stderr, "No suitable Lustre mount found\n");
1232                 return rc;
1233         }
1234
1235         rc = llapi_target_iterate(num_types, obd_types,
1236                                   mntdir, llapi_ping_target);
1237
1238         if (rc)
1239                 fprintf(stderr, "error: %s: %s status failed\n",
1240                                 argv[0],argv[1]);
1241
1242         return rc;
1243
1244 }
1245
1246 static int lfs_catinfo(int argc, char **argv)
1247 {
1248         char mntdir[PATH_MAX] = {'\0'};
1249         int rc;
1250
1251         if (argc < 2 || (!strcmp(argv[1],"config") && argc < 3))
1252                 return CMD_HELP;
1253
1254         if (strcmp(argv[1], "config") && strcmp(argv[1], "deletions"))
1255                 return CMD_HELP;
1256
1257         rc = llapi_search_mounts(NULL, 0, mntdir, NULL);
1258         if (rc == 0 && mntdir[0] != '\0') {
1259                 if (argc == 3)
1260                         rc = llapi_catinfo(mntdir, argv[1], argv[2]);
1261                 else
1262                         rc = llapi_catinfo(mntdir, argv[1], NULL);
1263         } else {
1264                 fprintf(stderr, "no lustre_lite mounted.\n");
1265                 rc = -1;
1266         }
1267
1268         return rc;
1269 }
1270
1271 static int lfs_join(int argc, char **argv)
1272 {
1273         fprintf(stderr, "join two lustre files into one.\n"
1274                         "obsolete, HEAD does not support it anymore.\n");
1275         return 0;
1276 }
1277
1278 #ifdef HAVE_SYS_QUOTA_H
1279 static int lfs_quotachown(int argc, char **argv)
1280 {
1281
1282         int c,rc;
1283         int flag = 0;
1284
1285         optind = 0;
1286         while ((c = getopt(argc, argv, "i")) != -1) {
1287                 switch (c) {
1288                 case 'i':
1289                         flag++;
1290                         break;
1291                 default:
1292                         fprintf(stderr, "error: %s: option '-%c' "
1293                                         "unrecognized\n", argv[0], c);
1294                         return CMD_HELP;
1295                 }
1296         }
1297         if (optind == argc)
1298                 return CMD_HELP;
1299         rc = llapi_quotachown(argv[optind], flag);
1300         if(rc)
1301                 fprintf(stderr,"error: change file owner/group failed.\n");
1302         return rc;
1303 }
1304
1305 static int lfs_quotacheck(int argc, char **argv)
1306 {
1307         int c, check_type = 0;
1308         char *mnt;
1309         struct if_quotacheck qchk;
1310         struct if_quotactl qctl;
1311         char *obd_type = (char *)qchk.obd_type;
1312         int rc;
1313
1314         memset(&qchk, 0, sizeof(qchk));
1315
1316         optind = 0;
1317         while ((c = getopt(argc, argv, "ug")) != -1) {
1318                 switch (c) {
1319                 case 'u':
1320                         check_type |= 0x01;
1321                         break;
1322                 case 'g':
1323                         check_type |= 0x02;
1324                         break;
1325                 default:
1326                         fprintf(stderr, "error: %s: option '-%c' "
1327                                         "unrecognized\n", argv[0], c);
1328                         return CMD_HELP;
1329                 }
1330         }
1331
1332         if (check_type)
1333                 check_type--;
1334         else    /* do quotacheck for both user & group quota by default */
1335                 check_type = 0x02;
1336
1337         if (argc == optind)
1338                 return CMD_HELP;
1339
1340         mnt = argv[optind];
1341
1342         rc = llapi_quotacheck(mnt, check_type);
1343         if (rc) {
1344                 fprintf(stderr, "quotacheck failed: %s\n", strerror(errno));
1345                 return rc;
1346         }
1347
1348         rc = llapi_poll_quotacheck(mnt, &qchk);
1349         if (rc) {
1350                 if (*obd_type)
1351                         fprintf(stderr, "%s %s ", obd_type,
1352                                 obd_uuid2str(&qchk.obd_uuid));
1353                 fprintf(stderr, "quota check failed: %s\n", strerror(errno));
1354                 return rc;
1355         }
1356
1357         memset(&qctl, 0, sizeof(qctl));
1358         qctl.qc_cmd = LUSTRE_Q_QUOTAON;
1359         qctl.qc_type = check_type;
1360         rc = llapi_quotactl(mnt, &qctl);
1361         if (rc && errno != EALREADY) {
1362                 if (*obd_type)
1363                         fprintf(stderr, "%s %s ", (char *)qctl.obd_type,
1364                                 obd_uuid2str(&qctl.obd_uuid));
1365                 fprintf(stderr, "%s turn on quota failed: %s\n",
1366                         argv[0], strerror(errno));
1367                 return rc;
1368         }
1369
1370         return 0;
1371 }
1372
1373 static int lfs_quotaon(int argc, char **argv)
1374 {
1375         int c;
1376         char *mnt;
1377         struct if_quotactl qctl;
1378         char *obd_type = (char *)qctl.obd_type;
1379         int rc;
1380
1381         memset(&qctl, 0, sizeof(qctl));
1382         qctl.qc_cmd = LUSTRE_Q_QUOTAON;
1383
1384         optind = 0;
1385         while ((c = getopt(argc, argv, "ugf")) != -1) {
1386                 switch (c) {
1387                 case 'u':
1388                         qctl.qc_type |= 0x01;
1389                         break;
1390                 case 'g':
1391                         qctl.qc_type |= 0x02;
1392                         break;
1393                 case 'f':
1394                         qctl.qc_cmd = LUSTRE_Q_QUOTAOFF;
1395                         break;
1396                 default:
1397                         fprintf(stderr, "error: %s: option '-%c' "
1398                                         "unrecognized\n", argv[0], c);
1399                         return CMD_HELP;
1400                 }
1401         }
1402
1403         if (qctl.qc_type)
1404                 qctl.qc_type--;
1405         else /* by default, enable quota for both user & group */
1406                 qctl.qc_type = 0x02;
1407
1408         if (argc == optind)
1409                 return CMD_HELP;
1410
1411         mnt = argv[optind];
1412
1413         rc = llapi_quotactl(mnt, &qctl);
1414         if (rc) {
1415                 if (errno == EALREADY) {
1416                         rc = 0;
1417                 } else if (errno == ENOENT) {
1418                         fprintf(stderr, "error: cannot find quota database, "
1419                                         "make sure you have run quotacheck\n");
1420                 } else {
1421                         if (*obd_type)
1422                                 fprintf(stderr, "%s %s ", obd_type,
1423                                         obd_uuid2str(&qctl.obd_uuid));
1424                         fprintf(stderr, "%s failed: %s\n", argv[0],
1425                                 strerror(errno));
1426                 }
1427         }
1428
1429         return rc;
1430 }
1431
1432 static int lfs_quotaoff(int argc, char **argv)
1433 {
1434         int c;
1435         char *mnt;
1436         struct if_quotactl qctl;
1437         char *obd_type = (char *)qctl.obd_type;
1438         int rc;
1439
1440         memset(&qctl, 0, sizeof(qctl));
1441         qctl.qc_cmd = LUSTRE_Q_QUOTAOFF;
1442
1443         optind = 0;
1444         while ((c = getopt(argc, argv, "ug")) != -1) {
1445                 switch (c) {
1446                 case 'u':
1447                         qctl.qc_type |= 0x01;
1448                         break;
1449                 case 'g':
1450                         qctl.qc_type |= 0x02;
1451                         break;
1452                 default:
1453                         fprintf(stderr, "error: %s: option '-%c' "
1454                                         "unrecognized\n", argv[0], c);
1455                         return CMD_HELP;
1456                 }
1457         }
1458
1459         if (qctl.qc_type)
1460                 qctl.qc_type--;
1461         else /* by default, disable quota for both user & group */
1462                 qctl.qc_type = 0x02;
1463
1464         if (argc == optind)
1465                 return CMD_HELP;
1466
1467         mnt = argv[optind];
1468
1469         rc = llapi_quotactl(mnt, &qctl);
1470         if (rc) {
1471                 if (errno == EALREADY) {
1472                         rc = 0;
1473                 } else {
1474                         if (*obd_type)
1475                                 fprintf(stderr, "%s %s ", obd_type,
1476                                         obd_uuid2str(&qctl.obd_uuid));
1477                         fprintf(stderr, "quotaoff failed: %s\n",
1478                                 strerror(errno));
1479                 }
1480         }
1481
1482         return rc;
1483 }
1484
1485 static int lfs_quotainv(int argc, char **argv)
1486 {
1487         int c;
1488         char *mnt;
1489         struct if_quotactl qctl;
1490         int rc;
1491
1492         memset(&qctl, 0, sizeof(qctl));
1493         qctl.qc_cmd = LUSTRE_Q_INVALIDATE;
1494
1495         optind = 0;
1496         while ((c = getopt(argc, argv, "ugf")) != -1) {
1497                 switch (c) {
1498                 case 'u':
1499                         qctl.qc_type |= 0x01;
1500                         break;
1501                 case 'g':
1502                         qctl.qc_type |= 0x02;
1503                         break;
1504                 case 'f':
1505                         qctl.qc_cmd = LUSTRE_Q_FINVALIDATE;
1506                         break;
1507                 default:
1508                         fprintf(stderr, "error: %s: option '-%c' "
1509                                         "unrecognized\n", argv[0], c);
1510                         return CMD_HELP;
1511                 }
1512         }
1513
1514         if (qctl.qc_type)
1515                 qctl.qc_type--;
1516         else /* by default, invalidate quota for both user & group */
1517                 qctl.qc_type = 0x02;
1518
1519         if (argc == optind)
1520                 return CMD_HELP;
1521
1522         mnt = argv[optind];
1523
1524         rc = llapi_quotactl(mnt, &qctl);
1525         if (rc) {
1526                 fprintf(stderr, "quotainv failed: %s\n", strerror(errno));
1527                 return rc;
1528         }
1529
1530         return 0;
1531 }
1532
1533 #define ARG2INT(nr, str, msg)                                           \
1534 do {                                                                    \
1535         char *endp;                                                     \
1536         nr = strtol(str, &endp, 0);                                     \
1537         if (*endp) {                                                    \
1538                 fprintf(stderr, "error: bad %s: %s\n", msg, str);       \
1539                 return CMD_HELP;                                        \
1540         }                                                               \
1541 } while (0)
1542
1543 #define ADD_OVERFLOW(a,b) ((a + b) < a) ? (a = ULONG_MAX) : (a = a + b)
1544
1545 /* Convert format time string "XXwXXdXXhXXmXXs" into seconds value
1546  * returns the value or ULONG_MAX on integer overflow or incorrect format
1547  * Notes:
1548  *        1. the order of specifiers is arbitrary (may be: 5w3s or 3s5w)
1549  *        2. specifiers may be encountered multiple times (2s3s is 5 seconds)
1550  *        3. empty integer value is interpreted as 0
1551  */
1552
1553 static unsigned long str2sec(const char* timestr) {
1554         const char spec[] = "smhdw";
1555         const unsigned long mult[] = {1, 60, 60*60, 24*60*60, 7*24*60*60};
1556         unsigned long val = 0;
1557         char *tail;
1558
1559         if (strpbrk(timestr, spec) == NULL) {
1560                 /* no specifiers inside the time string,
1561                    should treat it as an integer value */
1562                 val = strtoul(timestr, &tail, 10);
1563                 return *tail ? ULONG_MAX : val;
1564         }
1565
1566         /* format string is XXwXXdXXhXXmXXs */
1567         while (*timestr) {
1568                 unsigned long v;
1569                 int ind;
1570                 char* ptr;
1571
1572                 v = strtoul(timestr, &tail, 10);
1573                 if (v == ULONG_MAX || *tail == '\0')
1574                         /* value too large (ULONG_MAX or more)
1575                            or missing specifier */
1576                         goto error;
1577
1578                 ptr = strchr(spec, *tail);
1579                 if (ptr == NULL)
1580                         /* unknown specifier */
1581                         goto error;
1582
1583                 ind = ptr - spec;
1584
1585                 /* check if product will overflow the type */
1586                 if (!(v < ULONG_MAX / mult[ind]))
1587                         goto error;
1588
1589                 ADD_OVERFLOW(val, mult[ind] * v);
1590                 if (val == ULONG_MAX)
1591                         goto error;
1592
1593                 timestr = tail + 1;
1594         }
1595
1596         return val;
1597
1598 error:
1599         return ULONG_MAX;
1600 }
1601
1602 #define ARG2ULL(nr, str, defscale)                                      \
1603 do {                                                                    \
1604         unsigned long long limit, units = 0;                            \
1605         int rc;                                                         \
1606                                                                         \
1607         rc = parse_size(str, &limit, &units, 1);                        \
1608         if (rc < 0) {                                                   \
1609                 fprintf(stderr, "error: bad limit value %s\n", str);    \
1610                 return CMD_HELP;                                        \
1611         }                                                               \
1612         nr = ((units == 0) ? (defscale) : 1) * limit;                   \
1613 } while (0)
1614
1615 static inline int has_times_option(int argc, char **argv)
1616 {
1617         int i;
1618
1619         for (i = 1; i < argc; i++)
1620                 if (!strcmp(argv[i], "-t"))
1621                         return 1;
1622
1623         return 0;
1624 }
1625
1626 int lfs_setquota_times(int argc, char **argv)
1627 {
1628         int c, rc;
1629         struct if_quotactl qctl;
1630         char *mnt, *obd_type = (char *)qctl.obd_type;
1631         struct obd_dqblk *dqb = &qctl.qc_dqblk;
1632         struct obd_dqinfo *dqi = &qctl.qc_dqinfo;
1633         struct option long_opts[] = {
1634                 {"user",            no_argument,       0, 'u'},
1635                 {"group",           no_argument,       0, 'g'},
1636                 {"block-grace",     required_argument, 0, 'b'},
1637                 {"inode-grace",     required_argument, 0, 'i'},
1638                 {"times",           no_argument,       0, 't'},
1639                 {0, 0, 0, 0}
1640         };
1641
1642         memset(&qctl, 0, sizeof(qctl));
1643         qctl.qc_cmd  = LUSTRE_Q_SETINFO;
1644         qctl.qc_type = UGQUOTA;
1645
1646         optind = 0;
1647         while ((c = getopt_long(argc, argv, "b:i:gtu", long_opts, NULL)) != -1) {
1648                 switch (c) {
1649                 case 'u':
1650                 case 'g':
1651                         if (qctl.qc_type != UGQUOTA) {
1652                                 fprintf(stderr, "error: -u and -g can't be used "
1653                                                 "more than once\n");
1654                                 return CMD_HELP;
1655                         }
1656                         qctl.qc_type = (c == 'u') ? USRQUOTA : GRPQUOTA;
1657                         break;
1658                 case 'b':
1659                         if ((dqi->dqi_bgrace = str2sec(optarg)) == ULONG_MAX) {
1660                                 fprintf(stderr, "error: bad block-grace: %s\n",
1661                                         optarg);
1662                                 return CMD_HELP;
1663                         }
1664                         dqb->dqb_valid |= QIF_BTIME;
1665                         break;
1666                 case 'i':
1667                         if ((dqi->dqi_igrace = str2sec(optarg)) == ULONG_MAX) {
1668                                 fprintf(stderr, "error: bad inode-grace: %s\n",
1669                                         optarg);
1670                                 return CMD_HELP;
1671                         }
1672                         dqb->dqb_valid |= QIF_ITIME;
1673                         break;
1674                 case 't': /* Yes, of course! */
1675                         break;
1676                 default: /* getopt prints error message for us when opterr != 0 */
1677                         return CMD_HELP;
1678                 }
1679         }
1680
1681         if (qctl.qc_type == UGQUOTA) {
1682                 fprintf(stderr, "error: neither -u nor -g specified\n");
1683                 return CMD_HELP;
1684         }
1685
1686         if (optind != argc - 1) {
1687                 fprintf(stderr, "error: unexpected parameters encountered\n");
1688                 return CMD_HELP;
1689         }
1690
1691         mnt = argv[optind];
1692         rc = llapi_quotactl(mnt, &qctl);
1693         if (rc) {
1694                 if (*obd_type)
1695                         fprintf(stderr, "%s %s ", obd_type,
1696                                 obd_uuid2str(&qctl.obd_uuid));
1697                 fprintf(stderr, "setquota failed: %s\n", strerror(errno));
1698                 return rc;
1699         }
1700
1701         return 0;
1702 }
1703
1704 #define BSLIMIT (1 << 0)
1705 #define BHLIMIT (1 << 1)
1706 #define ISLIMIT (1 << 2)
1707 #define IHLIMIT (1 << 3)
1708
1709 int lfs_setquota(int argc, char **argv)
1710 {
1711         int c, rc;
1712         struct if_quotactl qctl;
1713         char *mnt, *obd_type = (char *)qctl.obd_type;
1714         struct obd_dqblk *dqb = &qctl.qc_dqblk;
1715         struct option long_opts[] = {
1716                 {"user",            required_argument, 0, 'u'},
1717                 {"group",           required_argument, 0, 'g'},
1718                 {"block-softlimit", required_argument, 0, 'b'},
1719                 {"block-hardlimit", required_argument, 0, 'B'},
1720                 {"inode-softlimit", required_argument, 0, 'i'},
1721                 {"inode-hardlimit", required_argument, 0, 'I'},
1722                 {0, 0, 0, 0}
1723         };
1724         unsigned limit_mask = 0;
1725         char *endptr;
1726
1727         if (has_times_option(argc, argv))
1728                 return lfs_setquota_times(argc, argv);
1729
1730         memset(&qctl, 0, sizeof(qctl));
1731         qctl.qc_cmd  = LUSTRE_Q_SETQUOTA;
1732         qctl.qc_type = UGQUOTA; /* UGQUOTA makes no sense for setquota,
1733                                  * so it can be used as a marker that qc_type
1734                                  * isn't reinitialized from command line */
1735
1736         optind = 0;
1737         while ((c = getopt_long(argc, argv, "b:B:i:I:g:u:", long_opts, NULL)) != -1) {
1738                 switch (c) {
1739                 case 'u':
1740                 case 'g':
1741                         if (qctl.qc_type != UGQUOTA) {
1742                                 fprintf(stderr, "error: -u and -g can't be used"
1743                                                 " more than once\n");
1744                                 return CMD_HELP;
1745                         }
1746                         qctl.qc_type = (c == 'u') ? USRQUOTA : GRPQUOTA;
1747                         rc = name2id(&qctl.qc_id, optarg,
1748                                      (qctl.qc_type == USRQUOTA) ? USER : GROUP);
1749                         if (rc) {
1750                                 qctl.qc_id = strtoul(optarg, &endptr, 10);
1751                                 if (*endptr != '\0') {
1752                                         fprintf(stderr, "error: can't find id "
1753                                                 "for name %s\n", optarg); 
1754                                         return CMD_HELP;
1755                                 }
1756                         }
1757                         break;
1758                 case 'b':
1759                         ARG2ULL(dqb->dqb_bsoftlimit, optarg, 1024);
1760                         dqb->dqb_bsoftlimit >>= 10;
1761                         limit_mask |= BSLIMIT;
1762                         break;
1763                 case 'B':
1764                         ARG2ULL(dqb->dqb_bhardlimit, optarg, 1024);
1765                         dqb->dqb_bhardlimit >>= 10;
1766                         limit_mask |= BHLIMIT;
1767                         break;
1768                 case 'i':
1769                         ARG2ULL(dqb->dqb_isoftlimit, optarg, 1);
1770                         limit_mask |= ISLIMIT;
1771                         break;
1772                 case 'I':
1773                         ARG2ULL(dqb->dqb_ihardlimit, optarg, 1);
1774                         limit_mask |= IHLIMIT;
1775                         break;
1776                 default: /* getopt prints error message for us when opterr != 0 */
1777                         return CMD_HELP;
1778                 }
1779         }
1780
1781         if (qctl.qc_type == UGQUOTA) {
1782                 fprintf(stderr, "error: neither -u nor -g was specified\n");
1783                 return CMD_HELP;
1784         }
1785
1786         if (limit_mask == 0) {
1787                 fprintf(stderr, "error: at least one limit must be specified\n");
1788                 return CMD_HELP;
1789         }
1790
1791         if (optind != argc - 1) {
1792                 fprintf(stderr, "error: unexpected parameters encountered\n");
1793                 return CMD_HELP;
1794         }
1795
1796         mnt = argv[optind];
1797
1798         if ((!(limit_mask & BHLIMIT) ^ !(limit_mask & BSLIMIT)) ||
1799             (!(limit_mask & IHLIMIT) ^ !(limit_mask & ISLIMIT))) {
1800                 /* sigh, we can't just set blimits/ilimits */
1801                 struct if_quotactl tmp_qctl = {.qc_cmd  = LUSTRE_Q_GETQUOTA,
1802                                                .qc_type = qctl.qc_type,
1803                                                .qc_id   = qctl.qc_id};
1804
1805                 rc = llapi_quotactl(mnt, &tmp_qctl);
1806                 if (rc < 0) {
1807                         fprintf(stderr, "error: setquota failed while retrieving"
1808                                         " current quota settings (%s)\n",
1809                                         strerror(errno));
1810                         return rc;
1811                 }
1812
1813                 if (!(limit_mask & BHLIMIT))
1814                         dqb->dqb_bhardlimit = tmp_qctl.qc_dqblk.dqb_bhardlimit;
1815                 if (!(limit_mask & BSLIMIT))
1816                         dqb->dqb_bsoftlimit = tmp_qctl.qc_dqblk.dqb_bsoftlimit;
1817                 if (!(limit_mask & IHLIMIT))
1818                         dqb->dqb_ihardlimit = tmp_qctl.qc_dqblk.dqb_ihardlimit;
1819                 if (!(limit_mask & ISLIMIT))
1820                         dqb->dqb_isoftlimit = tmp_qctl.qc_dqblk.dqb_isoftlimit;
1821
1822                 /* Keep grace times if we have got no softlimit arguments */
1823                 if ((limit_mask & BHLIMIT) && !(limit_mask & BSLIMIT)) {
1824                         dqb->dqb_valid |= QIF_BTIME;
1825                         dqb->dqb_btime = tmp_qctl.qc_dqblk.dqb_btime;
1826                 }
1827
1828                 if ((limit_mask & IHLIMIT) && !(limit_mask & ISLIMIT)) {
1829                         dqb->dqb_valid |= QIF_ITIME;
1830                         dqb->dqb_itime = tmp_qctl.qc_dqblk.dqb_itime;
1831                 }
1832         }
1833
1834         dqb->dqb_valid |= (limit_mask & (BHLIMIT | BSLIMIT)) ? QIF_BLIMITS : 0;
1835         dqb->dqb_valid |= (limit_mask & (IHLIMIT | ISLIMIT)) ? QIF_ILIMITS : 0;
1836
1837         rc = llapi_quotactl(mnt, &qctl);
1838         if (rc) {
1839                 if (*obd_type)
1840                         fprintf(stderr, "%s %s ", obd_type,
1841                                 obd_uuid2str(&qctl.obd_uuid));
1842                 fprintf(stderr, "setquota failed: %s\n", strerror(errno));
1843                 return rc;
1844         }
1845
1846         return 0;
1847 }
1848
1849 static inline char *type2name(int check_type)
1850 {
1851         if (check_type == USRQUOTA)
1852                 return "user";
1853         else if (check_type == GRPQUOTA)
1854                 return "group";
1855         else
1856                 return "unknown";
1857 }
1858
1859
1860 /* Converts seconds value into format string
1861  * result is returned in buf
1862  * Notes:
1863  *        1. result is in descenting order: 1w2d3h4m5s
1864  *        2. zero fields are not filled (except for p. 3): 5d1s
1865  *        3. zero seconds value is presented as "0s"
1866  */
1867 static void sec2str(time_t seconds, char *buf)
1868 {
1869         const char spec[] = "smhdw";
1870         const unsigned long mult[] = {1, 60, 60*60, 24*60*60, 7*24*60*60};
1871         unsigned long c;
1872         char* tail = buf;
1873         int i;
1874
1875         for (i = sizeof(mult) / sizeof(mult[0]) - 1 ; i >= 0; i--) {
1876                 c = seconds / mult[i];
1877
1878                 if (c > 0 || (i == 0 && buf == tail))
1879                         tail += snprintf(tail, 40-(tail-buf), "%lu%c", c, spec[i]);
1880
1881                 seconds %= mult[i];
1882         }
1883 }
1884
1885
1886 static void diff2str(time_t seconds, char *buf, time_t now)
1887 {
1888
1889         buf[0] = 0;
1890         if (!seconds)
1891                 return;
1892         if (seconds <= now) {
1893                 strcpy(buf, "none");
1894                 return;
1895         }
1896         sec2str(seconds - now, buf);
1897 }
1898
1899 static void print_quota_title(char *name, struct if_quotactl *qctl)
1900 {
1901         printf("Disk quotas for %s %s (%cid %u):\n",
1902                type2name(qctl->qc_type), name,
1903                *type2name(qctl->qc_type), qctl->qc_id);
1904         printf("%15s%8s %7s%8s%8s%8s %7s%8s%8s\n",
1905                "Filesystem",
1906                "kbytes", "quota", "limit", "grace",
1907                "files", "quota", "limit", "grace");
1908 }
1909
1910 static void print_quota(char *mnt, struct if_quotactl *qctl, int type, int rc)
1911 {
1912         time_t now;
1913
1914         time(&now);
1915
1916         if (qctl->qc_cmd == LUSTRE_Q_GETQUOTA || qctl->qc_cmd == Q_GETOQUOTA) {
1917                 int bover = 0, iover = 0;
1918                 struct obd_dqblk *dqb = &qctl->qc_dqblk;
1919
1920                 if (dqb->dqb_bhardlimit &&
1921                     toqb(dqb->dqb_curspace) >= dqb->dqb_bhardlimit) {
1922                         bover = 1;
1923                 } else if (dqb->dqb_bsoftlimit &&
1924                            toqb(dqb->dqb_curspace) >= dqb->dqb_bsoftlimit) {
1925                         if (dqb->dqb_btime > now) {
1926                                 bover = 2;
1927                         } else {
1928                                 bover = 3;
1929                         }
1930                 }
1931
1932                 if (dqb->dqb_ihardlimit &&
1933                     dqb->dqb_curinodes >= dqb->dqb_ihardlimit) {
1934                         iover = 1;
1935                 } else if (dqb->dqb_isoftlimit &&
1936                            dqb->dqb_curinodes >= dqb->dqb_isoftlimit) {
1937                         if (dqb->dqb_btime > now) {
1938                                 iover = 2;
1939                         } else {
1940                                 iover = 3;
1941                         }
1942                 }
1943
1944 #if 0           /* XXX: always print quotas even when no usages */
1945                 if (dqb->dqb_curspace || dqb->dqb_curinodes)
1946 #endif
1947                 {
1948                         char numbuf[3][32];
1949                         char timebuf[40];
1950
1951                         if (strlen(mnt) > 15)
1952                                 printf("%s\n%15s", mnt, "");
1953                         else
1954                                 printf("%15s", mnt);
1955
1956                         if (bover)
1957                                 diff2str(dqb->dqb_btime, timebuf, now);
1958                         if (rc == -1 && errno == EREMOTEIO)
1959                                 sprintf(numbuf[0], LPU64"*",
1960                                         toqb(dqb->dqb_curspace));
1961                         else
1962                                 sprintf(numbuf[0],
1963                                         (dqb->dqb_valid & QIF_SPACE) ?
1964                                         LPU64 : "["LPU64"]",
1965                                         toqb(dqb->dqb_curspace));
1966                         if (type == QC_GENERAL)
1967                                 sprintf(numbuf[1], (dqb->dqb_valid & QIF_BLIMITS)
1968                                         ? LPU64 : "["LPU64"]",
1969                                         dqb->dqb_bsoftlimit);
1970                         else
1971                                 sprintf(numbuf[1], "%s", "");
1972                         sprintf(numbuf[2], (dqb->dqb_valid & QIF_BLIMITS)
1973                                 ? LPU64 : "["LPU64"]", dqb->dqb_bhardlimit);
1974                         printf(" %7s%c %6s %7s %7s",
1975                                numbuf[0], bover ? '*' : ' ', numbuf[1],
1976                                numbuf[2], bover > 1 ? timebuf : "");
1977
1978                         if (iover)
1979                                 diff2str(dqb->dqb_itime, timebuf, now);
1980
1981                         sprintf(numbuf[0], (dqb->dqb_valid & QIF_INODES) ?
1982                                 LPU64 : "["LPU64"]", dqb->dqb_curinodes);
1983                        if (type == QC_GENERAL)
1984                                 sprintf(numbuf[1], (dqb->dqb_valid & QIF_ILIMITS)
1985                                         ? LPU64 : "["LPU64"]",
1986                                         dqb->dqb_isoftlimit);
1987                         else
1988                                 sprintf(numbuf[1], "%s", "");
1989                         sprintf(numbuf[2], (dqb->dqb_valid & QIF_ILIMITS) ?
1990                                 LPU64 : "["LPU64"]", dqb->dqb_ihardlimit);
1991                         if (type != QC_OSTIDX)
1992                                 printf(" %7s%c %6s %7s %7s",
1993                                        numbuf[0], iover ? '*' : ' ', numbuf[1],
1994                                        numbuf[2], iover > 1 ? timebuf : "");
1995                         printf("\n");
1996                 }
1997         } else if (qctl->qc_cmd == LUSTRE_Q_GETINFO ||
1998                    qctl->qc_cmd == Q_GETOINFO) {
1999                 char bgtimebuf[40];
2000                 char igtimebuf[40];
2001
2002                 sec2str(qctl->qc_dqinfo.dqi_bgrace, bgtimebuf);
2003                 sec2str(qctl->qc_dqinfo.dqi_igrace, igtimebuf);
2004                 printf("Block grace time: %s; Inode grace time: %s\n",
2005                        bgtimebuf, igtimebuf);
2006         }
2007 }
2008
2009 static int print_obd_quota(char *mnt, struct if_quotactl *qctl, int is_mdt)
2010 {
2011         int rc = 0, rc1 = 0, count = 0;
2012         __u32 valid = qctl->qc_valid;
2013
2014         rc = llapi_get_obd_count(mnt, &count, is_mdt);
2015         if (rc) {
2016                 fprintf(stderr, "can not get %s count: %s\n",
2017                         is_mdt ? "mdt": "ost", strerror(errno));
2018                 return rc;
2019         }
2020
2021         for (qctl->qc_idx = 0; qctl->qc_idx < count; qctl->qc_idx++) {
2022                 qctl->qc_valid = is_mdt ? QC_MDTIDX : QC_OSTIDX;
2023                 rc = llapi_quotactl(mnt, qctl);
2024                 if (rc) {
2025                         /* It is remote client case. */
2026                         if (errno == EOPNOTSUPP) {
2027                                 rc = 0;
2028                                 goto out;
2029                         }
2030
2031                         if (!rc1)
2032                                 rc1 = rc;
2033                         fprintf(stderr, "quotactl %s%d failed.\n",
2034                                 is_mdt ? "mdt": "ost", qctl->qc_idx);
2035                         continue;
2036                 }
2037
2038                 print_quota(obd_uuid2str(&qctl->obd_uuid), qctl, qctl->qc_valid, 0);
2039         }
2040
2041 out:
2042         qctl->qc_valid = valid;
2043         return rc ? : rc1;
2044 }
2045
2046 static int lfs_quota(int argc, char **argv)
2047 {
2048         int c;
2049         char *mnt, *name = NULL;
2050         struct if_quotactl qctl = { .qc_cmd = LUSTRE_Q_GETQUOTA,
2051                                     .qc_type = UGQUOTA };
2052         char *obd_type = (char *)qctl.obd_type;
2053         char *obd_uuid = (char *)qctl.obd_uuid.uuid;
2054         int rc, rc1 = 0, rc2 = 0, rc3 = 0, verbose = 0, pass = 0;
2055         char *endptr;
2056         __u32 valid = QC_GENERAL, idx = 0;
2057
2058         optind = 0;
2059         while ((c = getopt(argc, argv, "ugto:i:I:v")) != -1) {
2060                 switch (c) {
2061                 case 'u':
2062                         if (qctl.qc_type != UGQUOTA) {
2063                                 fprintf(stderr, "error: use either -u or -g\n");
2064                                 return CMD_HELP;
2065                         }
2066                         qctl.qc_type = USRQUOTA;
2067                         break;
2068                 case 'g':
2069                         if (qctl.qc_type != UGQUOTA) {
2070                                 fprintf(stderr, "error: use either -u or -g\n");
2071                                 return CMD_HELP;
2072                         }
2073                         qctl.qc_type = GRPQUOTA;
2074                         break;
2075                 case 't':
2076                         qctl.qc_cmd = LUSTRE_Q_GETINFO;
2077                         break;
2078                 case 'o':
2079                         valid = qctl.qc_valid = QC_UUID;
2080                         strncpy(obd_uuid, optarg, sizeof(qctl.obd_uuid));
2081                         break;
2082                 case 'i':
2083                         valid = qctl.qc_valid = QC_MDTIDX;
2084                         idx = qctl.qc_idx = atoi(optarg);
2085                         break;
2086                 case 'I':
2087                         valid = qctl.qc_valid = QC_OSTIDX;
2088                         idx = qctl.qc_idx = atoi(optarg);
2089                         break;
2090                 case 'v':
2091                         verbose = 1;
2092                         break;
2093                 default:
2094                         fprintf(stderr, "error: %s: option '-%c' "
2095                                         "unrecognized\n", argv[0], c);
2096                         return CMD_HELP;
2097                 }
2098         }
2099
2100         /* current uid/gid info for "lfs quota /path/to/lustre/mount" */
2101         if (qctl.qc_cmd == LUSTRE_Q_GETQUOTA && qctl.qc_type == UGQUOTA &&
2102             optind == argc - 1) {
2103 ug_output:
2104                 memset(&qctl, 0, sizeof(qctl)); /* spoiled by print_*_quota */
2105                 qctl.qc_cmd = LUSTRE_Q_GETQUOTA;
2106                 qctl.qc_valid = valid;
2107                 qctl.qc_idx = idx;
2108                 if (pass++ == 0) {
2109                         qctl.qc_type = USRQUOTA;
2110                         qctl.qc_id = geteuid();
2111                 } else {
2112                         qctl.qc_type = GRPQUOTA;
2113                         qctl.qc_id = getegid();
2114                 }
2115                 rc = id2name(&name, qctl.qc_id,
2116                              (qctl.qc_type == USRQUOTA) ? USER : GROUP);
2117                 if (rc)
2118                         name = "<unknown>";
2119         /* lfs quota -u username /path/to/lustre/mount */
2120         } else if (qctl.qc_cmd == LUSTRE_Q_GETQUOTA) {
2121                 /* options should be followed by u/g-name and mntpoint */
2122                 if (optind + 2 != argc || qctl.qc_type == UGQUOTA) {
2123                         fprintf(stderr, "error: missing quota argument(s)\n");
2124                         return CMD_HELP;
2125                 }
2126
2127                 name = argv[optind++];
2128                 rc = name2id(&qctl.qc_id, name,
2129                              (qctl.qc_type == USRQUOTA) ? USER : GROUP);
2130                 if (rc) {
2131                         qctl.qc_id = strtoul(name, &endptr, 10);
2132                         if (*endptr != '\0') {
2133                                 fprintf(stderr, "error: can't find id for name "
2134                                         "%s\n", name);
2135                                 return CMD_HELP;
2136                         }
2137                 }
2138         } else if (optind + 1 != argc || qctl.qc_type == UGQUOTA) {
2139                 fprintf(stderr, "error: missing quota info argument(s)\n");
2140                 return CMD_HELP;
2141         }
2142
2143         mnt = argv[optind];
2144
2145         rc1 = llapi_quotactl(mnt, &qctl);
2146         if (rc1 == -1 && errno == ESRCH) {
2147                 fprintf(stderr, "\n%s quotas are not enabled.\n",
2148                         qctl.qc_type == USRQUOTA ? "user" : "group");
2149                 goto out;
2150         }
2151
2152         if (qctl.qc_cmd == LUSTRE_Q_GETQUOTA)
2153                 print_quota_title(name, &qctl);
2154
2155         if (rc1 && *obd_type)
2156                 fprintf(stderr, "%s %s ", obd_type, obd_uuid);
2157
2158         if (qctl.qc_valid != QC_GENERAL)
2159                 mnt = "";
2160
2161         print_quota(mnt, &qctl, QC_GENERAL, rc1);
2162
2163         if (qctl.qc_valid == QC_GENERAL && qctl.qc_cmd != LUSTRE_Q_GETINFO && verbose) {
2164                 rc2 = print_obd_quota(mnt, &qctl, 1);
2165                 rc3 = print_obd_quota(mnt, &qctl, 0);
2166         }
2167
2168         if (rc1 || rc2 || rc3)
2169                 printf("Some errors happened when getting quota info. "
2170                        "Some devices may be not working or deactivated. "
2171                        "The data in \"[]\" is inaccurate.\n");
2172
2173 out:
2174         if (pass == 1)
2175                 goto ug_output;
2176
2177         return 0;
2178 }
2179 #endif /* HAVE_SYS_QUOTA_H! */
2180
2181 static int flushctx_ioctl(char *mp)
2182 {
2183         int fd, rc;
2184
2185         fd = open(mp, O_RDONLY);
2186         if (fd == -1) {
2187                 fprintf(stderr, "flushctx: error open %s: %s\n",
2188                         mp, strerror(errno));
2189                 return -1;
2190         }
2191
2192         rc = ioctl(fd, LL_IOC_FLUSHCTX);
2193         if (rc == -1)
2194                 fprintf(stderr, "flushctx: error ioctl %s: %s\n",
2195                         mp, strerror(errno));
2196
2197         close(fd);
2198         return rc;
2199 }
2200
2201 static int lfs_flushctx(int argc, char **argv)
2202 {
2203         int     kdestroy = 0, c;
2204         FILE   *proc;
2205         char    procline[PATH_MAX], *line;
2206         int     rc = 0;
2207
2208         optind = 0;
2209         while ((c = getopt(argc, argv, "k")) != -1) {
2210                 switch (c) {
2211                 case 'k':
2212                         kdestroy = 1;
2213                         break;
2214                 default:
2215                         fprintf(stderr, "error: %s: option '-%c' "
2216                                         "unrecognized\n", argv[0], c);
2217                         return CMD_HELP;
2218                 }
2219         }
2220
2221         if (kdestroy) {
2222             int rc;
2223             if ((rc = system("kdestroy > /dev/null")) != 0) {
2224                 rc = WEXITSTATUS(rc);
2225                 fprintf(stderr, "error destroying tickets: %d, continuing\n", rc);
2226             }
2227         }
2228
2229         if (optind >= argc) {
2230                 /* flush for all mounted lustre fs. */
2231                 proc = fopen("/proc/mounts", "r");
2232                 if (!proc) {
2233                         fprintf(stderr, "error: %s: can't open /proc/mounts\n",
2234                                 argv[0]);
2235                         return -1;
2236                 }
2237
2238                 while ((line = fgets(procline, PATH_MAX, proc)) != NULL) {
2239                         char dev[PATH_MAX];
2240                         char mp[PATH_MAX];
2241                         char fs[PATH_MAX];
2242
2243                         if (sscanf(line, "%s %s %s", dev, mp, fs) != 3) {
2244                                 fprintf(stderr, "%s: unexpected format in "
2245                                                 "/proc/mounts\n",
2246                                         argv[0]);
2247                                 return -1;
2248                         }
2249
2250                         if (strcmp(fs, "lustre") != 0)
2251                                 continue;
2252                         /* we use '@' to determine it's a client. are there
2253                          * any other better way?
2254                          */
2255                         if (strchr(dev, '@') == NULL)
2256                                 continue;
2257
2258                         if (flushctx_ioctl(mp))
2259                                 rc = -1;
2260                 }
2261         } else {
2262                 /* flush fs as specified */
2263                 while (optind < argc) {
2264                         if (flushctx_ioctl(argv[optind++]))
2265                                 rc = -1;
2266                 }
2267         }
2268
2269         return rc;
2270 }
2271
2272 static int lfs_lsetfacl(int argc, char **argv)
2273 {
2274         argv[0]++;
2275         return(llapi_lsetfacl(argc, argv));
2276 }
2277
2278 static int lfs_lgetfacl(int argc, char **argv)
2279 {
2280         argv[0]++;
2281         return(llapi_lgetfacl(argc, argv));
2282 }
2283
2284 static int lfs_rsetfacl(int argc, char **argv)
2285 {
2286         argv[0]++;
2287         return(llapi_rsetfacl(argc, argv));
2288 }
2289
2290 static int lfs_rgetfacl(int argc, char **argv)
2291 {
2292         argv[0]++;
2293         return(llapi_rgetfacl(argc, argv));
2294 }
2295
2296 static int lfs_cp(int argc, char **argv)
2297 {
2298         return(llapi_cp(argc, argv));
2299 }
2300
2301 static int lfs_ls(int argc, char **argv)
2302 {
2303         return(llapi_ls(argc, argv));
2304 }
2305
2306 static int lfs_changelog(int argc, char **argv)
2307 {
2308         void *changelog_priv;
2309         struct changelog_rec *rec;
2310         long long startrec = 0, endrec = 0;
2311         char *mdd;
2312         struct option long_opts[] = {
2313                 {"follow", no_argument, 0, 'f'},
2314                 {0, 0, 0, 0}
2315         };
2316         char short_opts[] = "f";
2317         int rc, follow = 0;
2318
2319         optind = 0;
2320         while ((rc = getopt_long(argc, argv, short_opts,
2321                                 long_opts, NULL)) != -1) {
2322                 switch (rc) {
2323                 case 'f':
2324                         follow++;
2325                         break;
2326                 case '?':
2327                         return CMD_HELP;
2328                 default:
2329                         fprintf(stderr, "error: %s: option '%s' unrecognized\n",
2330                                 argv[0], argv[optind - 1]);
2331                         return CMD_HELP;
2332                 }
2333         }
2334         if (optind >= argc)
2335                 return CMD_HELP;
2336
2337         mdd = argv[optind++];
2338         if (argc > optind)
2339                 startrec = strtoll(argv[optind++], NULL, 10);
2340         if (argc > optind)
2341                 endrec = strtoll(argv[optind++], NULL, 10);
2342
2343         rc = llapi_changelog_start(&changelog_priv,
2344                                    CHANGELOG_FLAG_BLOCK |
2345                                    (follow ? CHANGELOG_FLAG_FOLLOW : 0),
2346                                    mdd, startrec);
2347         if (rc < 0) {
2348                 fprintf(stderr, "Can't start changelog: %s\n",
2349                         strerror(errno = -rc));
2350                 return rc;
2351         }
2352
2353         while ((rc = llapi_changelog_recv(changelog_priv, &rec)) == 0) {
2354                 time_t secs;
2355                 struct tm ts;
2356
2357                 if (endrec && rec->cr_index > endrec)
2358                         break;
2359                 if (rec->cr_index < startrec)
2360                         continue;
2361
2362                 secs = rec->cr_time >> 30;
2363                 gmtime_r(&secs, &ts);
2364                 printf(LPU64" %02d%-5s %02d:%02d:%02d.%06d %04d.%02d.%02d "
2365                        "0x%x t="DFID, rec->cr_index, rec->cr_type,
2366                        changelog_type2str(rec->cr_type),
2367                        ts.tm_hour, ts.tm_min, ts.tm_sec,
2368                        (int)(rec->cr_time & ((1<<30) - 1)),
2369                        ts.tm_year+1900, ts.tm_mon+1, ts.tm_mday,
2370                        rec->cr_flags & CLF_FLAGMASK, PFID(&rec->cr_tfid));
2371                 if (rec->cr_namelen)
2372                         /* namespace rec includes parent and filename */
2373                         printf(" p="DFID" %.*s\n", PFID(&rec->cr_pfid),
2374                                rec->cr_namelen, rec->cr_name);
2375                 else
2376                         printf("\n");
2377
2378                 llapi_changelog_free(&rec);
2379         }
2380
2381         llapi_changelog_fini(&changelog_priv);
2382
2383         if (rc < 0)
2384                 fprintf(stderr, "Changelog: %s\n", strerror(errno = -rc));
2385
2386         return (rc == 1 ? 0 : rc);
2387 }
2388
2389 static int lfs_changelog_clear(int argc, char **argv)
2390 {
2391         long long endrec;
2392         int rc;
2393
2394         if (argc != 4)
2395                 return CMD_HELP;
2396
2397         endrec = strtoll(argv[3], NULL, 10);
2398
2399         rc = llapi_changelog_clear(argv[1], argv[2], endrec);
2400         if (rc)
2401                 fprintf(stderr, "%s error: %s\n", argv[0],
2402                         strerror(errno = -rc));
2403         return rc;
2404 }
2405
2406 static int lfs_fid2path(int argc, char **argv)
2407 {
2408         struct option long_opts[] = {
2409                 {"cur", no_argument, 0, 'c'},
2410                 {"link", required_argument, 0, 'l'},
2411                 {"rec", required_argument, 0, 'r'},
2412                 {0, 0, 0, 0}
2413         };
2414         char  short_opts[] = "cl:r:";
2415         char *device, *fid, *path;
2416         long long recno = -1;
2417         int linkno = -1;
2418         int lnktmp;
2419         int printcur = 0;
2420         int rc;
2421
2422         optind = 0;
2423
2424         while ((rc = getopt_long(argc, argv, short_opts,
2425                                 long_opts, NULL)) != -1) {
2426                 switch (rc) {
2427                 case 'c':
2428                         printcur++;
2429                         break;
2430                 case 'l':
2431                         linkno = strtol(optarg, NULL, 10);
2432                         break;
2433                 case 'r':
2434                         recno = strtoll(optarg, NULL, 10);
2435                         break;
2436                 case '?':
2437                         return CMD_HELP;
2438                 default:
2439                         fprintf(stderr, "error: %s: option '%s' unrecognized\n",
2440                                 argv[0], argv[optind - 1]);
2441                         return CMD_HELP;
2442                 }
2443         }
2444         device = argv[optind++];
2445         fid = argv[optind++];
2446         if (optind != argc)
2447                 return CMD_HELP;
2448
2449         path = calloc(1, PATH_MAX);
2450
2451         lnktmp = (linkno >= 0) ? linkno : 0;
2452         while (1) {
2453                 int oldtmp = lnktmp;
2454                 long long rectmp = recno;
2455                 rc = llapi_fid2path(device, fid, path, PATH_MAX, &rectmp,
2456                                     &lnktmp);
2457                 if (rc < 0) {
2458                         fprintf(stderr, "%s error: %s\n", argv[0],
2459                                 strerror(errno = -rc));
2460                         break;
2461                 }
2462
2463                 if (printcur)
2464                         fprintf(stdout, "%lld %s\n", rectmp, path);
2465                 else
2466                         fprintf(stdout, "%s\n", path);
2467
2468                 if (linkno >= 0)
2469                         /* specified linkno */
2470                         break;
2471                 if (oldtmp == lnktmp)
2472                         /* no more links */
2473                         break;
2474         }
2475
2476         free(path);
2477         return rc;
2478 }
2479
2480 static int lfs_path2fid(int argc, char **argv)
2481 {
2482         char *path;
2483         lustre_fid fid;
2484         int rc;
2485
2486         if (argc != 2)
2487                 return CMD_HELP;
2488
2489         path = argv[1];
2490         rc = llapi_path2fid(path, &fid);
2491         if (rc) {
2492                 fprintf(stderr, "can't get fid for %s: %s\n", path,
2493                         strerror(errno = -rc));
2494                 return rc;
2495         }
2496
2497         printf(DFID"\n", PFID(&fid));
2498
2499         return 0;
2500 }
2501
2502 int main(int argc, char **argv)
2503 {
2504         int rc;
2505
2506         setlinebuf(stdout);
2507
2508         ptl_initialize(argc, argv);
2509         if (obd_initialize(argc, argv) < 0)
2510                 exit(2);
2511         if (dbg_initialize(argc, argv) < 0)
2512                 exit(3);
2513
2514         Parser_init("lfs > ", cmdlist);
2515
2516         if (argc > 1) {
2517                 rc = Parser_execarg(argc - 1, argv + 1, cmdlist);
2518         } else {
2519                 rc = Parser_commands();
2520         }
2521
2522         obd_finalize(argc, argv);
2523         return rc < 0 ? -rc : rc;
2524 }
2525