Whamcloud - gitweb
b=23595 return registration errors
[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         req->rq_status = rc;
534         rc = req_capsule_server_pack(&req->rq_pill);
535         if (rc)
536                 RETURN(rc);
537
538         /* send back the whole mti in the reply */
539         rep_mti = req_capsule_server_get(&req->rq_pill, &RMF_MGS_TARGET_INFO);
540         *rep_mti = *mti;
541
542         /* Flush logs to disk */
543         fsfilt_sync(obd, obd->u.mgs.mgs_sb);
544         RETURN(rc);
545 }
546
547 static int mgs_set_info_rpc(struct ptlrpc_request *req)
548 {
549         struct obd_device *obd = req->rq_export->exp_obd;
550         struct mgs_send_param *msp, *rep_msp;
551         int rc;
552         struct lustre_cfg_bufs bufs;
553         struct lustre_cfg *lcfg;
554         char fsname[MTI_NAME_MAXLEN];
555         ENTRY;
556
557         msp = req_capsule_client_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
558         LASSERT(msp);
559
560         /* Construct lustre_cfg structure to pass to function mgs_setparam */
561         lustre_cfg_bufs_reset(&bufs, NULL);
562         lustre_cfg_bufs_set_string(&bufs, 1, msp->mgs_param);
563         lcfg = lustre_cfg_new(LCFG_PARAM, &bufs);
564         rc = mgs_setparam(obd, lcfg, fsname);
565         if (rc) {
566                 CERROR("Error %d in setting the parameter %s for fs %s\n",
567                        rc, msp->mgs_param, fsname);
568                 RETURN(rc);
569         }
570
571         lustre_cfg_free(lcfg);
572
573         rc = req_capsule_server_pack(&req->rq_pill);
574         if (rc == 0) {
575                 rep_msp = req_capsule_server_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
576                 rep_msp = msp;
577         }
578         RETURN(rc);
579 }
580
581 /*
582  * similar as in ost_connect_check_sptlrpc()
583  */
584 static int mgs_connect_check_sptlrpc(struct ptlrpc_request *req)
585 {
586         struct obd_export     *exp = req->rq_export;
587         struct obd_device     *obd = exp->exp_obd;
588         struct fs_db          *fsdb;
589         struct sptlrpc_flavor  flvr;
590         int                    rc = 0;
591
592         if (exp->exp_flvr.sf_rpc == SPTLRPC_FLVR_INVALID) {
593                 rc = mgs_find_or_make_fsdb(obd, MGSSELF_NAME, &fsdb);
594                 if (rc)
595                         return rc;
596
597                 cfs_down(&fsdb->fsdb_sem);
598                 if (sptlrpc_rule_set_choose(&fsdb->fsdb_srpc_gen,
599                                             LUSTRE_SP_MGC, LUSTRE_SP_MGS,
600                                             req->rq_peer.nid,
601                                             &flvr) == 0) {
602                         /* by defualt allow any flavors */
603                         flvr.sf_rpc = SPTLRPC_FLVR_ANY;
604                 }
605                 cfs_up(&fsdb->fsdb_sem);
606
607                 cfs_spin_lock(&exp->exp_lock);
608
609                 exp->exp_sp_peer = req->rq_sp_from;
610                 exp->exp_flvr = flvr;
611
612                 if (exp->exp_flvr.sf_rpc != SPTLRPC_FLVR_ANY &&
613                     exp->exp_flvr.sf_rpc != req->rq_flvr.sf_rpc) {
614                         CERROR("invalid rpc flavor %x, expect %x, from %s\n",
615                                req->rq_flvr.sf_rpc, exp->exp_flvr.sf_rpc,
616                                libcfs_nid2str(req->rq_peer.nid));
617                         rc = -EACCES;
618                 }
619
620                 cfs_spin_unlock(&exp->exp_lock);
621         } else {
622                 if (exp->exp_sp_peer != req->rq_sp_from) {
623                         CERROR("RPC source %s doesn't match %s\n",
624                                sptlrpc_part2name(req->rq_sp_from),
625                                sptlrpc_part2name(exp->exp_sp_peer));
626                         rc = -EACCES;
627                 } else {
628                         rc = sptlrpc_target_export_check(exp, req);
629                 }
630         }
631
632         return rc;
633 }
634
635 /* Called whenever a target cleans up. */
636 /* XXX - Currently unused */
637 static int mgs_handle_target_del(struct ptlrpc_request *req)
638 {
639         ENTRY;
640         mgs_counter_incr(req->rq_export, LPROC_MGS_TARGET_DEL);
641         RETURN(0);
642 }
643
644 /* XXX - Currently unused */
645 static int mgs_handle_exception(struct ptlrpc_request *req)
646 {
647         ENTRY;
648         mgs_counter_incr(req->rq_export, LPROC_MGS_EXCEPTION);
649         RETURN(0);
650 }
651
652 /* TODO: handle requests in a similar way as MDT: see mdt_handle_common() */
653 int mgs_handle(struct ptlrpc_request *req)
654 {
655         int fail = OBD_FAIL_MGS_ALL_REPLY_NET;
656         int opc, rc = 0;
657         ENTRY;
658
659         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
660         OBD_FAIL_TIMEOUT_MS(OBD_FAIL_MGS_PAUSE_REQ, obd_fail_val);
661         if (OBD_FAIL_CHECK(OBD_FAIL_MGS_ALL_REQUEST_NET))
662                 RETURN(0);
663
664         LASSERT(current->journal_info == NULL);
665         opc = lustre_msg_get_opc(req->rq_reqmsg);
666
667         if (opc == SEC_CTX_INIT ||
668             opc == SEC_CTX_INIT_CONT ||
669             opc == SEC_CTX_FINI)
670                 GOTO(out, rc = 0);
671
672         if (opc != MGS_CONNECT) {
673                 if (!class_connected_export(req->rq_export)) {
674                         CERROR("lustre_mgs: operation %d on unconnected MGS\n",
675                                opc);
676                         req->rq_status = -ENOTCONN;
677                         GOTO(out, rc = -ENOTCONN);
678                 }
679         }
680
681         switch (opc) {
682         case MGS_CONNECT:
683                 DEBUG_REQ(D_MGS, req, "connect");
684                 /* MGS and MDS have same request format for connect */
685                 req_capsule_set(&req->rq_pill, &RQF_MDS_CONNECT);
686                 rc = target_handle_connect(req);
687                 if (rc == 0)
688                         rc = mgs_connect_check_sptlrpc(req);
689
690                 if (!rc && (lustre_msg_get_conn_cnt(req->rq_reqmsg) > 1))
691                         /* Make clients trying to reconnect after a MGS restart
692                            happy; also requires obd_replayable */
693                         lustre_msg_add_op_flags(req->rq_repmsg,
694                                                 MSG_CONNECT_RECONNECT);
695                 break;
696         case MGS_DISCONNECT:
697                 DEBUG_REQ(D_MGS, req, "disconnect");
698                 /* MGS and MDS have same request format for disconnect */
699                 req_capsule_set(&req->rq_pill, &RQF_MDS_DISCONNECT);
700                 rc = target_handle_disconnect(req);
701                 req->rq_status = rc;            /* superfluous? */
702                 break;
703         case MGS_EXCEPTION:
704                 DEBUG_REQ(D_MGS, req, "exception");
705                 rc = mgs_handle_exception(req);
706                 break;
707         case MGS_TARGET_REG:
708                 DEBUG_REQ(D_MGS, req, "target add");
709                 req_capsule_set(&req->rq_pill, &RQF_MGS_TARGET_REG);
710                 rc = mgs_handle_target_reg(req);
711                 break;
712         case MGS_TARGET_DEL:
713                 DEBUG_REQ(D_MGS, req, "target del");
714                 rc = mgs_handle_target_del(req);
715                 break;
716         case MGS_SET_INFO:
717                 DEBUG_REQ(D_MGS, req, "set_info");
718                 req_capsule_set(&req->rq_pill, &RQF_MGS_SET_INFO);
719                 rc = mgs_set_info_rpc(req);
720                 break;
721
722         case LDLM_ENQUEUE:
723                 DEBUG_REQ(D_MGS, req, "enqueue");
724                 req_capsule_set(&req->rq_pill, &RQF_LDLM_ENQUEUE);
725                 rc = ldlm_handle_enqueue(req, ldlm_server_completion_ast,
726                                          ldlm_server_blocking_ast, NULL);
727                 break;
728         case LDLM_BL_CALLBACK:
729         case LDLM_CP_CALLBACK:
730                 DEBUG_REQ(D_MGS, req, "callback");
731                 CERROR("callbacks should not happen on MGS\n");
732                 LBUG();
733                 break;
734
735         case OBD_PING:
736                 DEBUG_REQ(D_INFO, req, "ping");
737                 req_capsule_set(&req->rq_pill, &RQF_OBD_PING);
738                 rc = target_handle_ping(req);
739                 break;
740         case OBD_LOG_CANCEL:
741                 DEBUG_REQ(D_MGS, req, "log cancel");
742                 rc = -ENOTSUPP; /* la la la */
743                 break;
744
745         case LLOG_ORIGIN_HANDLE_CREATE:
746                 DEBUG_REQ(D_MGS, req, "llog_init");
747                 req_capsule_set(&req->rq_pill, &RQF_LLOG_ORIGIN_HANDLE_CREATE);
748                 rc = llog_origin_handle_create(req);
749                 break;
750         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
751                 DEBUG_REQ(D_MGS, req, "llog next block");
752                 req_capsule_set(&req->rq_pill,
753                                 &RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK);
754                 rc = llog_origin_handle_next_block(req);
755                 break;
756         case LLOG_ORIGIN_HANDLE_READ_HEADER:
757                 DEBUG_REQ(D_MGS, req, "llog read header");
758                 req_capsule_set(&req->rq_pill,
759                                 &RQF_LLOG_ORIGIN_HANDLE_READ_HEADER);
760                 rc = llog_origin_handle_read_header(req);
761                 break;
762         case LLOG_ORIGIN_HANDLE_CLOSE:
763                 DEBUG_REQ(D_MGS, req, "llog close");
764                 rc = llog_origin_handle_close(req);
765                 break;
766         case LLOG_CATINFO:
767                 DEBUG_REQ(D_MGS, req, "llog catinfo");
768                 req_capsule_set(&req->rq_pill, &RQF_LLOG_CATINFO);
769                 rc = llog_catinfo(req);
770                 break;
771         default:
772                 req->rq_status = -ENOTSUPP;
773                 rc = ptlrpc_error(req);
774                 RETURN(rc);
775         }
776
777         LASSERT(current->journal_info == NULL);
778
779         if (rc)
780                 CERROR("MGS handle cmd=%d rc=%d\n", opc, rc);
781
782 out:
783         target_send_reply(req, rc, fail);
784         RETURN(0);
785 }
786
787 static inline int mgs_init_export(struct obd_export *exp)
788 {
789         cfs_spin_lock(&exp->exp_lock);
790         exp->exp_connecting = 1;
791         cfs_spin_unlock(&exp->exp_lock);
792
793         return ldlm_init_export(exp);
794 }
795
796 static inline int mgs_destroy_export(struct obd_export *exp)
797 {
798         ENTRY;
799
800         target_destroy_export(exp);
801         mgs_client_free(exp);
802         ldlm_destroy_export(exp);
803
804         RETURN(0);
805 }
806
807 static int mgs_extract_fs_pool(char * arg, char *fsname, char *poolname)
808 {
809         char *ptr;
810
811         ENTRY;
812         for (ptr = arg;  (*ptr != '\0') && (*ptr != '.'); ptr++ ) {
813                 *fsname = *ptr;
814                 fsname++;
815         }
816         if (*ptr == '\0')
817                 return -EINVAL;
818         *fsname = '\0';
819         ptr++;
820         strcpy(poolname, ptr);
821
822         RETURN(0);
823 }
824
825 static int mgs_iocontrol_pool(struct obd_device *obd,
826                               struct obd_ioctl_data *data)
827 {
828         int rc;
829         struct lustre_cfg *lcfg = NULL;
830         struct llog_rec_hdr rec;
831         char *fsname = NULL;
832         char *poolname = NULL;
833         ENTRY;
834
835         OBD_ALLOC(fsname, MTI_NAME_MAXLEN);
836         if (fsname == NULL)
837                 RETURN(-ENOMEM);
838
839         OBD_ALLOC(poolname, LOV_MAXPOOLNAME + 1);
840         if (poolname == NULL) {
841                 rc = -ENOMEM;
842                 GOTO(out_pool, rc);
843         }
844         rec.lrh_len = llog_data_len(data->ioc_plen1);
845
846         if (data->ioc_type == LUSTRE_CFG_TYPE) {
847                 rec.lrh_type = OBD_CFG_REC;
848         } else {
849                 CERROR("unknown cfg record type:%d \n", data->ioc_type);
850                 rc = -EINVAL;
851                 GOTO(out_pool, rc);
852         }
853
854         if (data->ioc_plen1 > CFS_PAGE_SIZE) {
855                 rc = -E2BIG;
856                 GOTO(out_pool, rc);
857         }
858
859         OBD_ALLOC(lcfg, data->ioc_plen1);
860         if (lcfg == NULL)
861                 GOTO(out_pool, rc = -ENOMEM);
862
863         if (cfs_copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
864                 GOTO(out_pool, rc = -EFAULT);
865
866         if (lcfg->lcfg_bufcount < 2) {
867                 GOTO(out_pool, rc = -EFAULT);
868         }
869
870         /* first arg is always <fsname>.<poolname> */
871         mgs_extract_fs_pool(lustre_cfg_string(lcfg, 1), fsname,
872                             poolname);
873
874         switch (lcfg->lcfg_command) {
875         case LCFG_POOL_NEW: {
876                 if (lcfg->lcfg_bufcount != 2)
877                         RETURN(-EINVAL);
878                 rc = mgs_pool_cmd(obd, LCFG_POOL_NEW, fsname,
879                                   poolname, NULL);
880                 break;
881         }
882         case LCFG_POOL_ADD: {
883                 if (lcfg->lcfg_bufcount != 3)
884                         RETURN(-EINVAL);
885                 rc = mgs_pool_cmd(obd, LCFG_POOL_ADD, fsname, poolname,
886                                   lustre_cfg_string(lcfg, 2));
887                 break;
888         }
889         case LCFG_POOL_REM: {
890                 if (lcfg->lcfg_bufcount != 3)
891                         RETURN(-EINVAL);
892                 rc = mgs_pool_cmd(obd, LCFG_POOL_REM, fsname, poolname,
893                                   lustre_cfg_string(lcfg, 2));
894                 break;
895         }
896         case LCFG_POOL_DEL: {
897                 if (lcfg->lcfg_bufcount != 2)
898                         RETURN(-EINVAL);
899                 rc = mgs_pool_cmd(obd, LCFG_POOL_DEL, fsname,
900                                   poolname, NULL);
901                 break;
902         }
903         default: {
904                  rc = -EINVAL;
905                  GOTO(out_pool, rc);
906         }
907         }
908
909         if (rc) {
910                 CERROR("OBD_IOC_POOL err %d, cmd %X for pool %s.%s\n",
911                        rc, lcfg->lcfg_command, fsname, poolname);
912                 GOTO(out_pool, rc);
913         }
914
915 out_pool:
916         if (lcfg != NULL)
917                 OBD_FREE(lcfg, data->ioc_plen1);
918
919         if (fsname != NULL)
920                 OBD_FREE(fsname, MTI_NAME_MAXLEN);
921
922         if (poolname != NULL)
923                 OBD_FREE(poolname, LOV_MAXPOOLNAME + 1);
924
925         RETURN(rc);
926 }
927
928 /* from mdt_iocontrol */
929 int mgs_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
930                   void *karg, void *uarg)
931 {
932         struct obd_device *obd = exp->exp_obd;
933         struct obd_ioctl_data *data = karg;
934         struct lvfs_run_ctxt saved;
935         int rc = 0;
936
937         ENTRY;
938         CDEBUG(D_IOCTL, "handling ioctl cmd %#x\n", cmd);
939
940         switch (cmd) {
941
942         case OBD_IOC_PARAM: {
943                 struct lustre_cfg *lcfg;
944                 struct llog_rec_hdr rec;
945                 char fsname[MTI_NAME_MAXLEN];
946
947                 rec.lrh_len = llog_data_len(data->ioc_plen1);
948
949                 if (data->ioc_type == LUSTRE_CFG_TYPE) {
950                         rec.lrh_type = OBD_CFG_REC;
951                 } else {
952                         CERROR("unknown cfg record type:%d \n", data->ioc_type);
953                         RETURN(-EINVAL);
954                 }
955
956                 OBD_ALLOC(lcfg, data->ioc_plen1);
957                 if (lcfg == NULL)
958                         RETURN(-ENOMEM);
959                 if (cfs_copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
960                         GOTO(out_free, rc = -EFAULT);
961
962                 if (lcfg->lcfg_bufcount < 1)
963                         GOTO(out_free, rc = -EINVAL);
964
965                 rc = mgs_setparam(obd, lcfg, fsname);
966                 if (rc) {
967                         CERROR("setparam err %d\n", rc);
968                         GOTO(out_free, rc);
969                 }
970 out_free:
971                 OBD_FREE(lcfg, data->ioc_plen1);
972                 RETURN(rc);
973         }
974
975         case OBD_IOC_POOL: {
976                 RETURN(mgs_iocontrol_pool(obd, data));
977         }
978
979         case OBD_IOC_DUMP_LOG: {
980                 struct llog_ctxt *ctxt;
981                 ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
982                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
983                 rc = class_config_dump_llog(ctxt, data->ioc_inlbuf1, NULL);
984                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
985                 llog_ctxt_put(ctxt);
986
987                 RETURN(rc);
988         }
989
990         case OBD_IOC_LLOG_CHECK:
991         case OBD_IOC_LLOG_INFO:
992         case OBD_IOC_LLOG_PRINT: {
993                 struct llog_ctxt *ctxt;
994                 ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
995
996                 push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
997                 rc = llog_ioctl(ctxt, cmd, data);
998                 pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
999                 llog_ctxt_put(ctxt);
1000
1001                 RETURN(rc);
1002         }
1003
1004         default:
1005                 CDEBUG(D_INFO, "unknown command %x\n", cmd);
1006                 RETURN(-EINVAL);
1007         }
1008         RETURN(0);
1009 }
1010
1011 /* use obd ops to offer management infrastructure */
1012 static struct obd_ops mgs_obd_ops = {
1013         .o_owner           = THIS_MODULE,
1014         .o_connect         = mgs_connect,
1015         .o_reconnect       = mgs_reconnect,
1016         .o_disconnect      = mgs_disconnect,
1017         .o_setup           = mgs_setup,
1018         .o_precleanup      = mgs_precleanup,
1019         .o_cleanup         = mgs_cleanup,
1020         .o_init_export     = mgs_init_export,
1021         .o_destroy_export  = mgs_destroy_export,
1022         .o_iocontrol       = mgs_iocontrol,
1023         .o_llog_init       = mgs_llog_init,
1024         .o_llog_finish     = mgs_llog_finish
1025 };
1026
1027 static int __init mgs_init(void)
1028 {
1029         struct lprocfs_static_vars lvars;
1030
1031         lprocfs_mgs_init_vars(&lvars);
1032         class_register_type(&mgs_obd_ops, NULL,
1033                             lvars.module_vars, LUSTRE_MGS_NAME, NULL);
1034
1035         return 0;
1036 }
1037
1038 static void /*__exit*/ mgs_exit(void)
1039 {
1040         class_unregister_type(LUSTRE_MGS_NAME);
1041 }
1042
1043 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1044 MODULE_DESCRIPTION("Lustre  Management Server (MGS)");
1045 MODULE_LICENSE("GPL");
1046
1047 module_init(mgs_init);
1048 module_exit(mgs_exit);