Whamcloud - gitweb
425336c568ccb920c1ac74c1995d67d69cccdd0e
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/obdclass/obd_mount.c
37  *
38  * Client mount routines
39  *
40  * Author: Nathan Rutman <nathan@clusterfs.com>
41  */
42
43
44 #define DEBUG_SUBSYSTEM S_CLASS
45 #define D_MOUNT (D_SUPER|D_CONFIG/*|D_WARNING */)
46 #define PRINT_CMD CDEBUG
47
48 #include <obd.h>
49 #include <lvfs.h>
50 #include <obd_class.h>
51 #include <lustre/lustre_user.h>
52 #include <linux/version.h>
53 #include <lustre_log.h>
54 #include <lustre_disk.h>
55 #include <lustre_param.h>
56
57 static int (*client_fill_super)(struct super_block *sb,
58                                 struct vfsmount *mnt);
59
60 static void (*kill_super_cb)(struct super_block *sb);
61
62 /**************** config llog ********************/
63
64 /** Get a config log from the MGS and process it.
65  * This func is called for both clients and servers.
66  * Continue to process new statements appended to the logs
67  * (whenever the config lock is revoked) until lustre_end_log
68  * is called.
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         ENTRY;
85
86         LASSERT(mgc);
87         LASSERT(cfg);
88
89         OBD_ALLOC_PTR(bufs);
90         if (bufs == NULL)
91                 RETURN(-ENOMEM);
92
93         /* mgc_process_config */
94         lustre_cfg_bufs_reset(bufs, mgc->obd_name);
95         lustre_cfg_bufs_set_string(bufs, 1, logname);
96         lustre_cfg_bufs_set(bufs, 2, cfg, sizeof(*cfg));
97         lustre_cfg_bufs_set(bufs, 3, &sb, sizeof(sb));
98         lcfg = lustre_cfg_new(LCFG_LOG_START, bufs);
99         rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
100         lustre_cfg_free(lcfg);
101
102         OBD_FREE_PTR(bufs);
103
104         if (rc == -EINVAL)
105                 LCONSOLE_ERROR_MSG(0x15b, "%s: The configuration from log '%s'"
106                                    "failed from the MGS (%d).  Make sure this "
107                                    "client and the MGS are running compatible "
108                                    "versions of Lustre.\n",
109                                    mgc->obd_name, logname, rc);
110
111         if (rc)
112                 LCONSOLE_ERROR_MSG(0x15c, "%s: The configuration from log '%s' "
113                                    "failed (%d). This may be the result of "
114                                    "communication errors between this node and "
115                                    "the MGS, a bad configuration, or other "
116                                    "errors. See the syslog for more "
117                                    "information.\n", mgc->obd_name, logname,
118                                    rc);
119
120         /* class_obd_list(); */
121         RETURN(rc);
122 }
123 EXPORT_SYMBOL(lustre_process_log);
124
125 /* Stop watching this config log for updates */
126 int lustre_end_log(struct super_block *sb, char *logname,
127                        struct config_llog_instance *cfg)
128 {
129         struct lustre_cfg *lcfg;
130         struct lustre_cfg_bufs bufs;
131         struct lustre_sb_info *lsi = s2lsi(sb);
132         struct obd_device *mgc = lsi->lsi_mgc;
133         int rc;
134         ENTRY;
135
136         if (!mgc)
137                 RETURN(-ENOENT);
138
139         /* mgc_process_config */
140         lustre_cfg_bufs_reset(&bufs, mgc->obd_name);
141         lustre_cfg_bufs_set_string(&bufs, 1, logname);
142         if (cfg)
143                 lustre_cfg_bufs_set(&bufs, 2, cfg, sizeof(*cfg));
144         lcfg = lustre_cfg_new(LCFG_LOG_END, &bufs);
145         rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
146         lustre_cfg_free(lcfg);
147         RETURN(rc);
148 }
149 EXPORT_SYMBOL(lustre_end_log);
150
151 /**************** obd start *******************/
152
153 /** lustre_cfg_bufs are a holdover from 1.4; we can still set these up from
154  * lctl (and do for echo cli/srv.
155  */
156 int do_lcfg(char *cfgname, lnet_nid_t nid, int cmd,
157             char *s1, char *s2, char *s3, char *s4)
158 {
159         struct lustre_cfg_bufs bufs;
160         struct lustre_cfg    * lcfg = NULL;
161         int rc;
162
163         CDEBUG(D_TRACE, "lcfg %s %#x %s %s %s %s\n", cfgname,
164                cmd, s1, s2, s3, s4);
165
166         lustre_cfg_bufs_reset(&bufs, cfgname);
167         if (s1)
168                 lustre_cfg_bufs_set_string(&bufs, 1, s1);
169         if (s2)
170                 lustre_cfg_bufs_set_string(&bufs, 2, s2);
171         if (s3)
172                 lustre_cfg_bufs_set_string(&bufs, 3, s3);
173         if (s4)
174                 lustre_cfg_bufs_set_string(&bufs, 4, s4);
175
176         lcfg = lustre_cfg_new(cmd, &bufs);
177         lcfg->lcfg_nid = nid;
178         rc = class_process_config(lcfg);
179         lustre_cfg_free(lcfg);
180         return(rc);
181 }
182 EXPORT_SYMBOL(do_lcfg);
183
184 /** Call class_attach and class_setup.  These methods in turn call
185  * obd type-specific methods.
186  */
187 int lustre_start_simple(char *obdname, char *type, char *uuid,
188                         char *s1, char *s2, char *s3, char *s4)
189 {
190         int rc;
191         CDEBUG(D_MOUNT, "Starting obd %s (typ=%s)\n", obdname, type);
192
193         rc = do_lcfg(obdname, 0, LCFG_ATTACH, type, uuid, 0, 0);
194         if (rc) {
195                 CERROR("%s attach error %d\n", obdname, rc);
196                 return rc;
197         }
198         rc = do_lcfg(obdname, 0, LCFG_SETUP, s1, s2, s3, s4);
199         if (rc) {
200                 CERROR("%s setup error %d\n", obdname, rc);
201                 do_lcfg(obdname, 0, LCFG_DETACH, 0, 0, 0, 0);
202         }
203         return rc;
204 }
205
206 DEFINE_MUTEX(mgc_start_lock);
207
208 /** Set up a mgc obd to process startup logs
209  *
210  * \param sb [in] super block of the mgc obd
211  *
212  * \retval 0 success, otherwise error code
213  */
214 int lustre_start_mgc(struct super_block *sb)
215 {
216         struct obd_connect_data *data = NULL;
217         struct lustre_sb_info *lsi = s2lsi(sb);
218         struct obd_device *obd;
219         struct obd_export *exp;
220         struct obd_uuid *uuid;
221         class_uuid_t uuidc;
222         lnet_nid_t nid;
223         char *mgcname = NULL, *niduuid = NULL, *mgssec = NULL;
224         char *ptr;
225         int recov_bk;
226         int rc = 0, i = 0, j, len;
227         ENTRY;
228
229         LASSERT(lsi->lsi_lmd);
230
231         /* Find the first non-lo MGS nid for our MGC name */
232         if (IS_SERVER(lsi)) {
233                 /* mount -o mgsnode=nid */
234                 ptr = lsi->lsi_lmd->lmd_mgs;
235                 if (lsi->lsi_lmd->lmd_mgs &&
236                     (class_parse_nid(lsi->lsi_lmd->lmd_mgs, &nid, &ptr) == 0)) {
237                         i++;
238                 } else if (IS_MGS(lsi)) {
239                         lnet_process_id_t id;
240                         while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
241                                 if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
242                                         continue;
243                                 nid = id.nid;
244                                 i++;
245                                 break;
246                         }
247                 }
248         } else { /* client */
249                 /* Use nids from mount line: uml1,1@elan:uml2,2@elan:/lustre */
250                 ptr = lsi->lsi_lmd->lmd_dev;
251                 if (class_parse_nid(ptr, &nid, &ptr) == 0)
252                         i++;
253         }
254         if (i == 0) {
255                 CERROR("No valid MGS nids found.\n");
256                 RETURN(-EINVAL);
257         }
258
259         mutex_lock(&mgc_start_lock);
260
261         len = strlen(LUSTRE_MGC_OBDNAME) + strlen(libcfs_nid2str(nid)) + 1;
262         OBD_ALLOC(mgcname, len);
263         OBD_ALLOC(niduuid, len + 2);
264         if (!mgcname || !niduuid)
265                 GOTO(out_free, rc = -ENOMEM);
266         sprintf(mgcname, "%s%s", LUSTRE_MGC_OBDNAME, libcfs_nid2str(nid));
267
268         mgssec = lsi->lsi_lmd->lmd_mgssec ? lsi->lsi_lmd->lmd_mgssec : "";
269
270         OBD_ALLOC_PTR(data);
271         if (data == NULL)
272                 GOTO(out_free, rc = -ENOMEM);
273
274         obd = class_name2obd(mgcname);
275         if (obd && !obd->obd_stopping) {
276                 rc = obd_set_info_async(NULL, obd->obd_self_export,
277                                         strlen(KEY_MGSSEC), KEY_MGSSEC,
278                                         strlen(mgssec), mgssec, NULL);
279                 if (rc)
280                         GOTO(out_free, rc);
281
282                 /* Re-using an existing MGC */
283                 cfs_atomic_inc(&obd->u.cli.cl_mgc_refcount);
284
285                 /* IR compatibility check, only for clients */
286                 if (lmd_is_client(lsi->lsi_lmd)) {
287                         int has_ir;
288                         int vallen = sizeof(*data);
289                         __u32 *flags = &lsi->lsi_lmd->lmd_flags;
290
291                         rc = obd_get_info(NULL, obd->obd_self_export,
292                                           strlen(KEY_CONN_DATA), KEY_CONN_DATA,
293                                           &vallen, data, NULL);
294                         LASSERT(rc == 0);
295                         has_ir = OCD_HAS_FLAG(data, IMP_RECOV);
296                         if (has_ir ^ !(*flags & LMD_FLG_NOIR)) {
297                                 /* LMD_FLG_NOIR is for test purpose only */
298                                 LCONSOLE_WARN(
299                                     "Trying to mount a client with IR setting "
300                                     "not compatible with current mgc. "
301                                     "Force to use current mgc setting that is "
302                                     "IR %s.\n",
303                                     has_ir ? "enabled" : "disabled");
304                                 if (has_ir)
305                                         *flags &= ~LMD_FLG_NOIR;
306                                 else
307                                         *flags |= LMD_FLG_NOIR;
308                         }
309                 }
310
311                 recov_bk = 0;
312                 /* If we are restarting the MGS, don't try to keep the MGC's
313                    old connection, or registration will fail. */
314                 if (IS_MGS(lsi)) {
315                         CDEBUG(D_MOUNT, "New MGS with live MGC\n");
316                         recov_bk = 1;
317                 }
318
319                 /* Try all connections, but only once (again).
320                    We don't want to block another target from starting
321                    (using its local copy of the log), but we do want to connect
322                    if at all possible. */
323                 recov_bk++;
324                 CDEBUG(D_MOUNT, "%s: Set MGC reconnect %d\n", mgcname,recov_bk);
325                 rc = obd_set_info_async(NULL, obd->obd_self_export,
326                                         sizeof(KEY_INIT_RECOV_BACKUP),
327                                         KEY_INIT_RECOV_BACKUP,
328                                         sizeof(recov_bk), &recov_bk, NULL);
329                 GOTO(out, rc = 0);
330         }
331
332         CDEBUG(D_MOUNT, "Start MGC '%s'\n", mgcname);
333
334         /* Add the primary nids for the MGS */
335         i = 0;
336         sprintf(niduuid, "%s_%x", mgcname, i);
337         if (IS_SERVER(lsi)) {
338                 ptr = lsi->lsi_lmd->lmd_mgs;
339                 if (IS_MGS(lsi)) {
340                         /* Use local nids (including LO) */
341                         lnet_process_id_t id;
342                         while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
343                                 rc = do_lcfg(mgcname, id.nid,
344                                              LCFG_ADD_UUID, niduuid, 0,0,0);
345                         }
346                 } else {
347                         /* Use mgsnode= nids */
348                         /* mount -o mgsnode=nid */
349                         if (lsi->lsi_lmd->lmd_mgs) {
350                                 ptr = lsi->lsi_lmd->lmd_mgs;
351                         } else if (class_find_param(ptr, PARAM_MGSNODE,
352                                                     &ptr) != 0) {
353                                 CERROR("No MGS nids given.\n");
354                                 GOTO(out_free, rc = -EINVAL);
355                         }
356                         while (class_parse_nid(ptr, &nid, &ptr) == 0) {
357                                 rc = do_lcfg(mgcname, nid,
358                                              LCFG_ADD_UUID, niduuid, 0,0,0);
359                                 i++;
360                         }
361                 }
362         } else { /* client */
363                 /* Use nids from mount line: uml1,1@elan:uml2,2@elan:/lustre */
364                 ptr = lsi->lsi_lmd->lmd_dev;
365                 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
366                         rc = do_lcfg(mgcname, nid,
367                                      LCFG_ADD_UUID, niduuid, 0,0,0);
368                         i++;
369                         /* Stop at the first failover nid */
370                         if (*ptr == ':')
371                                 break;
372                 }
373         }
374         if (i == 0) {
375                 CERROR("No valid MGS nids found.\n");
376                 GOTO(out_free, rc = -EINVAL);
377         }
378         lsi->lsi_lmd->lmd_mgs_failnodes = 1;
379
380         /* Random uuid for MGC allows easier reconnects */
381         OBD_ALLOC_PTR(uuid);
382         ll_generate_random_uuid(uuidc);
383         class_uuid_unparse(uuidc, uuid);
384
385         /* Start the MGC */
386         rc = lustre_start_simple(mgcname, LUSTRE_MGC_NAME,
387                                  (char *)uuid->uuid, LUSTRE_MGS_OBDNAME,
388                                  niduuid, 0, 0);
389         OBD_FREE_PTR(uuid);
390         if (rc)
391                 GOTO(out_free, rc);
392
393         /* Add any failover MGS nids */
394         i = 1;
395         while (ptr && ((*ptr == ':' ||
396                class_find_param(ptr, PARAM_MGSNODE, &ptr) == 0))) {
397                 /* New failover node */
398                 sprintf(niduuid, "%s_%x", mgcname, i);
399                 j = 0;
400                 while (class_parse_nid_quiet(ptr, &nid, &ptr) == 0) {
401                         j++;
402                         rc = do_lcfg(mgcname, nid,
403                                      LCFG_ADD_UUID, niduuid, 0,0,0);
404                         if (*ptr == ':')
405                                 break;
406                 }
407                 if (j > 0) {
408                         rc = do_lcfg(mgcname, 0, LCFG_ADD_CONN,
409                                      niduuid, 0, 0, 0);
410                         i++;
411                 } else {
412                         /* at ":/fsname" */
413                         break;
414                 }
415         }
416         lsi->lsi_lmd->lmd_mgs_failnodes = i;
417
418         obd = class_name2obd(mgcname);
419         if (!obd) {
420                 CERROR("Can't find mgcobd %s\n", mgcname);
421                 GOTO(out_free, rc = -ENOTCONN);
422         }
423
424         rc = obd_set_info_async(NULL, obd->obd_self_export,
425                                 strlen(KEY_MGSSEC), KEY_MGSSEC,
426                                 strlen(mgssec), mgssec, NULL);
427         if (rc)
428                 GOTO(out_free, rc);
429
430         /* Keep a refcount of servers/clients who started with "mount",
431            so we know when we can get rid of the mgc. */
432         cfs_atomic_set(&obd->u.cli.cl_mgc_refcount, 1);
433
434         /* Try all connections, but only once. */
435         recov_bk = 1;
436         rc = obd_set_info_async(NULL, obd->obd_self_export,
437                                 sizeof(KEY_INIT_RECOV_BACKUP),
438                                 KEY_INIT_RECOV_BACKUP,
439                                 sizeof(recov_bk), &recov_bk, NULL);
440         if (rc)
441                 /* nonfatal */
442                 CWARN("can't set %s %d\n", KEY_INIT_RECOV_BACKUP, rc);
443
444         /* We connect to the MGS at setup, and don't disconnect until cleanup */
445         data->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_AT |
446                                   OBD_CONNECT_FULL20 | OBD_CONNECT_IMP_RECOV |
447                                   OBD_CONNECT_LVB_TYPE;
448
449 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 2, 50, 0)
450         data->ocd_connect_flags |= OBD_CONNECT_MNE_SWAB;
451 #else
452 #warning "LU-1644: Remove old OBD_CONNECT_MNE_SWAB fixup and imp_need_mne_swab"
453 #endif
454
455         if (lmd_is_client(lsi->lsi_lmd) &&
456             lsi->lsi_lmd->lmd_flags & LMD_FLG_NOIR)
457                 data->ocd_connect_flags &= ~OBD_CONNECT_IMP_RECOV;
458         data->ocd_version = LUSTRE_VERSION_CODE;
459         rc = obd_connect(NULL, &exp, obd, &(obd->obd_uuid), data, NULL);
460         if (rc) {
461                 CERROR("connect failed %d\n", rc);
462                 GOTO(out, rc);
463         }
464
465         obd->u.cli.cl_mgc_mgsexp = exp;
466
467 out:
468         /* Keep the mgc info in the sb. Note that many lsi's can point
469            to the same mgc.*/
470         lsi->lsi_mgc = obd;
471 out_free:
472         mutex_unlock(&mgc_start_lock);
473
474         if (data)
475                 OBD_FREE_PTR(data);
476         if (mgcname)
477                 OBD_FREE(mgcname, len);
478         if (niduuid)
479                 OBD_FREE(niduuid, len + 2);
480         RETURN(rc);
481 }
482
483 static int lustre_stop_mgc(struct super_block *sb)
484 {
485         struct lustre_sb_info *lsi = s2lsi(sb);
486         struct obd_device *obd;
487         char *niduuid = 0, *ptr = 0;
488         int i, rc = 0, len = 0;
489         ENTRY;
490
491         if (!lsi)
492                 RETURN(-ENOENT);
493         obd = lsi->lsi_mgc;
494         if (!obd)
495                 RETURN(-ENOENT);
496         lsi->lsi_mgc = NULL;
497
498         mutex_lock(&mgc_start_lock);
499         LASSERT(cfs_atomic_read(&obd->u.cli.cl_mgc_refcount) > 0);
500         if (!cfs_atomic_dec_and_test(&obd->u.cli.cl_mgc_refcount)) {
501                 /* This is not fatal, every client that stops
502                    will call in here. */
503                 CDEBUG(D_MOUNT, "mgc still has %d references.\n",
504                        cfs_atomic_read(&obd->u.cli.cl_mgc_refcount));
505                 GOTO(out, rc = -EBUSY);
506         }
507
508         /* The MGC has no recoverable data in any case.
509          * force shotdown set in umount_begin */
510         obd->obd_no_recov = 1;
511
512         if (obd->u.cli.cl_mgc_mgsexp) {
513                 /* An error is not fatal, if we are unable to send the
514                    disconnect mgs ping evictor cleans up the export */
515                 rc = obd_disconnect(obd->u.cli.cl_mgc_mgsexp);
516                 if (rc)
517                         CDEBUG(D_MOUNT, "disconnect failed %d\n", rc);
518         }
519
520         /* Save the obdname for cleaning the nid uuids, which are
521            obdname_XX */
522         len = strlen(obd->obd_name) + 6;
523         OBD_ALLOC(niduuid, len);
524         if (niduuid) {
525                 strcpy(niduuid, obd->obd_name);
526                 ptr = niduuid + strlen(niduuid);
527         }
528
529         rc = class_manual_cleanup(obd);
530         if (rc)
531                 GOTO(out, rc);
532
533         /* Clean the nid uuids */
534         if (!niduuid)
535                 GOTO(out, rc = -ENOMEM);
536
537         for (i = 0; i < lsi->lsi_lmd->lmd_mgs_failnodes; i++) {
538                 sprintf(ptr, "_%x", i);
539                 rc = do_lcfg(LUSTRE_MGC_OBDNAME, 0, LCFG_DEL_UUID,
540                              niduuid, 0, 0, 0);
541                 if (rc)
542                         CERROR("del MDC UUID %s failed: rc = %d\n",
543                                niduuid, rc);
544         }
545 out:
546         if (niduuid)
547                 OBD_FREE(niduuid, len);
548
549         /* class_import_put will get rid of the additional connections */
550         mutex_unlock(&mgc_start_lock);
551         RETURN(rc);
552 }
553
554 /***************** lustre superblock **************/
555
556 struct lustre_sb_info *lustre_init_lsi(struct super_block *sb)
557 {
558         struct lustre_sb_info *lsi;
559         ENTRY;
560
561         OBD_ALLOC_PTR(lsi);
562         if (!lsi)
563                 RETURN(NULL);
564         OBD_ALLOC_PTR(lsi->lsi_lmd);
565         if (!lsi->lsi_lmd) {
566                 OBD_FREE_PTR(lsi);
567                 RETURN(NULL);
568         }
569
570         lsi->lsi_lmd->lmd_exclude_count = 0;
571         lsi->lsi_lmd->lmd_recovery_time_soft = 0;
572         lsi->lsi_lmd->lmd_recovery_time_hard = 0;
573         s2lsi_nocast(sb) = lsi;
574         /* we take 1 extra ref for our setup */
575         cfs_atomic_set(&lsi->lsi_mounts, 1);
576
577         /* Default umount style */
578         lsi->lsi_flags = LSI_UMOUNT_FAILOVER;
579
580         RETURN(lsi);
581 }
582
583 static int lustre_free_lsi(struct super_block *sb)
584 {
585         struct lustre_sb_info *lsi = s2lsi(sb);
586         ENTRY;
587
588         LASSERT(lsi != NULL);
589         CDEBUG(D_MOUNT, "Freeing lsi %p\n", lsi);
590
591         /* someone didn't call server_put_mount. */
592         LASSERT(cfs_atomic_read(&lsi->lsi_mounts) == 0);
593
594         if (lsi->lsi_lmd != NULL) {
595                 if (lsi->lsi_lmd->lmd_dev != NULL)
596                         OBD_FREE(lsi->lsi_lmd->lmd_dev,
597                                  strlen(lsi->lsi_lmd->lmd_dev) + 1);
598                 if (lsi->lsi_lmd->lmd_profile != NULL)
599                         OBD_FREE(lsi->lsi_lmd->lmd_profile,
600                                  strlen(lsi->lsi_lmd->lmd_profile) + 1);
601                 if (lsi->lsi_lmd->lmd_mgssec != NULL)
602                         OBD_FREE(lsi->lsi_lmd->lmd_mgssec,
603                                  strlen(lsi->lsi_lmd->lmd_mgssec) + 1);
604                 if (lsi->lsi_lmd->lmd_opts != NULL)
605                         OBD_FREE(lsi->lsi_lmd->lmd_opts,
606                                  strlen(lsi->lsi_lmd->lmd_opts) + 1);
607                 if (lsi->lsi_lmd->lmd_exclude_count)
608                         OBD_FREE(lsi->lsi_lmd->lmd_exclude,
609                                  sizeof(lsi->lsi_lmd->lmd_exclude[0]) *
610                                  lsi->lsi_lmd->lmd_exclude_count);
611                 if (lsi->lsi_lmd->lmd_mgs != NULL)
612                         OBD_FREE(lsi->lsi_lmd->lmd_mgs,
613                                  strlen(lsi->lsi_lmd->lmd_mgs) + 1);
614                 if (lsi->lsi_lmd->lmd_osd_type != NULL)
615                         OBD_FREE(lsi->lsi_lmd->lmd_osd_type,
616                                  strlen(lsi->lsi_lmd->lmd_osd_type) + 1);
617                 if (lsi->lsi_lmd->lmd_params != NULL)
618                         OBD_FREE(lsi->lsi_lmd->lmd_params, 4096);
619
620                 OBD_FREE(lsi->lsi_lmd, sizeof(*lsi->lsi_lmd));
621         }
622
623         LASSERT(lsi->lsi_llsbi == NULL);
624         OBD_FREE(lsi, sizeof(*lsi));
625         s2lsi_nocast(sb) = NULL;
626
627         RETURN(0);
628 }
629
630 /* The lsi has one reference for every server that is using the disk -
631    e.g. MDT, MGS, and potentially MGC */
632 int lustre_put_lsi(struct super_block *sb)
633 {
634         struct lustre_sb_info *lsi = s2lsi(sb);
635         ENTRY;
636
637         LASSERT(lsi != NULL);
638
639         CDEBUG(D_MOUNT, "put %p %d\n", sb, cfs_atomic_read(&lsi->lsi_mounts));
640         if (cfs_atomic_dec_and_test(&lsi->lsi_mounts)) {
641                 if (IS_SERVER(lsi) && lsi->lsi_osd_exp) {
642                         obd_disconnect(lsi->lsi_osd_exp);
643                         /* wait till OSD is gone */
644                         obd_zombie_barrier();
645                 }
646                 lustre_free_lsi(sb);
647                 RETURN(1);
648         }
649         RETURN(0);
650 }
651
652 /*** SERVER NAME ***
653  * <FSNAME><SEPERATOR><TYPE><INDEX>
654  * FSNAME is between 1 and 8 characters (inclusive).
655  *      Excluded characters are '/' and ':'
656  * SEPERATOR is either ':' or '-'
657  * TYPE: "OST", "MDT", etc.
658  * INDEX: Hex representation of the index
659  */
660
661 /** Get the fsname ("lustre") from the server name ("lustre-OST003F").
662  * @param [in] svname server name including type and index
663  * @param [out] fsname Buffer to copy filesystem name prefix into.
664  *  Must have at least 'strlen(fsname) + 1' chars.
665  * @param [out] endptr if endptr isn't NULL it is set to end of fsname
666  * rc < 0  on error
667  */
668 int server_name2fsname(const char *svname, char *fsname, const char **endptr)
669 {
670         const char *dash;
671
672         dash = svname + strnlen(svname, 8); /* max fsname length is 8 */
673         for (; dash > svname && *dash != '-' && *dash != ':'; dash--)
674                 ;
675         if (dash == svname)
676                 return -EINVAL;
677
678         if (fsname != NULL) {
679                 strncpy(fsname, svname, dash - svname);
680                 fsname[dash - svname] = '\0';
681         }
682
683         if (endptr != NULL)
684                 *endptr = dash;
685
686         return 0;
687 }
688 EXPORT_SYMBOL(server_name2fsname);
689
690 /**
691  * Get service name (svname) from string
692  * rc < 0 on error
693  * if endptr isn't NULL it is set to end of fsname *
694  */
695 int server_name2svname(const char *label, char *svname, const char **endptr,
696                        size_t svsize)
697 {
698         int rc;
699         const char *dash;
700
701         /* We use server_name2fsname() just for parsing */
702         rc = server_name2fsname(label, NULL, &dash);
703         if (rc != 0)
704                 return rc;
705
706         if (endptr != NULL)
707                 *endptr = dash;
708
709         if (strlcpy(svname, dash + 1, svsize) >= svsize)
710                 return -E2BIG;
711
712         return 0;
713 }
714 EXPORT_SYMBOL(server_name2svname);
715
716
717 /* Get the index from the obd name.
718    rc = server type, or
719    rc < 0  on error
720    if endptr isn't NULL it is set to end of name */
721 int server_name2index(const char *svname, __u32 *idx, const char **endptr)
722 {
723         unsigned long index;
724         int rc;
725         const char *dash;
726
727         /* We use server_name2fsname() just for parsing */
728         rc = server_name2fsname(svname, NULL, &dash);
729         if (rc != 0)
730                 return rc;
731
732         dash++;
733
734         if (strncmp(dash, "MDT", 3) == 0)
735                 rc = LDD_F_SV_TYPE_MDT;
736         else if (strncmp(dash, "OST", 3) == 0)
737                 rc = LDD_F_SV_TYPE_OST;
738         else
739                 return -EINVAL;
740
741         dash += 3;
742
743         if (strncmp(dash, "all", 3) == 0) {
744                 if (endptr != NULL)
745                         *endptr = dash + 3;
746                 return rc | LDD_F_SV_ALL;
747         }
748
749         index = simple_strtoul(dash, (char **)endptr, 16);
750         if (idx != NULL)
751                 *idx = index;
752
753         /* Account for -mdc after index that is possible when specifying mdt */
754         if (endptr != NULL && strncmp(LUSTRE_MDC_NAME, *endptr + 1,
755                                       sizeof(LUSTRE_MDC_NAME)-1) == 0)
756                 *endptr += sizeof(LUSTRE_MDC_NAME);
757
758         return rc;
759 }
760 EXPORT_SYMBOL(server_name2index);
761
762 /*************** mount common betweeen server and client ***************/
763
764 /* Common umount */
765 int lustre_common_put_super(struct super_block *sb)
766 {
767         int rc;
768         ENTRY;
769
770         CDEBUG(D_MOUNT, "dropping sb %p\n", sb);
771
772         /* Drop a ref to the MGC */
773         rc = lustre_stop_mgc(sb);
774         if (rc && (rc != -ENOENT)) {
775                 if (rc != -EBUSY) {
776                         CERROR("Can't stop MGC: %d\n", rc);
777                         RETURN(rc);
778                 }
779                 /* BUSY just means that there's some other obd that
780                    needs the mgc.  Let him clean it up. */
781                 CDEBUG(D_MOUNT, "MGC still in use\n");
782         }
783         /* Drop a ref to the mounted disk */
784         lustre_put_lsi(sb);
785         lu_types_stop();
786         RETURN(rc);
787 }
788 EXPORT_SYMBOL(lustre_common_put_super);
789
790 static void lmd_print(struct lustre_mount_data *lmd)
791 {
792         int i;
793
794         PRINT_CMD(D_MOUNT, "  mount data:\n");
795         if (lmd_is_client(lmd))
796                 PRINT_CMD(D_MOUNT, "profile: %s\n", lmd->lmd_profile);
797         PRINT_CMD(D_MOUNT, "device:  %s\n", lmd->lmd_dev);
798         PRINT_CMD(D_MOUNT, "flags:   %x\n", lmd->lmd_flags);
799
800         if (lmd->lmd_opts)
801                 PRINT_CMD(D_MOUNT, "options: %s\n", lmd->lmd_opts);
802
803         if (lmd->lmd_recovery_time_soft)
804                 PRINT_CMD(D_MOUNT, "recovery time soft: %d\n",
805                           lmd->lmd_recovery_time_soft);
806
807         if (lmd->lmd_recovery_time_hard)
808                 PRINT_CMD(D_MOUNT, "recovery time hard: %d\n",
809                           lmd->lmd_recovery_time_hard);
810
811         for (i = 0; i < lmd->lmd_exclude_count; i++) {
812                 PRINT_CMD(D_MOUNT, "exclude %d:  OST%04x\n", i,
813                           lmd->lmd_exclude[i]);
814         }
815 }
816
817 /* Is this server on the exclusion list */
818 int lustre_check_exclusion(struct super_block *sb, char *svname)
819 {
820         struct lustre_sb_info *lsi = s2lsi(sb);
821         struct lustre_mount_data *lmd = lsi->lsi_lmd;
822         __u32 index;
823         int i, rc;
824         ENTRY;
825
826         rc = server_name2index(svname, &index, NULL);
827         if (rc != LDD_F_SV_TYPE_OST)
828                 /* Only exclude OSTs */
829                 RETURN(0);
830
831         CDEBUG(D_MOUNT, "Check exclusion %s (%d) in %d of %s\n", svname,
832                index, lmd->lmd_exclude_count, lmd->lmd_dev);
833
834         for(i = 0; i < lmd->lmd_exclude_count; i++) {
835                 if (index == lmd->lmd_exclude[i]) {
836                         CWARN("Excluding %s (on exclusion list)\n", svname);
837                         RETURN(1);
838                 }
839         }
840         RETURN(0);
841 }
842
843 /* mount -v  -o exclude=lustre-OST0001:lustre-OST0002 -t lustre ... */
844 static int lmd_make_exclusion(struct lustre_mount_data *lmd, const char *ptr)
845 {
846         const char *s1 = ptr, *s2;
847         __u32 index, *exclude_list;
848         int rc = 0, devmax;
849         ENTRY;
850
851         /* The shortest an ost name can be is 8 chars: -OST0000.
852            We don't actually know the fsname at this time, so in fact
853            a user could specify any fsname. */
854         devmax = strlen(ptr) / 8 + 1;
855
856         /* temp storage until we figure out how many we have */
857         OBD_ALLOC(exclude_list, sizeof(index) * devmax);
858         if (!exclude_list)
859                 RETURN(-ENOMEM);
860
861         /* we enter this fn pointing at the '=' */
862         while (*s1 && *s1 != ' ' && *s1 != ',') {
863                 s1++;
864                 rc = server_name2index(s1, &index, &s2);
865                 if (rc < 0) {
866                         CERROR("Can't parse server name '%s': rc = %d\n",
867                                s1, rc);
868                         break;
869                 }
870                 if (rc == LDD_F_SV_TYPE_OST)
871                         exclude_list[lmd->lmd_exclude_count++] = index;
872                 else
873                         CDEBUG(D_MOUNT, "ignoring exclude %.*s: type = %#x\n",
874                                (uint)(s2-s1), s1, rc);
875                 s1 = s2;
876                 /* now we are pointing at ':' (next exclude)
877                    or ',' (end of excludes) */
878                 if (lmd->lmd_exclude_count >= devmax)
879                         break;
880         }
881         if (rc >= 0) /* non-err */
882                 rc = 0;
883
884         if (lmd->lmd_exclude_count) {
885                 /* permanent, freed in lustre_free_lsi */
886                 OBD_ALLOC(lmd->lmd_exclude, sizeof(index) *
887                           lmd->lmd_exclude_count);
888                 if (lmd->lmd_exclude) {
889                         memcpy(lmd->lmd_exclude, exclude_list,
890                                sizeof(index) * lmd->lmd_exclude_count);
891                 } else {
892                         rc = -ENOMEM;
893                         lmd->lmd_exclude_count = 0;
894                 }
895         }
896         OBD_FREE(exclude_list, sizeof(index) * devmax);
897         RETURN(rc);
898 }
899
900 static int lmd_parse_mgssec(struct lustre_mount_data *lmd, char *ptr)
901 {
902         char   *tail;
903         int     length;
904
905         if (lmd->lmd_mgssec != NULL) {
906                 OBD_FREE(lmd->lmd_mgssec, strlen(lmd->lmd_mgssec) + 1);
907                 lmd->lmd_mgssec = NULL;
908         }
909
910         tail = strchr(ptr, ',');
911         if (tail == NULL)
912                 length = strlen(ptr);
913         else
914                 length = tail - ptr;
915
916         OBD_ALLOC(lmd->lmd_mgssec, length + 1);
917         if (lmd->lmd_mgssec == NULL)
918                 return -ENOMEM;
919
920         memcpy(lmd->lmd_mgssec, ptr, length);
921         lmd->lmd_mgssec[length] = '\0';
922         return 0;
923 }
924
925 static int lmd_parse_string(char **handle, char *ptr)
926 {
927         char   *tail;
928         int     length;
929
930         if ((handle == NULL) || (ptr == NULL))
931                 return -EINVAL;
932
933         if (*handle != NULL) {
934                 OBD_FREE(*handle, strlen(*handle) + 1);
935                 *handle = NULL;
936         }
937
938         tail = strchr(ptr, ',');
939         if (tail == NULL)
940                 length = strlen(ptr);
941         else
942                 length = tail - ptr;
943
944         OBD_ALLOC(*handle, length + 1);
945         if (*handle == NULL)
946                 return -ENOMEM;
947
948         memcpy(*handle, ptr, length);
949         (*handle)[length] = '\0';
950
951         return 0;
952 }
953
954 /* Collect multiple values for mgsnid specifiers */
955 static int lmd_parse_mgs(struct lustre_mount_data *lmd, char **ptr)
956 {
957         lnet_nid_t nid;
958         char *tail = *ptr;
959         char *mgsnid;
960         int   length;
961         int   oldlen = 0;
962
963         /* Find end of nidlist */
964         while (class_parse_nid_quiet(tail, &nid, &tail) == 0) {}
965         length = tail - *ptr;
966         if (length == 0) {
967                 LCONSOLE_ERROR_MSG(0x159, "Can't parse NID '%s'\n", *ptr);
968                 return -EINVAL;
969         }
970
971         if (lmd->lmd_mgs != NULL)
972                 oldlen = strlen(lmd->lmd_mgs) + 1;
973
974         OBD_ALLOC(mgsnid, oldlen + length + 1);
975         if (mgsnid == NULL)
976                 return -ENOMEM;
977
978         if (lmd->lmd_mgs != NULL) {
979                 /* Multiple mgsnid= are taken to mean failover locations */
980                 memcpy(mgsnid, lmd->lmd_mgs, oldlen);
981                 mgsnid[oldlen - 1] = ':';
982                 OBD_FREE(lmd->lmd_mgs, oldlen);
983         }
984         memcpy(mgsnid + oldlen, *ptr, length);
985         mgsnid[oldlen + length] = '\0';
986         lmd->lmd_mgs = mgsnid;
987         *ptr = tail;
988
989         return 0;
990 }
991
992 /** Parse mount line options
993  * e.g. mount -v -t lustre -o abort_recov uml1:uml2:/lustre-client /mnt/lustre
994  * dev is passed as device=uml1:/lustre by mount.lustre
995  */
996 static int lmd_parse(char *options, struct lustre_mount_data *lmd)
997 {
998         char *s1, *s2, *devname = NULL;
999         struct lustre_mount_data *raw = (struct lustre_mount_data *)options;
1000         int rc = 0;
1001         ENTRY;
1002
1003         LASSERT(lmd);
1004         if (!options) {
1005                 LCONSOLE_ERROR_MSG(0x162, "Missing mount data: check that "
1006                                    "/sbin/mount.lustre is installed.\n");
1007                 RETURN(-EINVAL);
1008         }
1009
1010         /* Options should be a string - try to detect old lmd data */
1011         if ((raw->lmd_magic & 0xffffff00) == (LMD_MAGIC & 0xffffff00)) {
1012                 LCONSOLE_ERROR_MSG(0x163, "You're using an old version of "
1013                                    "/sbin/mount.lustre.  Please install "
1014                                    "version %s\n", LUSTRE_VERSION_STRING);
1015                 RETURN(-EINVAL);
1016         }
1017         lmd->lmd_magic = LMD_MAGIC;
1018
1019         OBD_ALLOC(lmd->lmd_params, 4096);
1020         if (lmd->lmd_params == NULL)
1021                 RETURN(-ENOMEM);
1022         lmd->lmd_params[0] = '\0';
1023
1024         /* Set default flags here */
1025
1026         s1 = options;
1027         while (*s1) {
1028                 int clear = 0;
1029                 int time_min = OBD_RECOVERY_TIME_MIN;
1030
1031                 /* Skip whitespace and extra commas */
1032                 while (*s1 == ' ' || *s1 == ',')
1033                         s1++;
1034
1035                 /* Client options are parsed in ll_options: eg. flock,
1036                    user_xattr, acl */
1037
1038                 /* Parse non-ldiskfs options here. Rather than modifying
1039                    ldiskfs, we just zero these out here */
1040                 if (strncmp(s1, "abort_recov", 11) == 0) {
1041                         lmd->lmd_flags |= LMD_FLG_ABORT_RECOV;
1042                         clear++;
1043                 } else if (strncmp(s1, "recovery_time_soft=", 19) == 0) {
1044                         lmd->lmd_recovery_time_soft = max_t(int,
1045                                 simple_strtoul(s1 + 19, NULL, 10), time_min);
1046                         clear++;
1047                 } else if (strncmp(s1, "recovery_time_hard=", 19) == 0) {
1048                         lmd->lmd_recovery_time_hard = max_t(int,
1049                                 simple_strtoul(s1 + 19, NULL, 10), time_min);
1050                         clear++;
1051                 } else if (strncmp(s1, "noir", 4) == 0) {
1052                         lmd->lmd_flags |= LMD_FLG_NOIR; /* test purpose only. */
1053                         clear++;
1054                 } else if (strncmp(s1, "nosvc", 5) == 0) {
1055                         lmd->lmd_flags |= LMD_FLG_NOSVC;
1056                         clear++;
1057                 } else if (strncmp(s1, "nomgs", 5) == 0) {
1058                         lmd->lmd_flags |= LMD_FLG_NOMGS;
1059                         clear++;
1060                 } else if (strncmp(s1, "noscrub", 7) == 0) {
1061                         lmd->lmd_flags |= LMD_FLG_NOSCRUB;
1062                         clear++;
1063                 } else if (strncmp(s1, PARAM_MGSNODE,
1064                                    sizeof(PARAM_MGSNODE) - 1) == 0) {
1065                         s2 = s1 + sizeof(PARAM_MGSNODE) - 1;
1066                         /* Assume the next mount opt is the first
1067                            invalid nid we get to. */
1068                         rc = lmd_parse_mgs(lmd, &s2);
1069                         if (rc)
1070                                 goto invalid;
1071                         clear++;
1072                 } else if (strncmp(s1, "writeconf", 9) == 0) {
1073                         lmd->lmd_flags |= LMD_FLG_WRITECONF;
1074                         clear++;
1075                 } else if (strncmp(s1, "update", 6) == 0) {
1076                         lmd->lmd_flags |= LMD_FLG_UPDATE;
1077                         clear++;
1078                 } else if (strncmp(s1, "virgin", 6) == 0) {
1079                         lmd->lmd_flags |= LMD_FLG_VIRGIN;
1080                         clear++;
1081                 } else if (strncmp(s1, "noprimnode", 10) == 0) {
1082                         lmd->lmd_flags |= LMD_FLG_NO_PRIMNODE;
1083                         clear++;
1084                 } else if (strncmp(s1, "mgssec=", 7) == 0) {
1085                         rc = lmd_parse_mgssec(lmd, s1 + 7);
1086                         if (rc)
1087                                 goto invalid;
1088                         clear++;
1089                 /* ost exclusion list */
1090                 } else if (strncmp(s1, "exclude=", 8) == 0) {
1091                         rc = lmd_make_exclusion(lmd, s1 + 7);
1092                         if (rc)
1093                                 goto invalid;
1094                         clear++;
1095                 } else if (strncmp(s1, "mgs", 3) == 0) {
1096                         /* We are an MGS */
1097                         lmd->lmd_flags |= LMD_FLG_MGS;
1098                         clear++;
1099                 } else if (strncmp(s1, "svname=", 7) == 0) {
1100                         rc = lmd_parse_string(&lmd->lmd_profile, s1 + 7);
1101                         if (rc)
1102                                 goto invalid;
1103                         clear++;
1104                 } else if (strncmp(s1, "param=", 6) == 0) {
1105                         int length;
1106                         char *tail = strchr(s1 + 6, ',');
1107                         if (tail == NULL)
1108                                 length = strlen(s1);
1109                         else
1110                                 length = tail - s1;
1111                         length -= 6;
1112                         strncat(lmd->lmd_params, s1 + 6, length);
1113                         strcat(lmd->lmd_params, " ");
1114                         clear++;
1115                 } else if (strncmp(s1, "osd=", 4) == 0) {
1116                         rc = lmd_parse_string(&lmd->lmd_osd_type, s1 + 4);
1117                         if (rc)
1118                                 goto invalid;
1119                         clear++;
1120                 }
1121                 /* Linux 2.4 doesn't pass the device, so we stuck it at the
1122                    end of the options. */
1123                 else if (strncmp(s1, "device=", 7) == 0) {
1124                         devname = s1 + 7;
1125                         /* terminate options right before device.  device
1126                            must be the last one. */
1127                         *s1 = '\0';
1128                         break;
1129                 }
1130
1131                 /* Find next opt */
1132                 s2 = strchr(s1, ',');
1133                 if (s2 == NULL) {
1134                         if (clear)
1135                                 *s1 = '\0';
1136                         break;
1137                 }
1138                 s2++;
1139                 if (clear)
1140                         memmove(s1, s2, strlen(s2) + 1);
1141                 else
1142                         s1 = s2;
1143         }
1144
1145         if (!devname) {
1146                 LCONSOLE_ERROR_MSG(0x164, "Can't find the device name "
1147                                    "(need mount option 'device=...')\n");
1148                 goto invalid;
1149         }
1150
1151         s1 = strstr(devname, ":/");
1152         if (s1) {
1153                 ++s1;
1154                 lmd->lmd_flags |= LMD_FLG_CLIENT;
1155                 /* Remove leading /s from fsname */
1156                 while (*++s1 == '/') ;
1157                 /* Freed in lustre_free_lsi */
1158                 OBD_ALLOC(lmd->lmd_profile, strlen(s1) + 8);
1159                 if (!lmd->lmd_profile)
1160                         RETURN(-ENOMEM);
1161                 sprintf(lmd->lmd_profile, "%s-client", s1);
1162         }
1163
1164         /* Freed in lustre_free_lsi */
1165         OBD_ALLOC(lmd->lmd_dev, strlen(devname) + 1);
1166         if (!lmd->lmd_dev)
1167                 RETURN(-ENOMEM);
1168         strcpy(lmd->lmd_dev, devname);
1169
1170         /* Save mount options */
1171         s1 = options + strlen(options) - 1;
1172         while (s1 >= options && (*s1 == ',' || *s1 == ' '))
1173                 *s1-- = 0;
1174         if (*options != 0) {
1175                 /* Freed in lustre_free_lsi */
1176                 OBD_ALLOC(lmd->lmd_opts, strlen(options) + 1);
1177                 if (!lmd->lmd_opts)
1178                         RETURN(-ENOMEM);
1179                 strcpy(lmd->lmd_opts, options);
1180         }
1181
1182         lmd_print(lmd);
1183         lmd->lmd_magic = LMD_MAGIC;
1184
1185         RETURN(rc);
1186
1187 invalid:
1188         CERROR("Bad mount options %s\n", options);
1189         RETURN(-EINVAL);
1190 }
1191
1192 struct lustre_mount_data2 {
1193         void *lmd2_data;
1194         struct vfsmount *lmd2_mnt;
1195 };
1196
1197 /** This is the entry point for the mount call into Lustre.
1198  * This is called when a server or client is mounted,
1199  * and this is where we start setting things up.
1200  * @param data Mount options (e.g. -o flock,abort_recov)
1201  */
1202 int lustre_fill_super(struct super_block *sb, void *data, int silent)
1203 {
1204         struct lustre_mount_data *lmd;
1205         struct lustre_mount_data2 *lmd2 = data;
1206         struct lustre_sb_info *lsi;
1207         int rc;
1208         ENTRY;
1209
1210         CDEBUG(D_MOUNT|D_VFSTRACE, "VFS Op: sb %p\n", sb);
1211
1212         lsi = lustre_init_lsi(sb);
1213         if (!lsi)
1214                 RETURN(-ENOMEM);
1215         lmd = lsi->lsi_lmd;
1216
1217         /*
1218          * Disable lockdep during mount, because mount locking patterns are
1219          * `special'.
1220          */
1221         lockdep_off();
1222
1223         /*
1224          * LU-639: the obd cleanup of last mount may not finish yet, wait here.
1225          */
1226         obd_zombie_barrier();
1227
1228         /* Figure out the lmd from the mount options */
1229         if (lmd_parse((char *)(lmd2->lmd2_data), lmd)) {
1230                 lustre_put_lsi(sb);
1231                 GOTO(out, rc = -EINVAL);
1232         }
1233
1234         if (lmd_is_client(lmd)) {
1235                 CDEBUG(D_MOUNT, "Mounting client %s\n", lmd->lmd_profile);
1236                 if (!client_fill_super) {
1237                         LCONSOLE_ERROR_MSG(0x165, "Nothing registered for "
1238                                            "client mount! Is the 'lustre' "
1239                                            "module loaded?\n");
1240                         lustre_put_lsi(sb);
1241                         rc = -ENODEV;
1242                 } else {
1243                         rc = lustre_start_mgc(sb);
1244                         if (rc) {
1245                                 lustre_put_lsi(sb);
1246                                 GOTO(out, rc);
1247                         }
1248                         /* Connect and start */
1249                         /* (should always be ll_fill_super) */
1250                         rc = (*client_fill_super)(sb, lmd2->lmd2_mnt);
1251                         /* c_f_s will call lustre_common_put_super on failure */
1252                 }
1253         } else {
1254 #ifdef HAVE_SERVER_SUPPORT
1255                 CDEBUG(D_MOUNT, "Mounting server from %s\n", lmd->lmd_dev);
1256                 rc = server_fill_super(sb);
1257                 /* s_f_s calls lustre_start_mgc after the mount because we need
1258                    the MGS nids which are stored on disk.  Plus, we may
1259                    need to start the MGS first. */
1260                 /* s_f_s will call server_put_super on failure */
1261 #else
1262                 CERROR("This is client-side-only module, "
1263                        "cannot handle server mount.\n");
1264                 rc = -EINVAL;
1265 #endif
1266         }
1267
1268         /* If error happens in fill_super() call, @lsi will be killed there.
1269          * This is why we do not put it here. */
1270         GOTO(out, rc);
1271 out:
1272         if (rc) {
1273                 CERROR("Unable to mount %s (%d)\n",
1274                        s2lsi(sb) ? lmd->lmd_dev : "", rc);
1275         } else {
1276                 CDEBUG(D_SUPER, "Mount %s complete\n",
1277                        lmd->lmd_dev);
1278         }
1279         lockdep_on();
1280         return rc;
1281 }
1282
1283
1284 /* We can't call ll_fill_super by name because it lives in a module that
1285    must be loaded after this one. */
1286 void lustre_register_client_fill_super(int (*cfs)(struct super_block *sb,
1287                                                   struct vfsmount *mnt))
1288 {
1289         client_fill_super = cfs;
1290 }
1291 EXPORT_SYMBOL(lustre_register_client_fill_super);
1292
1293 void lustre_register_kill_super_cb(void (*cfs)(struct super_block *sb))
1294 {
1295         kill_super_cb = cfs;
1296 }
1297 EXPORT_SYMBOL(lustre_register_kill_super_cb);
1298
1299 /***************** FS registration ******************/
1300 #ifdef HAVE_FSTYPE_MOUNT
1301 struct dentry *lustre_mount(struct file_system_type *fs_type, int flags,
1302                                 const char *devname, void *data)
1303 {
1304         struct lustre_mount_data2 lmd2 = { data, NULL };
1305
1306         return mount_nodev(fs_type, flags, &lmd2, lustre_fill_super);
1307 }
1308 #else
1309 int lustre_get_sb(struct file_system_type *fs_type, int flags,
1310                   const char *devname, void * data, struct vfsmount *mnt)
1311 {
1312         struct lustre_mount_data2 lmd2 = { data, mnt };
1313
1314         return get_sb_nodev(fs_type, flags, &lmd2, lustre_fill_super, mnt);
1315 }
1316 #endif
1317
1318 void lustre_kill_super(struct super_block *sb)
1319 {
1320         struct lustre_sb_info *lsi = s2lsi(sb);
1321
1322         if (kill_super_cb && lsi && !IS_SERVER(lsi))
1323                 (*kill_super_cb)(sb);
1324
1325         kill_anon_super(sb);
1326 }
1327
1328 /** Register the "lustre" fs type
1329  */
1330 struct file_system_type lustre_fs_type = {
1331         .owner        = THIS_MODULE,
1332         .name         = "lustre",
1333 #ifdef HAVE_FSTYPE_MOUNT
1334         .mount        = lustre_mount,
1335 #else
1336         .get_sb       = lustre_get_sb,
1337 #endif
1338         .kill_sb      = lustre_kill_super,
1339         .fs_flags     = FS_BINARY_MOUNTDATA | FS_REQUIRES_DEV |
1340                         FS_HAS_FIEMAP | FS_RENAME_DOES_D_MOVE,
1341 };
1342
1343 int lustre_register_fs(void)
1344 {
1345         return register_filesystem(&lustre_fs_type);
1346 }
1347
1348 int lustre_unregister_fs(void)
1349 {
1350         return unregister_filesystem(&lustre_fs_type);
1351 }