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