Whamcloud - gitweb
b=11778
[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  *  lustre/obdclass/obd_mount.c
5  *  Client/server mount routines
6  *
7  *  Copyright (c) 2006 Cluster File Systems, Inc.
8  *   Author: Nathan Rutman <nathan@clusterfs.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org/
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26
27 #define DEBUG_SUBSYSTEM S_CLASS
28 #define D_MOUNT D_SUPER|D_CONFIG /*|D_WARNING */
29 #define PRINT_CMD CDEBUG
30 #define PRINT_MASK D_SUPER|D_CONFIG
31
32 #include <obd.h>
33 #include <lvfs.h>
34 #include <lustre_fsfilt.h>
35 #include <obd_class.h>
36 #include <lustre/lustre_user.h>
37 #include <linux/version.h>
38 #include <lustre_log.h>
39 #include <lustre_disk.h>
40 #include <lustre_param.h>
41
42 static int (*client_fill_super)(struct super_block *sb) = NULL;
43
44 /*********** mount lookup *********/
45
46 DECLARE_MUTEX(lustre_mount_info_lock);
47 struct list_head server_mount_info_list = LIST_HEAD_INIT(server_mount_info_list);
48
49 static struct lustre_mount_info *server_find_mount(char *name)
50 {
51         struct list_head *tmp;
52         struct lustre_mount_info *lmi;
53         ENTRY;
54
55         list_for_each(tmp, &server_mount_info_list) {
56                 lmi = list_entry(tmp, struct lustre_mount_info, lmi_list_chain);
57                 if (strcmp(name, lmi->lmi_name) == 0)
58                         RETURN(lmi);
59         }
60         RETURN(NULL);
61 }
62
63 /* we must register an obd for a mount before we call the setup routine.
64    *_setup will call lustre_get_mount to get the mnt struct
65    by obd_name, since we can't pass the pointer to setup. */
66 static int server_register_mount(char *name, struct super_block *sb,
67                           struct vfsmount *mnt)
68 {
69         struct lustre_mount_info *lmi;
70         char *name_cp;
71         ENTRY;
72
73         LASSERT(mnt);
74         LASSERT(sb);
75
76         OBD_ALLOC(lmi, sizeof(*lmi));
77         if (!lmi)
78                 RETURN(-ENOMEM);
79         OBD_ALLOC(name_cp, strlen(name) + 1);
80         if (!name_cp) {
81                 OBD_FREE(lmi, sizeof(*lmi));
82                 RETURN(-ENOMEM);
83         }
84         strcpy(name_cp, name);
85
86         down(&lustre_mount_info_lock);
87
88         if (server_find_mount(name)) {
89                 up(&lustre_mount_info_lock);
90                 OBD_FREE(lmi, sizeof(*lmi));
91                 OBD_FREE(name_cp, strlen(name) + 1);
92                 CERROR("Already registered %s\n", name);
93                 RETURN(-EEXIST);
94         }
95         lmi->lmi_name = name_cp;
96         lmi->lmi_sb = sb;
97         lmi->lmi_mnt = mnt;
98         list_add(&lmi->lmi_list_chain, &server_mount_info_list);
99
100         up(&lustre_mount_info_lock);
101
102         CDEBUG(D_MOUNT, "reg_mnt %p from %s, vfscount=%d\n",
103                lmi->lmi_mnt, name, atomic_read(&lmi->lmi_mnt->mnt_count));
104
105         RETURN(0);
106 }
107
108 /* when an obd no longer needs a mount */
109 static int server_deregister_mount(char *name)
110 {
111         struct lustre_mount_info *lmi;
112         ENTRY;
113
114         down(&lustre_mount_info_lock);
115         lmi = server_find_mount(name);
116         if (!lmi) {
117                 up(&lustre_mount_info_lock);
118                 CERROR("%s not registered\n", name);
119                 RETURN(-ENOENT);
120         }
121
122         CDEBUG(D_MOUNT, "dereg_mnt %p from %s, vfscount=%d\n",
123                lmi->lmi_mnt, name, atomic_read(&lmi->lmi_mnt->mnt_count));
124
125         OBD_FREE(lmi->lmi_name, strlen(lmi->lmi_name) + 1);
126         list_del(&lmi->lmi_list_chain);
127         OBD_FREE(lmi, sizeof(*lmi));
128         up(&lustre_mount_info_lock);
129
130         RETURN(0);
131 }
132
133 /* obd's look up a registered mount using their obdname. This is just
134    for initial obd setup to find the mount struct.  It should not be
135    called every time you want to mntget. */
136 struct lustre_mount_info *server_get_mount(char *name)
137 {
138         struct lustre_mount_info *lmi;
139         struct lustre_sb_info *lsi;
140         ENTRY;
141
142         down(&lustre_mount_info_lock);
143         lmi = server_find_mount(name);
144         up(&lustre_mount_info_lock);
145         if (!lmi) {
146                 CERROR("Can't find mount for %s\n", name);
147                 RETURN(NULL);
148         }
149         lsi = s2lsi(lmi->lmi_sb);
150         mntget(lmi->lmi_mnt);
151         atomic_inc(&lsi->lsi_mounts);
152
153         CDEBUG(D_MOUNT, "get_mnt %p from %s, refs=%d, vfscount=%d\n",
154                lmi->lmi_mnt, name, atomic_read(&lsi->lsi_mounts),
155                atomic_read(&lmi->lmi_mnt->mnt_count));
156
157         RETURN(lmi);
158 }
159
160 static void unlock_mntput(struct vfsmount *mnt)
161 {
162         if (kernel_locked()) {
163                 unlock_kernel();
164                 mntput(mnt);
165                 lock_kernel();
166         } else {
167                 mntput(mnt);
168         }
169 }
170
171 static int lustre_put_lsi(struct super_block *sb);
172
173 /* to be called from obd_cleanup methods */
174 int server_put_mount(char *name, struct vfsmount *mnt)
175 {
176         struct lustre_mount_info *lmi;
177         struct lustre_sb_info *lsi;
178         int count = atomic_read(&mnt->mnt_count) - 1;
179         ENTRY;
180
181         /* This might be the last one, can't deref after this */
182         unlock_mntput(mnt);
183         
184         down(&lustre_mount_info_lock);
185         lmi = server_find_mount(name);
186         up(&lustre_mount_info_lock);
187         if (!lmi) {
188                 CERROR("Can't find mount for %s\n", name);
189                 RETURN(-ENOENT);
190         }
191         lsi = s2lsi(lmi->lmi_sb);
192         LASSERT(lmi->lmi_mnt == mnt);
193
194         CDEBUG(D_MOUNT, "put_mnt %p from %s, refs=%d, vfscount=%d\n",
195                lmi->lmi_mnt, name, atomic_read(&lsi->lsi_mounts), count);
196
197         if (lustre_put_lsi(lmi->lmi_sb)) {
198                 CDEBUG(D_MOUNT, "Last put of mnt %p from %s, vfscount=%d\n",
199                        lmi->lmi_mnt, name, count);
200                 /* last mount is the One True Mount */
201                 if (count > 1)
202                         CERROR("%s: mount busy, vfscount=%d!\n", name, count);
203         }
204
205         /* this obd should never need the mount again */
206         server_deregister_mount(name);
207
208         RETURN(0);
209 }
210
211
212 /******* mount helper utilities *********/
213
214 static void ldd_print(struct lustre_disk_data *ldd)
215 {
216         PRINT_CMD(PRINT_MASK, "  disk data:\n");
217         PRINT_CMD(PRINT_MASK, "server:  %s\n", ldd->ldd_svname);
218         PRINT_CMD(PRINT_MASK, "uuid:    %s\n", (char *)ldd->ldd_uuid);
219         PRINT_CMD(PRINT_MASK, "fs:      %s\n", ldd->ldd_fsname);
220         PRINT_CMD(PRINT_MASK, "index:   %04x\n", ldd->ldd_svindex);
221         PRINT_CMD(PRINT_MASK, "config:  %d\n", ldd->ldd_config_ver);
222         PRINT_CMD(PRINT_MASK, "flags:   %#x\n", ldd->ldd_flags);
223         PRINT_CMD(PRINT_MASK, "diskfs:  %s\n", MT_STR(ldd));
224         PRINT_CMD(PRINT_MASK, "options: %s\n", ldd->ldd_mount_opts);
225         PRINT_CMD(PRINT_MASK, "params:  %s\n", ldd->ldd_params);
226         PRINT_CMD(PRINT_MASK, "comment: %s\n", ldd->ldd_userdata);
227 }
228
229 static int ldd_parse(struct lvfs_run_ctxt *mount_ctxt,
230                            struct lustre_disk_data *ldd)
231 {
232         struct lvfs_run_ctxt saved;
233         struct file *file;
234         loff_t off = 0;
235         unsigned long len;
236         int rc;
237         ENTRY;
238
239         push_ctxt(&saved, mount_ctxt, NULL);
240
241         file = filp_open(MOUNT_DATA_FILE, O_RDONLY, 0644);
242         if (IS_ERR(file)) {
243                 rc = PTR_ERR(file);
244                 CERROR("cannot open %s: rc = %d\n", MOUNT_DATA_FILE, rc);
245                 GOTO(out, rc);
246         }
247
248         len = file->f_dentry->d_inode->i_size;
249         CDEBUG(D_MOUNT, "Have %s, size %lu\n", MOUNT_DATA_FILE, len);
250         if (len != sizeof(*ldd)) {
251                 CERROR("disk data size does not match: see %lu expect "LPSZ"\n",
252                        len, sizeof(*ldd));
253                 GOTO(out_close, rc = -EINVAL);
254         }
255
256         rc = lustre_fread(file, ldd, len, &off);
257         if (rc != len) {
258                 CERROR("error reading %s: read %d of %lu\n",
259                        MOUNT_DATA_FILE, rc, len);
260                 GOTO(out_close, rc = -EINVAL);
261         }
262         rc = 0;
263
264         if (ldd->ldd_magic != LDD_MAGIC) {
265                 /* FIXME add swabbing support */
266                 CERROR("Bad magic in %s: %x!=%x\n", MOUNT_DATA_FILE,
267                        ldd->ldd_magic, LDD_MAGIC);
268                 GOTO(out_close, rc = -EINVAL);
269         }
270
271         if (ldd->ldd_feature_incompat & ~LDD_INCOMPAT_SUPP) {
272                 CERROR("%s: unsupported incompat filesystem feature(s) %x\n",
273                        ldd->ldd_svname,
274                        ldd->ldd_feature_incompat & ~LDD_INCOMPAT_SUPP);
275                 GOTO(out_close, rc = -EINVAL);
276         }
277         if (ldd->ldd_feature_rocompat & ~LDD_ROCOMPAT_SUPP) {
278                 CERROR("%s: unsupported read-only filesystem feature(s) %x\n",
279                        ldd->ldd_svname,
280                        ldd->ldd_feature_rocompat & ~LDD_ROCOMPAT_SUPP);
281                 /* Do something like remount filesystem read-only */
282                 GOTO(out_close, rc = -EINVAL);
283         }
284
285         ldd_print(ldd);
286
287 out_close:
288         filp_close(file, 0);
289 out:
290         pop_ctxt(&saved, mount_ctxt, NULL);
291         RETURN(rc);
292 }
293
294 static int ldd_write(struct lvfs_run_ctxt *mount_ctxt,
295                      struct lustre_disk_data *ldd)
296 {
297         struct lvfs_run_ctxt saved;
298         struct file *file;
299         loff_t off = 0;
300         unsigned long len = sizeof(struct lustre_disk_data);
301         int rc = 0;
302         ENTRY;
303
304         LASSERT(ldd->ldd_magic == LDD_MAGIC);
305
306         ldd->ldd_config_ver++;
307
308         push_ctxt(&saved, mount_ctxt, NULL);
309
310         file = filp_open(MOUNT_DATA_FILE, O_RDWR, 0644);
311         if (IS_ERR(file)) {
312                 rc = PTR_ERR(file);
313                 CERROR("cannot open %s: rc = %d\n", MOUNT_DATA_FILE, rc);
314                 GOTO(out, rc);
315         }
316
317         rc = lustre_fwrite(file, ldd, len, &off);
318         if (rc != len) {
319                 CERROR("error writing %s: read %d of %lu\n",
320                        MOUNT_DATA_FILE, rc, len);
321                 GOTO(out_close, rc = -EINVAL);
322         }
323
324         rc = 0;
325         ldd_print(ldd);
326
327 out_close:
328         filp_close(file, 0);
329 out:
330         pop_ctxt(&saved, mount_ctxt, NULL);
331         RETURN(rc);
332 }
333
334
335 /**************** config llog ********************/
336
337 /* Get a config log from the MGS and process it.
338    This func is called for both clients and servers.
339    Continue to process new statements appended to the logs
340    (whenever the config lock is revoked) until lustre_end_log
341    is called. */
342 int lustre_process_log(struct super_block *sb, char *logname,
343                      struct config_llog_instance *cfg)
344 {
345         struct lustre_cfg *lcfg;
346         struct lustre_cfg_bufs bufs;
347         struct lustre_sb_info *lsi = s2lsi(sb);
348         struct obd_device *mgc = lsi->lsi_mgc;
349         int rc;
350         ENTRY;
351
352         LASSERT(mgc);
353         LASSERT(cfg);
354
355         /* mgc_process_config */
356         lustre_cfg_bufs_reset(&bufs, mgc->obd_name);
357         lustre_cfg_bufs_set_string(&bufs, 1, logname);
358         lustre_cfg_bufs_set(&bufs, 2, cfg, sizeof(*cfg));
359         lustre_cfg_bufs_set(&bufs, 3, &sb, sizeof(sb));
360         lcfg = lustre_cfg_new(LCFG_LOG_START, &bufs);
361         rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
362         lustre_cfg_free(lcfg);
363
364         if (rc == -EINVAL)
365                 LCONSOLE_ERROR("%s: The configuration from log '%s' failed "
366                                "(%d). Make sure this client and "
367                                "the MGS are running compatible versions of "
368                                "Lustre.\n",
369                                mgc->obd_name, logname, rc);
370
371         if (rc)
372                 LCONSOLE_ERROR("%s: The configuration from log '%s' failed "
373                                "(%d). This may be the result of "
374                                "communication errors between this node and "
375                                "the MGS, a bad configuration, or other errors."
376                                " See the syslog for more information.\n",
377                                mgc->obd_name, logname, rc);
378
379         /* class_obd_list(); */
380         RETURN(rc);
381 }
382
383 /* Stop watching this config log for updates */
384 int lustre_end_log(struct super_block *sb, char *logname,
385                        struct config_llog_instance *cfg)
386 {
387         struct lustre_cfg *lcfg;
388         struct lustre_cfg_bufs bufs;
389         struct lustre_sb_info *lsi = s2lsi(sb);
390         struct obd_device *mgc = lsi->lsi_mgc;
391         int rc;
392         ENTRY;
393
394         if (!mgc)
395                 RETURN(-ENOENT);
396
397         /* mgc_process_config */
398         lustre_cfg_bufs_reset(&bufs, mgc->obd_name);
399         lustre_cfg_bufs_set_string(&bufs, 1, logname);
400         if (cfg)
401                 lustre_cfg_bufs_set(&bufs, 2, cfg, sizeof(*cfg));
402         lcfg = lustre_cfg_new(LCFG_LOG_END, &bufs);
403         rc = obd_process_config(mgc, sizeof(*lcfg), lcfg);
404         lustre_cfg_free(lcfg);
405         RETURN(rc);
406 }
407
408 /**************** obd start *******************/
409
410 int do_lcfg(char *cfgname, lnet_nid_t nid, int cmd,
411             char *s1, char *s2, char *s3, char *s4)
412 {
413         struct lustre_cfg_bufs bufs;
414         struct lustre_cfg    * lcfg = NULL;
415         int rc;
416
417         CDEBUG(D_TRACE, "lcfg %s %#x %s %s %s %s\n", cfgname,
418                cmd, s1, s2, s3, s4);
419
420         lustre_cfg_bufs_reset(&bufs, cfgname);
421         if (s1)
422                 lustre_cfg_bufs_set_string(&bufs, 1, s1);
423         if (s2)
424                 lustre_cfg_bufs_set_string(&bufs, 2, s2);
425         if (s3)
426                 lustre_cfg_bufs_set_string(&bufs, 3, s3);
427         if (s4)
428                 lustre_cfg_bufs_set_string(&bufs, 4, s4);
429
430         lcfg = lustre_cfg_new(cmd, &bufs);
431         lcfg->lcfg_nid = nid;
432         rc = class_process_config(lcfg);
433         lustre_cfg_free(lcfg);
434         return(rc);
435 }
436
437 static int lustre_start_simple(char *obdname, char *type, char *uuid,
438                                char *s1, char *s2)
439 {
440         int rc;
441         CDEBUG(D_MOUNT, "Starting obd %s (typ=%s)\n", obdname, type);
442
443         rc = do_lcfg(obdname, 0, LCFG_ATTACH, type, uuid, 0, 0);
444         if (rc) {
445                 CERROR("%s attach error %d\n", obdname, rc);
446                 return(rc);
447         }
448         rc = do_lcfg(obdname, 0, LCFG_SETUP, s1, s2, 0, 0);
449         if (rc) {
450                 CERROR("%s setup error %d\n", obdname, rc);
451                 do_lcfg(obdname, 0, LCFG_DETACH, 0, 0, 0, 0);
452         }
453         return rc;
454 }
455
456 /* Set up a MGS to serve startup logs */
457 static int server_start_mgs(struct super_block *sb)
458 {
459         struct lustre_sb_info    *lsi = s2lsi(sb);
460         struct vfsmount          *mnt = lsi->lsi_srv_mnt;
461         struct lustre_mount_info *lmi;
462         int    rc = 0;
463         ENTRY;
464         LASSERT(mnt);
465
466         /* It is impossible to have more than 1 MGS per node, since
467            MGC wouldn't know which to connect to */
468         lmi = server_find_mount(LUSTRE_MGS_OBDNAME);
469         if (lmi) {
470                 lsi = s2lsi(lmi->lmi_sb);
471                 LCONSOLE_ERROR("The MGS service was already started from "
472                                "server %s\n", lsi->lsi_ldd->ldd_svname);
473                 RETURN(-EALREADY);
474         }
475
476         CDEBUG(D_CONFIG, "Start MGS service %s\n", LUSTRE_MGS_OBDNAME);
477
478         rc = server_register_mount(LUSTRE_MGS_OBDNAME, sb, mnt);
479
480         if (!rc &&
481             ((rc = lustre_start_simple(LUSTRE_MGS_OBDNAME, LUSTRE_MGS_NAME,
482                                        LUSTRE_MGS_OBDNAME, 0, 0))))
483                 server_deregister_mount(LUSTRE_MGS_OBDNAME);
484
485         if (rc)
486                 LCONSOLE_ERROR("Failed to start MGS '%s' (%d).  Is the 'mgs' "
487                                "module loaded?\n", LUSTRE_MGS_OBDNAME, rc);
488
489         RETURN(rc);
490 }
491
492 static int server_stop_mgs(struct super_block *sb)
493 {
494         struct obd_device *obd;
495         int rc;
496         ENTRY;
497
498         CDEBUG(D_MOUNT, "Stop MGS service %s\n", LUSTRE_MGS_OBDNAME);
499
500         /* There better be only one MGS */
501         obd = class_name2obd(LUSTRE_MGS_OBDNAME);
502         if (!obd) {
503                 CDEBUG(D_CONFIG, "mgs %s not running\n", LUSTRE_MGS_OBDNAME);
504                 RETURN(-EALREADY);
505         }
506
507         /* The MGS should always stop when we say so */
508         obd->obd_force = 1;
509         rc = class_manual_cleanup(obd);
510         RETURN(rc);
511 }
512
513 DECLARE_MUTEX(mgc_start_lock);
514
515 /* Set up a mgcobd to process startup logs */
516 static int lustre_start_mgc(struct super_block *sb)
517 {
518         struct lustre_handle mgc_conn = {0, };
519         struct obd_connect_data ocd = { 0 };
520         struct lustre_sb_info *lsi = s2lsi(sb);
521         struct obd_device *obd;
522         struct obd_export *exp;
523         struct obd_uuid *uuid;
524         class_uuid_t uuidc;
525         lnet_nid_t nid;
526         char *mgcname, *niduuid;
527         char *ptr;
528         int recov_bk;
529         int rc = 0, i = 0, j, len;
530         ENTRY;
531
532         LASSERT(lsi->lsi_lmd);
533
534         /* Find the first non-lo MGS nid for our MGC name */
535         if (lsi->lsi_flags & LSI_SERVER) {
536                 ptr = lsi->lsi_ldd->ldd_params;
537                 /* Use mgsnode= nids */
538                 if ((class_find_param(ptr, PARAM_MGSNODE, &ptr) == 0) &&
539                     (class_parse_nid(ptr, &nid, &ptr) == 0)) {
540                         i++;
541                 } else if (IS_MGS(lsi->lsi_ldd)) {
542                         lnet_process_id_t id;
543                         while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
544                                 if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
545                                         continue;
546                                 nid = id.nid;
547                                 i++;
548                                 break;
549                         }
550                 }
551         } else { /* client */
552                 /* Use nids from mount line: uml1,1@elan:uml2,2@elan:/lustre */
553                 ptr = lsi->lsi_lmd->lmd_dev;
554                 if (class_parse_nid(ptr, &nid, &ptr) == 0)
555                         i++;
556         }
557         if (i == 0) {
558                 CERROR("No valid MGS nids found.\n");
559                 RETURN(-EINVAL);
560         }
561
562         len = strlen(LUSTRE_MGC_OBDNAME) + strlen(libcfs_nid2str(nid)) + 1;
563         OBD_ALLOC(mgcname, len);
564         OBD_ALLOC(niduuid, len + 2);
565         if (!mgcname || !niduuid)
566                 GOTO(out_free, rc = -ENOMEM);
567         sprintf(mgcname, "%s%s", LUSTRE_MGC_OBDNAME, libcfs_nid2str(nid));
568
569         mutex_down(&mgc_start_lock);
570
571         obd = class_name2obd(mgcname);
572         if (obd) {
573                 /* Re-using an existing MGC */
574                 atomic_inc(&obd->u.cli.cl_mgc_refcount);
575
576                 recov_bk = 0;
577                 /* If we are restarting the MGS, don't try to keep the MGC's
578                    old connection, or registration will fail. */
579                 if ((lsi->lsi_flags & LSI_SERVER) && IS_MGS(lsi->lsi_ldd)) {
580                         CDEBUG(D_MOUNT, "New MGS with live MGC\n");
581                         recov_bk = 1;
582                 }
583
584                 /* Try all connections, but only once (again).
585                    We don't want to block another target from starting
586                    (using its local copy of the log), but we do want to connect
587                    if at all possible. */
588                 recov_bk++;
589                 CDEBUG(D_MOUNT, "%s: Set MGC reconnect %d\n", mgcname,recov_bk);
590                 rc = obd_set_info_async(obd->obd_self_export,
591                                         strlen(KEY_INIT_RECOV_BACKUP),
592                                         KEY_INIT_RECOV_BACKUP,
593                                         sizeof(recov_bk), &recov_bk, NULL);
594                 GOTO(out, rc = 0);
595         }
596
597         CDEBUG(D_MOUNT, "Start MGC '%s'\n", mgcname);
598
599         /* Add the primary nids for the MGS */
600         i = 0;
601         sprintf(niduuid, "%s_%x", mgcname, i);
602         if (lsi->lsi_flags & LSI_SERVER) {
603                 ptr = lsi->lsi_ldd->ldd_params;
604                 if (IS_MGS(lsi->lsi_ldd)) {
605                         /* Use local nids (including LO) */
606                         lnet_process_id_t id;
607                         while ((rc = LNetGetId(i++, &id)) != -ENOENT) {
608                                 rc = do_lcfg(mgcname, id.nid,
609                                              LCFG_ADD_UUID, niduuid, 0,0,0);
610                         }
611                 } else {
612                         /* Use mgsnode= nids */
613                         if (class_find_param(ptr, PARAM_MGSNODE, &ptr) != 0) {
614                                 CERROR("No MGS nids given.\n");
615                                 GOTO(out_free, rc = -EINVAL);
616                         }
617                         while (class_parse_nid(ptr, &nid, &ptr) == 0) {
618                                 rc = do_lcfg(mgcname, nid,
619                                              LCFG_ADD_UUID, niduuid, 0,0,0);
620                                 i++;
621                         }
622                 }
623         } else { /* client */
624                 /* Use nids from mount line: uml1,1@elan:uml2,2@elan:/lustre */
625                 ptr = lsi->lsi_lmd->lmd_dev;
626                 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
627                         rc = do_lcfg(mgcname, nid,
628                                      LCFG_ADD_UUID, niduuid, 0,0,0);
629                         i++;
630                         /* Stop at the first failover nid */
631                         if (*ptr == ':')
632                                 break;
633                 }
634         }
635         if (i == 0) {
636                 CERROR("No valid MGS nids found.\n");
637                 GOTO(out_free, rc = -EINVAL);
638         }
639         lsi->lsi_lmd->lmd_mgs_failnodes = 1;
640
641         /* Random uuid for MGC allows easier reconnects */
642         OBD_ALLOC_PTR(uuid);
643         class_generate_random_uuid(uuidc);
644         class_uuid_unparse(uuidc, uuid);
645
646         /* Start the MGC */
647         rc = lustre_start_simple(mgcname, LUSTRE_MGC_NAME,
648                                  (char *)uuid->uuid, LUSTRE_MGS_OBDNAME,
649                                  niduuid);
650         OBD_FREE_PTR(uuid);
651         if (rc)
652                 GOTO(out_free, rc);
653
654         /* Add any failover MGS nids */
655         i = 1;
656         while ((*ptr == ':' ||
657                 class_find_param(ptr, PARAM_MGSNODE, &ptr) == 0)) {
658                 /* New failover node */
659                 sprintf(niduuid, "%s_%x", mgcname, i);
660                 j = 0;
661                 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
662                         j++;
663                         rc = do_lcfg(mgcname, nid,
664                                      LCFG_ADD_UUID, niduuid, 0,0,0);
665                         if (*ptr == ':')
666                                 break;
667                 }
668                 if (j > 0) {
669                         rc = do_lcfg(mgcname, 0, LCFG_ADD_CONN,
670                                      niduuid, 0, 0, 0);
671                         i++;
672                 } else {
673                         /* at ":/fsname" */
674                         break;
675                 }
676         }
677         lsi->lsi_lmd->lmd_mgs_failnodes = i;
678
679         obd = class_name2obd(mgcname);
680         if (!obd) {
681                 CERROR("Can't find mgcobd %s\n", mgcname);
682                 GOTO(out_free, rc = -ENOTCONN);
683         }
684
685         /* Keep a refcount of servers/clients who started with "mount",
686            so we know when we can get rid of the mgc. */
687         atomic_set(&obd->u.cli.cl_mgc_refcount, 1);
688
689         /* Try all connections, but only once. */
690         recov_bk = 1;
691         rc = obd_set_info_async(obd->obd_self_export,
692                                 strlen(KEY_INIT_RECOV_BACKUP),
693                                 KEY_INIT_RECOV_BACKUP,
694                                 sizeof(recov_bk), &recov_bk, NULL);
695         if (rc)
696                 /* nonfatal */
697                 CERROR("can't set %s %d\n", KEY_INIT_RECOV_BACKUP, rc);
698
699         /* We connect to the MGS at setup, and don't disconnect until cleanup */
700         rc = obd_connect(&mgc_conn, obd, &(obd->obd_uuid), &ocd);
701         if (rc) {
702                 CERROR("connect failed %d\n", rc);
703                 GOTO(out, rc);
704         }
705
706         exp = class_conn2export(&mgc_conn);
707         obd->u.cli.cl_mgc_mgsexp = exp;
708
709 out:
710         /* Keep the mgc info in the sb. Note that many lsi's can point
711            to the same mgc.*/
712         lsi->lsi_mgc = obd;
713 out_free:
714         mutex_up(&mgc_start_lock);
715
716         if (mgcname)
717                 OBD_FREE(mgcname, len);
718         if (niduuid)
719                 OBD_FREE(niduuid, len + 2);
720         RETURN(rc);
721 }
722
723 static int lustre_stop_mgc(struct super_block *sb)
724 {
725         struct lustre_sb_info *lsi = s2lsi(sb);
726         struct obd_device *obd;
727         char *niduuid, *ptr = 0;
728         int i, rc = 0, len;
729         ENTRY;
730
731         if (!lsi)
732                 RETURN(-ENOENT);
733         obd = lsi->lsi_mgc;
734         if (!obd)
735                 RETURN(-ENOENT);
736
737         lsi->lsi_mgc = NULL;
738         mutex_down(&mgc_start_lock);
739         if (!atomic_dec_and_test(&obd->u.cli.cl_mgc_refcount)) {
740                 /* This is not fatal, every client that stops
741                    will call in here. */
742                 CDEBUG(D_MOUNT, "mgc still has %d references.\n",
743                        atomic_read(&obd->u.cli.cl_mgc_refcount));
744                 GOTO(out, rc = -EBUSY);
745         }
746
747         /* MGC must always stop */
748         obd->obd_force = 1;
749         /* client_disconnect_export uses the no_recov flag to decide whether it
750            should disconnect or just invalidate.  (The MGC has no
751            recoverable data in any case.) */
752         obd->obd_no_recov = 1;
753
754         if (obd->u.cli.cl_mgc_mgsexp)
755                 obd_disconnect(obd->u.cli.cl_mgc_mgsexp);
756
757         /* Save the obdname for cleaning the nid uuids, which are
758            obdname_XX */
759         len = strlen(obd->obd_name) + 6;
760         OBD_ALLOC(niduuid, len);
761         if (niduuid) {
762                 strcpy(niduuid, obd->obd_name);
763                 ptr = niduuid + strlen(niduuid);
764         }
765
766         rc = class_manual_cleanup(obd);
767         if (rc)
768                 GOTO(out, rc);
769
770         /* Clean the nid uuids */
771         if (!niduuid)
772                 RETURN(-ENOMEM);
773         for (i = 0; i < lsi->lsi_lmd->lmd_mgs_failnodes; i++) {
774                 sprintf(ptr, "_%x", i);
775                 rc = do_lcfg(LUSTRE_MGC_OBDNAME, 0, LCFG_DEL_UUID,
776                              niduuid, 0, 0, 0);
777                 if (rc)
778                         CERROR("del MDC UUID %s failed: rc = %d\n",
779                                niduuid, rc);
780         }
781         OBD_FREE(niduuid, len);
782         /* class_import_put will get rid of the additional connections */
783
784 out:
785         mutex_up(&mgc_start_lock);
786         RETURN(rc);
787 }
788
789 /* Since there's only one mgc per node, we have to change it's fs to get
790    access to the right disk. */
791 static int server_mgc_set_fs(struct obd_device *mgc, struct super_block *sb)
792 {
793         struct lustre_sb_info *lsi = s2lsi(sb);
794         int rc;
795         ENTRY;
796
797         CDEBUG(D_MOUNT, "Set mgc disk for %s\n", lsi->lsi_lmd->lmd_dev);
798
799         /* cl_mgc_sem in mgc insures we sleep if the mgc_fs is busy */
800         rc = obd_set_info_async(mgc->obd_self_export,
801                                 strlen("set_fs"), "set_fs",
802                                 sizeof(*sb), sb, NULL);
803         if (rc) {
804                 CERROR("can't set_fs %d\n", rc);
805         }
806
807         RETURN(rc);
808 }
809
810 static int server_mgc_clear_fs(struct obd_device *mgc)
811 {
812         int rc;
813         ENTRY;
814
815         CDEBUG(D_MOUNT, "Unassign mgc disk\n");
816
817         rc = obd_set_info_async(mgc->obd_self_export,
818                                 strlen("clear_fs"), "clear_fs",
819                                 0, NULL, NULL);
820         RETURN(rc);
821 }
822
823 DECLARE_MUTEX(server_start_lock);
824
825 /* Stop MDS/OSS if nobody is using them */
826 static int server_stop_servers(int lddflags, int lsiflags)
827 {
828         struct obd_device *obd = NULL;
829         struct obd_type *type = NULL;
830         int rc = 0;
831         ENTRY;
832
833         mutex_down(&server_start_lock);
834
835         /* Either an MDT or an OST or neither  */
836         /* if this was an MDT, and there are no more MDT's, clean up the MDS */
837         if ((lddflags & LDD_F_SV_TYPE_MDT) &&
838             (obd = class_name2obd(LUSTRE_MDS_OBDNAME))) {
839                 /*FIXME pre-rename, should eventually be LUSTRE_MDT_NAME*/
840                 type = class_search_type(LUSTRE_MDS_NAME);
841         }
842         /* if this was an OST, and there are no more OST's, clean up the OSS */
843         if ((lddflags & LDD_F_SV_TYPE_OST) &&
844             (obd = class_name2obd(LUSTRE_OSS_OBDNAME))) {
845                 type = class_search_type(LUSTRE_OST_NAME);
846         }
847
848         if (obd && (!type || !type->typ_refcnt)) {
849                 int err;
850                 obd->obd_force = 1;
851                 /* obd_fail doesn't mean much on a server obd */
852                 err = class_manual_cleanup(obd);
853                 if (!rc)
854                         rc = err;
855         }
856
857         mutex_up(&server_start_lock);
858
859         RETURN(rc);
860 }
861
862 int server_mti_print(char *title, struct mgs_target_info *mti)
863 {
864         PRINT_CMD(PRINT_MASK, "mti %s\n", title);
865         PRINT_CMD(PRINT_MASK, "server: %s\n", mti->mti_svname);
866         PRINT_CMD(PRINT_MASK, "fs:     %s\n", mti->mti_fsname);
867         PRINT_CMD(PRINT_MASK, "uuid:   %s\n", mti->mti_uuid);
868         PRINT_CMD(PRINT_MASK, "ver: %d  flags: %#x\n",
869                   mti->mti_config_ver, mti->mti_flags);
870         return(0);
871 }
872
873 static int server_sb2mti(struct super_block *sb, struct mgs_target_info *mti)
874 {
875         struct lustre_sb_info   *lsi = s2lsi(sb);
876         struct lustre_disk_data *ldd = lsi->lsi_ldd;
877         lnet_process_id_t        id;
878         int i = 0;
879         ENTRY;
880
881         if (!(lsi->lsi_flags & LSI_SERVER))
882                 RETURN(-EINVAL);
883
884         strncpy(mti->mti_fsname, ldd->ldd_fsname,
885                 sizeof(mti->mti_fsname));
886         strncpy(mti->mti_svname, ldd->ldd_svname,
887                 sizeof(mti->mti_svname));
888
889         mti->mti_nid_count = 0;
890         while (LNetGetId(i++, &id) != -ENOENT) {
891                 if (LNET_NETTYP(LNET_NIDNET(id.nid)) == LOLND)
892                         continue;
893                 mti->mti_nids[mti->mti_nid_count] = id.nid;
894                 mti->mti_nid_count++;
895                 if (mti->mti_nid_count >= MTI_NIDS_MAX) {
896                         CWARN("Only using first %d nids for %s\n",
897                               mti->mti_nid_count, mti->mti_svname);
898                         break;
899                 }
900         }
901
902         mti->mti_lustre_ver = LUSTRE_VERSION_CODE;
903         mti->mti_config_ver = 0;
904         mti->mti_flags = ldd->ldd_flags;
905         mti->mti_stripe_index = ldd->ldd_svindex;
906         memcpy(mti->mti_uuid, ldd->ldd_uuid, sizeof(mti->mti_uuid));
907         if (strlen(ldd->ldd_params) > sizeof(mti->mti_params)) {
908                 CERROR("params too big for mti\n");
909                 RETURN(-ENOMEM);
910         }
911         memcpy(mti->mti_params, ldd->ldd_params, sizeof(mti->mti_params));
912         RETURN(0);
913 }
914
915 /* Register an old or new target with the MGS. If needed MGS will construct
916    startup logs and assign index */
917 int server_register_target(struct super_block *sb)
918 {
919         struct lustre_sb_info *lsi = s2lsi(sb);
920         struct obd_device *mgc = lsi->lsi_mgc;
921         struct lustre_disk_data *ldd = lsi->lsi_ldd;
922         struct mgs_target_info *mti = NULL;
923         int rc;
924         ENTRY;
925
926         LASSERT(mgc);
927
928         if (!(lsi->lsi_flags & LSI_SERVER))
929                 RETURN(-EINVAL);
930
931         OBD_ALLOC_PTR(mti);
932         if (!mti)
933                 RETURN(-ENOMEM);
934         rc = server_sb2mti(sb, mti);
935         if (rc)
936                 GOTO(out, rc);
937
938         CDEBUG(D_MOUNT, "Registration %s, fs=%s, %s, index=%04x, flags=%#x\n",
939                mti->mti_svname, mti->mti_fsname,
940                libcfs_nid2str(mti->mti_nids[0]), mti->mti_stripe_index,
941                mti->mti_flags);
942
943         /* Register the target */
944         /* FIXME use mgc_process_config instead */
945         rc = obd_set_info_async(mgc->u.cli.cl_mgc_mgsexp,
946                                 strlen("register_target"), "register_target",
947                                 sizeof(*mti), mti, NULL);
948         if (rc) {
949                 CERROR("registration with the MGS failed (%d)\n", rc);
950                 GOTO(out, rc);
951         }
952
953         /* Always update our flags */
954         ldd->ldd_flags = mti->mti_flags & ~LDD_F_REWRITE_LDD;
955
956         /* If this flag is set, it means the MGS wants us to change our
957            on-disk data. (So far this means just the index.) */
958         if (mti->mti_flags & LDD_F_REWRITE_LDD) {
959                 char *label;
960                 int err;
961                 CDEBUG(D_MOUNT, "Changing on-disk index from %#x to %#x "
962                        "for %s\n", ldd->ldd_svindex, mti->mti_stripe_index,
963                        mti->mti_svname);
964                 ldd->ldd_svindex = mti->mti_stripe_index;
965                 strncpy(ldd->ldd_svname, mti->mti_svname,
966                         sizeof(ldd->ldd_svname));
967                 /* or ldd_make_sv_name(ldd); */
968                 ldd_write(&mgc->obd_lvfs_ctxt, ldd);
969
970                 err = fsfilt_set_label(mgc, lsi->lsi_srv_mnt->mnt_sb,
971                                        mti->mti_svname);
972                 if (err)
973                         CERROR("Label set error %d\n", err);
974                 label = fsfilt_get_label(mgc, lsi->lsi_srv_mnt->mnt_sb);
975                 if (label)
976                         CDEBUG(D_MOUNT, "Disk label changed to %s\n", label);
977
978                 /* Flush the new ldd to disk */
979                 fsfilt_sync(mgc, lsi->lsi_srv_mnt->mnt_sb);
980         }
981
982 out:
983         if (mti)
984                 OBD_FREE_PTR(mti);
985         RETURN(rc);
986 }
987
988 /* Start targets */
989 static int server_start_targets(struct super_block *sb, struct vfsmount *mnt)
990 {
991         struct obd_device *obd;
992         struct lustre_sb_info *lsi = s2lsi(sb);
993         struct config_llog_instance cfg;
994         int rc;
995         ENTRY;
996
997         CDEBUG(D_MOUNT, "starting target %s\n", lsi->lsi_ldd->ldd_svname);
998
999         /* If we're an MDT, make sure the global MDS is running */
1000         if (lsi->lsi_ldd->ldd_flags & LDD_F_SV_TYPE_MDT) {
1001                 /* make sure the MDS is started */
1002                 mutex_down(&server_start_lock);
1003                 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1004                 if (!obd) {
1005                         rc = lustre_start_simple(LUSTRE_MDS_OBDNAME,
1006                     /* FIXME pre-rename, should eventually be LUSTRE_MDS_NAME */
1007                                                  LUSTRE_MDT_NAME,
1008                                                  LUSTRE_MDS_OBDNAME"_uuid",
1009                                                  0, 0);
1010                         if (rc) {
1011                                 mutex_up(&server_start_lock);
1012                                 CERROR("failed to start MDS: %d\n", rc);
1013                                 RETURN(rc);
1014                         }
1015                 }
1016                 mutex_up(&server_start_lock);
1017         }
1018
1019         /* If we're an OST, make sure the global OSS is running */
1020         if (lsi->lsi_ldd->ldd_flags & LDD_F_SV_TYPE_OST) {
1021                 /* make sure OSS is started */
1022                 mutex_down(&server_start_lock);
1023                 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1024                 if (!obd) {
1025                         rc = lustre_start_simple(LUSTRE_OSS_OBDNAME,
1026                                                  LUSTRE_OSS_NAME,
1027                                                  LUSTRE_OSS_OBDNAME"_uuid",
1028                                                  0, 0);
1029                         if (rc) {
1030                                 mutex_up(&server_start_lock);
1031                                 CERROR("failed to start OSS: %d\n", rc);
1032                                 RETURN(rc);
1033                         }
1034                 }
1035                 mutex_up(&server_start_lock);
1036         }
1037
1038         /* Set the mgc fs to our server disk.  This allows the MGC
1039            to read and write configs locally. */
1040         rc = server_mgc_set_fs(lsi->lsi_mgc, sb);
1041         if (rc)
1042                 RETURN(rc);
1043
1044         /* Register with MGS */
1045         rc = server_register_target(sb);
1046         if (rc && (lsi->lsi_ldd->ldd_flags &
1047                    (LDD_F_NEED_INDEX | LDD_F_UPDATE | LDD_F_UPGRADE14))){
1048                 CERROR("Required registration failed for %s: %d\n",
1049                        lsi->lsi_ldd->ldd_svname, rc);
1050                 if (rc == -EIO) {
1051                         LCONSOLE_ERROR("Communication error with the MGS.  Is "
1052                                        "the MGS running?\n");
1053                 }
1054                 GOTO(out_mgc, rc);
1055         }
1056         if (rc == -EINVAL) {
1057                 LCONSOLE_ERROR("The MGS is refusing to allow this server (%s) "
1058                                "to start.  Please see messages on the MGS node."
1059                                "\n", lsi->lsi_ldd->ldd_svname);
1060                 GOTO(out_mgc, rc);
1061         }
1062
1063         /* Let the target look up the mount using the target's name
1064            (we can't pass the sb or mnt through class_process_config.) */
1065         rc = server_register_mount(lsi->lsi_ldd->ldd_svname, sb, mnt);
1066         if (rc)
1067                 GOTO(out_mgc, rc);
1068
1069         /* Start targets using the llog named for the target */
1070         memset(&cfg, 0, sizeof(cfg));
1071         rc = lustre_process_log(sb, lsi->lsi_ldd->ldd_svname, &cfg);
1072         if (rc) {
1073                 CERROR("failed to start server %s: %d\n",
1074                        lsi->lsi_ldd->ldd_svname, rc);
1075                 GOTO(out_mgc, rc);
1076         }
1077
1078 out_mgc:
1079         /* Release the mgc fs for others to use */
1080         server_mgc_clear_fs(lsi->lsi_mgc);
1081
1082         if (!rc) {
1083                 obd = class_name2obd(lsi->lsi_ldd->ldd_svname);
1084                 if (!obd) {
1085                         CERROR("no server named %s was started\n",
1086                                lsi->lsi_ldd->ldd_svname);
1087                         RETURN(-ENXIO);
1088                 }
1089
1090                 if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_ABORT_RECOV) &&
1091                     (OBP(obd, iocontrol))) {
1092                         obd_iocontrol(OBD_IOC_ABORT_RECOVERY,
1093                                       obd->obd_self_export, 0, NULL, NULL);
1094                 }
1095
1096                 /* log has been fully processed */
1097                 obd_notify(obd, NULL, OBD_NOTIFY_CONFIG, 0);
1098         }
1099
1100         RETURN(rc);
1101 }
1102
1103 /***************** lustre superblock **************/
1104
1105 struct lustre_sb_info *lustre_init_lsi(struct super_block *sb)
1106 {
1107         struct lustre_sb_info *lsi = NULL;
1108         ENTRY;
1109
1110         OBD_ALLOC(lsi, sizeof(*lsi));
1111         if (!lsi)
1112                 RETURN(NULL);
1113         OBD_ALLOC(lsi->lsi_lmd, sizeof(*lsi->lsi_lmd));
1114         if (!lsi->lsi_lmd) {
1115                 OBD_FREE(lsi, sizeof(*lsi));
1116                 RETURN(NULL);
1117         }
1118
1119         lsi->lsi_lmd->lmd_exclude_count = 0;
1120         s2lsi_nocast(sb) = lsi;
1121         /* we take 1 extra ref for our setup */
1122         atomic_set(&lsi->lsi_mounts, 1);
1123
1124         /* Default umount style */
1125         lsi->lsi_flags = LSI_UMOUNT_FAILOVER;
1126         RETURN(lsi);
1127 }
1128
1129 static int lustre_free_lsi(struct super_block *sb)
1130 {
1131         struct lustre_sb_info *lsi = s2lsi(sb);
1132         ENTRY;
1133
1134         if (!lsi)
1135                 RETURN(0);
1136
1137         CDEBUG(D_MOUNT, "Freeing lsi\n");
1138
1139         /* someone didn't call server_put_mount. */
1140         LASSERT(atomic_read(&lsi->lsi_mounts) == 0);
1141
1142         if (lsi->lsi_ldd != NULL)
1143                 OBD_FREE(lsi->lsi_ldd, sizeof(*lsi->lsi_ldd));
1144
1145         if (lsi->lsi_lmd != NULL) {
1146                 if (lsi->lsi_lmd->lmd_dev != NULL)
1147                         OBD_FREE(lsi->lsi_lmd->lmd_dev,
1148                                  strlen(lsi->lsi_lmd->lmd_dev) + 1);
1149                 if (lsi->lsi_lmd->lmd_profile != NULL)
1150                         OBD_FREE(lsi->lsi_lmd->lmd_profile,
1151                                  strlen(lsi->lsi_lmd->lmd_profile) + 1);
1152                 if (lsi->lsi_lmd->lmd_opts != NULL)
1153                         OBD_FREE(lsi->lsi_lmd->lmd_opts,
1154                                  strlen(lsi->lsi_lmd->lmd_opts) + 1);
1155                 if (lsi->lsi_lmd->lmd_exclude_count)
1156                         OBD_FREE(lsi->lsi_lmd->lmd_exclude,
1157                                  sizeof(lsi->lsi_lmd->lmd_exclude[0]) *
1158                                  lsi->lsi_lmd->lmd_exclude_count);
1159                 OBD_FREE(lsi->lsi_lmd, sizeof(*lsi->lsi_lmd));
1160         }
1161
1162         LASSERT(lsi->lsi_llsbi == NULL);
1163
1164         OBD_FREE(lsi, sizeof(*lsi));
1165         s2lsi_nocast(sb) = NULL;
1166
1167         RETURN(0);
1168 }
1169
1170 /* The lsi has one reference for every server that is using the disk -
1171    e.g. MDT, MGS, and potentially MGC */
1172 static int lustre_put_lsi(struct super_block *sb)
1173 {
1174         struct lustre_sb_info *lsi = s2lsi(sb);
1175         ENTRY;
1176
1177         LASSERT(lsi);
1178
1179         CDEBUG(D_MOUNT, "put %p %d\n", sb, atomic_read(&lsi->lsi_mounts));
1180
1181         if (atomic_dec_and_test(&lsi->lsi_mounts)) {
1182                 lustre_free_lsi(sb);
1183                 RETURN(1);
1184         }
1185         RETURN(0);
1186 }
1187
1188 /*************** server mount ******************/
1189
1190 /* Kernel mount using mount options in MOUNT_DATA_FILE */
1191 static struct vfsmount *server_kernel_mount(struct super_block *sb)
1192 {
1193         struct lvfs_run_ctxt mount_ctxt;
1194         struct lustre_sb_info *lsi = s2lsi(sb);
1195         struct lustre_disk_data *ldd;
1196         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1197         struct vfsmount *mnt;
1198         char *options = NULL;
1199         unsigned long page, s_flags;
1200         int rc;
1201         ENTRY;
1202
1203         OBD_ALLOC(ldd, sizeof(*ldd));
1204         if (!ldd)
1205                 RETURN(ERR_PTR(-ENOMEM));
1206
1207         /* In the past, we have always used flags = 0.
1208            Note ext3/ldiskfs can't be mounted ro. */
1209         s_flags = sb->s_flags;
1210
1211         /* Pre-mount ldiskfs to read the MOUNT_DATA_FILE */
1212         CDEBUG(D_MOUNT, "Pre-mount ldiskfs %s\n", lmd->lmd_dev);
1213         mnt = ll_kern_mount("ldiskfs", s_flags, lmd->lmd_dev, 0);
1214         if (IS_ERR(mnt)) {
1215                 rc = PTR_ERR(mnt);
1216 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
1217                 CERROR("premount %s:%#lx ldiskfs failed (%d), is the ldiskfs "
1218                        "module available?\n", lmd->lmd_dev, s_flags, rc);
1219                 GOTO(out_free, rc);
1220 #else
1221                 /* If ldisk fails, try ext3 */
1222                 mnt = ll_kern_mount("ext3", s_flags, lmd->lmd_dev, 0);
1223                 if (IS_ERR(mnt)) {
1224                         rc = PTR_ERR(mnt);
1225                         CERROR("premount ext3 failed: rc = %d\n", rc);
1226                         GOTO(out_free, rc);
1227                 }
1228 #endif
1229         }
1230
1231         OBD_SET_CTXT_MAGIC(&mount_ctxt);
1232         mount_ctxt.pwdmnt = mnt;
1233         mount_ctxt.pwd = mnt->mnt_root;
1234         mount_ctxt.fs = get_ds();
1235
1236         rc = ldd_parse(&mount_ctxt, ldd);
1237         unlock_mntput(mnt);
1238
1239         if (rc) {
1240                 CERROR("premount parse options failed: rc = %d\n", rc);
1241                 GOTO(out_free, rc);
1242         }
1243
1244         /* Done with our pre-mount, now do the real mount. */
1245
1246         /* Glom up mount options */
1247         page = __get_free_page(GFP_KERNEL);
1248         if (!page)
1249                 GOTO(out_free, rc = -ENOMEM);
1250
1251         options = (char *)page;
1252         memset(options, 0, CFS_PAGE_SIZE);
1253         strncpy(options, ldd->ldd_mount_opts, CFS_PAGE_SIZE - 2);
1254
1255         /* Add in any mount-line options */
1256         if (lmd->lmd_opts && (*(lmd->lmd_opts) != 0)) {
1257                 int len = CFS_PAGE_SIZE - strlen(options) - 2;
1258                 if (*options != 0)
1259                         strcat(options, ",");
1260                 strncat(options, lmd->lmd_opts, len);
1261         }
1262
1263         /* Special permanent mount flags */
1264         if (IS_OST(ldd))
1265             s_flags |= MS_NOATIME | MS_NODIRATIME;
1266
1267         CDEBUG(D_MOUNT, "kern_mount: %s %s %s\n",
1268                MT_STR(ldd), lmd->lmd_dev, options);
1269         mnt = ll_kern_mount(MT_STR(ldd), s_flags, lmd->lmd_dev,
1270                             (void *)options);
1271         free_page(page);
1272         if (IS_ERR(mnt)) {
1273                 rc = PTR_ERR(mnt);
1274                 CERROR("ll_kern_mount failed: rc = %d\n", rc);
1275                 GOTO(out_free, rc);
1276         }
1277
1278         lsi->lsi_ldd = ldd;   /* freed at lsi cleanup */
1279         CDEBUG(D_SUPER, "%s: mnt = %p\n", lmd->lmd_dev, mnt);
1280         RETURN(mnt);
1281
1282 out_free:
1283         OBD_FREE(ldd, sizeof(*ldd));
1284         lsi->lsi_ldd = NULL;
1285         RETURN(ERR_PTR(rc));
1286 }
1287
1288 static void server_wait_finished(struct vfsmount *mnt)
1289 {
1290         wait_queue_head_t   waitq;
1291         struct l_wait_info  lwi;
1292         int                 retries = 120;
1293
1294         init_waitqueue_head(&waitq);
1295
1296         while ((atomic_read(&mnt->mnt_count) > 1) && (retries > 0)) {
1297                 LCONSOLE_WARN("Mount still busy with %d refs, waiting for "
1298                               "%d secs...\n",
1299                               atomic_read(&mnt->mnt_count), retries);
1300
1301                 /* Wait for a bit */
1302                 retries -= 5;
1303                 lwi = LWI_TIMEOUT(5 * HZ, NULL, NULL);
1304                 l_wait_event(waitq, 0, &lwi);
1305         }
1306         if (atomic_read(&mnt->mnt_count) > 1) {
1307                 CERROR("Mount %p is still busy (%d refs), giving up.\n",
1308                        mnt, atomic_read(&mnt->mnt_count));
1309         }
1310 }
1311
1312 static void server_put_super(struct super_block *sb)
1313 {
1314         struct lustre_sb_info *lsi = s2lsi(sb);
1315         struct obd_device     *obd;
1316         struct vfsmount       *mnt = lsi->lsi_srv_mnt;
1317         char *tmpname, *extraname = NULL;
1318         int tmpname_sz;
1319         int lddflags = lsi->lsi_ldd->ldd_flags;
1320         int lsiflags = lsi->lsi_flags;
1321         int rc;
1322         ENTRY;
1323
1324         LASSERT(lsiflags & LSI_SERVER);
1325
1326         tmpname_sz = strlen(lsi->lsi_ldd->ldd_svname) + 1;
1327         OBD_ALLOC(tmpname, tmpname_sz);
1328         memcpy(tmpname, lsi->lsi_ldd->ldd_svname, tmpname_sz);
1329         CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1330
1331         /* Stop the target */
1332         if (IS_MDT(lsi->lsi_ldd) || IS_OST(lsi->lsi_ldd)) {
1333                 struct lustre_profile *lprof = NULL;
1334
1335                 /* tell the mgc to drop the config log */
1336                 lustre_end_log(sb, lsi->lsi_ldd->ldd_svname, NULL);
1337
1338                 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1339                    If there are any setup/cleanup errors, save the lov
1340                    name for safety cleanup later. */
1341                 lprof = class_get_profile(lsi->lsi_ldd->ldd_svname);
1342                 if (lprof && lprof->lp_osc) {
1343                         OBD_ALLOC(extraname, strlen(lprof->lp_osc) + 1);
1344                         strcpy(extraname, lprof->lp_osc);
1345                 }
1346
1347                 obd = class_name2obd(lsi->lsi_ldd->ldd_svname);
1348                 if (obd) {
1349                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1350                         if (lsi->lsi_flags & LSI_UMOUNT_FORCE)
1351                                 obd->obd_force = 1;
1352                         if (lsi->lsi_flags & LSI_UMOUNT_FAILOVER)
1353                                 obd->obd_fail = 1;
1354                         /* We can't seem to give an error return code
1355                            to .put_super, so we better make sure we clean up! */
1356                         obd->obd_force = 1;
1357                         class_manual_cleanup(obd);
1358                 } else {
1359                         CERROR("no obd %s\n", lsi->lsi_ldd->ldd_svname);
1360                         server_deregister_mount(lsi->lsi_ldd->ldd_svname);
1361                 }
1362
1363         }
1364
1365         /* If they wanted the mgs to stop separately from the mdt, they
1366            should have put it on a different device. */
1367         if (IS_MGS(lsi->lsi_ldd)) {
1368                 /* stop the mgc before the mgs so the connection gets cleaned
1369                    up */
1370                 lustre_stop_mgc(sb);
1371                 server_stop_mgs(sb);
1372         }
1373
1374         /* Clean the mgc and sb */
1375         rc = lustre_common_put_super(sb);
1376         /* FIXME how can I report a failure to umount? */
1377
1378         /* Wait for the targets to really clean up - can't exit (and let the
1379            sb get destroyed) while the mount is still in use */
1380         server_wait_finished(mnt);
1381
1382         /* drop the One True Mount */
1383         unlock_mntput(mnt);
1384
1385         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1386            until the target is really gone so that our type refcount check
1387            is right. */
1388         server_stop_servers(lddflags, lsiflags);
1389
1390         /* In case of startup or cleanup err, stop related obds */
1391         if (extraname) {
1392                 obd = class_name2obd(extraname);
1393                 if (obd) {
1394                         CWARN("Cleaning orphaned obd %s\n", extraname);
1395                         obd->obd_force = 1;
1396                         class_manual_cleanup(obd);
1397                 }
1398                 OBD_FREE(extraname, strlen(extraname) + 1);
1399         }
1400
1401         LCONSOLE_WARN("server umount %s complete\n", tmpname);
1402         OBD_FREE(tmpname, tmpname_sz);
1403         EXIT;
1404 }
1405 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1406 static void server_umount_begin(struct vfsmount *vfsmnt, int flags)
1407 {
1408         struct super_block *sb = vfsmnt->mnt_sb;
1409 #else
1410 static void server_umount_begin(struct super_block *sb)
1411 {
1412 #endif
1413         struct lustre_sb_info *lsi = s2lsi(sb);
1414         ENTRY;
1415
1416 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1417         if (!(flags & MNT_FORCE)) {
1418                 EXIT;
1419                 return;
1420         }
1421 #endif
1422
1423         CDEBUG(D_MOUNT, "umount -f\n");
1424         /* umount = failover
1425            umount -f = force
1426            no third way to do non-force, non-failover */
1427         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1428         lsi->lsi_flags |= LSI_UMOUNT_FORCE;
1429         EXIT;
1430 }
1431
1432 #ifndef HAVE_STATFS_DENTRY_PARAM
1433 static int server_statfs (struct super_block *sb, struct kstatfs *buf)
1434 {
1435 #else
1436 static int server_statfs (struct dentry *dentry, struct kstatfs *buf)
1437 {
1438         struct super_block *sb = dentry->d_sb;
1439 #endif
1440         struct vfsmount *mnt = s2lsi(sb)->lsi_srv_mnt;
1441         ENTRY;
1442
1443         if (mnt && mnt->mnt_sb && mnt->mnt_sb->s_op->statfs) {
1444 #ifdef HAVE_STATFS_DENTRY_PARAM
1445                 int rc = mnt->mnt_sb->s_op->statfs(mnt->mnt_root, buf);
1446 #else
1447                 int rc = mnt->mnt_sb->s_op->statfs(mnt->mnt_sb, buf);
1448 #endif
1449                 if (!rc) {
1450                         buf->f_type = sb->s_magic;
1451                         RETURN(0);
1452                 }
1453         }
1454
1455         /* just return 0 */
1456         buf->f_type = sb->s_magic;
1457         buf->f_bsize = sb->s_blocksize;
1458         buf->f_blocks = 1;
1459         buf->f_bfree = 0;
1460         buf->f_bavail = 0;
1461         buf->f_files = 1;
1462         buf->f_ffree = 0;
1463         buf->f_namelen = NAME_MAX;
1464         RETURN(0);
1465 }
1466
1467 static struct super_operations server_ops =
1468 {
1469         .put_super      = server_put_super,
1470         .umount_begin   = server_umount_begin, /* umount -f */
1471         .statfs         = server_statfs,
1472 };
1473
1474 #define log2(n) ffz(~(n))
1475 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1476
1477 static int server_fill_super_common(struct super_block *sb)
1478 {
1479         struct inode *root = 0;
1480         ENTRY;
1481
1482         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1483
1484         sb->s_blocksize = 4096;
1485         sb->s_blocksize_bits = log2(sb->s_blocksize);
1486         sb->s_magic = LUSTRE_SUPER_MAGIC;
1487         sb->s_maxbytes = 0; //PAGE_CACHE_MAXBYTES;
1488         sb->s_flags |= MS_RDONLY;
1489         sb->s_op = &server_ops;
1490
1491         root = new_inode(sb);
1492         if (!root) {
1493                 CERROR("Can't make root inode\n");
1494                 RETURN(-EIO);
1495         }
1496
1497         /* returns -EIO for every operation */
1498         /* make_bad_inode(root); -- badness - can't umount */
1499         /* apparently we need to be a directory for the mount to finish */
1500         root->i_mode = S_IFDIR;
1501
1502         sb->s_root = d_alloc_root(root);
1503         if (!sb->s_root) {
1504                 CERROR("Can't make root dentry\n");
1505                 iput(root);
1506                 RETURN(-EIO);
1507         }
1508
1509         RETURN(0);
1510 }
1511
1512 static int server_fill_super(struct super_block *sb)
1513 {
1514         struct lustre_sb_info *lsi = s2lsi(sb);
1515         struct vfsmount *mnt;
1516         int rc;
1517         ENTRY;
1518
1519         /* the One True Mount */
1520         mnt = server_kernel_mount(sb);
1521         if (IS_ERR(mnt)) {
1522                 rc = PTR_ERR(mnt);
1523                 CERROR("Unable to mount device %s: %d\n",
1524                       lsi->lsi_lmd->lmd_dev, rc);
1525                 lustre_put_lsi(sb);
1526                 GOTO(out, rc);
1527         }
1528         lsi->lsi_srv_mnt = mnt;
1529
1530         LASSERT(lsi->lsi_ldd);
1531         CDEBUG(D_MOUNT, "Found service %s for fs '%s' on device %s\n",
1532                lsi->lsi_ldd->ldd_svname, lsi->lsi_ldd->ldd_fsname,
1533                lsi->lsi_lmd->lmd_dev);
1534
1535         if (class_name2obd(lsi->lsi_ldd->ldd_svname)) {
1536                 LCONSOLE_ERROR("The target named %s is already running. "
1537                                "Double-mount may have compromised the disk "
1538                                "journal.\n", lsi->lsi_ldd->ldd_svname);
1539                 unlock_mntput(mnt);
1540                 lustre_put_lsi(sb);
1541                 GOTO(out, rc = -EALREADY);
1542         }
1543
1544         /* start MGS before MGC */
1545         if (IS_MGS(lsi->lsi_ldd)) {
1546                 rc = server_start_mgs(sb);
1547                 if (rc)
1548                         GOTO(out_mnt, rc);
1549         }
1550
1551         rc = lustre_start_mgc(sb);
1552         if (rc)
1553                 GOTO(out_mnt, rc);
1554
1555         /* Set up all obd devices for service */
1556         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1557                 (IS_OST(lsi->lsi_ldd) || IS_MDT(lsi->lsi_ldd))) {
1558                 rc = server_start_targets(sb, mnt);
1559                 if (rc < 0) {
1560                         CERROR("Unable to start targets: %d\n", rc);
1561                         GOTO(out_mnt, rc);
1562                 }
1563         /* FIXME overmount client here,
1564            or can we just start a client log and client_fill_super on this sb?
1565            We need to make sure server_put_super gets called too - ll_put_super
1566            calls lustre_common_put_super; check there for LSI_SERVER flag,
1567            call s_p_s if so.
1568            Probably should start client from new thread so we can return.
1569            Client will not finish until all servers are connected.
1570            Note - MGS-only server does NOT get a client, since there is no
1571            lustre fs associated - the MGS is for all lustre fs's */
1572         }
1573
1574         rc = server_fill_super_common(sb);
1575         if (rc)
1576                 GOTO(out_mnt, rc);
1577
1578         LCONSOLE_WARN("Server %s on device %s has started\n",
1579                       lsi->lsi_ldd->ldd_svname, lsi->lsi_lmd->lmd_dev);
1580
1581         RETURN(0);
1582
1583 out_mnt:
1584         server_put_super(sb);
1585 out:
1586         RETURN(rc);
1587 }
1588
1589 /* Get the index from the obd name.
1590    rc = server type, or
1591    rc < 0  on error
1592    if endptr isn't NULL it is set to end of name */
1593 int server_name2index(char *svname, __u32 *idx, char **endptr)
1594 {
1595         unsigned long index;
1596         int rc;
1597         char *dash = strchr(svname, '-');
1598         if (!dash)
1599                 return(-EINVAL);
1600
1601         if (strncmp(dash + 1, "MDT", 3) == 0)
1602                 rc = LDD_F_SV_TYPE_MDT;
1603         else if (strncmp(dash + 1, "OST", 3) == 0)
1604                 rc = LDD_F_SV_TYPE_OST;
1605         else
1606                 return(-EINVAL);
1607
1608         index = simple_strtoul(dash + 4, endptr, 16);
1609         *idx = index;
1610         return rc;
1611 }
1612
1613 /*************** mount common betweeen server and client ***************/
1614
1615 /* Common umount */
1616 int lustre_common_put_super(struct super_block *sb)
1617 {
1618         int rc;
1619         ENTRY;
1620
1621         CDEBUG(D_MOUNT, "dropping sb %p\n", sb);
1622
1623         /* Drop a ref to the MGC */
1624         rc = lustre_stop_mgc(sb);
1625         if (rc && (rc != -ENOENT)) {
1626                 if (rc != -EBUSY) {
1627                         CERROR("Can't stop MGC: %d\n", rc);
1628                         RETURN(rc);
1629                 }
1630                 /* BUSY just means that there's some other obd that
1631                    needs the mgc.  Let him clean it up. */
1632                 CDEBUG(D_MOUNT, "MGC still in use\n");
1633         }
1634         /* Drop a ref to the mounted disk */
1635         lustre_put_lsi(sb);
1636         RETURN(rc);
1637 }
1638
1639 static void lmd_print(struct lustre_mount_data *lmd)
1640 {
1641         int i;
1642
1643         PRINT_CMD(PRINT_MASK, "  mount data:\n");
1644         if (lmd_is_client(lmd))
1645                 PRINT_CMD(PRINT_MASK, "profile: %s\n", lmd->lmd_profile);
1646         PRINT_CMD(PRINT_MASK, "device:  %s\n", lmd->lmd_dev);
1647         PRINT_CMD(PRINT_MASK, "flags:   %x\n", lmd->lmd_flags);
1648         if (lmd->lmd_opts)
1649                 PRINT_CMD(PRINT_MASK, "options: %s\n", lmd->lmd_opts);
1650         for (i = 0; i < lmd->lmd_exclude_count; i++) {
1651                 PRINT_CMD(PRINT_MASK, "exclude %d:  OST%04x\n", i,
1652                           lmd->lmd_exclude[i]);
1653         }
1654 }
1655
1656 /* Is this server on the exclusion list */
1657 int lustre_check_exclusion(struct super_block *sb, char *svname)
1658 {
1659         struct lustre_sb_info *lsi = s2lsi(sb);
1660         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1661         __u32 index;
1662         int i, rc;
1663         ENTRY;
1664
1665         rc = server_name2index(svname, &index, NULL);
1666         if (rc != LDD_F_SV_TYPE_OST)
1667                 /* Only exclude OSTs */
1668                 RETURN(0);
1669
1670         CDEBUG(D_MOUNT, "Check exclusion %s (%d) in %d of %s\n", svname,
1671                index, lmd->lmd_exclude_count, lmd->lmd_dev);
1672
1673         for(i = 0; i < lmd->lmd_exclude_count; i++) {
1674                 if (index == lmd->lmd_exclude[i]) {
1675                         CWARN("Excluding %s (on exclusion list)\n", svname);
1676                         RETURN(1);
1677                 }
1678         }
1679         RETURN(0);
1680 }
1681
1682 /* mount -v  -o exclude=lustre-OST0001:lustre-OST0002 -t lustre ... */
1683 static int lmd_make_exclusion(struct lustre_mount_data *lmd, char *ptr)
1684 {
1685         char *s1 = ptr, *s2;
1686         __u32 index, *exclude_list;
1687         int rc = 0, devmax;
1688         ENTRY;
1689
1690         /* The shortest an ost name can be is 8 chars: -OST0000.
1691            We don't actually know the fsname at this time, so in fact
1692            a user could specify any fsname. */
1693         devmax = strlen(ptr) / 8 + 1;
1694
1695         /* temp storage until we figure out how many we have */
1696         OBD_ALLOC(exclude_list, sizeof(index) * devmax);
1697         if (!exclude_list)
1698                 RETURN(-ENOMEM);
1699
1700         /* we enter this fn pointing at the '=' */
1701         while (*s1 && *s1 != ' ' && *s1 != ',') {
1702                 s1++;
1703                 rc = server_name2index(s1, &index, &s2);
1704                 if (rc < 0) {
1705                         CERROR("Can't parse server name '%s'\n", s1);
1706                         break;
1707                 }
1708                 if (rc == LDD_F_SV_TYPE_OST)
1709                         exclude_list[lmd->lmd_exclude_count++] = index;
1710                 else
1711                         CDEBUG(D_MOUNT, "ignoring exclude %.7s\n", s1);
1712                 s1 = s2;
1713                 /* now we are pointing at ':' (next exclude)
1714                    or ',' (end of excludes) */
1715
1716                 if (lmd->lmd_exclude_count >= devmax)
1717                         break;
1718         }
1719         if (rc >= 0) /* non-err */
1720                 rc = 0;
1721
1722         if (lmd->lmd_exclude_count) {
1723                 /* permanent, freed in lustre_free_lsi */
1724                 OBD_ALLOC(lmd->lmd_exclude, sizeof(index) *
1725                           lmd->lmd_exclude_count);
1726                 if (lmd->lmd_exclude) {
1727                         memcpy(lmd->lmd_exclude, exclude_list,
1728                                sizeof(index) * lmd->lmd_exclude_count);
1729                 } else {
1730                         rc = -ENOMEM;
1731                         lmd->lmd_exclude_count = 0;
1732                 }
1733         }
1734         OBD_FREE(exclude_list, sizeof(index) * devmax);
1735         RETURN(rc);
1736 }
1737
1738 /* mount -v -t lustre uml1:uml2:/lustre-client /mnt/lustre */
1739 static int lmd_parse(char *options, struct lustre_mount_data *lmd)
1740 {
1741         char *s1, *s2, *devname = NULL;
1742         struct lustre_mount_data *raw = (struct lustre_mount_data *)options;
1743         int rc = 0;
1744         ENTRY;
1745
1746         LASSERT(lmd);
1747         if (!options) {
1748                 LCONSOLE_ERROR("Missing mount data: check that "
1749                                "/sbin/mount.lustre is installed.\n");
1750                 RETURN(-EINVAL);
1751         }
1752
1753         /* Options should be a string - try to detect old lmd data */
1754         if ((raw->lmd_magic & 0xffffff00) == (LMD_MAGIC & 0xffffff00)) {
1755                 LCONSOLE_ERROR("You're using an old version of "
1756                                "/sbin/mount.lustre.  Please install version "
1757                                "%s\n", LUSTRE_VERSION_STRING);
1758                 RETURN(-EINVAL);
1759         }
1760         lmd->lmd_magic = LMD_MAGIC;
1761
1762         /* Set default flags here */
1763
1764         s1 = options;
1765         while (*s1) {
1766                 int clear = 0;
1767                 /* Skip whitespace and extra commas */
1768                 while (*s1 == ' ' || *s1 == ',')
1769                         s1++;
1770
1771                 /* Client options are parsed in ll_options: eg. flock,
1772                    user_xattr, acl */
1773
1774                 /* Parse non-ldiskfs options here. Rather than modifying
1775                    ldiskfs, we just zero these out here */
1776                 if (strncmp(s1, "abort_recov", 11) == 0) {
1777                         lmd->lmd_flags |= LMD_FLG_ABORT_RECOV;
1778                         clear++;
1779                 } else if (strncmp(s1, "nosvc", 5) == 0) {
1780                         lmd->lmd_flags |= LMD_FLG_NOSVC;
1781                         clear++;
1782                 /* ost exclusion list */
1783                 } else if (strncmp(s1, "exclude=", 8) == 0) {
1784                         rc = lmd_make_exclusion(lmd, s1 + 7);
1785                         if (rc)
1786                                 goto invalid;
1787                         clear++;
1788                 }
1789
1790                 /* Linux 2.4 doesn't pass the device, so we stuck it at the
1791                    end of the options. */
1792                 else if (strncmp(s1, "device=", 7) == 0) {
1793                         devname = s1 + 7;
1794                         /* terminate options right before device.  device
1795                            must be the last one. */
1796                         *s1 = '\0';
1797                         break;
1798                 }
1799
1800                 /* Find next opt */
1801                 s2 = strchr(s1, ',');
1802                 if (s2 == NULL) {
1803                         if (clear)
1804                                 *s1 = '\0';
1805                         break;
1806                 }
1807                 s2++;
1808                 if (clear)
1809                         memmove(s1, s2, strlen(s2) + 1);
1810                 else
1811                         s1 = s2;
1812         }
1813
1814         if (!devname) {
1815                 LCONSOLE_ERROR("Can't find the device name "
1816                                "(need mount option 'device=...')\n");
1817                 goto invalid;
1818         }
1819
1820         s1 = strrchr(devname, ':');
1821         if (s1) {
1822                 lmd->lmd_flags = LMD_FLG_CLIENT;
1823                 /* Remove leading /s from fsname */
1824                 while (*++s1 == '/') ;
1825                 /* Freed in lustre_free_lsi */
1826                 OBD_ALLOC(lmd->lmd_profile, strlen(s1) + 8);
1827                 if (!lmd->lmd_profile)
1828                         RETURN(-ENOMEM);
1829                 sprintf(lmd->lmd_profile, "%s-client", s1);
1830         }
1831
1832         /* Freed in lustre_free_lsi */
1833         OBD_ALLOC(lmd->lmd_dev, strlen(devname) + 1);
1834         if (!lmd->lmd_dev)
1835                 RETURN(-ENOMEM);
1836         strcpy(lmd->lmd_dev, devname);
1837
1838         /* Save mount options */
1839         s1 = options + strlen(options) - 1;
1840         while (s1 >= options && (*s1 == ',' || *s1 == ' '))
1841                 *s1-- = 0;
1842         if (*options != 0) {
1843                 /* Freed in lustre_free_lsi */
1844                 OBD_ALLOC(lmd->lmd_opts, strlen(options) + 1);
1845                 if (!lmd->lmd_opts)
1846                         RETURN(-ENOMEM);
1847                 strcpy(lmd->lmd_opts, options);
1848         }
1849
1850         lmd->lmd_magic = LMD_MAGIC;
1851
1852         lmd_print(lmd);
1853         RETURN(rc);
1854
1855 invalid:
1856         CERROR("Bad mount options %s\n", options);
1857         RETURN(-EINVAL);
1858 }
1859
1860
1861 /* Common mount */
1862 int lustre_fill_super(struct super_block *sb, void *data, int silent)
1863 {
1864         struct lustre_mount_data *lmd;
1865         struct lustre_sb_info *lsi;
1866         int rc;
1867         ENTRY;
1868
1869         CDEBUG(D_MOUNT|D_VFSTRACE, "VFS Op: sb %p\n", sb);
1870
1871         lsi = lustre_init_lsi(sb);
1872         if (!lsi)
1873                 RETURN(-ENOMEM);
1874         lmd = lsi->lsi_lmd;
1875
1876         /* Figure out the lmd from the mount options */
1877         if (lmd_parse((char *)data, lmd)) {
1878                 lustre_put_lsi(sb);
1879                 RETURN(-EINVAL);
1880         }
1881
1882         if (lmd_is_client(lmd)) {
1883                 CDEBUG(D_MOUNT, "Mounting client %s\n", lmd->lmd_profile);
1884                 if (!client_fill_super) {
1885                         LCONSOLE_ERROR("Nothing registered for client mount!"
1886                                " Is the 'lustre' module loaded?\n");
1887                         rc = -ENODEV;
1888                 } else {
1889                         rc = lustre_start_mgc(sb);
1890                         if (rc) {
1891                                 lustre_stop_mgc(sb);
1892                                 goto out;
1893                         }
1894                         /* Connect and start */
1895                         /* (should always be ll_fill_super) */
1896                         rc = (*client_fill_super)(sb);
1897                         /* c_f_s will call lustre_common_put_super on failure */
1898
1899                 }
1900         } else {
1901                 CDEBUG(D_MOUNT, "Mounting server from %s\n", lmd->lmd_dev);
1902                 lsi->lsi_flags |= LSI_SERVER;
1903                 rc = server_fill_super(sb);
1904                 /* s_f_s calls lustre_start_mgc after the mount because we need
1905                    the MGS nids which are stored on disk.  Plus, we may
1906                    need to start the MGS first. */
1907                 /* s_f_s will call server_put_super on failure */
1908         }
1909
1910 out:
1911         if (rc){
1912                 CERROR("Unable to mount %s (%d)\n",
1913                        s2lsi(sb) ? lmd->lmd_dev : "", rc);
1914         } else {
1915                 CDEBUG(D_SUPER, "mount %s complete\n", lmd->lmd_dev);
1916         }
1917         RETURN(rc);
1918 }
1919
1920
1921 /* We can't call ll_fill_super by name because it lives in a module that
1922    must be loaded after this one. */
1923 void lustre_register_client_fill_super(int (*cfs)(struct super_block *sb))
1924 {
1925         client_fill_super = cfs;
1926 }
1927
1928 /***************** FS registration ******************/
1929
1930 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
1931 /* 2.5 and later */
1932 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18))
1933 struct super_block * lustre_get_sb(struct file_system_type *fs_type,
1934                                int flags, const char *devname, void * data)
1935 {
1936         /* calls back in fill super */
1937         /* we could append devname= onto options (*data) here,
1938            but 2.4 doesn't get devname.  So we do it in mount_lustre.c */
1939         return get_sb_nodev(fs_type, flags, data, lustre_fill_super);
1940 }
1941 #else
1942 int lustre_get_sb(struct file_system_type *fs_type,
1943                                int flags, const char *devname, void * data,
1944                                struct vfsmount *mnt)
1945 {
1946         /* calls back in fill super */
1947         /* we could append devname= onto options (*data) here,
1948            but 2.4 doesn't get devname.  So we do it in mount_lustre.c */
1949         return get_sb_nodev(fs_type, flags, data, lustre_fill_super, mnt);
1950 }
1951 #endif
1952
1953 struct file_system_type lustre_fs_type = {
1954         .owner        = THIS_MODULE,
1955         .name         = "lustre",
1956         .get_sb       = lustre_get_sb,
1957         .kill_sb      = kill_anon_super,
1958         .fs_flags     = FS_BINARY_MOUNTDATA,
1959 };
1960
1961 #else
1962 /* 2.4 */
1963 static struct super_block *lustre_read_super(struct super_block *sb,
1964                                              void *data, int silent)
1965 {
1966         int rc;
1967         ENTRY;
1968
1969         rc = lustre_fill_super(sb, data, silent);
1970         if (rc)
1971                 RETURN(NULL);
1972         RETURN(sb);
1973 }
1974
1975 static struct file_system_type lustre_fs_type = {
1976         .owner          = THIS_MODULE,
1977         .name           = "lustre",
1978         .fs_flags       = FS_NFSEXP_FSID,
1979         .read_super     = lustre_read_super,
1980 };
1981 #endif
1982
1983 int lustre_register_fs(void)
1984 {
1985         return register_filesystem(&lustre_fs_type);
1986 }
1987
1988 int lustre_unregister_fs(void)
1989 {
1990         return unregister_filesystem(&lustre_fs_type);
1991 }
1992
1993 EXPORT_SYMBOL(lustre_register_client_fill_super);
1994 EXPORT_SYMBOL(lustre_common_put_super);
1995 EXPORT_SYMBOL(lustre_process_log);
1996 EXPORT_SYMBOL(lustre_end_log);
1997 EXPORT_SYMBOL(server_get_mount);
1998 EXPORT_SYMBOL(server_put_mount);
1999 EXPORT_SYMBOL(server_register_target);
2000 EXPORT_SYMBOL(server_name2index);
2001 EXPORT_SYMBOL(server_mti_print);
2002 EXPORT_SYMBOL(do_lcfg);
2003
2004