Whamcloud - gitweb
22b84f489037eeb286de338109f260074cccee7a
[fs/lustre-release.git] / lustre / utils / mount_utils.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #if HAVE_CONFIG_H
34 #  include "config.h"
35 #endif /* HAVE_CONFIG_H */
36
37 #include <inttypes.h>
38 #include <limits.h>
39 #include <mntent.h>
40 #include <stdio.h>
41 #include <errno.h>
42 #include <string.h>
43 #include <unistd.h>
44 #include <config.h>
45 #include <lustre_ver.h>
46 #include <sys/mount.h>
47 #include <sys/stat.h>
48 #include <sys/utsname.h>
49 #include <linux/loop.h>
50 #include <sys/types.h>
51 #include <dirent.h>
52 #include <dlfcn.h>
53 #include <lustre/lustre_idl.h>
54 #include <lustre_cfg.h>
55 #include <dirent.h>
56 #include <sys/types.h>
57 #include <sys/xattr.h>
58
59 #ifdef HAVE_GSS
60 #include <keyutils.h>
61 #include <lustre/utils/gss/sk_utils.h>
62 #endif
63
64 #include "mount_utils.h"
65
66 extern char *progname;
67 extern int verbose;
68
69 #define vprint(fmt, arg...) if (verbose > 0) printf(fmt, ##arg)
70 #define verrprint(fmt, arg...) if (verbose >= 0) fprintf(stderr, fmt, ##arg)
71
72 static struct module_backfs_ops *backfs_ops[LDD_MT_LAST];
73
74 void fatal(void)
75 {
76         verbose = 0;
77         fprintf(stderr, "\n%s FATAL: ", progname);
78 }
79
80 int run_command(char *cmd, int cmdsz)
81 {
82         char log[] = "/tmp/run_command_logXXXXXX";
83         int fd = -1, rc;
84
85         if ((cmdsz - strlen(cmd)) < 6) {
86                 fatal();
87                 fprintf(stderr, "Command buffer overflow: %.*s...\n",
88                         cmdsz, cmd);
89                 return ENOMEM;
90         }
91
92         if (verbose > 1) {
93                 printf("cmd: %s\n", cmd);
94         } else {
95                 if ((fd = mkstemp(log)) >= 0) {
96                         close(fd);
97                         strcat(cmd, " >");
98                         strcat(cmd, log);
99                 }
100         }
101         strcat(cmd, " 2>&1");
102
103         /* Can't use popen because we need the rv of the command */
104         rc = system(cmd);
105         if (rc && (fd >= 0)) {
106                 char buf[128];
107                 FILE *fp;
108                 fp = fopen(log, "r");
109                 if (fp) {
110                         while (fgets(buf, sizeof(buf), fp) != NULL) {
111                                 printf("   %s", buf);
112                         }
113                         fclose(fp);
114                 }
115         }
116         if (fd >= 0)
117                 remove(log);
118         return rc;
119 }
120
121 int add_param(char *buf, char *key, char *val)
122 {
123         int end = sizeof(((struct lustre_disk_data *)0)->ldd_params);
124         int start = strlen(buf);
125         int keylen = 0;
126
127         if (key)
128                 keylen = strlen(key);
129         if (start + 1 + keylen + strlen(val) >= end) {
130                 fprintf(stderr, "%s: params are too long-\n%s %s%s\n",
131                         progname, buf, key ? key : "", val);
132                 return 1;
133         }
134
135         sprintf(buf + start, " %s%s", key ? key : "", val);
136         return 0;
137 }
138
139 int get_param(char *buf, char *key, char **val)
140 {
141         int i, key_len = strlen(key);
142         char *ptr;
143
144         ptr = strstr(buf, key);
145         if (ptr) {
146                 *val = strdup(ptr + key_len);
147                 if (*val == NULL)
148                         return ENOMEM;
149
150                 for (i = 0; i < strlen(*val); i++)
151                         if (((*val)[i] == ' ') || ((*val)[i] == '\0'))
152                                 break;
153
154                 (*val)[i] = '\0';
155                 return 0;
156         }
157
158         return ENOENT;
159 }
160
161 int append_param(char *buf, char *key, char *val, char sep)
162 {
163         int key_len, i, offset, old_val_len;
164         char *ptr = NULL, str[1024];
165
166         if (key)
167                 ptr = strstr(buf, key);
168
169         /* key doesn't exist yet, so just add it */
170         if (ptr == NULL)
171                 return add_param(buf, key, val);
172
173         key_len = strlen(key);
174
175         /* Copy previous values to str */
176         for (i = 0; i < sizeof(str); ++i) {
177                 if ((ptr[i+key_len] == ' ') || (ptr[i+key_len] == '\0'))
178                         break;
179                 str[i] = ptr[i+key_len];
180         }
181         if (i == sizeof(str))
182                 return E2BIG;
183         old_val_len = i;
184
185         offset = old_val_len+key_len;
186
187         /* Move rest of buf to overwrite previous key and value */
188         for (i = 0; ptr[i+offset] != '\0'; ++i)
189                 ptr[i] = ptr[i+offset];
190
191         ptr[i] = '\0';
192
193         snprintf(str+old_val_len, sizeof(str)-old_val_len, "%c%s", sep, val);
194
195         return add_param(buf, key, str);
196 }
197
198 char *strscat(char *dst, char *src, int buflen)
199 {
200         dst[buflen - 1] = 0;
201         if (strlen(dst) + strlen(src) >= buflen) {
202                 fprintf(stderr, "string buffer overflow (max %d): '%s' + '%s'"
203                         "\n", buflen, dst, src);
204                 exit(EOVERFLOW);
205         }
206         return strcat(dst, src);
207 }
208
209 char *strscpy(char *dst, char *src, int buflen)
210 {
211         dst[0] = 0;
212         return strscat(dst, src, buflen);
213 }
214
215 int check_mtab_entry(char *spec1, char *spec2, char *mtpt, char *type)
216 {
217         FILE *fp;
218         struct mntent *mnt;
219
220         fp = setmntent(MOUNTED, "r");
221         if (fp == NULL)
222                 return 0;
223
224         while ((mnt = getmntent(fp)) != NULL) {
225                 if ((strcmp(mnt->mnt_fsname, spec1) == 0 ||
226                      strcmp(mnt->mnt_fsname, spec2) == 0) &&
227                     (mtpt == NULL || strcmp(mnt->mnt_dir, mtpt) == 0) &&
228                     (type == NULL || strcmp(mnt->mnt_type, type) == 0)) {
229                         endmntent(fp);
230                         return(EEXIST);
231                 }
232         }
233         endmntent(fp);
234
235         return 0;
236 }
237
238 #include <sys/vfs.h>
239 #include <linux/magic.h>
240
241 static int mtab_is_proc(const char *mtab)
242 {
243         struct statfs s;
244         if (statfs(mtab, &s) < 0)
245                 return 0;
246
247         return (s.f_type == PROC_SUPER_MAGIC);
248 }
249
250 #ifdef HAVE_LIBMOUNT
251
252 # include <libmount/libmount.h>
253
254 /*
255  * The libmount is part of util-linux since 2.18.
256  * We use it to update utab to avoid umount would
257  * blocked in some rare case.
258  */
259 int update_utab_entry(struct mount_opts *mop)
260 {
261         struct libmnt_fs *fs = mnt_new_fs();
262         struct libmnt_update *upd;
263         int rc;
264
265         mnt_fs_set_source(fs, mop->mo_source);
266         mnt_fs_set_target(fs, mop->mo_target);
267         mnt_fs_set_fstype(fs, "lustre");
268         mnt_fs_set_attributes(fs, "lustre");
269
270         upd = mnt_new_update();
271         if (!upd)
272                 return -ENOMEM;
273
274         rc = mnt_update_set_fs(upd, mop->mo_nomtab ? MS_REMOUNT : 0, NULL, fs);
275         if (rc == 1) /* update is unnecessary */
276                 rc = 0;
277         if (rc) {
278                 fprintf(stderr,
279                         "error: failed to save utab entry: rc = %d\n", rc);
280         } else {
281                 rc = mnt_update_table(upd, NULL);
282         }
283
284         mnt_free_update(upd);
285         mnt_free_fs(fs);
286
287         return rc;
288 }
289 #else
290 int update_utab_entry(struct mount_opts *mop)
291 {
292         return 0;
293 }
294 #endif /* HAVE_LIBMOUNT */
295
296 int update_mtab_entry(char *spec, char *mtpt, char *type, char *opts,
297                 int flags, int freq, int pass)
298 {
299         FILE *fp;
300         struct mntent mnt;
301         int rc = 0;
302
303         /* Don't update mtab if it is linked to any file in /proc direcotry.*/
304         if (mtab_is_proc(MOUNTED))
305                 return 0;
306
307         mnt.mnt_fsname = spec;
308         mnt.mnt_dir = mtpt;
309         mnt.mnt_type = type;
310         mnt.mnt_opts = opts ? opts : "";
311         mnt.mnt_freq = freq;
312         mnt.mnt_passno = pass;
313
314         fp = setmntent(MOUNTED, "a+");
315         if (fp == NULL) {
316                 fprintf(stderr, "%s: setmntent(%s): %s\n",
317                         progname, MOUNTED, strerror (errno));
318                 rc = 16;
319         } else {
320                 if ((addmntent(fp, &mnt)) == 1) {
321                         fprintf(stderr, "%s: addmntent: %s\n",
322                                 progname, strerror (errno));
323                         rc = 16;
324                 }
325                 endmntent(fp);
326         }
327
328         return rc;
329 }
330
331 /* Search for opt in mntlist, returning true if found.
332  */
333 static int in_mntlist(char *opt, char *mntlist)
334 {
335         char *ml, *mlp, *item, *ctx = NULL;
336
337         if (!(ml = strdup(mntlist))) {
338                 fprintf(stderr, "%s: out of memory\n", progname);
339                 exit(1);
340         }
341         mlp = ml;
342         while ((item = strtok_r(mlp, ",", &ctx))) {
343                 if (!strcmp(opt, item))
344                         break;
345                 mlp = NULL;
346         }
347         free(ml);
348         return (item != NULL);
349 }
350
351 /* Issue a message on stderr for every item in wanted_mountopts that is not
352  * present in mountopts.  The justwarn boolean toggles between error and
353  * warning message.  Return an error count.
354  */
355 int check_mountfsoptions(char *mountopts, char *wanted_mountopts)
356 {
357         char *ml, *mlp, *item, *ctx = NULL;
358         int errors = 0;
359
360         if (!(ml = strdup(wanted_mountopts))) {
361                 fprintf(stderr, "%s: out of memory\n", progname);
362                 exit(1);
363         }
364         mlp = ml;
365         while ((item = strtok_r(mlp, ",", &ctx))) {
366                 if (!in_mntlist(item, mountopts)) {
367                         fprintf(stderr, "%s: Error: mandatory mount option"
368                                 " '%s' is missing\n", progname, item);
369                         errors++;
370                 }
371                 mlp = NULL;
372         }
373         free(ml);
374         return errors;
375 }
376
377 /* Trim embedded white space, leading and trailing commas from string s.
378  */
379 void trim_mountfsoptions(char *s)
380 {
381         char *p;
382
383         for (p = s; *p; ) {
384                 if (isspace(*p)) {
385                         memmove(p, p + 1, strlen(p + 1) + 1);
386                         continue;
387                 }
388                 p++;
389         }
390
391         while (s[0] == ',')
392                 memmove(&s[0], &s[1], strlen(&s[1]) + 1);
393
394         p = s + strlen(s) - 1;
395         while (p >= s && *p == ',')
396                 *p-- = '\0';
397 }
398
399 /* Setup a file in the first unused loop_device */
400 int loop_setup(struct mkfs_opts *mop)
401 {
402         char loop_base[20];
403         char l_device[64];
404         int i, ret = 0;
405
406         /* Figure out the loop device names */
407         if (!access("/dev/loop0", F_OK | R_OK) ||
408             !access("/dev/loop-control", F_OK | R_OK)) {
409                 strcpy(loop_base, "/dev/loop\0");
410         } else if (!access("/dev/loop/0", F_OK | R_OK)) {
411                 strcpy(loop_base, "/dev/loop/\0");
412         } else {
413                 fprintf(stderr, "%s: can't access loop devices\n", progname);
414                 return EACCES;
415         }
416
417         /* Find unused loop device */
418         for (i = 0; i < MAX_LOOP_DEVICES; i++) {
419                 char cmd[PATH_MAX];
420                 int cmdsz = sizeof(cmd);
421
422 #ifdef HAVE_LOOP_CTL_GET_FREE
423                 ret = open("/dev/loop-control", O_RDWR);
424                 if (ret < 0) {
425                         fprintf(stderr, "%s: can't access loop control\n", progname);
426                         return EACCES;
427                 }
428                 /* find or allocate a free loop device to use */
429                 i = ioctl(ret, LOOP_CTL_GET_FREE);
430                 close(ret);
431                 if (i < 0) {
432                         fprintf(stderr, "%s: access loop control error\n", progname);
433                         return EACCES;
434                 }
435                 sprintf(l_device, "%s%d", loop_base, i);
436 #else
437                 sprintf(l_device, "%s%d", loop_base, i);
438                 if (access(l_device, F_OK | R_OK))
439                         break;
440 #endif
441                 snprintf(cmd, cmdsz, "losetup %s > /dev/null 2>&1", l_device);
442                 ret = system(cmd);
443
444                 /* losetup gets 1 (ret=256) for non-set-up device */
445                 if (ret) {
446                         /* Set up a loopback device to our file */
447                         snprintf(cmd, cmdsz, "losetup %s %s", l_device,
448                                  mop->mo_device);
449                         ret = run_command(cmd, cmdsz);
450                         if (ret == 256)
451                                 /* someone else picked up this loop device
452                                  * behind our back */
453                                 continue;
454                         if (ret) {
455                                 fprintf(stderr, "%s: error %d on losetup: %s\n",
456                                         progname, ret,
457                                         ret >= 0 ? strerror(ret) : "");
458                                 return ret;
459                         }
460                         strscpy(mop->mo_loopdev, l_device,
461                                 sizeof(mop->mo_loopdev));
462                         return ret;
463                 }
464         }
465
466         fprintf(stderr, "%s: out of loop devices!\n", progname);
467         return EMFILE;
468 }
469
470 int loop_cleanup(struct mkfs_opts *mop)
471 {
472         char cmd[150];
473         int ret = 0;
474
475         if ((mop->mo_flags & MO_IS_LOOP) && *mop->mo_loopdev) {
476                 int tries;
477
478                 sprintf(cmd, "losetup -d %s", mop->mo_loopdev);
479                 for (tries = 0; tries < 3; tries++) {
480                         ret = run_command(cmd, sizeof(cmd));
481                         if (ret == 0)
482                                 break;
483                         sleep(1);
484                 }
485         }
486
487         if (ret != 0)
488                 fprintf(stderr, "cannot cleanup %s: rc = %d\n",
489                         mop->mo_loopdev, ret);
490         return ret;
491 }
492
493 int loop_format(struct mkfs_opts *mop)
494 {
495         int fd;
496
497         if (mop->mo_device_kb == 0) {
498                 fatal();
499                 fprintf(stderr, "loop device requires a --device-size= "
500                         "param\n");
501                 return EINVAL;
502         }
503
504         fd = creat(mop->mo_device, S_IRUSR|S_IWUSR);
505         if (fd < 0) {
506                 fatal();
507                 fprintf(stderr, "%s: Unable to create backing store: %s\n",
508                         progname, strerror(errno));
509                 return errno;
510         }
511
512         if (ftruncate(fd, mop->mo_device_kb * 1024) != 0) {
513                 close(fd);
514                 fatal();
515                 fprintf(stderr, "%s: Unable to truncate backing store: %s\n",
516                         progname, strerror(errno));
517                 return errno;
518         }
519
520         close(fd);
521         return 0;
522 }
523
524 #define DLSYM(prefix, sym, func)                                        \
525         do {                                                            \
526                 char _fname[64];                                        \
527                 snprintf(_fname, sizeof(_fname), "%s_%s", prefix, #func); \
528                 sym->func = (typeof(sym->func))dlsym(sym->dl_handle, _fname); \
529         } while (0)
530
531 /**
532  * Load plugin for a given mount_type from ${pkglibdir}/mount_osd_FSTYPE.so and
533  * return struct of function pointers (will be freed in unloack_backfs_module).
534  *
535  * \param[in] mount_type        Mount type to load module for.
536  * \retval Value of backfs_ops struct
537  * \retval NULL if no module exists
538  */
539 struct module_backfs_ops *load_backfs_module(enum ldd_mount_type mount_type)
540 {
541         void *handle;
542         char *error, filename[512], fsname[512], *name;
543         struct module_backfs_ops *ops;
544
545         /* This deals with duplicate ldd_mount_types resolving to same OSD layer
546          * plugin (e.g. ext3/ldiskfs/ldiskfs2 all being ldiskfs) */
547         strncpy(fsname, mt_type(mount_type), sizeof(fsname));
548         name = fsname + sizeof("osd-") - 1;
549
550         /* change osd- to osd_ */
551         fsname[sizeof("osd-") - 2] = '_';
552
553         snprintf(filename, sizeof(filename), PLUGIN_DIR"/mount_%s.so", fsname);
554
555         handle = dlopen(filename, RTLD_LAZY);
556
557         /* Check for $LUSTRE environment variable from test-framework.
558          * This allows using locally built modules to be used.
559          */
560         if (handle == NULL) {
561                 char *dirname;
562                 dirname = getenv("LUSTRE");
563                 if (dirname) {
564                         snprintf(filename, sizeof(filename),
565                                  "%s/utils/.libs/mount_%s.so",
566                                  dirname, fsname);
567                         handle = dlopen(filename, RTLD_LAZY);
568                 }
569         }
570
571         /* Do not clutter up console with missing types */
572         if (handle == NULL)
573                 return NULL;
574
575         ops = malloc(sizeof(*ops));
576         if (ops == NULL) {
577                 dlclose(handle);
578                 return NULL;
579         }
580
581         ops->dl_handle = handle;
582         dlerror(); /* Clear any existing error */
583
584         DLSYM(name, ops, init);
585         DLSYM(name, ops, fini);
586         DLSYM(name, ops, read_ldd);
587         DLSYM(name, ops, write_ldd);
588         DLSYM(name, ops, erase_ldd);
589         DLSYM(name, ops, print_ldd_params);
590         DLSYM(name, ops, is_lustre);
591         DLSYM(name, ops, make_lustre);
592         DLSYM(name, ops, prepare_lustre);
593         DLSYM(name, ops, tune_lustre);
594         DLSYM(name, ops, label_lustre);
595         DLSYM(name, ops, rename_fsname);
596         DLSYM(name, ops, enable_quota);
597
598         error = dlerror();
599         if (error != NULL) {
600                 fatal();
601                 fprintf(stderr, "%s\n", error);
602                 dlclose(handle);
603                 free(ops);
604                 return NULL;
605         }
606
607         /* optional methods */
608         DLSYM(name, ops, fix_mountopts);
609
610         return ops;
611 }
612
613 /**
614  * Unload plugin and free backfs_ops structure. Must be called the same number
615  * of times as load_backfs_module is.
616  */
617 void unload_backfs_module(struct module_backfs_ops *ops)
618 {
619         if (ops == NULL)
620                 return;
621
622         dlclose(ops->dl_handle);
623         free(ops);
624 }
625
626 /* Return true if backfs_ops has operations for the given mount_type. */
627 int backfs_mount_type_okay(enum ldd_mount_type mount_type)
628 {
629         if (mount_type >= LDD_MT_LAST || mount_type < 0) {
630                 fatal();
631                 fprintf(stderr, "fs type out of range %d\n", mount_type);
632                 return 0;
633         }
634         if (backfs_ops[mount_type] == NULL) {
635                 fatal();
636                 fprintf(stderr, "unhandled/unloaded fs type %d '%s'\n",
637                         mount_type, mt_str(mount_type));
638                 return 0;
639         }
640         return 1;
641 }
642
643 /* Write the server config files */
644 int osd_write_ldd(struct mkfs_opts *mop)
645 {
646         struct lustre_disk_data *ldd = &mop->mo_ldd;
647         int ret;
648
649         if (backfs_mount_type_okay(ldd->ldd_mount_type))
650                 ret = backfs_ops[ldd->ldd_mount_type]->write_ldd(mop);
651         else
652                 ret = EINVAL;
653
654         return ret;
655 }
656
657 /* Read the server config files */
658 int osd_read_ldd(char *dev, struct lustre_disk_data *ldd)
659 {
660         int ret;
661
662         if (backfs_mount_type_okay(ldd->ldd_mount_type))
663                 ret = backfs_ops[ldd->ldd_mount_type]->read_ldd(dev, ldd);
664         else
665                 ret = EINVAL;
666
667         return ret;
668 }
669
670 /* Erase param from the server config files */
671 int osd_erase_ldd(struct mkfs_opts *mop, char *param)
672 {
673         struct lustre_disk_data *ldd = &mop->mo_ldd;
674         int ret;
675
676         if (backfs_mount_type_okay(ldd->ldd_mount_type))
677                 ret = backfs_ops[ldd->ldd_mount_type]->erase_ldd(mop, param);
678         else
679                 ret = EINVAL;
680
681         return ret;
682 }
683
684 /* Print ldd_params */
685 void osd_print_ldd_params(struct mkfs_opts *mop)
686 {
687         struct lustre_disk_data *ldd = &mop->mo_ldd;
688
689         if (backfs_mount_type_okay(ldd->ldd_mount_type))
690                 backfs_ops[ldd->ldd_mount_type]->print_ldd_params(mop);
691 }
692
693 /* Was this device formatted for Lustre */
694 int osd_is_lustre(char *dev, unsigned *mount_type)
695 {
696         int i;
697
698         vprint("checking for existing Lustre data: ");
699
700         for (i = 0; i < LDD_MT_LAST; ++i) {
701                 if (backfs_ops[i] != NULL &&
702                     backfs_ops[i]->is_lustre(dev, mount_type)) {
703                         vprint("found\n");
704                         return 1;
705                 }
706         }
707
708         vprint("not found\n");
709         return 0;
710 }
711
712 /* Build fs according to type */
713 int osd_make_lustre(struct mkfs_opts *mop)
714 {
715         struct lustre_disk_data *ldd = &mop->mo_ldd;
716         int ret;
717
718         if (backfs_mount_type_okay(ldd->ldd_mount_type))
719                 ret = backfs_ops[ldd->ldd_mount_type]->make_lustre(mop);
720         else
721                 ret = EINVAL;
722
723         return ret;
724 }
725
726 int osd_prepare_lustre(struct mkfs_opts *mop,
727                        char *wanted_mountopts, size_t len)
728 {
729         struct lustre_disk_data *ldd = &mop->mo_ldd;
730         int ret;
731
732         if (backfs_mount_type_okay(ldd->ldd_mount_type))
733                 ret = backfs_ops[ldd->ldd_mount_type]->prepare_lustre(mop,
734                                                         wanted_mountopts, len);
735         else
736                 ret = EINVAL;
737
738         return ret;
739 }
740
741 int osd_fix_mountopts(struct mkfs_opts *mop, char *mountopts, size_t len)
742 {
743         struct lustre_disk_data *ldd = &mop->mo_ldd;
744
745         if (!backfs_mount_type_okay(ldd->ldd_mount_type))
746                 return EINVAL;
747
748         if (backfs_ops[ldd->ldd_mount_type]->fix_mountopts == NULL)
749                 return 0;
750
751         return backfs_ops[ldd->ldd_mount_type]->fix_mountopts(mop, mountopts,
752                                                               len);
753 }
754
755 int osd_tune_lustre(char *dev, struct mount_opts *mop)
756 {
757         struct lustre_disk_data *ldd = &mop->mo_ldd;
758         int ret;
759
760         if (backfs_mount_type_okay(ldd->ldd_mount_type))
761                 ret = backfs_ops[ldd->ldd_mount_type]->tune_lustre(dev, mop);
762         else
763                 ret = EINVAL;
764
765         return ret;
766 }
767
768 int osd_label_lustre(struct mount_opts *mop)
769 {
770         struct lustre_disk_data *ldd = &mop->mo_ldd;
771         int ret;
772
773         if (backfs_mount_type_okay(ldd->ldd_mount_type))
774                 ret = backfs_ops[ldd->ldd_mount_type]->label_lustre(mop);
775         else
776                 ret = EINVAL;
777
778         return ret;
779 }
780
781 /* Rename filesystem fsname */
782 int osd_rename_fsname(struct mkfs_opts *mop, const char *oldname)
783 {
784         struct lustre_disk_data *ldd = &mop->mo_ldd;
785         int ret;
786
787         if (backfs_mount_type_okay(ldd->ldd_mount_type))
788                 ret = backfs_ops[ldd->ldd_mount_type]->rename_fsname(mop,
789                                                                      oldname);
790         else
791                 ret = EINVAL;
792
793         return ret;
794 }
795
796 /* Enable quota accounting */
797 int osd_enable_quota(struct mkfs_opts *mop)
798 {
799         struct lustre_disk_data *ldd = &mop->mo_ldd;
800         int ret;
801
802         if (backfs_mount_type_okay(ldd->ldd_mount_type))
803                 ret = backfs_ops[ldd->ldd_mount_type]->enable_quota(mop);
804         else
805                 ret = EINVAL;
806
807         return ret;
808 }
809
810 int osd_init(void)
811 {
812         int i, rc, ret = EINVAL;
813
814         for (i = 0; i < LDD_MT_LAST; ++i) {
815                 rc = 0;
816                 backfs_ops[i] = load_backfs_module(i);
817                 if (backfs_ops[i] != NULL)
818                         rc = backfs_ops[i]->init();
819                 if (rc != 0) {
820                         backfs_ops[i]->fini();
821                         unload_backfs_module(backfs_ops[i]);
822                         backfs_ops[i] = NULL;
823                 } else
824                         ret = 0;
825         }
826
827         return ret;
828 }
829
830 void osd_fini(void)
831 {
832         int i;
833
834         for (i = 0; i < LDD_MT_LAST; ++i) {
835                 if (backfs_ops[i] != NULL) {
836                         backfs_ops[i]->fini();
837                         unload_backfs_module(backfs_ops[i]);
838                         backfs_ops[i] = NULL;
839                 }
840         }
841 }
842
843 __u64 get_device_size(char* device)
844 {
845         int ret, fd;
846         __u64 size = 0;
847
848         fd = open(device, O_RDONLY);
849         if (fd < 0) {
850                 fprintf(stderr, "%s: cannot open %s: %s\n",
851                         progname, device, strerror(errno));
852                 return 0;
853         }
854
855 #ifdef BLKGETSIZE64
856         /* size in bytes. bz5831 */
857         ret = ioctl(fd, BLKGETSIZE64, (void*)&size);
858 #else
859         {
860                 __u32 lsize = 0;
861                 /* size in blocks */
862                 ret = ioctl(fd, BLKGETSIZE, (void*)&lsize);
863                 size = (__u64)lsize * 512;
864         }
865 #endif
866         close(fd);
867         if (ret < 0) {
868                 fprintf(stderr, "%s: size ioctl failed: %s\n",
869                         progname, strerror(errno));
870                 return 0;
871         }
872
873         vprint("device size = %juMB\n", (uintmax_t)(size >> 20));
874         /* return value in KB */
875         return size >> 10;
876 }
877
878 int file_create(char *path, __u64 size)
879 {
880         __u64 size_max;
881         int ret;
882         int fd;
883
884         /*
885          * Since "size" is in KB, the file offset it represents could overflow
886          * off_t.
887          */
888         size_max = (off_t)1 << (_FILE_OFFSET_BITS - 1 - 10);
889         if (size >= size_max) {
890                 fprintf(stderr, "%s: %ju KB: Backing store size must be "
891                         "smaller than %ju KB\n", progname, (uintmax_t) size,
892                         (uintmax_t)size_max);
893                 return EFBIG;
894         }
895
896         ret = access(path, F_OK);
897         if (ret == 0) {
898                 ret = unlink(path);
899                 if (ret != 0)
900                         return errno;
901         }
902
903         fd = creat(path, S_IRUSR|S_IWUSR);
904         if (fd < 0) {
905                 fatal();
906                 fprintf(stderr, "%s: Unable to create backing store: %s\n",
907                         progname, strerror(errno));
908                 return errno;
909         }
910
911         ret = ftruncate(fd, size * 1024);
912         close(fd);
913         if (ret != 0) {
914                 fatal();
915                 fprintf(stderr, "%s: Unable to truncate backing store: %s\n",
916                         progname, strerror(errno));
917                 return errno;
918         }
919
920         return 0;
921 }
922
923
924 struct lustre_cfg_entry {
925         struct list_head lce_list;
926         char             lce_name[0];
927 };
928
929 static struct lustre_cfg_entry *lustre_cfg_entry_init(const char *name)
930 {
931         struct lustre_cfg_entry *lce;
932         int len = strlen(name) + 1;
933
934         lce = malloc(sizeof(*lce) + len);
935         if (lce) {
936                 INIT_LIST_HEAD(&lce->lce_list);
937                 memcpy(lce->lce_name, name, len);
938         }
939
940         return lce;
941 }
942
943 static void lustre_cfg_entry_fini(struct lustre_cfg_entry *lce)
944 {
945         free(lce);
946 }
947
948 int lustre_rename_fsname(struct mkfs_opts *mop, const char *mntpt,
949                          const char *oldname)
950 {
951         struct lustre_disk_data *ldd = &mop->mo_ldd;
952         struct lr_server_data lsd;
953         char filepnm[128];
954         char cfg_dir[128];
955         DIR *dir = NULL;
956         struct dirent64 *dirent;
957         struct lustre_cfg_entry *lce;
958         struct list_head cfg_list;
959         int old_namelen = strlen(oldname);
960         int new_namelen = strlen(ldd->ldd_fsname);
961         int ret;
962         int fd;
963
964         INIT_LIST_HEAD(&cfg_list);
965
966         snprintf(filepnm, sizeof(filepnm), "%s/%s", mntpt, LAST_RCVD);
967         fd = open(filepnm, O_RDWR);
968         if (fd < 0) {
969                 if (errno == ENOENT)
970                         goto config;
971
972                 if (errno != 0)
973                         ret = errno;
974                 else
975                         ret = fd;
976                 fprintf(stderr, "Unable to open %s: %s\n",
977                         filepnm, strerror(ret));
978                 return ret;
979         }
980
981         ret = read(fd, &lsd, sizeof(lsd));
982         if (ret != sizeof(lsd)) {
983                 if (errno != 0)
984                         ret = errno;
985                 fprintf(stderr, "Unable to read %s: %s\n",
986                         filepnm, strerror(ret));
987                 close(fd);
988                 return ret;
989         }
990
991         ret = lseek(fd, 0, SEEK_SET);
992         if (ret) {
993                 if (errno != 0)
994                         ret = errno;
995                 fprintf(stderr, "Unable to lseek %s: %s\n",
996                         filepnm, strerror(ret));
997                 close(fd);
998                 return ret;
999         }
1000
1001         /* replace fsname in lr_server_data::lsd_uuid. */
1002         if (old_namelen > new_namelen)
1003                 memmove(lsd.lsd_uuid + new_namelen,
1004                         lsd.lsd_uuid + old_namelen,
1005                         sizeof(lsd.lsd_uuid) - old_namelen);
1006         else if (old_namelen < new_namelen)
1007                 memmove(lsd.lsd_uuid + new_namelen,
1008                         lsd.lsd_uuid + old_namelen,
1009                         sizeof(lsd.lsd_uuid) - new_namelen);
1010         memcpy(lsd.lsd_uuid, ldd->ldd_fsname, new_namelen);
1011         ret = write(fd, &lsd, sizeof(lsd));
1012         if (ret != sizeof(lsd)) {
1013                 if (errno != 0)
1014                         ret = errno;
1015                 fprintf(stderr, "Unable to write %s: %s\n",
1016                         filepnm, strerror(ret));
1017                 close(fd);
1018                 return ret;
1019         }
1020
1021         close(fd);
1022
1023 config:
1024         snprintf(cfg_dir, sizeof(cfg_dir), "%s/%s", mntpt, MOUNT_CONFIGS_DIR);
1025         dir = opendir(cfg_dir);
1026         if (!dir) {
1027                 if (errno != 0)
1028                         ret = errno;
1029                 else
1030                         ret = EINVAL;
1031                 fprintf(stderr, "Unable to opendir %s: %s\n",
1032                         cfg_dir, strerror(ret));
1033                 return ret;
1034         }
1035
1036         while ((dirent = readdir64(dir)) != NULL) {
1037                 char *ptr;
1038
1039                 if (strlen(dirent->d_name) <= old_namelen)
1040                         continue;
1041
1042                 ptr = strrchr(dirent->d_name, '-');
1043                 if (!ptr || (ptr - dirent->d_name) != old_namelen)
1044                         continue;
1045
1046                 if (strncmp(dirent->d_name, oldname, old_namelen) != 0)
1047                         continue;
1048
1049                 lce = lustre_cfg_entry_init(dirent->d_name);
1050                 if (!lce) {
1051                         if (errno != 0)
1052                                 ret = errno;
1053                         else
1054                                 ret = EINVAL;
1055
1056                         fprintf(stderr, "Fail to init item for %s: %s\n",
1057                                 dirent->d_name, strerror(ret));
1058                         goto out;
1059                 }
1060
1061                 list_add(&lce->lce_list, &cfg_list);
1062         }
1063
1064         closedir(dir);
1065         dir = NULL;
1066         ret = 0;
1067
1068         while (!list_empty(&cfg_list) && ret == 0) {
1069                 lce = list_entry(cfg_list.next, struct lustre_cfg_entry,
1070                                  lce_list);
1071                 list_del(&lce->lce_list);
1072                 snprintf(filepnm, sizeof(filepnm), "%s/%s", cfg_dir,
1073                          lce->lce_name);
1074                 if (IS_MGS(ldd))
1075                         /* Store the new fsname in the XATTR_TARGET_RENAME EA.
1076                          * When the MGS start, it will scan config logs, and
1077                          * for the ones which have the XATTR_TARGET_RENAME EA,
1078                          * it will replace old fsname with the new fsname in
1079                          * the config log by some shared kernel level config
1080                          * logs {fork,erase} functionalities automatically. */
1081                         ret = setxattr(filepnm, XATTR_TARGET_RENAME,
1082                                        ldd->ldd_fsname,
1083                                        strlen(ldd->ldd_fsname), 0);
1084                 else
1085                         ret = unlink(filepnm);
1086
1087                 if (ret) {
1088                         if (errno != 0)
1089                                 ret = errno;
1090
1091                         fprintf(stderr, "Fail to %s %s: %s\n",
1092                                 IS_MGS(ldd) ? "setxattr" : "unlink",
1093                                 filepnm, strerror(ret));
1094                 }
1095
1096                 lustre_cfg_entry_fini(lce);
1097         }
1098
1099 out:
1100         if (dir)
1101                 closedir(dir);
1102
1103         while (!list_empty(&cfg_list)) {
1104                 lce = list_entry(cfg_list.next, struct lustre_cfg_entry,
1105                                  lce_list);
1106                 list_del(&lce->lce_list);
1107                 lustre_cfg_entry_fini(lce);
1108         }
1109
1110         return ret;
1111 }
1112
1113 #ifdef HAVE_GSS
1114 #ifdef HAVE_OPENSSL_SSK
1115 int load_shared_keys(struct mount_opts *mop)
1116 {
1117         DIR *dir;
1118         struct dirent *dentry;
1119         struct stat sbuf;
1120         char fullpath[PATH_MAX];
1121         char *path = mop->mo_skpath;
1122         int rc;
1123
1124         /* init logging */
1125         sk_init_logging(NULL, 1, 1);
1126
1127         rc = stat(path, &sbuf);
1128         if (rc < 0) {
1129                 fprintf(stderr, "stat() failed for key %s: %s\n", path,
1130                         strerror(errno));
1131                 return -errno;
1132         }
1133
1134         /* Load individual keys or a directory of them */
1135         if (S_ISREG(sbuf.st_mode)) {
1136                 return sk_load_keyfile(path);
1137         } else if (!S_ISDIR(sbuf.st_mode)) {
1138                 fprintf(stderr, "Invalid shared key path: %s\n", path);
1139                 return -ENOKEY;
1140         }
1141
1142         dir = opendir(path);
1143         if (dir == NULL) {
1144                 fprintf(stderr, "Unable to open shared key directory: %s\n",
1145                         path);
1146                 return -ENOENT;
1147         }
1148
1149         /* Loop through the files in the directory attempting to load them.
1150          * Any issue with loading the keyfile is treated as an error although
1151          * the loop continues until all files have been attempted.  This will
1152          * allow all errors be reported at once rather then requiring
1153          * incremental corrections to fix each one and try again. */
1154         while ((dentry = readdir(dir)) != NULL) {
1155                 if (strcmp(".", dentry->d_name) == 0 ||
1156                     strcmp("..", dentry->d_name) == 0)
1157                         continue;
1158
1159                 rc = snprintf(fullpath, PATH_MAX, "%s/%s", path,
1160                               dentry->d_name);
1161                 if (rc >= PATH_MAX) {
1162                         fprintf(stderr, "Path too long for %s/%s\n",
1163                                 path, dentry->d_name);
1164                         rc = -ENAMETOOLONG;
1165                         continue;
1166                 }
1167
1168                 rc = stat(fullpath, &sbuf);
1169                 if (rc < 0) {
1170                         fprintf(stderr, "Unable to stat %s: %s\n", fullpath,
1171                                 strerror(errno));
1172                         rc = -errno;
1173                         continue;
1174                 }
1175
1176                 if (!S_ISREG(sbuf.st_mode))
1177                         continue;
1178
1179                 rc = sk_load_keyfile(fullpath);
1180                 if (rc) {
1181                         fprintf(stderr, "Failed to load key %s\n", fullpath);
1182                 }
1183         }
1184         closedir(dir);
1185
1186         return rc;
1187 }
1188 #endif /* HAVE_OPENSSL_SSK */
1189 #endif /* HAVE_GSS */