Whamcloud - gitweb
LU-176 obdclass: disable mb_cache by default
[fs/lustre-release.git] / lustre / obdclass / obd_mount.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  *
32  * Copyright (c) 2011 Whamcloud, Inc.
33  *
34  */
35 /*
36  * This file is part of Lustre, http://www.lustre.org/
37  * Lustre is a trademark of Sun Microsystems, Inc.
38  *
39  * lustre/obdclass/obd_mount.c
40  *
41  * Client/server mount routines
42  *
43  * Author: Nathan Rutman <nathan@clusterfs.com>
44  */
45
46
47 #define DEBUG_SUBSYSTEM S_CLASS
48 #define D_MOUNT D_SUPER|D_CONFIG /*|D_WARNING */
49 #define PRINT_CMD CDEBUG
50 #define PRINT_MASK D_SUPER|D_CONFIG
51
52 #include <obd.h>
53 #include <lvfs.h>
54 #include <lustre_fsfilt.h>
55 #include <obd_class.h>
56 #include <lustre/lustre_user.h>
57 #include <linux/version.h>
58 #include <lustre_log.h>
59 #include <lustre_disk.h>
60 #include <lustre_param.h>
61
62 static int (*client_fill_super)(struct super_block *sb,
63                                 struct vfsmount *mnt) = NULL;
64 static void (*kill_super_cb)(struct super_block *sb) = NULL;
65
66 /*********** mount lookup *********/
67
68 CFS_DECLARE_MUTEX(lustre_mount_info_lock);
69 static CFS_LIST_HEAD(server_mount_info_list);
70
71 static struct lustre_mount_info *server_find_mount(const char *name)
72 {
73         cfs_list_t *tmp;
74         struct lustre_mount_info *lmi;
75         ENTRY;
76
77         cfs_list_for_each(tmp, &server_mount_info_list) {
78                 lmi = cfs_list_entry(tmp, struct lustre_mount_info,
79                                      lmi_list_chain);
80                 if (strcmp(name, lmi->lmi_name) == 0)
81                         RETURN(lmi);
82         }
83         RETURN(NULL);
84 }
85
86 /* we must register an obd for a mount before we call the setup routine.
87    *_setup will call lustre_get_mount to get the mnt struct
88    by obd_name, since we can't pass the pointer to setup. */
89 static int server_register_mount(const char *name, struct super_block *sb,
90                           struct vfsmount *mnt)
91 {
92         struct lustre_mount_info *lmi;
93         char *name_cp;
94         ENTRY;
95
96         LASSERT(mnt);
97         LASSERT(sb);
98
99         OBD_ALLOC(lmi, sizeof(*lmi));
100         if (!lmi)
101                 RETURN(-ENOMEM);
102         OBD_ALLOC(name_cp, strlen(name) + 1);
103         if (!name_cp) {
104                 OBD_FREE(lmi, sizeof(*lmi));
105                 RETURN(-ENOMEM);
106         }
107         strcpy(name_cp, name);
108
109         cfs_down(&lustre_mount_info_lock);
110
111         if (server_find_mount(name)) {
112                 cfs_up(&lustre_mount_info_lock);
113                 OBD_FREE(lmi, sizeof(*lmi));
114                 OBD_FREE(name_cp, strlen(name) + 1);
115                 CERROR("Already registered %s\n", name);
116                 RETURN(-EEXIST);
117         }
118         lmi->lmi_name = name_cp;
119         lmi->lmi_sb = sb;
120         lmi->lmi_mnt = mnt;
121         cfs_list_add(&lmi->lmi_list_chain, &server_mount_info_list);
122
123         cfs_up(&lustre_mount_info_lock);
124
125         CDEBUG(D_MOUNT, "reg_mnt %p from %s, vfscount=%d\n",
126                lmi->lmi_mnt, name, cfs_atomic_read(&lmi->lmi_mnt->mnt_count));
127
128         RETURN(0);
129 }
130
131 /* when an obd no longer needs a mount */
132 static int server_deregister_mount(const char *name)
133 {
134         struct lustre_mount_info *lmi;
135         ENTRY;
136
137         cfs_down(&lustre_mount_info_lock);
138         lmi = server_find_mount(name);
139         if (!lmi) {
140                 cfs_up(&lustre_mount_info_lock);
141                 CERROR("%s not registered\n", name);
142                 RETURN(-ENOENT);
143         }
144
145         CDEBUG(D_MOUNT, "dereg_mnt %p from %s, vfscount=%d\n",
146                lmi->lmi_mnt, name, cfs_atomic_read(&lmi->lmi_mnt->mnt_count));
147
148         OBD_FREE(lmi->lmi_name, strlen(lmi->lmi_name) + 1);
149         cfs_list_del(&lmi->lmi_list_chain);
150         OBD_FREE(lmi, sizeof(*lmi));
151         cfs_up(&lustre_mount_info_lock);
152
153         RETURN(0);
154 }
155
156 /* obd's look up a registered mount using their obdname. This is just
157    for initial obd setup to find the mount struct.  It should not be
158    called every time you want to mntget. */
159 struct lustre_mount_info *server_get_mount(const char *name)
160 {
161         struct lustre_mount_info *lmi;
162         struct lustre_sb_info *lsi;
163         ENTRY;
164
165         cfs_down(&lustre_mount_info_lock);
166         lmi = server_find_mount(name);
167         cfs_up(&lustre_mount_info_lock);
168         if (!lmi) {
169                 CERROR("Can't find mount for %s\n", name);
170                 RETURN(NULL);
171         }
172         lsi = s2lsi(lmi->lmi_sb);
173         mntget(lmi->lmi_mnt);
174         cfs_atomic_inc(&lsi->lsi_mounts);
175
176         CDEBUG(D_MOUNT, "get_mnt %p from %s, refs=%d, vfscount=%d\n",
177                lmi->lmi_mnt, name, cfs_atomic_read(&lsi->lsi_mounts),
178                cfs_atomic_read(&lmi->lmi_mnt->mnt_count));
179
180         RETURN(lmi);
181 }
182
183 /*
184  * Used by mdt to get mount_info from obdname.
185  * There are no blocking when using the mount_info.
186  * Do not use server_get_mount for this purpose.
187  */
188 struct lustre_mount_info *server_get_mount_2(const char *name)
189 {
190         struct lustre_mount_info *lmi;
191         ENTRY;
192
193         cfs_down(&lustre_mount_info_lock);
194         lmi = server_find_mount(name);
195         cfs_up(&lustre_mount_info_lock);
196         if (!lmi)
197                 CERROR("Can't find mount for %s\n", name);
198
199         RETURN(lmi);
200 }
201
202 static void unlock_mntput(struct vfsmount *mnt)
203 {
204         if (kernel_locked()) {
205                 cfs_unlock_kernel();
206                 mntput(mnt);
207                 cfs_lock_kernel();
208         } else {
209                 mntput(mnt);
210         }
211 }
212
213 static int lustre_put_lsi(struct super_block *sb);
214
215 /* to be called from obd_cleanup methods */
216 int server_put_mount(const char *name, struct vfsmount *mnt)
217 {
218         struct lustre_mount_info *lmi;
219         struct lustre_sb_info *lsi;
220         int count = atomic_read(&mnt->mnt_count) - 1;
221         ENTRY;
222
223         /* This might be the last one, can't deref after this */
224         unlock_mntput(mnt);
225
226         cfs_down(&lustre_mount_info_lock);
227         lmi = server_find_mount(name);
228         cfs_up(&lustre_mount_info_lock);
229         if (!lmi) {
230                 CERROR("Can't find mount for %s\n", name);
231                 RETURN(-ENOENT);
232         }
233         lsi = s2lsi(lmi->lmi_sb);
234         LASSERT(lmi->lmi_mnt == mnt);
235
236         CDEBUG(D_MOUNT, "put_mnt %p from %s, refs=%d, vfscount=%d\n",
237                lmi->lmi_mnt, name, cfs_atomic_read(&lsi->lsi_mounts), count);
238
239         if (lustre_put_lsi(lmi->lmi_sb)) {
240                 CDEBUG(D_MOUNT, "Last put of mnt %p from %s, vfscount=%d\n",
241                        lmi->lmi_mnt, name, count);
242                 /* last mount is the One True Mount */
243                 if (count > 1)
244                         CERROR("%s: mount busy, vfscount=%d!\n", name, count);
245         }
246
247         /* this obd should never need the mount again */
248         server_deregister_mount(name);
249
250         RETURN(0);
251 }
252
253 /* Corresponding to server_get_mount_2 */
254 int server_put_mount_2(const char *name, struct vfsmount *mnt)
255 {
256         ENTRY;
257         RETURN(0);
258 }
259
260 /******* mount helper utilities *********/
261
262 #if 0
263 static void ldd_print(struct lustre_disk_data *ldd)
264 {
265         PRINT_CMD(PRINT_MASK, "  disk data:\n");
266         PRINT_CMD(PRINT_MASK, "server:  %s\n", ldd->ldd_svname);
267         PRINT_CMD(PRINT_MASK, "uuid:    %s\n", (char *)ldd->ldd_uuid);
268         PRINT_CMD(PRINT_MASK, "fs:      %s\n", ldd->ldd_fsname);
269         PRINT_CMD(PRINT_MASK, "index:   %04x\n", ldd->ldd_svindex);
270         PRINT_CMD(PRINT_MASK, "config:  %d\n", ldd->ldd_config_ver);
271         PRINT_CMD(PRINT_MASK, "flags:   %#x\n", ldd->ldd_flags);
272         PRINT_CMD(PRINT_MASK, "diskfs:  %s\n", MT_STR(ldd));
273         PRINT_CMD(PRINT_MASK, "options: %s\n", ldd->ldd_mount_opts);
274         PRINT_CMD(PRINT_MASK, "params:  %s\n", ldd->ldd_params);
275         PRINT_CMD(PRINT_MASK, "comment: %s\n", ldd->ldd_userdata);
276 }
277 #endif
278
279 static int ldd_parse(struct lvfs_run_ctxt *mount_ctxt,
280                      struct lustre_disk_data *ldd)
281 {
282         struct lvfs_run_ctxt saved;
283         struct file *file;
284         loff_t off = 0;
285         unsigned long len;
286         int rc;
287         ENTRY;
288
289         push_ctxt(&saved, mount_ctxt, NULL);
290
291         file = filp_open(MOUNT_DATA_FILE, O_RDONLY, 0644);
292         if (IS_ERR(file)) {
293                 rc = PTR_ERR(file);
294                 CERROR("cannot open %s: rc = %d\n", MOUNT_DATA_FILE, rc);
295                 GOTO(out, rc);
296         }
297
298         len = i_size_read(file->f_dentry->d_inode);
299         CDEBUG(D_MOUNT, "Have %s, size %lu\n", MOUNT_DATA_FILE, len);
300         if (len != sizeof(*ldd)) {
301                 CERROR("disk data size does not match: see %lu expect %u\n",
302                        len, (int)sizeof(*ldd));
303                 GOTO(out_close, rc = -EINVAL);
304         }
305
306         rc = lustre_fread(file, ldd, len, &off);
307         if (rc != len) {
308                 CERROR("error reading %s: read %d of %lu\n",
309                        MOUNT_DATA_FILE, rc, len);
310                 GOTO(out_close, rc = -EINVAL);
311         }
312         rc = 0;
313
314         if (ldd->ldd_magic != LDD_MAGIC) {
315                 /* FIXME add swabbing support */
316                 CERROR("Bad magic in %s: %x!=%x\n", MOUNT_DATA_FILE,
317                        ldd->ldd_magic, LDD_MAGIC);
318                 GOTO(out_close, rc = -EINVAL);
319         }
320
321         if (ldd->ldd_feature_incompat & ~LDD_INCOMPAT_SUPP) {
322                 CERROR("%s: unsupported incompat filesystem feature(s) %x\n",
323                        ldd->ldd_svname,
324                        ldd->ldd_feature_incompat & ~LDD_INCOMPAT_SUPP);
325                 GOTO(out_close, rc = -EINVAL);
326         }
327         if (ldd->ldd_feature_rocompat & ~LDD_ROCOMPAT_SUPP) {
328                 CERROR("%s: unsupported read-only filesystem feature(s) %x\n",
329                        ldd->ldd_svname,
330                        ldd->ldd_feature_rocompat & ~LDD_ROCOMPAT_SUPP);
331                 /* Do something like remount filesystem read-only */
332                 GOTO(out_close, rc = -EINVAL);
333         }
334
335 out_close:
336         filp_close(file, 0);
337 out:
338         pop_ctxt(&saved, mount_ctxt, NULL);
339         RETURN(rc);
340 }
341
342 static int ldd_write(struct lvfs_run_ctxt *mount_ctxt,
343                      struct lustre_disk_data *ldd)
344 {
345         struct lvfs_run_ctxt saved;
346         struct file *file;
347         loff_t off = 0;
348         unsigned long len = sizeof(struct lustre_disk_data);
349         int rc = 0;
350         ENTRY;
351
352         LASSERT(ldd->ldd_magic == LDD_MAGIC);
353
354         ldd->ldd_config_ver++;
355
356         push_ctxt(&saved, mount_ctxt, NULL);
357
358         file = filp_open(MOUNT_DATA_FILE, O_RDWR|O_SYNC, 0644);
359         if (IS_ERR(file)) {
360                 rc = PTR_ERR(file);
361                 CERROR("cannot open %s: rc = %d\n", MOUNT_DATA_FILE, rc);
362                 GOTO(out, rc);
363         }
364
365         rc = lustre_fwrite(file, ldd, len, &off);
366         if (rc != len) {
367                 CERROR("error writing %s: read %d of %lu\n",
368                        MOUNT_DATA_FILE, rc, len);
369                 GOTO(out_close, rc = -EINVAL);
370         }
371
372         rc = 0;
373
374 out_close:
375         filp_close(file, 0);
376 out:
377         pop_ctxt(&saved, mount_ctxt, NULL);
378         RETURN(rc);
379 }
380
381
382 /**************** config llog ********************/
383
384 /** Get a config log from the MGS and process it.
385  * This func is called for both clients and servers.
386  * Continue to process new statements appended to the logs
387  * (whenever the config lock is revoked) until lustre_end_log
388  * is called.
389  * @param sb The superblock is used by the MGC to write to the local copy of
390  *   the config log
391  * @param logname The name of the llog to replicate from the MGS
392  * @param cfg Since the same mgc may be used to follow multiple config logs
393  *   (e.g. ost1, ost2, client), the config_llog_instance keeps the state for
394  *   this log, and is added to the mgc's list of logs to follow.
395  */
396 int lustre_process_log(struct super_block *sb, char *logname,
397                      struct config_llog_instance *cfg)
398 {
399         struct lustre_cfg *lcfg;
400         struct lustre_cfg_bufs *bufs;
401         struct lustre_sb_info *lsi = s2lsi(sb);
402         struct obd_device *mgc = lsi->lsi_mgc;
403         int rc;
404         ENTRY;
405
406         LASSERT(mgc);
407         LASSERT(cfg);
408
409         OBD_ALLOC_PTR(bufs);
410         if (bufs == NULL)
411                 RETURN(-ENOMEM);
412
413         /* mgc_process_config */
414         lustre_cfg_bufs_reset(bufs, mgc->obd_name);
415         lustre_cfg_bufs_set_string(bufs, 1, logname);
416         lustre_cfg_bufs_set(bufs, 2, cfg, sizeof(*cfg));
417         lustre_cfg_bufs_set(bufs, 3, &sb, sizeof(sb));
418         lcfg = lustre_cfg_new(LCFG_LOG_START, bufs);
419         rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
420         lustre_cfg_free(lcfg);
421
422         OBD_FREE_PTR(bufs);
423
424         if (rc == -EINVAL)
425                 LCONSOLE_ERROR_MSG(0x15b, "%s: The configuration from log '%s'"
426                                    "failed from the MGS (%d).  Make sure this "
427                                    "client and the MGS are running compatible "
428                                    "versions of Lustre.\n",
429                                    mgc->obd_name, logname, rc);
430
431         if (rc)
432                 LCONSOLE_ERROR_MSG(0x15c, "%s: The configuration from log '%s' "
433                                    "failed (%d). This may be the result of "
434                                    "communication errors between this node and "
435                                    "the MGS, a bad configuration, or other "
436                                    "errors. See the syslog for more "
437                                    "information.\n", mgc->obd_name, logname,
438                                    rc);
439
440         /* class_obd_list(); */
441         RETURN(rc);
442 }
443
444 /* Stop watching this config log for updates */
445 int lustre_end_log(struct super_block *sb, char *logname,
446                        struct config_llog_instance *cfg)
447 {
448         struct lustre_cfg *lcfg;
449         struct lustre_cfg_bufs bufs;
450         struct lustre_sb_info *lsi = s2lsi(sb);
451         struct obd_device *mgc = lsi->lsi_mgc;
452         int rc;
453         ENTRY;
454
455         if (!mgc)
456                 RETURN(-ENOENT);
457
458         /* mgc_process_config */
459         lustre_cfg_bufs_reset(&bufs, mgc->obd_name);
460         lustre_cfg_bufs_set_string(&bufs, 1, logname);
461         if (cfg)
462                 lustre_cfg_bufs_set(&bufs, 2, cfg, sizeof(*cfg));
463         lcfg = lustre_cfg_new(LCFG_LOG_END, &bufs);
464         rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
465         lustre_cfg_free(lcfg);
466         RETURN(rc);
467 }
468
469 /**************** obd start *******************/
470
471 /** lustre_cfg_bufs are a holdover from 1.4; we can still set these up from
472  * lctl (and do for echo cli/srv.
473  */
474 int do_lcfg(char *cfgname, lnet_nid_t nid, int cmd,
475             char *s1, char *s2, char *s3, char *s4)
476 {
477         struct lustre_cfg_bufs bufs;
478         struct lustre_cfg    * lcfg = NULL;
479         int rc;
480
481         CDEBUG(D_TRACE, "lcfg %s %#x %s %s %s %s\n", cfgname,
482                cmd, s1, s2, s3, s4);
483
484         lustre_cfg_bufs_reset(&bufs, cfgname);
485         if (s1)
486                 lustre_cfg_bufs_set_string(&bufs, 1, s1);
487         if (s2)
488                 lustre_cfg_bufs_set_string(&bufs, 2, s2);
489         if (s3)
490                 lustre_cfg_bufs_set_string(&bufs, 3, s3);
491         if (s4)
492                 lustre_cfg_bufs_set_string(&bufs, 4, s4);
493
494         lcfg = lustre_cfg_new(cmd, &bufs);
495         lcfg->lcfg_nid = nid;
496         rc = class_process_config(lcfg);
497         lustre_cfg_free(lcfg);
498         return(rc);
499 }
500
501 /** Call class_attach and class_setup.  These methods in turn call
502  * obd type-specific methods.
503  */
504 static int lustre_start_simple(char *obdname, char *type, char *uuid,
505                                char *s1, char *s2)
506 {
507         int rc;
508         CDEBUG(D_MOUNT, "Starting obd %s (typ=%s)\n", obdname, type);
509
510         rc = do_lcfg(obdname, 0, LCFG_ATTACH, type, uuid, 0, 0);
511         if (rc) {
512                 CERROR("%s attach error %d\n", obdname, rc);
513                 return(rc);
514         }
515         rc = do_lcfg(obdname, 0, LCFG_SETUP, s1, s2, 0, 0);
516         if (rc) {
517                 CERROR("%s setup error %d\n", obdname, rc);
518                 do_lcfg(obdname, 0, LCFG_DETACH, 0, 0, 0, 0);
519         }
520         return rc;
521 }
522
523 /* Set up a MGS to serve startup logs */
524 static int server_start_mgs(struct super_block *sb)
525 {
526         struct lustre_sb_info    *lsi = s2lsi(sb);
527         struct vfsmount          *mnt = lsi->lsi_srv_mnt;
528         struct lustre_mount_info *lmi;
529         int    rc = 0;
530         ENTRY;
531         LASSERT(mnt);
532
533         /* It is impossible to have more than 1 MGS per node, since
534            MGC wouldn't know which to connect to */
535         lmi = server_find_mount(LUSTRE_MGS_OBDNAME);
536         if (lmi) {
537                 lsi = s2lsi(lmi->lmi_sb);
538                 LCONSOLE_ERROR_MSG(0x15d, "The MGS service was already started"
539                                    " from server %s\n",
540                                    lsi->lsi_ldd->ldd_svname);
541                 RETURN(-EALREADY);
542         }
543
544         CDEBUG(D_CONFIG, "Start MGS service %s\n", LUSTRE_MGS_OBDNAME);
545
546         rc = server_register_mount(LUSTRE_MGS_OBDNAME, sb, mnt);
547
548         if (!rc) {
549                 rc = lustre_start_simple(LUSTRE_MGS_OBDNAME, LUSTRE_MGS_NAME,
550                                          LUSTRE_MGS_OBDNAME, 0, 0);
551                 /* Do NOT call server_deregister_mount() here. This leads to
552                  * inability cleanup cleanly and free lsi and other stuff when
553                  * mgs calls server_put_mount() in error handling case. -umka */
554         }
555
556         if (rc)
557                 LCONSOLE_ERROR_MSG(0x15e, "Failed to start MGS '%s' (%d). "
558                                    "Is the 'mgs' module loaded?\n",
559                                    LUSTRE_MGS_OBDNAME, rc);
560         RETURN(rc);
561 }
562
563 static int server_stop_mgs(struct super_block *sb)
564 {
565         struct obd_device *obd;
566         int rc;
567         ENTRY;
568
569         CDEBUG(D_MOUNT, "Stop MGS service %s\n", LUSTRE_MGS_OBDNAME);
570
571         /* There better be only one MGS */
572         obd = class_name2obd(LUSTRE_MGS_OBDNAME);
573         if (!obd) {
574                 CDEBUG(D_CONFIG, "mgs %s not running\n", LUSTRE_MGS_OBDNAME);
575                 RETURN(-EALREADY);
576         }
577
578         /* The MGS should always stop when we say so */
579         obd->obd_force = 1;
580         rc = class_manual_cleanup(obd);
581         RETURN(rc);
582 }
583
584 CFS_DECLARE_MUTEX(mgc_start_lock);
585
586 /** Set up a mgc obd to process startup logs
587  *
588  * \param sb [in] super block of the mgc obd
589  *
590  * \retval 0 success, otherwise error code
591  */
592 static int lustre_start_mgc(struct super_block *sb)
593 {
594         struct obd_connect_data *data = NULL;
595         struct lustre_sb_info *lsi = s2lsi(sb);
596         struct obd_device *obd;
597         struct obd_export *exp;
598         struct obd_uuid *uuid;
599         class_uuid_t uuidc;
600         lnet_nid_t nid;
601         char *mgcname = NULL, *niduuid = NULL, *mgssec = NULL;
602         char *ptr;
603         int recov_bk;
604         int rc = 0, i = 0, j, len;
605         ENTRY;
606
607         LASSERT(lsi->lsi_lmd);
608
609         /* Find the first non-lo MGS nid for our MGC name */
610         if (lsi->lsi_flags & LSI_SERVER) {
611                 ptr = lsi->lsi_ldd->ldd_params;
612                 /* Use mgsnode= nids */
613                 if ((class_find_param(ptr, PARAM_MGSNODE, &ptr) == 0) &&
614                     (class_parse_nid(ptr, &nid, &ptr) == 0)) {
615                         i++;
616                 } else if (IS_MGS(lsi->lsi_ldd)) {
617                         lnet_process_id_t id;
618                         while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
619                                 if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
620                                         continue;
621                                 nid = id.nid;
622                                 i++;
623                                 break;
624                         }
625                 }
626         } else { /* client */
627                 /* Use nids from mount line: uml1,1@elan:uml2,2@elan:/lustre */
628                 ptr = lsi->lsi_lmd->lmd_dev;
629                 if (class_parse_nid(ptr, &nid, &ptr) == 0)
630                         i++;
631         }
632         if (i == 0) {
633                 CERROR("No valid MGS nids found.\n");
634                 RETURN(-EINVAL);
635         }
636
637         cfs_mutex_down(&mgc_start_lock);
638
639         len = strlen(LUSTRE_MGC_OBDNAME) + strlen(libcfs_nid2str(nid)) + 1;
640         OBD_ALLOC(mgcname, len);
641         OBD_ALLOC(niduuid, len + 2);
642         if (!mgcname || !niduuid)
643                 GOTO(out_free, rc = -ENOMEM);
644         sprintf(mgcname, "%s%s", LUSTRE_MGC_OBDNAME, libcfs_nid2str(nid));
645
646         mgssec = lsi->lsi_lmd->lmd_mgssec ? lsi->lsi_lmd->lmd_mgssec : "";
647
648         OBD_ALLOC_PTR(data);
649         if (data == NULL)
650                 GOTO(out_free, rc = -ENOMEM);
651
652         obd = class_name2obd(mgcname);
653         if (obd && !obd->obd_stopping) {
654                 rc = obd_set_info_async(obd->obd_self_export,
655                                         strlen(KEY_MGSSEC), KEY_MGSSEC,
656                                         strlen(mgssec), mgssec, NULL);
657                 if (rc)
658                         GOTO(out_free, rc);
659
660                 /* Re-using an existing MGC */
661                 cfs_atomic_inc(&obd->u.cli.cl_mgc_refcount);
662
663                 /* IR compatibility check, only for clients */
664                 if (lmd_is_client(lsi->lsi_lmd)) {
665                         int has_ir;
666                         int vallen = sizeof(*data);
667                         __u32 *flags = &lsi->lsi_lmd->lmd_flags;
668
669                         rc = obd_get_info(obd->obd_self_export,
670                                           strlen(KEY_CONN_DATA), KEY_CONN_DATA,
671                                           &vallen, data, NULL);
672                         LASSERT(rc == 0);
673                         has_ir = OCD_HAS_FLAG(data, IMP_RECOV);
674                         if (has_ir ^ !(*flags & LMD_FLG_NOIR)) {
675                                 /* LMD_FLG_NOIR is for test purpose only */
676                                 LCONSOLE_WARN(
677                                     "Trying to mount a client with IR setting "
678                                     "not compatible with current mgc. "
679                                     "Force to use current mgc setting that is "
680                                     "IR %s.\n",
681                                     has_ir ? "enabled" : "disabled");
682                                 if (has_ir)
683                                         *flags &= ~LMD_FLG_NOIR;
684                                 else
685                                         *flags |= LMD_FLG_NOIR;
686                         }
687                 }
688
689                 recov_bk = 0;
690                 /* If we are restarting the MGS, don't try to keep the MGC's
691                    old connection, or registration will fail. */
692                 if ((lsi->lsi_flags & LSI_SERVER) && IS_MGS(lsi->lsi_ldd)) {
693                         CDEBUG(D_MOUNT, "New MGS with live MGC\n");
694                         recov_bk = 1;
695                 }
696
697                 /* Try all connections, but only once (again).
698                    We don't want to block another target from starting
699                    (using its local copy of the log), but we do want to connect
700                    if at all possible. */
701                 recov_bk++;
702                 CDEBUG(D_MOUNT, "%s: Set MGC reconnect %d\n", mgcname,recov_bk);
703                 rc = obd_set_info_async(obd->obd_self_export,
704                                         sizeof(KEY_INIT_RECOV_BACKUP),
705                                         KEY_INIT_RECOV_BACKUP,
706                                         sizeof(recov_bk), &recov_bk, NULL);
707                 GOTO(out, rc = 0);
708         }
709
710         CDEBUG(D_MOUNT, "Start MGC '%s'\n", mgcname);
711
712         /* Add the primary nids for the MGS */
713         i = 0;
714         sprintf(niduuid, "%s_%x", mgcname, i);
715         if (lsi->lsi_flags & LSI_SERVER) {
716                 ptr = lsi->lsi_ldd->ldd_params;
717                 if (IS_MGS(lsi->lsi_ldd)) {
718                         /* Use local nids (including LO) */
719                         lnet_process_id_t id;
720                         while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
721                                 rc = do_lcfg(mgcname, id.nid,
722                                              LCFG_ADD_UUID, niduuid, 0,0,0);
723                         }
724                 } else {
725                         /* Use mgsnode= nids */
726                         if (class_find_param(ptr, PARAM_MGSNODE, &ptr) != 0) {
727                                 CERROR("No MGS nids given.\n");
728                                 GOTO(out_free, rc = -EINVAL);
729                         }
730                         while (class_parse_nid(ptr, &nid, &ptr) == 0) {
731                                 rc = do_lcfg(mgcname, nid,
732                                              LCFG_ADD_UUID, niduuid, 0,0,0);
733                                 i++;
734                         }
735                 }
736         } else { /* client */
737                 /* Use nids from mount line: uml1,1@elan:uml2,2@elan:/lustre */
738                 ptr = lsi->lsi_lmd->lmd_dev;
739                 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
740                         rc = do_lcfg(mgcname, nid,
741                                      LCFG_ADD_UUID, niduuid, 0,0,0);
742                         i++;
743                         /* Stop at the first failover nid */
744                         if (*ptr == ':')
745                                 break;
746                 }
747         }
748         if (i == 0) {
749                 CERROR("No valid MGS nids found.\n");
750                 GOTO(out_free, rc = -EINVAL);
751         }
752         lsi->lsi_lmd->lmd_mgs_failnodes = 1;
753
754         /* Random uuid for MGC allows easier reconnects */
755         OBD_ALLOC_PTR(uuid);
756         ll_generate_random_uuid(uuidc);
757         class_uuid_unparse(uuidc, uuid);
758
759         /* Start the MGC */
760         rc = lustre_start_simple(mgcname, LUSTRE_MGC_NAME,
761                                  (char *)uuid->uuid, LUSTRE_MGS_OBDNAME,
762                                  niduuid);
763         OBD_FREE_PTR(uuid);
764         if (rc)
765                 GOTO(out_free, rc);
766
767         /* Add any failover MGS nids */
768         i = 1;
769         while ((*ptr == ':' ||
770                 class_find_param(ptr, PARAM_MGSNODE, &ptr) == 0)) {
771                 /* New failover node */
772                 sprintf(niduuid, "%s_%x", mgcname, i);
773                 j = 0;
774                 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
775                         j++;
776                         rc = do_lcfg(mgcname, nid,
777                                      LCFG_ADD_UUID, niduuid, 0,0,0);
778                         if (*ptr == ':')
779                                 break;
780                 }
781                 if (j > 0) {
782                         rc = do_lcfg(mgcname, 0, LCFG_ADD_CONN,
783                                      niduuid, 0, 0, 0);
784                         i++;
785                 } else {
786                         /* at ":/fsname" */
787                         break;
788                 }
789         }
790         lsi->lsi_lmd->lmd_mgs_failnodes = i;
791
792         obd = class_name2obd(mgcname);
793         if (!obd) {
794                 CERROR("Can't find mgcobd %s\n", mgcname);
795                 GOTO(out_free, rc = -ENOTCONN);
796         }
797
798         rc = obd_set_info_async(obd->obd_self_export,
799                                 strlen(KEY_MGSSEC), KEY_MGSSEC,
800                                 strlen(mgssec), mgssec, NULL);
801         if (rc)
802                 GOTO(out_free, rc);
803
804         /* Keep a refcount of servers/clients who started with "mount",
805            so we know when we can get rid of the mgc. */
806         cfs_atomic_set(&obd->u.cli.cl_mgc_refcount, 1);
807
808         /* Try all connections, but only once. */
809         recov_bk = 1;
810         rc = obd_set_info_async(obd->obd_self_export,
811                                 sizeof(KEY_INIT_RECOV_BACKUP),
812                                 KEY_INIT_RECOV_BACKUP,
813                                 sizeof(recov_bk), &recov_bk, NULL);
814         if (rc)
815                 /* nonfatal */
816                 CWARN("can't set %s %d\n", KEY_INIT_RECOV_BACKUP, rc);
817         /* We connect to the MGS at setup, and don't disconnect until cleanup */
818         data->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_FID |
819                                   OBD_CONNECT_AT | OBD_CONNECT_FULL20   |
820                                   OBD_CONNECT_IMP_RECOV;
821         if (lmd_is_client(lsi->lsi_lmd) &&
822             lsi->lsi_lmd->lmd_flags & LMD_FLG_NOIR)
823                 data->ocd_connect_flags &= ~OBD_CONNECT_IMP_RECOV;
824         data->ocd_version = LUSTRE_VERSION_CODE;
825         rc = obd_connect(NULL, &exp, obd, &(obd->obd_uuid), data, NULL);
826         if (rc) {
827                 CERROR("connect failed %d\n", rc);
828                 GOTO(out, rc);
829         }
830
831         obd->u.cli.cl_mgc_mgsexp = exp;
832
833 out:
834         /* Keep the mgc info in the sb. Note that many lsi's can point
835            to the same mgc.*/
836         lsi->lsi_mgc = obd;
837 out_free:
838         cfs_mutex_up(&mgc_start_lock);
839
840         if (data)
841                 OBD_FREE_PTR(data);
842         if (mgcname)
843                 OBD_FREE(mgcname, len);
844         if (niduuid)
845                 OBD_FREE(niduuid, len + 2);
846         RETURN(rc);
847 }
848
849 static int lustre_stop_mgc(struct super_block *sb)
850 {
851         struct lustre_sb_info *lsi = s2lsi(sb);
852         struct obd_device *obd;
853         char *niduuid = 0, *ptr = 0;
854         int i, rc = 0, len = 0;
855         ENTRY;
856
857         if (!lsi)
858                 RETURN(-ENOENT);
859         obd = lsi->lsi_mgc;
860         if (!obd)
861                 RETURN(-ENOENT);
862         lsi->lsi_mgc = NULL;
863
864         cfs_mutex_down(&mgc_start_lock);
865         LASSERT(cfs_atomic_read(&obd->u.cli.cl_mgc_refcount) > 0);
866         if (!cfs_atomic_dec_and_test(&obd->u.cli.cl_mgc_refcount)) {
867                 /* This is not fatal, every client that stops
868                    will call in here. */
869                 CDEBUG(D_MOUNT, "mgc still has %d references.\n",
870                        cfs_atomic_read(&obd->u.cli.cl_mgc_refcount));
871                 GOTO(out, rc = -EBUSY);
872         }
873
874         /* The MGC has no recoverable data in any case.
875          * force shotdown set in umount_begin */
876         obd->obd_no_recov = 1;
877
878         if (obd->u.cli.cl_mgc_mgsexp) {
879                 /* An error is not fatal, if we are unable to send the
880                    disconnect mgs ping evictor cleans up the export */
881                 rc = obd_disconnect(obd->u.cli.cl_mgc_mgsexp);
882                 if (rc)
883                         CDEBUG(D_MOUNT, "disconnect failed %d\n", rc);
884         }
885
886         /* Save the obdname for cleaning the nid uuids, which are
887            obdname_XX */
888         len = strlen(obd->obd_name) + 6;
889         OBD_ALLOC(niduuid, len);
890         if (niduuid) {
891                 strcpy(niduuid, obd->obd_name);
892                 ptr = niduuid + strlen(niduuid);
893         }
894
895         rc = class_manual_cleanup(obd);
896         if (rc)
897                 GOTO(out, rc);
898
899         /* Clean the nid uuids */
900         if (!niduuid)
901                 GOTO(out, rc = -ENOMEM);
902
903         for (i = 0; i < lsi->lsi_lmd->lmd_mgs_failnodes; i++) {
904                 sprintf(ptr, "_%x", i);
905                 rc = do_lcfg(LUSTRE_MGC_OBDNAME, 0, LCFG_DEL_UUID,
906                              niduuid, 0, 0, 0);
907                 if (rc)
908                         CERROR("del MDC UUID %s failed: rc = %d\n",
909                                niduuid, rc);
910         }
911 out:
912         if (niduuid)
913                 OBD_FREE(niduuid, len);
914
915         /* class_import_put will get rid of the additional connections */
916         cfs_mutex_up(&mgc_start_lock);
917         RETURN(rc);
918 }
919
920 /* Since there's only one mgc per node, we have to change it's fs to get
921    access to the right disk. */
922 static int server_mgc_set_fs(struct obd_device *mgc, struct super_block *sb)
923 {
924         struct lustre_sb_info *lsi = s2lsi(sb);
925         int rc;
926         ENTRY;
927
928         CDEBUG(D_MOUNT, "Set mgc disk for %s\n", lsi->lsi_lmd->lmd_dev);
929
930         /* cl_mgc_sem in mgc insures we sleep if the mgc_fs is busy */
931         rc = obd_set_info_async(mgc->obd_self_export,
932                                 sizeof(KEY_SET_FS), KEY_SET_FS,
933                                 sizeof(*sb), sb, NULL);
934         if (rc) {
935                 CERROR("can't set_fs %d\n", rc);
936         }
937
938         RETURN(rc);
939 }
940
941 static int server_mgc_clear_fs(struct obd_device *mgc)
942 {
943         int rc;
944         ENTRY;
945
946         CDEBUG(D_MOUNT, "Unassign mgc disk\n");
947
948         rc = obd_set_info_async(mgc->obd_self_export,
949                                 sizeof(KEY_CLEAR_FS), KEY_CLEAR_FS,
950                                 0, NULL, NULL);
951         RETURN(rc);
952 }
953
954 CFS_DECLARE_MUTEX(server_start_lock);
955
956 /* Stop MDS/OSS if nobody is using them */
957 static int server_stop_servers(int lddflags, int lsiflags)
958 {
959         struct obd_device *obd = NULL;
960         struct obd_type *type = NULL;
961         int rc = 0;
962         ENTRY;
963
964         cfs_mutex_down(&server_start_lock);
965
966         /* Either an MDT or an OST or neither  */
967         /* if this was an MDT, and there are no more MDT's, clean up the MDS */
968         if ((lddflags & LDD_F_SV_TYPE_MDT) &&
969             (obd = class_name2obd(LUSTRE_MDS_OBDNAME))) {
970                 /*FIXME pre-rename, should eventually be LUSTRE_MDT_NAME*/
971                 type = class_search_type(LUSTRE_MDS_NAME);
972         }
973         /* if this was an OST, and there are no more OST's, clean up the OSS */
974         if ((lddflags & LDD_F_SV_TYPE_OST) &&
975             (obd = class_name2obd(LUSTRE_OSS_OBDNAME))) {
976                 type = class_search_type(LUSTRE_OST_NAME);
977         }
978
979         if (obd && (!type || !type->typ_refcnt)) {
980                 int err;
981                 obd->obd_force = 1;
982                 /* obd_fail doesn't mean much on a server obd */
983                 err = class_manual_cleanup(obd);
984                 if (!rc)
985                         rc = err;
986         }
987
988         cfs_mutex_up(&server_start_lock);
989
990         RETURN(rc);
991 }
992
993 int server_mti_print(char *title, struct mgs_target_info *mti)
994 {
995         PRINT_CMD(PRINT_MASK, "mti %s\n", title);
996         PRINT_CMD(PRINT_MASK, "server: %s\n", mti->mti_svname);
997         PRINT_CMD(PRINT_MASK, "fs:     %s\n", mti->mti_fsname);
998         PRINT_CMD(PRINT_MASK, "uuid:   %s\n", mti->mti_uuid);
999         PRINT_CMD(PRINT_MASK, "ver: %d  flags: %#x\n",
1000                   mti->mti_config_ver, mti->mti_flags);
1001         return(0);
1002 }
1003
1004 static int server_sb2mti(struct super_block *sb, struct mgs_target_info *mti)
1005 {
1006         struct lustre_sb_info    *lsi = s2lsi(sb);
1007         struct lustre_disk_data  *ldd = lsi->lsi_ldd;
1008         lnet_process_id_t         id;
1009         int                       i = 0;
1010         ENTRY;
1011
1012         if (!(lsi->lsi_flags & LSI_SERVER))
1013                 RETURN(-EINVAL);
1014
1015         strncpy(mti->mti_fsname, ldd->ldd_fsname,
1016                 sizeof(mti->mti_fsname));
1017         strncpy(mti->mti_svname, ldd->ldd_svname,
1018                 sizeof(mti->mti_svname));
1019
1020         mti->mti_nid_count = 0;
1021         while (LNetGetId(i++, &id) != -ENOENT) {
1022                 if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
1023                         continue;
1024
1025                 /* server use --servicenode param, only allow specified
1026                  * nids be registered */
1027                 if ((ldd->ldd_flags & LDD_F_NO_PRIMNODE) != 0 &&
1028                     class_match_nid(ldd->ldd_params,
1029                                     PARAM_FAILNODE, id.nid) < 1)
1030                         continue;
1031
1032                 /* match specified network */
1033                 if (!class_match_net(ldd->ldd_params,
1034                                      PARAM_NETWORK, LNET_NIDNET(id.nid)))
1035                         continue;
1036
1037                 mti->mti_nids[mti->mti_nid_count] = id.nid;
1038                 mti->mti_nid_count++;
1039                 if (mti->mti_nid_count >= MTI_NIDS_MAX) {
1040                         CWARN("Only using first %d nids for %s\n",
1041                               mti->mti_nid_count, mti->mti_svname);
1042                         break;
1043                 }
1044         }
1045
1046         mti->mti_lustre_ver = LUSTRE_VERSION_CODE;
1047         mti->mti_config_ver = 0;
1048         if (lsi->lsi_lmd->lmd_flags & LMD_FLG_WRITECONF)
1049                 ldd->ldd_flags |= LDD_F_WRITECONF;
1050         mti->mti_flags = ldd->ldd_flags;
1051         mti->mti_stripe_index = ldd->ldd_svindex;
1052         memcpy(mti->mti_uuid, ldd->ldd_uuid, sizeof(mti->mti_uuid));
1053         if (strlen(ldd->ldd_params) > sizeof(mti->mti_params)) {
1054                 CERROR("params too big for mti\n");
1055                 RETURN(-ENOMEM);
1056         }
1057         memcpy(mti->mti_params, ldd->ldd_params, sizeof(mti->mti_params));
1058         RETURN(0);
1059 }
1060
1061 /* Register an old or new target with the MGS. If needed MGS will construct
1062    startup logs and assign index */
1063 int server_register_target(struct super_block *sb)
1064 {
1065         struct lustre_sb_info *lsi = s2lsi(sb);
1066         struct obd_device *mgc = lsi->lsi_mgc;
1067         struct lustre_disk_data *ldd = lsi->lsi_ldd;
1068         struct mgs_target_info *mti = NULL;
1069         bool writeconf;
1070         int rc;
1071         ENTRY;
1072
1073         LASSERT(mgc);
1074
1075         if (!(lsi->lsi_flags & LSI_SERVER))
1076                 RETURN(-EINVAL);
1077
1078         OBD_ALLOC_PTR(mti);
1079         if (!mti)
1080                 RETURN(-ENOMEM);
1081         rc = server_sb2mti(sb, mti);
1082         if (rc)
1083                 GOTO(out, rc);
1084
1085         CDEBUG(D_MOUNT, "Registration %s, fs=%s, %s, index=%04x, flags=%#x\n",
1086                mti->mti_svname, mti->mti_fsname,
1087                libcfs_nid2str(mti->mti_nids[0]), mti->mti_stripe_index,
1088                mti->mti_flags);
1089
1090         /* if write_conf is true, the registration must succeed */
1091         writeconf = !!(ldd->ldd_flags & (LDD_F_NEED_INDEX | LDD_F_UPDATE));
1092         mti->mti_flags |= LDD_F_OPC_REG;
1093
1094         /* Register the target */
1095         /* FIXME use mgc_process_config instead */
1096         rc = obd_set_info_async(mgc->u.cli.cl_mgc_mgsexp,
1097                                 sizeof(KEY_REGISTER_TARGET), KEY_REGISTER_TARGET,
1098                                 sizeof(*mti), mti, NULL);
1099         if (rc) {
1100                 if (mti->mti_flags & LDD_F_ERROR) {
1101                         LCONSOLE_ERROR_MSG(0x160,
1102                                 "The MGS is refusing to allow this "
1103                                 "server (%s) to start. Please see messages"
1104                                 " on the MGS node.\n", ldd->ldd_svname);
1105                 } else if (writeconf) {
1106                         LCONSOLE_ERROR_MSG(0x15f,
1107                                 "Communication to the MGS return error %d. "
1108                                 "Is the MGS running?\n", rc);
1109                 } else {
1110                         CERROR("Cannot talk to the MGS: %d, not fatal\n", rc);
1111                         /* reset the error code for non-fatal error. */
1112                         rc = 0;
1113                 }
1114                 GOTO(out, rc);
1115         }
1116
1117         /* Always update our flags */
1118         ldd->ldd_flags = mti->mti_flags & LDD_F_ONDISK_MASK;
1119
1120         /* If this flag is set, it means the MGS wants us to change our
1121            on-disk data. (So far this means just the index.) */
1122         if (mti->mti_flags & LDD_F_REWRITE_LDD) {
1123                 char *label;
1124                 int err;
1125                 CDEBUG(D_MOUNT, "Changing on-disk index from %#x to %#x "
1126                        "for %s\n", ldd->ldd_svindex, mti->mti_stripe_index,
1127                        mti->mti_svname);
1128                 ldd->ldd_svindex = mti->mti_stripe_index;
1129                 strncpy(ldd->ldd_svname, mti->mti_svname,
1130                         sizeof(ldd->ldd_svname));
1131                 /* or ldd_make_sv_name(ldd); */
1132                 ldd_write(&mgc->obd_lvfs_ctxt, ldd);
1133                 err = fsfilt_set_label(mgc, lsi->lsi_srv_mnt->mnt_sb,
1134                                        mti->mti_svname);
1135                 if (err)
1136                         CERROR("Label set error %d\n", err);
1137                 label = fsfilt_get_label(mgc, lsi->lsi_srv_mnt->mnt_sb);
1138                 if (label)
1139                         CDEBUG(D_MOUNT, "Disk label changed to %s\n", label);
1140
1141                 /* Flush the new ldd to disk */
1142                 fsfilt_sync(mgc, lsi->lsi_srv_mnt->mnt_sb);
1143         }
1144
1145 out:
1146         if (mti)
1147                 OBD_FREE_PTR(mti);
1148         RETURN(rc);
1149 }
1150
1151 /**
1152  * Notify the MGS that this target is ready.
1153  * Used by IR - if the MGS receives this message, it will notify clients.
1154  */
1155 static int server_notify_target(struct super_block *sb, struct obd_device *obd)
1156 {
1157         struct lustre_sb_info *lsi = s2lsi(sb);
1158         struct obd_device *mgc = lsi->lsi_mgc;
1159         struct mgs_target_info *mti = NULL;
1160         int rc;
1161         ENTRY;
1162
1163         LASSERT(mgc);
1164
1165         if (!(lsi->lsi_flags & LSI_SERVER))
1166                 RETURN(-EINVAL);
1167
1168         OBD_ALLOC_PTR(mti);
1169         if (!mti)
1170                 RETURN(-ENOMEM);
1171         rc = server_sb2mti(sb, mti);
1172         if (rc)
1173                 GOTO(out, rc);
1174
1175         mti->mti_instance = obd->u.obt.obt_instance;
1176         mti->mti_flags |= LDD_F_OPC_READY;
1177
1178         /* FIXME use mgc_process_config instead */
1179         rc = obd_set_info_async(mgc->u.cli.cl_mgc_mgsexp,
1180                                 sizeof(KEY_REGISTER_TARGET),
1181                                 KEY_REGISTER_TARGET,
1182                                 sizeof(*mti), mti, NULL);
1183
1184         /* Imperative recovery: if the mgs informs us to use IR? */
1185         if (!rc && !(mti->mti_flags & LDD_F_ERROR) &&
1186             (mti->mti_flags & LDD_F_IR_CAPABLE))
1187                 lsi->lsi_flags |= LSI_IR_CAPABLE;
1188
1189 out:
1190         if (mti)
1191                 OBD_FREE_PTR(mti);
1192         RETURN(rc);
1193
1194 }
1195
1196 /** Start server targets: MDTs and OSTs
1197  */
1198 static int server_start_targets(struct super_block *sb, struct vfsmount *mnt)
1199 {
1200         struct obd_device *obd;
1201         struct lustre_sb_info *lsi = s2lsi(sb);
1202         struct config_llog_instance cfg;
1203         int rc;
1204         ENTRY;
1205
1206         CDEBUG(D_MOUNT, "starting target %s\n", lsi->lsi_ldd->ldd_svname);
1207
1208 #if 0
1209         /* If we're an MDT, make sure the global MDS is running */
1210         if (lsi->lsi_ldd->ldd_flags & LDD_F_SV_TYPE_MDT) {
1211                 /* make sure the MDS is started */
1212                 cfs_mutex_down(&server_start_lock);
1213                 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1214                 if (!obd) {
1215                         rc = lustre_start_simple(LUSTRE_MDS_OBDNAME,
1216                     /* FIXME pre-rename, should eventually be LUSTRE_MDS_NAME */
1217                                                  LUSTRE_MDT_NAME,
1218                                                  LUSTRE_MDS_OBDNAME"_uuid",
1219                                                  0, 0);
1220                         if (rc) {
1221                                 cfs_mutex_up(&server_start_lock);
1222                                 CERROR("failed to start MDS: %d\n", rc);
1223                                 RETURN(rc);
1224                         }
1225                 }
1226                 cfs_mutex_up(&server_start_lock);
1227         }
1228 #endif
1229
1230         /* If we're an OST, make sure the global OSS is running */
1231         if (IS_OST(lsi->lsi_ldd)) {
1232                 /* make sure OSS is started */
1233                 cfs_mutex_down(&server_start_lock);
1234                 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1235                 if (!obd) {
1236                         rc = lustre_start_simple(LUSTRE_OSS_OBDNAME,
1237                                                  LUSTRE_OSS_NAME,
1238                                                  LUSTRE_OSS_OBDNAME"_uuid",
1239                                                  0, 0);
1240                         if (rc) {
1241                                 cfs_mutex_up(&server_start_lock);
1242                                 CERROR("failed to start OSS: %d\n", rc);
1243                                 RETURN(rc);
1244                         }
1245                 }
1246                 cfs_mutex_up(&server_start_lock);
1247         }
1248
1249         /* Set the mgc fs to our server disk.  This allows the MGC to
1250          * read and write configs locally, in case it can't talk to the MGS. */
1251         rc = server_mgc_set_fs(lsi->lsi_mgc, sb);
1252         if (rc)
1253                 RETURN(rc);
1254
1255         /* Register with MGS */
1256         rc = server_register_target(sb);
1257         if (rc)
1258                 GOTO(out_mgc, rc);
1259
1260         /* Let the target look up the mount using the target's name
1261            (we can't pass the sb or mnt through class_process_config.) */
1262         rc = server_register_mount(lsi->lsi_ldd->ldd_svname, sb, mnt);
1263         if (rc)
1264                 GOTO(out_mgc, rc);
1265
1266         /* Start targets using the llog named for the target */
1267         memset(&cfg, 0, sizeof(cfg));
1268         rc = lustre_process_log(sb, lsi->lsi_ldd->ldd_svname, &cfg);
1269         if (rc) {
1270                 CERROR("failed to start server %s: %d\n",
1271                        lsi->lsi_ldd->ldd_svname, rc);
1272                 /* Do NOT call server_deregister_mount() here. This makes it
1273                  * impossible to find mount later in cleanup time and leaves
1274                  * @lsi and othder stuff leaked. -umka */
1275                 GOTO(out_mgc, rc);
1276         }
1277
1278 out_mgc:
1279         /* Release the mgc fs for others to use */
1280         server_mgc_clear_fs(lsi->lsi_mgc);
1281
1282         if (!rc) {
1283                 obd = class_name2obd(lsi->lsi_ldd->ldd_svname);
1284                 if (!obd) {
1285                         CERROR("no server named %s was started\n",
1286                                lsi->lsi_ldd->ldd_svname);
1287                         RETURN(-ENXIO);
1288                 }
1289
1290                 if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_ABORT_RECOV) &&
1291                     (OBP(obd, iocontrol))) {
1292                         obd_iocontrol(OBD_IOC_ABORT_RECOVERY,
1293                                       obd->obd_self_export, 0, NULL, NULL);
1294                 }
1295
1296                 server_notify_target(sb, obd);
1297
1298                 /* calculate recovery timeout, do it after lustre_process_log */
1299                 server_calc_timeout(lsi, obd);
1300
1301                 /* log has been fully processed */
1302                 obd_notify(obd, NULL, OBD_NOTIFY_CONFIG, (void *)CONFIG_LOG);
1303         }
1304
1305         RETURN(rc);
1306 }
1307
1308 /***************** lustre superblock **************/
1309
1310 struct lustre_sb_info *lustre_init_lsi(struct super_block *sb)
1311 {
1312         struct lustre_sb_info *lsi;
1313         ENTRY;
1314
1315         OBD_ALLOC_PTR(lsi);
1316         if (!lsi)
1317                 RETURN(NULL);
1318         OBD_ALLOC_PTR(lsi->lsi_lmd);
1319         if (!lsi->lsi_lmd) {
1320                 OBD_FREE_PTR(lsi);
1321                 RETURN(NULL);
1322         }
1323
1324         lsi->lsi_lmd->lmd_exclude_count = 0;
1325         lsi->lsi_lmd->lmd_recovery_time_soft = 0;
1326         lsi->lsi_lmd->lmd_recovery_time_hard = 0;
1327         s2lsi_nocast(sb) = lsi;
1328         /* we take 1 extra ref for our setup */
1329         cfs_atomic_set(&lsi->lsi_mounts, 1);
1330
1331         /* Default umount style */
1332         lsi->lsi_flags = LSI_UMOUNT_FAILOVER;
1333
1334         RETURN(lsi);
1335 }
1336
1337 static int lustre_free_lsi(struct super_block *sb)
1338 {
1339         struct lustre_sb_info *lsi = s2lsi(sb);
1340         ENTRY;
1341
1342         LASSERT(lsi != NULL);
1343         CDEBUG(D_MOUNT, "Freeing lsi %p\n", lsi);
1344
1345         /* someone didn't call server_put_mount. */
1346         LASSERT(cfs_atomic_read(&lsi->lsi_mounts) == 0);
1347
1348         if (lsi->lsi_ldd != NULL)
1349                 OBD_FREE(lsi->lsi_ldd, sizeof(*lsi->lsi_ldd));
1350
1351         if (lsi->lsi_lmd != NULL) {
1352                 if (lsi->lsi_lmd->lmd_dev != NULL)
1353                         OBD_FREE(lsi->lsi_lmd->lmd_dev,
1354                                  strlen(lsi->lsi_lmd->lmd_dev) + 1);
1355                 if (lsi->lsi_lmd->lmd_profile != NULL)
1356                         OBD_FREE(lsi->lsi_lmd->lmd_profile,
1357                                  strlen(lsi->lsi_lmd->lmd_profile) + 1);
1358                 if (lsi->lsi_lmd->lmd_mgssec != NULL)
1359                         OBD_FREE(lsi->lsi_lmd->lmd_mgssec,
1360                                  strlen(lsi->lsi_lmd->lmd_mgssec) + 1);
1361                 if (lsi->lsi_lmd->lmd_opts != NULL)
1362                         OBD_FREE(lsi->lsi_lmd->lmd_opts,
1363                                  strlen(lsi->lsi_lmd->lmd_opts) + 1);
1364                 if (lsi->lsi_lmd->lmd_exclude_count)
1365                         OBD_FREE(lsi->lsi_lmd->lmd_exclude,
1366                                  sizeof(lsi->lsi_lmd->lmd_exclude[0]) *
1367                                  lsi->lsi_lmd->lmd_exclude_count);
1368                 OBD_FREE(lsi->lsi_lmd, sizeof(*lsi->lsi_lmd));
1369         }
1370
1371         LASSERT(lsi->lsi_llsbi == NULL);
1372         OBD_FREE(lsi, sizeof(*lsi));
1373         s2lsi_nocast(sb) = NULL;
1374
1375         RETURN(0);
1376 }
1377
1378 /* The lsi has one reference for every server that is using the disk -
1379    e.g. MDT, MGS, and potentially MGC */
1380 static int lustre_put_lsi(struct super_block *sb)
1381 {
1382         struct lustre_sb_info *lsi = s2lsi(sb);
1383         ENTRY;
1384
1385         LASSERT(lsi != NULL);
1386
1387         CDEBUG(D_MOUNT, "put %p %d\n", sb, cfs_atomic_read(&lsi->lsi_mounts));
1388         if (cfs_atomic_dec_and_test(&lsi->lsi_mounts)) {
1389                 lustre_free_lsi(sb);
1390                 RETURN(1);
1391         }
1392         RETURN(0);
1393 }
1394
1395 /*************** server mount ******************/
1396
1397 /** Kernel mount using mount options in MOUNT_DATA_FILE.
1398  * Since this file lives on the disk, we pre-mount using a common
1399  * type, read the file, then re-mount using the type specified in the
1400  * file.
1401  */
1402 static struct vfsmount *server_kernel_mount(struct super_block *sb)
1403 {
1404         struct lvfs_run_ctxt mount_ctxt;
1405         struct lustre_sb_info *lsi = s2lsi(sb);
1406         struct lustre_disk_data *ldd;
1407         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1408         struct vfsmount *mnt;
1409         char *options = NULL;
1410         unsigned long page, s_flags;
1411         struct page *__page;
1412         int len;
1413         int rc;
1414         ENTRY;
1415
1416         OBD_ALLOC(ldd, sizeof(*ldd));
1417         if (!ldd)
1418                 RETURN(ERR_PTR(-ENOMEM));
1419
1420         /* In the past, we have always used flags = 0.
1421            Note ext3/ldiskfs can't be mounted ro. */
1422         s_flags = sb->s_flags;
1423
1424         /* allocate memory for options */
1425         OBD_PAGE_ALLOC(__page, CFS_ALLOC_STD);
1426         if (!__page)
1427                 GOTO(out_free, rc = -ENOMEM);
1428         page = (unsigned long)cfs_page_address(__page);
1429         options = (char *)page;
1430         memset(options, 0, CFS_PAGE_SIZE);
1431
1432         /* mount-line options must be added for pre-mount because it may
1433          * contain mount options such as journal_dev which are required
1434          * to mount successfuly the underlying filesystem */
1435         if (lmd->lmd_opts && (*(lmd->lmd_opts) != 0))
1436                 strncat(options, lmd->lmd_opts, CFS_PAGE_SIZE - 1);
1437
1438         /* Pre-mount ldiskfs to read the MOUNT_DATA_FILE */
1439         CDEBUG(D_MOUNT, "Pre-mount ldiskfs %s\n", lmd->lmd_dev);
1440         mnt = ll_kern_mount("ldiskfs", s_flags, lmd->lmd_dev, (void *)options);
1441         if (IS_ERR(mnt)) {
1442                 rc = PTR_ERR(mnt);
1443                 CERROR("premount %s:%#lx ldiskfs failed: %d "
1444                         "Is the ldiskfs module available?\n",
1445                         lmd->lmd_dev, s_flags, rc );
1446                 GOTO(out_free, rc);
1447         }
1448
1449         OBD_SET_CTXT_MAGIC(&mount_ctxt);
1450         mount_ctxt.pwdmnt = mnt;
1451         mount_ctxt.pwd = mnt->mnt_root;
1452         mount_ctxt.fs = get_ds();
1453
1454         rc = ldd_parse(&mount_ctxt, ldd);
1455         unlock_mntput(mnt);
1456
1457         if (rc) {
1458                 CERROR("premount parse options failed: rc = %d\n", rc);
1459                 GOTO(out_free, rc);
1460         }
1461
1462         /* Done with our pre-mount, now do the real mount. */
1463
1464         /* Glom up mount options */
1465         memset(options, 0, CFS_PAGE_SIZE);
1466         strncpy(options, ldd->ldd_mount_opts, CFS_PAGE_SIZE - 2);
1467
1468         len = CFS_PAGE_SIZE - strlen(options) - 2;
1469         if (*options != 0)
1470                 strcat(options, ",");
1471         strncat(options, "no_mbcache", len);
1472
1473         /* Add in any mount-line options */
1474         if (lmd->lmd_opts && (*(lmd->lmd_opts) != 0)) {
1475                 len = CFS_PAGE_SIZE - strlen(options) - 2;
1476                 strcat(options, ",");
1477                 strncat(options, lmd->lmd_opts, len);
1478         }
1479
1480         /* Special permanent mount flags */
1481         if (IS_OST(ldd))
1482             s_flags |= MS_NOATIME | MS_NODIRATIME;
1483
1484         CDEBUG(D_MOUNT, "kern_mount: %s %s %s\n",
1485                MT_STR(ldd), lmd->lmd_dev, options);
1486         mnt = ll_kern_mount(MT_STR(ldd), s_flags, lmd->lmd_dev,
1487                             (void *)options);
1488         if (IS_ERR(mnt)) {
1489                 rc = PTR_ERR(mnt);
1490                 CERROR("ll_kern_mount failed: rc = %d\n", rc);
1491                 GOTO(out_free, rc);
1492         }
1493
1494         if (lmd->lmd_flags & LMD_FLG_ABORT_RECOV)
1495                 simple_truncate(mnt->mnt_sb->s_root, mnt, LAST_RCVD,
1496                                 LR_CLIENT_START);
1497
1498         OBD_PAGE_FREE(__page);
1499         lsi->lsi_ldd = ldd;   /* freed at lsi cleanup */
1500         CDEBUG(D_SUPER, "%s: mnt = %p\n", lmd->lmd_dev, mnt);
1501         RETURN(mnt);
1502
1503 out_free:
1504         if (__page)
1505                 OBD_PAGE_FREE(__page);
1506         OBD_FREE(ldd, sizeof(*ldd));
1507         lsi->lsi_ldd = NULL;
1508         RETURN(ERR_PTR(rc));
1509 }
1510
1511 /** Wait here forever until the mount refcount is 0 before completing umount,
1512  * else we risk dereferencing a null pointer.
1513  * LNET may take e.g. 165s before killing zombies.
1514  */
1515 static void server_wait_finished(struct vfsmount *mnt)
1516 {
1517        cfs_waitq_t             waitq;
1518        int                     rc, waited = 0;
1519        cfs_sigset_t            blocked;
1520
1521        cfs_waitq_init(&waitq);
1522
1523        while (atomic_read(&mnt->mnt_count) > 1) {
1524                if (waited && (waited % 30 == 0))
1525                        LCONSOLE_WARN("Mount still busy with %d refs after "
1526                                       "%d secs.\n",
1527                                       atomic_read(&mnt->mnt_count),
1528                                       waited);
1529                /* Cannot use l_event_wait() for an interruptible sleep. */
1530                waited += 3;
1531                blocked = cfs_block_sigsinv(sigmask(SIGKILL));
1532                cfs_waitq_wait_event_interruptible_timeout(
1533                        waitq,
1534                        (atomic_read(&mnt->mnt_count) == 1),
1535                        cfs_time_seconds(3),
1536                        rc);
1537                cfs_block_sigs(blocked);
1538                if (rc < 0) {
1539                        LCONSOLE_EMERG("Danger: interrupted umount %s with "
1540                                       "%d refs!\n", mnt->mnt_devname,
1541                                       atomic_read(&mnt->mnt_count));
1542                        break;
1543                }
1544
1545        }
1546 }
1547
1548 /** Start the shutdown of servers at umount.
1549  */
1550 static void server_put_super(struct super_block *sb)
1551 {
1552         struct lustre_sb_info *lsi = s2lsi(sb);
1553         struct obd_device     *obd;
1554         struct vfsmount       *mnt = lsi->lsi_srv_mnt;
1555         char *tmpname, *extraname = NULL;
1556         int tmpname_sz;
1557         int lddflags = lsi->lsi_ldd->ldd_flags;
1558         int lsiflags = lsi->lsi_flags;
1559         ENTRY;
1560
1561         LASSERT(lsiflags & LSI_SERVER);
1562
1563         tmpname_sz = strlen(lsi->lsi_ldd->ldd_svname) + 1;
1564         OBD_ALLOC(tmpname, tmpname_sz);
1565         memcpy(tmpname, lsi->lsi_ldd->ldd_svname, tmpname_sz);
1566         CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1567         if (IS_MDT(lsi->lsi_ldd) && (lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC))
1568                 snprintf(tmpname, tmpname_sz, "MGS");
1569
1570         /* Stop the target */
1571         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1572             (IS_MDT(lsi->lsi_ldd) || IS_OST(lsi->lsi_ldd))) {
1573                 struct lustre_profile *lprof = NULL;
1574
1575                 /* tell the mgc to drop the config log */
1576                 lustre_end_log(sb, lsi->lsi_ldd->ldd_svname, NULL);
1577
1578                 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1579                    If there are any setup/cleanup errors, save the lov
1580                    name for safety cleanup later. */
1581                 lprof = class_get_profile(lsi->lsi_ldd->ldd_svname);
1582                 if (lprof && lprof->lp_dt) {
1583                         OBD_ALLOC(extraname, strlen(lprof->lp_dt) + 1);
1584                         strcpy(extraname, lprof->lp_dt);
1585                 }
1586
1587                 obd = class_name2obd(lsi->lsi_ldd->ldd_svname);
1588                 if (obd) {
1589                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1590                         if (lsi->lsi_flags & LSI_UMOUNT_FAILOVER)
1591                                 obd->obd_fail = 1;
1592                         /* We can't seem to give an error return code
1593                          * to .put_super, so we better make sure we clean up! */
1594                         obd->obd_force = 1;
1595                         class_manual_cleanup(obd);
1596                 } else {
1597                         CERROR("no obd %s\n", lsi->lsi_ldd->ldd_svname);
1598                         server_deregister_mount(lsi->lsi_ldd->ldd_svname);
1599                 }
1600         }
1601
1602         /* If they wanted the mgs to stop separately from the mdt, they
1603            should have put it on a different device. */
1604         if (IS_MGS(lsi->lsi_ldd)) {
1605                 /* if MDS start with --nomgs, don't stop MGS then */
1606                 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS))
1607                         server_stop_mgs(sb);
1608         }
1609
1610         /* Clean the mgc and sb */
1611         lustre_common_put_super(sb);
1612
1613         /* Wait for the targets to really clean up - can't exit (and let the
1614            sb get destroyed) while the mount is still in use */
1615         server_wait_finished(mnt);
1616
1617         /* drop the One True Mount */
1618         unlock_mntput(mnt);
1619
1620         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1621            until the target is really gone so that our type refcount check
1622            is right. */
1623         server_stop_servers(lddflags, lsiflags);
1624
1625         /* In case of startup or cleanup err, stop related obds */
1626         if (extraname) {
1627                 obd = class_name2obd(extraname);
1628                 if (obd) {
1629                         CWARN("Cleaning orphaned obd %s\n", extraname);
1630                         obd->obd_force = 1;
1631                         class_manual_cleanup(obd);
1632                 }
1633                 OBD_FREE(extraname, strlen(extraname) + 1);
1634         }
1635
1636         LCONSOLE_WARN("server umount %s complete\n", tmpname);
1637         OBD_FREE(tmpname, tmpname_sz);
1638         EXIT;
1639 }
1640
1641 /** Called only for 'umount -f'
1642  */
1643 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1644 static void server_umount_begin(struct vfsmount *vfsmnt, int flags)
1645 {
1646         struct super_block *sb = vfsmnt->mnt_sb;
1647 #else
1648 static void server_umount_begin(struct super_block *sb)
1649 {
1650 #endif
1651         struct lustre_sb_info *lsi = s2lsi(sb);
1652         ENTRY;
1653
1654 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1655         if (!(flags & MNT_FORCE)) {
1656                 EXIT;
1657                 return;
1658         }
1659 #endif
1660
1661         CDEBUG(D_MOUNT, "umount -f\n");
1662         /* umount = failover
1663            umount -f = force
1664            no third way to do non-force, non-failover */
1665         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1666         lsi->lsi_flags |= LSI_UMOUNT_FORCE;
1667         EXIT;
1668 }
1669
1670 #ifndef HAVE_STATFS_DENTRY_PARAM
1671 static int server_statfs (struct super_block *sb, cfs_kstatfs_t *buf)
1672 {
1673 #else
1674 static int server_statfs (struct dentry *dentry, cfs_kstatfs_t *buf)
1675 {
1676         struct super_block *sb = dentry->d_sb;
1677 #endif
1678         struct vfsmount *mnt = s2lsi(sb)->lsi_srv_mnt;
1679         ENTRY;
1680
1681         if (mnt && mnt->mnt_sb && mnt->mnt_sb->s_op->statfs) {
1682 #ifdef HAVE_STATFS_DENTRY_PARAM
1683                 int rc = mnt->mnt_sb->s_op->statfs(mnt->mnt_root, buf);
1684 #else
1685                 int rc = mnt->mnt_sb->s_op->statfs(mnt->mnt_sb, buf);
1686 #endif
1687                 if (!rc) {
1688                         buf->f_type = sb->s_magic;
1689                         RETURN(0);
1690                 }
1691         }
1692
1693         /* just return 0 */
1694         buf->f_type = sb->s_magic;
1695         buf->f_bsize = sb->s_blocksize;
1696         buf->f_blocks = 1;
1697         buf->f_bfree = 0;
1698         buf->f_bavail = 0;
1699         buf->f_files = 1;
1700         buf->f_ffree = 0;
1701         buf->f_namelen = NAME_MAX;
1702         RETURN(0);
1703 }
1704
1705 /** The operations we support directly on the superblock:
1706  * mount, umount, and df.
1707  */
1708 static struct super_operations server_ops =
1709 {
1710         .put_super      = server_put_super,
1711         .umount_begin   = server_umount_begin, /* umount -f */
1712         .statfs         = server_statfs,
1713 };
1714
1715 #define log2(n) cfs_ffz(~(n))
1716 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1717
1718 static int server_fill_super_common(struct super_block *sb)
1719 {
1720         struct inode *root = 0;
1721         ENTRY;
1722
1723         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1724
1725         sb->s_blocksize = 4096;
1726         sb->s_blocksize_bits = log2(sb->s_blocksize);
1727         sb->s_magic = LUSTRE_SUPER_MAGIC;
1728         sb->s_maxbytes = 0; //PAGE_CACHE_MAXBYTES;
1729         sb->s_flags |= MS_RDONLY;
1730         sb->s_op = &server_ops;
1731
1732         root = new_inode(sb);
1733         if (!root) {
1734                 CERROR("Can't make root inode\n");
1735                 RETURN(-EIO);
1736         }
1737
1738         /* returns -EIO for every operation */
1739         /* make_bad_inode(root); -- badness - can't umount */
1740         /* apparently we need to be a directory for the mount to finish */
1741         root->i_mode = S_IFDIR;
1742
1743         sb->s_root = d_alloc_root(root);
1744         if (!sb->s_root) {
1745                 CERROR("Can't make root dentry\n");
1746                 iput(root);
1747                 RETURN(-EIO);
1748         }
1749
1750         RETURN(0);
1751 }
1752
1753 /** Fill in the superblock info for a Lustre server.
1754  * Mount the device with the correct options.
1755  * Read the on-disk config file.
1756  * Start the services.
1757  */
1758 static int server_fill_super(struct super_block *sb)
1759 {
1760         struct lustre_sb_info *lsi = s2lsi(sb);
1761         struct vfsmount *mnt;
1762         int rc;
1763         ENTRY;
1764
1765         /* the One True Mount */
1766         mnt = server_kernel_mount(sb);
1767         if (IS_ERR(mnt)) {
1768                 rc = PTR_ERR(mnt);
1769                 CERROR("Unable to mount device %s: %d\n",
1770                        lsi->lsi_lmd->lmd_dev, rc);
1771                 lustre_put_lsi(sb);
1772                 RETURN(rc);
1773         }
1774         lsi->lsi_srv_mnt = mnt;
1775
1776         LASSERT(lsi->lsi_ldd);
1777         CDEBUG(D_MOUNT, "Found service %s for fs '%s' on device %s\n",
1778                lsi->lsi_ldd->ldd_svname, lsi->lsi_ldd->ldd_fsname,
1779                lsi->lsi_lmd->lmd_dev);
1780
1781         if (class_name2obd(lsi->lsi_ldd->ldd_svname)) {
1782                 LCONSOLE_ERROR_MSG(0x161, "The target named %s is already "
1783                                    "running. Double-mount may have compromised"
1784                                    " the disk journal.\n",
1785                                    lsi->lsi_ldd->ldd_svname);
1786                 lustre_put_lsi(sb);
1787                 unlock_mntput(mnt);
1788                 RETURN(-EALREADY);
1789         }
1790
1791         /* Start MGS before MGC */
1792         if (IS_MGS(lsi->lsi_ldd) && !(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS)){
1793                 rc = server_start_mgs(sb);
1794                 if (rc)
1795                         GOTO(out_mnt, rc);
1796         }
1797
1798         /* Start MGC before servers */
1799         rc = lustre_start_mgc(sb);
1800         if (rc)
1801                 GOTO(out_mnt, rc);
1802
1803         /* Set up all obd devices for service */
1804         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1805                 (IS_OST(lsi->lsi_ldd) || IS_MDT(lsi->lsi_ldd))) {
1806                 rc = server_start_targets(sb, mnt);
1807                 if (rc < 0) {
1808                         CERROR("Unable to start targets: %d\n", rc);
1809                         GOTO(out_mnt, rc);
1810                 }
1811         /* FIXME overmount client here,
1812            or can we just start a client log and client_fill_super on this sb?
1813            We need to make sure server_put_super gets called too - ll_put_super
1814            calls lustre_common_put_super; check there for LSI_SERVER flag,
1815            call s_p_s if so.
1816            Probably should start client from new thread so we can return.
1817            Client will not finish until all servers are connected.
1818            Note - MGS-only server does NOT get a client, since there is no
1819            lustre fs associated - the MGS is for all lustre fs's */
1820         }
1821
1822         rc = server_fill_super_common(sb);
1823         if (rc)
1824                 GOTO(out_mnt, rc);
1825
1826         RETURN(0);
1827 out_mnt:
1828         /* We jump here in case of failure while starting targets or MGS.
1829          * In this case we can't just put @mnt and have to do real cleanup
1830          * with stoping targets, etc. */
1831         server_put_super(sb);
1832         return rc;
1833 }
1834
1835 /* Get the index from the obd name.
1836    rc = server type, or
1837    rc < 0  on error
1838    if endptr isn't NULL it is set to end of name */
1839 int server_name2index(char *svname, __u32 *idx, char **endptr)
1840 {
1841         unsigned long index;
1842         int rc;
1843         char *dash = strrchr(svname, '-');
1844         if (!dash)
1845                 return(-EINVAL);
1846
1847         /* intepret <fsname>-MDTXXXXX-mdc as mdt, the better way is to pass
1848          * in the fsname, then determine the server index */
1849         if (!strcmp(LUSTRE_MDC_NAME, dash + 1)) {
1850                 dash--;
1851                 for (; dash > svname && *dash != '-'; dash--);
1852                 if (dash == svname)
1853                         return(-EINVAL);
1854         }
1855
1856         if (strncmp(dash + 1, "MDT", 3) == 0)
1857                 rc = LDD_F_SV_TYPE_MDT;
1858         else if (strncmp(dash + 1, "OST", 3) == 0)
1859                 rc = LDD_F_SV_TYPE_OST;
1860         else
1861                 return(-EINVAL);
1862         if (strcmp(dash + 4, "all") == 0)
1863                 return rc | LDD_F_SV_ALL;
1864
1865         index = simple_strtoul(dash + 4, endptr, 16);
1866         *idx = index;
1867         return rc;
1868 }
1869
1870 /*
1871  * Calculate timeout value for a target.
1872  */
1873 void server_calc_timeout(struct lustre_sb_info *lsi, struct obd_device *obd)
1874 {
1875         struct lustre_mount_data *lmd;
1876         int soft = 0;
1877         int hard = 0;
1878         int factor = 0;
1879         bool has_ir = !!(lsi->lsi_flags & LSI_IR_CAPABLE);
1880         int min = OBD_RECOVERY_TIME_MIN;
1881
1882         LASSERT(lsi->lsi_flags & LSI_SERVER);
1883
1884         lmd = lsi->lsi_lmd;
1885         if (lmd) {
1886                 soft   = lmd->lmd_recovery_time_soft;
1887                 hard   = lmd->lmd_recovery_time_hard;
1888                 has_ir = has_ir && !(lmd->lmd_flags & LMD_FLG_NOIR);
1889                 obd->obd_no_ir = !has_ir;
1890         }
1891
1892         if (soft == 0)
1893                 soft = OBD_RECOVERY_TIME_SOFT;
1894         if (hard == 0)
1895                 hard = OBD_RECOVERY_TIME_HARD;
1896
1897         /* target may have ir_factor configured. */
1898         factor = OBD_IR_FACTOR_DEFAULT;
1899         if (obd->obd_recovery_ir_factor)
1900                 factor = obd->obd_recovery_ir_factor;
1901
1902         if (has_ir) {
1903                 int new_soft = soft;
1904                 int new_hard = hard;
1905
1906                 /* adjust timeout value by imperative recovery */
1907
1908                 new_soft = (soft * factor) / OBD_IR_FACTOR_MAX;
1909                 new_hard = (hard * factor) / OBD_IR_FACTOR_MAX;
1910
1911                 /* make sure the timeout is not too short */
1912                 new_soft = max(min, new_soft);
1913                 new_hard = max(new_soft, new_hard);
1914
1915                 LCONSOLE_INFO("%s: Imperative Recovery enabled, recovery "
1916                               "window shrunk from %d-%d down to %d-%d\n",
1917                               obd->obd_name, soft, hard, new_soft, new_hard);
1918
1919                 soft = new_soft;
1920                 hard = new_hard;
1921         }
1922
1923         /* we're done */
1924         obd->obd_recovery_timeout   = max(obd->obd_recovery_timeout, soft);
1925         obd->obd_recovery_time_hard = hard;
1926         obd->obd_recovery_ir_factor = factor;
1927 }
1928 EXPORT_SYMBOL(server_calc_timeout);
1929
1930 /*************** mount common betweeen server and client ***************/
1931
1932 /* Common umount */
1933 int lustre_common_put_super(struct super_block *sb)
1934 {
1935         int rc;
1936         ENTRY;
1937
1938         CDEBUG(D_MOUNT, "dropping sb %p\n", sb);
1939
1940         /* Drop a ref to the MGC */
1941         rc = lustre_stop_mgc(sb);
1942         if (rc && (rc != -ENOENT)) {
1943                 if (rc != -EBUSY) {
1944                         CERROR("Can't stop MGC: %d\n", rc);
1945                         RETURN(rc);
1946                 }
1947                 /* BUSY just means that there's some other obd that
1948                    needs the mgc.  Let him clean it up. */
1949                 CDEBUG(D_MOUNT, "MGC still in use\n");
1950         }
1951         /* Drop a ref to the mounted disk */
1952         lustre_put_lsi(sb);
1953         lu_types_stop();
1954         RETURN(rc);
1955 }
1956
1957 static void lmd_print(struct lustre_mount_data *lmd)
1958 {
1959         int i;
1960
1961         PRINT_CMD(PRINT_MASK, "  mount data:\n");
1962         if (lmd_is_client(lmd))
1963                 PRINT_CMD(PRINT_MASK, "profile: %s\n", lmd->lmd_profile);
1964         PRINT_CMD(PRINT_MASK, "device:  %s\n", lmd->lmd_dev);
1965         PRINT_CMD(PRINT_MASK, "flags:   %x\n", lmd->lmd_flags);
1966
1967         if (lmd->lmd_opts)
1968                 PRINT_CMD(PRINT_MASK, "options: %s\n", lmd->lmd_opts);
1969
1970         if (lmd->lmd_recovery_time_soft)
1971                 PRINT_CMD(PRINT_MASK, "recovery time soft: %d\n",
1972                           lmd->lmd_recovery_time_soft);
1973
1974         if (lmd->lmd_recovery_time_hard)
1975                 PRINT_CMD(PRINT_MASK, "recovery time hard: %d\n",
1976                           lmd->lmd_recovery_time_hard);
1977
1978         for (i = 0; i < lmd->lmd_exclude_count; i++) {
1979                 PRINT_CMD(PRINT_MASK, "exclude %d:  OST%04x\n", i,
1980                           lmd->lmd_exclude[i]);
1981         }
1982 }
1983
1984 /* Is this server on the exclusion list */
1985 int lustre_check_exclusion(struct super_block *sb, char *svname)
1986 {
1987         struct lustre_sb_info *lsi = s2lsi(sb);
1988         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1989         __u32 index;
1990         int i, rc;
1991         ENTRY;
1992
1993         rc = server_name2index(svname, &index, NULL);
1994         if (rc != LDD_F_SV_TYPE_OST)
1995                 /* Only exclude OSTs */
1996                 RETURN(0);
1997
1998         CDEBUG(D_MOUNT, "Check exclusion %s (%d) in %d of %s\n", svname,
1999                index, lmd->lmd_exclude_count, lmd->lmd_dev);
2000
2001         for(i = 0; i < lmd->lmd_exclude_count; i++) {
2002                 if (index == lmd->lmd_exclude[i]) {
2003                         CWARN("Excluding %s (on exclusion list)\n", svname);
2004                         RETURN(1);
2005                 }
2006         }
2007         RETURN(0);
2008 }
2009
2010 /* mount -v  -o exclude=lustre-OST0001:lustre-OST0002 -t lustre ... */
2011 static int lmd_make_exclusion(struct lustre_mount_data *lmd, char *ptr)
2012 {
2013         char *s1 = ptr, *s2;
2014         __u32 index, *exclude_list;
2015         int rc = 0, devmax;
2016         ENTRY;
2017
2018         /* The shortest an ost name can be is 8 chars: -OST0000.
2019            We don't actually know the fsname at this time, so in fact
2020            a user could specify any fsname. */
2021         devmax = strlen(ptr) / 8 + 1;
2022
2023         /* temp storage until we figure out how many we have */
2024         OBD_ALLOC(exclude_list, sizeof(index) * devmax);
2025         if (!exclude_list)
2026                 RETURN(-ENOMEM);
2027
2028         /* we enter this fn pointing at the '=' */
2029         while (*s1 && *s1 != ' ' && *s1 != ',') {
2030                 s1++;
2031                 rc = server_name2index(s1, &index, &s2);
2032                 if (rc < 0) {
2033                         CERROR("Can't parse server name '%s'\n", s1);
2034                         break;
2035                 }
2036                 if (rc == LDD_F_SV_TYPE_OST)
2037                         exclude_list[lmd->lmd_exclude_count++] = index;
2038                 else
2039                         CDEBUG(D_MOUNT, "ignoring exclude %.7s\n", s1);
2040                 s1 = s2;
2041                 /* now we are pointing at ':' (next exclude)
2042                    or ',' (end of excludes) */
2043                 if (lmd->lmd_exclude_count >= devmax)
2044                         break;
2045         }
2046         if (rc >= 0) /* non-err */
2047                 rc = 0;
2048
2049         if (lmd->lmd_exclude_count) {
2050                 /* permanent, freed in lustre_free_lsi */
2051                 OBD_ALLOC(lmd->lmd_exclude, sizeof(index) *
2052                           lmd->lmd_exclude_count);
2053                 if (lmd->lmd_exclude) {
2054                         memcpy(lmd->lmd_exclude, exclude_list,
2055                                sizeof(index) * lmd->lmd_exclude_count);
2056                 } else {
2057                         rc = -ENOMEM;
2058                         lmd->lmd_exclude_count = 0;
2059                 }
2060         }
2061         OBD_FREE(exclude_list, sizeof(index) * devmax);
2062         RETURN(rc);
2063 }
2064
2065 static int lmd_parse_mgssec(struct lustre_mount_data *lmd, char *ptr)
2066 {
2067         char   *tail;
2068         int     length;
2069
2070         if (lmd->lmd_mgssec != NULL) {
2071                 OBD_FREE(lmd->lmd_mgssec, strlen(lmd->lmd_mgssec) + 1);
2072                 lmd->lmd_mgssec = NULL;
2073         }
2074
2075         tail = strchr(ptr, ',');
2076         if (tail == NULL)
2077                 length = strlen(ptr);
2078         else
2079                 length = tail - ptr;
2080
2081         OBD_ALLOC(lmd->lmd_mgssec, length + 1);
2082         if (lmd->lmd_mgssec == NULL)
2083                 return -ENOMEM;
2084
2085         memcpy(lmd->lmd_mgssec, ptr, length);
2086         lmd->lmd_mgssec[length] = '\0';
2087         return 0;
2088 }
2089
2090 /** Parse mount line options
2091  * e.g. mount -v -t lustre -o abort_recov uml1:uml2:/lustre-client /mnt/lustre
2092  * dev is passed as device=uml1:/lustre by mount.lustre
2093  */
2094 static int lmd_parse(char *options, struct lustre_mount_data *lmd)
2095 {
2096         char *s1, *s2, *devname = NULL;
2097         struct lustre_mount_data *raw = (struct lustre_mount_data *)options;
2098         int rc = 0;
2099         ENTRY;
2100
2101         LASSERT(lmd);
2102         if (!options) {
2103                 LCONSOLE_ERROR_MSG(0x162, "Missing mount data: check that "
2104                                    "/sbin/mount.lustre is installed.\n");
2105                 RETURN(-EINVAL);
2106         }
2107
2108         /* Options should be a string - try to detect old lmd data */
2109         if ((raw->lmd_magic & 0xffffff00) == (LMD_MAGIC & 0xffffff00)) {
2110                 LCONSOLE_ERROR_MSG(0x163, "You're using an old version of "
2111                                    "/sbin/mount.lustre.  Please install "
2112                                    "version %s\n", LUSTRE_VERSION_STRING);
2113                 RETURN(-EINVAL);
2114         }
2115         lmd->lmd_magic = LMD_MAGIC;
2116
2117         /* Set default flags here */
2118
2119         s1 = options;
2120         while (*s1) {
2121                 int clear = 0;
2122                 int time_min = OBD_RECOVERY_TIME_MIN;
2123
2124                 /* Skip whitespace and extra commas */
2125                 while (*s1 == ' ' || *s1 == ',')
2126                         s1++;
2127
2128                 /* Client options are parsed in ll_options: eg. flock,
2129                    user_xattr, acl */
2130
2131                 /* Parse non-ldiskfs options here. Rather than modifying
2132                    ldiskfs, we just zero these out here */
2133                 if (strncmp(s1, "abort_recov", 11) == 0) {
2134                         lmd->lmd_flags |= LMD_FLG_ABORT_RECOV;
2135                         clear++;
2136                 } else if (strncmp(s1, "recovery_time_soft=", 19) == 0) {
2137                         lmd->lmd_recovery_time_soft = max_t(int,
2138                                 simple_strtoul(s1 + 19, NULL, 10), time_min);
2139                         clear++;
2140                 } else if (strncmp(s1, "recovery_time_hard=", 19) == 0) {
2141                         lmd->lmd_recovery_time_hard = max_t(int,
2142                                 simple_strtoul(s1 + 19, NULL, 10), time_min);
2143                         clear++;
2144                 } else if (strncmp(s1, "noir", 4) == 0) {
2145                         lmd->lmd_flags |= LMD_FLG_NOIR; /* test purpose only. */
2146                         clear++;
2147                 } else if (strncmp(s1, "nosvc", 5) == 0) {
2148                         lmd->lmd_flags |= LMD_FLG_NOSVC;
2149                         clear++;
2150                 } else if (strncmp(s1, "nomgs", 5) == 0) {
2151                         lmd->lmd_flags |= LMD_FLG_NOMGS;
2152                         clear++;
2153                 } else if (strncmp(s1, "writeconf", 9) == 0) {
2154                         lmd->lmd_flags |= LMD_FLG_WRITECONF;
2155                         clear++;
2156                 } else if (strncmp(s1, "mgssec=", 7) == 0) {
2157                         rc = lmd_parse_mgssec(lmd, s1 + 7);
2158                         if (rc)
2159                                 goto invalid;
2160                         clear++;
2161                 /* ost exclusion list */
2162                 } else if (strncmp(s1, "exclude=", 8) == 0) {
2163                         rc = lmd_make_exclusion(lmd, s1 + 7);
2164                         if (rc)
2165                                 goto invalid;
2166                         clear++;
2167                 }
2168                 /* Linux 2.4 doesn't pass the device, so we stuck it at the
2169                    end of the options. */
2170                 else if (strncmp(s1, "device=", 7) == 0) {
2171                         devname = s1 + 7;
2172                         /* terminate options right before device.  device
2173                            must be the last one. */
2174                         *s1 = '\0';
2175                         break;
2176                 }
2177
2178                 /* Find next opt */
2179                 s2 = strchr(s1, ',');
2180                 if (s2 == NULL) {
2181                         if (clear)
2182                                 *s1 = '\0';
2183                         break;
2184                 }
2185                 s2++;
2186                 if (clear)
2187                         memmove(s1, s2, strlen(s2) + 1);
2188                 else
2189                         s1 = s2;
2190         }
2191
2192         if (!devname) {
2193                 LCONSOLE_ERROR_MSG(0x164, "Can't find the device name "
2194                                    "(need mount option 'device=...')\n");
2195                 goto invalid;
2196         }
2197
2198         s1 = strstr(devname, ":/");
2199         if (s1) {
2200                 ++s1;
2201                 lmd->lmd_flags |= LMD_FLG_CLIENT;
2202                 /* Remove leading /s from fsname */
2203                 while (*++s1 == '/') ;
2204                 /* Freed in lustre_free_lsi */
2205                 OBD_ALLOC(lmd->lmd_profile, strlen(s1) + 8);
2206                 if (!lmd->lmd_profile)
2207                         RETURN(-ENOMEM);
2208                 sprintf(lmd->lmd_profile, "%s-client", s1);
2209         }
2210
2211         /* Freed in lustre_free_lsi */
2212         OBD_ALLOC(lmd->lmd_dev, strlen(devname) + 1);
2213         if (!lmd->lmd_dev)
2214                 RETURN(-ENOMEM);
2215         strcpy(lmd->lmd_dev, devname);
2216
2217         /* Save mount options */
2218         s1 = options + strlen(options) - 1;
2219         while (s1 >= options && (*s1 == ',' || *s1 == ' '))
2220                 *s1-- = 0;
2221         if (*options != 0) {
2222                 /* Freed in lustre_free_lsi */
2223                 OBD_ALLOC(lmd->lmd_opts, strlen(options) + 1);
2224                 if (!lmd->lmd_opts)
2225                         RETURN(-ENOMEM);
2226                 strcpy(lmd->lmd_opts, options);
2227         }
2228
2229         lmd_print(lmd);
2230         lmd->lmd_magic = LMD_MAGIC;
2231
2232         RETURN(rc);
2233
2234 invalid:
2235         CERROR("Bad mount options %s\n", options);
2236         RETURN(-EINVAL);
2237 }
2238
2239 struct lustre_mount_data2 {
2240         void *lmd2_data;
2241         struct vfsmount *lmd2_mnt;
2242 };
2243
2244 /** This is the entry point for the mount call into Lustre.
2245  * This is called when a server or client is mounted,
2246  * and this is where we start setting things up.
2247  * @param data Mount options (e.g. -o flock,abort_recov)
2248  */
2249 int lustre_fill_super(struct super_block *sb, void *data, int silent)
2250 {
2251         struct lustre_mount_data *lmd;
2252         struct lustre_mount_data2 *lmd2 = data;
2253         struct lustre_sb_info *lsi;
2254         int rc;
2255         ENTRY;
2256
2257         CDEBUG(D_MOUNT|D_VFSTRACE, "VFS Op: sb %p\n", sb);
2258
2259         lsi = lustre_init_lsi(sb);
2260         if (!lsi)
2261                 RETURN(-ENOMEM);
2262         lmd = lsi->lsi_lmd;
2263
2264         /*
2265          * Disable lockdep during mount, because mount locking patterns are
2266          * `special'.
2267          */
2268         cfs_lockdep_off();
2269
2270         /* Figure out the lmd from the mount options */
2271         if (lmd_parse((char *)(lmd2->lmd2_data), lmd)) {
2272                 lustre_put_lsi(sb);
2273                 GOTO(out, rc = -EINVAL);
2274         }
2275
2276         if (lmd_is_client(lmd)) {
2277                 CDEBUG(D_MOUNT, "Mounting client %s\n", lmd->lmd_profile);
2278                 if (!client_fill_super) {
2279                         LCONSOLE_ERROR_MSG(0x165, "Nothing registered for "
2280                                            "client mount! Is the 'lustre' "
2281                                            "module loaded?\n");
2282                         lustre_put_lsi(sb);
2283                         rc = -ENODEV;
2284                 } else {
2285                         rc = lustre_start_mgc(sb);
2286                         if (rc) {
2287                                 lustre_put_lsi(sb);
2288                                 GOTO(out, rc);
2289                         }
2290                         /* Connect and start */
2291                         /* (should always be ll_fill_super) */
2292                         rc = (*client_fill_super)(sb, lmd2->lmd2_mnt);
2293                         /* c_f_s will call lustre_common_put_super on failure */
2294                 }
2295         } else {
2296                 CDEBUG(D_MOUNT, "Mounting server from %s\n", lmd->lmd_dev);
2297                 lsi->lsi_flags |= LSI_SERVER;
2298                 rc = server_fill_super(sb);
2299                 /* s_f_s calls lustre_start_mgc after the mount because we need
2300                    the MGS nids which are stored on disk.  Plus, we may
2301                    need to start the MGS first. */
2302                 /* s_f_s will call server_put_super on failure */
2303         }
2304
2305         /* If error happens in fill_super() call, @lsi will be killed there.
2306          * This is why we do not put it here. */
2307         GOTO(out, rc);
2308 out:
2309         if (rc) {
2310                 CERROR("Unable to mount %s (%d)\n",
2311                        s2lsi(sb) ? lmd->lmd_dev : "", rc);
2312         } else {
2313                 CDEBUG(D_SUPER, "Mount %s complete\n",
2314                        lmd->lmd_dev);
2315         }
2316         cfs_lockdep_on();
2317         return rc;
2318 }
2319
2320
2321 /* We can't call ll_fill_super by name because it lives in a module that
2322    must be loaded after this one. */
2323 void lustre_register_client_fill_super(int (*cfs)(struct super_block *sb,
2324                                                   struct vfsmount *mnt))
2325 {
2326         client_fill_super = cfs;
2327 }
2328
2329 void lustre_register_kill_super_cb(void (*cfs)(struct super_block *sb))
2330 {
2331         kill_super_cb = cfs;
2332 }
2333
2334 /***************** FS registration ******************/
2335
2336 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18))
2337 struct super_block * lustre_get_sb(struct file_system_type *fs_type, int flags,
2338                                    const char *devname, void * data)
2339 {
2340         return get_sb_nodev(fs_type, flags, data, lustre_fill_super);
2341 }
2342 #else
2343 int lustre_get_sb(struct file_system_type *fs_type, int flags,
2344                   const char *devname, void * data, struct vfsmount *mnt)
2345 {
2346         struct lustre_mount_data2 lmd2 = {data, mnt};
2347
2348         return get_sb_nodev(fs_type, flags, &lmd2, lustre_fill_super, mnt);
2349 }
2350 #endif
2351
2352 void lustre_kill_super(struct super_block *sb)
2353 {
2354         struct lustre_sb_info *lsi = s2lsi(sb);
2355
2356         if (kill_super_cb && lsi && !(lsi->lsi_flags & LSI_SERVER))
2357                 (*kill_super_cb)(sb);
2358
2359         kill_anon_super(sb);
2360 }
2361
2362 /** Register the "lustre" fs type
2363  */
2364 struct file_system_type lustre_fs_type = {
2365         .owner        = THIS_MODULE,
2366         .name         = "lustre",
2367         .get_sb       = lustre_get_sb,
2368         .kill_sb      = lustre_kill_super,
2369         .fs_flags     = FS_BINARY_MOUNTDATA | FS_REQUIRES_DEV |
2370 #ifdef FS_HAS_FIEMAP
2371                         FS_HAS_FIEMAP |
2372 #endif
2373                         LL_RENAME_DOES_D_MOVE,
2374 };
2375
2376 int lustre_register_fs(void)
2377 {
2378         return register_filesystem(&lustre_fs_type);
2379 }
2380
2381 int lustre_unregister_fs(void)
2382 {
2383         return unregister_filesystem(&lustre_fs_type);
2384 }
2385
2386 EXPORT_SYMBOL(lustre_register_client_fill_super);
2387 EXPORT_SYMBOL(lustre_register_kill_super_cb);
2388 EXPORT_SYMBOL(lustre_common_put_super);
2389 EXPORT_SYMBOL(lustre_process_log);
2390 EXPORT_SYMBOL(lustre_end_log);
2391 EXPORT_SYMBOL(server_get_mount);
2392 EXPORT_SYMBOL(server_get_mount_2);
2393 EXPORT_SYMBOL(server_put_mount);
2394 EXPORT_SYMBOL(server_put_mount_2);
2395 EXPORT_SYMBOL(server_register_target);
2396 EXPORT_SYMBOL(server_name2index);
2397 EXPORT_SYMBOL(server_mti_print);
2398 EXPORT_SYMBOL(do_lcfg);