Whamcloud - gitweb
ORNL-10: Basic IR implementation
[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, 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                 /* log has been fully processed */
1299                 obd_notify(obd, NULL, OBD_NOTIFY_CONFIG, (void *)CONFIG_LOG);
1300
1301                 /* calculate recovery timeout, do it after lustre_process_log */
1302                 server_calc_timeout(lsi, obd);
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 rc;
1413         ENTRY;
1414
1415         OBD_ALLOC(ldd, sizeof(*ldd));
1416         if (!ldd)
1417                 RETURN(ERR_PTR(-ENOMEM));
1418
1419         /* In the past, we have always used flags = 0.
1420            Note ext3/ldiskfs can't be mounted ro. */
1421         s_flags = sb->s_flags;
1422
1423         /* allocate memory for options */
1424         OBD_PAGE_ALLOC(__page, CFS_ALLOC_STD);
1425         if (!__page)
1426                 GOTO(out_free, rc = -ENOMEM);
1427         page = (unsigned long)cfs_page_address(__page);
1428         options = (char *)page;
1429         memset(options, 0, CFS_PAGE_SIZE);
1430
1431         /* mount-line options must be added for pre-mount because it may
1432          * contain mount options such as journal_dev which are required
1433          * to mount successfuly the underlying filesystem */
1434         if (lmd->lmd_opts && (*(lmd->lmd_opts) != 0))
1435                 strncat(options, lmd->lmd_opts, CFS_PAGE_SIZE - 1);
1436
1437         /* Pre-mount ldiskfs to read the MOUNT_DATA_FILE */
1438         CDEBUG(D_MOUNT, "Pre-mount ldiskfs %s\n", lmd->lmd_dev);
1439         mnt = ll_kern_mount("ldiskfs", s_flags, lmd->lmd_dev, (void *)options);
1440         if (IS_ERR(mnt)) {
1441                 rc = PTR_ERR(mnt);
1442                 CERROR("premount %s:%#lx ldiskfs failed: %d "
1443                         "Is the ldiskfs module available?\n",
1444                         lmd->lmd_dev, s_flags, rc );
1445                 GOTO(out_free, rc);
1446         }
1447
1448         OBD_SET_CTXT_MAGIC(&mount_ctxt);
1449         mount_ctxt.pwdmnt = mnt;
1450         mount_ctxt.pwd = mnt->mnt_root;
1451         mount_ctxt.fs = get_ds();
1452
1453         rc = ldd_parse(&mount_ctxt, ldd);
1454         unlock_mntput(mnt);
1455
1456         if (rc) {
1457                 CERROR("premount parse options failed: rc = %d\n", rc);
1458                 GOTO(out_free, rc);
1459         }
1460
1461         /* Done with our pre-mount, now do the real mount. */
1462
1463         /* Glom up mount options */
1464         memset(options, 0, CFS_PAGE_SIZE);
1465         strncpy(options, ldd->ldd_mount_opts, CFS_PAGE_SIZE - 2);
1466
1467         /* Add in any mount-line options */
1468         if (lmd->lmd_opts && (*(lmd->lmd_opts) != 0)) {
1469                 int len = CFS_PAGE_SIZE - strlen(options) - 2;
1470                 if (*options != 0)
1471                         strcat(options, ",");
1472                 strncat(options, lmd->lmd_opts, len);
1473         }
1474
1475         /* Special permanent mount flags */
1476         if (IS_OST(ldd))
1477             s_flags |= MS_NOATIME | MS_NODIRATIME;
1478
1479         CDEBUG(D_MOUNT, "kern_mount: %s %s %s\n",
1480                MT_STR(ldd), lmd->lmd_dev, options);
1481         mnt = ll_kern_mount(MT_STR(ldd), s_flags, lmd->lmd_dev,
1482                             (void *)options);
1483         if (IS_ERR(mnt)) {
1484                 rc = PTR_ERR(mnt);
1485                 CERROR("ll_kern_mount failed: rc = %d\n", rc);
1486                 GOTO(out_free, rc);
1487         }
1488
1489         if (lmd->lmd_flags & LMD_FLG_ABORT_RECOV)
1490                 simple_truncate(mnt->mnt_sb->s_root, mnt, LAST_RCVD,
1491                                 LR_CLIENT_START);
1492
1493         OBD_PAGE_FREE(__page);
1494         lsi->lsi_ldd = ldd;   /* freed at lsi cleanup */
1495         CDEBUG(D_SUPER, "%s: mnt = %p\n", lmd->lmd_dev, mnt);
1496         RETURN(mnt);
1497
1498 out_free:
1499         if (__page)
1500                 OBD_PAGE_FREE(__page);
1501         OBD_FREE(ldd, sizeof(*ldd));
1502         lsi->lsi_ldd = NULL;
1503         RETURN(ERR_PTR(rc));
1504 }
1505
1506 /** Wait here forever until the mount refcount is 0 before completing umount,
1507  * else we risk dereferencing a null pointer.
1508  * LNET may take e.g. 165s before killing zombies.
1509  */
1510 static void server_wait_finished(struct vfsmount *mnt)
1511 {
1512        cfs_waitq_t             waitq;
1513        int                     rc, waited = 0;
1514        cfs_sigset_t            blocked;
1515
1516        cfs_waitq_init(&waitq);
1517
1518        while (atomic_read(&mnt->mnt_count) > 1) {
1519                if (waited && (waited % 30 == 0))
1520                        LCONSOLE_WARN("Mount still busy with %d refs after "
1521                                       "%d secs.\n",
1522                                       atomic_read(&mnt->mnt_count),
1523                                       waited);
1524                /* Cannot use l_event_wait() for an interruptible sleep. */
1525                waited += 3;
1526                blocked = cfs_block_sigsinv(sigmask(SIGKILL));
1527                cfs_waitq_wait_event_interruptible_timeout(
1528                        waitq,
1529                        (atomic_read(&mnt->mnt_count) == 1),
1530                        cfs_time_seconds(3),
1531                        rc);
1532                cfs_block_sigs(blocked);
1533                if (rc < 0) {
1534                        LCONSOLE_EMERG("Danger: interrupted umount %s with "
1535                                       "%d refs!\n", mnt->mnt_devname,
1536                                       atomic_read(&mnt->mnt_count));
1537                        break;
1538                }
1539
1540        }
1541 }
1542
1543 /** Start the shutdown of servers at umount.
1544  */
1545 static void server_put_super(struct super_block *sb)
1546 {
1547         struct lustre_sb_info *lsi = s2lsi(sb);
1548         struct obd_device     *obd;
1549         struct vfsmount       *mnt = lsi->lsi_srv_mnt;
1550         char *tmpname, *extraname = NULL;
1551         int tmpname_sz;
1552         int lddflags = lsi->lsi_ldd->ldd_flags;
1553         int lsiflags = lsi->lsi_flags;
1554         ENTRY;
1555
1556         LASSERT(lsiflags & LSI_SERVER);
1557
1558         tmpname_sz = strlen(lsi->lsi_ldd->ldd_svname) + 1;
1559         OBD_ALLOC(tmpname, tmpname_sz);
1560         memcpy(tmpname, lsi->lsi_ldd->ldd_svname, tmpname_sz);
1561         CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1562         if (IS_MDT(lsi->lsi_ldd) && (lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC))
1563                 snprintf(tmpname, tmpname_sz, "MGS");
1564
1565         /* Stop the target */
1566         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1567             (IS_MDT(lsi->lsi_ldd) || IS_OST(lsi->lsi_ldd))) {
1568                 struct lustre_profile *lprof = NULL;
1569
1570                 /* tell the mgc to drop the config log */
1571                 lustre_end_log(sb, lsi->lsi_ldd->ldd_svname, NULL);
1572
1573                 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1574                    If there are any setup/cleanup errors, save the lov
1575                    name for safety cleanup later. */
1576                 lprof = class_get_profile(lsi->lsi_ldd->ldd_svname);
1577                 if (lprof && lprof->lp_dt) {
1578                         OBD_ALLOC(extraname, strlen(lprof->lp_dt) + 1);
1579                         strcpy(extraname, lprof->lp_dt);
1580                 }
1581
1582                 obd = class_name2obd(lsi->lsi_ldd->ldd_svname);
1583                 if (obd) {
1584                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1585                         if (lsi->lsi_flags & LSI_UMOUNT_FAILOVER)
1586                                 obd->obd_fail = 1;
1587                         /* We can't seem to give an error return code
1588                          * to .put_super, so we better make sure we clean up! */
1589                         obd->obd_force = 1;
1590                         class_manual_cleanup(obd);
1591                 } else {
1592                         CERROR("no obd %s\n", lsi->lsi_ldd->ldd_svname);
1593                         server_deregister_mount(lsi->lsi_ldd->ldd_svname);
1594                 }
1595         }
1596
1597         /* If they wanted the mgs to stop separately from the mdt, they
1598            should have put it on a different device. */
1599         if (IS_MGS(lsi->lsi_ldd)) {
1600                 /* if MDS start with --nomgs, don't stop MGS then */
1601                 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS))
1602                         server_stop_mgs(sb);
1603         }
1604
1605         /* Clean the mgc and sb */
1606         lustre_common_put_super(sb);
1607
1608         /* Wait for the targets to really clean up - can't exit (and let the
1609            sb get destroyed) while the mount is still in use */
1610         server_wait_finished(mnt);
1611
1612         /* drop the One True Mount */
1613         unlock_mntput(mnt);
1614
1615         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1616            until the target is really gone so that our type refcount check
1617            is right. */
1618         server_stop_servers(lddflags, lsiflags);
1619
1620         /* In case of startup or cleanup err, stop related obds */
1621         if (extraname) {
1622                 obd = class_name2obd(extraname);
1623                 if (obd) {
1624                         CWARN("Cleaning orphaned obd %s\n", extraname);
1625                         obd->obd_force = 1;
1626                         class_manual_cleanup(obd);
1627                 }
1628                 OBD_FREE(extraname, strlen(extraname) + 1);
1629         }
1630
1631         LCONSOLE_WARN("server umount %s complete\n", tmpname);
1632         OBD_FREE(tmpname, tmpname_sz);
1633         EXIT;
1634 }
1635
1636 /** Called only for 'umount -f'
1637  */
1638 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1639 static void server_umount_begin(struct vfsmount *vfsmnt, int flags)
1640 {
1641         struct super_block *sb = vfsmnt->mnt_sb;
1642 #else
1643 static void server_umount_begin(struct super_block *sb)
1644 {
1645 #endif
1646         struct lustre_sb_info *lsi = s2lsi(sb);
1647         ENTRY;
1648
1649 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1650         if (!(flags & MNT_FORCE)) {
1651                 EXIT;
1652                 return;
1653         }
1654 #endif
1655
1656         CDEBUG(D_MOUNT, "umount -f\n");
1657         /* umount = failover
1658            umount -f = force
1659            no third way to do non-force, non-failover */
1660         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1661         lsi->lsi_flags |= LSI_UMOUNT_FORCE;
1662         EXIT;
1663 }
1664
1665 #ifndef HAVE_STATFS_DENTRY_PARAM
1666 static int server_statfs (struct super_block *sb, cfs_kstatfs_t *buf)
1667 {
1668 #else
1669 static int server_statfs (struct dentry *dentry, cfs_kstatfs_t *buf)
1670 {
1671         struct super_block *sb = dentry->d_sb;
1672 #endif
1673         struct vfsmount *mnt = s2lsi(sb)->lsi_srv_mnt;
1674         ENTRY;
1675
1676         if (mnt && mnt->mnt_sb && mnt->mnt_sb->s_op->statfs) {
1677 #ifdef HAVE_STATFS_DENTRY_PARAM
1678                 int rc = mnt->mnt_sb->s_op->statfs(mnt->mnt_root, buf);
1679 #else
1680                 int rc = mnt->mnt_sb->s_op->statfs(mnt->mnt_sb, buf);
1681 #endif
1682                 if (!rc) {
1683                         buf->f_type = sb->s_magic;
1684                         RETURN(0);
1685                 }
1686         }
1687
1688         /* just return 0 */
1689         buf->f_type = sb->s_magic;
1690         buf->f_bsize = sb->s_blocksize;
1691         buf->f_blocks = 1;
1692         buf->f_bfree = 0;
1693         buf->f_bavail = 0;
1694         buf->f_files = 1;
1695         buf->f_ffree = 0;
1696         buf->f_namelen = NAME_MAX;
1697         RETURN(0);
1698 }
1699
1700 /** The operations we support directly on the superblock:
1701  * mount, umount, and df.
1702  */
1703 static struct super_operations server_ops =
1704 {
1705         .put_super      = server_put_super,
1706         .umount_begin   = server_umount_begin, /* umount -f */
1707         .statfs         = server_statfs,
1708 };
1709
1710 #define log2(n) cfs_ffz(~(n))
1711 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1712
1713 static int server_fill_super_common(struct super_block *sb)
1714 {
1715         struct inode *root = 0;
1716         ENTRY;
1717
1718         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1719
1720         sb->s_blocksize = 4096;
1721         sb->s_blocksize_bits = log2(sb->s_blocksize);
1722         sb->s_magic = LUSTRE_SUPER_MAGIC;
1723         sb->s_maxbytes = 0; //PAGE_CACHE_MAXBYTES;
1724         sb->s_flags |= MS_RDONLY;
1725         sb->s_op = &server_ops;
1726
1727         root = new_inode(sb);
1728         if (!root) {
1729                 CERROR("Can't make root inode\n");
1730                 RETURN(-EIO);
1731         }
1732
1733         /* returns -EIO for every operation */
1734         /* make_bad_inode(root); -- badness - can't umount */
1735         /* apparently we need to be a directory for the mount to finish */
1736         root->i_mode = S_IFDIR;
1737
1738         sb->s_root = d_alloc_root(root);
1739         if (!sb->s_root) {
1740                 CERROR("Can't make root dentry\n");
1741                 iput(root);
1742                 RETURN(-EIO);
1743         }
1744
1745         RETURN(0);
1746 }
1747
1748 /** Fill in the superblock info for a Lustre server.
1749  * Mount the device with the correct options.
1750  * Read the on-disk config file.
1751  * Start the services.
1752  */
1753 static int server_fill_super(struct super_block *sb)
1754 {
1755         struct lustre_sb_info *lsi = s2lsi(sb);
1756         struct vfsmount *mnt;
1757         int rc;
1758         ENTRY;
1759
1760         /* the One True Mount */
1761         mnt = server_kernel_mount(sb);
1762         if (IS_ERR(mnt)) {
1763                 rc = PTR_ERR(mnt);
1764                 CERROR("Unable to mount device %s: %d\n",
1765                        lsi->lsi_lmd->lmd_dev, rc);
1766                 lustre_put_lsi(sb);
1767                 RETURN(rc);
1768         }
1769         lsi->lsi_srv_mnt = mnt;
1770
1771         LASSERT(lsi->lsi_ldd);
1772         CDEBUG(D_MOUNT, "Found service %s for fs '%s' on device %s\n",
1773                lsi->lsi_ldd->ldd_svname, lsi->lsi_ldd->ldd_fsname,
1774                lsi->lsi_lmd->lmd_dev);
1775
1776         if (class_name2obd(lsi->lsi_ldd->ldd_svname)) {
1777                 LCONSOLE_ERROR_MSG(0x161, "The target named %s is already "
1778                                    "running. Double-mount may have compromised"
1779                                    " the disk journal.\n",
1780                                    lsi->lsi_ldd->ldd_svname);
1781                 lustre_put_lsi(sb);
1782                 unlock_mntput(mnt);
1783                 RETURN(-EALREADY);
1784         }
1785
1786         /* Start MGS before MGC */
1787         if (IS_MGS(lsi->lsi_ldd) && !(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOMGS)){
1788                 rc = server_start_mgs(sb);
1789                 if (rc)
1790                         GOTO(out_mnt, rc);
1791         }
1792
1793         /* Start MGC before servers */
1794         rc = lustre_start_mgc(sb);
1795         if (rc)
1796                 GOTO(out_mnt, rc);
1797
1798         /* Set up all obd devices for service */
1799         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1800                 (IS_OST(lsi->lsi_ldd) || IS_MDT(lsi->lsi_ldd))) {
1801                 rc = server_start_targets(sb, mnt);
1802                 if (rc < 0) {
1803                         CERROR("Unable to start targets: %d\n", rc);
1804                         GOTO(out_mnt, rc);
1805                 }
1806         /* FIXME overmount client here,
1807            or can we just start a client log and client_fill_super on this sb?
1808            We need to make sure server_put_super gets called too - ll_put_super
1809            calls lustre_common_put_super; check there for LSI_SERVER flag,
1810            call s_p_s if so.
1811            Probably should start client from new thread so we can return.
1812            Client will not finish until all servers are connected.
1813            Note - MGS-only server does NOT get a client, since there is no
1814            lustre fs associated - the MGS is for all lustre fs's */
1815         }
1816
1817         rc = server_fill_super_common(sb);
1818         if (rc)
1819                 GOTO(out_mnt, rc);
1820
1821         RETURN(0);
1822 out_mnt:
1823         /* We jump here in case of failure while starting targets or MGS.
1824          * In this case we can't just put @mnt and have to do real cleanup
1825          * with stoping targets, etc. */
1826         server_put_super(sb);
1827         return rc;
1828 }
1829
1830 /* Get the index from the obd name.
1831    rc = server type, or
1832    rc < 0  on error
1833    if endptr isn't NULL it is set to end of name */
1834 int server_name2index(char *svname, __u32 *idx, char **endptr)
1835 {
1836         unsigned long index;
1837         int rc;
1838         char *dash = strrchr(svname, '-');
1839         if (!dash)
1840                 return(-EINVAL);
1841
1842         /* intepret <fsname>-MDTXXXXX-mdc as mdt, the better way is to pass
1843          * in the fsname, then determine the server index */
1844         if (!strcmp(LUSTRE_MDC_NAME, dash + 1)) {
1845                 dash--;
1846                 for (; dash > svname && *dash != '-'; dash--);
1847                 if (dash == svname)
1848                         return(-EINVAL);
1849         }
1850
1851         if (strncmp(dash + 1, "MDT", 3) == 0)
1852                 rc = LDD_F_SV_TYPE_MDT;
1853         else if (strncmp(dash + 1, "OST", 3) == 0)
1854                 rc = LDD_F_SV_TYPE_OST;
1855         else
1856                 return(-EINVAL);
1857         if (strcmp(dash + 4, "all") == 0)
1858                 return rc | LDD_F_SV_ALL;
1859
1860         index = simple_strtoul(dash + 4, endptr, 16);
1861         *idx = index;
1862         return rc;
1863 }
1864
1865 /*
1866  * Calculate timeout value for a target.
1867  */
1868 void server_calc_timeout(struct lustre_sb_info *lsi, struct obd_device *obd)
1869 {
1870         struct lustre_mount_data *lmd;
1871         int soft = 0;
1872         int hard = 0;
1873         int factor = 0;
1874         bool has_ir = !!(lsi->lsi_flags & LSI_IR_CAPABLE);
1875         int min = OBD_RECOVERY_TIME_MIN;
1876
1877         LASSERT(lsi->lsi_flags & LSI_SERVER);
1878
1879         lmd = lsi->lsi_lmd;
1880         if (lmd) {
1881                 soft   = lmd->lmd_recovery_time_soft;
1882                 hard   = lmd->lmd_recovery_time_hard;
1883                 has_ir = has_ir && !(lmd->lmd_flags & LMD_FLG_NOIR);
1884                 obd->obd_no_ir = !has_ir;
1885         }
1886
1887         if (soft == 0)
1888                 soft = OBD_RECOVERY_TIME_SOFT;
1889         if (hard == 0)
1890                 hard = OBD_RECOVERY_TIME_HARD;
1891
1892         /* target may have ir_factor configured. */
1893         factor = OBD_IR_FACTOR_DEFAULT;
1894         if (obd->obd_recovery_ir_factor)
1895                 factor = obd->obd_recovery_ir_factor;
1896
1897         if (has_ir) {
1898                 int new_soft = soft;
1899                 int new_hard = hard;
1900
1901                 /* adjust timeout value by imperative recovery */
1902
1903                 new_soft = (soft * factor) / OBD_IR_FACTOR_MAX;
1904                 new_hard = (hard * factor) / OBD_IR_FACTOR_MAX;
1905
1906                 /* make sure the timeout is not too short */
1907                 new_soft = max(min, new_soft);
1908                 new_hard = max(new_soft, new_hard);
1909
1910                 LCONSOLE_INFO("%s: Imperative Recovery enabled, recovery "
1911                               "window shrunk from %d-%d down to %d-%d\n",
1912                               obd->obd_name, soft, hard, new_soft, new_hard);
1913
1914                 soft = new_soft;
1915                 hard = new_hard;
1916         }
1917
1918         /* we're done */
1919         obd->obd_recovery_timeout   = soft;
1920         obd->obd_recovery_time_hard = hard;
1921         obd->obd_recovery_ir_factor = factor;
1922 }
1923 EXPORT_SYMBOL(server_calc_timeout);
1924
1925 /*************** mount common betweeen server and client ***************/
1926
1927 /* Common umount */
1928 int lustre_common_put_super(struct super_block *sb)
1929 {
1930         int rc;
1931         ENTRY;
1932
1933         CDEBUG(D_MOUNT, "dropping sb %p\n", sb);
1934
1935         /* Drop a ref to the MGC */
1936         rc = lustre_stop_mgc(sb);
1937         if (rc && (rc != -ENOENT)) {
1938                 if (rc != -EBUSY) {
1939                         CERROR("Can't stop MGC: %d\n", rc);
1940                         RETURN(rc);
1941                 }
1942                 /* BUSY just means that there's some other obd that
1943                    needs the mgc.  Let him clean it up. */
1944                 CDEBUG(D_MOUNT, "MGC still in use\n");
1945         }
1946         /* Drop a ref to the mounted disk */
1947         lustre_put_lsi(sb);
1948         lu_types_stop();
1949         RETURN(rc);
1950 }
1951
1952 static void lmd_print(struct lustre_mount_data *lmd)
1953 {
1954         int i;
1955
1956         PRINT_CMD(PRINT_MASK, "  mount data:\n");
1957         if (lmd_is_client(lmd))
1958                 PRINT_CMD(PRINT_MASK, "profile: %s\n", lmd->lmd_profile);
1959         PRINT_CMD(PRINT_MASK, "device:  %s\n", lmd->lmd_dev);
1960         PRINT_CMD(PRINT_MASK, "flags:   %x\n", lmd->lmd_flags);
1961
1962         if (lmd->lmd_opts)
1963                 PRINT_CMD(PRINT_MASK, "options: %s\n", lmd->lmd_opts);
1964
1965         if (lmd->lmd_recovery_time_soft)
1966                 PRINT_CMD(PRINT_MASK, "recovery time soft: %d\n",
1967                           lmd->lmd_recovery_time_soft);
1968
1969         if (lmd->lmd_recovery_time_hard)
1970                 PRINT_CMD(PRINT_MASK, "recovery time hard: %d\n",
1971                           lmd->lmd_recovery_time_hard);
1972
1973         for (i = 0; i < lmd->lmd_exclude_count; i++) {
1974                 PRINT_CMD(PRINT_MASK, "exclude %d:  OST%04x\n", i,
1975                           lmd->lmd_exclude[i]);
1976         }
1977 }
1978
1979 /* Is this server on the exclusion list */
1980 int lustre_check_exclusion(struct super_block *sb, char *svname)
1981 {
1982         struct lustre_sb_info *lsi = s2lsi(sb);
1983         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1984         __u32 index;
1985         int i, rc;
1986         ENTRY;
1987
1988         rc = server_name2index(svname, &index, NULL);
1989         if (rc != LDD_F_SV_TYPE_OST)
1990                 /* Only exclude OSTs */
1991                 RETURN(0);
1992
1993         CDEBUG(D_MOUNT, "Check exclusion %s (%d) in %d of %s\n", svname,
1994                index, lmd->lmd_exclude_count, lmd->lmd_dev);
1995
1996         for(i = 0; i < lmd->lmd_exclude_count; i++) {
1997                 if (index == lmd->lmd_exclude[i]) {
1998                         CWARN("Excluding %s (on exclusion list)\n", svname);
1999                         RETURN(1);
2000                 }
2001         }
2002         RETURN(0);
2003 }
2004
2005 /* mount -v  -o exclude=lustre-OST0001:lustre-OST0002 -t lustre ... */
2006 static int lmd_make_exclusion(struct lustre_mount_data *lmd, char *ptr)
2007 {
2008         char *s1 = ptr, *s2;
2009         __u32 index, *exclude_list;
2010         int rc = 0, devmax;
2011         ENTRY;
2012
2013         /* The shortest an ost name can be is 8 chars: -OST0000.
2014            We don't actually know the fsname at this time, so in fact
2015            a user could specify any fsname. */
2016         devmax = strlen(ptr) / 8 + 1;
2017
2018         /* temp storage until we figure out how many we have */
2019         OBD_ALLOC(exclude_list, sizeof(index) * devmax);
2020         if (!exclude_list)
2021                 RETURN(-ENOMEM);
2022
2023         /* we enter this fn pointing at the '=' */
2024         while (*s1 && *s1 != ' ' && *s1 != ',') {
2025                 s1++;
2026                 rc = server_name2index(s1, &index, &s2);
2027                 if (rc < 0) {
2028                         CERROR("Can't parse server name '%s'\n", s1);
2029                         break;
2030                 }
2031                 if (rc == LDD_F_SV_TYPE_OST)
2032                         exclude_list[lmd->lmd_exclude_count++] = index;
2033                 else
2034                         CDEBUG(D_MOUNT, "ignoring exclude %.7s\n", s1);
2035                 s1 = s2;
2036                 /* now we are pointing at ':' (next exclude)
2037                    or ',' (end of excludes) */
2038                 if (lmd->lmd_exclude_count >= devmax)
2039                         break;
2040         }
2041         if (rc >= 0) /* non-err */
2042                 rc = 0;
2043
2044         if (lmd->lmd_exclude_count) {
2045                 /* permanent, freed in lustre_free_lsi */
2046                 OBD_ALLOC(lmd->lmd_exclude, sizeof(index) *
2047                           lmd->lmd_exclude_count);
2048                 if (lmd->lmd_exclude) {
2049                         memcpy(lmd->lmd_exclude, exclude_list,
2050                                sizeof(index) * lmd->lmd_exclude_count);
2051                 } else {
2052                         rc = -ENOMEM;
2053                         lmd->lmd_exclude_count = 0;
2054                 }
2055         }
2056         OBD_FREE(exclude_list, sizeof(index) * devmax);
2057         RETURN(rc);
2058 }
2059
2060 static int lmd_parse_mgssec(struct lustre_mount_data *lmd, char *ptr)
2061 {
2062         char   *tail;
2063         int     length;
2064
2065         if (lmd->lmd_mgssec != NULL) {
2066                 OBD_FREE(lmd->lmd_mgssec, strlen(lmd->lmd_mgssec) + 1);
2067                 lmd->lmd_mgssec = NULL;
2068         }
2069
2070         tail = strchr(ptr, ',');
2071         if (tail == NULL)
2072                 length = strlen(ptr);
2073         else
2074                 length = tail - ptr;
2075
2076         OBD_ALLOC(lmd->lmd_mgssec, length + 1);
2077         if (lmd->lmd_mgssec == NULL)
2078                 return -ENOMEM;
2079
2080         memcpy(lmd->lmd_mgssec, ptr, length);
2081         lmd->lmd_mgssec[length] = '\0';
2082         return 0;
2083 }
2084
2085 /** Parse mount line options
2086  * e.g. mount -v -t lustre -o abort_recov uml1:uml2:/lustre-client /mnt/lustre
2087  * dev is passed as device=uml1:/lustre by mount.lustre
2088  */
2089 static int lmd_parse(char *options, struct lustre_mount_data *lmd)
2090 {
2091         char *s1, *s2, *devname = NULL;
2092         struct lustre_mount_data *raw = (struct lustre_mount_data *)options;
2093         int rc = 0;
2094         ENTRY;
2095
2096         LASSERT(lmd);
2097         if (!options) {
2098                 LCONSOLE_ERROR_MSG(0x162, "Missing mount data: check that "
2099                                    "/sbin/mount.lustre is installed.\n");
2100                 RETURN(-EINVAL);
2101         }
2102
2103         /* Options should be a string - try to detect old lmd data */
2104         if ((raw->lmd_magic & 0xffffff00) == (LMD_MAGIC & 0xffffff00)) {
2105                 LCONSOLE_ERROR_MSG(0x163, "You're using an old version of "
2106                                    "/sbin/mount.lustre.  Please install "
2107                                    "version %s\n", LUSTRE_VERSION_STRING);
2108                 RETURN(-EINVAL);
2109         }
2110         lmd->lmd_magic = LMD_MAGIC;
2111
2112         /* Set default flags here */
2113
2114         s1 = options;
2115         while (*s1) {
2116                 int clear = 0;
2117                 int time_min = OBD_RECOVERY_TIME_MIN;
2118
2119                 /* Skip whitespace and extra commas */
2120                 while (*s1 == ' ' || *s1 == ',')
2121                         s1++;
2122
2123                 /* Client options are parsed in ll_options: eg. flock,
2124                    user_xattr, acl */
2125
2126                 /* Parse non-ldiskfs options here. Rather than modifying
2127                    ldiskfs, we just zero these out here */
2128                 if (strncmp(s1, "abort_recov", 11) == 0) {
2129                         lmd->lmd_flags |= LMD_FLG_ABORT_RECOV;
2130                         clear++;
2131                 } else if (strncmp(s1, "recovery_time_soft=", 19) == 0) {
2132                         lmd->lmd_recovery_time_soft = max_t(int,
2133                                 simple_strtoul(s1 + 19, NULL, 10), time_min);
2134                         clear++;
2135                 } else if (strncmp(s1, "recovery_time_hard=", 19) == 0) {
2136                         lmd->lmd_recovery_time_hard = max_t(int,
2137                                 simple_strtoul(s1 + 19, NULL, 10), time_min);
2138                         clear++;
2139                 } else if (strncmp(s1, "noir", 4) == 0) {
2140                         lmd->lmd_flags |= LMD_FLG_NOIR; /* test purpose only. */
2141                         clear++;
2142                 } else if (strncmp(s1, "nosvc", 5) == 0) {
2143                         lmd->lmd_flags |= LMD_FLG_NOSVC;
2144                         clear++;
2145                 } else if (strncmp(s1, "nomgs", 5) == 0) {
2146                         lmd->lmd_flags |= LMD_FLG_NOMGS;
2147                         clear++;
2148                 } else if (strncmp(s1, "writeconf", 9) == 0) {
2149                         lmd->lmd_flags |= LMD_FLG_WRITECONF;
2150                         clear++;
2151                 } else if (strncmp(s1, "mgssec=", 7) == 0) {
2152                         rc = lmd_parse_mgssec(lmd, s1 + 7);
2153                         if (rc)
2154                                 goto invalid;
2155                         clear++;
2156                 /* ost exclusion list */
2157                 } else if (strncmp(s1, "exclude=", 8) == 0) {
2158                         rc = lmd_make_exclusion(lmd, s1 + 7);
2159                         if (rc)
2160                                 goto invalid;
2161                         clear++;
2162                 }
2163                 /* Linux 2.4 doesn't pass the device, so we stuck it at the
2164                    end of the options. */
2165                 else if (strncmp(s1, "device=", 7) == 0) {
2166                         devname = s1 + 7;
2167                         /* terminate options right before device.  device
2168                            must be the last one. */
2169                         *s1 = '\0';
2170                         break;
2171                 }
2172
2173                 /* Find next opt */
2174                 s2 = strchr(s1, ',');
2175                 if (s2 == NULL) {
2176                         if (clear)
2177                                 *s1 = '\0';
2178                         break;
2179                 }
2180                 s2++;
2181                 if (clear)
2182                         memmove(s1, s2, strlen(s2) + 1);
2183                 else
2184                         s1 = s2;
2185         }
2186
2187         if (!devname) {
2188                 LCONSOLE_ERROR_MSG(0x164, "Can't find the device name "
2189                                    "(need mount option 'device=...')\n");
2190                 goto invalid;
2191         }
2192
2193         s1 = strstr(devname, ":/");
2194         if (s1) {
2195                 ++s1;
2196                 lmd->lmd_flags |= LMD_FLG_CLIENT;
2197                 /* Remove leading /s from fsname */
2198                 while (*++s1 == '/') ;
2199                 /* Freed in lustre_free_lsi */
2200                 OBD_ALLOC(lmd->lmd_profile, strlen(s1) + 8);
2201                 if (!lmd->lmd_profile)
2202                         RETURN(-ENOMEM);
2203                 sprintf(lmd->lmd_profile, "%s-client", s1);
2204         }
2205
2206         /* Freed in lustre_free_lsi */
2207         OBD_ALLOC(lmd->lmd_dev, strlen(devname) + 1);
2208         if (!lmd->lmd_dev)
2209                 RETURN(-ENOMEM);
2210         strcpy(lmd->lmd_dev, devname);
2211
2212         /* Save mount options */
2213         s1 = options + strlen(options) - 1;
2214         while (s1 >= options && (*s1 == ',' || *s1 == ' '))
2215                 *s1-- = 0;
2216         if (*options != 0) {
2217                 /* Freed in lustre_free_lsi */
2218                 OBD_ALLOC(lmd->lmd_opts, strlen(options) + 1);
2219                 if (!lmd->lmd_opts)
2220                         RETURN(-ENOMEM);
2221                 strcpy(lmd->lmd_opts, options);
2222         }
2223
2224         lmd_print(lmd);
2225         lmd->lmd_magic = LMD_MAGIC;
2226
2227         RETURN(rc);
2228
2229 invalid:
2230         CERROR("Bad mount options %s\n", options);
2231         RETURN(-EINVAL);
2232 }
2233
2234 struct lustre_mount_data2 {
2235         void *lmd2_data;
2236         struct vfsmount *lmd2_mnt;
2237 };
2238
2239 /** This is the entry point for the mount call into Lustre.
2240  * This is called when a server or client is mounted,
2241  * and this is where we start setting things up.
2242  * @param data Mount options (e.g. -o flock,abort_recov)
2243  */
2244 int lustre_fill_super(struct super_block *sb, void *data, int silent)
2245 {
2246         struct lustre_mount_data *lmd;
2247         struct lustre_mount_data2 *lmd2 = data;
2248         struct lustre_sb_info *lsi;
2249         int rc;
2250         ENTRY;
2251
2252         CDEBUG(D_MOUNT|D_VFSTRACE, "VFS Op: sb %p\n", sb);
2253
2254         lsi = lustre_init_lsi(sb);
2255         if (!lsi)
2256                 RETURN(-ENOMEM);
2257         lmd = lsi->lsi_lmd;
2258
2259         /*
2260          * Disable lockdep during mount, because mount locking patterns are
2261          * `special'.
2262          */
2263         cfs_lockdep_off();
2264
2265         /* Figure out the lmd from the mount options */
2266         if (lmd_parse((char *)(lmd2->lmd2_data), lmd)) {
2267                 lustre_put_lsi(sb);
2268                 GOTO(out, rc = -EINVAL);
2269         }
2270
2271         if (lmd_is_client(lmd)) {
2272                 CDEBUG(D_MOUNT, "Mounting client %s\n", lmd->lmd_profile);
2273                 if (!client_fill_super) {
2274                         LCONSOLE_ERROR_MSG(0x165, "Nothing registered for "
2275                                            "client mount! Is the 'lustre' "
2276                                            "module loaded?\n");
2277                         lustre_put_lsi(sb);
2278                         rc = -ENODEV;
2279                 } else {
2280                         rc = lustre_start_mgc(sb);
2281                         if (rc) {
2282                                 lustre_put_lsi(sb);
2283                                 GOTO(out, rc);
2284                         }
2285                         /* Connect and start */
2286                         /* (should always be ll_fill_super) */
2287                         rc = (*client_fill_super)(sb, lmd2->lmd2_mnt);
2288                         /* c_f_s will call lustre_common_put_super on failure */
2289                 }
2290         } else {
2291                 CDEBUG(D_MOUNT, "Mounting server from %s\n", lmd->lmd_dev);
2292                 lsi->lsi_flags |= LSI_SERVER;
2293                 rc = server_fill_super(sb);
2294                 /* s_f_s calls lustre_start_mgc after the mount because we need
2295                    the MGS nids which are stored on disk.  Plus, we may
2296                    need to start the MGS first. */
2297                 /* s_f_s will call server_put_super on failure */
2298         }
2299
2300         /* If error happens in fill_super() call, @lsi will be killed there.
2301          * This is why we do not put it here. */
2302         GOTO(out, rc);
2303 out:
2304         if (rc) {
2305                 CERROR("Unable to mount %s (%d)\n",
2306                        s2lsi(sb) ? lmd->lmd_dev : "", rc);
2307         } else {
2308                 CDEBUG(D_SUPER, "Mount %s complete\n",
2309                        lmd->lmd_dev);
2310         }
2311         cfs_lockdep_on();
2312         return rc;
2313 }
2314
2315
2316 /* We can't call ll_fill_super by name because it lives in a module that
2317    must be loaded after this one. */
2318 void lustre_register_client_fill_super(int (*cfs)(struct super_block *sb,
2319                                                   struct vfsmount *mnt))
2320 {
2321         client_fill_super = cfs;
2322 }
2323
2324 void lustre_register_kill_super_cb(void (*cfs)(struct super_block *sb))
2325 {
2326         kill_super_cb = cfs;
2327 }
2328
2329 /***************** FS registration ******************/
2330
2331 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18))
2332 struct super_block * lustre_get_sb(struct file_system_type *fs_type, int flags,
2333                                    const char *devname, void * data)
2334 {
2335         return get_sb_nodev(fs_type, flags, data, lustre_fill_super);
2336 }
2337 #else
2338 int lustre_get_sb(struct file_system_type *fs_type, int flags,
2339                   const char *devname, void * data, struct vfsmount *mnt)
2340 {
2341         struct lustre_mount_data2 lmd2 = {data, mnt};
2342
2343         return get_sb_nodev(fs_type, flags, &lmd2, lustre_fill_super, mnt);
2344 }
2345 #endif
2346
2347 void lustre_kill_super(struct super_block *sb)
2348 {
2349         struct lustre_sb_info *lsi = s2lsi(sb);
2350
2351         if (kill_super_cb && lsi && !(lsi->lsi_flags & LSI_SERVER))
2352                 (*kill_super_cb)(sb);
2353
2354         kill_anon_super(sb);
2355 }
2356
2357 /** Register the "lustre" fs type
2358  */
2359 struct file_system_type lustre_fs_type = {
2360         .owner        = THIS_MODULE,
2361         .name         = "lustre",
2362         .get_sb       = lustre_get_sb,
2363         .kill_sb      = lustre_kill_super,
2364         .fs_flags     = FS_BINARY_MOUNTDATA | FS_REQUIRES_DEV |
2365 #ifdef FS_HAS_FIEMAP
2366                         FS_HAS_FIEMAP |
2367 #endif
2368                         LL_RENAME_DOES_D_MOVE,
2369 };
2370
2371 int lustre_register_fs(void)
2372 {
2373         return register_filesystem(&lustre_fs_type);
2374 }
2375
2376 int lustre_unregister_fs(void)
2377 {
2378         return unregister_filesystem(&lustre_fs_type);
2379 }
2380
2381 EXPORT_SYMBOL(lustre_register_client_fill_super);
2382 EXPORT_SYMBOL(lustre_register_kill_super_cb);
2383 EXPORT_SYMBOL(lustre_common_put_super);
2384 EXPORT_SYMBOL(lustre_process_log);
2385 EXPORT_SYMBOL(lustre_end_log);
2386 EXPORT_SYMBOL(server_get_mount);
2387 EXPORT_SYMBOL(server_get_mount_2);
2388 EXPORT_SYMBOL(server_put_mount);
2389 EXPORT_SYMBOL(server_put_mount_2);
2390 EXPORT_SYMBOL(server_register_target);
2391 EXPORT_SYMBOL(server_name2index);
2392 EXPORT_SYMBOL(server_mti_print);
2393 EXPORT_SYMBOL(do_lcfg);