Whamcloud - gitweb
b=22464 add writeconf as mount option (includes bz 23228)
[fs/lustre-release.git] / lustre / mgs / mgs_handler.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
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  */
40
41 #ifndef EXPORT_SYMTAB
42 # define EXPORT_SYMTAB
43 #endif
44 #define DEBUG_SUBSYSTEM S_MGS
45 #define D_MGS D_CONFIG
46
47 #ifdef __KERNEL__
48 # include <linux/module.h>
49 # include <linux/pagemap.h>
50 # include <linux/miscdevice.h>
51 # include <linux/init.h>
52 #else
53 # include <liblustre.h>
54 #endif
55
56 #include <obd_class.h>
57 #include <lustre_dlm.h>
58 #include <lprocfs_status.h>
59 #include <lustre_fsfilt.h>
60 #include <lustre_disk.h>
61 #include "mgs_internal.h"
62
63
64 /* Establish a connection to the MGS.*/
65 static int mgs_connect(const struct lu_env *env,
66                        struct obd_export **exp, struct obd_device *obd,
67                        struct obd_uuid *cluuid, struct obd_connect_data *data,
68                        void *localdata)
69 {
70         struct obd_export *lexp;
71         struct lustre_handle conn = { 0 };
72         int rc;
73         ENTRY;
74
75         if (!exp || !obd || !cluuid)
76                 RETURN(-EINVAL);
77
78         rc = class_connect(&conn, obd, cluuid);
79         if (rc)
80                 RETURN(rc);
81
82         lexp = class_conn2export(&conn);
83         LASSERT(lexp);
84
85         mgs_counter_incr(lexp, LPROC_MGS_CONNECT);
86
87         if (data != NULL) {
88                 data->ocd_connect_flags &= MGS_CONNECT_SUPPORTED;
89                 lexp->exp_connect_flags = data->ocd_connect_flags;
90                 data->ocd_version = LUSTRE_VERSION_CODE;
91         }
92
93         rc = mgs_client_add(obd, lexp, localdata);
94
95         if (rc) {
96                 class_disconnect(lexp);
97         } else {
98                 *exp = lexp;
99         }
100
101         RETURN(rc);
102 }
103
104 static int mgs_reconnect(const struct lu_env *env,
105                          struct obd_export *exp, struct obd_device *obd,
106                          struct obd_uuid *cluuid, struct obd_connect_data *data,
107                          void *localdata)
108 {
109         ENTRY;
110
111         if (exp == NULL || obd == NULL || cluuid == NULL)
112                 RETURN(-EINVAL);
113
114         mgs_counter_incr(exp, LPROC_MGS_CONNECT);
115
116         if (data != NULL) {
117                 data->ocd_connect_flags &= MGS_CONNECT_SUPPORTED;
118                 exp->exp_connect_flags = data->ocd_connect_flags;
119                 data->ocd_version = LUSTRE_VERSION_CODE;
120         }
121
122         RETURN(0);
123 }
124
125 static int mgs_disconnect(struct obd_export *exp)
126 {
127         int rc;
128         ENTRY;
129
130         LASSERT(exp);
131
132         class_export_get(exp);
133         mgs_counter_incr(exp, LPROC_MGS_DISCONNECT);
134
135         rc = server_disconnect_export(exp);
136
137         class_export_put(exp);
138         RETURN(rc);
139 }
140
141 static int mgs_cleanup(struct obd_device *obd);
142 static int mgs_handle(struct ptlrpc_request *req);
143
144 static int mgs_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
145                          struct obd_device *tgt, int *index)
146 {
147         int rc;
148         ENTRY;
149
150         LASSERT(olg == &obd->obd_olg);
151         rc = llog_setup(obd, olg, LLOG_CONFIG_ORIG_CTXT, obd, 0, NULL,
152                         &llog_lvfs_ops);
153         RETURN(rc);
154 }
155
156 static int mgs_llog_finish(struct obd_device *obd, int count)
157 {
158         struct llog_ctxt *ctxt;
159         int rc = 0;
160         ENTRY;
161
162         ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
163         if (ctxt)
164                 rc = llog_cleanup(ctxt);
165
166         RETURN(rc);
167 }
168
169 /* Start the MGS obd */
170 static int mgs_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
171 {
172         struct lprocfs_static_vars lvars;
173         struct mgs_obd *mgs = &obd->u.mgs;
174         struct lustre_mount_info *lmi;
175         struct lustre_sb_info *lsi;
176         struct vfsmount *mnt;
177         int rc = 0;
178         ENTRY;
179
180         CDEBUG(D_CONFIG, "Starting MGS\n");
181
182         /* Find our disk */
183         lmi = server_get_mount(obd->obd_name);
184         if (!lmi)
185                 RETURN(rc = -EINVAL);
186
187         mnt = lmi->lmi_mnt;
188         lsi = s2lsi(lmi->lmi_sb);
189         obd->obd_fsops = fsfilt_get_ops(MT_STR(lsi->lsi_ldd));
190         if (IS_ERR(obd->obd_fsops))
191                 GOTO(err_put, rc = PTR_ERR(obd->obd_fsops));
192
193         if (lvfs_check_rdonly(lvfs_sbdev(mnt->mnt_sb))) {
194                 CERROR("%s: Underlying device is marked as read-only. "
195                        "Setup failed\n", obd->obd_name);
196                 GOTO(err_ops, rc = -EROFS);
197         }
198
199         /* namespace for mgs llog */
200         obd->obd_namespace = ldlm_namespace_new(obd ,"MGS", LDLM_NAMESPACE_SERVER,
201                                                 LDLM_NAMESPACE_MODEST);
202         if (obd->obd_namespace == NULL)
203                 GOTO(err_ops, rc = -ENOMEM);
204
205         /* ldlm setup */
206         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
207                            "mgs_ldlm_client", &obd->obd_ldlm_client);
208
209         rc = mgs_fs_setup(obd, mnt);
210         if (rc) {
211                 CERROR("%s: MGS filesystem method init failed: rc = %d\n",
212                        obd->obd_name, rc);
213                 GOTO(err_ns, rc);
214         }
215
216         rc = obd_llog_init(obd, &obd->obd_olg, obd, NULL);
217         if (rc)
218                 GOTO(err_fs, rc);
219
220         /* No recovery for MGC's */
221         obd->obd_replayable = 0;
222
223         /* Internal mgs setup */
224         mgs_init_fsdb_list(obd);
225         cfs_sema_init(&mgs->mgs_sem, 1);
226
227         /* Setup proc */
228         lprocfs_mgs_init_vars(&lvars);
229         if (lprocfs_obd_setup(obd, lvars.obd_vars) == 0) {
230                 lproc_mgs_setup(obd);
231                 rc = lprocfs_alloc_md_stats(obd, LPROC_MGS_LAST);
232                 if (rc)
233                         GOTO(err_llog, rc);
234         }
235
236         /* Start the service threads */
237         mgs->mgs_service =
238                 ptlrpc_init_svc(MGS_NBUFS, MGS_BUFSIZE, MGS_MAXREQSIZE,
239                                 MGS_MAXREPSIZE, MGS_REQUEST_PORTAL,
240                                 MGC_REPLY_PORTAL, 2,
241                                 mgs_handle, LUSTRE_MGS_NAME,
242                                 obd->obd_proc_entry, target_print_req,
243                                 MGS_THREADS_AUTO_MIN, MGS_THREADS_AUTO_MAX,
244                                 "ll_mgs", LCT_MD_THREAD, NULL);
245
246         if (!mgs->mgs_service) {
247                 CERROR("failed to start service\n");
248                 GOTO(err_llog, rc = -ENOMEM);
249         }
250
251         rc = ptlrpc_start_threads(obd, mgs->mgs_service);
252         if (rc)
253                 GOTO(err_thread, rc);
254
255         ping_evictor_start();
256
257         LCONSOLE_INFO("MGS %s started\n", obd->obd_name);
258
259         RETURN(0);
260
261 err_thread:
262         ptlrpc_unregister_service(mgs->mgs_service);
263 err_llog:
264         lproc_mgs_cleanup(obd);
265         obd_llog_finish(obd, 0);
266 err_fs:
267         /* No extra cleanup needed for llog_init_commit_thread() */
268         mgs_fs_cleanup(obd);
269 err_ns:
270         ldlm_namespace_free(obd->obd_namespace, NULL, 0);
271         obd->obd_namespace = NULL;
272 err_ops:
273         fsfilt_put_ops(obd->obd_fsops);
274 err_put:
275         server_put_mount(obd->obd_name, mnt);
276         mgs->mgs_sb = 0;
277         return rc;
278 }
279
280 static int mgs_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
281 {
282         int rc = 0;
283         ENTRY;
284
285         switch (stage) {
286         case OBD_CLEANUP_EARLY:
287         case OBD_CLEANUP_EXPORTS:
288                 rc = obd_llog_finish(obd, 0);
289                 break;
290         }
291         RETURN(rc);
292 }
293
294 /**
295  * Performs cleanup procedures for passed \a obd given it is mgs obd.
296  */
297 static int mgs_cleanup(struct obd_device *obd)
298 {
299         struct mgs_obd *mgs = &obd->u.mgs;
300         ENTRY;
301
302         if (mgs->mgs_sb == NULL)
303                 RETURN(0);
304
305         ping_evictor_stop();
306
307         ptlrpc_unregister_service(mgs->mgs_service);
308
309         mgs_cleanup_fsdb_list(obd);
310         lproc_mgs_cleanup(obd);
311         mgs_fs_cleanup(obd);
312
313         server_put_mount(obd->obd_name, mgs->mgs_vfsmnt);
314         mgs->mgs_sb = NULL;
315
316         ldlm_namespace_free(obd->obd_namespace, NULL, 1);
317         obd->obd_namespace = NULL;
318
319         fsfilt_put_ops(obd->obd_fsops);
320
321         LCONSOLE_INFO("%s has stopped.\n", obd->obd_name);
322         RETURN(0);
323 }
324
325 /* similar to filter_prepare_destroy */
326 static int mgs_get_cfg_lock(struct obd_device *obd, char *fsname,
327                             struct lustre_handle *lockh)
328 {
329         struct ldlm_res_id res_id;
330         int rc, flags = 0;
331         ENTRY;
332
333         rc = mgc_fsname2resid(fsname, &res_id);
334         if (!rc)
335                 rc = ldlm_cli_enqueue_local(obd->obd_namespace, &res_id,
336                                             LDLM_PLAIN, NULL, LCK_EX,
337                                             &flags, ldlm_blocking_ast,
338                                             ldlm_completion_ast, NULL,
339                                             fsname, 0, NULL, lockh);
340         if (rc)
341                 CERROR("can't take cfg lock for %s (%d)\n", fsname, rc);
342
343         RETURN(rc);
344 }
345
346 static int mgs_put_cfg_lock(struct lustre_handle *lockh)
347 {
348         ENTRY;
349         ldlm_lock_decref(lockh, LCK_EX);
350         RETURN(0);
351 }
352
353 void mgs_revoke_lock(struct obd_device *obd, struct fs_db *fsdb)
354 {
355         struct lustre_handle lockh;
356         int                  lockrc;
357
358         LASSERT(fsdb->fsdb_name[0] != '\0');
359
360         if (cfs_test_and_set_bit(FSDB_REVOKING_LOCK, &fsdb->fsdb_flags) == 0) {
361                 lockrc = mgs_get_cfg_lock(obd, fsdb->fsdb_name, &lockh);
362                 /* clear the bit before lock put */
363                 cfs_clear_bit(FSDB_REVOKING_LOCK, &fsdb->fsdb_flags);
364
365                 if (lockrc != ELDLM_OK)
366                         CERROR("lock error %d for fs %s\n",
367                                lockrc, fsdb->fsdb_name);
368                 else
369                         mgs_put_cfg_lock(&lockh);
370         }
371 }
372
373 /* rc=0 means ok
374       1 means update
375      <0 means error */
376 static int mgs_check_target(struct obd_device *obd, struct mgs_target_info *mti)
377 {
378         int rc;
379         ENTRY;
380
381         rc = mgs_check_index(obd, mti);
382         if (rc == 0) {
383                 LCONSOLE_ERROR_MSG(0x13b, "%s claims to have registered, but "
384                                    "this MGS does not know about it, preventing "
385                                    "registration.\n", mti->mti_svname);
386                 rc = -ENOENT;
387         } else if (rc == -1) {
388                 LCONSOLE_ERROR_MSG(0x13c, "Client log %s-client has "
389                                    "disappeared! Regenerating all logs.\n",
390                                    mti->mti_fsname);
391                 mti->mti_flags |= LDD_F_WRITECONF;
392                 rc = 1;
393         } else {
394                 /* Index is correctly marked as used */
395
396                 /* If the logs don't contain the mti_nids then add
397                    them as failover nids */
398                 rc = mgs_check_failnid(obd, mti);
399         }
400
401         RETURN(rc);
402 }
403
404 /* Called whenever a target starts up.  Flags indicate first connect, etc. */
405 static int mgs_handle_target_reg(struct ptlrpc_request *req)
406 {
407         struct obd_device *obd = req->rq_export->exp_obd;
408         struct mgs_target_info *mti, *rep_mti;
409         struct fs_db *fsdb;
410         int rc = 0;
411         ENTRY;
412
413         mgs_counter_incr(req->rq_export, LPROC_MGS_TARGET_REG);
414
415         mti = req_capsule_client_get(&req->rq_pill, &RMF_MGS_TARGET_INFO);
416
417         if (mti->mti_flags & LDD_F_NEED_INDEX)
418                 mti->mti_flags |= LDD_F_WRITECONF;
419
420         if (!(mti->mti_flags & (LDD_F_WRITECONF | LDD_F_UPGRADE14 |
421                                 LDD_F_UPDATE))) {
422                 /* We're just here as a startup ping. */
423                 CDEBUG(D_MGS, "Server %s is running on %s\n",
424                        mti->mti_svname, obd_export_nid2str(req->rq_export));
425                 rc = mgs_check_target(obd, mti);
426                 /* above will set appropriate mti flags */
427                 if (rc <= 0)
428                         /* Nothing wrong, or fatal error */
429                         GOTO(out_nolock, rc);
430         }
431
432         OBD_FAIL_TIMEOUT(OBD_FAIL_MGS_PAUSE_TARGET_REG, 10);
433
434         if (mti->mti_flags & LDD_F_WRITECONF) {
435                 if (mti->mti_flags & LDD_F_SV_TYPE_MDT &&
436                     mti->mti_stripe_index == 0) {
437                         rc = mgs_erase_logs(obd, mti->mti_fsname);
438                         LCONSOLE_WARN("%s: Logs for fs %s were removed by user "
439                                       "request.  All servers must be restarted "
440                                       "in order to regenerate the logs."
441                                       "\n", obd->obd_name, mti->mti_fsname);
442                 } else if (mti->mti_flags &
443                            (LDD_F_SV_TYPE_OST | LDD_F_SV_TYPE_MDT)) {
444                         rc = mgs_erase_log(obd, mti->mti_svname);
445                         LCONSOLE_WARN("%s: Regenerating %s log by user "
446                                       "request.\n",
447                                       obd->obd_name, mti->mti_svname);
448                 }
449                 mti->mti_flags |= LDD_F_UPDATE;
450                 /* Erased logs means start from scratch. */
451                 mti->mti_flags &= ~LDD_F_UPGRADE14;
452         }
453
454         rc = mgs_find_or_make_fsdb(obd, mti->mti_fsname, &fsdb);
455         if (rc) {
456                 CERROR("Can't get db for %s: %d\n", mti->mti_fsname, rc);
457                 GOTO(out_nolock, rc);
458         }
459
460         /*
461          * Log writing contention is handled by the fsdb_sem.
462          *
463          * It should be alright if someone was reading while we were
464          * updating the logs - if we revoke at the end they will just update
465          * from where they left off.
466          */
467
468         /* COMPAT_146 */
469         if (mti->mti_flags & LDD_F_UPGRADE14) {
470                 rc = mgs_upgrade_sv_14(obd, mti, fsdb);
471                 if (rc) {
472                         CERROR("Can't upgrade from 1.4 (%d)\n", rc);
473                         GOTO(out, rc);
474                 }
475
476                 /* We're good to go */
477                 mti->mti_flags |= LDD_F_UPDATE;
478         }
479         /* end COMPAT_146 */
480
481         if (mti->mti_flags & LDD_F_UPDATE) {
482                 CDEBUG(D_MGS, "updating %s, index=%d\n", mti->mti_svname,
483                        mti->mti_stripe_index);
484
485                 /* create or update the target log
486                    and update the client/mdt logs */
487                 rc = mgs_write_log_target(obd, mti, fsdb);
488                 if (rc) {
489                         CERROR("Failed to write %s log (%d)\n",
490                                mti->mti_svname, rc);
491                         GOTO(out, rc);
492                 }
493
494                 mti->mti_flags &= ~(LDD_F_VIRGIN | LDD_F_UPDATE |
495                                     LDD_F_NEED_INDEX | LDD_F_WRITECONF |
496                                     LDD_F_UPGRADE14);
497                 mti->mti_flags |= LDD_F_REWRITE_LDD;
498         }
499
500 out:
501         mgs_revoke_lock(obd, fsdb);
502
503 out_nolock:
504         CDEBUG(D_MGS, "replying with %s, index=%d, rc=%d\n", mti->mti_svname,
505                mti->mti_stripe_index, rc);
506         rc = req_capsule_server_pack(&req->rq_pill);
507         if (rc)
508                 RETURN(rc);
509
510         /* send back the whole mti in the reply */
511         rep_mti = req_capsule_server_get(&req->rq_pill, &RMF_MGS_TARGET_INFO);
512         *rep_mti = *mti;
513
514         /* Flush logs to disk */
515         fsfilt_sync(obd, obd->u.mgs.mgs_sb);
516         RETURN(rc);
517 }
518
519 static int mgs_set_info_rpc(struct ptlrpc_request *req)
520 {
521         struct obd_device *obd = req->rq_export->exp_obd;
522         struct mgs_send_param *msp, *rep_msp;
523         int rc;
524         struct lustre_cfg_bufs bufs;
525         struct lustre_cfg *lcfg;
526         char fsname[MTI_NAME_MAXLEN];
527         ENTRY;
528
529         msp = req_capsule_client_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
530         LASSERT(msp);
531
532         /* Construct lustre_cfg structure to pass to function mgs_setparam */
533         lustre_cfg_bufs_reset(&bufs, NULL);
534         lustre_cfg_bufs_set_string(&bufs, 1, msp->mgs_param);
535         lcfg = lustre_cfg_new(LCFG_PARAM, &bufs);
536         rc = mgs_setparam(obd, lcfg, fsname);
537         if (rc) {
538                 CERROR("Error %d in setting the parameter %s for fs %s\n",
539                        rc, msp->mgs_param, fsname);
540                 RETURN(rc);
541         }
542
543         lustre_cfg_free(lcfg);
544
545         rc = req_capsule_server_pack(&req->rq_pill);
546         if (rc == 0) {
547                 rep_msp = req_capsule_server_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
548                 rep_msp = msp;
549         }
550         RETURN(rc);
551 }
552
553 /*
554  * similar as in ost_connect_check_sptlrpc()
555  */
556 static int mgs_connect_check_sptlrpc(struct ptlrpc_request *req)
557 {
558         struct obd_export     *exp = req->rq_export;
559         struct obd_device     *obd = exp->exp_obd;
560         struct fs_db          *fsdb;
561         struct sptlrpc_flavor  flvr;
562         int                    rc = 0;
563
564         if (exp->exp_flvr.sf_rpc == SPTLRPC_FLVR_INVALID) {
565                 rc = mgs_find_or_make_fsdb(obd, MGSSELF_NAME, &fsdb);
566                 if (rc)
567                         return rc;
568
569                 cfs_down(&fsdb->fsdb_sem);
570                 if (sptlrpc_rule_set_choose(&fsdb->fsdb_srpc_gen,
571                                             LUSTRE_SP_MGC, LUSTRE_SP_MGS,
572                                             req->rq_peer.nid,
573                                             &flvr) == 0) {
574                         /* by defualt allow any flavors */
575                         flvr.sf_rpc = SPTLRPC_FLVR_ANY;
576                 }
577                 cfs_up(&fsdb->fsdb_sem);
578
579                 cfs_spin_lock(&exp->exp_lock);
580
581                 exp->exp_sp_peer = req->rq_sp_from;
582                 exp->exp_flvr = flvr;
583
584                 if (exp->exp_flvr.sf_rpc != SPTLRPC_FLVR_ANY &&
585                     exp->exp_flvr.sf_rpc != req->rq_flvr.sf_rpc) {
586                         CERROR("invalid rpc flavor %x, expect %x, from %s\n",
587                                req->rq_flvr.sf_rpc, exp->exp_flvr.sf_rpc,
588                                libcfs_nid2str(req->rq_peer.nid));
589                         rc = -EACCES;
590                 }
591
592                 cfs_spin_unlock(&exp->exp_lock);
593         } else {
594                 if (exp->exp_sp_peer != req->rq_sp_from) {
595                         CERROR("RPC source %s doesn't match %s\n",
596                                sptlrpc_part2name(req->rq_sp_from),
597                                sptlrpc_part2name(exp->exp_sp_peer));
598                         rc = -EACCES;
599                 } else {
600                         rc = sptlrpc_target_export_check(exp, req);
601                 }
602         }
603
604         return rc;
605 }
606
607 /* Called whenever a target cleans up. */
608 /* XXX - Currently unused */
609 static int mgs_handle_target_del(struct ptlrpc_request *req)
610 {
611         ENTRY;
612         mgs_counter_incr(req->rq_export, LPROC_MGS_TARGET_DEL);
613         RETURN(0);
614 }
615
616 /* XXX - Currently unused */
617 static int mgs_handle_exception(struct ptlrpc_request *req)
618 {
619         ENTRY;
620         mgs_counter_incr(req->rq_export, LPROC_MGS_EXCEPTION);
621         RETURN(0);
622 }
623
624 /* TODO: handle requests in a similar way as MDT: see mdt_handle_common() */
625 int mgs_handle(struct ptlrpc_request *req)
626 {
627         int fail = OBD_FAIL_MGS_ALL_REPLY_NET;
628         int opc, rc = 0;
629         ENTRY;
630
631         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
632         OBD_FAIL_TIMEOUT_MS(OBD_FAIL_MGS_PAUSE_REQ, obd_fail_val);
633         if (OBD_FAIL_CHECK(OBD_FAIL_MGS_ALL_REQUEST_NET))
634                 RETURN(0);
635
636         LASSERT(current->journal_info == NULL);
637         opc = lustre_msg_get_opc(req->rq_reqmsg);
638
639         if (opc == SEC_CTX_INIT ||
640             opc == SEC_CTX_INIT_CONT ||
641             opc == SEC_CTX_FINI)
642                 GOTO(out, rc = 0);
643
644         if (opc != MGS_CONNECT) {
645                 if (!class_connected_export(req->rq_export)) {
646                         CERROR("lustre_mgs: operation %d on unconnected MGS\n",
647                                opc);
648                         req->rq_status = -ENOTCONN;
649                         GOTO(out, rc = -ENOTCONN);
650                 }
651         }
652
653         switch (opc) {
654         case MGS_CONNECT:
655                 DEBUG_REQ(D_MGS, req, "connect");
656                 /* MGS and MDS have same request format for connect */
657                 req_capsule_set(&req->rq_pill, &RQF_MDS_CONNECT);
658                 rc = target_handle_connect(req);
659                 if (rc == 0)
660                         rc = mgs_connect_check_sptlrpc(req);
661
662                 if (!rc && (lustre_msg_get_conn_cnt(req->rq_reqmsg) > 1))
663                         /* Make clients trying to reconnect after a MGS restart
664                            happy; also requires obd_replayable */
665                         lustre_msg_add_op_flags(req->rq_repmsg,
666                                                 MSG_CONNECT_RECONNECT);
667                 break;
668         case MGS_DISCONNECT:
669                 DEBUG_REQ(D_MGS, req, "disconnect");
670                 /* MGS and MDS have same request format for disconnect */
671                 req_capsule_set(&req->rq_pill, &RQF_MDS_DISCONNECT);
672                 rc = target_handle_disconnect(req);
673                 req->rq_status = rc;            /* superfluous? */
674                 break;
675         case MGS_EXCEPTION:
676                 DEBUG_REQ(D_MGS, req, "exception");
677                 rc = mgs_handle_exception(req);
678                 break;
679         case MGS_TARGET_REG:
680                 DEBUG_REQ(D_MGS, req, "target add");
681                 req_capsule_set(&req->rq_pill, &RQF_MGS_TARGET_REG);
682                 rc = mgs_handle_target_reg(req);
683                 break;
684         case MGS_TARGET_DEL:
685                 DEBUG_REQ(D_MGS, req, "target del");
686                 rc = mgs_handle_target_del(req);
687                 break;
688         case MGS_SET_INFO:
689                 DEBUG_REQ(D_MGS, req, "set_info");
690                 req_capsule_set(&req->rq_pill, &RQF_MGS_SET_INFO);
691                 rc = mgs_set_info_rpc(req);
692                 break;
693
694         case LDLM_ENQUEUE:
695                 DEBUG_REQ(D_MGS, req, "enqueue");
696                 req_capsule_set(&req->rq_pill, &RQF_LDLM_ENQUEUE);
697                 rc = ldlm_handle_enqueue(req, ldlm_server_completion_ast,
698                                          ldlm_server_blocking_ast, NULL);
699                 break;
700         case LDLM_BL_CALLBACK:
701         case LDLM_CP_CALLBACK:
702                 DEBUG_REQ(D_MGS, req, "callback");
703                 CERROR("callbacks should not happen on MGS\n");
704                 LBUG();
705                 break;
706
707         case OBD_PING:
708                 DEBUG_REQ(D_INFO, req, "ping");
709                 req_capsule_set(&req->rq_pill, &RQF_OBD_PING);
710                 rc = target_handle_ping(req);
711                 break;
712         case OBD_LOG_CANCEL:
713                 DEBUG_REQ(D_MGS, req, "log cancel");
714                 rc = -ENOTSUPP; /* la la la */
715                 break;
716
717         case LLOG_ORIGIN_HANDLE_CREATE:
718                 DEBUG_REQ(D_MGS, req, "llog_init");
719                 req_capsule_set(&req->rq_pill, &RQF_LLOG_ORIGIN_HANDLE_CREATE);
720                 rc = llog_origin_handle_create(req);
721                 break;
722         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
723                 DEBUG_REQ(D_MGS, req, "llog next block");
724                 req_capsule_set(&req->rq_pill,
725                                 &RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK);
726                 rc = llog_origin_handle_next_block(req);
727                 break;
728         case LLOG_ORIGIN_HANDLE_READ_HEADER:
729                 DEBUG_REQ(D_MGS, req, "llog read header");
730                 req_capsule_set(&req->rq_pill,
731                                 &RQF_LLOG_ORIGIN_HANDLE_READ_HEADER);
732                 rc = llog_origin_handle_read_header(req);
733                 break;
734         case LLOG_ORIGIN_HANDLE_CLOSE:
735                 DEBUG_REQ(D_MGS, req, "llog close");
736                 rc = llog_origin_handle_close(req);
737                 break;
738         case LLOG_CATINFO:
739                 DEBUG_REQ(D_MGS, req, "llog catinfo");
740                 req_capsule_set(&req->rq_pill, &RQF_LLOG_CATINFO);
741                 rc = llog_catinfo(req);
742                 break;
743         default:
744                 req->rq_status = -ENOTSUPP;
745                 rc = ptlrpc_error(req);
746                 RETURN(rc);
747         }
748
749         LASSERT(current->journal_info == NULL);
750
751         if (rc)
752                 CERROR("MGS handle cmd=%d rc=%d\n", opc, rc);
753
754 out:
755         target_send_reply(req, rc, fail);
756         RETURN(0);
757 }
758
759 static inline int mgs_init_export(struct obd_export *exp)
760 {
761         cfs_spin_lock(&exp->exp_lock);
762         exp->exp_connecting = 1;
763         cfs_spin_unlock(&exp->exp_lock);
764
765         return ldlm_init_export(exp);
766 }
767
768 static inline int mgs_destroy_export(struct obd_export *exp)
769 {
770         ENTRY;
771
772         target_destroy_export(exp);
773         mgs_client_free(exp);
774         ldlm_destroy_export(exp);
775
776         RETURN(0);
777 }
778
779 static int mgs_extract_fs_pool(char * arg, char *fsname, char *poolname)
780 {
781         char *ptr;
782
783         ENTRY;
784         for (ptr = arg;  (*ptr != '\0') && (*ptr != '.'); ptr++ ) {
785                 *fsname = *ptr;
786                 fsname++;
787         }
788         if (*ptr == '\0')
789                 return -EINVAL;
790         *fsname = '\0';
791         ptr++;
792         strcpy(poolname, ptr);
793
794         RETURN(0);
795 }
796
797 static int mgs_iocontrol_pool(struct obd_device *obd,
798                               struct obd_ioctl_data *data)
799 {
800         int rc;
801         struct lustre_cfg *lcfg = NULL;
802         struct llog_rec_hdr rec;
803         char *fsname = NULL;
804         char *poolname = NULL;
805         ENTRY;
806
807         OBD_ALLOC(fsname, MTI_NAME_MAXLEN);
808         if (fsname == NULL)
809                 RETURN(-ENOMEM);
810
811         OBD_ALLOC(poolname, LOV_MAXPOOLNAME + 1);
812         if (poolname == NULL) {
813                 rc = -ENOMEM;
814                 GOTO(out_pool, rc);
815         }
816         rec.lrh_len = llog_data_len(data->ioc_plen1);
817
818         if (data->ioc_type == LUSTRE_CFG_TYPE) {
819                 rec.lrh_type = OBD_CFG_REC;
820         } else {
821                 CERROR("unknown cfg record type:%d \n", data->ioc_type);
822                 rc = -EINVAL;
823                 GOTO(out_pool, rc);
824         }
825
826         if (data->ioc_plen1 > CFS_PAGE_SIZE) {
827                 rc = -E2BIG;
828                 GOTO(out_pool, rc);
829         }
830
831         OBD_ALLOC(lcfg, data->ioc_plen1);
832         if (lcfg == NULL)
833                 GOTO(out_pool, rc = -ENOMEM);
834
835         if (cfs_copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
836                 GOTO(out_pool, rc = -EFAULT);
837
838         if (lcfg->lcfg_bufcount < 2) {
839                 GOTO(out_pool, rc = -EFAULT);
840         }
841
842         /* first arg is always <fsname>.<poolname> */
843         mgs_extract_fs_pool(lustre_cfg_string(lcfg, 1), fsname,
844                             poolname);
845
846         switch (lcfg->lcfg_command) {
847         case LCFG_POOL_NEW: {
848                 if (lcfg->lcfg_bufcount != 2)
849                         RETURN(-EINVAL);
850                 rc = mgs_pool_cmd(obd, LCFG_POOL_NEW, fsname,
851                                   poolname, NULL);
852                 break;
853         }
854         case LCFG_POOL_ADD: {
855                 if (lcfg->lcfg_bufcount != 3)
856                         RETURN(-EINVAL);
857                 rc = mgs_pool_cmd(obd, LCFG_POOL_ADD, fsname, poolname,
858                                   lustre_cfg_string(lcfg, 2));
859                 break;
860         }
861         case LCFG_POOL_REM: {
862                 if (lcfg->lcfg_bufcount != 3)
863                         RETURN(-EINVAL);
864                 rc = mgs_pool_cmd(obd, LCFG_POOL_REM, fsname, poolname,
865                                   lustre_cfg_string(lcfg, 2));
866                 break;
867         }
868         case LCFG_POOL_DEL: {
869                 if (lcfg->lcfg_bufcount != 2)
870                         RETURN(-EINVAL);
871                 rc = mgs_pool_cmd(obd, LCFG_POOL_DEL, fsname,
872                                   poolname, NULL);
873                 break;
874         }
875         default: {
876                  rc = -EINVAL;
877                  GOTO(out_pool, rc);
878         }
879         }
880
881         if (rc) {
882                 CERROR("OBD_IOC_POOL err %d, cmd %X for pool %s.%s\n",
883                        rc, lcfg->lcfg_command, fsname, poolname);
884                 GOTO(out_pool, rc);
885         }
886
887 out_pool:
888         if (lcfg != NULL)
889                 OBD_FREE(lcfg, data->ioc_plen1);
890
891         if (fsname != NULL)
892                 OBD_FREE(fsname, MTI_NAME_MAXLEN);
893
894         if (poolname != NULL)
895                 OBD_FREE(poolname, LOV_MAXPOOLNAME + 1);
896
897         RETURN(rc);
898 }
899
900 /* from mdt_iocontrol */
901 int mgs_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
902                   void *karg, void *uarg)
903 {
904         struct obd_device *obd = exp->exp_obd;
905         struct obd_ioctl_data *data = karg;
906         struct lvfs_run_ctxt saved;
907         int rc = 0;
908
909         ENTRY;
910         CDEBUG(D_IOCTL, "handling ioctl cmd %#x\n", cmd);
911
912         switch (cmd) {
913
914         case OBD_IOC_PARAM: {
915                 struct lustre_cfg *lcfg;
916                 struct llog_rec_hdr rec;
917                 char fsname[MTI_NAME_MAXLEN];
918
919                 rec.lrh_len = llog_data_len(data->ioc_plen1);
920
921                 if (data->ioc_type == LUSTRE_CFG_TYPE) {
922                         rec.lrh_type = OBD_CFG_REC;
923                 } else {
924                         CERROR("unknown cfg record type:%d \n", data->ioc_type);
925                         RETURN(-EINVAL);
926                 }
927
928                 OBD_ALLOC(lcfg, data->ioc_plen1);
929                 if (lcfg == NULL)
930                         RETURN(-ENOMEM);
931                 if (cfs_copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
932                         GOTO(out_free, rc = -EFAULT);
933
934                 if (lcfg->lcfg_bufcount < 1)
935                         GOTO(out_free, rc = -EINVAL);
936
937                 rc = mgs_setparam(obd, lcfg, fsname);
938                 if (rc) {
939                         CERROR("setparam err %d\n", rc);
940                         GOTO(out_free, rc);
941                 }
942 out_free:
943                 OBD_FREE(lcfg, data->ioc_plen1);
944                 RETURN(rc);
945         }
946
947         case OBD_IOC_POOL: {
948                 RETURN(mgs_iocontrol_pool(obd, data));
949         }
950
951         case OBD_IOC_DUMP_LOG: {
952                 struct llog_ctxt *ctxt;
953                 ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
954                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
955                 rc = class_config_dump_llog(ctxt, data->ioc_inlbuf1, NULL);
956                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
957                 llog_ctxt_put(ctxt);
958
959                 RETURN(rc);
960         }
961
962         case OBD_IOC_LLOG_CHECK:
963         case OBD_IOC_LLOG_INFO:
964         case OBD_IOC_LLOG_PRINT: {
965                 struct llog_ctxt *ctxt;
966                 ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
967
968                 push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
969                 rc = llog_ioctl(ctxt, cmd, data);
970                 pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
971                 llog_ctxt_put(ctxt);
972
973                 RETURN(rc);
974         }
975
976         default:
977                 CDEBUG(D_INFO, "unknown command %x\n", cmd);
978                 RETURN(-EINVAL);
979         }
980         RETURN(0);
981 }
982
983 /* use obd ops to offer management infrastructure */
984 static struct obd_ops mgs_obd_ops = {
985         .o_owner           = THIS_MODULE,
986         .o_connect         = mgs_connect,
987         .o_reconnect       = mgs_reconnect,
988         .o_disconnect      = mgs_disconnect,
989         .o_setup           = mgs_setup,
990         .o_precleanup      = mgs_precleanup,
991         .o_cleanup         = mgs_cleanup,
992         .o_init_export     = mgs_init_export,
993         .o_destroy_export  = mgs_destroy_export,
994         .o_iocontrol       = mgs_iocontrol,
995         .o_llog_init       = mgs_llog_init,
996         .o_llog_finish     = mgs_llog_finish
997 };
998
999 static int __init mgs_init(void)
1000 {
1001         struct lprocfs_static_vars lvars;
1002
1003         lprocfs_mgs_init_vars(&lvars);
1004         class_register_type(&mgs_obd_ops, NULL,
1005                             lvars.module_vars, LUSTRE_MGS_NAME, NULL);
1006
1007         return 0;
1008 }
1009
1010 static void /*__exit*/ mgs_exit(void)
1011 {
1012         class_unregister_type(LUSTRE_MGS_NAME);
1013 }
1014
1015 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1016 MODULE_DESCRIPTION("Lustre  Management Server (MGS)");
1017 MODULE_LICENSE("GPL");
1018
1019 module_init(mgs_init);
1020 module_exit(mgs_exit);