Whamcloud - gitweb
b=17471 change conf_param syntax to match set_param
[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 #include <lustre_param.h>
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_export_stats_init(obd, lexp, 0, 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(mgs_export_stats_init(obd, exp, 1, localdata));
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 /* Ensure this is not a failover node that is connecting first*/
405 static int mgs_check_failover_reg(struct mgs_target_info *mti)
406 {
407         lnet_nid_t nid;
408         char *ptr;
409         int i;
410
411         ptr = mti->mti_params;
412         while (class_find_param(ptr, PARAM_FAILNODE, &ptr) == 0) {
413                 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
414                         for (i = 0; i < mti->mti_nid_count; i++) {
415                                 if (nid == mti->mti_nids[i]) {
416                                         LCONSOLE_WARN("Denying initial registra"
417                                                       "tion attempt from nid %s"
418                                                       ", specified as failover"
419                                                       "\n",libcfs_nid2str(nid));
420                                         return -EADDRNOTAVAIL;
421                                 }
422                         }
423                 }
424         }
425         return 0;
426 }
427
428 /* Called whenever a target starts up.  Flags indicate first connect, etc. */
429 static int mgs_handle_target_reg(struct ptlrpc_request *req)
430 {
431         struct obd_device *obd = req->rq_export->exp_obd;
432         struct mgs_target_info *mti, *rep_mti;
433         struct fs_db *fsdb;
434         int rc = 0;
435         ENTRY;
436
437         mgs_counter_incr(req->rq_export, LPROC_MGS_TARGET_REG);
438
439         mti = req_capsule_client_get(&req->rq_pill, &RMF_MGS_TARGET_INFO);
440
441         if (mti->mti_flags & LDD_F_NEED_INDEX)
442                 mti->mti_flags |= LDD_F_WRITECONF;
443
444         if (!(mti->mti_flags & (LDD_F_WRITECONF | LDD_F_UPGRADE14 |
445                                 LDD_F_UPDATE))) {
446                 /* We're just here as a startup ping. */
447                 CDEBUG(D_MGS, "Server %s is running on %s\n",
448                        mti->mti_svname, obd_export_nid2str(req->rq_export));
449                 rc = mgs_check_target(obd, mti);
450                 /* above will set appropriate mti flags */
451                 if (rc <= 0)
452                         /* Nothing wrong, or fatal error */
453                         GOTO(out_nolock, rc);
454         } else {
455                 if ((rc = mgs_check_failover_reg(mti)))
456                         GOTO(out_nolock, rc);
457         }
458
459         OBD_FAIL_TIMEOUT(OBD_FAIL_MGS_PAUSE_TARGET_REG, 10);
460
461         if (mti->mti_flags & LDD_F_WRITECONF) {
462                 if (mti->mti_flags & SVTYPE_MDT &&
463                     mti->mti_stripe_index == 0) {
464                         rc = mgs_erase_logs(obd, mti->mti_fsname);
465                         LCONSOLE_WARN("%s: Logs for fs %s were removed by user "
466                                       "request.  All servers must be restarted "
467                                       "in order to regenerate the logs."
468                                       "\n", obd->obd_name, mti->mti_fsname);
469                 } else if (mti->mti_flags &
470                            (SVTYPE_OST | SVTYPE_MDT)) {
471                         rc = mgs_erase_log(obd, mti->mti_svname);
472                         LCONSOLE_WARN("%s: Regenerating %s log by user "
473                                       "request.\n",
474                                       obd->obd_name, mti->mti_svname);
475                 }
476                 mti->mti_flags |= LDD_F_UPDATE;
477                 /* Erased logs means start from scratch. */
478                 mti->mti_flags &= ~LDD_F_UPGRADE14;
479         }
480
481         rc = mgs_find_or_make_fsdb(obd, mti->mti_fsname, &fsdb);
482         if (rc) {
483                 CERROR("Can't get db for %s: %d\n", mti->mti_fsname, rc);
484                 GOTO(out_nolock, rc);
485         }
486
487         /*
488          * Log writing contention is handled by the fsdb_sem.
489          *
490          * It should be alright if someone was reading while we were
491          * updating the logs - if we revoke at the end they will just update
492          * from where they left off.
493          */
494
495         /* COMPAT_146 */
496         if (mti->mti_flags & LDD_F_UPGRADE14) {
497                 rc = mgs_upgrade_sv_14(obd, mti, fsdb);
498                 if (rc) {
499                         CERROR("Can't upgrade from 1.4 (%d)\n", rc);
500                         GOTO(out, rc);
501                 }
502
503                 /* We're good to go */
504                 mti->mti_flags |= LDD_F_UPDATE;
505         }
506         /* end COMPAT_146 */
507
508         if (mti->mti_flags & LDD_F_UPDATE) {
509                 CDEBUG(D_MGS, "updating %s, index=%d\n", mti->mti_svname,
510                        mti->mti_stripe_index);
511
512                 /* create or update the target log
513                    and update the client/mdt logs */
514                 rc = mgs_write_log_target(obd, mti, fsdb);
515                 if (rc) {
516                         CERROR("Failed to write %s log (%d)\n",
517                                mti->mti_svname, rc);
518                         GOTO(out, rc);
519                 }
520
521                 mti->mti_flags &= ~(LDD_F_VIRGIN | LDD_F_UPDATE |
522                                     LDD_F_NEED_INDEX | LDD_F_WRITECONF |
523                                     LDD_F_UPGRADE14);
524                 mti->mti_flags |= LDD_F_REWRITE_LDD;
525         }
526
527 out:
528         mgs_revoke_lock(obd, fsdb);
529
530 out_nolock:
531         CDEBUG(D_MGS, "replying with %s, index=%d, rc=%d\n", mti->mti_svname,
532                mti->mti_stripe_index, rc);
533         rc = req_capsule_server_pack(&req->rq_pill);
534         if (rc)
535                 RETURN(rc);
536
537         /* send back the whole mti in the reply */
538         rep_mti = req_capsule_server_get(&req->rq_pill, &RMF_MGS_TARGET_INFO);
539         *rep_mti = *mti;
540
541         /* Flush logs to disk */
542         fsfilt_sync(obd, obd->u.mgs.mgs_sb);
543         RETURN(rc);
544 }
545
546 static int mgs_set_info_rpc(struct ptlrpc_request *req)
547 {
548         struct obd_device *obd = req->rq_export->exp_obd;
549         struct mgs_send_param *msp, *rep_msp;
550         int rc;
551         struct lustre_cfg_bufs bufs;
552         struct lustre_cfg *lcfg;
553         char fsname[MTI_NAME_MAXLEN];
554         ENTRY;
555
556         msp = req_capsule_client_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
557         LASSERT(msp);
558
559         /* Construct lustre_cfg structure to pass to function mgs_setparam */
560         lustre_cfg_bufs_reset(&bufs, NULL);
561         lustre_cfg_bufs_set_string(&bufs, 1, msp->mgs_param);
562         lcfg = lustre_cfg_new(LCFG_PARAM, &bufs);
563         rc = mgs_setparam(obd, lcfg, fsname);
564         if (rc) {
565                 CERROR("Error %d in setting the parameter %s for fs %s\n",
566                        rc, msp->mgs_param, fsname);
567                 RETURN(rc);
568         }
569
570         lustre_cfg_free(lcfg);
571
572         rc = req_capsule_server_pack(&req->rq_pill);
573         if (rc == 0) {
574                 rep_msp = req_capsule_server_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
575                 rep_msp = msp;
576         }
577         RETURN(rc);
578 }
579
580 /*
581  * similar as in ost_connect_check_sptlrpc()
582  */
583 static int mgs_connect_check_sptlrpc(struct ptlrpc_request *req)
584 {
585         struct obd_export     *exp = req->rq_export;
586         struct obd_device     *obd = exp->exp_obd;
587         struct fs_db          *fsdb;
588         struct sptlrpc_flavor  flvr;
589         int                    rc = 0;
590
591         if (exp->exp_flvr.sf_rpc == SPTLRPC_FLVR_INVALID) {
592                 rc = mgs_find_or_make_fsdb(obd, MGSSELF_NAME, &fsdb);
593                 if (rc)
594                         return rc;
595
596                 cfs_down(&fsdb->fsdb_sem);
597                 if (sptlrpc_rule_set_choose(&fsdb->fsdb_srpc_gen,
598                                             LUSTRE_SP_MGC, LUSTRE_SP_MGS,
599                                             req->rq_peer.nid,
600                                             &flvr) == 0) {
601                         /* by defualt allow any flavors */
602                         flvr.sf_rpc = SPTLRPC_FLVR_ANY;
603                 }
604                 cfs_up(&fsdb->fsdb_sem);
605
606                 cfs_spin_lock(&exp->exp_lock);
607
608                 exp->exp_sp_peer = req->rq_sp_from;
609                 exp->exp_flvr = flvr;
610
611                 if (exp->exp_flvr.sf_rpc != SPTLRPC_FLVR_ANY &&
612                     exp->exp_flvr.sf_rpc != req->rq_flvr.sf_rpc) {
613                         CERROR("invalid rpc flavor %x, expect %x, from %s\n",
614                                req->rq_flvr.sf_rpc, exp->exp_flvr.sf_rpc,
615                                libcfs_nid2str(req->rq_peer.nid));
616                         rc = -EACCES;
617                 }
618
619                 cfs_spin_unlock(&exp->exp_lock);
620         } else {
621                 if (exp->exp_sp_peer != req->rq_sp_from) {
622                         CERROR("RPC source %s doesn't match %s\n",
623                                sptlrpc_part2name(req->rq_sp_from),
624                                sptlrpc_part2name(exp->exp_sp_peer));
625                         rc = -EACCES;
626                 } else {
627                         rc = sptlrpc_target_export_check(exp, req);
628                 }
629         }
630
631         return rc;
632 }
633
634 /* Called whenever a target cleans up. */
635 /* XXX - Currently unused */
636 static int mgs_handle_target_del(struct ptlrpc_request *req)
637 {
638         ENTRY;
639         mgs_counter_incr(req->rq_export, LPROC_MGS_TARGET_DEL);
640         RETURN(0);
641 }
642
643 /* XXX - Currently unused */
644 static int mgs_handle_exception(struct ptlrpc_request *req)
645 {
646         ENTRY;
647         mgs_counter_incr(req->rq_export, LPROC_MGS_EXCEPTION);
648         RETURN(0);
649 }
650
651 /* TODO: handle requests in a similar way as MDT: see mdt_handle_common() */
652 int mgs_handle(struct ptlrpc_request *req)
653 {
654         int fail = OBD_FAIL_MGS_ALL_REPLY_NET;
655         int opc, rc = 0;
656         ENTRY;
657
658         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
659         OBD_FAIL_TIMEOUT_MS(OBD_FAIL_MGS_PAUSE_REQ, obd_fail_val);
660         if (OBD_FAIL_CHECK(OBD_FAIL_MGS_ALL_REQUEST_NET))
661                 RETURN(0);
662
663         LASSERT(current->journal_info == NULL);
664         opc = lustre_msg_get_opc(req->rq_reqmsg);
665
666         if (opc == SEC_CTX_INIT ||
667             opc == SEC_CTX_INIT_CONT ||
668             opc == SEC_CTX_FINI)
669                 GOTO(out, rc = 0);
670
671         if (opc != MGS_CONNECT) {
672                 if (!class_connected_export(req->rq_export)) {
673                         CERROR("lustre_mgs: operation %d on unconnected MGS\n",
674                                opc);
675                         req->rq_status = -ENOTCONN;
676                         GOTO(out, rc = -ENOTCONN);
677                 }
678         }
679
680         switch (opc) {
681         case MGS_CONNECT:
682                 DEBUG_REQ(D_MGS, req, "connect");
683                 /* MGS and MDS have same request format for connect */
684                 req_capsule_set(&req->rq_pill, &RQF_MDS_CONNECT);
685                 rc = target_handle_connect(req);
686                 if (rc == 0)
687                         rc = mgs_connect_check_sptlrpc(req);
688
689                 if (!rc && (lustre_msg_get_conn_cnt(req->rq_reqmsg) > 1))
690                         /* Make clients trying to reconnect after a MGS restart
691                            happy; also requires obd_replayable */
692                         lustre_msg_add_op_flags(req->rq_repmsg,
693                                                 MSG_CONNECT_RECONNECT);
694                 break;
695         case MGS_DISCONNECT:
696                 DEBUG_REQ(D_MGS, req, "disconnect");
697                 /* MGS and MDS have same request format for disconnect */
698                 req_capsule_set(&req->rq_pill, &RQF_MDS_DISCONNECT);
699                 rc = target_handle_disconnect(req);
700                 req->rq_status = rc;            /* superfluous? */
701                 break;
702         case MGS_EXCEPTION:
703                 DEBUG_REQ(D_MGS, req, "exception");
704                 rc = mgs_handle_exception(req);
705                 break;
706         case MGS_TARGET_REG:
707                 DEBUG_REQ(D_MGS, req, "target add");
708                 req_capsule_set(&req->rq_pill, &RQF_MGS_TARGET_REG);
709                 rc = mgs_handle_target_reg(req);
710                 break;
711         case MGS_TARGET_DEL:
712                 DEBUG_REQ(D_MGS, req, "target del");
713                 rc = mgs_handle_target_del(req);
714                 break;
715         case MGS_SET_INFO:
716                 DEBUG_REQ(D_MGS, req, "set_info");
717                 req_capsule_set(&req->rq_pill, &RQF_MGS_SET_INFO);
718                 rc = mgs_set_info_rpc(req);
719                 break;
720
721         case LDLM_ENQUEUE:
722                 DEBUG_REQ(D_MGS, req, "enqueue");
723                 req_capsule_set(&req->rq_pill, &RQF_LDLM_ENQUEUE);
724                 rc = ldlm_handle_enqueue(req, ldlm_server_completion_ast,
725                                          ldlm_server_blocking_ast, NULL);
726                 break;
727         case LDLM_BL_CALLBACK:
728         case LDLM_CP_CALLBACK:
729                 DEBUG_REQ(D_MGS, req, "callback");
730                 CERROR("callbacks should not happen on MGS\n");
731                 LBUG();
732                 break;
733
734         case OBD_PING:
735                 DEBUG_REQ(D_INFO, req, "ping");
736                 req_capsule_set(&req->rq_pill, &RQF_OBD_PING);
737                 rc = target_handle_ping(req);
738                 break;
739         case OBD_LOG_CANCEL:
740                 DEBUG_REQ(D_MGS, req, "log cancel");
741                 rc = -ENOTSUPP; /* la la la */
742                 break;
743
744         case LLOG_ORIGIN_HANDLE_CREATE:
745                 DEBUG_REQ(D_MGS, req, "llog_init");
746                 req_capsule_set(&req->rq_pill, &RQF_LLOG_ORIGIN_HANDLE_CREATE);
747                 rc = llog_origin_handle_create(req);
748                 break;
749         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
750                 DEBUG_REQ(D_MGS, req, "llog next block");
751                 req_capsule_set(&req->rq_pill,
752                                 &RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK);
753                 rc = llog_origin_handle_next_block(req);
754                 break;
755         case LLOG_ORIGIN_HANDLE_READ_HEADER:
756                 DEBUG_REQ(D_MGS, req, "llog read header");
757                 req_capsule_set(&req->rq_pill,
758                                 &RQF_LLOG_ORIGIN_HANDLE_READ_HEADER);
759                 rc = llog_origin_handle_read_header(req);
760                 break;
761         case LLOG_ORIGIN_HANDLE_CLOSE:
762                 DEBUG_REQ(D_MGS, req, "llog close");
763                 rc = llog_origin_handle_close(req);
764                 break;
765         case LLOG_CATINFO:
766                 DEBUG_REQ(D_MGS, req, "llog catinfo");
767                 req_capsule_set(&req->rq_pill, &RQF_LLOG_CATINFO);
768                 rc = llog_catinfo(req);
769                 break;
770         default:
771                 req->rq_status = -ENOTSUPP;
772                 rc = ptlrpc_error(req);
773                 RETURN(rc);
774         }
775
776         LASSERT(current->journal_info == NULL);
777
778         if (rc)
779                 CERROR("MGS handle cmd=%d rc=%d\n", opc, rc);
780
781 out:
782         target_send_reply(req, rc, fail);
783         RETURN(0);
784 }
785
786 static inline int mgs_init_export(struct obd_export *exp)
787 {
788         cfs_spin_lock(&exp->exp_lock);
789         exp->exp_connecting = 1;
790         cfs_spin_unlock(&exp->exp_lock);
791
792         return ldlm_init_export(exp);
793 }
794
795 static inline int mgs_destroy_export(struct obd_export *exp)
796 {
797         ENTRY;
798
799         target_destroy_export(exp);
800         mgs_client_free(exp);
801         ldlm_destroy_export(exp);
802
803         RETURN(0);
804 }
805
806 static int mgs_extract_fs_pool(char * arg, char *fsname, char *poolname)
807 {
808         char *ptr;
809
810         ENTRY;
811         for (ptr = arg;  (*ptr != '\0') && (*ptr != '.'); ptr++ ) {
812                 *fsname = *ptr;
813                 fsname++;
814         }
815         if (*ptr == '\0')
816                 return -EINVAL;
817         *fsname = '\0';
818         ptr++;
819         strcpy(poolname, ptr);
820
821         RETURN(0);
822 }
823
824 static int mgs_iocontrol_pool(struct obd_device *obd,
825                               struct obd_ioctl_data *data)
826 {
827         int rc;
828         struct lustre_cfg *lcfg = NULL;
829         struct llog_rec_hdr rec;
830         char *fsname = NULL;
831         char *poolname = NULL;
832         ENTRY;
833
834         OBD_ALLOC(fsname, MTI_NAME_MAXLEN);
835         if (fsname == NULL)
836                 RETURN(-ENOMEM);
837
838         OBD_ALLOC(poolname, LOV_MAXPOOLNAME + 1);
839         if (poolname == NULL) {
840                 rc = -ENOMEM;
841                 GOTO(out_pool, rc);
842         }
843         rec.lrh_len = llog_data_len(data->ioc_plen1);
844
845         if (data->ioc_type == LUSTRE_CFG_TYPE) {
846                 rec.lrh_type = OBD_CFG_REC;
847         } else {
848                 CERROR("unknown cfg record type:%d \n", data->ioc_type);
849                 rc = -EINVAL;
850                 GOTO(out_pool, rc);
851         }
852
853         if (data->ioc_plen1 > CFS_PAGE_SIZE) {
854                 rc = -E2BIG;
855                 GOTO(out_pool, rc);
856         }
857
858         OBD_ALLOC(lcfg, data->ioc_plen1);
859         if (lcfg == NULL)
860                 GOTO(out_pool, rc = -ENOMEM);
861
862         if (cfs_copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
863                 GOTO(out_pool, rc = -EFAULT);
864
865         if (lcfg->lcfg_bufcount < 2) {
866                 GOTO(out_pool, rc = -EFAULT);
867         }
868
869         /* first arg is always <fsname>.<poolname> */
870         mgs_extract_fs_pool(lustre_cfg_string(lcfg, 1), fsname,
871                             poolname);
872
873         switch (lcfg->lcfg_command) {
874         case LCFG_POOL_NEW: {
875                 if (lcfg->lcfg_bufcount != 2)
876                         RETURN(-EINVAL);
877                 rc = mgs_pool_cmd(obd, LCFG_POOL_NEW, fsname,
878                                   poolname, NULL);
879                 break;
880         }
881         case LCFG_POOL_ADD: {
882                 if (lcfg->lcfg_bufcount != 3)
883                         RETURN(-EINVAL);
884                 rc = mgs_pool_cmd(obd, LCFG_POOL_ADD, fsname, poolname,
885                                   lustre_cfg_string(lcfg, 2));
886                 break;
887         }
888         case LCFG_POOL_REM: {
889                 if (lcfg->lcfg_bufcount != 3)
890                         RETURN(-EINVAL);
891                 rc = mgs_pool_cmd(obd, LCFG_POOL_REM, fsname, poolname,
892                                   lustre_cfg_string(lcfg, 2));
893                 break;
894         }
895         case LCFG_POOL_DEL: {
896                 if (lcfg->lcfg_bufcount != 2)
897                         RETURN(-EINVAL);
898                 rc = mgs_pool_cmd(obd, LCFG_POOL_DEL, fsname,
899                                   poolname, NULL);
900                 break;
901         }
902         default: {
903                  rc = -EINVAL;
904                  GOTO(out_pool, rc);
905         }
906         }
907
908         if (rc) {
909                 CERROR("OBD_IOC_POOL err %d, cmd %X for pool %s.%s\n",
910                        rc, lcfg->lcfg_command, fsname, poolname);
911                 GOTO(out_pool, rc);
912         }
913
914 out_pool:
915         if (lcfg != NULL)
916                 OBD_FREE(lcfg, data->ioc_plen1);
917
918         if (fsname != NULL)
919                 OBD_FREE(fsname, MTI_NAME_MAXLEN);
920
921         if (poolname != NULL)
922                 OBD_FREE(poolname, LOV_MAXPOOLNAME + 1);
923
924         RETURN(rc);
925 }
926
927 /* from mdt_iocontrol */
928 int mgs_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
929                   void *karg, void *uarg)
930 {
931         struct obd_device *obd = exp->exp_obd;
932         struct obd_ioctl_data *data = karg;
933         struct lvfs_run_ctxt saved;
934         int rc = 0;
935
936         ENTRY;
937         CDEBUG(D_IOCTL, "handling ioctl cmd %#x\n", cmd);
938
939         switch (cmd) {
940
941         case OBD_IOC_PARAM: {
942                 struct lustre_cfg *lcfg;
943                 struct llog_rec_hdr rec;
944                 char fsname[MTI_NAME_MAXLEN];
945
946                 rec.lrh_len = llog_data_len(data->ioc_plen1);
947
948                 if (data->ioc_type == LUSTRE_CFG_TYPE) {
949                         rec.lrh_type = OBD_CFG_REC;
950                 } else {
951                         CERROR("unknown cfg record type:%d \n", data->ioc_type);
952                         RETURN(-EINVAL);
953                 }
954
955                 OBD_ALLOC(lcfg, data->ioc_plen1);
956                 if (lcfg == NULL)
957                         RETURN(-ENOMEM);
958                 if (cfs_copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
959                         GOTO(out_free, rc = -EFAULT);
960
961                 if (lcfg->lcfg_bufcount < 1)
962                         GOTO(out_free, rc = -EINVAL);
963
964                 rc = mgs_setparam(obd, lcfg, fsname);
965                 if (rc) {
966                         CERROR("setparam err %d\n", rc);
967                         GOTO(out_free, rc);
968                 }
969 out_free:
970                 OBD_FREE(lcfg, data->ioc_plen1);
971                 RETURN(rc);
972         }
973
974         case OBD_IOC_POOL: {
975                 RETURN(mgs_iocontrol_pool(obd, data));
976         }
977
978         case OBD_IOC_DUMP_LOG: {
979                 struct llog_ctxt *ctxt;
980                 ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
981                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
982                 rc = class_config_dump_llog(ctxt, data->ioc_inlbuf1, NULL);
983                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
984                 llog_ctxt_put(ctxt);
985
986                 RETURN(rc);
987         }
988
989         case OBD_IOC_LLOG_CHECK:
990         case OBD_IOC_LLOG_INFO:
991         case OBD_IOC_LLOG_PRINT: {
992                 struct llog_ctxt *ctxt;
993                 ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
994
995                 push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
996                 rc = llog_ioctl(ctxt, cmd, data);
997                 pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
998                 llog_ctxt_put(ctxt);
999
1000                 RETURN(rc);
1001         }
1002
1003         default:
1004                 CDEBUG(D_INFO, "unknown command %x\n", cmd);
1005                 RETURN(-EINVAL);
1006         }
1007         RETURN(0);
1008 }
1009
1010 /* use obd ops to offer management infrastructure */
1011 static struct obd_ops mgs_obd_ops = {
1012         .o_owner           = THIS_MODULE,
1013         .o_connect         = mgs_connect,
1014         .o_reconnect       = mgs_reconnect,
1015         .o_disconnect      = mgs_disconnect,
1016         .o_setup           = mgs_setup,
1017         .o_precleanup      = mgs_precleanup,
1018         .o_cleanup         = mgs_cleanup,
1019         .o_init_export     = mgs_init_export,
1020         .o_destroy_export  = mgs_destroy_export,
1021         .o_iocontrol       = mgs_iocontrol,
1022         .o_llog_init       = mgs_llog_init,
1023         .o_llog_finish     = mgs_llog_finish
1024 };
1025
1026 static int __init mgs_init(void)
1027 {
1028         struct lprocfs_static_vars lvars;
1029
1030         lprocfs_mgs_init_vars(&lvars);
1031         class_register_type(&mgs_obd_ops, NULL,
1032                             lvars.module_vars, LUSTRE_MGS_NAME, NULL);
1033
1034         return 0;
1035 }
1036
1037 static void /*__exit*/ mgs_exit(void)
1038 {
1039         class_unregister_type(LUSTRE_MGS_NAME);
1040 }
1041
1042 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1043 MODULE_DESCRIPTION("Lustre  Management Server (MGS)");
1044 MODULE_LICENSE("GPL");
1045
1046 module_init(mgs_init);
1047 module_exit(mgs_exit);