1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
4 * Copyright (C) 2002 Cluster File Systems, Inc.
5 * Author: Peter J. Braam <braam@clusterfs.com>
6 * Author: Phil Schwan <phil@clusterfs.com>
7 * Author: Robert Read <rread@clusterfs.com>
9 * This file is part of Lustre, http://www.lustre.org.
11 * Lustre is free software; you can redistribute it and/or
12 * modify it under the terms of version 2 of the GNU General Public
13 * License as published by the Free Software Foundation.
15 * Lustre is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with Lustre; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 #include <portals/api-support.h>
33 #include <portals/ptlctl.h>
35 #include <liblustre.h>
36 #include <linux/lustre_idl.h>
37 #include <lustre/liblustreapi.h>
38 #include <lustre/lustre_user.h>
44 static int lfs_setstripe(int argc, char **argv);
45 static int lfs_find(int argc, char **argv);
46 static int lfs_getstripe(int argc, char **argv);
47 static int lfs_osts(int argc, char **argv);
48 static int lfs_check(int argc, char **argv);
49 static int lfs_catinfo(int argc, char **argv);
51 /* all avaialable commands */
52 command_t cmdlist[] = {
53 {"setstripe", lfs_setstripe, 0,
54 "Create a new file with a specific striping pattern or\n"
55 "Set the default striping pattern on an existing directory\n"
56 "usage: setstripe <filename|dirname> <stripe size> <stripe start> <stripe count>\n"
57 "\tstripe size: Number of bytes in each stripe (0 default)\n"
58 "\tstripe start: OST index of first stripe (-1 default)\n"
59 "\tstripe count: Number of OSTs to stripe over (0 default, -1 all)"},
61 "To list the extended attributes for a given filename or files in a\n"
62 "directory or recursively for all files in a directory tree.\n"
63 "usage: find [--obd <uuid>] [--quiet | --verbose] [--recursive] <dir|file> ..."},
64 {"getstripe", lfs_getstripe, 0,
65 "To list the striping pattern for given filename.\n"
66 "usage:getstripe <filename>"},
67 {"check", lfs_check, 0,
68 "Display the status of MDS or OSTs (as specified in the command)\n"
69 "or all the servers (MDS and OSTs).\n"
70 "usage: check <osts|mds|servers>"},
71 {"catinfo", lfs_catinfo, 0,
72 "Show information of specified type logs.\n"
73 "usage: catinfo {keyword} [node name]\n"
74 "\tkeywords are one of followings: config, deletions.\n"
75 "\tnode name must be provided when use keyword config."},
76 {"osts", lfs_osts, 0, "osts"},
77 {"help", Parser_help, 0, "help"},
78 {"exit", Parser_quit, 0, "quit"},
79 {"quit", Parser_quit, 0, "quit"},
84 static int lfs_setstripe(int argc, char **argv)
88 int st_offset, st_count;
94 // get the stripe size
95 st_size = strtoul(argv[2], &end, 0);
97 fprintf(stderr, "error: %s: bad stripe size '%s'\n",
101 // get the stripe offset
102 st_offset = strtoul(argv[3], &end, 0);
104 fprintf(stderr, "error: %s: bad stripe offset '%s'\n",
108 // get the stripe count
109 st_count = strtoul(argv[4], &end, 0);
111 fprintf(stderr, "error: %s: bad stripe count '%s'\n",
116 result = op_create_file(argv[1], st_size, st_offset, st_count);
118 fprintf(stderr, "error: %s: create stripe file failed\n",
124 static int lfs_find(int argc, char **argv)
126 struct option long_opts[] = {
128 {"quiet", 0, 0, 'q'},
129 {"recursive", 0, 0, 'r'},
130 {"verbose", 0, 0, 'v'},
133 char short_opts[] = "ho:qrv";
134 int quiet, verbose, recursive, c, rc;
135 struct obd_uuid *obduuid = NULL;
138 quiet = verbose = recursive = 0;
139 while ((c = getopt_long(argc, argv, short_opts,
140 long_opts, NULL)) != -1) {
145 "error: %s: only one obduuid allowed",
149 obduuid = (struct obd_uuid *)optarg;
166 fprintf(stderr, "error: %s: option '%s' unrecognized\n",
167 argv[0], argv[optind - 1]);
177 rc = op_find(argv[optind], obduuid, recursive, verbose, quiet);
178 } while (++optind < argc && !rc);
181 fprintf(stderr, "error: %s: find failed\n", argv[0]);
185 static int lfs_getstripe(int argc, char **argv)
187 struct obd_uuid *obduuid = NULL;
196 rc = op_find(argv[optind], obduuid, 0, 0, 0);
197 } while (++optind < argc && !rc);
200 fprintf(stderr, "error: %s: getstripe failed for %s\n",
206 static int lfs_osts(int argc, char **argv)
209 struct mntent *mnt = NULL;
210 struct obd_uuid *obduuid = NULL;
216 fp = setmntent(MOUNTED, "r");
219 fprintf(stderr, "setmntent(%s): %s:", MOUNTED,
223 while (feof(fp) == 0 && ferror(fp) ==0) {
224 if (llapi_is_lustre_mnttype(mnt->mnt_type)) {
225 rc = op_find(mnt->mnt_dir, obduuid, 0, 0, 0);
227 fprintf(stderr, "error: lfs osts failed for %s\n",
238 static int lfs_check(int argc, char **argv)
242 struct mntent *mnt = NULL;
251 obd_type_p[1]=obd_type1;
252 obd_type_p[2]=obd_type2;
254 if (strcmp(argv[1],"osts")==0) {
255 strcpy(obd_type_p[0],"osc");
256 } else if (strcmp(argv[1],"mds")==0) {
257 strcpy(obd_type_p[0],"mdc");
258 } else if (strcmp(argv[1],"servers")==0) {
260 strcpy(obd_type_p[0],"osc");
261 strcpy(obd_type_p[1],"mdc");
263 fprintf(stderr, "error: %s: option '%s' unrecognized\n",
268 fp = setmntent(MOUNTED, "r");
270 fprintf(stderr, "setmntent(%s): %s:", MOUNTED,
274 while (feof(fp) == 0 && ferror(fp) ==0) {
275 if (llapi_is_lustre_mnttype(mnt->mnt_type))
282 rc = op_check(type_num,obd_type_p,mnt->mnt_dir);
285 fprintf(stderr, "error: %s: %s status failed\n",
292 static int lfs_catinfo(int argc, char **argv)
295 struct mntent *mnt = NULL;
298 if (argc < 2 || (!strcmp(argv[1],"config") && argc < 3))
301 if (strcmp(argv[1], "config") && strcmp(argv[1], "deletions"))
304 fp = setmntent(MOUNTED, "r");
306 fprintf(stderr, "setmntent(%s): %s:", MOUNTED,
310 while (feof(fp) == 0 && ferror(fp) == 0) {
311 if (llapi_is_lustre_mnttype(mnt->mnt_type))
320 rc = op_catinfo(mnt->mnt_dir, argv[1], argv[2]);
322 rc = op_catinfo(mnt->mnt_dir, argv[1], NULL);
324 fprintf(stderr, "no lustre_lite mounted.\n");
331 int main(int argc, char **argv)
337 ptl_initialize(argc, argv);
338 if (obd_initialize(argc, argv) < 0)
340 if (dbg_initialize(argc, argv) < 0)
343 Parser_init("lfs > ", cmdlist);
346 rc = Parser_execarg(argc - 1, argv + 1, cmdlist);
348 rc = Parser_commands();
351 obd_finalize(argc, argv);