Whamcloud - gitweb
LU-6068 misc: update Intel copyright messages 2014
[fs/lustre-release.git] / lustre / mgs / mgs_handler.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2010, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mgs/mgs_handler.c
37  *
38  * Author: Nathan Rutman <nathan@clusterfs.com>
39  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
40  * Author: Mikhail Pershin <tappro@whamcloud.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MGS
44 #define D_MGS D_CONFIG
45
46 #include <obd_class.h>
47 #include <lprocfs_status.h>
48 #include <lustre_ioctl.h>
49 #include <lustre_param.h>
50
51 #include "mgs_internal.h"
52
53 /*
54  * Regular MGS handlers
55  */
56 static int mgs_connect(struct tgt_session_info *tsi)
57 {
58         struct ptlrpc_request   *req = tgt_ses_req(tsi);
59         int                      rc;
60
61         ENTRY;
62
63         CFS_FAIL_TIMEOUT(OBD_FAIL_MGS_CONNECT_NET, cfs_fail_val);
64         rc = tgt_connect(tsi);
65         if (rc)
66                 RETURN(rc);
67
68         if (lustre_msg_get_conn_cnt(req->rq_reqmsg) > 1)
69                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_RECONNECT);
70
71         RETURN(0);
72 }
73
74 static int mgs_disconnect(struct tgt_session_info *tsi)
75 {
76         int rc;
77
78         ENTRY;
79
80         LASSERT(tsi->tsi_exp);
81
82         rc = tgt_disconnect(tsi);
83         if (rc)
84                 RETURN(err_serious(rc));
85         RETURN(0);
86 }
87
88 static int mgs_exception(struct tgt_session_info *tsi)
89 {
90         ENTRY;
91
92         tgt_counter_incr(tsi->tsi_exp, LPROC_MGS_EXCEPTION);
93
94         RETURN(0);
95 }
96
97 static int mgs_set_info(struct tgt_session_info *tsi)
98 {
99         struct mgs_thread_info  *mgi;
100         struct mgs_send_param   *msp, *rep_msp;
101         struct lustre_cfg       *lcfg;
102         int                      rc;
103
104         ENTRY;
105
106         mgi = mgs_env_info(tsi->tsi_env);
107         if (IS_ERR(mgi))
108                 RETURN(err_serious(PTR_ERR(mgi)));
109
110         msp = req_capsule_client_get(tsi->tsi_pill, &RMF_MGS_SEND_PARAM);
111         if (msp == NULL)
112                 RETURN(err_serious(-EFAULT));
113
114         /* Construct lustre_cfg structure to pass to function mgs_setparam */
115         lustre_cfg_bufs_reset(&mgi->mgi_bufs, NULL);
116         lustre_cfg_bufs_set_string(&mgi->mgi_bufs, 1, msp->mgs_param);
117         lcfg = lustre_cfg_new(LCFG_PARAM, &mgi->mgi_bufs);
118         if (lcfg == NULL)
119                 RETURN(-ENOMEM);
120
121         rc = mgs_setparam(tsi->tsi_env, exp2mgs_dev(tsi->tsi_exp), lcfg,
122                           mgi->mgi_fsname);
123         if (rc) {
124                 LCONSOLE_WARN("%s: Unable to set parameter %s for %s: %d\n",
125                               tgt_name(tsi->tsi_tgt), msp->mgs_param,
126                               mgi->mgi_fsname, rc);
127                 GOTO(out_cfg, rc);
128         }
129
130         /* send back the whole msp in the reply */
131         rep_msp = req_capsule_server_get(tsi->tsi_pill, &RMF_MGS_SEND_PARAM);
132         *rep_msp = *msp;
133         EXIT;
134 out_cfg:
135         lustre_cfg_free(lcfg);
136         return rc;
137 }
138
139 enum ast_type {
140                 AST_CONFIG = 1,
141                 AST_PARAMS = 2,
142                 AST_IR = 3
143 };
144
145 static int mgs_completion_ast_generic(struct ldlm_lock *lock, __u64 flags,
146                                      void *cbdata, enum ast_type type)
147 {
148         ENTRY;
149
150         if (!(flags & LDLM_FL_BLOCKED_MASK)) {
151                 struct fs_db *fsdb;
152
153                 /* l_ast_data is used as a marker to avoid cancel ldlm lock
154                  * twice. See LU-2317. */
155                 lock_res_and_lock(lock);
156                 fsdb = (struct fs_db *)lock->l_ast_data;
157                 lock->l_ast_data = NULL;
158                 unlock_res_and_lock(lock);
159
160                 if (fsdb != NULL) {
161                         struct lustre_handle lockh;
162
163                         switch(type) {
164                                 case AST_CONFIG:
165                                         /* clear the bit before lock put */
166                                         clear_bit(FSDB_REVOKING_LOCK,
167                                                   &fsdb->fsdb_flags);
168                                         break;
169                                 case AST_PARAMS:
170                                         clear_bit(FSDB_REVOKING_PARAMS,
171                                                   &fsdb->fsdb_flags);
172                                         break;
173                                 case AST_IR:
174                                         mgs_ir_notify_complete(fsdb);
175                                         break;
176                                 default:
177                                         LBUG();
178                         }
179
180                         ldlm_lock2handle(lock, &lockh);
181                         ldlm_lock_decref_and_cancel(&lockh, LCK_EX);
182                 }
183         }
184
185         RETURN(ldlm_completion_ast(lock, flags, cbdata));
186 }
187
188 static int mgs_completion_ast_config(struct ldlm_lock *lock, __u64 flags,
189                                      void *cbdata)
190 {
191         return mgs_completion_ast_generic(lock, flags, cbdata, AST_CONFIG);
192 }
193
194 static int mgs_completion_ast_params(struct ldlm_lock *lock, __u64 flags,
195                                      void *cbdata)
196 {
197         return mgs_completion_ast_generic(lock, flags, cbdata, AST_PARAMS);
198 }
199
200 static int mgs_completion_ast_ir(struct ldlm_lock *lock, __u64 flags,
201                                  void *cbdata)
202 {
203         return mgs_completion_ast_generic(lock, flags, cbdata, AST_IR);
204 }
205
206 void mgs_revoke_lock(struct mgs_device *mgs, struct fs_db *fsdb, int type)
207 {
208         ldlm_completion_callback cp = NULL;
209         struct lustre_handle     lockh = { 0 };
210         struct ldlm_res_id       res_id;
211         __u64 flags = LDLM_FL_ATOMIC_CB;
212         int rc;
213         ENTRY;
214
215         LASSERT(fsdb->fsdb_name[0] != '\0');
216         rc = mgc_fsname2resid(fsdb->fsdb_name, &res_id, type);
217         LASSERT(rc == 0);
218         switch (type) {
219         case CONFIG_T_CONFIG:
220                 cp = mgs_completion_ast_config;
221                 if (test_and_set_bit(FSDB_REVOKING_LOCK, &fsdb->fsdb_flags))
222                         rc = -EALREADY;
223                 break;
224         case CONFIG_T_PARAMS:
225                 cp = mgs_completion_ast_params;
226                 if (test_and_set_bit(FSDB_REVOKING_PARAMS, &fsdb->fsdb_flags))
227                         rc = -EALREADY;
228                 break;
229         case CONFIG_T_RECOVER:
230                 cp = mgs_completion_ast_ir;
231         default:
232                 break;
233         }
234
235         if (!rc) {
236                 LASSERT(cp != NULL);
237                 rc = ldlm_cli_enqueue_local(mgs->mgs_obd->obd_namespace,
238                                             &res_id, LDLM_PLAIN, NULL, LCK_EX,
239                                             &flags, ldlm_blocking_ast, cp,
240                                             NULL, fsdb, 0, LVB_T_NONE, NULL,
241                                             &lockh);
242                 if (rc != ELDLM_OK) {
243                         CERROR("can't take cfg lock for "LPX64"/"LPX64"(%d)\n",
244                                le64_to_cpu(res_id.name[0]),
245                                le64_to_cpu(res_id.name[1]), rc);
246
247                         if (type == CONFIG_T_CONFIG)
248                                 clear_bit(FSDB_REVOKING_LOCK,
249                                           &fsdb->fsdb_flags);
250
251                         if (type == CONFIG_T_PARAMS)
252                                 clear_bit(FSDB_REVOKING_PARAMS,
253                                           &fsdb->fsdb_flags);
254                 }
255                 /* lock has been cancelled in completion_ast. */
256         }
257
258         RETURN_EXIT;
259 }
260
261 /* rc=0 means ok
262       1 means update
263      <0 means error */
264 static int mgs_check_target(const struct lu_env *env,
265                             struct mgs_device *mgs,
266                             struct mgs_target_info *mti)
267 {
268         int rc;
269         ENTRY;
270
271         rc = mgs_check_index(env, mgs, mti);
272         if (rc == 0) {
273                 LCONSOLE_ERROR_MSG(0x13b, "%s claims to have registered, but "
274                                    "this MGS does not know about it, preventing "
275                                    "registration.\n", mti->mti_svname);
276                 rc = -ENOENT;
277         } else if (rc == -1) {
278                 LCONSOLE_ERROR_MSG(0x13c, "Client log %s-client has "
279                                    "disappeared! Regenerating all logs.\n",
280                                    mti->mti_fsname);
281                 mti->mti_flags |= LDD_F_WRITECONF;
282                 rc = 1;
283         } else {
284                 /* Index is correctly marked as used */
285
286                 /* If the logs don't contain the mti_nids then add
287                    them as failover nids */
288                 rc = mgs_check_failnid(env, mgs, mti);
289         }
290
291         RETURN(rc);
292 }
293
294 /* Ensure this is not a failover node that is connecting first*/
295 static int mgs_check_failover_reg(struct mgs_target_info *mti)
296 {
297         lnet_nid_t nid;
298         char *ptr;
299         int i;
300
301         ptr = mti->mti_params;
302         while (class_find_param(ptr, PARAM_FAILNODE, &ptr) == 0) {
303                 while (class_parse_nid_quiet(ptr, &nid, &ptr) == 0) {
304                         for (i = 0; i < mti->mti_nid_count; i++) {
305                                 if (nid == mti->mti_nids[i]) {
306                                         LCONSOLE_WARN("Denying initial registra"
307                                                       "tion attempt from nid %s"
308                                                       ", specified as failover"
309                                                       "\n",libcfs_nid2str(nid));
310                                         return -EADDRNOTAVAIL;
311                                 }
312                         }
313                 }
314         }
315         return 0;
316 }
317
318 /* Called whenever a target starts up.  Flags indicate first connect, etc. */
319 static int mgs_target_reg(struct tgt_session_info *tsi)
320 {
321         struct obd_device       *obd = tsi->tsi_exp->exp_obd;
322         struct mgs_device       *mgs = exp2mgs_dev(tsi->tsi_exp);
323         struct mgs_target_info  *mti, *rep_mti;
324         struct fs_db            *fsdb;
325         int                      opc;
326         int                      rc = 0;
327
328         ENTRY;
329
330         rc = lu_env_refill((struct lu_env *)tsi->tsi_env);
331         if (rc)
332                 return err_serious(rc);
333
334         tgt_counter_incr(tsi->tsi_exp, LPROC_MGS_TARGET_REG);
335
336         mti = req_capsule_client_get(tsi->tsi_pill, &RMF_MGS_TARGET_INFO);
337         if (mti == NULL) {
338                 DEBUG_REQ(D_HA, tgt_ses_req(tsi), "no mgs_send_param");
339                 RETURN(err_serious(-EFAULT));
340         }
341
342         if (OCD_HAS_FLAG(&tgt_ses_req(tsi)->rq_export->exp_connect_data,
343                          IMP_RECOV))
344                 opc = mti->mti_flags & LDD_F_OPC_MASK;
345         else
346                 opc = LDD_F_OPC_REG;
347
348         if (opc == LDD_F_OPC_READY) {
349                 CDEBUG(D_MGS, "fs: %s index: %d is ready to reconnect.\n",
350                        mti->mti_fsname, mti->mti_stripe_index);
351                 rc = mgs_ir_update(tsi->tsi_env, mgs, mti);
352                 if (rc) {
353                         LASSERT(!(mti->mti_flags & LDD_F_IR_CAPABLE));
354                         CERROR("Update IR return with %d(ignore and IR "
355                                "disabled)\n", rc);
356                 }
357                 GOTO(out_nolock, rc);
358         }
359
360         /* Do not support unregistering right now. */
361         if (opc != LDD_F_OPC_REG)
362                 GOTO(out_nolock, rc = -EINVAL);
363
364         CDEBUG(D_MGS, "fs: %s index: %d is registered to MGS.\n",
365                mti->mti_fsname, mti->mti_stripe_index);
366
367         if (mti->mti_flags & LDD_F_NEED_INDEX)
368                 mti->mti_flags |= LDD_F_WRITECONF;
369
370         if (!(mti->mti_flags & (LDD_F_WRITECONF | LDD_F_UPGRADE14 |
371                                 LDD_F_UPDATE))) {
372                 /* We're just here as a startup ping. */
373                 CDEBUG(D_MGS, "Server %s is running on %s\n",
374                        mti->mti_svname, obd_export_nid2str(tsi->tsi_exp));
375                 rc = mgs_check_target(tsi->tsi_env, mgs, mti);
376                 /* above will set appropriate mti flags */
377                 if (rc <= 0)
378                         /* Nothing wrong, or fatal error */
379                         GOTO(out_nolock, rc);
380         } else if (!(mti->mti_flags & LDD_F_NO_PRIMNODE)) {
381                 rc = mgs_check_failover_reg(mti);
382                 if (rc)
383                         GOTO(out_nolock, rc);
384         }
385
386         OBD_FAIL_TIMEOUT(OBD_FAIL_MGS_PAUSE_TARGET_REG, 10);
387
388         if (mti->mti_flags & LDD_F_WRITECONF) {
389                 if (mti->mti_flags & LDD_F_SV_TYPE_MDT &&
390                     mti->mti_stripe_index == 0) {
391                         rc = mgs_erase_logs(tsi->tsi_env, mgs,
392                                             mti->mti_fsname);
393                         LCONSOLE_WARN("%s: Logs for fs %s were removed by user "
394                                       "request.  All servers must be restarted "
395                                       "in order to regenerate the logs."
396                                       "\n", obd->obd_name, mti->mti_fsname);
397                 } else if (mti->mti_flags &
398                            (LDD_F_SV_TYPE_OST | LDD_F_SV_TYPE_MDT)) {
399                         rc = mgs_erase_log(tsi->tsi_env, mgs, mti->mti_svname);
400                         LCONSOLE_WARN("%s: Regenerating %s log by user "
401                                       "request.\n",
402                                       obd->obd_name, mti->mti_svname);
403                 }
404                 mti->mti_flags |= LDD_F_UPDATE;
405                 /* Erased logs means start from scratch. */
406                 mti->mti_flags &= ~LDD_F_UPGRADE14;
407                 if (rc)
408                         GOTO(out_nolock, rc);
409         }
410
411         rc = mgs_find_or_make_fsdb(tsi->tsi_env, mgs, mti->mti_fsname, &fsdb);
412         if (rc) {
413                 CERROR("Can't get db for %s: %d\n", mti->mti_fsname, rc);
414                 GOTO(out_nolock, rc);
415         }
416
417         /*
418          * Log writing contention is handled by the fsdb_mutex.
419          *
420          * It should be alright if someone was reading while we were
421          * updating the logs - if we revoke at the end they will just update
422          * from where they left off.
423          */
424
425         if (mti->mti_flags & LDD_F_UPGRADE14) {
426                 CERROR("Can't upgrade from 1.4 (%d)\n", rc);
427                 GOTO(out, rc);
428         }
429
430         if (mti->mti_flags & LDD_F_UPDATE) {
431                 CDEBUG(D_MGS, "updating %s, index=%d\n", mti->mti_svname,
432                        mti->mti_stripe_index);
433
434                 /* create or update the target log
435                    and update the client/mdt logs */
436                 rc = mgs_write_log_target(tsi->tsi_env, mgs, mti, fsdb);
437                 if (rc) {
438                         CERROR("Failed to write %s log (%d)\n",
439                                mti->mti_svname, rc);
440                         GOTO(out, rc);
441                 }
442
443                 mti->mti_flags &= ~(LDD_F_VIRGIN | LDD_F_UPDATE |
444                                     LDD_F_NEED_INDEX | LDD_F_WRITECONF |
445                                     LDD_F_UPGRADE14);
446                 mti->mti_flags |= LDD_F_REWRITE_LDD;
447         }
448
449 out:
450         mgs_revoke_lock(mgs, fsdb, CONFIG_T_CONFIG);
451
452 out_nolock:
453         CDEBUG(D_MGS, "replying with %s, index=%d, rc=%d\n", mti->mti_svname,
454                mti->mti_stripe_index, rc);
455          /* An error flag is set in the mti reply rather than an error code */
456         if (rc)
457                 mti->mti_flags |= LDD_F_ERROR;
458
459         /* send back the whole mti in the reply */
460         rep_mti = req_capsule_server_get(tsi->tsi_pill, &RMF_MGS_TARGET_INFO);
461         *rep_mti = *mti;
462
463         /* Flush logs to disk */
464         dt_sync(tsi->tsi_env, mgs->mgs_bottom);
465         RETURN(rc);
466 }
467
468 /* Called whenever a target cleans up. */
469 static int mgs_target_del(struct tgt_session_info *tsi)
470 {
471         ENTRY;
472
473         tgt_counter_incr(tsi->tsi_exp, LPROC_MGS_TARGET_DEL);
474
475         RETURN(0);
476 }
477
478 static int mgs_config_read(struct tgt_session_info *tsi)
479 {
480         struct ptlrpc_request   *req = tgt_ses_req(tsi);
481         struct mgs_config_body  *body;
482         int                      rc;
483
484         ENTRY;
485
486         body = req_capsule_client_get(tsi->tsi_pill, &RMF_MGS_CONFIG_BODY);
487         if (body == NULL) {
488                 DEBUG_REQ(D_HA, req, "no mgs_config_body");
489                 RETURN(err_serious(-EFAULT));
490         }
491
492         switch (body->mcb_type) {
493         case CONFIG_T_RECOVER:
494                 rc = mgs_get_ir_logs(req);
495                 break;
496         case CONFIG_T_CONFIG:
497                 rc = -EOPNOTSUPP;
498                 break;
499         default:
500                 rc = -EINVAL;
501                 break;
502         }
503
504         RETURN(rc);
505 }
506
507 static int mgs_llog_open(struct tgt_session_info *tsi)
508 {
509         struct mgs_thread_info  *mgi;
510         struct ptlrpc_request   *req = tgt_ses_req(tsi);
511         char                    *logname;
512         int                      rc;
513
514         ENTRY;
515
516         rc = tgt_llog_open(tsi);
517         if (rc)
518                 RETURN(rc);
519
520         /*
521          * For old clients there is no direct way of knowing which file system
522          * a client is operating at the MGS side. But we need to pick up those
523          * clients so that the MGS can mark the corresponding file system as
524          * non-IR capable because old clients are not ready to be notified.
525          *
526          * Therefore we attempt to detect the file systems name by hacking the
527          * llog operation which is currently used by the clients to fetch
528          * configuration logs. At present this is fine because this is the
529          * ONLY llog operation between mgc and the MGS.
530          *
531          * If extra llog operation are going to be added, this function needs
532          * further work.
533          *
534          * When releases prior than 2.0 are not supported, the following code
535          * can be removed.
536          */
537         mgi = mgs_env_info(tsi->tsi_env);
538         if (IS_ERR(mgi))
539                 RETURN(PTR_ERR(mgi));
540
541         logname = req_capsule_client_get(tsi->tsi_pill, &RMF_NAME);
542         if (logname) {
543                 char *ptr = strchr(logname, '-');
544                 int   len = (ptr != NULL) ? (int)(ptr - logname) : 0;
545
546                 if (ptr == NULL || len >= sizeof(mgi->mgi_fsname)) {
547                         if (strcmp(logname, PARAMS_FILENAME) != 0)
548                                 LCONSOLE_WARN("%s: non-config logname "
549                                               "received: %s\n",
550                                               tgt_name(tsi->tsi_tgt),
551                                               logname);
552                         /* not error, this can be llog test name */
553                 } else {
554                         strncpy(mgi->mgi_fsname, logname, len);
555                         mgi->mgi_fsname[len] = 0;
556
557                         rc = mgs_fsc_attach(tsi->tsi_env, tsi->tsi_exp,
558                                             mgi->mgi_fsname);
559                         if (rc && rc != -EEXIST) {
560                                 LCONSOLE_WARN("%s: Unable to add client %s "
561                                               "to file system %s: %d\n",
562                                               tgt_name(tsi->tsi_tgt),
563                                               libcfs_nid2str(req->rq_peer.nid),
564                                               mgi->mgi_fsname, rc);
565                         } else {
566                                 rc = 0;
567                         }
568                 }
569         } else {
570                 CERROR("%s: no logname in request\n", tgt_name(tsi->tsi_tgt));
571                 RETURN(-EINVAL);
572         }
573         RETURN(rc);
574 }
575
576 static inline int mgs_init_export(struct obd_export *exp)
577 {
578         struct mgs_export_data *data = &exp->u.eu_mgs_data;
579
580         /* init mgs_export_data for fsc */
581         spin_lock_init(&data->med_lock);
582         INIT_LIST_HEAD(&data->med_clients);
583
584         spin_lock(&exp->exp_lock);
585         exp->exp_connecting = 1;
586         spin_unlock(&exp->exp_lock);
587
588         /* self-export doesn't need client data and ldlm initialization */
589         if (unlikely(obd_uuid_equals(&exp->exp_obd->obd_uuid,
590                                      &exp->exp_client_uuid)))
591                 return 0;
592         return ldlm_init_export(exp);
593 }
594
595 static inline int mgs_destroy_export(struct obd_export *exp)
596 {
597         ENTRY;
598
599         target_destroy_export(exp);
600         mgs_client_free(exp);
601
602         if (unlikely(obd_uuid_equals(&exp->exp_obd->obd_uuid,
603                                      &exp->exp_client_uuid)))
604                 RETURN(0);
605
606         ldlm_destroy_export(exp);
607
608         RETURN(0);
609 }
610
611 static int mgs_extract_fs_pool(char * arg, char *fsname, char *poolname)
612 {
613         char *ptr;
614
615         ENTRY;
616         for (ptr = arg;  (*ptr != '\0') && (*ptr != '.'); ptr++ ) {
617                 *fsname = *ptr;
618                 fsname++;
619         }
620         if (*ptr == '\0')
621                 return -EINVAL;
622         *fsname = '\0';
623         ptr++;
624         strcpy(poolname, ptr);
625
626         RETURN(0);
627 }
628
629 static int mgs_iocontrol_nodemap(const struct lu_env *env,
630                                  struct mgs_device *mgs,
631                                  struct obd_ioctl_data *data)
632 {
633         struct lustre_cfg       *lcfg = NULL;
634         struct lu_nodemap       *nodemap;
635         lnet_nid_t              nid;
636         const char              *nodemap_name = NULL;
637         const char              *nidstr = NULL;
638         const char              *client_idstr = NULL;
639         const char              *idtype_str = NULL;
640         char                    *param = NULL;
641         char                    fs_idstr[16];
642         int                     rc = 0;
643         __u32                   client_id;
644         __u32                   fs_id;
645         __u32                   cmd;
646         int                     idtype;
647
648         ENTRY;
649
650         if (data->ioc_type != LUSTRE_CFG_TYPE) {
651                 CERROR("%s: unknown cfg record type: %d\n",
652                        mgs->mgs_obd->obd_name, data->ioc_type);
653                 GOTO(out, rc = -EINVAL);
654         }
655
656         if (data->ioc_plen1 > PAGE_CACHE_SIZE)
657                 GOTO(out, rc = -E2BIG);
658
659         OBD_ALLOC(lcfg, data->ioc_plen1);
660         if (lcfg == NULL)
661                 GOTO(out, rc = -ENOMEM);
662
663         if (copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
664                 GOTO(out_lcfg, rc = -EFAULT);
665
666         cmd = lcfg->lcfg_command;
667
668         switch (cmd) {
669         case LCFG_NODEMAP_ACTIVATE:
670                 if (lcfg->lcfg_bufcount != 2)
671                         GOTO(out_lcfg, rc = -EINVAL);
672                 param = lustre_cfg_string(lcfg, 1);
673                 if (strcmp(param, "1") == 0)
674                                 nodemap_activate(1);
675                 else
676                                 nodemap_activate(0);
677                 break;
678         case LCFG_NODEMAP_ADD:
679         case LCFG_NODEMAP_DEL:
680                 if (lcfg->lcfg_bufcount != 2)
681                         GOTO(out_lcfg, rc = -EINVAL);
682                 nodemap_name = lustre_cfg_string(lcfg, 1);
683                 rc = mgs_nodemap_cmd(env, mgs, cmd, nodemap_name, param);
684                 break;
685         case LCFG_NODEMAP_TEST_NID:
686                 if (lcfg->lcfg_bufcount != 2)
687                         GOTO(out_lcfg, rc = -EINVAL);
688                 nidstr = lustre_cfg_string(lcfg, 1);
689                 nid = libcfs_str2nid(nidstr);
690                 nodemap = nodemap_classify_nid(nid);
691                 memset(data->ioc_pbuf1, 0, data->ioc_plen1);
692                 if (copy_to_user(data->ioc_pbuf1, nodemap->nm_name,
693                                  strlen(nodemap->nm_name)) != 0)
694                         GOTO(out_lcfg, rc = -EFAULT);
695                 break;
696         case LCFG_NODEMAP_TEST_ID:
697                 if (lcfg->lcfg_bufcount != 4)
698                         GOTO(out_lcfg, rc = -EINVAL);
699                 nidstr = lustre_cfg_string(lcfg, 1);
700                 idtype_str = lustre_cfg_string(lcfg, 2);
701                 client_idstr = lustre_cfg_string(lcfg, 3);
702
703                 nid = libcfs_str2nid(nidstr);
704                 nodemap = nodemap_classify_nid(nid);
705                 client_id = simple_strtoul(client_idstr, NULL, 10);
706
707                 if (strcmp(idtype_str, "uid") == 0)
708                         idtype = NODEMAP_UID;
709                 else
710                         idtype = NODEMAP_GID;
711
712                 fs_id = nodemap_map_id(nodemap, idtype, NODEMAP_CLIENT_TO_FS,
713                                        client_id);
714
715                 if (data->ioc_plen1 < sizeof(fs_idstr))
716                         GOTO(out_lcfg, rc = -EINVAL);
717
718                 snprintf(fs_idstr, sizeof(fs_idstr), "%u", fs_id);
719                 if (copy_to_user(data->ioc_pbuf1, fs_idstr,
720                                  sizeof(fs_idstr)) != 0)
721                         GOTO(out_lcfg, rc = -EINVAL);
722                 break;
723         case LCFG_NODEMAP_ADD_RANGE:
724         case LCFG_NODEMAP_DEL_RANGE:
725         case LCFG_NODEMAP_ADD_UIDMAP:
726         case LCFG_NODEMAP_DEL_UIDMAP:
727         case LCFG_NODEMAP_ADD_GIDMAP:
728         case LCFG_NODEMAP_DEL_GIDMAP:
729                 if (lcfg->lcfg_bufcount != 3)
730                         GOTO(out_lcfg, rc = -EINVAL);
731                 nodemap_name = lustre_cfg_string(lcfg, 1);
732                 param = lustre_cfg_string(lcfg, 2);
733                 rc = mgs_nodemap_cmd(env, mgs, cmd, nodemap_name, param);
734                 break;
735         case LCFG_NODEMAP_ADMIN:
736         case LCFG_NODEMAP_TRUSTED:
737         case LCFG_NODEMAP_SQUASH_UID:
738         case LCFG_NODEMAP_SQUASH_GID:
739                 if (lcfg->lcfg_bufcount != 4)
740                         GOTO(out_lcfg, rc = -EINVAL);
741                 nodemap_name = lustre_cfg_string(lcfg, 1);
742                 param = lustre_cfg_string(lcfg, 3);
743                 rc = mgs_nodemap_cmd(env, mgs, cmd, nodemap_name, param);
744                 break;
745         default:
746                 rc = -ENOTTY;
747         }
748
749         if (rc != 0) {
750                 CERROR("%s: OBD_IOC_NODEMAP command %X for %s: rc = %d\n",
751                        mgs->mgs_obd->obd_name, lcfg->lcfg_command,
752                        nodemap_name, rc);
753                 GOTO(out_lcfg, rc);
754         }
755
756 out_lcfg:
757         OBD_FREE(lcfg, data->ioc_plen1);
758 out:
759         RETURN(rc);
760 }
761
762 static int mgs_iocontrol_pool(const struct lu_env *env,
763                               struct mgs_device *mgs,
764                               struct obd_ioctl_data *data)
765 {
766         struct mgs_thread_info *mgi = mgs_env_info(env);
767         int rc;
768         struct lustre_cfg *lcfg = NULL;
769         char *poolname = NULL;
770         ENTRY;
771
772         OBD_ALLOC(poolname, LOV_MAXPOOLNAME + 1);
773         if (poolname == NULL)
774                 RETURN(-ENOMEM);
775
776         if (data->ioc_type != LUSTRE_CFG_TYPE) {
777                 CERROR("%s: unknown cfg record type: %d\n",
778                        mgs->mgs_obd->obd_name, data->ioc_type);
779                 GOTO(out_pool, rc = -EINVAL);
780         }
781
782         if (data->ioc_plen1 > PAGE_CACHE_SIZE)
783                 GOTO(out_pool, rc = -E2BIG);
784
785         OBD_ALLOC(lcfg, data->ioc_plen1);
786         if (lcfg == NULL)
787                 GOTO(out_pool, rc = -ENOMEM);
788
789         if (copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
790                 GOTO(out_lcfg, rc = -EFAULT);
791
792         if (lcfg->lcfg_bufcount < 2)
793                 GOTO(out_lcfg, rc = -EFAULT);
794
795         /* first arg is always <fsname>.<poolname> */
796         rc = mgs_extract_fs_pool(lustre_cfg_string(lcfg, 1), mgi->mgi_fsname,
797                                  poolname);
798         if (rc)
799                 GOTO(out_lcfg, rc);
800
801         switch (lcfg->lcfg_command) {
802         case LCFG_POOL_NEW:
803                 if (lcfg->lcfg_bufcount != 2)
804                         GOTO(out_lcfg, rc = -EINVAL);
805                 rc = mgs_pool_cmd(env, mgs, LCFG_POOL_NEW, mgi->mgi_fsname,
806                                   poolname, NULL);
807                 break;
808         case LCFG_POOL_ADD:
809                 if (lcfg->lcfg_bufcount != 3)
810                         GOTO(out_lcfg, rc = -EINVAL);
811                 rc = mgs_pool_cmd(env, mgs, LCFG_POOL_ADD, mgi->mgi_fsname,
812                                   poolname, lustre_cfg_string(lcfg, 2));
813                 break;
814         case LCFG_POOL_REM:
815                 if (lcfg->lcfg_bufcount != 3)
816                         GOTO(out_lcfg, rc = -EINVAL);
817                 rc = mgs_pool_cmd(env, mgs, LCFG_POOL_REM, mgi->mgi_fsname,
818                                   poolname, lustre_cfg_string(lcfg, 2));
819                 break;
820         case LCFG_POOL_DEL:
821                 if (lcfg->lcfg_bufcount != 2)
822                         GOTO(out_lcfg, rc = -EINVAL);
823                 rc = mgs_pool_cmd(env, mgs, LCFG_POOL_DEL, mgi->mgi_fsname,
824                                   poolname, NULL);
825                 break;
826         default:
827                  rc = -EINVAL;
828         }
829
830         if (rc) {
831                 CERROR("OBD_IOC_POOL err %d, cmd %X for pool %s.%s\n",
832                        rc, lcfg->lcfg_command, mgi->mgi_fsname, poolname);
833                 GOTO(out_lcfg, rc);
834         }
835
836 out_lcfg:
837         OBD_FREE(lcfg, data->ioc_plen1);
838 out_pool:
839         OBD_FREE(poolname, LOV_MAXPOOLNAME + 1);
840         RETURN(rc);
841 }
842
843 /* from mdt_iocontrol */
844 int mgs_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
845                   void *karg, void *uarg)
846 {
847         struct mgs_device *mgs = exp2mgs_dev(exp);
848         struct obd_ioctl_data *data = karg;
849         struct lu_env env;
850         int rc = 0;
851
852         ENTRY;
853         CDEBUG(D_IOCTL, "handling ioctl cmd %#x\n", cmd);
854
855         rc = lu_env_init(&env, LCT_MG_THREAD);
856         if (rc)
857                 RETURN(rc);
858
859         switch (cmd) {
860
861         case OBD_IOC_PARAM: {
862                 struct mgs_thread_info *mgi = mgs_env_info(&env);
863                 struct lustre_cfg *lcfg;
864
865                 if (data->ioc_type != LUSTRE_CFG_TYPE) {
866                         CERROR("%s: unknown cfg record type: %d\n",
867                                mgs->mgs_obd->obd_name, data->ioc_type);
868                         GOTO(out, rc = -EINVAL);
869                 }
870
871                 OBD_ALLOC(lcfg, data->ioc_plen1);
872                 if (lcfg == NULL)
873                         GOTO(out, rc = -ENOMEM);
874                 if (copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
875                         GOTO(out_free, rc = -EFAULT);
876
877                 if (lcfg->lcfg_bufcount < 1)
878                         GOTO(out_free, rc = -EINVAL);
879
880                 rc = mgs_setparam(&env, mgs, lcfg, mgi->mgi_fsname);
881                 if (rc)
882                         CERROR("%s: setparam err: rc = %d\n",
883                                exp->exp_obd->obd_name, rc);
884 out_free:
885                 OBD_FREE(lcfg, data->ioc_plen1);
886                 break;
887         }
888
889         case OBD_IOC_REPLACE_NIDS: {
890                 if (!data->ioc_inllen1 || !data->ioc_inlbuf1) {
891                         CERROR("No device name specified!\n");
892                         rc = -EINVAL;
893                         break;
894                 }
895
896                 if (data->ioc_inlbuf1[data->ioc_inllen1 - 1] != 0) {
897                         CERROR("Device name is not NUL terminated!\n");
898                         rc = -EINVAL;
899                         break;
900                 }
901
902                 if (data->ioc_plen1 > MTI_NAME_MAXLEN) {
903                         CERROR("Device name is too long\n");
904                         rc = -EOVERFLOW;
905                         break;
906                 }
907
908                 if (!data->ioc_inllen2 || !data->ioc_inlbuf2) {
909                         CERROR("No NIDs were specified!\n");
910                         rc = -EINVAL;
911                         break;
912                 }
913
914                 if (data->ioc_inlbuf2[data->ioc_inllen2 - 1] != 0) {
915                         CERROR("NID list is not NUL terminated!\n");
916                         rc = -EINVAL;
917                         break;
918                 }
919
920                 /* replace nids in llog */
921                 rc = mgs_replace_nids(&env, mgs, data->ioc_inlbuf1,
922                                       data->ioc_inlbuf2);
923                 if (rc)
924                         CERROR("%s: error replacing nids: rc = %d\n",
925                                exp->exp_obd->obd_name, rc);
926
927                 break;
928         }
929
930         case OBD_IOC_POOL:
931                 rc = mgs_iocontrol_pool(&env, mgs, data);
932                 break;
933
934         case OBD_IOC_NODEMAP:
935                 rc = mgs_iocontrol_nodemap(&env, mgs, data);
936                 break;
937
938         case OBD_IOC_DUMP_LOG: {
939                 struct llog_ctxt *ctxt;
940
941                 ctxt = llog_get_context(mgs->mgs_obd, LLOG_CONFIG_ORIG_CTXT);
942                 rc = class_config_dump_llog(&env, ctxt, data->ioc_inlbuf1,
943                                             NULL);
944                 llog_ctxt_put(ctxt);
945
946                 break;
947         }
948
949         case OBD_IOC_CATLOGLIST:
950                 rc = mgs_list_logs(&env, mgs, data);
951                 break;
952         case OBD_IOC_LLOG_CANCEL:
953         case OBD_IOC_LLOG_REMOVE:
954         case OBD_IOC_LLOG_CHECK:
955         case OBD_IOC_LLOG_INFO:
956         case OBD_IOC_LLOG_PRINT: {
957                 struct llog_ctxt *ctxt;
958
959                 ctxt = llog_get_context(mgs->mgs_obd, LLOG_CONFIG_ORIG_CTXT);
960                 rc = llog_ioctl(&env, ctxt, cmd, data);
961                 llog_ctxt_put(ctxt);
962                 break;
963         }
964
965         default:
966                 CERROR("%s: unknown command %#x\n",
967                        mgs->mgs_obd->obd_name,  cmd);
968                 rc = -ENOTTY;
969                 break;
970         }
971 out:
972         lu_env_fini(&env);
973         RETURN(rc);
974 }
975
976 static int mgs_connect_to_osd(struct mgs_device *m, const char *nextdev)
977 {
978         struct obd_connect_data *data = NULL;
979         struct obd_device       *obd;
980         int                      rc;
981         ENTRY;
982
983         OBD_ALLOC_PTR(data);
984         if (data == NULL)
985                 RETURN(-ENOMEM);
986
987         obd = class_name2obd(nextdev);
988         if (obd == NULL) {
989                 CERROR("can't locate next device: %s\n", nextdev);
990                 GOTO(out, rc = -ENOTCONN);
991         }
992
993         data->ocd_version = LUSTRE_VERSION_CODE;
994
995         rc = obd_connect(NULL, &m->mgs_bottom_exp, obd,
996                          &obd->obd_uuid, data, NULL);
997         if (rc) {
998                 CERROR("cannot connect to next dev %s (%d)\n", nextdev, rc);
999                 GOTO(out, rc);
1000         }
1001
1002         m->mgs_bottom = lu2dt_dev(m->mgs_bottom_exp->exp_obd->obd_lu_dev);
1003         m->mgs_dt_dev.dd_lu_dev.ld_site = m->mgs_bottom->dd_lu_dev.ld_site;
1004         LASSERT(m->mgs_dt_dev.dd_lu_dev.ld_site);
1005 out:
1006         OBD_FREE_PTR(data);
1007         RETURN(rc);
1008 }
1009
1010 static struct tgt_handler mgs_mgs_handlers[] = {
1011 TGT_RPC_HANDLER(MGS_FIRST_OPC,
1012                 0,                      MGS_CONNECT,     mgs_connect,
1013                 &RQF_CONNECT, LUSTRE_OBD_VERSION),
1014 TGT_RPC_HANDLER(MGS_FIRST_OPC,
1015                 0,                      MGS_DISCONNECT,  mgs_disconnect,
1016                 &RQF_MDS_DISCONNECT, LUSTRE_OBD_VERSION),
1017 TGT_MGS_HDL_VAR(0,                      MGS_EXCEPTION,   mgs_exception),
1018 TGT_MGS_HDL    (HABEO_REFERO | MUTABOR, MGS_SET_INFO,    mgs_set_info),
1019 TGT_MGS_HDL    (HABEO_REFERO | MUTABOR, MGS_TARGET_REG,  mgs_target_reg),
1020 TGT_MGS_HDL_VAR(0,                      MGS_TARGET_DEL,  mgs_target_del),
1021 TGT_MGS_HDL    (HABEO_REFERO,           MGS_CONFIG_READ, mgs_config_read),
1022 };
1023
1024 static struct tgt_handler mgs_obd_handlers[] = {
1025 TGT_OBD_HDL(0,  OBD_PING,       tgt_obd_ping),
1026 };
1027
1028 static struct tgt_handler mgs_dlm_handlers[] = {
1029 [LDLM_ENQUEUE - LDLM_FIRST_OPC] = {
1030         .th_name = "LDLM_ENQUEUE",
1031         /* don't use th_fail_id for MGS to don't interfere with MDS tests.
1032          * * There are no tests for MGS with OBD_FAIL_LDLM_ENQUEUE_NET so it
1033          * * is safe. If such tests will be needed we have to distinguish
1034          * * MDS and MGS fail ids, e.g use OBD_FAIL_MGS_ENQUEUE_NET for MGS
1035          * * instead of common OBD_FAIL_LDLM_ENQUEUE_NET */
1036         .th_fail_id = 0,
1037         .th_opc = LDLM_ENQUEUE,
1038         .th_flags = HABEO_CLAVIS,
1039         .th_act = tgt_enqueue,
1040         .th_fmt = &RQF_LDLM_ENQUEUE,
1041         .th_version = LUSTRE_DLM_VERSION,
1042         },
1043 };
1044
1045 static struct tgt_handler mgs_llog_handlers[] = {
1046 TGT_LLOG_HDL    (0,     LLOG_ORIGIN_HANDLE_CREATE,      mgs_llog_open),
1047 TGT_LLOG_HDL    (0,     LLOG_ORIGIN_HANDLE_NEXT_BLOCK,  tgt_llog_next_block),
1048 TGT_LLOG_HDL    (0,     LLOG_ORIGIN_HANDLE_READ_HEADER, tgt_llog_read_header),
1049 TGT_LLOG_HDL_VAR(0,     LLOG_ORIGIN_HANDLE_CLOSE,       tgt_llog_close),
1050 TGT_LLOG_HDL    (0,     LLOG_ORIGIN_HANDLE_PREV_BLOCK,  tgt_llog_prev_block),
1051 };
1052
1053 static struct tgt_opc_slice mgs_common_slice[] = {
1054         {
1055                 .tos_opc_start = MGS_FIRST_OPC,
1056                 .tos_opc_end   = MGS_LAST_OPC,
1057                 .tos_hs        = mgs_mgs_handlers
1058         },
1059         {
1060                 .tos_opc_start = OBD_FIRST_OPC,
1061                 .tos_opc_end   = OBD_LAST_OPC,
1062                 .tos_hs        = mgs_obd_handlers
1063         },
1064         {
1065                 .tos_opc_start = LDLM_FIRST_OPC,
1066                 .tos_opc_end   = LDLM_LAST_OPC,
1067                 .tos_hs        = mgs_dlm_handlers
1068         },
1069         {
1070                 .tos_opc_start = LLOG_FIRST_OPC,
1071                 .tos_opc_end   = LLOG_LAST_OPC,
1072                 .tos_hs        = mgs_llog_handlers
1073         },
1074         {
1075                 .tos_opc_start = SEC_FIRST_OPC,
1076                 .tos_opc_end   = SEC_LAST_OPC,
1077                 .tos_hs        = tgt_sec_ctx_handlers
1078         },
1079         {
1080                 .tos_hs        = NULL
1081         }
1082 };
1083
1084 static int mgs_init0(const struct lu_env *env, struct mgs_device *mgs,
1085                      struct lu_device_type *ldt, struct lustre_cfg *lcfg)
1086 {
1087         struct ptlrpc_service_conf       conf;
1088         struct obd_device               *obd;
1089         struct lustre_mount_info        *lmi;
1090         struct llog_ctxt                *ctxt;
1091         struct fs_db                    *fsdb = NULL;
1092         int                              rc;
1093
1094         ENTRY;
1095
1096         lmi = server_get_mount(lustre_cfg_string(lcfg, 0));
1097         if (lmi == NULL)
1098                 RETURN(-ENODEV);
1099
1100         mgs->mgs_dt_dev.dd_lu_dev.ld_ops = &mgs_lu_ops;
1101
1102         rc = mgs_connect_to_osd(mgs, lustre_cfg_string(lcfg, 3));
1103         if (rc)
1104                 GOTO(err_lmi, rc);
1105
1106         obd = class_name2obd(lustre_cfg_string(lcfg, 0));
1107         LASSERT(obd);
1108         mgs->mgs_obd = obd;
1109         mgs->mgs_obd->obd_lu_dev = &mgs->mgs_dt_dev.dd_lu_dev;
1110
1111         obd->u.obt.obt_magic = OBT_MAGIC;
1112         obd->u.obt.obt_instance = 0;
1113
1114         /* namespace for mgs llog */
1115         obd->obd_namespace = ldlm_namespace_new(obd ,"MGS",
1116                                                 LDLM_NAMESPACE_SERVER,
1117                                                 LDLM_NAMESPACE_MODEST,
1118                                                 LDLM_NS_TYPE_MGT);
1119         if (obd->obd_namespace == NULL)
1120                 GOTO(err_ops, rc = -ENOMEM);
1121
1122         /* No recovery for MGCs */
1123         obd->obd_replayable = 0;
1124
1125         rc = tgt_init(env, &mgs->mgs_lut, obd, mgs->mgs_bottom,
1126                       mgs_common_slice, OBD_FAIL_MGS_ALL_REQUEST_NET,
1127                       OBD_FAIL_MGS_ALL_REPLY_NET);
1128         if (rc)
1129                 GOTO(err_ns, rc);
1130
1131         rc = mgs_fs_setup(env, mgs);
1132         if (rc) {
1133                 CERROR("%s: MGS filesystem method init failed: rc = %d\n",
1134                        obd->obd_name, rc);
1135                 GOTO(err_tgt, rc);
1136         }
1137
1138         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_CONFIG_ORIG_CTXT,
1139                         obd, &llog_osd_ops);
1140         if (rc)
1141                 GOTO(err_fs, rc);
1142
1143         /* XXX: we need this trick till N:1 stack is supported
1144          * set "current" directory for named llogs */
1145         ctxt = llog_get_context(mgs->mgs_obd, LLOG_CONFIG_ORIG_CTXT);
1146         LASSERT(ctxt);
1147         ctxt->loc_dir = mgs->mgs_configs_dir;
1148         llog_ctxt_put(ctxt);
1149
1150         /* Internal mgs setup */
1151         mgs_init_fsdb_list(mgs);
1152         mutex_init(&mgs->mgs_mutex);
1153         mgs->mgs_start_time = cfs_time_current_sec();
1154         spin_lock_init(&mgs->mgs_lock);
1155
1156         rc = lproc_mgs_setup(mgs, lustre_cfg_string(lcfg, 3));
1157         if (rc != 0) {
1158                 CERROR("%s: cannot initialize proc entry: rc = %d\n",
1159                        obd->obd_name, rc);
1160                 GOTO(err_llog, rc);
1161         }
1162
1163         /* Setup params fsdb and log, so that other servers can make a local
1164          * copy successfully when they are mounted. See LU-4783 */
1165         rc = mgs_params_fsdb_setup(env, mgs, fsdb);
1166         if (rc)
1167                 /* params fsdb and log can be setup later */
1168                 CERROR("%s: %s fsdb and log setup failed: rc = %d\n",
1169                        obd->obd_name, PARAMS_FILENAME, rc);
1170
1171         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
1172                            "mgs_ldlm_client", &obd->obd_ldlm_client);
1173
1174         conf = (typeof(conf)) {
1175                 .psc_name               = LUSTRE_MGS_NAME,
1176                 .psc_watchdog_factor    = MGS_SERVICE_WATCHDOG_FACTOR,
1177                 .psc_buf                = {
1178                         .bc_nbufs               = MGS_NBUFS,
1179                         .bc_buf_size            = MGS_BUFSIZE,
1180                         .bc_req_max_size        = MGS_MAXREQSIZE,
1181                         .bc_rep_max_size        = MGS_MAXREPSIZE,
1182                         .bc_req_portal          = MGS_REQUEST_PORTAL,
1183                         .bc_rep_portal          = MGC_REPLY_PORTAL,
1184                 },
1185                 .psc_thr                = {
1186                         .tc_thr_name            = "ll_mgs",
1187                         .tc_nthrs_init          = MGS_NTHRS_INIT,
1188                         .tc_nthrs_max           = MGS_NTHRS_MAX,
1189                         .tc_ctx_tags            = LCT_MG_THREAD,
1190                 },
1191                 .psc_ops                = {
1192                         .so_req_handler         = tgt_request_handle,
1193                         .so_req_printer         = target_print_req,
1194                 },
1195         };
1196
1197         /* Start the service threads */
1198         mgs->mgs_service = ptlrpc_register_service(&conf, obd->obd_proc_entry);
1199         if (IS_ERR(mgs->mgs_service)) {
1200                 rc = PTR_ERR(mgs->mgs_service);
1201                 CERROR("failed to start mgs service: %d\n", rc);
1202                 mgs->mgs_service = NULL;
1203                 GOTO(err_lproc, rc);
1204         }
1205
1206         ping_evictor_start();
1207
1208         CDEBUG(D_INFO, "MGS %s started\n", obd->obd_name);
1209
1210         /* device stack is not yet fully setup to keep no objects behind */
1211         lu_site_purge(env, mgs2lu_dev(mgs)->ld_site, ~0);
1212         RETURN(0);
1213 err_lproc:
1214         mgs_params_fsdb_cleanup(env, mgs);
1215         lproc_mgs_cleanup(mgs);
1216 err_llog:
1217         ctxt = llog_get_context(mgs->mgs_obd, LLOG_CONFIG_ORIG_CTXT);
1218         if (ctxt) {
1219                 ctxt->loc_dir = NULL;
1220                 llog_cleanup(env, ctxt);
1221         }
1222 err_tgt:
1223         tgt_fini(env, &mgs->mgs_lut);
1224 err_fs:
1225         /* No extra cleanup needed for llog_init_commit_thread() */
1226         mgs_fs_cleanup(env, mgs);
1227 err_ns:
1228         ldlm_namespace_free(obd->obd_namespace, NULL, 0);
1229         obd->obd_namespace = NULL;
1230 err_ops:
1231         lu_site_purge(env, mgs2lu_dev(mgs)->ld_site, ~0);
1232         if (!cfs_hash_is_empty(mgs2lu_dev(mgs)->ld_site->ls_obj_hash)) {
1233                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
1234                 lu_site_print(env, mgs2lu_dev(mgs)->ld_site, &msgdata,
1235                                 lu_cdebug_printer);
1236         }
1237         obd_disconnect(mgs->mgs_bottom_exp);
1238 err_lmi:
1239         if (lmi)
1240                 server_put_mount(lustre_cfg_string(lcfg, 0), true);
1241         RETURN(rc);
1242 }
1243
1244 static struct lu_device *mgs_device_free(const struct lu_env *env,
1245                                          struct lu_device *lu)
1246 {
1247         struct mgs_device *mgs = lu2mgs_dev(lu);
1248         ENTRY;
1249
1250         dt_device_fini(&mgs->mgs_dt_dev);
1251         OBD_FREE_PTR(mgs);
1252         RETURN(NULL);
1253 }
1254
1255 static int mgs_process_config(const struct lu_env *env,
1256                               struct lu_device *dev,
1257                               struct lustre_cfg *lcfg)
1258 {
1259         LBUG();
1260         return 0;
1261 }
1262
1263 static int mgs_object_init(const struct lu_env *env, struct lu_object *o,
1264                            const struct lu_object_conf *unused)
1265 {
1266         struct mgs_device *d = lu2mgs_dev(o->lo_dev);
1267         struct lu_device  *under;
1268         struct lu_object  *below;
1269         int                rc = 0;
1270         ENTRY;
1271
1272         /* do no set .do_ops as mgs calls to bottom osd directly */
1273
1274         CDEBUG(D_INFO, "object init, fid = "DFID"\n",
1275                         PFID(lu_object_fid(o)));
1276
1277         under = &d->mgs_bottom->dd_lu_dev;
1278         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
1279         if (below != NULL)
1280                 lu_object_add(o, below);
1281         else
1282                 rc = -ENOMEM;
1283
1284         return 0;
1285 }
1286
1287 static void mgs_object_free(const struct lu_env *env, struct lu_object *o)
1288 {
1289         struct mgs_object *obj = lu2mgs_obj(o);
1290         struct lu_object_header *h = o->lo_header;
1291
1292         dt_object_fini(&obj->mgo_obj);
1293         lu_object_header_fini(h);
1294         OBD_FREE_PTR(obj);
1295 }
1296
1297 static int mgs_object_print(const struct lu_env *env, void *cookie,
1298                             lu_printer_t p, const struct lu_object *l)
1299 {
1300         const struct mgs_object *o = lu2mgs_obj((struct lu_object *) l);
1301
1302         return (*p)(env, cookie, LUSTRE_MGS_NAME"-object@%p", o);
1303 }
1304
1305 struct lu_object_operations mgs_lu_obj_ops = {
1306         .loo_object_init        = mgs_object_init,
1307         .loo_object_free        = mgs_object_free,
1308         .loo_object_print       = mgs_object_print,
1309 };
1310
1311 struct lu_object *mgs_object_alloc(const struct lu_env *env,
1312                                    const struct lu_object_header *hdr,
1313                                    struct lu_device *d)
1314 {
1315         struct lu_object_header *h;
1316         struct mgs_object       *o;
1317         struct lu_object        *l;
1318
1319         LASSERT(hdr == NULL);
1320
1321         OBD_ALLOC_PTR(o);
1322         if (o != NULL) {
1323                 l = &o->mgo_obj.do_lu;
1324                 h = &o->mgo_header;
1325
1326                 lu_object_header_init(h);
1327                 dt_object_init(&o->mgo_obj, h, d);
1328                 lu_object_add_top(h, l);
1329
1330                 l->lo_ops = &mgs_lu_obj_ops;
1331
1332                 return l;
1333         } else {
1334                 return NULL;
1335         }
1336 }
1337
1338 const struct lu_device_operations mgs_lu_ops = {
1339         .ldo_object_alloc       = mgs_object_alloc,
1340         .ldo_process_config     = mgs_process_config,
1341 };
1342
1343 static struct lu_device *mgs_device_alloc(const struct lu_env *env,
1344                                           struct lu_device_type *type,
1345                                           struct lustre_cfg *lcfg)
1346 {
1347         struct mgs_device *mgs;
1348         struct lu_device  *ludev;
1349
1350         OBD_ALLOC_PTR(mgs);
1351         if (mgs == NULL) {
1352                 ludev = ERR_PTR(-ENOMEM);
1353         } else {
1354                 int rc;
1355
1356                 ludev = mgs2lu_dev(mgs);
1357                 dt_device_init(&mgs->mgs_dt_dev, type);
1358                 rc = mgs_init0(env, mgs, type, lcfg);
1359                 if (rc != 0) {
1360                         mgs_device_free(env, ludev);
1361                         ludev = ERR_PTR(rc);
1362                 }
1363         }
1364         return ludev;
1365 }
1366
1367 static struct lu_device *mgs_device_fini(const struct lu_env *env,
1368                                          struct lu_device *d)
1369 {
1370         struct mgs_device       *mgs = lu2mgs_dev(d);
1371         struct obd_device       *obd = mgs->mgs_obd;
1372         struct llog_ctxt        *ctxt;
1373
1374         ENTRY;
1375
1376         LASSERT(mgs->mgs_bottom);
1377
1378         class_disconnect_exports(obd);
1379
1380         ping_evictor_stop();
1381
1382         ptlrpc_unregister_service(mgs->mgs_service);
1383
1384         obd_exports_barrier(obd);
1385         obd_zombie_barrier();
1386
1387         tgt_fini(env, &mgs->mgs_lut);
1388         mgs_params_fsdb_cleanup(env, mgs);
1389         mgs_cleanup_fsdb_list(mgs);
1390         lproc_mgs_cleanup(mgs);
1391
1392         ctxt = llog_get_context(mgs->mgs_obd, LLOG_CONFIG_ORIG_CTXT);
1393         if (ctxt) {
1394                 ctxt->loc_dir = NULL;
1395                 llog_cleanup(env, ctxt);
1396         }
1397
1398         mgs_fs_cleanup(env, mgs);
1399
1400         ldlm_namespace_free(obd->obd_namespace, NULL, 1);
1401         obd->obd_namespace = NULL;
1402
1403         lu_site_purge(env, d->ld_site, ~0);
1404         if (!cfs_hash_is_empty(d->ld_site->ls_obj_hash)) {
1405                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
1406                 lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
1407         }
1408
1409         LASSERT(mgs->mgs_bottom_exp);
1410         obd_disconnect(mgs->mgs_bottom_exp);
1411
1412         server_put_mount(obd->obd_name, true);
1413
1414         RETURN(NULL);
1415 }
1416
1417 /* context key constructor/destructor: mgs_key_init, mgs_key_fini */
1418 LU_KEY_INIT_FINI(mgs, struct mgs_thread_info);
1419
1420 LU_TYPE_INIT_FINI(mgs, &mgs_thread_key);
1421
1422 LU_CONTEXT_KEY_DEFINE(mgs, LCT_MG_THREAD);
1423
1424 static struct lu_device_type_operations mgs_device_type_ops = {
1425         .ldto_init              = mgs_type_init,
1426         .ldto_fini              = mgs_type_fini,
1427
1428         .ldto_start             = mgs_type_start,
1429         .ldto_stop              = mgs_type_stop,
1430
1431         .ldto_device_alloc      = mgs_device_alloc,
1432         .ldto_device_free       = mgs_device_free,
1433
1434         .ldto_device_fini       = mgs_device_fini
1435 };
1436
1437 static struct lu_device_type mgs_device_type = {
1438         .ldt_tags       = LU_DEVICE_DT,
1439         .ldt_name       = LUSTRE_MGS_NAME,
1440         .ldt_ops        = &mgs_device_type_ops,
1441         .ldt_ctx_tags   = LCT_MG_THREAD
1442 };
1443
1444 static int mgs_obd_connect(const struct lu_env *env, struct obd_export **exp,
1445                            struct obd_device *obd, struct obd_uuid *cluuid,
1446                            struct obd_connect_data *data, void *localdata)
1447 {
1448         struct obd_export       *lexp;
1449         struct lustre_handle     conn = { 0 };
1450         int                      rc;
1451
1452         ENTRY;
1453
1454         if (exp == NULL || obd == NULL || cluuid == NULL)
1455                 RETURN(-EINVAL);
1456
1457         rc = class_connect(&conn, obd, cluuid);
1458         if (rc)
1459                 RETURN(rc);
1460
1461         lexp = class_conn2export(&conn);
1462         if (lexp == NULL)
1463                 RETURN(-EFAULT);
1464
1465         if (data != NULL) {
1466                 data->ocd_connect_flags &= MGS_CONNECT_SUPPORTED;
1467                 data->ocd_version = LUSTRE_VERSION_CODE;
1468                 lexp->exp_connect_data = *data;
1469         }
1470
1471         tgt_counter_incr(lexp, LPROC_MGS_CONNECT);
1472
1473         rc = mgs_export_stats_init(obd, lexp, localdata);
1474         if (rc)
1475                 class_disconnect(lexp);
1476         else
1477                 *exp = lexp;
1478
1479         RETURN(rc);
1480 }
1481
1482 static int mgs_obd_reconnect(const struct lu_env *env, struct obd_export *exp,
1483                              struct obd_device *obd, struct obd_uuid *cluuid,
1484                              struct obd_connect_data *data, void *localdata)
1485 {
1486         ENTRY;
1487
1488         if (exp == NULL || obd == NULL || cluuid == NULL)
1489                 RETURN(-EINVAL);
1490
1491         tgt_counter_incr(exp, LPROC_MGS_CONNECT);
1492
1493         if (data != NULL) {
1494                 data->ocd_connect_flags &= MGS_CONNECT_SUPPORTED;
1495                 data->ocd_version = LUSTRE_VERSION_CODE;
1496                 exp->exp_connect_data = *data;
1497         }
1498
1499         RETURN(mgs_export_stats_init(obd, exp, localdata));
1500 }
1501
1502 static int mgs_obd_disconnect(struct obd_export *exp)
1503 {
1504         int rc;
1505
1506         ENTRY;
1507
1508         LASSERT(exp);
1509
1510         mgs_fsc_cleanup(exp);
1511
1512         class_export_get(exp);
1513         tgt_counter_incr(exp, LPROC_MGS_DISCONNECT);
1514
1515         rc = server_disconnect_export(exp);
1516         class_export_put(exp);
1517         RETURN(rc);
1518 }
1519
1520 /* use obd ops to offer management infrastructure */
1521 static struct obd_ops mgs_obd_device_ops = {
1522         .o_owner                = THIS_MODULE,
1523         .o_connect              = mgs_obd_connect,
1524         .o_reconnect            = mgs_obd_reconnect,
1525         .o_disconnect           = mgs_obd_disconnect,
1526         .o_init_export          = mgs_init_export,
1527         .o_destroy_export       = mgs_destroy_export,
1528         .o_iocontrol            = mgs_iocontrol,
1529 };
1530
1531 static int __init mgs_init(void)
1532 {
1533         return class_register_type(&mgs_obd_device_ops, NULL, true, NULL,
1534                                    LUSTRE_MGS_NAME, &mgs_device_type);
1535 }
1536
1537 static void /*__exit*/ mgs_exit(void)
1538 {
1539         class_unregister_type(LUSTRE_MGS_NAME);
1540 }
1541
1542 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1543 MODULE_DESCRIPTION("Lustre  Management Server (MGS)");
1544 MODULE_LICENSE("GPL");
1545
1546 module_init(mgs_init);
1547 module_exit(mgs_exit);