Whamcloud - gitweb
b=10719
[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
1097         RETURN(rc);
1098 }
1099
1100 /***************** lustre superblock **************/
1101
1102 struct lustre_sb_info *lustre_init_lsi(struct super_block *sb)
1103 {
1104         struct lustre_sb_info *lsi = NULL;
1105         ENTRY;
1106
1107         OBD_ALLOC(lsi, sizeof(*lsi));
1108         if (!lsi)
1109                 RETURN(NULL);
1110         OBD_ALLOC(lsi->lsi_lmd, sizeof(*lsi->lsi_lmd));
1111         if (!lsi->lsi_lmd) {
1112                 OBD_FREE(lsi, sizeof(*lsi));
1113                 RETURN(NULL);
1114         }
1115
1116         lsi->lsi_lmd->lmd_exclude_count = 0;
1117         s2lsi_nocast(sb) = lsi;
1118         /* we take 1 extra ref for our setup */
1119         atomic_set(&lsi->lsi_mounts, 1);
1120
1121         /* Default umount style */
1122         lsi->lsi_flags = LSI_UMOUNT_FAILOVER;
1123         RETURN(lsi);
1124 }
1125
1126 static int lustre_free_lsi(struct super_block *sb)
1127 {
1128         struct lustre_sb_info *lsi = s2lsi(sb);
1129         ENTRY;
1130
1131         if (!lsi)
1132                 RETURN(0);
1133
1134         CDEBUG(D_MOUNT, "Freeing lsi\n");
1135
1136         /* someone didn't call server_put_mount. */
1137         LASSERT(atomic_read(&lsi->lsi_mounts) == 0);
1138
1139         if (lsi->lsi_ldd != NULL)
1140                 OBD_FREE(lsi->lsi_ldd, sizeof(*lsi->lsi_ldd));
1141
1142         if (lsi->lsi_lmd != NULL) {
1143                 if (lsi->lsi_lmd->lmd_dev != NULL)
1144                         OBD_FREE(lsi->lsi_lmd->lmd_dev,
1145                                  strlen(lsi->lsi_lmd->lmd_dev) + 1);
1146                 if (lsi->lsi_lmd->lmd_profile != NULL)
1147                         OBD_FREE(lsi->lsi_lmd->lmd_profile,
1148                                  strlen(lsi->lsi_lmd->lmd_profile) + 1);
1149                 if (lsi->lsi_lmd->lmd_opts != NULL)
1150                         OBD_FREE(lsi->lsi_lmd->lmd_opts,
1151                                  strlen(lsi->lsi_lmd->lmd_opts) + 1);
1152                 if (lsi->lsi_lmd->lmd_exclude_count)
1153                         OBD_FREE(lsi->lsi_lmd->lmd_exclude,
1154                                  sizeof(lsi->lsi_lmd->lmd_exclude[0]) *
1155                                  lsi->lsi_lmd->lmd_exclude_count);
1156                 OBD_FREE(lsi->lsi_lmd, sizeof(*lsi->lsi_lmd));
1157         }
1158
1159         LASSERT(lsi->lsi_llsbi == NULL);
1160
1161         OBD_FREE(lsi, sizeof(*lsi));
1162         s2lsi_nocast(sb) = NULL;
1163
1164         RETURN(0);
1165 }
1166
1167 /* The lsi has one reference for every server that is using the disk -
1168    e.g. MDT, MGS, and potentially MGC */
1169 static int lustre_put_lsi(struct super_block *sb)
1170 {
1171         struct lustre_sb_info *lsi = s2lsi(sb);
1172         ENTRY;
1173
1174         LASSERT(lsi);
1175
1176         CDEBUG(D_MOUNT, "put %p %d\n", sb, atomic_read(&lsi->lsi_mounts));
1177
1178         if (atomic_dec_and_test(&lsi->lsi_mounts)) {
1179                 lustre_free_lsi(sb);
1180                 RETURN(1);
1181         }
1182         RETURN(0);
1183 }
1184
1185 /*************** server mount ******************/
1186
1187 /* Kernel mount using mount options in MOUNT_DATA_FILE */
1188 static struct vfsmount *server_kernel_mount(struct super_block *sb)
1189 {
1190         struct lvfs_run_ctxt mount_ctxt;
1191         struct lustre_sb_info *lsi = s2lsi(sb);
1192         struct lustre_disk_data *ldd;
1193         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1194         struct vfsmount *mnt;
1195         char *options = NULL;
1196         unsigned long page, s_flags;
1197         int rc;
1198         ENTRY;
1199
1200         OBD_ALLOC(ldd, sizeof(*ldd));
1201         if (!ldd)
1202                 RETURN(ERR_PTR(-ENOMEM));
1203
1204         /* In the past, we have always used flags = 0.
1205            Note ext3/ldiskfs can't be mounted ro. */
1206         s_flags = sb->s_flags;
1207
1208         /* Pre-mount ldiskfs to read the MOUNT_DATA_FILE */
1209         CDEBUG(D_MOUNT, "Pre-mount ldiskfs %s\n", lmd->lmd_dev);
1210         mnt = ll_kern_mount("ldiskfs", s_flags, lmd->lmd_dev, 0);
1211         if (IS_ERR(mnt)) {
1212                 rc = PTR_ERR(mnt);
1213 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
1214                 CERROR("premount %s:%#lx ldiskfs failed (%d), is the ldiskfs "
1215                        "module available?\n", lmd->lmd_dev, s_flags, rc);
1216                 GOTO(out_free, rc);
1217 #else
1218                 /* If ldisk fails, try ext3 */
1219                 mnt = ll_kern_mount("ext3", s_flags, lmd->lmd_dev, 0);
1220                 if (IS_ERR(mnt)) {
1221                         rc = PTR_ERR(mnt);
1222                         CERROR("premount ext3 failed: rc = %d\n", rc);
1223                         GOTO(out_free, rc);
1224                 }
1225 #endif
1226         }
1227
1228         OBD_SET_CTXT_MAGIC(&mount_ctxt);
1229         mount_ctxt.pwdmnt = mnt;
1230         mount_ctxt.pwd = mnt->mnt_root;
1231         mount_ctxt.fs = get_ds();
1232
1233         rc = ldd_parse(&mount_ctxt, ldd);
1234         unlock_mntput(mnt);
1235
1236         if (rc) {
1237                 CERROR("premount parse options failed: rc = %d\n", rc);
1238                 GOTO(out_free, rc);
1239         }
1240
1241         /* Done with our pre-mount, now do the real mount. */
1242
1243         /* Glom up mount options */
1244         page = __get_free_page(GFP_KERNEL);
1245         if (!page)
1246                 GOTO(out_free, rc = -ENOMEM);
1247
1248         options = (char *)page;
1249         memset(options, 0, CFS_PAGE_SIZE);
1250         strncpy(options, ldd->ldd_mount_opts, CFS_PAGE_SIZE - 2);
1251
1252         /* Add in any mount-line options */
1253         if (lmd->lmd_opts && (*(lmd->lmd_opts) != 0)) {
1254                 int len = CFS_PAGE_SIZE - strlen(options) - 2;
1255                 if (*options != 0)
1256                         strcat(options, ",");
1257                 strncat(options, lmd->lmd_opts, len);
1258         }
1259
1260         /* Special permanent mount flags */
1261         if (IS_OST(ldd))
1262             s_flags |= MS_NOATIME | MS_NODIRATIME;
1263
1264         CDEBUG(D_MOUNT, "kern_mount: %s %s %s\n",
1265                MT_STR(ldd), lmd->lmd_dev, options);
1266         mnt = ll_kern_mount(MT_STR(ldd), s_flags, lmd->lmd_dev,
1267                             (void *)options);
1268         free_page(page);
1269         if (IS_ERR(mnt)) {
1270                 rc = PTR_ERR(mnt);
1271                 CERROR("ll_kern_mount failed: rc = %d\n", rc);
1272                 GOTO(out_free, rc);
1273         }
1274
1275         lsi->lsi_ldd = ldd;   /* freed at lsi cleanup */
1276         CDEBUG(D_SUPER, "%s: mnt = %p\n", lmd->lmd_dev, mnt);
1277         RETURN(mnt);
1278
1279 out_free:
1280         OBD_FREE(ldd, sizeof(*ldd));
1281         lsi->lsi_ldd = NULL;
1282         RETURN(ERR_PTR(rc));
1283 }
1284
1285 static void server_wait_finished(struct vfsmount *mnt)
1286 {
1287         wait_queue_head_t   waitq;
1288         struct l_wait_info  lwi;
1289         int                 retries = 120;
1290
1291         init_waitqueue_head(&waitq);
1292
1293         while ((atomic_read(&mnt->mnt_count) > 1) && (retries > 0)) {
1294                 LCONSOLE_WARN("Mount still busy with %d refs, waiting for "
1295                               "%d secs...\n",
1296                               atomic_read(&mnt->mnt_count), retries);
1297
1298                 /* Wait for a bit */
1299                 retries -= 5;
1300                 lwi = LWI_TIMEOUT(5 * HZ, NULL, NULL);
1301                 l_wait_event(waitq, 0, &lwi);
1302         }
1303         if (atomic_read(&mnt->mnt_count) > 1) {
1304                 CERROR("Mount %p is still busy (%d refs), giving up.\n",
1305                        mnt, atomic_read(&mnt->mnt_count));
1306         }
1307 }
1308
1309 static void server_put_super(struct super_block *sb)
1310 {
1311         struct lustre_sb_info *lsi = s2lsi(sb);
1312         struct obd_device     *obd;
1313         struct vfsmount       *mnt = lsi->lsi_srv_mnt;
1314         char *tmpname, *extraname = NULL;
1315         int tmpname_sz;
1316         int lddflags = lsi->lsi_ldd->ldd_flags;
1317         int lsiflags = lsi->lsi_flags;
1318         int rc;
1319         ENTRY;
1320
1321         LASSERT(lsiflags & LSI_SERVER);
1322
1323         tmpname_sz = strlen(lsi->lsi_ldd->ldd_svname) + 1;
1324         OBD_ALLOC(tmpname, tmpname_sz);
1325         memcpy(tmpname, lsi->lsi_ldd->ldd_svname, tmpname_sz);
1326         CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1327
1328         /* Stop the target */
1329         if (IS_MDT(lsi->lsi_ldd) || IS_OST(lsi->lsi_ldd)) {
1330                 struct lustre_profile *lprof = NULL;
1331
1332                 /* tell the mgc to drop the config log */
1333                 lustre_end_log(sb, lsi->lsi_ldd->ldd_svname, NULL);
1334
1335                 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1336                    If there are any setup/cleanup errors, save the lov
1337                    name for safety cleanup later. */
1338                 lprof = class_get_profile(lsi->lsi_ldd->ldd_svname);
1339                 if (lprof && lprof->lp_osc) {
1340                         OBD_ALLOC(extraname, strlen(lprof->lp_osc) + 1);
1341                         strcpy(extraname, lprof->lp_osc);
1342                 }
1343
1344                 obd = class_name2obd(lsi->lsi_ldd->ldd_svname);
1345                 if (obd) {
1346                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1347                         if (lsi->lsi_flags & LSI_UMOUNT_FORCE)
1348                                 obd->obd_force = 1;
1349                         if (lsi->lsi_flags & LSI_UMOUNT_FAILOVER)
1350                                 obd->obd_fail = 1;
1351                         /* We can't seem to give an error return code
1352                            to .put_super, so we better make sure we clean up! */
1353                         obd->obd_force = 1;
1354                         class_manual_cleanup(obd);
1355                 } else {
1356                         CERROR("no obd %s\n", lsi->lsi_ldd->ldd_svname);
1357                         server_deregister_mount(lsi->lsi_ldd->ldd_svname);
1358                 }
1359
1360         }
1361
1362         /* If they wanted the mgs to stop separately from the mdt, they
1363            should have put it on a different device. */
1364         if (IS_MGS(lsi->lsi_ldd)) {
1365                 /* stop the mgc before the mgs so the connection gets cleaned
1366                    up */
1367                 lustre_stop_mgc(sb);
1368                 server_stop_mgs(sb);
1369         }
1370
1371         /* Clean the mgc and sb */
1372         rc = lustre_common_put_super(sb);
1373         /* FIXME how can I report a failure to umount? */
1374
1375         /* Wait for the targets to really clean up - can't exit (and let the
1376            sb get destroyed) while the mount is still in use */
1377         server_wait_finished(mnt);
1378
1379         /* drop the One True Mount */
1380         unlock_mntput(mnt);
1381
1382         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1383            until the target is really gone so that our type refcount check
1384            is right. */
1385         server_stop_servers(lddflags, lsiflags);
1386
1387         /* In case of startup or cleanup err, stop related obds */
1388         if (extraname) {
1389                 obd = class_name2obd(extraname);
1390                 if (obd) {
1391                         CWARN("Cleaning orphaned obd %s\n", extraname);
1392                         obd->obd_force = 1;
1393                         class_manual_cleanup(obd);
1394                 }
1395                 OBD_FREE(extraname, strlen(extraname) + 1);
1396         }
1397
1398         LCONSOLE_WARN("server umount %s complete\n", tmpname);
1399         OBD_FREE(tmpname, tmpname_sz);
1400         EXIT;
1401 }
1402 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1403 static void server_umount_begin(struct vfsmount *vfsmnt, int flags)
1404 {
1405         struct super_block *sb = vfsmnt->mnt_sb;
1406 #else
1407 static void server_umount_begin(struct super_block *sb)
1408 {
1409 #endif
1410         struct lustre_sb_info *lsi = s2lsi(sb);
1411         ENTRY;
1412
1413 #ifdef HAVE_UMOUNTBEGIN_VFSMOUNT
1414         if (!(flags & MNT_FORCE)) {
1415                 EXIT;
1416                 return;
1417         }
1418 #endif
1419
1420         CDEBUG(D_MOUNT, "umount -f\n");
1421         /* umount = failover
1422            umount -f = force
1423            no third way to do non-force, non-failover */
1424         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1425         lsi->lsi_flags |= LSI_UMOUNT_FORCE;
1426         EXIT;
1427 }
1428
1429 #ifndef HAVE_STATFS_DENTRY_PARAM
1430 static int server_statfs (struct super_block *sb, struct kstatfs *buf)
1431 {
1432 #else
1433 static int server_statfs (struct dentry *dentry, struct kstatfs *buf)
1434 {
1435         struct super_block *sb = dentry->d_sb;
1436 #endif
1437         struct vfsmount *mnt = s2lsi(sb)->lsi_srv_mnt;
1438         ENTRY;
1439
1440         if (mnt && mnt->mnt_sb && mnt->mnt_sb->s_op->statfs) {
1441 #ifdef HAVE_STATFS_DENTRY_PARAM
1442                 int rc = mnt->mnt_sb->s_op->statfs(mnt->mnt_root, buf);
1443 #else
1444                 int rc = mnt->mnt_sb->s_op->statfs(mnt->mnt_sb, buf);
1445 #endif
1446                 if (!rc) {
1447                         buf->f_type = sb->s_magic;
1448                         RETURN(0);
1449                 }
1450         }
1451
1452         /* just return 0 */
1453         buf->f_type = sb->s_magic;
1454         buf->f_bsize = sb->s_blocksize;
1455         buf->f_blocks = 1;
1456         buf->f_bfree = 0;
1457         buf->f_bavail = 0;
1458         buf->f_files = 1;
1459         buf->f_ffree = 0;
1460         buf->f_namelen = NAME_MAX;
1461         RETURN(0);
1462 }
1463
1464 static struct super_operations server_ops =
1465 {
1466         .put_super      = server_put_super,
1467         .umount_begin   = server_umount_begin, /* umount -f */
1468         .statfs         = server_statfs,
1469 };
1470
1471 #define log2(n) ffz(~(n))
1472 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
1473
1474 static int server_fill_super_common(struct super_block *sb)
1475 {
1476         struct inode *root = 0;
1477         ENTRY;
1478
1479         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
1480
1481         sb->s_blocksize = 4096;
1482         sb->s_blocksize_bits = log2(sb->s_blocksize);
1483         sb->s_magic = LUSTRE_SUPER_MAGIC;
1484         sb->s_maxbytes = 0; //PAGE_CACHE_MAXBYTES;
1485         sb->s_flags |= MS_RDONLY;
1486         sb->s_op = &server_ops;
1487
1488         root = new_inode(sb);
1489         if (!root) {
1490                 CERROR("Can't make root inode\n");
1491                 RETURN(-EIO);
1492         }
1493
1494         /* returns -EIO for every operation */
1495         /* make_bad_inode(root); -- badness - can't umount */
1496         /* apparently we need to be a directory for the mount to finish */
1497         root->i_mode = S_IFDIR;
1498
1499         sb->s_root = d_alloc_root(root);
1500         if (!sb->s_root) {
1501                 CERROR("Can't make root dentry\n");
1502                 iput(root);
1503                 RETURN(-EIO);
1504         }
1505
1506         RETURN(0);
1507 }
1508
1509 static int server_fill_super(struct super_block *sb)
1510 {
1511         struct lustre_sb_info *lsi = s2lsi(sb);
1512         struct vfsmount *mnt;
1513         int rc;
1514         ENTRY;
1515
1516         /* the One True Mount */
1517         mnt = server_kernel_mount(sb);
1518         if (IS_ERR(mnt)) {
1519                 rc = PTR_ERR(mnt);
1520                 CERROR("Unable to mount device %s: %d\n",
1521                       lsi->lsi_lmd->lmd_dev, rc);
1522                 lustre_put_lsi(sb);
1523                 GOTO(out, rc);
1524         }
1525         lsi->lsi_srv_mnt = mnt;
1526
1527         LASSERT(lsi->lsi_ldd);
1528         CDEBUG(D_MOUNT, "Found service %s for fs '%s' on device %s\n",
1529                lsi->lsi_ldd->ldd_svname, lsi->lsi_ldd->ldd_fsname,
1530                lsi->lsi_lmd->lmd_dev);
1531
1532         if (class_name2obd(lsi->lsi_ldd->ldd_svname)) {
1533                 LCONSOLE_ERROR("The target named %s is already running. "
1534                                "Double-mount may have compromised the disk "
1535                                "journal.\n", lsi->lsi_ldd->ldd_svname);
1536                 unlock_mntput(mnt);
1537                 lustre_put_lsi(sb);
1538                 GOTO(out, rc = -EALREADY);
1539         }
1540
1541         /* start MGS before MGC */
1542         if (IS_MGS(lsi->lsi_ldd)) {
1543                 rc = server_start_mgs(sb);
1544                 if (rc)
1545                         GOTO(out_mnt, rc);
1546         }
1547
1548         rc = lustre_start_mgc(sb);
1549         if (rc)
1550                 GOTO(out_mnt, rc);
1551
1552         /* Set up all obd devices for service */
1553         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOSVC) &&
1554                 (IS_OST(lsi->lsi_ldd) || IS_MDT(lsi->lsi_ldd))) {
1555                 rc = server_start_targets(sb, mnt);
1556                 if (rc < 0) {
1557                         CERROR("Unable to start targets: %d\n", rc);
1558                         GOTO(out_mnt, rc);
1559                 }
1560         /* FIXME overmount client here,
1561            or can we just start a client log and client_fill_super on this sb?
1562            We need to make sure server_put_super gets called too - ll_put_super
1563            calls lustre_common_put_super; check there for LSI_SERVER flag,
1564            call s_p_s if so.
1565            Probably should start client from new thread so we can return.
1566            Client will not finish until all servers are connected.
1567            Note - MGS-only server does NOT get a client, since there is no
1568            lustre fs associated - the MGS is for all lustre fs's */
1569         }
1570
1571         rc = server_fill_super_common(sb);
1572         if (rc)
1573                 GOTO(out_mnt, rc);
1574
1575         LCONSOLE_WARN("Server %s on device %s has started\n",
1576                       lsi->lsi_ldd->ldd_svname, lsi->lsi_lmd->lmd_dev);
1577
1578         RETURN(0);
1579
1580 out_mnt:
1581         server_put_super(sb);
1582 out:
1583         RETURN(rc);
1584 }
1585
1586 /* Get the index from the obd name.
1587    rc = server type, or
1588    rc < 0  on error
1589    if endptr isn't NULL it is set to end of name */
1590 int server_name2index(char *svname, __u32 *idx, char **endptr)
1591 {
1592         unsigned long index;
1593         int rc;
1594         char *dash = strchr(svname, '-');
1595         if (!dash)
1596                 return(-EINVAL);
1597
1598         if (strncmp(dash + 1, "MDT", 3) == 0)
1599                 rc = LDD_F_SV_TYPE_MDT;
1600         else if (strncmp(dash + 1, "OST", 3) == 0)
1601                 rc = LDD_F_SV_TYPE_OST;
1602         else
1603                 return(-EINVAL);
1604
1605         index = simple_strtoul(dash + 4, endptr, 16);
1606         *idx = index;
1607         return rc;
1608 }
1609
1610 /*************** mount common betweeen server and client ***************/
1611
1612 /* Common umount */
1613 int lustre_common_put_super(struct super_block *sb)
1614 {
1615         int rc;
1616         ENTRY;
1617
1618         CDEBUG(D_MOUNT, "dropping sb %p\n", sb);
1619
1620         /* Drop a ref to the MGC */
1621         rc = lustre_stop_mgc(sb);
1622         if (rc && (rc != -ENOENT)) {
1623                 if (rc != -EBUSY) {
1624                         CERROR("Can't stop MGC: %d\n", rc);
1625                         RETURN(rc);
1626                 }
1627                 /* BUSY just means that there's some other obd that
1628                    needs the mgc.  Let him clean it up. */
1629                 CDEBUG(D_MOUNT, "MGC still in use\n");
1630         }
1631         /* Drop a ref to the mounted disk */
1632         lustre_put_lsi(sb);
1633         RETURN(rc);
1634 }
1635
1636 static void lmd_print(struct lustre_mount_data *lmd)
1637 {
1638         int i;
1639
1640         PRINT_CMD(PRINT_MASK, "  mount data:\n");
1641         if (lmd_is_client(lmd))
1642                 PRINT_CMD(PRINT_MASK, "profile: %s\n", lmd->lmd_profile);
1643         PRINT_CMD(PRINT_MASK, "device:  %s\n", lmd->lmd_dev);
1644         PRINT_CMD(PRINT_MASK, "flags:   %x\n", lmd->lmd_flags);
1645         if (lmd->lmd_opts)
1646                 PRINT_CMD(PRINT_MASK, "options: %s\n", lmd->lmd_opts);
1647         for (i = 0; i < lmd->lmd_exclude_count; i++) {
1648                 PRINT_CMD(PRINT_MASK, "exclude %d:  OST%04x\n", i,
1649                           lmd->lmd_exclude[i]);
1650         }
1651 }
1652
1653 /* Is this server on the exclusion list */
1654 int lustre_check_exclusion(struct super_block *sb, char *svname)
1655 {
1656         struct lustre_sb_info *lsi = s2lsi(sb);
1657         struct lustre_mount_data *lmd = lsi->lsi_lmd;
1658         __u32 index;
1659         int i, rc;
1660         ENTRY;
1661
1662         rc = server_name2index(svname, &index, NULL);
1663         if (rc != LDD_F_SV_TYPE_OST)
1664                 /* Only exclude OSTs */
1665                 RETURN(0);
1666
1667         CDEBUG(D_MOUNT, "Check exclusion %s (%d) in %d of %s\n", svname,
1668                index, lmd->lmd_exclude_count, lmd->lmd_dev);
1669
1670         for(i = 0; i < lmd->lmd_exclude_count; i++) {
1671                 if (index == lmd->lmd_exclude[i]) {
1672                         CWARN("Excluding %s (on exclusion list)\n", svname);
1673                         RETURN(1);
1674                 }
1675         }
1676         RETURN(0);
1677 }
1678
1679 /* mount -v  -o exclude=lustre-OST0001:lustre-OST0002 -t lustre ... */
1680 static int lmd_make_exclusion(struct lustre_mount_data *lmd, char *ptr)
1681 {
1682         char *s1 = ptr, *s2;
1683         __u32 index, *exclude_list;
1684         int rc = 0, devmax;
1685         ENTRY;
1686
1687         /* The shortest an ost name can be is 8 chars: -OST0000.
1688            We don't actually know the fsname at this time, so in fact
1689            a user could specify any fsname. */
1690         devmax = strlen(ptr) / 8 + 1;
1691
1692         /* temp storage until we figure out how many we have */
1693         OBD_ALLOC(exclude_list, sizeof(index) * devmax);
1694         if (!exclude_list)
1695                 RETURN(-ENOMEM);
1696
1697         /* we enter this fn pointing at the '=' */
1698         while (*s1 && *s1 != ' ' && *s1 != ',') {
1699                 s1++;
1700                 rc = server_name2index(s1, &index, &s2);
1701                 if (rc < 0) {
1702                         CERROR("Can't parse server name '%s'\n", s1);
1703                         break;
1704                 }
1705                 if (rc == LDD_F_SV_TYPE_OST)
1706                         exclude_list[lmd->lmd_exclude_count++] = index;
1707                 else
1708                         CDEBUG(D_MOUNT, "ignoring exclude %.7s\n", s1);
1709                 s1 = s2;
1710                 /* now we are pointing at ':' (next exclude)
1711                    or ',' (end of excludes) */
1712
1713                 if (lmd->lmd_exclude_count >= devmax)
1714                         break;
1715         }
1716         if (rc >= 0) /* non-err */
1717                 rc = 0;
1718
1719         if (lmd->lmd_exclude_count) {
1720                 /* permanent, freed in lustre_free_lsi */
1721                 OBD_ALLOC(lmd->lmd_exclude, sizeof(index) *
1722                           lmd->lmd_exclude_count);
1723                 if (lmd->lmd_exclude) {
1724                         memcpy(lmd->lmd_exclude, exclude_list,
1725                                sizeof(index) * lmd->lmd_exclude_count);
1726                 } else {
1727                         rc = -ENOMEM;
1728                         lmd->lmd_exclude_count = 0;
1729                 }
1730         }
1731         OBD_FREE(exclude_list, sizeof(index) * devmax);
1732         RETURN(rc);
1733 }
1734
1735 /* mount -v -t lustre uml1:uml2:/lustre-client /mnt/lustre */
1736 static int lmd_parse(char *options, struct lustre_mount_data *lmd)
1737 {
1738         char *s1, *s2, *devname = NULL;
1739         struct lustre_mount_data *raw = (struct lustre_mount_data *)options;
1740         int rc = 0;
1741         ENTRY;
1742
1743         LASSERT(lmd);
1744         if (!options) {
1745                 LCONSOLE_ERROR("Missing mount data: check that "
1746                                "/sbin/mount.lustre is installed.\n");
1747                 RETURN(-EINVAL);
1748         }
1749
1750         /* Options should be a string - try to detect old lmd data */
1751         if ((raw->lmd_magic & 0xffffff00) == (LMD_MAGIC & 0xffffff00)) {
1752                 LCONSOLE_ERROR("You're using an old version of "
1753                                "/sbin/mount.lustre.  Please install version "
1754                                "%s\n", LUSTRE_VERSION_STRING);
1755                 RETURN(-EINVAL);
1756         }
1757         lmd->lmd_magic = LMD_MAGIC;
1758
1759         /* Set default flags here */
1760
1761         s1 = options;
1762         while (*s1) {
1763                 int clear = 0;
1764                 /* Skip whitespace and extra commas */
1765                 while (*s1 == ' ' || *s1 == ',')
1766                         s1++;
1767
1768                 /* Client options are parsed in ll_options: eg. flock,
1769                    user_xattr, acl */
1770
1771                 /* Parse non-ldiskfs options here. Rather than modifying
1772                    ldiskfs, we just zero these out here */
1773                 if (strncmp(s1, "abort_recov", 11) == 0) {
1774                         lmd->lmd_flags |= LMD_FLG_ABORT_RECOV;
1775                         clear++;
1776                 } else if (strncmp(s1, "nosvc", 5) == 0) {
1777                         lmd->lmd_flags |= LMD_FLG_NOSVC;
1778                         clear++;
1779                 /* ost exclusion list */
1780                 } else if (strncmp(s1, "exclude=", 8) == 0) {
1781                         rc = lmd_make_exclusion(lmd, s1 + 7);
1782                         if (rc)
1783                                 goto invalid;
1784                         clear++;
1785                 }
1786
1787                 /* Linux 2.4 doesn't pass the device, so we stuck it at the
1788                    end of the options. */
1789                 else if (strncmp(s1, "device=", 7) == 0) {
1790                         devname = s1 + 7;
1791                         /* terminate options right before device.  device
1792                            must be the last one. */
1793                         *s1 = '\0';
1794                         break;
1795                 }
1796
1797                 /* Find next opt */
1798                 s2 = strchr(s1, ',');
1799                 if (s2 == NULL) {
1800                         if (clear)
1801                                 *s1 = '\0';
1802                         break;
1803                 }
1804                 s2++;
1805                 if (clear)
1806                         memmove(s1, s2, strlen(s2) + 1);
1807                 else
1808                         s1 = s2;
1809         }
1810
1811         if (!devname) {
1812                 LCONSOLE_ERROR("Can't find the device name "
1813                                "(need mount option 'device=...')\n");
1814                 goto invalid;
1815         }
1816
1817         s1 = strrchr(devname, ':');
1818         if (s1) {
1819                 lmd->lmd_flags = LMD_FLG_CLIENT;
1820                 /* Remove leading /s from fsname */
1821                 while (*++s1 == '/') ;
1822                 /* Freed in lustre_free_lsi */
1823                 OBD_ALLOC(lmd->lmd_profile, strlen(s1) + 8);
1824                 if (!lmd->lmd_profile)
1825                         RETURN(-ENOMEM);
1826                 sprintf(lmd->lmd_profile, "%s-client", s1);
1827         }
1828
1829         /* Freed in lustre_free_lsi */
1830         OBD_ALLOC(lmd->lmd_dev, strlen(devname) + 1);
1831         if (!lmd->lmd_dev)
1832                 RETURN(-ENOMEM);
1833         strcpy(lmd->lmd_dev, devname);
1834
1835         /* Save mount options */
1836         s1 = options + strlen(options) - 1;
1837         while (s1 >= options && (*s1 == ',' || *s1 == ' '))
1838                 *s1-- = 0;
1839         if (*options != 0) {
1840                 /* Freed in lustre_free_lsi */
1841                 OBD_ALLOC(lmd->lmd_opts, strlen(options) + 1);
1842                 if (!lmd->lmd_opts)
1843                         RETURN(-ENOMEM);
1844                 strcpy(lmd->lmd_opts, options);
1845         }
1846
1847         lmd->lmd_magic = LMD_MAGIC;
1848
1849         lmd_print(lmd);
1850         RETURN(rc);
1851
1852 invalid:
1853         CERROR("Bad mount options %s\n", options);
1854         RETURN(-EINVAL);
1855 }
1856
1857
1858 /* Common mount */
1859 int lustre_fill_super(struct super_block *sb, void *data, int silent)
1860 {
1861         struct lustre_mount_data *lmd;
1862         struct lustre_sb_info *lsi;
1863         int rc;
1864         ENTRY;
1865
1866         CDEBUG(D_MOUNT|D_VFSTRACE, "VFS Op: sb %p\n", sb);
1867
1868         lsi = lustre_init_lsi(sb);
1869         if (!lsi)
1870                 RETURN(-ENOMEM);
1871         lmd = lsi->lsi_lmd;
1872
1873         /* Figure out the lmd from the mount options */
1874         if (lmd_parse((char *)data, lmd)) {
1875                 lustre_put_lsi(sb);
1876                 RETURN(-EINVAL);
1877         }
1878
1879         if (lmd_is_client(lmd)) {
1880                 CDEBUG(D_MOUNT, "Mounting client %s\n", lmd->lmd_profile);
1881                 if (!client_fill_super) {
1882                         LCONSOLE_ERROR("Nothing registered for client mount!"
1883                                " Is the 'lustre' module loaded?\n");
1884                         rc = -ENODEV;
1885                 } else {
1886                         rc = lustre_start_mgc(sb);
1887                         if (rc) {
1888                                 lustre_stop_mgc(sb);
1889                                 goto out;
1890                         }
1891                         /* Connect and start */
1892                         /* (should always be ll_fill_super) */
1893                         rc = (*client_fill_super)(sb);
1894                         /* c_f_s will call lustre_common_put_super on failure */
1895
1896                 }
1897         } else {
1898                 CDEBUG(D_MOUNT, "Mounting server from %s\n", lmd->lmd_dev);
1899                 lsi->lsi_flags |= LSI_SERVER;
1900                 rc = server_fill_super(sb);
1901                 /* s_f_s calls lustre_start_mgc after the mount because we need
1902                    the MGS nids which are stored on disk.  Plus, we may
1903                    need to start the MGS first. */
1904                 /* s_f_s will call server_put_super on failure */
1905         }
1906
1907 out:
1908         if (rc){
1909                 CERROR("Unable to mount %s (%d)\n",
1910                        s2lsi(sb) ? lmd->lmd_dev : "", rc);
1911         } else {
1912                 CDEBUG(D_SUPER, "mount %s complete\n", lmd->lmd_dev);
1913         }
1914         RETURN(rc);
1915 }
1916
1917
1918 /* We can't call ll_fill_super by name because it lives in a module that
1919    must be loaded after this one. */
1920 void lustre_register_client_fill_super(int (*cfs)(struct super_block *sb))
1921 {
1922         client_fill_super = cfs;
1923 }
1924
1925 /***************** FS registration ******************/
1926
1927 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
1928 /* 2.5 and later */
1929 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18))
1930 struct super_block * lustre_get_sb(struct file_system_type *fs_type,
1931                                int flags, const char *devname, void * data)
1932 {
1933         /* calls back in fill super */
1934         /* we could append devname= onto options (*data) here,
1935            but 2.4 doesn't get devname.  So we do it in mount_lustre.c */
1936         return get_sb_nodev(fs_type, flags, data, lustre_fill_super);
1937 }
1938 #else
1939 int lustre_get_sb(struct file_system_type *fs_type,
1940                                int flags, const char *devname, void * data,
1941                                struct vfsmount *mnt)
1942 {
1943         /* calls back in fill super */
1944         /* we could append devname= onto options (*data) here,
1945            but 2.4 doesn't get devname.  So we do it in mount_lustre.c */
1946         return get_sb_nodev(fs_type, flags, data, lustre_fill_super, mnt);
1947 }
1948 #endif
1949
1950 struct file_system_type lustre_fs_type = {
1951         .owner        = THIS_MODULE,
1952         .name         = "lustre",
1953         .get_sb       = lustre_get_sb,
1954         .kill_sb      = kill_anon_super,
1955         .fs_flags     = FS_BINARY_MOUNTDATA,
1956 };
1957
1958 #else
1959 /* 2.4 */
1960 static struct super_block *lustre_read_super(struct super_block *sb,
1961                                              void *data, int silent)
1962 {
1963         int rc;
1964         ENTRY;
1965
1966         rc = lustre_fill_super(sb, data, silent);
1967         if (rc)
1968                 RETURN(NULL);
1969         RETURN(sb);
1970 }
1971
1972 static struct file_system_type lustre_fs_type = {
1973         .owner          = THIS_MODULE,
1974         .name           = "lustre",
1975         .fs_flags       = FS_NFSEXP_FSID,
1976         .read_super     = lustre_read_super,
1977 };
1978 #endif
1979
1980 int lustre_register_fs(void)
1981 {
1982         return register_filesystem(&lustre_fs_type);
1983 }
1984
1985 int lustre_unregister_fs(void)
1986 {
1987         return unregister_filesystem(&lustre_fs_type);
1988 }
1989
1990 EXPORT_SYMBOL(lustre_register_client_fill_super);
1991 EXPORT_SYMBOL(lustre_common_put_super);
1992 EXPORT_SYMBOL(lustre_process_log);
1993 EXPORT_SYMBOL(lustre_end_log);
1994 EXPORT_SYMBOL(server_get_mount);
1995 EXPORT_SYMBOL(server_put_mount);
1996 EXPORT_SYMBOL(server_register_target);
1997 EXPORT_SYMBOL(server_name2index);
1998 EXPORT_SYMBOL(server_mti_print);
1999 EXPORT_SYMBOL(do_lcfg);
2000
2001