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