Whamcloud - gitweb
LU-5223 lmv: build master LMV EA dynamically build via readdir
[fs/lustre-release.git] / lustre / utils / lustre_lfsck.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2012, 2013, Intel Corporation.
24  */
25 /*
26  * lustre/utils/lustre_lfsck.c
27  *
28  * Lustre user-space tools for LFSCK.
29  *
30  * Author: Fan Yong <yong.fan@whamcloud.com>
31  */
32
33 #include <stdio.h>
34 #include <unistd.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <errno.h>
38 #include <getopt.h>
39 #include <time.h>
40
41 #include "obdctl.h"
42
43 #include <lustre/lustre_lfsck_user.h>
44 #include <libcfs/libcfsutil.h>
45 #include <lnet/lnetctl.h>
46 #include <lustre_ioctl.h>
47
48 static struct option long_opt_start[] = {
49         {"device",              required_argument, 0, 'M'},
50         {"all",                 no_argument,       0, 'A'},
51         {"create_ostobj",       optional_argument, 0, 'c'},
52         {"error",               required_argument, 0, 'e'},
53         {"help",                no_argument,       0, 'h'},
54         {"dryrun",              optional_argument, 0, 'n'},
55         {"orphan",              no_argument,       0, 'o'},
56         {"reset",               no_argument,       0, 'r'},
57         {"speed",               required_argument, 0, 's'},
58         {"type",                required_argument, 0, 't'},
59         {"window_size",         required_argument, 0, 'w'},
60         {0,                     0,                 0,  0 }
61 };
62
63 static struct option long_opt_stop[] = {
64         {"device",      required_argument, 0, 'M'},
65         {"all",         no_argument,       0, 'A'},
66         {"help",        no_argument,       0, 'h'},
67         {0,             0,                 0,   0}
68 };
69
70 struct lfsck_type_name {
71         char            *ltn_name;
72         enum lfsck_type  ltn_type;
73 };
74
75 static struct lfsck_type_name lfsck_types_names[] = {
76         { "scrub",      LFSCK_TYPE_SCRUB },
77         { "layout",     LFSCK_TYPE_LAYOUT },
78 /*      { "dne",        LFSCK_TYPE_DNE }, */
79         { "namespace",  LFSCK_TYPE_NAMESPACE },
80         { "default",    LFSCK_TYPES_DEF },
81         { "all",        LFSCK_TYPES_SUPPORTED },
82         { NULL,         0 }
83 };
84
85 static enum lfsck_type lfsck_name2type(const char *name)
86 {
87         int i;
88
89         for (i = 0; lfsck_types_names[i].ltn_name != NULL; i++) {
90                 if (strcmp(lfsck_types_names[i].ltn_name, name) == 0)
91                         return lfsck_types_names[i].ltn_type;
92         }
93         return -1;
94 }
95
96 static void usage_start(void)
97 {
98         fprintf(stderr, "start LFSCK\n"
99                 "usage:\n"
100                 "lfsck_start <-M | --device {MDT,OST}_device>\n"
101                 "            [-A | --all] [-c | --create_ostobj [on | off]]\n"
102                 "            [-e | --error {continue | abort}] [-h | --help]\n"
103                 "            [-n | --dryrun [on | off]] [-o | --orphan]\n"
104                 "            [-r | --reset] [-s | --speed ops_per_sec_limit]\n"
105                 "            [-t | --type check_type[,check_type...]]\n"
106                 "            [-w | --window_size size]\n"
107                 "options:\n"
108                 "-M: device to start LFSCK/scrub on\n"
109                 "-A: start LFSCK on all MDT devices\n"
110                 "-c: create the lost OST-object for dangling LOV EA "
111                     "(default 'off', or 'on')\n"
112                 "-e: error handle mode (default 'continue', or 'abort')\n"
113                 "-h: this help message\n"
114                 "-n: check with no modification (default 'off', or 'on')\n"
115                 "-o: repair orphan objects\n"
116                 "-r: reset scanning to the start of the device\n"
117                 "-s: maximum items to be scanned per second "
118                     "(default '%d' = no limit)\n"
119                 "-t: check type(s) to be performed (default all)\n"
120                 "-w: window size for async requests pipeline\n",
121                 LFSCK_SPEED_NO_LIMIT);
122 }
123
124 static void usage_stop(void)
125 {
126         fprintf(stderr, "stop LFSCK\n"
127                 "usage:\n"
128                 "lfsck_stop <-M | --device {MDT,OST}_device>\n"
129                 "           [-A | --all] [-h | --help]\n"
130                 "options:\n"
131                 "-M: device to stop LFSCK/scrub on\n"
132                 "-A: stop LFSCK on all MDT devices\n"
133                 "-h: this help message\n");
134 }
135
136 static int lfsck_pack_dev(struct obd_ioctl_data *data, char *device, char *arg)
137 {
138         int len = strlen(arg) + 1;
139
140         if (len > MAX_OBD_NAME) {
141                 fprintf(stderr, "device name is too long. "
142                         "Valid length should be less than %d\n", MAX_OBD_NAME);
143                 return -EINVAL;
144         }
145
146         memcpy(device, arg, len);
147         data->ioc_inlbuf4 = device;
148         data->ioc_inllen4 = len;
149         data->ioc_dev = OBD_DEV_BY_DEVNAME;
150         return 0;
151 }
152
153 int jt_lfsck_start(int argc, char **argv)
154 {
155         struct obd_ioctl_data data;
156         char rawbuf[MAX_IOC_BUFLEN], *buf = rawbuf;
157         char device[MAX_OBD_NAME];
158         struct lfsck_start start;
159         char *optstring = "Ac::e:hM:n::ors:t:w:";
160         int opt, index, rc, val, i;
161
162         memset(&data, 0, sizeof(data));
163         memset(&start, 0, sizeof(start));
164         memset(device, 0, MAX_OBD_NAME);
165         start.ls_version = LFSCK_VERSION_V1;
166         start.ls_active = LFSCK_TYPES_ALL;
167
168         /* Reset the 'optind' for the case of getopt_long() called multiple
169          * times under the same lctl. */
170         optind = 0;
171         while ((opt = getopt_long(argc, argv, optstring, long_opt_start,
172                                   &index)) != EOF) {
173                 switch (opt) {
174                 case 'A':
175                         start.ls_flags |= LPF_ALL_TGT | LPF_BROADCAST;
176                         break;
177                 case 'c':
178                         if (optarg == NULL || strcmp(optarg, "on") == 0) {
179                                 start.ls_flags |= LPF_CREATE_OSTOBJ;
180                         } else if (strcmp(optarg, "off") != 0) {
181                                 fprintf(stderr, "invalid switch: -c '%s'. "
182                                         "valid switches are:\n"
183                                         "empty ('on'), or 'off' without space. "
184                                         "For example:\n"
185                                         "'-c', '-con', '-coff'\n", optarg);
186                                 return -EINVAL;
187                         }
188                         start.ls_valid |= LSV_CREATE_OSTOBJ;
189                         break;
190                 case 'e':
191                         if (strcmp(optarg, "abort") == 0) {
192                                 start.ls_flags |= LPF_FAILOUT;
193                         } else if (strcmp(optarg, "continue") != 0) {
194                                 fprintf(stderr, "invalid error mode: -e '%s'."
195                                         "valid modes are: "
196                                         "'continue' or 'abort'.\n", optarg);
197                                 return -EINVAL;
198                         }
199                         start.ls_valid |= LSV_ERROR_HANDLE;
200                         break;
201                 case 'h':
202                         usage_start();
203                         return 0;
204                 case 'M':
205                         rc = lfsck_pack_dev(&data, device, optarg);
206                         if (rc != 0)
207                                 return rc;
208                         break;
209                 case 'n':
210                         if (optarg == NULL || strcmp(optarg, "on") == 0) {
211                                 start.ls_flags |= LPF_DRYRUN;
212                         } else if (strcmp(optarg, "off") != 0) {
213                                 fprintf(stderr, "invalid switch: -n '%s'. "
214                                         "valid switches are:\n"
215                                         "empty ('on'), or 'off' without space. "
216                                         "For example:\n"
217                                         "'-n', '-non', '-noff'\n", optarg);
218                                 return -EINVAL;
219                         }
220                         start.ls_valid |= LSV_DRYRUN;
221                         break;
222                 case 'o':
223                         start.ls_flags |= LPF_ALL_TGT | LPF_BROADCAST |
224                                           LPF_ORPHAN;
225                         break;
226                 case 'r':
227                         start.ls_flags |= LPF_RESET;
228                         break;
229                 case 's':
230                         val = atoi(optarg);
231                         start.ls_speed_limit = val;
232                         start.ls_valid |= LSV_SPEED_LIMIT;
233                         break;
234                 case 't': {
235                         char *typename;
236
237                         if (start.ls_active == LFSCK_TYPES_ALL)
238                                 start.ls_active = 0;
239                         while ((typename = strsep(&optarg, ",")) != NULL) {
240                                 enum lfsck_type type;
241
242                                 type = lfsck_name2type(typename);
243                                 if (type == -1)
244                                         goto bad_type;
245                                 start.ls_active |= type;
246                         }
247                         break;
248 bad_type:
249                         fprintf(stderr, "invalid check type -t '%s'. "
250                                 "valid types are:\n", typename);
251                         for (i = 0; lfsck_types_names[i].ltn_name != NULL; i++)
252                                 fprintf(stderr, "%s%s", i != 0 ? "," : "",
253                                         lfsck_types_names[i].ltn_name);
254                         fprintf(stderr, "\n");
255                         return -EINVAL;
256                 }
257                 case 'w':
258                         val = atoi(optarg);
259                         if (val < 0 || val > LFSCK_ASYNC_WIN_MAX) {
260                                 fprintf(stderr,
261                                         "Too large async window size, "
262                                         "which may cause memory issues. "
263                                         "The valid range is [0 - %u]. "
264                                         "If you do not want to restrict "
265                                         "the window size for async reqeusts "
266                                         "pipeline, just set it as 0.\n",
267                                         LFSCK_ASYNC_WIN_MAX);
268                                 return -EINVAL;
269                         }
270
271                         start.ls_async_windows = val;
272                         start.ls_valid |= LSV_ASYNC_WINDOWS;
273                         break;
274                 default:
275                         fprintf(stderr, "Invalid option, '-h' for help.\n");
276                         return -EINVAL;
277                 }
278         }
279
280         if (start.ls_active == LFSCK_TYPES_ALL)
281                 start.ls_active = LFSCK_TYPES_DEF;
282
283         if (data.ioc_inlbuf4 == NULL) {
284                 if (lcfg_get_devname() != NULL) {
285                         rc = lfsck_pack_dev(&data, device, lcfg_get_devname());
286                         if (rc != 0)
287                                 return rc;
288                 } else {
289                         fprintf(stderr,
290                                 "Must specify device to start LFSCK.\n");
291                         return -EINVAL;
292                 }
293         }
294
295         data.ioc_inlbuf1 = (char *)&start;
296         data.ioc_inllen1 = sizeof(start);
297         memset(buf, 0, sizeof(rawbuf));
298         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
299         if (rc) {
300                 fprintf(stderr, "Fail to pack ioctl data: rc = %d.\n", rc);
301                 return rc;
302         }
303
304         rc = l_ioctl(OBD_DEV_ID, OBD_IOC_START_LFSCK, buf);
305         if (rc < 0) {
306                 perror("Fail to start LFSCK");
307                 return rc;
308         }
309
310         obd_ioctl_unpack(&data, buf, sizeof(rawbuf));
311         printf("Started LFSCK on the device %s: scrub", device);
312         for (i = 0; lfsck_types_names[i].ltn_name != NULL; i++) {
313                 if (start.ls_active & lfsck_types_names[i].ltn_type) {
314                         printf(" %s", lfsck_types_names[i].ltn_name);
315                         start.ls_active &= ~lfsck_types_names[i].ltn_type;
316                 }
317         }
318         if (start.ls_active != 0)
319                 printf(" unknown(0x%x)", start.ls_active);
320         printf("\n");
321
322         return 0;
323 }
324
325 int jt_lfsck_stop(int argc, char **argv)
326 {
327         struct obd_ioctl_data data;
328         char rawbuf[MAX_IOC_BUFLEN], *buf = rawbuf;
329         char device[MAX_OBD_NAME];
330         struct lfsck_stop stop;
331         char *optstring = "AhM:";
332         int opt, index, rc;
333
334         memset(&data, 0, sizeof(data));
335         memset(&stop, 0, sizeof(stop));
336         memset(device, 0, MAX_OBD_NAME);
337
338         /* Reset the 'optind' for the case of getopt_long() called multiple
339          * times under the same lctl. */
340         optind = 0;
341         while ((opt = getopt_long(argc, argv, optstring, long_opt_stop,
342                                   &index)) != EOF) {
343                 switch (opt) {
344                 case 'A':
345                         stop.ls_flags |= LPF_ALL_TGT | LPF_BROADCAST;
346                         break;
347                 case 'h':
348                         usage_stop();
349                         return 0;
350                 case 'M':
351                         rc = lfsck_pack_dev(&data, device, optarg);
352                         if (rc != 0)
353                                 return rc;
354                         break;
355                 default:
356                         fprintf(stderr, "Invalid option, '-h' for help.\n");
357                         return -EINVAL;
358                 }
359         }
360
361         if (data.ioc_inlbuf4 == NULL) {
362                 if (lcfg_get_devname() != NULL) {
363                         rc = lfsck_pack_dev(&data, device, lcfg_get_devname());
364                         if (rc != 0)
365                                 return rc;
366                 } else {
367                         fprintf(stderr,
368                                 "Must specify device to stop LFSCK.\n");
369                         return -EINVAL;
370                 }
371         }
372
373         data.ioc_inlbuf1 = (char *)&stop;
374         data.ioc_inllen1 = sizeof(stop);
375         memset(buf, 0, sizeof(rawbuf));
376         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
377         if (rc) {
378                 fprintf(stderr, "Fail to pack ioctl data: rc = %d.\n", rc);
379                 return rc;
380         }
381
382         rc = l_ioctl(OBD_DEV_ID, OBD_IOC_STOP_LFSCK, buf);
383         if (rc < 0) {
384                 perror("Fail to stop LFSCK");
385                 return rc;
386         }
387
388         printf("Stopped LFSCK on the device %s.\n", device);
389         return 0;
390 }