Whamcloud - gitweb
New release 2.15.64
[fs/lustre-release.git] / lustre / target / tgt_mount.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2013, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/obdclass/obd_mount_server.c
32  *
33  * Server mount routines
34  *
35  * Author: Nathan Rutman <nathan@clusterfs.com>
36  */
37 #define DEBUG_SUBSYSTEM S_CLASS
38 #define D_MOUNT (D_SUPER | D_CONFIG /* | D_WARNING */)
39
40 #include <linux/types.h>
41 #include <linux/generic-radix-tree.h>
42 #ifdef HAVE_LINUX_SELINUX_IS_ENABLED
43 #include <linux/selinux.h>
44 #endif
45 #include <linux/statfs.h>
46 #include <linux/version.h>
47 #include <linux/delay.h>
48 #include <linux/file.h>
49 #ifdef HAVE_FSMAP_H
50 #include <linux/fsmap.h>
51 #endif
52
53 #include <llog_swab.h>
54 #include <lustre_disk.h>
55 #include <uapi/linux/lustre/lustre_ioctl.h>
56 #include <lustre_log.h>
57 #include <uapi/linux/lustre/lustre_param.h>
58 #include <obd.h>
59 #include <obd_class.h>
60
61 #include "tgt_internal.h"
62
63 /*********** mount lookup *********/
64
65 static DEFINE_MUTEX(lustre_mount_info_lock);
66 static LIST_HEAD(server_mount_info_list);
67
68 static struct lustre_mount_info *server_find_mount(const char *name)
69 {
70         struct list_head *tmp;
71         struct lustre_mount_info *lmi;
72
73         ENTRY;
74         list_for_each(tmp, &server_mount_info_list) {
75                 lmi = list_entry(tmp, struct lustre_mount_info,
76                                  lmi_list_chain);
77                 if (strcmp(name, lmi->lmi_name) == 0)
78                         RETURN(lmi);
79         }
80         RETURN(NULL);
81 }
82
83 /* we must register an obd for a mount before we call the setup routine.
84  *_setup will call lustre_get_mount to get the mnt struct
85  * by obd_name, since we can't pass the pointer to setup.
86  */
87 static int server_register_mount(const char *name, struct super_block *sb)
88 {
89         struct lustre_mount_info *lmi;
90         char *name_cp;
91
92         ENTRY;
93         LASSERT(sb);
94
95         OBD_ALLOC(lmi, sizeof(*lmi));
96         if (!lmi)
97                 RETURN(-ENOMEM);
98         OBD_ALLOC(name_cp, strlen(name) + 1);
99         if (!name_cp) {
100                 OBD_FREE(lmi, sizeof(*lmi));
101                 RETURN(-ENOMEM);
102         }
103         strcpy(name_cp, name);
104
105         mutex_lock(&lustre_mount_info_lock);
106
107         if (server_find_mount(name)) {
108                 mutex_unlock(&lustre_mount_info_lock);
109                 OBD_FREE(lmi, sizeof(*lmi));
110                 OBD_FREE(name_cp, strlen(name) + 1);
111                 CERROR("Already registered %s\n", name);
112                 RETURN(-EEXIST);
113         }
114         lmi->lmi_name = name_cp;
115         lmi->lmi_sb = sb;
116         list_add(&lmi->lmi_list_chain, &server_mount_info_list);
117
118         mutex_unlock(&lustre_mount_info_lock);
119
120         CDEBUG(D_MOUNT, "register mount %p from %s\n", sb, name);
121
122         RETURN(0);
123 }
124
125 /* when an obd no longer needs a mount */
126 static int server_deregister_mount(const char *name)
127 {
128         struct lustre_mount_info *lmi;
129
130         ENTRY;
131         mutex_lock(&lustre_mount_info_lock);
132         lmi = server_find_mount(name);
133         if (!lmi) {
134                 mutex_unlock(&lustre_mount_info_lock);
135                 CERROR("%s not registered\n", name);
136                 RETURN(-ENOENT);
137         }
138
139         CDEBUG(D_MOUNT, "deregister mount %p from %s\n", lmi->lmi_sb, name);
140
141         OBD_FREE(lmi->lmi_name, strlen(lmi->lmi_name) + 1);
142         list_del(&lmi->lmi_list_chain);
143         OBD_FREE(lmi, sizeof(*lmi));
144         mutex_unlock(&lustre_mount_info_lock);
145
146         CFS_RACE(OBD_FAIL_MDS_LLOG_UMOUNT_RACE);
147         RETURN(0);
148 }
149
150 /* obd's look up a registered mount using their obdname. This is just
151  * for initial obd setup to find the mount struct.  It should not be
152  * called every time you want to mntget.
153  */
154 struct lustre_mount_info *server_get_mount(const char *name)
155 {
156         struct lustre_mount_info *lmi;
157         struct lustre_sb_info *lsi;
158
159         ENTRY;
160         mutex_lock(&lustre_mount_info_lock);
161         lmi = server_find_mount(name);
162         mutex_unlock(&lustre_mount_info_lock);
163         if (!lmi) {
164                 CERROR("Can't find mount for %s\n", name);
165                 RETURN(NULL);
166         }
167         lsi = s2lsi(lmi->lmi_sb);
168
169         kref_get(&lsi->lsi_mounts);
170
171         CDEBUG(D_MOUNT, "get mount %p from %s, refs=%d\n", lmi->lmi_sb,
172                name, kref_read(&lsi->lsi_mounts));
173
174         RETURN(lmi);
175 }
176 EXPORT_SYMBOL(server_get_mount);
177
178 /**
179  * server_put_mount: to be called from obd_cleanup methods
180  * @name:       obd name
181  * @dereg_mnt:  0 or 1 depending on whether the mount is to be deregistered or
182  * not
183  *
184  * The caller decides whether server_deregister_mount() needs to be called or
185  * not. Calling of server_deregister_mount() does not depend on refcounting on
186  * lsi because we could have say the mgs and mds on the same node and we
187  * unmount the mds, then the ref on the lsi would still be non-zero but we
188  * would still want to deregister the mds mount.
189  */
190 int server_put_mount(const char *name, bool dereg_mnt)
191 {
192         struct lustre_mount_info *lmi;
193         struct lustre_sb_info *lsi;
194
195         ENTRY;
196         mutex_lock(&lustre_mount_info_lock);
197         lmi = server_find_mount(name);
198         mutex_unlock(&lustre_mount_info_lock);
199         if (!lmi) {
200                 CERROR("Can't find mount for %s\n", name);
201                 RETURN(-ENOENT);
202         }
203         lsi = s2lsi(lmi->lmi_sb);
204
205         CDEBUG(D_MOUNT, "put mount %p from %s, refs=%d\n",
206                lmi->lmi_sb, name, kref_read(&lsi->lsi_mounts));
207
208         if (lustre_put_lsi(lmi->lmi_sb))
209                 CDEBUG(D_MOUNT, "Last put of mount %p from %s\n",
210                        lmi->lmi_sb, name);
211
212         if (dereg_mnt)
213                 /* this obd should never need the mount again */
214                 server_deregister_mount(name);
215
216         RETURN(0);
217 }
218 EXPORT_SYMBOL(server_put_mount);
219
220 /* Set up a MGS to serve startup logs */
221 static int server_start_mgs(struct super_block *sb)
222 {
223         struct lustre_sb_info *lsi = s2lsi(sb);
224         struct lustre_mount_info *lmi;
225         int rc = 0;
226
227         ENTRY;
228         /* It is impossible to have more than 1 MGS per node, since
229          * MGC wouldn't know which to connect to
230          */
231         lmi = server_find_mount(LUSTRE_MGS_OBDNAME);
232         if (lmi) {
233                 lsi = s2lsi(lmi->lmi_sb);
234                 LCONSOLE_ERROR("The MGS service was already started from server\n");
235                 RETURN(-EALREADY);
236         }
237
238         CDEBUG(D_CONFIG, "Start MGS service %s\n", LUSTRE_MGS_OBDNAME);
239
240         rc = server_register_mount(LUSTRE_MGS_OBDNAME, sb);
241         if (rc < 0)
242                 GOTO(report_err, rc);
243
244         rc = lustre_start_simple(LUSTRE_MGS_OBDNAME, LUSTRE_MGS_NAME,
245                                  LUSTRE_MGS_OBDNAME, NULL, NULL,
246                                  lsi->lsi_osd_obdname, NULL);
247         /* server_deregister_mount() is not called previously, for lsi
248          * and other stuff can't be freed cleanly when mgs calls
249          * server_put_mount() in error handling case (see b=17758),
250          * this problem is caused by a bug in mgs_init0, which forgot
251          * calling server_put_mount in error case.
252          */
253         if (rc < 0) {
254                 server_deregister_mount(LUSTRE_MGS_OBDNAME);
255 report_err:
256                 LCONSOLE_ERROR("Failed to start MGS '%s' (%d). Is the 'mgs' module loaded?\n",
257                                LUSTRE_MGS_OBDNAME, rc);
258         }
259         RETURN(rc);
260 }
261
262 static int server_stop_mgs(struct super_block *sb)
263 {
264         struct obd_device *obd;
265         int rc;
266         struct lustre_mount_info *lmi;
267
268         ENTRY;
269         /* Do not stop MGS if this device is not the running MGT */
270         lmi = server_find_mount(LUSTRE_MGS_OBDNAME);
271         if (lmi && lmi->lmi_sb != sb)
272                 RETURN(0);
273
274         CDEBUG(D_MOUNT, "Stop MGS service %s\n", LUSTRE_MGS_OBDNAME);
275
276         /* There better be only one MGS */
277         obd = class_name2obd(LUSTRE_MGS_OBDNAME);
278         if (!obd) {
279                 CDEBUG(D_CONFIG, "mgs %s not running\n", LUSTRE_MGS_OBDNAME);
280                 RETURN(-EALREADY);
281         }
282
283         /* The MGS should always stop when we say so */
284         obd->obd_force = 1;
285         rc = class_manual_cleanup(obd);
286         RETURN(rc);
287 }
288
289 /* Since there's only one mgc per node, we have to change it's fs to get
290  * access to the right disk.
291  */
292 static int server_mgc_set_fs(const struct lu_env *env,
293                              struct obd_device *mgc, struct super_block *sb)
294 {
295         struct lustre_sb_info *lsi = s2lsi(sb);
296         int rc;
297
298         ENTRY;
299         CDEBUG(D_MOUNT, "Set mgc disk for %s\n", lsi->lsi_lmd->lmd_dev);
300
301         /* cl_mgc_sem in mgc insures we sleep if the mgc_fs is busy */
302         rc = obd_set_info_async(env, mgc->obd_self_export,
303                                 sizeof(KEY_SET_FS), KEY_SET_FS,
304                                 sizeof(*sb), sb, NULL);
305         if (rc != 0)
306                 CERROR("can't set_fs %d\n", rc);
307
308         RETURN(rc);
309 }
310
311 static int server_mgc_clear_fs(const struct lu_env *env,
312                                struct obd_device *mgc)
313 {
314         int rc;
315
316         ENTRY;
317         CDEBUG(D_MOUNT, "Unassign mgc disk\n");
318         rc = obd_set_info_async(env, mgc->obd_self_export,
319                                 sizeof(KEY_CLEAR_FS), KEY_CLEAR_FS,
320                                 0, NULL, NULL);
321         RETURN(rc);
322 }
323
324 static inline bool is_mdc_device(const char *devname)
325 {
326         char *ptr;
327
328         ptr = strrchr(devname, '-');
329         return ptr && strcmp(ptr, "-mdc") == 0;
330 }
331
332 static inline bool tgt_is_mdt(const char *tgtname, u32 *idx)
333 {
334         int type;
335
336         type = server_name2index(tgtname, idx, NULL);
337
338         return type == LDD_F_SV_TYPE_MDT;
339 }
340
341 /*
342  * Convert OST/MDT name(fsname-{MDT,OST}xxxx) to a lwp name with the @idx:yyyy
343  * (fsname-MDTyyyy-lwp-{MDT,OST}xxxx)
344  */
345 int tgt_name2lwp_name(const char *tgt_name, char *lwp_name, int len, u32 idx)
346 {
347         char *fsname;
348         const char *tgt;
349         int rc;
350
351         ENTRY;
352         OBD_ALLOC(fsname, MTI_NAME_MAXLEN);
353         if (fsname == NULL)
354                 RETURN(-ENOMEM);
355
356         rc = server_name2fsname(tgt_name, fsname, &tgt);
357         if (rc != 0) {
358                 CERROR("%s: failed to get fsname from tgt_name: rc = %d\n",
359                        tgt_name, rc);
360                 GOTO(cleanup, rc);
361         }
362
363         if (*tgt != '-' && *tgt != ':') {
364                 CERROR("%s: invalid tgt_name name!\n", tgt_name);
365                 GOTO(cleanup, rc = -EINVAL);
366         }
367
368         tgt++;
369         if (strncmp(tgt, "OST", 3) != 0 && strncmp(tgt, "MDT", 3) != 0) {
370                 CERROR("%s is not an OST or MDT target!\n", tgt_name);
371                 GOTO(cleanup, rc = -EINVAL);
372         }
373         snprintf(lwp_name, len, "%s-MDT%04x-%s-%s",
374                  fsname, idx, LUSTRE_LWP_NAME, tgt);
375
376         GOTO(cleanup, rc = 0);
377
378 cleanup:
379         if (fsname != NULL)
380                 OBD_FREE(fsname, MTI_NAME_MAXLEN);
381
382         return rc;
383 }
384 EXPORT_SYMBOL(tgt_name2lwp_name);
385
386 static LIST_HEAD(lwp_register_list);
387 static DEFINE_SPINLOCK(lwp_register_list_lock);
388
389 static void lustre_put_lwp_item(struct lwp_register_item *lri)
390 {
391         if (atomic_dec_and_test(&lri->lri_ref)) {
392                 LASSERT(list_empty(&lri->lri_list));
393
394                 if (*lri->lri_exp)
395                         class_export_put(*lri->lri_exp);
396                 OBD_FREE_PTR(lri);
397         }
398 }
399
400 int lustre_register_lwp_item(const char *lwpname, struct obd_export **exp,
401                              register_lwp_cb cb_func, void *cb_data)
402 {
403         struct obd_device *lwp;
404         struct lwp_register_item *lri;
405         bool cb = false;
406
407         ENTRY;
408         LASSERTF(strlen(lwpname) < MTI_NAME_MAXLEN, "lwpname is too long %s\n",
409                  lwpname);
410         LASSERT(exp && !*exp);
411
412         OBD_ALLOC_PTR(lri);
413         if (lri == NULL)
414                 RETURN(-ENOMEM);
415
416         lwp = class_name2obd(lwpname);
417         if (lwp && lwp->obd_set_up == 1) {
418                 struct obd_uuid *uuid;
419
420                 OBD_ALLOC_PTR(uuid);
421                 if (uuid == NULL) {
422                         OBD_FREE_PTR(lri);
423                         RETURN(-ENOMEM);
424                 }
425                 memcpy(uuid->uuid, lwpname, strlen(lwpname));
426                 *exp = obd_uuid_lookup(lwp, uuid);
427                 OBD_FREE_PTR(uuid);
428         }
429
430         memcpy(lri->lri_name, lwpname, strlen(lwpname));
431         lri->lri_exp = exp;
432         lri->lri_cb_func = cb_func;
433         lri->lri_cb_data = cb_data;
434         INIT_LIST_HEAD(&lri->lri_list);
435         /*
436          * Initialize the lri_ref at 2, one will be released before
437          * current function returned via lustre_put_lwp_item(), the
438          * other will be released in lustre_deregister_lwp_item().
439          */
440         atomic_set(&lri->lri_ref, 2);
441
442         spin_lock(&lwp_register_list_lock);
443         list_add(&lri->lri_list, &lwp_register_list);
444         if (*exp)
445                 cb = true;
446         spin_unlock(&lwp_register_list_lock);
447
448         if (cb && cb_func)
449                 cb_func(cb_data);
450         lustre_put_lwp_item(lri);
451
452         RETURN(0);
453 }
454 EXPORT_SYMBOL(lustre_register_lwp_item);
455
456 void lustre_deregister_lwp_item(struct obd_export **exp)
457 {
458         struct lwp_register_item *lri;
459         bool removed = false;
460         int repeat = 0;
461
462         spin_lock(&lwp_register_list_lock);
463         list_for_each_entry(lri, &lwp_register_list, lri_list) {
464                 if (exp == lri->lri_exp) {
465                         list_del_init(&lri->lri_list);
466                         removed = true;
467                         break;
468                 }
469         }
470         spin_unlock(&lwp_register_list_lock);
471
472         if (!removed)
473                 return;
474
475         /* See lustre_notify_lwp_list(), in some extreme race conditions,
476          * the notify callback could be still on the fly, we need to wait
477          * for the callback done before moving on to free the data used
478          * by callback.
479          */
480         while (atomic_read(&lri->lri_ref) > 1) {
481                 CDEBUG(D_MOUNT, "lri reference count %u, repeat: %d\n",
482                        atomic_read(&lri->lri_ref), repeat);
483                 repeat++;
484                 schedule_timeout_interruptible(cfs_time_seconds(1));
485         }
486         lustre_put_lwp_item(lri);
487 }
488 EXPORT_SYMBOL(lustre_deregister_lwp_item);
489
490 struct obd_export *lustre_find_lwp_by_index(const char *dev, u32 idx)
491 {
492         struct lustre_mount_info *lmi;
493         struct lustre_sb_info *lsi;
494         struct obd_device *lwp;
495         struct obd_export *exp = NULL;
496         char fsname[16];
497         char lwp_name[24];
498         int rc;
499
500         lmi = server_get_mount(dev);
501         if (lmi == NULL)
502                 return NULL;
503
504         lsi = s2lsi(lmi->lmi_sb);
505         rc = server_name2fsname(lsi->lsi_svname, fsname, NULL);
506         if (rc != 0) {
507                 CERROR("%s: failed to get fsname: rc = %d\n",
508                        lsi->lsi_svname, rc);
509                 goto err_lmi;
510         }
511
512         snprintf(lwp_name, sizeof(lwp_name), "%s-MDT%04x", fsname, idx);
513         mutex_lock(&lsi->lsi_lwp_mutex);
514         list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
515                 char *ptr = strstr(lwp->obd_name, lwp_name);
516
517                 if (ptr && lwp->obd_lwp_export) {
518                         exp = class_export_get(lwp->obd_lwp_export);
519                         break;
520                 }
521         }
522         mutex_unlock(&lsi->lsi_lwp_mutex);
523
524 err_lmi:
525         server_put_mount(dev, false);
526
527         return exp;
528 }
529 EXPORT_SYMBOL(lustre_find_lwp_by_index);
530
531 void lustre_notify_lwp_list(struct obd_export *exp)
532 {
533         struct lwp_register_item *lri;
534
535         LASSERT(exp);
536 again:
537         spin_lock(&lwp_register_list_lock);
538         list_for_each_entry(lri, &lwp_register_list, lri_list) {
539                 if (strcmp(exp->exp_obd->obd_name, lri->lri_name))
540                         continue;
541                 if (*lri->lri_exp)
542                         continue;
543                 *lri->lri_exp = class_export_get(exp);
544                 if (!lri->lri_cb_func)
545                         continue;
546                 atomic_inc(&lri->lri_ref);
547                 spin_unlock(&lwp_register_list_lock);
548
549                 lri->lri_cb_func(lri->lri_cb_data);
550                 lustre_put_lwp_item(lri);
551
552                 /* Others may have changed the list after we unlock, we have
553                  * to rescan the list from the beginning. Usually, the list
554                  * 'lwp_register_list' is very short, and there is 'guard'
555                  * lri::lri_exp that will prevent the callback to be done
556                  * repeatedly. So rescanning the list has no problem.
557                  */
558                 goto again;
559         }
560         spin_unlock(&lwp_register_list_lock);
561 }
562 EXPORT_SYMBOL(lustre_notify_lwp_list);
563
564 static int lustre_lwp_connect(struct obd_device *lwp, bool is_mdt)
565 {
566         struct lu_env env;
567         struct lu_context session_ctx;
568         struct obd_export *exp;
569         struct obd_uuid *uuid = NULL;
570         struct obd_connect_data *data = NULL;
571         int rc;
572
573         ENTRY;
574         /* log has been fully processed, let clients connect */
575         rc = lu_env_init(&env, lwp->obd_lu_dev->ld_type->ldt_ctx_tags);
576         if (rc != 0)
577                 RETURN(rc);
578
579         lu_context_init(&session_ctx, LCT_SERVER_SESSION);
580         session_ctx.lc_thread = NULL;
581         lu_context_enter(&session_ctx);
582         env.le_ses = &session_ctx;
583
584         OBD_ALLOC_PTR(data);
585         if (data == NULL)
586                 GOTO(out, rc = -ENOMEM);
587
588         data->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_INDEX;
589         data->ocd_version = LUSTRE_VERSION_CODE;
590         data->ocd_connect_flags |= OBD_CONNECT_FID | OBD_CONNECT_AT |
591                 OBD_CONNECT_LRU_RESIZE | OBD_CONNECT_FULL20 |
592                 OBD_CONNECT_LVB_TYPE | OBD_CONNECT_LIGHTWEIGHT |
593                 OBD_CONNECT_LFSCK | OBD_CONNECT_BULK_MBITS;
594
595         if (is_mdt)
596                 data->ocd_connect_flags |= OBD_CONNECT_MDS_MDS;
597
598         OBD_ALLOC_PTR(uuid);
599         if (uuid == NULL)
600                 GOTO(out, rc = -ENOMEM);
601
602         if (strlen(lwp->obd_name) > sizeof(uuid->uuid)) {
603                 CERROR("%s: Too long lwp name %s, max_size is %d\n",
604                        lwp->obd_name, lwp->obd_name, (int)sizeof(uuid->uuid));
605                 GOTO(out, rc = -EINVAL);
606         }
607
608         /* Use lwp name as the uuid, so we find the export by lwp name later */
609         memcpy(uuid->uuid, lwp->obd_name, strlen(lwp->obd_name));
610         rc = obd_connect(&env, &exp, lwp, uuid, data, NULL);
611         if (rc != 0) {
612                 CERROR("%s: connect failed: rc = %d\n", lwp->obd_name, rc);
613         } else {
614                 if (unlikely(lwp->obd_lwp_export))
615                         class_export_put(lwp->obd_lwp_export);
616                 lwp->obd_lwp_export = class_export_get(exp);
617         }
618
619         GOTO(out, rc);
620
621 out:
622         if (data != NULL)
623                 OBD_FREE_PTR(data);
624         if (uuid != NULL)
625                 OBD_FREE_PTR(uuid);
626
627         lu_env_fini(&env);
628         lu_context_exit(&session_ctx);
629         lu_context_fini(&session_ctx);
630
631         return rc;
632 }
633
634 /**
635  * lwp is used by slaves (Non-MDT0 targets) to manage the connection to MDT0,
636  * or from the OSTx to MDTy.
637  **/
638 static int lustre_lwp_setup(struct lustre_cfg *lcfg, struct lustre_sb_info *lsi,
639                             u32 idx)
640 {
641         struct obd_device *obd;
642         char *lwpname = NULL;
643         char *lwpuuid = NULL;
644         struct lnet_nid nid;
645         int rc;
646
647         ENTRY;
648         if (lcfg->lcfg_nid)
649                 lnet_nid4_to_nid(lcfg->lcfg_nid, &nid);
650         else {
651                 rc = libcfs_strnid(&nid, lustre_cfg_string(lcfg, 2));
652                 if (rc)
653                         RETURN(rc);
654         }
655         rc = class_add_uuid(lustre_cfg_string(lcfg, 1), &nid);
656         if (rc != 0) {
657                 CERROR("%s: Can't add uuid: rc =%d\n", lsi->lsi_svname, rc);
658                 RETURN(rc);
659         }
660
661         OBD_ALLOC(lwpname, MTI_NAME_MAXLEN);
662         if (lwpname == NULL)
663                 GOTO(out, rc = -ENOMEM);
664
665         rc = tgt_name2lwp_name(lsi->lsi_svname, lwpname, MTI_NAME_MAXLEN, idx);
666         if (rc != 0) {
667                 CERROR("%s: failed to generate lwp name: rc = %d\n",
668                        lsi->lsi_svname, rc);
669                 GOTO(out, rc);
670         }
671
672         OBD_ALLOC(lwpuuid, MTI_NAME_MAXLEN);
673         if (!lwpuuid)
674                 GOTO(out, rc = -ENOMEM);
675
676         sprintf(lwpuuid, "%s_UUID", lwpname);
677         rc = lustre_start_simple(lwpname, LUSTRE_LWP_NAME,
678                                  lwpuuid, lustre_cfg_string(lcfg, 1),
679                                  NULL, NULL, NULL);
680         if (rc < 0) {
681                 CERROR("%s: setup up failed: rc %d\n", lwpname, rc);
682                 GOTO(out, rc);
683         }
684
685         obd = class_name2obd(lwpname);
686         LASSERT(obd);
687
688         rc = lustre_lwp_connect(obd, strstr(lsi->lsi_svname, "-MDT") != NULL);
689         if (rc < 0) {
690                 CERROR("%s: connect failed: rc = %d\n", lwpname, rc);
691                 GOTO(out, rc);
692         }
693
694         obd->u.cli.cl_max_mds_easize = MAX_MD_SIZE;
695         mutex_lock(&lsi->lsi_lwp_mutex);
696         list_add_tail(&obd->obd_lwp_list, &lsi->lsi_lwp_list);
697         mutex_unlock(&lsi->lsi_lwp_mutex);
698 out:
699         if (lwpname)
700                 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
701         if (lwpuuid)
702                 OBD_FREE(lwpuuid, MTI_NAME_MAXLEN);
703
704         return rc;
705 }
706
707 /* the caller is responsible for memory free */
708 static struct obd_device *lustre_find_lwp(struct lustre_sb_info *lsi,
709                                           char **lwpname, u32 idx)
710 {
711         struct obd_device *lwp;
712         int rc = 0;
713
714         ENTRY;
715         LASSERT(lwpname);
716         LASSERT(IS_OST(lsi) || IS_MDT(lsi));
717
718         OBD_ALLOC(*lwpname, MTI_NAME_MAXLEN);
719         if (*lwpname == NULL)
720                 RETURN(ERR_PTR(-ENOMEM));
721
722         rc = tgt_name2lwp_name(lsi->lsi_svname, *lwpname, MTI_NAME_MAXLEN, idx);
723         if (rc != 0) {
724                 CERROR("%s: failed to generate lwp name: rc = %d\n",
725                        lsi->lsi_svname, rc);
726                 GOTO(out, rc = -EINVAL);
727         }
728
729         lwp = class_name2obd(*lwpname);
730
731 out:
732         if (rc != 0) {
733                 if (*lwpname != NULL) {
734                         OBD_FREE(*lwpname, MTI_NAME_MAXLEN);
735                         *lwpname = NULL;
736                 }
737                 lwp = ERR_PTR(rc);
738         }
739
740         RETURN(lwp ? lwp : ERR_PTR(-ENOENT));
741 }
742
743 static int lustre_lwp_add_conn(struct lustre_cfg *cfg,
744                                struct lustre_sb_info *lsi, u32 idx)
745 {
746         struct lustre_cfg_bufs *bufs = NULL;
747         struct lustre_cfg *lcfg = NULL;
748         char *lwpname = NULL;
749         struct obd_device *lwp;
750         int rc;
751
752         ENTRY;
753         lwp = lustre_find_lwp(lsi, &lwpname, idx);
754         if (IS_ERR(lwp)) {
755                 CERROR("%s: can't find lwp device.\n", lsi->lsi_svname);
756                 GOTO(out, rc = PTR_ERR(lwp));
757         }
758         LASSERT(lwpname);
759
760         OBD_ALLOC_PTR(bufs);
761         if (bufs == NULL)
762                 GOTO(out, rc = -ENOMEM);
763
764         lustre_cfg_bufs_reset(bufs, lwpname);
765         lustre_cfg_bufs_set_string(bufs, 1,
766                                    lustre_cfg_string(cfg, 1));
767
768         OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
769         if (!lcfg)
770                 GOTO(out_cfg, rc = -ENOMEM);
771         lustre_cfg_init(lcfg, LCFG_ADD_CONN, bufs);
772
773         rc = class_add_conn(lwp, lcfg);
774         if (rc < 0)
775                 CERROR("%s: can't add conn: rc = %d\n", lwpname, rc);
776
777         if (lcfg)
778                 OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount,
779                                               lcfg->lcfg_buflens));
780 out_cfg:
781         if (bufs)
782                 OBD_FREE_PTR(bufs);
783 out:
784         if (lwpname)
785                 OBD_FREE(lwpname, MTI_NAME_MAXLEN);
786         RETURN(rc);
787 }
788
789 /**
790  * Retrieve MDT nids from the client log, then start the lwp device.
791  * there are only two scenarios which would include mdt nid.
792  * 1.
793  * marker   5 (flags=0x01, v2.1.54.0) lustre-MDTyyyy  'add mdc' xxx-
794  * add_uuid  nid=192.168.122.162@tcp(0x20000c0a87aa2)  0:  1:192.168.122.162@tcp
795  * attach    0:lustre-MDTyyyy-mdc  1:mdc  2:lustre-clilmv_UUID
796  * setup     0:lustre-MDTyyyy-mdc  1:lustre-MDTyyyy_UUID  2:192.168.122.162@tcp
797  * add_uuid  nid=192.168.172.1@tcp(0x20000c0a8ac01)  0:  1:192.168.172.1@tcp
798  * add_conn  0:lustre-MDTyyyy-mdc  1:192.168.172.1@tcp
799  * modify_mdc_tgts add 0:lustre-clilmv  1:lustre-MDTyyyy_UUID xxxx
800  * marker   5 (flags=0x02, v2.1.54.0) lustre-MDTyyyy  'add mdc' xxxx-
801  * 2.
802  * marker   7 (flags=0x01, v2.1.54.0) lustre-MDTyyyy  'add failnid' xxxx-
803  * add_uuid  nid=192.168.122.2@tcp(0x20000c0a87a02)  0:  1:192.168.122.2@tcp
804  * add_conn  0:lustre-MDTyyyy-mdc  1:192.168.122.2@tcp
805  * marker   7 (flags=0x02, v2.1.54.0) lustre-MDTyyyy  'add failnid' xxxx-
806  **/
807 static int client_lwp_config_process(const struct lu_env *env,
808                                      struct llog_handle *handle,
809                                      struct llog_rec_hdr *rec, void *data)
810 {
811         struct config_llog_instance *cfg = data;
812         int cfg_len = rec->lrh_len;
813         char *cfg_buf = (char *) (rec + 1);
814         struct lustre_cfg *lcfg = NULL;
815         struct lustre_sb_info *lsi;
816         int rc = 0, swab = 0;
817
818         ENTRY;
819         if (rec->lrh_type != OBD_CFG_REC) {
820                 CERROR("Unknown llog record type %#x encountered\n",
821                        rec->lrh_type);
822                 RETURN(-EINVAL);
823         }
824
825         if (!cfg->cfg_sb)
826                 GOTO(out, rc = -EINVAL);
827         lsi = s2lsi(cfg->cfg_sb);
828
829         lcfg = (struct lustre_cfg *)cfg_buf;
830         if (lcfg->lcfg_version == __swab32(LUSTRE_CFG_VERSION)) {
831                 lustre_swab_lustre_cfg(lcfg);
832                 swab = 1;
833         }
834
835         rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
836         if (rc < 0)
837                 GOTO(out, rc);
838
839         switch (lcfg->lcfg_command) {
840         case LCFG_MARKER: {
841                 struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
842
843                 lustre_swab_cfg_marker(marker, swab,
844                                        LUSTRE_CFG_BUFLEN(lcfg, 1));
845                 if (marker->cm_flags & CM_SKIP ||
846                     marker->cm_flags & CM_EXCLUDE)
847                         GOTO(out, rc = 0);
848
849                 if (!tgt_is_mdt(marker->cm_tgtname, &cfg->cfg_lwp_idx))
850                         GOTO(out, rc = 0);
851
852                 if (IS_MDT(lsi) && cfg->cfg_lwp_idx != 0)
853                         GOTO(out, rc = 0);
854
855                 if (!strncmp(marker->cm_comment, "add mdc", 7) ||
856                     !strncmp(marker->cm_comment, "add failnid", 11)) {
857                         if (marker->cm_flags & CM_START) {
858                                 cfg->cfg_flags = CFG_F_MARKER;
859                                 /* This hack is to differentiate the
860                                  * ADD_UUID is come from "add mdc" record
861                                  * or from "add failnid" record.
862                                  */
863                                 if (!strncmp(marker->cm_comment,
864                                              "add failnid", 11))
865                                         cfg->cfg_flags |= CFG_F_SKIP;
866                         } else if (marker->cm_flags & CM_END) {
867                                 cfg->cfg_flags = 0;
868                         }
869                 }
870                 break;
871         }
872         case LCFG_ADD_UUID: {
873                 if (cfg->cfg_flags == CFG_F_MARKER) {
874                         rc = lustre_lwp_setup(lcfg, lsi, cfg->cfg_lwp_idx);
875                         /* XXX: process only the first nid as
876                          * we don't need another instance of lwp
877                          */
878                         cfg->cfg_flags |= CFG_F_SKIP;
879                 } else if (cfg->cfg_flags == (CFG_F_MARKER | CFG_F_SKIP)) {
880                         struct lnet_nid nid;
881
882                         rc = 0;
883                         if (lcfg->lcfg_nid)
884                                 lnet_nid4_to_nid(lcfg->lcfg_nid, &nid);
885                         else
886                                 rc = libcfs_strnid(&nid,
887                                                    lustre_cfg_string(lcfg, 2));
888                         if (!rc)
889                                 rc = class_add_uuid(lustre_cfg_string(lcfg, 1),
890                                                     &nid);
891                         if (rc < 0)
892                                 CERROR("%s: Fail to add uuid, rc:%d\n",
893                                        lsi->lsi_svname, rc);
894                 }
895                 break;
896         }
897         case LCFG_ADD_CONN: {
898                 char *devname = lustre_cfg_string(lcfg, 0);
899                 char *ptr;
900                 u32 idx = 0;
901
902                 if (!is_mdc_device(devname))
903                         break;
904
905                 if (!(cfg->cfg_flags & CFG_F_MARKER)) {
906                         CDEBUG(D_CONFIG, "Skipping add_conn for %s, rec %d\n",
907                                devname, rec->lrh_index);
908                         break;
909                 }
910
911                 /* add_conn should follow by add_uuid. This
912                  * guarantee lwp device was created
913                  */
914                 if (!(cfg->cfg_flags & CFG_F_SKIP)) {
915                         CWARN("Error at config for %s rec %d, add_conn should follow by add_uuid\n",
916                               devname, rec->lrh_index);
917                         break;
918                 }
919                 ptr = strrchr(devname, '-');
920                 if (ptr == NULL)
921                         break;
922
923                 *ptr = 0;
924                 if (!tgt_is_mdt(devname, &idx)) {
925                         *ptr = '-';
926                         break;
927                 }
928                 *ptr = '-';
929
930                 if (IS_MDT(lsi) && idx != 0)
931                         break;
932
933                 rc = lustre_lwp_add_conn(lcfg, lsi, idx);
934                 break;
935         }
936         default:
937                 break;
938         }
939 out:
940         RETURN(rc);
941 }
942
943 static int lustre_disconnect_lwp(struct super_block *sb)
944 {
945         struct lustre_sb_info *lsi = s2lsi(sb);
946         struct obd_device *lwp;
947         char *logname = NULL;
948         struct lustre_cfg_bufs *bufs = NULL;
949         struct config_llog_instance *cfg = NULL;
950         int rc = 0;
951         int rc1 = 0;
952
953         ENTRY;
954         if (likely(lsi->lsi_lwp_started)) {
955                 OBD_ALLOC(logname, MTI_NAME_MAXLEN);
956                 if (logname == NULL)
957                         RETURN(-ENOMEM);
958
959                 rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
960                 if (rc != 0) {
961                         CERROR("%s: failed to get fsname from svname: rc = %d\n",
962                                lsi->lsi_svname, rc);
963                         GOTO(out, rc = -EINVAL);
964                 }
965
966                 strcat(logname, "-client");
967                 OBD_ALLOC_PTR(cfg);
968                 if (cfg == NULL)
969                         GOTO(out, rc = -ENOMEM);
970
971                 /* end log first */
972                 cfg->cfg_instance = ll_get_cfg_instance(sb);
973                 rc = lustre_end_log(sb, logname, cfg);
974                 if (rc != 0 && rc != -ENOENT)
975                         GOTO(out, rc);
976
977                 lsi->lsi_lwp_started = 0;
978         }
979
980         OBD_ALLOC_PTR(bufs);
981         if (bufs == NULL)
982                 GOTO(out, rc = -ENOMEM);
983
984         mutex_lock(&lsi->lsi_lwp_mutex);
985         list_for_each_entry(lwp, &lsi->lsi_lwp_list, obd_lwp_list) {
986                 struct lustre_cfg *lcfg;
987
988                 if (likely(lwp->obd_lwp_export)) {
989                         class_export_put(lwp->obd_lwp_export);
990                         lwp->obd_lwp_export = NULL;
991                 }
992
993                 lustre_cfg_bufs_reset(bufs, lwp->obd_name);
994                 lustre_cfg_bufs_set_string(bufs, 1, NULL);
995                 OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount,
996                                                bufs->lcfg_buflen));
997                 if (!lcfg) {
998                         rc = -ENOMEM;
999                         break;
1000                 }
1001                 lustre_cfg_init(lcfg, LCFG_CLEANUP, bufs);
1002
1003                 /* Disconnect import first. NULL is passed for the '@env',
1004                  * since it will not be used.
1005                  */
1006                 rc = lwp->obd_lu_dev->ld_ops->ldo_process_config(NULL,
1007                                                         lwp->obd_lu_dev, lcfg);
1008                 OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount,
1009                                               lcfg->lcfg_buflens));
1010                 if (rc != 0 && rc != -ETIMEDOUT && rc != -ENODEV &&
1011                     rc != -ENOTCONN && rc != -ESHUTDOWN) {
1012                         CERROR("%s: fail to disconnect LWP: rc = %d\n",
1013                                lwp->obd_name, rc);
1014                         rc1 = rc;
1015                 }
1016         }
1017         mutex_unlock(&lsi->lsi_lwp_mutex);
1018
1019         GOTO(out, rc);
1020
1021 out:
1022         if (bufs)
1023                 OBD_FREE_PTR(bufs);
1024         if (cfg)
1025                 OBD_FREE_PTR(cfg);
1026         if (logname)
1027                 OBD_FREE(logname, MTI_NAME_MAXLEN);
1028
1029         return rc1 != 0 ? rc1 : rc;
1030 }
1031
1032 /**
1033  * Stop the lwp for an OST/MDT target.
1034  **/
1035 static int lustre_stop_lwp(struct super_block *sb)
1036 {
1037         struct lustre_sb_info *lsi = s2lsi(sb);
1038         struct obd_device *lwp;
1039         int rc = 0;
1040         int rc1 = 0;
1041
1042         ENTRY;
1043         mutex_lock(&lsi->lsi_lwp_mutex);
1044         while (!list_empty(&lsi->lsi_lwp_list)) {
1045                 lwp = list_first_entry(&lsi->lsi_lwp_list, struct obd_device,
1046                                        obd_lwp_list);
1047                 list_del_init(&lwp->obd_lwp_list);
1048                 lwp->obd_force = 1;
1049                 mutex_unlock(&lsi->lsi_lwp_mutex);
1050
1051                 rc = class_manual_cleanup(lwp);
1052                 if (rc != 0) {
1053                         CERROR("%s: fail to stop LWP: rc = %d\n",
1054                                lwp->obd_name, rc);
1055                         rc1 = rc;
1056                 }
1057                 mutex_lock(&lsi->lsi_lwp_mutex);
1058         }
1059         mutex_unlock(&lsi->lsi_lwp_mutex);
1060
1061         RETURN(rc1 != 0 ? rc1 : rc);
1062 }
1063
1064 /**
1065  * Start the lwp(fsname-MDTyyyy-lwp-{MDT,OST}xxxx) for a MDT/OST or MDT target.
1066  **/
1067 static int lustre_start_lwp(struct super_block *sb)
1068 {
1069         struct lustre_sb_info *lsi = s2lsi(sb);
1070         struct config_llog_instance *cfg = NULL;
1071         char *logname;
1072         int rc;
1073
1074         ENTRY;
1075         if (unlikely(lsi->lsi_lwp_started))
1076                 RETURN(0);
1077
1078         OBD_ALLOC(logname, MTI_NAME_MAXLEN);
1079         if (logname == NULL)
1080                 RETURN(-ENOMEM);
1081
1082         rc = server_name2fsname(lsi->lsi_svname, logname, NULL);
1083         if (rc != 0) {
1084                 CERROR("%s: failed to get fsname from svname: rc = %d\n",
1085                        lsi->lsi_svname, rc);
1086                 GOTO(out, rc = -EINVAL);
1087         }
1088
1089         strcat(logname, "-client");
1090         OBD_ALLOC_PTR(cfg);
1091         if (cfg == NULL)
1092                 GOTO(out, rc = -ENOMEM);
1093
1094         cfg->cfg_callback = client_lwp_config_process;
1095         cfg->cfg_instance = ll_get_cfg_instance(sb);
1096         rc = lustre_process_log(sb, logname, cfg);
1097         /* need to remove config llog from mgc */
1098         lsi->lsi_lwp_started = 1;
1099
1100         GOTO(out, rc);
1101
1102 out:
1103         OBD_FREE(logname, MTI_NAME_MAXLEN);
1104         if (cfg)
1105                 OBD_FREE_PTR(cfg);
1106
1107         return rc;
1108 }
1109
1110 static DEFINE_MUTEX(server_start_lock);
1111
1112 /* Stop MDS/OSS if nobody is using them */
1113 static int server_stop_servers(int lsiflags)
1114 {
1115         struct obd_device *obd = NULL;
1116         struct obd_type *type = NULL;
1117         int rc = 0;
1118         bool type_last;
1119
1120         ENTRY;
1121         mutex_lock(&server_start_lock);
1122
1123         /* Either an MDT or an OST or neither  */
1124         /* if this was an MDT, and there are no more MDT's, clean up the MDS */
1125         if (lsiflags & LDD_F_SV_TYPE_MDT) {
1126                 obd = class_name2obd(LUSTRE_MDS_OBDNAME);
1127                 type = class_search_type(LUSTRE_MDT_NAME);
1128         } else if (lsiflags & LDD_F_SV_TYPE_OST) {
1129         /* if this was an OST, and there are no more OST's, clean up the OSS */
1130                 obd = class_name2obd(LUSTRE_OSS_OBDNAME);
1131                 type = class_search_type(LUSTRE_OST_NAME);
1132         }
1133
1134         /* server_stop_servers is a pair of server_start_targets
1135          * Here we put type which was taken at server_start_targets.
1136          * If type is NULL then there is a wrong logic around type or
1137          * type reference.
1138          */
1139         LASSERTF(type, "Server flags %d, obd %s\n", lsiflags,
1140                  obd ? obd->obd_name : "NULL");
1141
1142         type_last = (atomic_read(&type->typ_refcnt) == 1);
1143
1144         class_put_type(type);
1145         if (obd && type_last) {
1146                 obd->obd_force = 1;
1147                 /* obd_fail doesn't mean much on a server obd */
1148                 rc = class_manual_cleanup(obd);
1149         }
1150
1151         /* put reference taken by class_search_type */
1152         kobject_put(&type->typ_kobj);
1153
1154         mutex_unlock(&server_start_lock);
1155
1156         RETURN(rc);
1157 }
1158
1159 int server_mti_print(const char *title, struct mgs_target_info *mti)
1160 {
1161         CDEBUG(D_MOUNT, "mti - %s\n", title);
1162         CDEBUG(D_MOUNT, "server: %s\n", mti->mti_svname);
1163         CDEBUG(D_MOUNT, "fs:     %s\n", mti->mti_fsname);
1164         CDEBUG(D_MOUNT, "uuid:   %s\n", mti->mti_uuid);
1165         CDEBUG(D_MOUNT, "ver:    %d\n", mti->mti_config_ver);
1166         CDEBUG(D_MOUNT, "flags:\n");
1167         if (mti->mti_flags & LDD_F_SV_TYPE_MDT)
1168                 CDEBUG(D_MOUNT, "        LDD_F_SV_TYPE_MDT\n");
1169         if (mti->mti_flags & LDD_F_SV_TYPE_OST)
1170                 CDEBUG(D_MOUNT, "        LDD_F_SV_TYPE_OST\n");
1171         if (mti->mti_flags & LDD_F_SV_TYPE_MGS)
1172                 CDEBUG(D_MOUNT, "        LDD_F_SV_TYPE_MGS\n");
1173         if (mti->mti_flags & LDD_F_SV_ALL)
1174                 CDEBUG(D_MOUNT, "        LDD_F_SV_ALL\n");
1175         if (mti->mti_flags & LDD_F_NEED_INDEX)
1176                 CDEBUG(D_MOUNT, "        LDD_F_NEED_INDEX\n");
1177         if (mti->mti_flags & LDD_F_VIRGIN)
1178                 CDEBUG(D_MOUNT, "        LDD_F_VIRIGIN\n");
1179         if (mti->mti_flags & LDD_F_UPDATE)
1180                 CDEBUG(D_MOUNT, "        LDD_F_UPDATE\n");
1181         if (mti->mti_flags & LDD_F_REWRITE_LDD)
1182                 CDEBUG(D_MOUNT, "        LDD_F_REWRITE_LDD\n");
1183         if (mti->mti_flags & LDD_F_WRITECONF)
1184                 CDEBUG(D_MOUNT, "        LDD_F_WRITECONF\n");
1185         if (mti->mti_flags & LDD_F_PARAM)
1186                 CDEBUG(D_MOUNT, "        LDD_F_PARAM\n");
1187         if (mti->mti_flags & LDD_F_NO_PRIMNODE)
1188                 CDEBUG(D_MOUNT, "        LDD_F_NO_PRIMNODE\n");
1189         if (mti->mti_flags & LDD_F_IR_CAPABLE)
1190                 CDEBUG(D_MOUNT, "        LDD_F_IR_CAPABLE\n");
1191         if (mti->mti_flags & LDD_F_ERROR)
1192                 CDEBUG(D_MOUNT, "        LDD_F_ERROR\n");
1193         if (mti->mti_flags & LDD_F_PARAM2)
1194                 CDEBUG(D_MOUNT, "        LDD_F_PARAM2\n");
1195         if (mti->mti_flags & LDD_F_NO_LOCAL_LOGS)
1196                 CDEBUG(D_MOUNT, "        LDD_F_NO_LOCAL_LOGS\n");
1197
1198         /* Upper 16 bits for target registering */
1199         if (target_supports_large_nid(mti))
1200                 CDEBUG(D_MOUNT, "        LDD_F_LARGE_NID\n");
1201         if (mti->mti_flags & LDD_F_OPC_REG)
1202                 CDEBUG(D_MOUNT, "        LDD_F_OPC_REG\n");
1203         if (mti->mti_flags & LDD_F_OPC_UNREG)
1204                 CDEBUG(D_MOUNT, "        LDD_F_OPC_UNREG\n");
1205         if (mti->mti_flags & LDD_F_OPC_READY)
1206                 CDEBUG(D_MOUNT, "        LDD_F_OPC_READY\n");
1207
1208         return 0;
1209 }
1210 EXPORT_SYMBOL(server_mti_print);
1211
1212 /* Generate data for registration */
1213 static struct mgs_target_info *server_lsi2mti(struct lustre_sb_info *lsi)
1214 {
1215         size_t len = offsetof(struct mgs_target_info, mti_nidlist);
1216         GENRADIX(struct lnet_processid) plist;
1217         struct lnet_processid id, *tmp;
1218         struct mgs_target_info *mti;
1219         bool large_nid = false;
1220         int nid_count = 0;
1221         int rc, i = 0;
1222         int cplen = 0;
1223
1224         ENTRY;
1225         if (!IS_SERVER(lsi))
1226                 RETURN(ERR_PTR(-EINVAL));
1227
1228         if (exp_connect_flags2(lsi->lsi_mgc->u.cli.cl_mgc_mgsexp) &
1229             OBD_CONNECT2_LARGE_NID)
1230                 large_nid = true;
1231
1232         genradix_init(&plist);
1233
1234         while (LNetGetId(i++, &id, large_nid) != -ENOENT) {
1235                 if (nid_is_lo0(&id.nid))
1236                         continue;
1237
1238                 /* server use --servicenode param, only allow specified
1239                  * nids be registered
1240                  */
1241                 if (test_bit(LMD_FLG_NO_PRIMNODE, lsi->lsi_lmd->lmd_flags) &&
1242                     class_match_nid(lsi->lsi_lmd->lmd_params,
1243                                     PARAM_FAILNODE, &id.nid) < 1)
1244                         continue;
1245
1246                 if (!class_find_param(lsi->lsi_lmd->lmd_params,
1247                                         PARAM_NETWORK, NULL)) {
1248                         if (LNetGetPeerDiscoveryStatus()) {
1249                                 CERROR("LNet Dynamic Peer Discovery is enabled"
1250                                        " on this node. 'network' option used in"
1251                                        " mkfs.lustre cannot be taken into"
1252                                        " account.\n");
1253                                 GOTO(free_list, mti = ERR_PTR(-EINVAL));
1254                         }
1255                 }
1256
1257                 /* match specified network */
1258                 if (!class_match_net(lsi->lsi_lmd->lmd_params,
1259                                      PARAM_NETWORK, LNET_NID_NET(&id.nid)))
1260                         continue;
1261
1262                 tmp = genradix_ptr_alloc(&plist, nid_count++, GFP_KERNEL);
1263                 if (!tmp)
1264                         GOTO(free_list, mti = ERR_PTR(-ENOMEM));
1265
1266                 if (large_nid)
1267                         len += LNET_NIDSTR_SIZE;
1268                 *tmp = id;
1269         }
1270
1271         if (nid_count == 0) {
1272                 CERROR("Failed to get NID for server %s, please check whether the target is specifed with improper --servicenode or --network options.\n",
1273                        lsi->lsi_svname);
1274                 GOTO(free_list, mti = ERR_PTR(-EINVAL));
1275         }
1276
1277         OBD_ALLOC(mti, len);
1278         if (!mti)
1279                 GOTO(free_list, mti = ERR_PTR(-ENOMEM));
1280
1281         rc = strscpy(mti->mti_svname, lsi->lsi_svname, sizeof(mti->mti_svname));
1282         if (rc < 0)
1283                 GOTO(free_mti, rc);
1284
1285         mti->mti_nid_count = nid_count;
1286         for (i = 0; i < mti->mti_nid_count; i++) {
1287                 tmp = genradix_ptr(&plist, i);
1288
1289                 if (large_nid)
1290                         libcfs_nidstr_r(&tmp->nid, mti->mti_nidlist[i],
1291                                         sizeof(mti->mti_nidlist[i]));
1292                 else
1293                         mti->mti_nids[i] = lnet_nid_to_nid4(&tmp->nid);
1294         }
1295         mti->mti_lustre_ver = LUSTRE_VERSION_CODE;
1296         mti->mti_config_ver = 0;
1297
1298         rc = server_name2fsname(lsi->lsi_svname, mti->mti_fsname, NULL);
1299         if (rc < 0)
1300                 GOTO(free_mti, rc);
1301
1302         rc = server_name2index(lsi->lsi_svname, &mti->mti_stripe_index, NULL);
1303         if (rc < 0)
1304                 GOTO(free_mti, rc);
1305
1306         /* Orion requires index to be set */
1307         LASSERT(!(rc & LDD_F_NEED_INDEX));
1308         /* keep only LDD flags */
1309         mti->mti_flags = lsi->lsi_flags & LDD_F_MASK;
1310         if (mti->mti_flags & (LDD_F_WRITECONF | LDD_F_VIRGIN))
1311                 mti->mti_flags |= LDD_F_UPDATE;
1312         /* use NID strings instead */
1313         if (large_nid)
1314                 mti->mti_flags |= LDD_F_LARGE_NID;
1315         cplen = strscpy(mti->mti_params, lsi->lsi_lmd->lmd_params,
1316                         sizeof(mti->mti_params));
1317         if (cplen >= sizeof(mti->mti_params))
1318                 rc = -E2BIG;
1319 free_mti:
1320         if (rc < 0) {
1321                 OBD_FREE(mti, len);
1322                 mti = ERR_PTR(rc);
1323         }
1324 free_list:
1325         genradix_free(&plist);
1326
1327         return mti;
1328 }
1329
1330 /* Register an old or new target with the MGS. If needed MGS will construct
1331  * startup logs and assign index
1332  */
1333 static int server_register_target(struct lustre_sb_info *lsi)
1334 {
1335         struct obd_device *mgc = lsi->lsi_mgc;
1336         struct mgs_target_info *mti = NULL;
1337         size_t mti_len = sizeof(*mti);
1338         bool must_succeed;
1339         int rc;
1340         int tried = 0;
1341
1342         ENTRY;
1343         LASSERT(mgc);
1344         mti = server_lsi2mti(lsi);
1345         if (IS_ERR(mti))
1346                 GOTO(out, rc = PTR_ERR(mti));
1347
1348         CDEBUG(D_MOUNT, "Registration %s, fs=%s, %s, index=%04x, flags=%#x\n",
1349                mti->mti_svname, mti->mti_fsname, mti->mti_nidlist[0],
1350                mti->mti_stripe_index, mti->mti_flags);
1351
1352         /* we cannot ignore registration failure if MGS logs must be updated. */
1353         must_succeed = !!(lsi->lsi_flags &
1354                     (LDD_F_NEED_INDEX | LDD_F_UPDATE | LDD_F_WRITECONF |
1355                      LDD_F_VIRGIN));
1356         mti->mti_flags |= LDD_F_OPC_REG;
1357         if (target_supports_large_nid(mti))
1358                 mti_len += mti->mti_nid_count * LNET_NIDSTR_SIZE;
1359         server_mti_print("server_register_target", mti);
1360 again:
1361         /* Register the target */
1362         /* FIXME use mgc_process_config instead */
1363         rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1364                                 sizeof(KEY_REGISTER_TARGET),
1365                                 KEY_REGISTER_TARGET,
1366                                 mti_len, mti, NULL);
1367         if (rc < 0) {
1368                 if (mti->mti_flags & LDD_F_ERROR) {
1369                         LCONSOLE_ERROR("%s: the MGS refuses to allow this server to start: rc = %d. Please see messages on the MGS.\n",
1370                                        lsi->lsi_svname, rc);
1371                 } else if (must_succeed) {
1372                         if ((rc == -ESHUTDOWN || rc == -EIO) && ++tried < 5) {
1373                                 /* The connection with MGS is not established.
1374                                  * Try again after 2 seconds. Interruptable.
1375                                  */
1376                                 schedule_timeout_interruptible(cfs_time_seconds(2));
1377                                 if (!signal_pending(current))
1378                                         goto again;
1379                         }
1380
1381                         LCONSOLE_ERROR("%s: cannot register this server with the MGS: rc = %d. Is the MGS running?\n",
1382                                        lsi->lsi_svname, rc);
1383                 } else {
1384                         CDEBUG(D_HA,
1385                                "%s: error registering with the MGS: rc = %d (not fatal)\n",
1386                                lsi->lsi_svname, rc);
1387                         /* reset the error code for non-fatal error. */
1388                         rc = 0;
1389                 }
1390         }
1391
1392         OBD_FREE(mti, mti_len);
1393 out:
1394         RETURN(rc);
1395 }
1396
1397 /**
1398  * Notify the MGS that this target is ready.
1399  * Used by IR - if the MGS receives this message, it will notify clients.
1400  */
1401 static int server_notify_target(struct super_block *sb, struct obd_device *obd)
1402 {
1403         struct lustre_sb_info *lsi = s2lsi(sb);
1404         struct obd_device *mgc = lsi->lsi_mgc;
1405         struct mgs_target_info *mti = NULL;
1406         size_t mti_len = sizeof(*mti);
1407         int rc;
1408
1409         ENTRY;
1410         LASSERT(mgc);
1411         mti = server_lsi2mti(lsi);
1412         if (IS_ERR(mti))
1413                 GOTO(out, rc = PTR_ERR(mti));
1414
1415         mti->mti_instance = obd2obt(obd)->obt_instance;
1416         mti->mti_flags |= LDD_F_OPC_READY;
1417         if (target_supports_large_nid(mti))
1418                 mti_len += mti->mti_nid_count * LNET_NIDSTR_SIZE;
1419         server_mti_print("server_notify_target", mti);
1420
1421         /* FIXME use mgc_process_config instead */
1422         rc = obd_set_info_async(NULL, mgc->u.cli.cl_mgc_mgsexp,
1423                                 sizeof(KEY_REGISTER_TARGET),
1424                                 KEY_REGISTER_TARGET,
1425                                 mti_len, mti, NULL);
1426
1427         /* Imperative recovery: if the mgs informs us to use IR? */
1428         if (!rc && !(mti->mti_flags & LDD_F_ERROR) &&
1429             (mti->mti_flags & LDD_F_IR_CAPABLE))
1430                 lsi->lsi_flags |= LDD_F_IR_CAPABLE;
1431
1432         OBD_FREE(mti, mti_len);
1433 out:
1434         RETURN(rc);
1435 }
1436
1437 /* Start server targets: MDTs and OSTs */
1438 static int server_start_targets(struct super_block *sb)
1439 {
1440         struct obd_device *obd;
1441         struct lustre_sb_info *lsi = s2lsi(sb);
1442         struct config_llog_instance cfg;
1443         struct lu_env mgc_env;
1444         struct lu_device *dev;
1445         char *name_service, *obd_name_service = NULL;
1446         struct obd_type *type = NULL;
1447         int rc;
1448
1449         ENTRY;
1450         CDEBUG(D_MOUNT, "starting target %s\n", lsi->lsi_svname);
1451
1452         LASSERTF(IS_MDT(lsi) || IS_OST(lsi), "designed for MDT or OST only\n");
1453
1454         if (IS_MDT(lsi)) {
1455                 obd_name_service = LUSTRE_MDS_OBDNAME;
1456                 name_service = LUSTRE_MDS_NAME;
1457         } else {
1458                 obd_name_service = LUSTRE_OSS_OBDNAME;
1459                 name_service = LUSTRE_OSS_NAME;
1460         }
1461
1462         /* make sure MDS/OSS is started */
1463         mutex_lock(&server_start_lock);
1464         obd = class_name2obd(obd_name_service);
1465         if (!obd) {
1466                 rc = lustre_start_simple(obd_name_service, name_service,
1467                                          (IS_MDT(lsi) ?
1468                                           LUSTRE_MDS_OBDNAME"_uuid" :
1469                                           LUSTRE_OSS_OBDNAME"_uuid"),
1470                                          NULL, NULL, NULL, NULL);
1471                 if (rc < 0) {
1472                         mutex_unlock(&server_start_lock);
1473                         CERROR("failed to start %s: %d\n",
1474                                obd_name_service, rc);
1475                         RETURN(rc);
1476                 }
1477         }
1478         /* hold a type reference and put it at server_stop_servers */
1479         type = class_get_type(IS_MDT(lsi) ?
1480                               LUSTRE_MDT_NAME : LUSTRE_OST_NAME);
1481         if (!type) {
1482                 mutex_unlock(&server_start_lock);
1483                 GOTO(out_stop_service, rc = -ENODEV);
1484         }
1485         lsi->lsi_server_started = 1;
1486         mutex_unlock(&server_start_lock);
1487         if (CFS_FAIL_PRECHECK(OBD_FAIL_OBD_STOP_MDS_RACE) &&
1488             IS_MDT(lsi)) {
1489                 CFS_RACE(OBD_FAIL_OBD_STOP_MDS_RACE);
1490                 msleep(2 * MSEC_PER_SEC);
1491         }
1492
1493         rc = lu_env_init(&mgc_env, LCT_MG_THREAD);
1494         if (rc != 0)
1495                 GOTO(out_stop_service, rc);
1496
1497         /* Set the mgc fs to our server disk.  This allows the MGC to
1498          * read and write configs locally, in case it can't talk to the MGS.
1499          */
1500         rc = server_mgc_set_fs(&mgc_env, lsi->lsi_mgc, sb);
1501         if (rc < 0)
1502                 GOTO(out_env, rc);
1503
1504         /* Register with MGS */
1505         rc = server_register_target(lsi);
1506         if (rc < 0)
1507                 GOTO(out_mgc, rc);
1508
1509         /* Let the target look up the mount using the target's name
1510          * (we can't pass the sb or mnt through class_process_config.)
1511          */
1512         rc = server_register_mount(lsi->lsi_svname, sb);
1513         if (rc < 0)
1514                 GOTO(out_mgc, rc);
1515
1516         /* Start targets using the llog named for the target */
1517         memset(&cfg, 0, sizeof(cfg));
1518         cfg.cfg_callback = class_config_llog_handler;
1519         cfg.cfg_sub_clds = CONFIG_SUB_SERVER;
1520         rc = lustre_process_log(sb, lsi->lsi_svname, &cfg);
1521         if (rc < 0) {
1522                 CERROR("failed to start server %s: %d\n",
1523                        lsi->lsi_svname, rc);
1524                 /* Do NOT call server_deregister_mount() here. This makes it
1525                  * impossible to find mount later in cleanup time and leaves
1526                  * @lsi and othder stuff leaked. -umka
1527                  */
1528                 GOTO(out_mgc, rc);
1529         }
1530
1531         obd = class_name2obd(lsi->lsi_svname);
1532         if (!obd) {
1533                 CERROR("no server named %s was started\n", lsi->lsi_svname);
1534                 GOTO(out_mgc, rc = -ENXIO);
1535         }
1536
1537         if (IS_OST(lsi) || IS_MDT(lsi)) {
1538                 rc = lustre_start_lwp(sb);
1539                 if (rc < 0) {
1540                         CERROR("%s: failed to start LWP: %d\n",
1541                                lsi->lsi_svname, rc);
1542                         GOTO(out_mgc, rc);
1543                 }
1544         }
1545
1546         server_notify_target(sb, obd);
1547
1548         /* calculate recovery timeout, do it after lustre_process_log */
1549         server_calc_timeout(lsi, obd);
1550
1551         /* log has been fully processed, let clients connect */
1552         dev = obd->obd_lu_dev;
1553         if (dev && dev->ld_ops->ldo_prepare) {
1554                 struct lu_env env;
1555
1556                 rc = lu_env_init(&env, dev->ld_type->ldt_ctx_tags);
1557                 if (rc == 0) {
1558                         struct lu_context  session_ctx;
1559
1560                         lu_context_init(&session_ctx, LCT_SERVER_SESSION);
1561                         session_ctx.lc_thread = NULL;
1562                         lu_context_enter(&session_ctx);
1563                         env.le_ses = &session_ctx;
1564
1565                         rc = dev->ld_ops->ldo_prepare(&env, NULL, dev);
1566
1567                         lu_env_fini(&env);
1568                         lu_context_exit(&session_ctx);
1569                         lu_context_fini(&session_ctx);
1570                 }
1571         }
1572
1573         /* abort recovery only on the complete stack:
1574          * many devices can be involved
1575          */
1576         if ((test_bit(LMD_FLG_ABORT_RECOV, lsi->lsi_lmd->lmd_flags) ||
1577             (test_bit(LMD_FLG_ABORT_RECOV_MDT, lsi->lsi_lmd->lmd_flags))) &&
1578             (obd->obd_type->typ_dt_ops->o_iocontrol)) {
1579                 struct obd_ioctl_data karg;
1580
1581                 if (test_bit(LMD_FLG_ABORT_RECOV, lsi->lsi_lmd->lmd_flags))
1582                         karg.ioc_type = OBD_FLG_ABORT_RECOV_OST;
1583                 else
1584                         karg.ioc_type = OBD_FLG_ABORT_RECOV_MDT;
1585
1586                 obd_iocontrol(OBD_IOC_ABORT_RECOVERY, obd->obd_self_export, 0,
1587                               &karg, NULL);
1588         }
1589
1590 out_mgc:
1591         /* Release the mgc fs for others to use */
1592         server_mgc_clear_fs(&mgc_env, lsi->lsi_mgc);
1593 out_env:
1594         lu_env_fini(&mgc_env);
1595 out_stop_service:
1596         /* in case of error upper function call
1597          * server_put_super->server_stop_servers()
1598          */
1599
1600         RETURN(rc);
1601 }
1602
1603 static int lsi_prepare(struct lustre_sb_info *lsi)
1604 {
1605         const char *osd_type;
1606         const char *fstype;
1607         u32 index;
1608         int rc;
1609
1610         ENTRY;
1611         LASSERT(lsi);
1612         LASSERT(lsi->lsi_lmd);
1613
1614         /* The server name is given as a mount line option */
1615         if (!lsi->lsi_lmd->lmd_profile) {
1616                 LCONSOLE_ERROR("Can't determine server name\n");
1617                 RETURN(-EINVAL);
1618         }
1619
1620         /* Determine osd type */
1621         if (!lsi->lsi_lmd->lmd_osd_type) {
1622                 osd_type = LUSTRE_OSD_LDISKFS_NAME;
1623                 fstype = "ldiskfs";
1624         } else {
1625                 osd_type = lsi->lsi_lmd->lmd_osd_type;
1626                 fstype = lsi->lsi_lmd->lmd_osd_type;
1627         }
1628
1629         if (strlen(lsi->lsi_lmd->lmd_profile) >= sizeof(lsi->lsi_svname) ||
1630             strlen(osd_type) >= sizeof(lsi->lsi_osd_type) ||
1631             strlen(fstype) >= sizeof(lsi->lsi_fstype))
1632                 RETURN(-ENAMETOOLONG);
1633
1634         strscpy(lsi->lsi_svname, lsi->lsi_lmd->lmd_profile,
1635                 sizeof(lsi->lsi_svname));
1636         strscpy(lsi->lsi_osd_type, osd_type, sizeof(lsi->lsi_osd_type));
1637         /* XXX: a temp. solution for components using ldiskfs
1638          *      to be removed in one of the subsequent patches
1639          */
1640         strscpy(lsi->lsi_fstype, fstype, sizeof(lsi->lsi_fstype));
1641
1642         /* Determine server type */
1643         rc = server_name2index(lsi->lsi_svname, &index, NULL);
1644         if (rc < 0) {
1645                 if (test_bit(LMD_FLG_MGS, lsi->lsi_lmd->lmd_flags)) {
1646                         /* Assume we're a bare MGS */
1647                         rc = 0;
1648                         set_bit(LMD_FLG_NOSVC, lsi->lsi_lmd->lmd_flags);
1649                 } else {
1650                         LCONSOLE_ERROR("Can't determine server type of '%s'\n",
1651                                        lsi->lsi_svname);
1652                         RETURN(rc);
1653                 }
1654         }
1655         lsi->lsi_flags |= rc;
1656
1657         /* Add mount line flags that used to be in ldd:
1658          * writeconf, mgs, anything else?
1659          */
1660         lsi->lsi_flags |= test_bit(LMD_FLG_WRITECONF, lsi->lsi_lmd->lmd_flags) ?
1661                           LDD_F_WRITECONF : 0;
1662         lsi->lsi_flags |= test_bit(LMD_FLG_NO_LOCAL_LOGS, lsi->lsi_lmd->lmd_flags) ?
1663                           LDD_F_NO_LOCAL_LOGS : 0;
1664         lsi->lsi_flags |= test_bit(LMD_FLG_VIRGIN, lsi->lsi_lmd->lmd_flags) ?
1665                           LDD_F_VIRGIN : 0;
1666         lsi->lsi_flags |= test_bit(LMD_FLG_UPDATE, lsi->lsi_lmd->lmd_flags) ?
1667                           LDD_F_UPDATE : 0;
1668         lsi->lsi_flags |= test_bit(LMD_FLG_MGS, lsi->lsi_lmd->lmd_flags) ?
1669                           LDD_F_SV_TYPE_MGS : 0;
1670         lsi->lsi_flags |= test_bit(LMD_FLG_NO_PRIMNODE, lsi->lsi_lmd->lmd_flags) ?
1671                           LDD_F_NO_PRIMNODE : 0;
1672
1673         RETURN(0);
1674 }
1675
1676 /*************** server mount ******************/
1677
1678 /** Start the shutdown of servers at umount.
1679  */
1680 static void server_put_super(struct super_block *sb)
1681 {
1682         struct lustre_sb_info *lsi = s2lsi(sb);
1683         struct obd_device *obd;
1684         char *tmpname, *extraname = NULL;
1685         int tmpname_sz;
1686         int lsiflags = lsi->lsi_flags;
1687         bool stop_servers = lsi->lsi_server_started;
1688
1689         ENTRY;
1690         LASSERT(IS_SERVER(lsi));
1691
1692         tmpname_sz = strlen(lsi->lsi_svname) + 1;
1693         OBD_ALLOC(tmpname, tmpname_sz);
1694         memcpy(tmpname, lsi->lsi_svname, tmpname_sz);
1695         CDEBUG(D_MOUNT, "server put_super %s\n", tmpname);
1696         if (IS_MDT(lsi) && test_bit(LMD_FLG_NOSVC, lsi->lsi_lmd->lmd_flags))
1697                 snprintf(tmpname, tmpname_sz, "MGS");
1698
1699         /* disconnect the lwp first to drain off the inflight request */
1700         if (IS_OST(lsi) || IS_MDT(lsi)) {
1701                 int     rc;
1702
1703                 rc = lustre_disconnect_lwp(sb);
1704                 if (rc != 0 && rc != -ETIMEDOUT && rc != -ENODEV &&
1705                     rc != -ENOTCONN && rc != -ESHUTDOWN)
1706                         CWARN("%s: failed to disconnect lwp: rc= %d\n",
1707                               tmpname, rc);
1708         }
1709
1710         /* Stop the target */
1711         if (!test_bit(LMD_FLG_NOSVC, lsi->lsi_lmd->lmd_flags) &&
1712             (IS_MDT(lsi) || IS_OST(lsi))) {
1713                 struct lustre_profile *lprof = NULL;
1714
1715                 /* tell the mgc to drop the config log */
1716                 lustre_end_log(sb, lsi->lsi_svname, NULL);
1717
1718                 /* COMPAT_146 - profile may get deleted in mgc_cleanup.
1719                  * If there are any setup/cleanup errors, save the lov
1720                  * name for safety cleanup later.
1721                  */
1722                 lprof = class_get_profile(lsi->lsi_svname);
1723                 if (lprof) {
1724                         if (lprof->lp_dt) {
1725                                 OBD_ALLOC(extraname, strlen(lprof->lp_dt) + 1);
1726                                 strncpy(extraname, lprof->lp_dt,
1727                                         strlen(lprof->lp_dt) + 1);
1728                         }
1729                         class_put_profile(lprof);
1730                 }
1731
1732                 obd = class_name2obd(lsi->lsi_svname);
1733                 if (obd) {
1734                         CDEBUG(D_MOUNT, "stopping %s\n", obd->obd_name);
1735                         if (lsiflags & LSI_UMOUNT_FAILOVER)
1736                                 obd->obd_fail = 1;
1737                         /* We can't seem to give an error return code
1738                          * to .put_super, so we better make sure we clean up!
1739                          */
1740                         obd->obd_force = 1;
1741                         class_manual_cleanup(obd);
1742                         if (CFS_FAIL_PRECHECK(OBD_FAIL_OBD_STOP_MDS_RACE)) {
1743                                 int idx;
1744
1745                                 server_name2index(lsi->lsi_svname, &idx, NULL);
1746                                 /* sleeping for MDT0001 */
1747                                 if (idx == 1)
1748                                         CFS_RACE(OBD_FAIL_OBD_STOP_MDS_RACE);
1749                         }
1750                 } else {
1751                         CERROR("no obd %s\n", lsi->lsi_svname);
1752                         server_deregister_mount(lsi->lsi_svname);
1753                 }
1754         }
1755
1756         /* If they wanted the mgs to stop separately from the mdt, they
1757          * should have put it on a different device.
1758          */
1759         lustre_stop_mgc(sb);
1760         if (IS_MGS(lsi)) {
1761                 /* if MDS start with --nomgs, don't stop MGS then */
1762                 if (!test_bit(LMD_FLG_NOMGS, lsi->lsi_lmd->lmd_flags))
1763                         server_stop_mgs(sb);
1764         }
1765
1766         if (IS_OST(lsi) || IS_MDT(lsi)) {
1767                 if (lustre_stop_lwp(sb) < 0)
1768                         CERROR("%s: failed to stop lwp!\n", tmpname);
1769         }
1770
1771         /* Drop a ref to the mounted disk */
1772         lustre_put_lsi(sb);
1773
1774         /* wait till all in-progress cleanups are done
1775          * specifically we're interested in ofd cleanup
1776          * as it pins OSS
1777          */
1778         obd_zombie_barrier();
1779
1780         /* Stop the servers (MDS, OSS) if no longer needed.  We must wait
1781          * until the target is really gone so that our type refcount check
1782          * is right.
1783          */
1784         if (stop_servers)
1785                 server_stop_servers(lsiflags);
1786
1787         /* In case of startup or cleanup err, stop related obds */
1788         if (extraname) {
1789                 obd = class_name2obd(extraname);
1790                 if (obd) {
1791                         CWARN("Cleaning orphaned obd %s\n", extraname);
1792                         obd->obd_force = 1;
1793                         class_manual_cleanup(obd);
1794                 }
1795                 OBD_FREE(extraname, strlen(extraname) + 1);
1796         }
1797
1798         LCONSOLE(D_WARNING, "server umount %s complete\n", tmpname);
1799         OBD_FREE(tmpname, tmpname_sz);
1800         EXIT;
1801 }
1802
1803 /* Called only for 'umount -f' */
1804 static void server_umount_begin(struct super_block *sb)
1805 {
1806         struct lustre_sb_info *lsi = s2lsi(sb);
1807
1808         ENTRY;
1809         CDEBUG(D_MOUNT, "umount -f\n");
1810         /* umount = failover
1811          * umount -f = force
1812          * no third way to do non-force, non-failover
1813          */
1814         lsi->lsi_flags &= ~LSI_UMOUNT_FAILOVER;
1815         EXIT;
1816 }
1817
1818 static int server_statfs(struct dentry *dentry, struct kstatfs *buf)
1819 {
1820         struct super_block *sb = dentry->d_sb;
1821         struct lustre_sb_info *lsi = s2lsi(sb);
1822         struct obd_statfs statfs;
1823         int rc;
1824
1825         ENTRY;
1826         if (lsi->lsi_dt_dev) {
1827                 rc = dt_statfs(NULL, lsi->lsi_dt_dev, &statfs);
1828                 if (rc == 0) {
1829                         statfs_unpack(buf, &statfs);
1830                         buf->f_type = sb->s_magic;
1831                         RETURN(0);
1832                 }
1833         }
1834
1835         /* just return 0 */
1836         buf->f_type = sb->s_magic;
1837         buf->f_bsize = sb->s_blocksize;
1838         buf->f_blocks = 1;
1839         buf->f_bfree = 0;
1840         buf->f_bavail = 0;
1841         buf->f_files = 1;
1842         buf->f_ffree = 0;
1843         buf->f_namelen = NAME_MAX;
1844         RETURN(0);
1845 }
1846
1847 static int server_show_options(struct seq_file *seq, struct dentry *dentry)
1848 {
1849         struct lustre_sb_info *lsi;
1850         struct lustre_mount_data *lmd;
1851         struct obd_statfs osfs;
1852         struct super_block *sb;
1853         int rc;
1854
1855         LASSERT(seq && dentry);
1856         lsi = s2lsi(dentry->d_sb);
1857         lmd = lsi->lsi_lmd;
1858         sb = dentry->d_sb;
1859
1860         if (lsi->lsi_dt_dev) {
1861                 rc = dt_statfs(NULL, lsi->lsi_dt_dev, &osfs);
1862                 if (!rc) {
1863                         /* Check FS State for OS_STATFS_READONLY
1864                          * (Read only) flag. If it is not set then
1865                          * toggle back the s_flag's SB_RDONLY bit.
1866                          * The SB_RDONLY bit is always set for OST/MDT
1867                          * during server prep (server_fill_super_common())
1868                          * call.
1869                          *
1870                          * Also, if server is mounted with "rdonly_dev"
1871                          * (LMD_FLG_DEV_RDONLY) then force flag to be 'ro'
1872                          */
1873                         if (!test_bit(LMD_FLG_DEV_RDONLY, lmd->lmd_flags) &&
1874                             !(osfs.os_state & OS_STATFS_READONLY))
1875                                 sb->s_flags &= ~SB_RDONLY;
1876                 }
1877         }
1878
1879         seq_printf(seq, ",svname=%s", lmd->lmd_profile);
1880
1881         if (test_bit(LMD_FLG_ABORT_RECOV, lmd->lmd_flags))
1882                 seq_puts(seq, ",abort_recov");
1883
1884         if (test_bit(LMD_FLG_NOIR, lmd->lmd_flags))
1885                 seq_puts(seq, ",noir");
1886
1887         if (test_bit(LMD_FLG_NOSVC, lmd->lmd_flags))
1888                 seq_puts(seq, ",nosvc");
1889
1890         if (test_bit(LMD_FLG_NOMGS, lmd->lmd_flags))
1891                 seq_puts(seq, ",nomgs");
1892
1893         if (test_bit(LMD_FLG_NOSCRUB, lmd->lmd_flags))
1894                 seq_puts(seq, ",noscrub");
1895
1896         if (test_bit(LMD_FLG_SKIP_LFSCK, lmd->lmd_flags))
1897                 seq_puts(seq, ",skip_lfsck");
1898
1899         if (test_bit(LMD_FLG_DEV_RDONLY, lmd->lmd_flags))
1900                 seq_puts(seq, ",rdonly_dev");
1901
1902         if (test_bit(LMD_FLG_MGS, lmd->lmd_flags))
1903                 seq_puts(seq, ",mgs");
1904
1905         if (lmd->lmd_mgs)
1906                 seq_printf(seq, ",mgsnode=%s", lmd->lmd_mgs);
1907
1908         if (lmd->lmd_osd_type)
1909                 seq_printf(seq, ",osd=%s", lmd->lmd_osd_type);
1910
1911         if (lmd->lmd_opts) {
1912                 seq_putc(seq, ',');
1913                 seq_puts(seq, lmd->lmd_opts);
1914         }
1915
1916         RETURN(0);
1917 }
1918
1919 /** The operations we support directly on the superblock:
1920  * mount, umount, and df.
1921  */
1922 static const struct super_operations server_ops = {
1923         .put_super      = server_put_super,
1924         .umount_begin   = server_umount_begin, /* umount -f */
1925         .statfs         = server_statfs,
1926         .show_options   = server_show_options,
1927 };
1928
1929 #if defined(HAVE_USER_NAMESPACE_ARG)
1930 # define IDMAP_ARG idmap,
1931 #else
1932 # define IDMAP_ARG
1933 # ifdef HAVE_INODEOPS_ENHANCED_GETATTR
1934 #  define server_getattr(ns, path, st, rq, fl) server_getattr(path, st, rq, fl)
1935 # endif
1936 #endif
1937
1938 /*
1939  * inode operations for Lustre server mountpoints
1940  */
1941 #if defined(HAVE_USER_NAMESPACE_ARG) || defined(HAVE_INODEOPS_ENHANCED_GETATTR)
1942 static int server_getattr(struct mnt_idmap *idmap,
1943                           const struct path *path, struct kstat *stat,
1944                           u32 request_mask, unsigned int flags)
1945 {
1946         struct inode *inode = d_inode(path->dentry);
1947 #else
1948 static int server_getattr(struct vfsmount *mnt, struct dentry *de,
1949                           struct kstat *stat)
1950 {
1951         struct inode *inode = de->d_inode;
1952 #endif
1953         struct lustre_sb_info *lsi = s2lsi(inode->i_sb);
1954         struct vfsmount *root_mnt;
1955         struct inode *root_inode;
1956
1957         root_mnt = dt_mnt_get(lsi->lsi_dt_dev);
1958         if (IS_ERR(root_mnt))
1959                 root_inode = igrab(inode);
1960         else
1961                 root_inode = igrab(root_mnt->mnt_sb->s_root->d_inode);
1962         if (!root_inode)
1963                 return -EACCES;
1964
1965         CDEBUG(D_SUPER, "%s: root_inode from %s ino=%lu, dev=%x\n",
1966                lsi->lsi_svname, root_inode == inode ? "lsi" : "vfsmnt",
1967                root_inode->i_ino, root_inode->i_rdev);
1968         generic_fillattr(IDMAP_ARG RQMASK_ARG root_inode, stat);
1969         iput(root_inode);
1970
1971         return 0;
1972 }
1973
1974 #ifdef HAVE_IOP_XATTR
1975 static ssize_t server_getxattr(struct dentry *dentry, const char *name,
1976                                 void *buffer, size_t size)
1977 {
1978         if (!selinux_is_enabled())
1979                 return -EOPNOTSUPP;
1980         return -ENODATA;
1981 }
1982
1983 static int server_setxattr(struct dentry *dentry, const char *name,
1984                             const void *value, size_t size, int flags)
1985 {
1986         return -EOPNOTSUPP;
1987 }
1988 #endif
1989
1990 static ssize_t server_listxattr(struct dentry *d_entry, char *name,
1991                                 size_t size)
1992 {
1993         return -EOPNOTSUPP;
1994 }
1995
1996 static bool is_cmd_supported(unsigned int cmd)
1997 {
1998         CDEBUG(D_SUPER, "ioctl cmd=%x\n", cmd);
1999
2000         switch (cmd) {
2001         case FITRIM:
2002                 return true;
2003         case LL_IOC_RESIZE_FS:
2004                 return true;
2005 #ifdef HAVE_FSMAP_H
2006         case FS_IOC_GETFSMAP:
2007                 return true;
2008 #endif
2009         default:
2010                 return false;
2011         }
2012
2013         return false;
2014 }
2015
2016 static long server_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
2017 {
2018         struct lustre_sb_info *lsi = s2lsi(file_inode(filp)->i_sb);
2019         struct vfsmount *root_mnt;
2020         struct file *root_filp;
2021         struct inode *root_inode;
2022         int err = -ENOTTY;
2023
2024         if (!is_cmd_supported(cmd))
2025                 return err;
2026
2027         root_mnt = dt_mnt_get(lsi->lsi_dt_dev);
2028         if (IS_ERR(root_mnt))
2029                 return err;
2030
2031         root_inode = igrab(root_mnt->mnt_root->d_inode);
2032         if (!root_inode)
2033                 return -EACCES;
2034
2035         root_filp = alloc_file_pseudo(root_inode, root_mnt, "/",
2036                                       O_RDWR | O_NOATIME, root_inode->i_fop);
2037         if (root_inode->i_fop && root_inode->i_fop->unlocked_ioctl)
2038                 err = root_inode->i_fop->unlocked_ioctl(root_filp, cmd, arg);
2039         fput(root_filp);
2040
2041         return err;
2042 }
2043
2044 static const struct inode_operations server_inode_operations = {
2045         .getattr        = server_getattr,
2046 #ifdef HAVE_IOP_XATTR
2047         .setxattr       = server_setxattr,
2048         .getxattr       = server_getxattr,
2049 #endif
2050         .listxattr      = server_listxattr,
2051 };
2052
2053 static const struct file_operations server_file_operations = {
2054         .unlocked_ioctl = server_ioctl,
2055 };
2056
2057 #define log2(n) ffz(~(n))
2058 #define LUSTRE_SUPER_MAGIC 0x0BD00BD1
2059
2060 static int server_fill_super_common(struct super_block *sb)
2061 {
2062         struct inode *root = NULL;
2063
2064         ENTRY;
2065         CDEBUG(D_MOUNT, "Server sb, dev=%d\n", (int)sb->s_dev);
2066
2067         sb->s_blocksize = 4096;
2068         sb->s_blocksize_bits = log2(sb->s_blocksize);
2069         sb->s_magic = LUSTRE_SUPER_MAGIC;
2070         sb->s_maxbytes = 0; /* we don't allow file IO on server mountpoints */
2071         sb->s_flags |= SB_RDONLY;
2072         sb->s_op = &server_ops;
2073
2074         root = new_inode(sb);
2075         if (!root) {
2076                 CERROR("Can't make root inode\n");
2077                 RETURN(-EIO);
2078         }
2079
2080         /* returns -EIO for every operation */
2081         /* make_bad_inode(root); -- badness - can't umount */
2082         /* apparently we need to be a directory for the mount to finish */
2083         root->i_mode = S_IFDIR;
2084         root->i_op = &server_inode_operations;
2085         root->i_fop = &server_file_operations;
2086         sb->s_root = d_make_root(root);
2087         if (!sb->s_root) {
2088                 CERROR("%s: can't make root dentry\n", sb->s_id);
2089                 RETURN(-EIO);
2090         }
2091
2092         RETURN(0);
2093 }
2094
2095 static int osd_start(struct lustre_sb_info *lsi, unsigned long mflags)
2096 {
2097         struct lustre_mount_data *lmd = lsi->lsi_lmd;
2098         struct obd_device *obd;
2099         struct dt_device_param p;
2100         char flagstr[20 + 1 + 10 + 1];
2101         u32 lmd_flags;
2102         int rc;
2103
2104         ENTRY;
2105         CDEBUG(D_MOUNT,
2106                "Attempting to start %s, type=%s, lsifl=%x, mountfl=%lx\n",
2107                lsi->lsi_svname, lsi->lsi_osd_type, lsi->lsi_flags, mflags);
2108
2109         sprintf(lsi->lsi_osd_obdname, "%s-osd", lsi->lsi_svname);
2110         strcpy(lsi->lsi_osd_uuid, lsi->lsi_osd_obdname);
2111         strcat(lsi->lsi_osd_uuid, "_UUID");
2112         bitmap_to_arr32(&lmd_flags, lmd->lmd_flags, LMD_FLG_NUM_FLAGS);
2113         snprintf(flagstr, sizeof(flagstr), "%lu:%u", mflags, lmd_flags);
2114
2115         obd = class_name2obd(lsi->lsi_osd_obdname);
2116         if (!obd) {
2117                 rc = lustre_start_simple(lsi->lsi_osd_obdname,
2118                                          lsi->lsi_osd_type,
2119                                          lsi->lsi_osd_uuid, lmd->lmd_dev,
2120                                          flagstr, lsi->lsi_lmd->lmd_opts,
2121                                          lsi->lsi_svname);
2122                 if (rc < 0)
2123                         GOTO(out, rc);
2124                 obd = class_name2obd(lsi->lsi_osd_obdname);
2125                 LASSERT(obd);
2126         } else {
2127                 CDEBUG(D_MOUNT, "%s already started\n", lsi->lsi_osd_obdname);
2128                 /* but continue setup to allow special case of MDT and internal
2129                  * MGT being started separately.
2130                  */
2131                 if (!((IS_MGS(lsi) &&
2132                        test_bit(LMD_FLG_NOMGS, lsi->lsi_lmd->lmd_flags)) ||
2133                      (IS_MDT(lsi) &&
2134                       test_bit(LMD_FLG_NOSVC, lsi->lsi_lmd->lmd_flags))))
2135                         RETURN(-EALREADY);
2136         }
2137
2138         rc = obd_connect(NULL, &lsi->lsi_osd_exp,
2139                          obd, &obd->obd_uuid, NULL, NULL);
2140
2141         if (rc < 0) {
2142                 obd->obd_force = 1;
2143                 class_manual_cleanup(obd);
2144                 lsi->lsi_dt_dev = NULL;
2145                 RETURN(rc);
2146         }
2147
2148         LASSERT(obd->obd_lu_dev);
2149         lu_device_get(obd->obd_lu_dev);
2150         lsi->lsi_dt_dev = lu2dt_dev(obd->obd_lu_dev);
2151         LASSERT(lsi->lsi_dt_dev);
2152
2153         /* set disk context for llog usage */
2154         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
2155         obd->obd_lvfs_ctxt.dt = lsi->lsi_dt_dev;
2156
2157         dt_conf_get(NULL, lsi->lsi_dt_dev, &p);
2158 out:
2159         RETURN(rc);
2160 }
2161
2162 /** Fill in the superblock info for a Lustre server.
2163  * Mount the device with the correct options.
2164  * Read the on-disk config file.
2165  * Start the services.
2166  */
2167 int server_fill_super(struct super_block *sb)
2168 {
2169         struct lustre_sb_info *lsi = s2lsi(sb);
2170         int rc;
2171
2172         ENTRY;
2173         /* to simulate target mount race */
2174         CFS_RACE(OBD_FAIL_TGT_MOUNT_RACE);
2175
2176         rc = lsi_prepare(lsi);
2177         if (rc < 0) {
2178                 lustre_put_lsi(sb);
2179                 RETURN(rc);
2180         }
2181
2182         /* Start low level OSD */
2183         rc = osd_start(lsi, sb->s_flags);
2184         if (rc < 0) {
2185                 CERROR("Unable to start osd on %s: %d\n",
2186                        lsi->lsi_lmd->lmd_dev, rc);
2187                 lustre_put_lsi(sb);
2188                 RETURN(rc);
2189         }
2190
2191         CDEBUG(D_MOUNT, "Found service %s on device %s\n",
2192                lsi->lsi_svname, lsi->lsi_lmd->lmd_dev);
2193
2194         if (class_name2obd(lsi->lsi_svname)) {
2195                 LCONSOLE_ERROR("The target named %s is already running. Double-mount may have compromised the disk journal.\n",
2196                                lsi->lsi_svname);
2197                 lustre_put_lsi(sb);
2198                 RETURN(-EALREADY);
2199         }
2200
2201         /* Start MGS before MGC */
2202         if (IS_MGS(lsi) && !test_bit(LMD_FLG_NOMGS, lsi->lsi_lmd->lmd_flags)) {
2203                 rc = server_start_mgs(sb);
2204                 if (rc < 0)
2205                         GOTO(out_mnt, rc);
2206         }
2207
2208         /* Start MGC before servers */
2209         rc = lustre_start_mgc(sb);
2210         if (rc < 0)
2211                 GOTO(out_mnt, rc);
2212
2213         /* Set up all obd devices for service */
2214         if (!test_bit(LMD_FLG_NOSVC, lsi->lsi_lmd->lmd_flags) &&
2215             (IS_OST(lsi) || IS_MDT(lsi))) {
2216                 rc = server_start_targets(sb);
2217                 if (rc < 0) {
2218                         CERROR("Unable to start targets: %d\n", rc);
2219                         GOTO(out_mnt, rc);
2220                 }
2221                 /* FIXME overmount client here, or can we just start a
2222                  * client log and client_fill_super on this sb?  We
2223                  * need to make sure server_put_super gets called too
2224                  * - ll_put_super calls lustre_common_put_super; check
2225                  * there for LSI_SERVER flag, call s_p_s if so.
2226                  *
2227                  * Probably should start client from new thread so we
2228                  * can return.  Client will not finish until all
2229                  * servers are connected.  Note - MGS-only server does
2230                  * NOT get a client, since there is no lustre fs
2231                  * associated - the MGS is for all lustre fs's
2232                  */
2233         }
2234
2235         rc = server_fill_super_common(sb);
2236         if (rc < 0)
2237                 GOTO(out_mnt, rc);
2238
2239         RETURN(0);
2240 out_mnt:
2241         /* We jump here in case of failure while starting targets or MGS.
2242          * In this case we can't just put @mnt and have to do real cleanup
2243          * with stoping targets, etc.
2244          */
2245         server_put_super(sb);
2246         return rc;
2247 }
2248 EXPORT_SYMBOL(server_fill_super);
2249
2250 /*
2251  * Calculate timeout value for a target.
2252  */
2253 void server_calc_timeout(struct lustre_sb_info *lsi, struct obd_device *obd)
2254 {
2255         struct lustre_mount_data *lmd;
2256         int soft = 0;
2257         int hard = 0;
2258         int factor = 0;
2259         bool has_ir = !!(lsi->lsi_flags & LDD_F_IR_CAPABLE);
2260         int min = OBD_RECOVERY_TIME_MIN;
2261
2262         LASSERT(IS_SERVER(lsi));
2263
2264         lmd = lsi->lsi_lmd;
2265         if (lmd) {
2266                 soft   = lmd->lmd_recovery_time_soft;
2267                 hard   = lmd->lmd_recovery_time_hard;
2268                 has_ir = has_ir && !test_bit(LMD_FLG_NOIR, lmd->lmd_flags);
2269                 obd->obd_no_ir = !has_ir;
2270         }
2271
2272         if (soft == 0)
2273                 soft = OBD_RECOVERY_TIME_SOFT;
2274         if (hard == 0)
2275                 hard = OBD_RECOVERY_TIME_HARD;
2276
2277         /* target may have ir_factor configured. */
2278         factor = OBD_IR_FACTOR_DEFAULT;
2279         if (obd->obd_recovery_ir_factor)
2280                 factor = obd->obd_recovery_ir_factor;
2281
2282         if (has_ir) {
2283                 int new_soft = soft;
2284
2285                 /* adjust timeout value by imperative recovery */
2286                 new_soft = (soft * factor) / OBD_IR_FACTOR_MAX;
2287                 /* make sure the timeout is not too short */
2288                 new_soft = max(min, new_soft);
2289
2290                 LCONSOLE_INFO("%s: Imperative Recovery enabled, recovery window shrunk from %d-%d down to %d-%d\n",
2291                               obd->obd_name, soft, hard, new_soft, hard);
2292
2293                 soft = new_soft;
2294         } else {
2295                 LCONSOLE_INFO("%s: Imperative Recovery not enabled, recovery window %d-%d\n",
2296                               obd->obd_name, soft, hard);
2297         }
2298
2299         /* we're done */
2300         obd->obd_recovery_timeout = max_t(time64_t, obd->obd_recovery_timeout,
2301                                           soft);
2302         obd->obd_recovery_time_hard = hard;
2303         obd->obd_recovery_ir_factor = factor;
2304 }
2305
2306 /**
2307  * This is the entry point for the mount call into Lustre.
2308  * This is called when a server target is mounted,
2309  * and this is where we start setting things up.
2310  * @param data Mount options (e.g. -o flock,abort_recov)
2311  */
2312 static int lustre_tgt_fill_super(struct super_block *sb, void *lmd2_data,
2313                                  int silent)
2314 {
2315         struct lustre_mount_data *lmd;
2316         struct lustre_sb_info *lsi;
2317         int rc;
2318
2319         ENTRY;
2320         CDEBUG(D_MOUNT|D_VFSTRACE, "VFS Op: sb %p\n", sb);
2321
2322         lsi = lustre_init_lsi(sb);
2323         if (!lsi)
2324                 RETURN(-ENOMEM);
2325         lmd = lsi->lsi_lmd;
2326
2327         /*
2328          * Disable lockdep during mount, because mount locking patterns are
2329          * 'special'.
2330          */
2331         lockdep_off();
2332
2333         /*
2334          * LU-639: the OBD cleanup of last mount may not finish yet, wait here.
2335          */
2336         obd_zombie_barrier();
2337
2338         /* Figure out the lmd from the mount options */
2339         if (lmd_parse(lmd2_data, lmd)) {
2340                 lustre_put_lsi(sb);
2341                 GOTO(out, rc = -EINVAL);
2342         }
2343
2344         if (lmd_is_client(lmd)) {
2345                 rc = -ENODEV;
2346                 CERROR("%s: attempting to mount a client with -t lustre_tgt' which is only for server-side mounts: rc = %d\n",
2347                        lmd->lmd_dev, rc);
2348                 lustre_put_lsi(sb);
2349                 GOTO(out, rc);
2350         }
2351
2352         CDEBUG(D_MOUNT, "Mounting server from %s\n", lmd->lmd_dev);
2353         rc = server_fill_super(sb);
2354         /*
2355          * server_fill_super calls lustre_start_mgc after the mount
2356          * because we need the MGS NIDs which are stored on disk.
2357          * Plus, we may need to start the MGS first.
2358          *
2359          * server_fill_super will call server_put_super on failure
2360          *
2361          * If error happens in fill_super() call, @lsi will be killed there.
2362          * This is why we do not put it here.
2363          */
2364 out:
2365         if (rc) {
2366                 CERROR("Unable to mount %s (%d)\n",
2367                        s2lsi(sb) ? lmd->lmd_dev : "", rc);
2368         } else {
2369                 CDEBUG(D_SUPER, "Mount %s complete\n",
2370                        lmd->lmd_dev);
2371         }
2372         lockdep_on();
2373         return rc;
2374 }
2375
2376 /***************** FS registration ******************/
2377 static struct dentry *lustre_tgt_mount(struct file_system_type *fs_type,
2378                                        int flags, const char *devname,
2379                                        void *data)
2380 {
2381         return mount_nodev(fs_type, flags, data, lustre_tgt_fill_super);
2382 }
2383
2384 /* Register the "lustre_tgt" fs type.
2385  *
2386  * Right now this isn't any different than the normal "lustre" filesystem
2387  * type, but it is added so that there is some compatibility to allow
2388  * changing documentation and scripts to start using the "lustre_tgt" type
2389  * at mount time. That will simplify test interop, and in case of upgrades
2390  * that change to the new type and then need to roll back for some reason.
2391  *
2392  * The long-term goal is to disentangle the client and server mount code.
2393  */
2394 static struct file_system_type lustre_tgt_fstype = {
2395         .owner          = THIS_MODULE,
2396         .name           = "lustre_tgt",
2397         .mount          = lustre_tgt_mount,
2398         .kill_sb        = kill_anon_super,
2399         .fs_flags       = FS_REQUIRES_DEV | FS_RENAME_DOES_D_MOVE,
2400 };
2401 MODULE_ALIAS_FS("lustre_tgt");
2402
2403 int lustre_tgt_register_fs(void)
2404 {
2405         return register_filesystem(&lustre_tgt_fstype);
2406 }
2407
2408 void lustre_tgt_unregister_fs(void)
2409 {
2410         unregister_filesystem(&lustre_tgt_fstype);
2411 }