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