Whamcloud - gitweb
LU-12222 lnet: Introduce constant for the lolnd NID
[fs/lustre-release.git] / lustre / obdclass / obd_mount.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 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  * lustre/obdclass/obd_mount.c
33  *
34  * Client mount routines
35  *
36  * Author: Nathan Rutman <nathan@clusterfs.com>
37  */
38
39
40 #define DEBUG_SUBSYSTEM S_CLASS
41 #define D_MOUNT (D_SUPER|D_CONFIG/*|D_WARNING */)
42 #define PRINT_CMD CDEBUG
43
44 #include <obd.h>
45 #include <obd_class.h>
46 #include <linux/random.h>
47 #include <libcfs/linux/linux-uuid.h>
48 #include <linux/version.h>
49 #include <lustre_log.h>
50 #include <lustre_disk.h>
51 #include <uapi/linux/lustre/lustre_param.h>
52 #include <libcfs/crypto/llcrypt.h>
53
54 static DEFINE_SPINLOCK(client_lock);
55 static struct module *client_mod;
56 static int (*client_fill_super)(struct super_block *sb);
57
58 static void (*kill_super_cb)(struct super_block *sb);
59
60 /**************** config llog ********************/
61
62 /**
63  * Get a config log from the MGS and process it.
64  * This func is called for both clients and servers.
65  * Continue to process new statements appended to the logs
66  * (whenever the config lock is revoked) until lustre_end_log
67  * is called.
68  *
69  * @param sb The superblock is used by the MGC to write to the local copy of
70  *   the config log
71  * @param logname The name of the llog to replicate from the MGS
72  * @param cfg Since the same MGC may be used to follow multiple config logs
73  *   (e.g. ost1, ost2, client), the config_llog_instance keeps the state for
74  *   this log, and is added to the mgc's list of logs to follow.
75  */
76 int lustre_process_log(struct super_block *sb, char *logname,
77                        struct config_llog_instance *cfg)
78 {
79         struct lustre_cfg *lcfg;
80         struct lustre_cfg_bufs *bufs;
81         struct lustre_sb_info *lsi = s2lsi(sb);
82         struct obd_device *mgc = lsi->lsi_mgc;
83         int rc;
84
85         ENTRY;
86
87         LASSERT(mgc);
88         LASSERT(cfg);
89
90         OBD_ALLOC_PTR(bufs);
91         if (bufs == NULL)
92                 RETURN(-ENOMEM);
93
94         /* mgc_process_config */
95         lustre_cfg_bufs_reset(bufs, mgc->obd_name);
96         lustre_cfg_bufs_set_string(bufs, 1, logname);
97         lustre_cfg_bufs_set(bufs, 2, cfg, sizeof(*cfg));
98         lustre_cfg_bufs_set(bufs, 3, &sb, sizeof(sb));
99         OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
100         if (!lcfg)
101                 GOTO(out, rc = -ENOMEM);
102         lustre_cfg_init(lcfg, LCFG_LOG_START, bufs);
103
104         rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
105         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
106 out:
107         OBD_FREE_PTR(bufs);
108
109         if (rc == -EINVAL)
110                 LCONSOLE_ERROR_MSG(0x15b,
111                                    "%s: Configuration from log %s failed from MGS %d. Check client and MGS are on compatible version.\n",
112                                    mgc->obd_name, logname, rc);
113         else if (rc != 0)
114                 LCONSOLE_ERROR_MSG(0x15c,
115                                    "%s: Confguration from log %s failed from MGS %d. Communication error between node & MGS, a bad configuration, or other errors. See syslog for more info\n",
116                                    mgc->obd_name, logname, rc);
117
118         /* class_obd_list(); */
119         RETURN(rc);
120 }
121 EXPORT_SYMBOL(lustre_process_log);
122
123 /* Stop watching this config log for updates */
124 int lustre_end_log(struct super_block *sb, char *logname,
125                    struct config_llog_instance *cfg)
126 {
127         struct lustre_cfg *lcfg;
128         struct lustre_cfg_bufs bufs;
129         struct lustre_sb_info *lsi = s2lsi(sb);
130         struct obd_device *mgc = lsi->lsi_mgc;
131         int rc;
132
133         ENTRY;
134
135         if (!mgc)
136                 RETURN(-ENOENT);
137
138         /* mgc_process_config */
139         lustre_cfg_bufs_reset(&bufs, mgc->obd_name);
140         lustre_cfg_bufs_set_string(&bufs, 1, logname);
141         if (cfg)
142                 lustre_cfg_bufs_set(&bufs, 2, cfg, sizeof(*cfg));
143         OBD_ALLOC(lcfg, lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
144         if (!lcfg)
145                 RETURN(-ENOMEM);
146         lustre_cfg_init(lcfg, LCFG_LOG_END, &bufs);
147         rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
148         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
149         RETURN(rc);
150 }
151 EXPORT_SYMBOL(lustre_end_log);
152
153 /**************** OBD start *******************/
154
155 /**
156  * lustre_cfg_bufs are a holdover from 1.4; we can still set these up from
157  * lctl (and do for echo cli/srv.
158  */
159 static int do_lcfg(char *cfgname, lnet_nid_t nid, int cmd,
160                    char *s1, char *s2, char *s3, char *s4)
161 {
162         struct lustre_cfg_bufs bufs;
163         struct lustre_cfg *lcfg = NULL;
164         int rc;
165
166         CDEBUG(D_TRACE, "lcfg %s %#x %s %s %s %s\n", cfgname,
167                cmd, s1, s2, s3, s4);
168
169         lustre_cfg_bufs_reset(&bufs, cfgname);
170         if (s1)
171                 lustre_cfg_bufs_set_string(&bufs, 1, s1);
172         if (s2)
173                 lustre_cfg_bufs_set_string(&bufs, 2, s2);
174         if (s3)
175                 lustre_cfg_bufs_set_string(&bufs, 3, s3);
176         if (s4)
177                 lustre_cfg_bufs_set_string(&bufs, 4, s4);
178
179         OBD_ALLOC(lcfg, lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
180         if (!lcfg)
181                 return -ENOMEM;
182         lustre_cfg_init(lcfg, cmd, &bufs);
183         lcfg->lcfg_nid = nid;
184         rc = class_process_config(lcfg);
185         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
186         return rc;
187 }
188
189 /**
190  * Call class_attach and class_setup.  These methods in turn call
191  * OBD type-specific methods.
192  */
193 int lustre_start_simple(char *obdname, char *type, char *uuid,
194                         char *s1, char *s2, char *s3, char *s4)
195 {
196         int rc;
197
198         CDEBUG(D_MOUNT, "Starting OBD %s (typ=%s)\n", obdname, type);
199
200         rc = do_lcfg(obdname, 0, LCFG_ATTACH, type, uuid, NULL, NULL);
201         if (rc) {
202                 CERROR("%s attach error %d\n", obdname, rc);
203                 return rc;
204         }
205         rc = do_lcfg(obdname, 0, LCFG_SETUP, s1, s2, s3, s4);
206         if (rc) {
207                 CERROR("%s setup error %d\n", obdname, rc);
208                 do_lcfg(obdname, 0, LCFG_DETACH, NULL, NULL, NULL, NULL);
209         }
210         return rc;
211 }
212
213 static DEFINE_MUTEX(mgc_start_lock);
214
215 /**
216  * Set up a MGC OBD to process startup logs
217  *
218  * \param sb [in] super block of the MGC OBD
219  *
220  * \retval 0 success, otherwise error code
221  */
222 int lustre_start_mgc(struct super_block *sb)
223 {
224         struct obd_connect_data *data = NULL;
225         struct lustre_sb_info *lsi = s2lsi(sb);
226         struct obd_device *obd;
227         struct obd_export *exp;
228         struct obd_uuid *uuid = NULL;
229         uuid_t uuidc;
230         lnet_nid_t nid;
231         char nidstr[LNET_NIDSTR_SIZE];
232         char *mgcname = NULL, *niduuid = NULL, *mgssec = NULL;
233         char *ptr;
234         int rc = 0, i = 0, j;
235         size_t len;
236
237         ENTRY;
238
239         LASSERT(lsi->lsi_lmd);
240
241         /* Find the first non-lo MGS NID for our MGC name */
242         if (IS_SERVER(lsi)) {
243                 /* mount -o mgsnode=nid */
244                 ptr = lsi->lsi_lmd->lmd_mgs;
245                 if (lsi->lsi_lmd->lmd_mgs &&
246                     (class_parse_nid(lsi->lsi_lmd->lmd_mgs, &nid, &ptr) == 0)) {
247                         i++;
248                 } else if (IS_MGS(lsi)) {
249                         struct lnet_process_id id;
250
251                         while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
252                                 if (id.nid == LNET_NID_LO_0)
253                                         continue;
254                                 nid = id.nid;
255                                 i++;
256                                 break;
257                         }
258                 }
259         } else { /* client */
260                 /* Use NIDs from mount line: uml1,1@elan:uml2,2@elan:/lustre */
261                 ptr = lsi->lsi_lmd->lmd_dev;
262                 if (class_parse_nid(ptr, &nid, &ptr) == 0)
263                         i++;
264         }
265         if (i == 0) {
266                 CERROR("No valid MGS NIDs found.\n");
267                 RETURN(-EINVAL);
268         }
269
270         mutex_lock(&mgc_start_lock);
271
272         libcfs_nid2str_r(nid, nidstr, sizeof(nidstr));
273         len = strlen(LUSTRE_MGC_OBDNAME) + strlen(nidstr) + 1;
274         OBD_ALLOC(mgcname, len);
275         OBD_ALLOC(niduuid, len + 2);
276         if (mgcname == NULL || niduuid == NULL)
277                 GOTO(out_free, rc = -ENOMEM);
278         snprintf(mgcname, len, "%s%s", LUSTRE_MGC_OBDNAME, nidstr);
279
280         mgssec = lsi->lsi_lmd->lmd_mgssec ? lsi->lsi_lmd->lmd_mgssec : "";
281
282         OBD_ALLOC_PTR(data);
283         if (data == NULL)
284                 GOTO(out_free, rc = -ENOMEM);
285
286         obd = class_name2obd(mgcname);
287         if (obd && !obd->obd_stopping) {
288                 int recov_bk;
289
290                 rc = obd_set_info_async(NULL, obd->obd_self_export,
291                                         strlen(KEY_MGSSEC), KEY_MGSSEC,
292                                         strlen(mgssec), mgssec, NULL);
293                 if (rc)
294                         GOTO(out_free, rc);
295
296                 /* Re-using an existing MGC */
297                 atomic_inc(&obd->u.cli.cl_mgc_refcount);
298
299                 /* IR compatibility check, only for clients */
300                 if (lmd_is_client(lsi->lsi_lmd)) {
301                         int has_ir;
302                         int vallen = sizeof(*data);
303                         __u32 *flags = &lsi->lsi_lmd->lmd_flags;
304
305                         rc = obd_get_info(NULL, obd->obd_self_export,
306                                           strlen(KEY_CONN_DATA), KEY_CONN_DATA,
307                                           &vallen, data);
308                         LASSERT(rc == 0);
309                         has_ir = OCD_HAS_FLAG(data, IMP_RECOV);
310                         if (has_ir ^ !(*flags & LMD_FLG_NOIR)) {
311                                 /* LMD_FLG_NOIR is for test purpose only */
312                                 LCONSOLE_WARN(
313                                               "Mounting client with IR setting not compatible with current MGC. Using MGC setting that is IR %s",
314                                               has_ir ? "enabled" : "disabled");
315                                 if (has_ir)
316                                         *flags &= ~LMD_FLG_NOIR;
317                                 else
318                                         *flags |= LMD_FLG_NOIR;
319                         }
320                 }
321
322                 recov_bk = 0;
323                 /*
324                  * If we are restarting the MGS, don't try to keep the MGC's
325                  * old connection, or registration will fail.
326                  */
327                 if (IS_MGS(lsi)) {
328                         CDEBUG(D_MOUNT, "New MGS with live MGC\n");
329                         recov_bk = 1;
330                 }
331
332                 /*
333                  * Try all connections, but only once (again).
334                  * We don't want to block another target from starting
335                  * (using its local copy of the log), but we do want to connect
336                  * if at all possible.
337                  */
338                 recov_bk++;
339                 CDEBUG(D_MOUNT, "%s:Set MGC reconnect %d\n", mgcname, recov_bk);
340                 rc = obd_set_info_async(NULL, obd->obd_self_export,
341                                         sizeof(KEY_INIT_RECOV_BACKUP),
342                                         KEY_INIT_RECOV_BACKUP,
343                                         sizeof(recov_bk), &recov_bk, NULL);
344                 GOTO(out, rc = 0);
345         }
346
347         CDEBUG(D_MOUNT, "Start MGC '%s'\n", mgcname);
348
349         /* Add the primary NIDs for the MGS */
350         i = 0;
351         snprintf(niduuid, len + 2, "%s_%x", mgcname, i);
352         if (IS_SERVER(lsi)) {
353                 ptr = lsi->lsi_lmd->lmd_mgs;
354                 CDEBUG(D_MOUNT, "mgs NIDs %s.\n", ptr);
355                 if (IS_MGS(lsi)) {
356                         /* Use local NIDs (including LO) */
357                         struct lnet_process_id id;
358
359                         while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
360                                 rc = do_lcfg(mgcname, id.nid, LCFG_ADD_UUID,
361                                              niduuid, NULL, NULL, NULL);
362                         }
363                 } else {
364                         /* Use mgsnode= nids */
365                         /* mount -o mgsnode=nid */
366                         if (lsi->lsi_lmd->lmd_mgs) {
367                                 ptr = lsi->lsi_lmd->lmd_mgs;
368                         } else if (class_find_param(ptr, PARAM_MGSNODE,
369                                                     &ptr) != 0) {
370                                 CERROR("No MGS NIDs given.\n");
371                                 GOTO(out_free, rc = -EINVAL);
372                         }
373                         /*
374                          * Add primary MGS NID(s).
375                          * Multiple NIDs on one MGS node are separated
376                          * by commas.
377                          */
378                         while (class_parse_nid(ptr, &nid, &ptr) == 0) {
379                                 rc = do_lcfg(mgcname, nid, LCFG_ADD_UUID,
380                                              niduuid, NULL, NULL, NULL);
381                                 if (rc == 0)
382                                         ++i;
383                                 /* Stop at the first failover NID */
384                                 if (*ptr == ':')
385                                         break;
386                         }
387                 }
388         } else { /* client */
389                 /* Use NIDs from mount line: uml1,1@elan:uml2,2@elan:/lustre */
390                 ptr = lsi->lsi_lmd->lmd_dev;
391                 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
392                         rc = do_lcfg(mgcname, nid, LCFG_ADD_UUID,
393                                      niduuid, NULL, NULL, NULL);
394                         if (rc == 0)
395                                 ++i;
396                         /* Stop at the first failover NID */
397                         if (*ptr == ':')
398                                 break;
399                 }
400         }
401         if (i == 0) {
402                 CERROR("No valid MGS NIDs found.\n");
403                 GOTO(out_free, rc = -EINVAL);
404         }
405         lsi->lsi_lmd->lmd_mgs_failnodes = 1;
406
407         /* Random uuid for MGC allows easier reconnects */
408         OBD_ALLOC_PTR(uuid);
409         if (uuid == NULL)
410                 GOTO(out_free, rc = -ENOMEM);
411
412         generate_random_uuid(uuidc.b);
413         snprintf(uuid->uuid, UUID_SIZE, "%pU", uuidc.b);
414
415         /* Start the MGC */
416         rc = lustre_start_simple(mgcname, LUSTRE_MGC_NAME,
417                                  (char *)uuid->uuid, LUSTRE_MGS_OBDNAME,
418                                  niduuid, NULL, NULL);
419         if (rc)
420                 GOTO(out_free, rc);
421
422         /* Add any failover MGS NIDs */
423         i = 1;
424         while (ptr && ((*ptr == ':' ||
425                class_find_param(ptr, PARAM_MGSNODE, &ptr) == 0))) {
426                 /* New failover node */
427                 sprintf(niduuid, "%s_%x", mgcname, i);
428                 j = 0;
429                 while (class_parse_nid_quiet(ptr, &nid, &ptr) == 0) {
430                         rc = do_lcfg(mgcname, nid, LCFG_ADD_UUID,
431                                      niduuid, NULL, NULL, NULL);
432                         if (rc == 0)
433                                 ++j;
434                         if (*ptr == ':')
435                                 break;
436                 }
437                 if (j > 0) {
438                         rc = do_lcfg(mgcname, 0, LCFG_ADD_CONN,
439                                      niduuid, NULL, NULL, NULL);
440                         if (rc == 0)
441                                 ++i;
442                 } else {
443                         /* at ":/fsname" */
444                         break;
445                 }
446         }
447         lsi->lsi_lmd->lmd_mgs_failnodes = i;
448
449         obd = class_name2obd(mgcname);
450         if (!obd) {
451                 CERROR("Can't find mgcobd %s\n", mgcname);
452                 GOTO(out_free, rc = -ENOTCONN);
453         }
454
455         rc = obd_set_info_async(NULL, obd->obd_self_export,
456                                 strlen(KEY_MGSSEC), KEY_MGSSEC,
457                                 strlen(mgssec), mgssec, NULL);
458         if (rc)
459                 GOTO(out_free, rc);
460
461         /*
462          * Keep a refcount of servers/clients who started with "mount",
463          * so we know when we can get rid of the mgc.
464          */
465         atomic_set(&obd->u.cli.cl_mgc_refcount, 1);
466
467         /* We connect to the MGS at setup, and don't disconnect until cleanup */
468         data->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_AT |
469                                   OBD_CONNECT_FULL20 | OBD_CONNECT_IMP_RECOV |
470                                   OBD_CONNECT_LVB_TYPE |
471                                   OBD_CONNECT_BULK_MBITS | OBD_CONNECT_BARRIER;
472
473         if (lmd_is_client(lsi->lsi_lmd) &&
474             lsi->lsi_lmd->lmd_flags & LMD_FLG_NOIR)
475                 data->ocd_connect_flags &= ~OBD_CONNECT_IMP_RECOV;
476         data->ocd_version = LUSTRE_VERSION_CODE;
477         rc = obd_connect(NULL, &exp, obd, uuid, data, NULL);
478         if (rc) {
479                 CERROR("connect failed %d\n", rc);
480                 GOTO(out, rc);
481         }
482
483         obd->u.cli.cl_mgc_mgsexp = exp;
484
485 out:
486         /*
487          * Keep the MGC info in the sb. Note that many lsi's can point
488          * to the same mgc.
489          */
490         lsi->lsi_mgc = obd;
491 out_free:
492         mutex_unlock(&mgc_start_lock);
493
494         if (uuid)
495                 OBD_FREE_PTR(uuid);
496         if (data)
497                 OBD_FREE_PTR(data);
498         if (mgcname)
499                 OBD_FREE(mgcname, len);
500         if (niduuid)
501                 OBD_FREE(niduuid, len + 2);
502         RETURN(rc);
503 }
504
505 static int lustre_stop_mgc(struct super_block *sb)
506 {
507         struct lustre_sb_info *lsi = s2lsi(sb);
508         struct obd_device *obd;
509         char *niduuid = NULL, *ptr = NULL;
510         int i, rc = 0, len = 0;
511
512         ENTRY;
513
514         if (!lsi)
515                 RETURN(-ENOENT);
516         obd = lsi->lsi_mgc;
517         if (!obd)
518                 RETURN(-ENOENT);
519         lsi->lsi_mgc = NULL;
520
521         mutex_lock(&mgc_start_lock);
522         LASSERT(atomic_read(&obd->u.cli.cl_mgc_refcount) > 0);
523         if (!atomic_dec_and_test(&obd->u.cli.cl_mgc_refcount)) {
524                 /*
525                  * This is not fatal, every client that stops
526                  * will call in here.
527                  */
528                 CDEBUG(D_MOUNT, "MGC still has %d references.\n",
529                        atomic_read(&obd->u.cli.cl_mgc_refcount));
530                 GOTO(out, rc = -EBUSY);
531         }
532
533         /*
534          * The MGC has no recoverable data in any case.
535          * force shotdown set in umount_begin
536          */
537         obd->obd_no_recov = 1;
538
539         if (obd->u.cli.cl_mgc_mgsexp) {
540                 /*
541                  * An error is not fatal, if we are unable to send the
542                  * disconnect mgs ping evictor cleans up the export
543                  */
544                 rc = obd_disconnect(obd->u.cli.cl_mgc_mgsexp);
545                 if (rc)
546                         CDEBUG(D_MOUNT, "disconnect failed %d\n", rc);
547         }
548
549         /*
550          * Save the obdname for cleaning the nid uuids, which are
551          * obdname_XX
552          */
553         len = strlen(obd->obd_name) + 6;
554         OBD_ALLOC(niduuid, len);
555         if (niduuid) {
556                 strcpy(niduuid, obd->obd_name);
557                 ptr = niduuid + strlen(niduuid);
558         }
559
560         rc = class_manual_cleanup(obd);
561         if (rc)
562                 GOTO(out, rc);
563
564         /* Clean the nid uuids */
565         if (!niduuid)
566                 GOTO(out, rc = -ENOMEM);
567
568         for (i = 0; i < lsi->lsi_lmd->lmd_mgs_failnodes; i++) {
569                 sprintf(ptr, "_%x", i);
570                 rc = do_lcfg(LUSTRE_MGC_OBDNAME, 0, LCFG_DEL_UUID,
571                              niduuid, NULL, NULL, NULL);
572                 if (rc)
573                         CERROR("del MDC UUID %s failed: rc = %d\n",
574                                niduuid, rc);
575         }
576 out:
577         if (niduuid)
578                 OBD_FREE(niduuid, len);
579
580         /* class_import_put will get rid of the additional connections */
581         mutex_unlock(&mgc_start_lock);
582         RETURN(rc);
583 }
584
585 /***************** lustre superblock **************/
586
587 static struct lustre_sb_info *lustre_init_lsi(struct super_block *sb)
588 {
589         struct lustre_sb_info *lsi;
590
591         ENTRY;
592
593         OBD_ALLOC_PTR(lsi);
594         if (!lsi)
595                 RETURN(NULL);
596         OBD_ALLOC_PTR(lsi->lsi_lmd);
597         if (!lsi->lsi_lmd) {
598                 OBD_FREE_PTR(lsi);
599                 RETURN(NULL);
600         }
601
602         lsi->lsi_lmd->lmd_exclude_count = 0;
603         lsi->lsi_lmd->lmd_recovery_time_soft = 0;
604         lsi->lsi_lmd->lmd_recovery_time_hard = 0;
605         s2lsi_nocast(sb) = lsi;
606         /* we take 1 extra ref for our setup */
607         atomic_set(&lsi->lsi_mounts, 1);
608
609         /* Default umount style */
610         lsi->lsi_flags = LSI_UMOUNT_FAILOVER;
611         INIT_LIST_HEAD(&lsi->lsi_lwp_list);
612         mutex_init(&lsi->lsi_lwp_mutex);
613
614         RETURN(lsi);
615 }
616
617 static int lustre_free_lsi(struct super_block *sb)
618 {
619         struct lustre_sb_info *lsi = s2lsi(sb);
620
621         ENTRY;
622
623         LASSERT(lsi != NULL);
624         CDEBUG(D_MOUNT, "Freeing lsi %p\n", lsi);
625
626         /* someone didn't call server_put_mount. */
627         LASSERT(atomic_read(&lsi->lsi_mounts) == 0);
628
629         llcrypt_sb_free(sb);
630         if (lsi->lsi_lmd != NULL) {
631                 if (lsi->lsi_lmd->lmd_dev != NULL)
632                         OBD_FREE(lsi->lsi_lmd->lmd_dev,
633                                 strlen(lsi->lsi_lmd->lmd_dev) + 1);
634                 if (lsi->lsi_lmd->lmd_profile != NULL)
635                         OBD_FREE(lsi->lsi_lmd->lmd_profile,
636                                 strlen(lsi->lsi_lmd->lmd_profile) + 1);
637                 if (lsi->lsi_lmd->lmd_fileset != NULL)
638                         OBD_FREE(lsi->lsi_lmd->lmd_fileset,
639                                 strlen(lsi->lsi_lmd->lmd_fileset) + 1);
640                 if (lsi->lsi_lmd->lmd_mgssec != NULL)
641                         OBD_FREE(lsi->lsi_lmd->lmd_mgssec,
642                                 strlen(lsi->lsi_lmd->lmd_mgssec) + 1);
643                 if (lsi->lsi_lmd->lmd_opts != NULL)
644                         OBD_FREE(lsi->lsi_lmd->lmd_opts,
645                                 strlen(lsi->lsi_lmd->lmd_opts) + 1);
646                 if (lsi->lsi_lmd->lmd_exclude_count)
647                         OBD_FREE(lsi->lsi_lmd->lmd_exclude,
648                                 sizeof(lsi->lsi_lmd->lmd_exclude[0]) *
649                                 lsi->lsi_lmd->lmd_exclude_count);
650                 if (lsi->lsi_lmd->lmd_mgs != NULL)
651                         OBD_FREE(lsi->lsi_lmd->lmd_mgs,
652                                  strlen(lsi->lsi_lmd->lmd_mgs) + 1);
653                 if (lsi->lsi_lmd->lmd_osd_type != NULL)
654                         OBD_FREE(lsi->lsi_lmd->lmd_osd_type,
655                                  strlen(lsi->lsi_lmd->lmd_osd_type) + 1);
656                 if (lsi->lsi_lmd->lmd_params != NULL)
657                         OBD_FREE(lsi->lsi_lmd->lmd_params, 4096);
658                 if (lsi->lsi_lmd->lmd_nidnet != NULL)
659                         OBD_FREE(lsi->lsi_lmd->lmd_nidnet,
660                                 strlen(lsi->lsi_lmd->lmd_nidnet) + 1);
661
662                 OBD_FREE_PTR(lsi->lsi_lmd);
663         }
664
665         LASSERT(lsi->lsi_llsbi == NULL);
666         OBD_FREE_PTR(lsi);
667         s2lsi_nocast(sb) = NULL;
668
669         RETURN(0);
670 }
671
672 /*
673  * The lsi has one reference for every server that is using the disk -
674  * e.g. MDT, MGS, and potentially MGC
675  */
676 int lustre_put_lsi(struct super_block *sb)
677 {
678         struct lustre_sb_info *lsi = s2lsi(sb);
679
680         ENTRY;
681
682         LASSERT(lsi != NULL);
683
684         CDEBUG(D_MOUNT, "put %p %d\n", sb, atomic_read(&lsi->lsi_mounts));
685         if (atomic_dec_and_test(&lsi->lsi_mounts)) {
686                 if (IS_SERVER(lsi) && lsi->lsi_osd_exp) {
687                         lu_device_put(&lsi->lsi_dt_dev->dd_lu_dev);
688                         lsi->lsi_osd_exp->exp_obd->obd_lvfs_ctxt.dt = NULL;
689                         lsi->lsi_dt_dev = NULL;
690                         obd_disconnect(lsi->lsi_osd_exp);
691                         /* wait till OSD is gone */
692                         obd_zombie_barrier();
693                 }
694                 lustre_free_lsi(sb);
695                 RETURN(1);
696         }
697         RETURN(0);
698 }
699
700 /*
701  * The goal of this function is to extract the file system name
702  * from the OBD name. This can come in two flavors. One is
703  * fsname-MDTXXXX or fsname-XXXXXXX were X is a hexadecimal
704  * number. In both cases we should return fsname. If it is
705  * not a valid OBD name it is assumed to be the file system
706  * name itself.
707  */
708 void obdname2fsname(const char *tgt, char *fsname, size_t buflen)
709 {
710         const char *ptr;
711         const char *tmp;
712         size_t len = 0;
713
714         /*
715          * First we have to see if the @tgt has '-' at all. It is
716          * valid for the user to request something like
717          * lctl set_param -P llite.lustre*.xattr_cache=0
718          */
719         ptr = strrchr(tgt, '-');
720         if (!ptr) {
721                 /* No '-' means it could end in '*' */
722                 ptr = strchr(tgt, '*');
723                 if (!ptr) {
724                         /* No '*' either. Assume tgt = fsname */
725                         len = strlen(tgt);
726                         goto valid_obd_name;
727                 }
728                 len = ptr - tgt;
729                 goto valid_obd_name;
730         }
731
732         /* tgt format fsname-MDT0000-* */
733         if ((!strncmp(ptr, "-MDT", 4) ||
734              !strncmp(ptr, "-OST", 4)) &&
735              (isxdigit(ptr[4]) && isxdigit(ptr[5]) &&
736               isxdigit(ptr[6]) && isxdigit(ptr[7]))) {
737                 len = ptr - tgt;
738                 goto valid_obd_name;
739         }
740
741         /*
742          * tgt_format fsname-cli'dev'-'uuid' except for the llite case
743          * which are named fsname-'uuid'. Examples:
744          *
745          * lustre-clilov-ffff88104db5b800
746          * lustre-ffff88104db5b800  (for llite device)
747          *
748          * The length of the OBD uuid can vary on different platforms.
749          * This test if any invalid characters are in string. Allow
750          * wildcards with '*' character.
751          */
752         ptr++;
753         if (!strspn(ptr, "0123456789abcdefABCDEF*")) {
754                 len = 0;
755                 goto no_fsname;
756         }
757
758         /*
759          * Now that we validated the device name lets extract the
760          * file system name. Most of the names in this class will
761          * have '-cli' in its name which needs to be dropped. If
762          * it doesn't have '-cli' then its a llite device which
763          * ptr already points to the start of the uuid string.
764          */
765         tmp = strstr(tgt, "-cli");
766         if (tmp)
767                 ptr = tmp;
768         else
769                 ptr--;
770         len = ptr - tgt;
771 valid_obd_name:
772         len = min_t(size_t, len, LUSTRE_MAXFSNAME);
773         snprintf(fsname, buflen, "%.*s", (int)len, tgt);
774 no_fsname:
775         fsname[len] = '\0';
776 }
777 EXPORT_SYMBOL(obdname2fsname);
778
779 /**
780  * SERVER NAME ***
781  * <FSNAME><SEPARATOR><TYPE><INDEX>
782  * FSNAME is between 1 and 8 characters (inclusive).
783  *      Excluded characters are '/' and ':'
784  * SEPARATOR is either ':' or '-'
785  * TYPE: "OST", "MDT", etc.
786  * INDEX: Hex representation of the index
787  */
788
789 /**
790  * Get the fsname ("lustre") from the server name ("lustre-OST003F").
791  * @param [in] svname server name including type and index
792  * @param [out] fsname Buffer to copy filesystem name prefix into.
793  *  Must have at least 'strlen(fsname) + 1' chars.
794  * @param [out] endptr if endptr isn't NULL it is set to end of fsname
795  * rc < 0  on error
796  */
797 int server_name2fsname(const char *svname, char *fsname, const char **endptr)
798 {
799         const char *dash;
800
801         dash = svname + strnlen(svname, LUSTRE_MAXFSNAME);
802         for (; dash > svname && *dash != '-' && *dash != ':'; dash--)
803                 ;
804         if (dash == svname)
805                 return -EINVAL;
806
807         if (fsname != NULL) {
808                 strncpy(fsname, svname, dash - svname);
809                 fsname[dash - svname] = '\0';
810         }
811
812         if (endptr != NULL)
813                 *endptr = dash;
814
815         return 0;
816 }
817 EXPORT_SYMBOL(server_name2fsname);
818
819 /**
820  * Get service name (svname) from string
821  * rc < 0 on error
822  * if endptr isn't NULL it is set to end of fsname *
823  */
824 int server_name2svname(const char *label, char *svname, const char **endptr,
825                        size_t svsize)
826 {
827         int rc;
828         const char *dash;
829
830         /* We use server_name2fsname() just for parsing */
831         rc = server_name2fsname(label, NULL, &dash);
832         if (rc != 0)
833                 return rc;
834
835         if (endptr != NULL)
836                 *endptr = dash;
837
838         if (strlcpy(svname, dash + 1, svsize) >= svsize)
839                 return -E2BIG;
840
841         return 0;
842 }
843 EXPORT_SYMBOL(server_name2svname);
844
845 /**
846  * check server name is OST.
847  **/
848 int server_name_is_ost(const char *svname)
849 {
850         const char *dash;
851         int rc;
852
853         /* We use server_name2fsname() just for parsing */
854         rc = server_name2fsname(svname, NULL, &dash);
855         if (rc != 0)
856                 return rc;
857
858         dash++;
859
860         if (strncmp(dash, "OST", 3) == 0)
861                 return 1;
862         return 0;
863 }
864 EXPORT_SYMBOL(server_name_is_ost);
865
866 /**
867  * Get the index from the target name MDTXXXX/OSTXXXX
868  * rc = server type, or rc < 0  on error
869  **/
870 int target_name2index(const char *tgtname, __u32 *idx, const char **endptr)
871 {
872         const char *dash = tgtname;
873         unsigned long index;
874         int rc;
875
876         if (strncmp(dash, "MDT", 3) == 0)
877                 rc = LDD_F_SV_TYPE_MDT;
878         else if (strncmp(dash, "OST", 3) == 0)
879                 rc = LDD_F_SV_TYPE_OST;
880         else
881                 return -EINVAL;
882
883         dash += 3;
884
885         if (strncmp(dash, "all", 3) == 0) {
886                 if (endptr != NULL)
887                         *endptr = dash + 3;
888                 return rc | LDD_F_SV_ALL;
889         }
890
891         index = simple_strtoul(dash, (char **)endptr, 16);
892         if (idx != NULL)
893                 *idx = index;
894
895         if (index > 0xffff)
896                 return -ERANGE;
897
898         return rc;
899 }
900 EXPORT_SYMBOL(target_name2index);
901
902 /*
903  * Get the index from the OBD name.
904  * rc = server type, or
905  * rc < 0  on error
906  * if endptr isn't NULL it is set to end of name
907  */
908 int server_name2index(const char *svname, __u32 *idx, const char **endptr)
909 {
910         const char *dash;
911         int rc;
912
913         /* We use server_name2fsname() just for parsing */
914         rc = server_name2fsname(svname, NULL, &dash);
915         if (rc != 0)
916                 return rc;
917
918         dash++;
919         rc = target_name2index(dash, idx, endptr);
920         if (rc < 0)
921                 return rc;
922
923         /* Account for -mdc after index that is possible when specifying mdt */
924         if (endptr != NULL && strncmp(LUSTRE_MDC_NAME, *endptr + 1,
925                                       sizeof(LUSTRE_MDC_NAME)-1) == 0)
926                 *endptr += sizeof(LUSTRE_MDC_NAME);
927
928         return rc;
929 }
930 EXPORT_SYMBOL(server_name2index);
931
932 /*************** mount common betweeen server and client ***************/
933
934 /* Common umount */
935 int lustre_common_put_super(struct super_block *sb)
936 {
937         int rc;
938
939         ENTRY;
940
941         CDEBUG(D_MOUNT, "dropping sb %p\n", sb);
942
943         /* Drop a ref to the MGC */
944         rc = lustre_stop_mgc(sb);
945         if (rc && (rc != -ENOENT)) {
946                 if (rc != -EBUSY) {
947                         CERROR("Can't stop MGC: %d\n", rc);
948                         RETURN(rc);
949                 }
950                 /*
951                  * BUSY just means that there's some other OBD that
952                  * needs the mgc.  Let him clean it up.
953                  */
954                 CDEBUG(D_MOUNT, "MGC still in use\n");
955         }
956         /* Drop a ref to the mounted disk */
957         lustre_put_lsi(sb);
958
959         RETURN(rc);
960 }
961 EXPORT_SYMBOL(lustre_common_put_super);
962
963 static void lmd_print(struct lustre_mount_data *lmd)
964 {
965         int i;
966
967         PRINT_CMD(D_MOUNT, "  mount data:\n");
968         if (lmd_is_client(lmd))
969                 PRINT_CMD(D_MOUNT, "profile: %s\n", lmd->lmd_profile);
970         PRINT_CMD(D_MOUNT, "device:  %s\n", lmd->lmd_dev);
971         PRINT_CMD(D_MOUNT, "flags:   %x\n", lmd->lmd_flags);
972
973         if (lmd->lmd_opts)
974                 PRINT_CMD(D_MOUNT, "options: %s\n", lmd->lmd_opts);
975
976         if (lmd->lmd_recovery_time_soft)
977                 PRINT_CMD(D_MOUNT, "recovery time soft: %d\n",
978                           lmd->lmd_recovery_time_soft);
979
980         if (lmd->lmd_recovery_time_hard)
981                 PRINT_CMD(D_MOUNT, "recovery time hard: %d\n",
982                           lmd->lmd_recovery_time_hard);
983
984         for (i = 0; i < lmd->lmd_exclude_count; i++) {
985                 PRINT_CMD(D_MOUNT, "exclude %d:  OST%04x\n", i,
986                           lmd->lmd_exclude[i]);
987         }
988 }
989
990 /* Is this server on the exclusion list */
991 int lustre_check_exclusion(struct super_block *sb, char *svname)
992 {
993         struct lustre_sb_info *lsi = s2lsi(sb);
994         struct lustre_mount_data *lmd = lsi->lsi_lmd;
995         __u32 index;
996         int i, rc;
997
998         ENTRY;
999
1000         rc = server_name2index(svname, &index, NULL);
1001         if (rc != LDD_F_SV_TYPE_OST)
1002                 /* Only exclude OSTs */
1003                 RETURN(0);
1004
1005         CDEBUG(D_MOUNT, "Check exclusion %s (%d) in %d of %s\n", svname,
1006                index, lmd->lmd_exclude_count, lmd->lmd_dev);
1007
1008         for (i = 0; i < lmd->lmd_exclude_count; i++) {
1009                 if (index == lmd->lmd_exclude[i]) {
1010                         CWARN("Excluding %s (on exclusion list)\n", svname);
1011                         RETURN(1);
1012                 }
1013         }
1014         RETURN(0);
1015 }
1016
1017 /* mount -v  -o exclude=lustre-OST0001:lustre-OST0002 -t lustre ... */
1018 static int lmd_make_exclusion(struct lustre_mount_data *lmd, const char *ptr)
1019 {
1020         const char *s1 = ptr, *s2;
1021         __u32 *exclude_list;
1022         __u32 index = 0;
1023         int rc = 0, devmax;
1024
1025         ENTRY;
1026
1027         /*
1028          * The shortest an ost name can be is 8 chars: -OST0000.
1029          * We don't actually know the fsname at this time, so in fact
1030          * a user could specify any fsname.
1031          */
1032         devmax = strlen(ptr) / 8 + 1;
1033
1034         /* temp storage until we figure out how many we have */
1035         OBD_ALLOC(exclude_list, sizeof(index) * devmax);
1036         if (!exclude_list)
1037                 RETURN(-ENOMEM);
1038
1039         /* we enter this fn pointing at the '=' */
1040         while (*s1 && *s1 != ' ' && *s1 != ',') {
1041                 s1++;
1042                 rc = server_name2index(s1, &index, &s2);
1043                 if (rc < 0) {
1044                         CERROR("Can't parse server name '%s': rc = %d\n",
1045                                s1, rc);
1046                         break;
1047                 }
1048                 if (rc == LDD_F_SV_TYPE_OST)
1049                         exclude_list[lmd->lmd_exclude_count++] = index;
1050                 else
1051                         CDEBUG(D_MOUNT, "ignoring exclude %.*s: type = %#x\n",
1052                                (uint)(s2-s1), s1, rc);
1053                 s1 = s2;
1054                 /*
1055                  * now we are pointing at ':' (next exclude)
1056                  * or ',' (end of excludes)
1057                  */
1058                 if (lmd->lmd_exclude_count >= devmax)
1059                         break;
1060         }
1061         if (rc >= 0) /* non-err */
1062                 rc = 0;
1063
1064         if (lmd->lmd_exclude_count) {
1065                 /* permanent, freed in lustre_free_lsi */
1066                 OBD_ALLOC(lmd->lmd_exclude, sizeof(index) *
1067                           lmd->lmd_exclude_count);
1068                 if (lmd->lmd_exclude) {
1069                         memcpy(lmd->lmd_exclude, exclude_list,
1070                                sizeof(index) * lmd->lmd_exclude_count);
1071                 } else {
1072                         rc = -ENOMEM;
1073                         lmd->lmd_exclude_count = 0;
1074                 }
1075         }
1076         OBD_FREE(exclude_list, sizeof(index) * devmax);
1077         RETURN(rc);
1078 }
1079
1080 static int lmd_parse_mgssec(struct lustre_mount_data *lmd, char *ptr)
1081 {
1082         char *tail;
1083         int length;
1084
1085         if (lmd->lmd_mgssec != NULL) {
1086                 OBD_FREE(lmd->lmd_mgssec, strlen(lmd->lmd_mgssec) + 1);
1087                 lmd->lmd_mgssec = NULL;
1088         }
1089
1090         tail = strchr(ptr, ',');
1091         if (tail == NULL)
1092                 length = strlen(ptr);
1093         else
1094                 length = tail - ptr;
1095
1096         OBD_ALLOC(lmd->lmd_mgssec, length + 1);
1097         if (lmd->lmd_mgssec == NULL)
1098                 return -ENOMEM;
1099
1100         memcpy(lmd->lmd_mgssec, ptr, length);
1101         lmd->lmd_mgssec[length] = '\0';
1102         return 0;
1103 }
1104
1105 static int lmd_parse_network(struct lustre_mount_data *lmd, char *ptr)
1106 {
1107         char *tail;
1108         int length;
1109
1110         if (lmd->lmd_nidnet != NULL) {
1111                 OBD_FREE(lmd->lmd_nidnet, strlen(lmd->lmd_nidnet) + 1);
1112                 lmd->lmd_nidnet = NULL;
1113         }
1114
1115         tail = strchr(ptr, ',');
1116         if (tail == NULL)
1117                 length = strlen(ptr);
1118         else
1119                 length = tail - ptr;
1120
1121         OBD_ALLOC(lmd->lmd_nidnet, length + 1);
1122         if (lmd->lmd_nidnet == NULL)
1123                 return -ENOMEM;
1124
1125         memcpy(lmd->lmd_nidnet, ptr, length);
1126         lmd->lmd_nidnet[length] = '\0';
1127         return 0;
1128 }
1129
1130 static int lmd_parse_string(char **handle, char *ptr)
1131 {
1132         char *tail;
1133         int length;
1134
1135         if ((handle == NULL) || (ptr == NULL))
1136                 return -EINVAL;
1137
1138         if (*handle != NULL) {
1139                 OBD_FREE(*handle, strlen(*handle) + 1);
1140                 *handle = NULL;
1141         }
1142
1143         tail = strchr(ptr, ',');
1144         if (tail == NULL)
1145                 length = strlen(ptr);
1146         else
1147                 length = tail - ptr;
1148
1149         OBD_ALLOC(*handle, length + 1);
1150         if (*handle == NULL)
1151                 return -ENOMEM;
1152
1153         memcpy(*handle, ptr, length);
1154         (*handle)[length] = '\0';
1155
1156         return 0;
1157 }
1158
1159 /* Collect multiple values for mgsnid specifiers */
1160 static int lmd_parse_mgs(struct lustre_mount_data *lmd, char **ptr)
1161 {
1162         lnet_nid_t nid;
1163         char *tail = *ptr;
1164         char *mgsnid;
1165         int length;
1166         int oldlen = 0;
1167
1168         /* Find end of NID-list */
1169         while (class_parse_nid_quiet(tail, &nid, &tail) == 0)
1170                 ; /* do nothing */
1171
1172         length = tail - *ptr;
1173         if (length == 0) {
1174                 LCONSOLE_ERROR_MSG(0x159, "Can't parse NID '%s'\n", *ptr);
1175                 return -EINVAL;
1176         }
1177
1178         if (lmd->lmd_mgs != NULL)
1179                 oldlen = strlen(lmd->lmd_mgs) + 1;
1180
1181         OBD_ALLOC(mgsnid, oldlen + length + 1);
1182         if (mgsnid == NULL)
1183                 return -ENOMEM;
1184
1185         if (lmd->lmd_mgs != NULL) {
1186                 /* Multiple mgsnid= are taken to mean failover locations */
1187                 memcpy(mgsnid, lmd->lmd_mgs, oldlen);
1188                 mgsnid[oldlen - 1] = ':';
1189                 OBD_FREE(lmd->lmd_mgs, oldlen);
1190         }
1191         memcpy(mgsnid + oldlen, *ptr, length);
1192         mgsnid[oldlen + length] = '\0';
1193         lmd->lmd_mgs = mgsnid;
1194         *ptr = tail;
1195
1196         return 0;
1197 }
1198
1199 /**
1200  * Find the first delimiter (comma or colon) from the specified \a buf and
1201  * make \a *endh point to the string starting with the delimiter. The commas
1202  * in expression list [...] will be skipped.
1203  *
1204  * @buf         a delimiter-separated string
1205  * @endh        a pointer to a pointer that will point to the string
1206  *              starting with the delimiter
1207  *
1208  * RETURNS      true if delimiter is found, false if delimiter is not found
1209  */
1210 static bool lmd_find_delimiter(char *buf, char **endh)
1211 {
1212         char *c = buf;
1213         size_t pos;
1214         bool found;
1215
1216         if (!buf)
1217                 return false;
1218 try_again:
1219         if (*c == ',' || *c == ':')
1220                 return true;
1221
1222         pos = strcspn(c, "[:,]");
1223         if (!pos)
1224                 return false;
1225
1226         /* Not a valid mount string */
1227         if (*c == ']') {
1228                 CWARN("invalid mount string format\n");
1229                 return false;
1230         }
1231
1232         c += pos;
1233         if (*c == '[') {
1234                 c = strchr(c, ']');
1235
1236                 /* invalid mount string */
1237                 if (!c) {
1238                         CWARN("invalid mount string format\n");
1239                         return false;
1240                 }
1241                 c++;
1242                 goto try_again;
1243         }
1244
1245         found = *c != '\0';
1246         if (found && endh)
1247                 *endh = c;
1248
1249         return found;
1250 }
1251
1252 /**
1253  * Find the first valid string delimited by comma or colon from the specified
1254  * \a buf and parse it to see whether it's a valid NID list. If yes, \a *endh
1255  * will point to the next string starting with the delimiter.
1256  *
1257  * \param[in] buf       a delimiter-separated string
1258  * \param[in] endh      a pointer to a pointer that will point to the string
1259  *                      starting with the delimiter
1260  *
1261  * \retval 0            if the string is a valid NID list
1262  * \retval 1            if the string is not a valid NID list
1263  */
1264 static int lmd_parse_nidlist(char *buf, char **endh)
1265 {
1266         LIST_HEAD(nidlist);
1267         char *endp = buf;
1268         char tmp;
1269         int rc = 0;
1270
1271         if (buf == NULL)
1272                 return 1;
1273         while (*buf == ',' || *buf == ':')
1274                 buf++;
1275         if (*buf == ' ' || *buf == '/' || *buf == '\0')
1276                 return 1;
1277
1278         if (!lmd_find_delimiter(buf, &endp))
1279                 endp = buf + strlen(buf);
1280
1281         tmp = *endp;
1282         *endp = '\0';
1283
1284         if (cfs_parse_nidlist(buf, strlen(buf), &nidlist) <= 0)
1285                 rc = 1;
1286         cfs_free_nidlist(&nidlist);
1287
1288         *endp = tmp;
1289         if (rc != 0)
1290                 return rc;
1291         if (endh != NULL)
1292                 *endh = endp;
1293         return 0;
1294 }
1295
1296 /**
1297  * Parse mount line options
1298  * e.g. mount -v -t lustre -o abort_recov uml1:uml2:/lustre-client /mnt/lustre
1299  * dev is passed as device=uml1:/lustre by mount.lustre_tgt
1300  */
1301 static int lmd_parse(char *options, struct lustre_mount_data *lmd)
1302 {
1303         char *s1, *s2, *devname = NULL;
1304         struct lustre_mount_data *raw = (struct lustre_mount_data *)options;
1305         int rc = 0;
1306
1307         ENTRY;
1308
1309         LASSERT(lmd);
1310         if (!options) {
1311                 LCONSOLE_ERROR_MSG(0x162,
1312                                    "Missing mount data: check /sbin/mount.lustre_tgt is installed.\n");
1313                 RETURN(-EINVAL);
1314         }
1315
1316         /* Options should be a string - try to detect old lmd data */
1317         if ((raw->lmd_magic & 0xffffff00) == (LMD_MAGIC & 0xffffff00)) {
1318                 LCONSOLE_ERROR_MSG(0x163,
1319                                    "Using an old version of /sbin/mount.lustre. Please install version %s\n",
1320                                    LUSTRE_VERSION_STRING);
1321                 RETURN(-EINVAL);
1322         }
1323         lmd->lmd_magic = LMD_MAGIC;
1324
1325         OBD_ALLOC(lmd->lmd_params, LMD_PARAMS_MAXLEN);
1326         if (lmd->lmd_params == NULL)
1327                 RETURN(-ENOMEM);
1328         lmd->lmd_params[0] = '\0';
1329
1330         /* Set default flags here */
1331
1332         s1 = options;
1333         while (*s1) {
1334                 int clear = 0;
1335                 int time_min = OBD_RECOVERY_TIME_MIN;
1336                 char *s3;
1337
1338                 /* Skip whitespace and extra commas */
1339                 while (*s1 == ' ' || *s1 == ',')
1340                         s1++;
1341                 s3 = s1;
1342
1343                 /*
1344                  * Client options are parsed in ll_options: eg. flock,
1345                  * user_xattr, acl
1346                  */
1347
1348                 /*
1349                  * Parse non-ldiskfs options here. Rather than modifying
1350                  * ldiskfs, we just zero these out here
1351                  */
1352                 if (strncmp(s1, "abort_recov", 11) == 0) {
1353                         lmd->lmd_flags |= LMD_FLG_ABORT_RECOV;
1354                         clear++;
1355                 } else if (strncmp(s1, "recovery_time_soft=", 19) == 0) {
1356                         lmd->lmd_recovery_time_soft =
1357                                 max_t(int, simple_strtoul(s1 + 19, NULL, 10),
1358                                       time_min);
1359                         clear++;
1360                 } else if (strncmp(s1, "recovery_time_hard=", 19) == 0) {
1361                         lmd->lmd_recovery_time_hard =
1362                                 max_t(int, simple_strtoul(s1 + 19, NULL, 10),
1363                                       time_min);
1364                         clear++;
1365                 } else if (strncmp(s1, "no_precreate", 12) == 0) {
1366                         lmd->lmd_flags |= LMD_FLG_NO_PRECREATE;
1367                         clear++;
1368                 } else if (strncmp(s1, "noir", 4) == 0) {
1369                         lmd->lmd_flags |= LMD_FLG_NOIR; /* test purpose only. */
1370                         clear++;
1371                 } else if (strncmp(s1, "nosvc", 5) == 0) {
1372                         lmd->lmd_flags |= LMD_FLG_NOSVC;
1373                         clear++;
1374                 } else if (strncmp(s1, "nomgs", 5) == 0) {
1375                         lmd->lmd_flags |= LMD_FLG_NOMGS;
1376                         clear++;
1377                 } else if (strncmp(s1, "noscrub", 7) == 0) {
1378                         lmd->lmd_flags |= LMD_FLG_NOSCRUB;
1379                         clear++;
1380                 } else if (strncmp(s1, "skip_lfsck", 10) == 0) {
1381                         lmd->lmd_flags |= LMD_FLG_SKIP_LFSCK;
1382                         clear++;
1383                 } else if (strncmp(s1, "rdonly_dev", 10) == 0) {
1384                         lmd->lmd_flags |= LMD_FLG_DEV_RDONLY;
1385                         clear++;
1386                 } else if (strncmp(s1, PARAM_MGSNODE,
1387                                    sizeof(PARAM_MGSNODE) - 1) == 0) {
1388                         s2 = s1 + sizeof(PARAM_MGSNODE) - 1;
1389                         /*
1390                          * Assume the next mount opt is the first
1391                          * invalid NID we get to.
1392                          */
1393                         rc = lmd_parse_mgs(lmd, &s2);
1394                         if (rc)
1395                                 goto invalid;
1396                         s3 = s2;
1397                         clear++;
1398                 } else if (strncmp(s1, "writeconf", 9) == 0) {
1399                         lmd->lmd_flags |= LMD_FLG_WRITECONF;
1400                         clear++;
1401                 } else if (strncmp(s1, "update", 6) == 0) {
1402                         lmd->lmd_flags |= LMD_FLG_UPDATE;
1403                         clear++;
1404                 } else if (strncmp(s1, "virgin", 6) == 0) {
1405                         lmd->lmd_flags |= LMD_FLG_VIRGIN;
1406                         clear++;
1407                 } else if (strncmp(s1, "noprimnode", 10) == 0) {
1408                         lmd->lmd_flags |= LMD_FLG_NO_PRIMNODE;
1409                         clear++;
1410                 } else if (strncmp(s1, "mgssec=", 7) == 0) {
1411                         rc = lmd_parse_mgssec(lmd, s1 + 7);
1412                         if (rc)
1413                                 goto invalid;
1414                         clear++;
1415                         /* ost exclusion list */
1416                 } else if (strncmp(s1, "exclude=", 8) == 0) {
1417                         rc = lmd_make_exclusion(lmd, s1 + 7);
1418                         if (rc)
1419                                 goto invalid;
1420                         clear++;
1421                 } else if (strncmp(s1, "mgs", 3) == 0) {
1422                         /* We are an MGS */
1423                         lmd->lmd_flags |= LMD_FLG_MGS;
1424                         clear++;
1425                 } else if (strncmp(s1, "svname=", 7) == 0) {
1426                         rc = lmd_parse_string(&lmd->lmd_profile, s1 + 7);
1427                         if (rc)
1428                                 goto invalid;
1429                         clear++;
1430                 } else if (strncmp(s1, "param=", 6) == 0) {
1431                         size_t length, params_length;
1432                         char  *tail = s1;
1433
1434                         if (lmd_find_delimiter(s1 + 6, &tail)) {
1435                                 char *param_str = tail + 1;
1436                                 int   supplementary = 1;
1437
1438                                 while (lmd_parse_nidlist(param_str,
1439                                                          &param_str) == 0) {
1440                                         supplementary = 0;
1441                                 }
1442                                 length = param_str - s1 - supplementary;
1443                         } else {
1444                                 length = strlen(s1);
1445                         }
1446                         length -= 6;
1447                         params_length = strlen(lmd->lmd_params);
1448                         if (params_length + length + 1 >= LMD_PARAMS_MAXLEN)
1449                                 RETURN(-E2BIG);
1450                         strncat(lmd->lmd_params, s1 + 6, length);
1451                         lmd->lmd_params[params_length + length] = '\0';
1452                         strlcat(lmd->lmd_params, " ", LMD_PARAMS_MAXLEN);
1453                         s3 = s1 + 6 + length;
1454                         clear++;
1455                 } else if (strncmp(s1, "localrecov", 10) == 0) {
1456                         lmd->lmd_flags |= LMD_FLG_LOCAL_RECOV;
1457                         clear++;
1458                 } else if (strncmp(s1, "osd=", 4) == 0) {
1459                         rc = lmd_parse_string(&lmd->lmd_osd_type, s1 + 4);
1460                         if (rc)
1461                                 goto invalid;
1462                         clear++;
1463                 }
1464                 /*
1465                  * Linux 2.4 doesn't pass the device, so we stuck it at
1466                  * the end of the options.
1467                  */
1468                 else if (strncmp(s1, "device=", 7) == 0) {
1469                         devname = s1 + 7;
1470                         /*
1471                          * terminate options right before device.  device
1472                          * must be the last one.
1473                          */
1474                         *s1 = '\0';
1475                         break;
1476                 } else if (strncmp(s1, "network=", 8) == 0) {
1477                         rc = lmd_parse_network(lmd, s1 + 8);
1478                         if (rc)
1479                                 goto invalid;
1480
1481                         /* check if LNet dynamic peer discovery is activated */
1482                         if (LNetGetPeerDiscoveryStatus()) {
1483                                 CERROR("LNet Dynamic Peer Discovery is enabled "
1484                                        "on this node. 'network' mount option "
1485                                        "cannot be taken into account.\n");
1486                                 goto invalid;
1487                         }
1488
1489                         clear++;
1490                 }
1491
1492                 /* Find next opt */
1493                 s2 = strchr(s3, ',');
1494                 if (s2 == NULL) {
1495                         if (clear)
1496                                 *s1 = '\0';
1497                         break;
1498                 }
1499                 s2++;
1500                 if (clear)
1501                         memmove(s1, s2, strlen(s2) + 1);
1502                 else
1503                         s1 = s2;
1504         }
1505
1506         if (!devname) {
1507                 LCONSOLE_ERROR_MSG(0x164,
1508                                    "Can't find device name (need mount option 'device=...')\n");
1509                 goto invalid;
1510         }
1511
1512         s1 = strstr(devname, ":/");
1513         if (s1) {
1514                 ++s1;
1515                 lmd->lmd_flags |= LMD_FLG_CLIENT;
1516                 /* Remove leading /s from fsname */
1517                 while (*++s1 == '/')
1518                         ;
1519                 s2 = s1;
1520                 while (*s2 != '/' && *s2 != '\0')
1521                         s2++;
1522                 /* Freed in lustre_free_lsi */
1523                 OBD_ALLOC(lmd->lmd_profile, s2 - s1 + 8);
1524                 if (!lmd->lmd_profile)
1525                         RETURN(-ENOMEM);
1526
1527                 strncat(lmd->lmd_profile, s1, s2 - s1);
1528                 strncat(lmd->lmd_profile, "-client", 7);
1529
1530                 s1 = s2;
1531                 s2 = s1 + strlen(s1) - 1;
1532                 /* Remove padding /s from fileset */
1533                 while (*s2 == '/')
1534                         s2--;
1535                 if (s2 > s1) {
1536                         OBD_ALLOC(lmd->lmd_fileset, s2 - s1 + 2);
1537                         if (lmd->lmd_fileset == NULL) {
1538                                 OBD_FREE(lmd->lmd_profile,
1539                                          strlen(lmd->lmd_profile) + 1);
1540                                 RETURN(-ENOMEM);
1541                         }
1542                         strncat(lmd->lmd_fileset, s1, s2 - s1 + 1);
1543                 }
1544         } else {
1545                 /* server mount */
1546                 if (lmd->lmd_nidnet != NULL) {
1547                         /* 'network=' mount option forbidden for server */
1548                         OBD_FREE(lmd->lmd_nidnet, strlen(lmd->lmd_nidnet) + 1);
1549                         lmd->lmd_nidnet = NULL;
1550                         rc = -EINVAL;
1551                         CERROR(
1552                                "%s: option 'network=' not allowed for Lustre servers: rc = %d\n",
1553                                devname, rc);
1554                         RETURN(rc);
1555                 }
1556         }
1557
1558         /* Freed in lustre_free_lsi */
1559         OBD_ALLOC(lmd->lmd_dev, strlen(devname) + 1);
1560         if (!lmd->lmd_dev)
1561                 RETURN(-ENOMEM);
1562         strncpy(lmd->lmd_dev, devname, strlen(devname)+1);
1563
1564         /* Save mount options */
1565         s1 = options + strlen(options) - 1;
1566         while (s1 >= options && (*s1 == ',' || *s1 == ' '))
1567                 *s1-- = 0;
1568         while (*options && (*options == ',' || *options == ' '))
1569                 options++;
1570         if (*options != 0) {
1571                 /* Freed in lustre_free_lsi */
1572                 OBD_ALLOC(lmd->lmd_opts, strlen(options) + 1);
1573                 if (!lmd->lmd_opts)
1574                         RETURN(-ENOMEM);
1575                 strncpy(lmd->lmd_opts, options, strlen(options)+1);
1576         }
1577
1578         lmd_print(lmd);
1579         lmd->lmd_magic = LMD_MAGIC;
1580
1581         RETURN(rc);
1582
1583 invalid:
1584         CERROR("Bad mount options %s\n", options);
1585         RETURN(-EINVAL);
1586 }
1587
1588 /**
1589  * This is the entry point for the mount call into Lustre.
1590  * This is called when a server or client is mounted,
1591  * and this is where we start setting things up.
1592  * @param data Mount options (e.g. -o flock,abort_recov)
1593  */
1594 static int lustre_fill_super(struct super_block *sb, void *lmd2_data,
1595                              int silent)
1596 {
1597         struct lustre_mount_data *lmd;
1598         struct lustre_sb_info *lsi;
1599         int rc;
1600
1601         ENTRY;
1602
1603         CDEBUG(D_MOUNT|D_VFSTRACE, "VFS Op: sb %p\n", sb);
1604
1605         lsi = lustre_init_lsi(sb);
1606         if (!lsi)
1607                 RETURN(-ENOMEM);
1608         lmd = lsi->lsi_lmd;
1609
1610         /*
1611          * Disable lockdep during mount, because mount locking patterns are
1612          * 'special'.
1613          */
1614         lockdep_off();
1615
1616         /*
1617          * LU-639: the OBD cleanup of last mount may not finish yet, wait here.
1618          */
1619         obd_zombie_barrier();
1620
1621         /* Figure out the lmd from the mount options */
1622         if (lmd_parse(lmd2_data, lmd)) {
1623                 lustre_put_lsi(sb);
1624                 GOTO(out, rc = -EINVAL);
1625         }
1626
1627         if (lmd_is_client(lmd)) {
1628                 bool have_client = false;
1629
1630                 CDEBUG(D_MOUNT, "Mounting client %s\n", lmd->lmd_profile);
1631                 if (!client_fill_super)
1632                         request_module("lustre");
1633                 spin_lock(&client_lock);
1634                 if (client_fill_super && try_module_get(client_mod))
1635                         have_client = true;
1636                 spin_unlock(&client_lock);
1637                 if (!have_client) {
1638                         LCONSOLE_ERROR_MSG(0x165,
1639                                            "Nothing registered for client mount! Is the 'lustre' module loaded?\n");
1640                         lustre_put_lsi(sb);
1641                         rc = -ENODEV;
1642                 } else {
1643                         rc = lustre_start_mgc(sb);
1644                         if (rc) {
1645                                 lustre_common_put_super(sb);
1646                                 GOTO(out, rc);
1647                         }
1648                         /* Connect and start */
1649                         /* (should always be ll_fill_super) */
1650                         rc = (*client_fill_super)(sb);
1651                         /* c_f_s will call lustre_common_put_super on failure,
1652                          * which takes care of the module reference.
1653                          */
1654                 }
1655         } else {
1656 #ifdef HAVE_SERVER_SUPPORT
1657                 CDEBUG(D_MOUNT, "Mounting server from %s\n", lmd->lmd_dev);
1658                 rc = server_fill_super(sb);
1659                 /*
1660                  * s_f_s calls lustre_start_mgc after the mount because we need
1661                  * the MGS NIDs which are stored on disk.  Plus, we may
1662                  * need to start the MGS first.
1663                  */
1664                 /* s_f_s will call server_put_super on failure */
1665 #else
1666                 CERROR("client-side-only module, cannot handle server mount\n");
1667                 rc = -EINVAL;
1668 #endif
1669         }
1670
1671         /*
1672          * If error happens in fill_super() call, @lsi will be killed there.
1673          * This is why we do not put it here.
1674          */
1675         GOTO(out, rc);
1676 out:
1677         if (rc) {
1678                 CERROR("Unable to mount %s (%d)\n",
1679                        s2lsi(sb) ? lmd->lmd_dev : "", rc);
1680         } else {
1681                 CDEBUG(D_SUPER, "Mount %s complete\n",
1682                        lmd->lmd_dev);
1683         }
1684         lockdep_on();
1685         return rc;
1686 }
1687
1688
1689 /*
1690  * We can't call ll_fill_super by name because it lives in a module that
1691  * must be loaded after this one.
1692  */
1693 void lustre_register_super_ops(struct module *mod,
1694                                int (*cfs)(struct super_block *sb),
1695                                void (*ksc)(struct super_block *sb))
1696 {
1697         spin_lock(&client_lock);
1698         client_mod = mod;
1699         client_fill_super = cfs;
1700         kill_super_cb = ksc;
1701         spin_unlock(&client_lock);
1702 }
1703 EXPORT_SYMBOL(lustre_register_super_ops);
1704
1705 /***************** FS registration ******************/
1706 static struct dentry *lustre_mount(struct file_system_type *fs_type, int flags,
1707                                    const char *devname, void *data)
1708 {
1709         return mount_nodev(fs_type, flags, data, lustre_fill_super);
1710 }
1711
1712 static void lustre_kill_super(struct super_block *sb)
1713 {
1714         struct lustre_sb_info *lsi = s2lsi(sb);
1715
1716         if (kill_super_cb && lsi && !IS_SERVER(lsi))
1717                 (*kill_super_cb)(sb);
1718
1719         kill_anon_super(sb);
1720 }
1721
1722 #ifdef HAVE_SERVER_SUPPORT
1723 /* Register the "lustre_tgt" fs type.
1724  *
1725  * Right now this isn't any different than the normal "lustre" filesystem
1726  * type, but it is added so that there is some compatibility to allow
1727  * changing documentation and scripts to start using the "lustre_tgt" type
1728  * at mount time. That will simplify test interop, and in case of upgrades
1729  * that change to the new type and then need to roll back for some reason.
1730  *
1731  * The long-term goal is to disentangle the client and server mount code.
1732  */
1733 static struct file_system_type lustre_fs_type_tgt = {
1734         .owner          = THIS_MODULE,
1735         .name           = "lustre_tgt",
1736         .mount          = lustre_mount,
1737         .kill_sb        = lustre_kill_super,
1738         .fs_flags       = FS_REQUIRES_DEV | FS_RENAME_DOES_D_MOVE,
1739 };
1740 MODULE_ALIAS_FS("lustre_tgt");
1741
1742 #define register_filesystem_tgt(fstype)                                     \
1743 do {                                                                        \
1744         int _rc;                                                            \
1745                                                                             \
1746         _rc = register_filesystem(fstype);                                  \
1747         if (_rc && _rc != -EBUSY) {                                         \
1748                 /* Don't fail if server code also registers "lustre_tgt" */ \
1749                 CERROR("obdclass: register fstype '%s' failed: rc = %d\n",  \
1750                        (fstype)->name, _rc);                                \
1751                 return _rc;                                                 \
1752         }                                                                   \
1753 } while (0)
1754 #define unregister_filesystem_tgt(fstype) unregister_filesystem(fstype)
1755 #else
1756 #define register_filesystem_tgt(fstype)   do {} while (0)
1757 #define unregister_filesystem_tgt(fstype) do {} while (0)
1758 #endif
1759
1760 /* Register the "lustre" fs type */
1761 static struct file_system_type lustre_fs_type = {
1762         .owner          = THIS_MODULE,
1763         .name           = "lustre",
1764         .mount          = lustre_mount,
1765         .kill_sb        = lustre_kill_super,
1766         .fs_flags       = FS_RENAME_DOES_D_MOVE,
1767 };
1768 MODULE_ALIAS_FS("lustre");
1769
1770 int lustre_register_fs(void)
1771 {
1772         register_filesystem_tgt(&lustre_fs_type_tgt);
1773
1774         return register_filesystem(&lustre_fs_type);
1775 }
1776
1777 int lustre_unregister_fs(void)
1778 {
1779         unregister_filesystem_tgt(&lustre_fs_type_tgt);
1780
1781         return unregister_filesystem(&lustre_fs_type);
1782 }