Whamcloud - gitweb
d1e4b652828f34ae50adca85250a5f9c0bd9f88d
[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, 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, 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",
201                                                 LDLM_NAMESPACE_SERVER,
202                                                 LDLM_NAMESPACE_MODEST,
203                                                 LDLM_NS_TYPE_MGT);
204         if (obd->obd_namespace == NULL)
205                 GOTO(err_ops, rc = -ENOMEM);
206
207         /* ldlm setup */
208         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
209                            "mgs_ldlm_client", &obd->obd_ldlm_client);
210
211         rc = mgs_fs_setup(obd, mnt);
212         if (rc) {
213                 CERROR("%s: MGS filesystem method init failed: rc = %d\n",
214                        obd->obd_name, rc);
215                 GOTO(err_ns, rc);
216         }
217
218         rc = obd_llog_init(obd, &obd->obd_olg, obd, NULL);
219         if (rc)
220                 GOTO(err_fs, rc);
221
222         /* No recovery for MGC's */
223         obd->obd_replayable = 0;
224
225         /* Internal mgs setup */
226         mgs_init_fsdb_list(obd);
227         cfs_sema_init(&mgs->mgs_sem, 1);
228
229         /* Setup proc */
230         lprocfs_mgs_init_vars(&lvars);
231         if (lprocfs_obd_setup(obd, lvars.obd_vars) == 0) {
232                 lproc_mgs_setup(obd);
233                 rc = lprocfs_alloc_md_stats(obd, LPROC_MGS_LAST);
234                 if (rc)
235                         GOTO(err_llog, rc);
236         }
237
238         /* Start the service threads */
239         mgs->mgs_service =
240                 ptlrpc_init_svc(MGS_NBUFS, MGS_BUFSIZE, MGS_MAXREQSIZE,
241                                 MGS_MAXREPSIZE, MGS_REQUEST_PORTAL,
242                                 MGC_REPLY_PORTAL, 2,
243                                 mgs_handle, LUSTRE_MGS_NAME,
244                                 obd->obd_proc_entry, target_print_req,
245                                 MGS_THREADS_AUTO_MIN, MGS_THREADS_AUTO_MAX,
246                                 "ll_mgs", LCT_MD_THREAD, NULL);
247
248         if (!mgs->mgs_service) {
249                 CERROR("failed to start service\n");
250                 GOTO(err_llog, rc = -ENOMEM);
251         }
252
253         rc = ptlrpc_start_threads(mgs->mgs_service);
254         if (rc)
255                 GOTO(err_thread, rc);
256
257         ping_evictor_start();
258
259         LCONSOLE_INFO("MGS %s started\n", obd->obd_name);
260
261         RETURN(0);
262
263 err_thread:
264         ptlrpc_unregister_service(mgs->mgs_service);
265 err_llog:
266         lproc_mgs_cleanup(obd);
267         obd_llog_finish(obd, 0);
268 err_fs:
269         /* No extra cleanup needed for llog_init_commit_thread() */
270         mgs_fs_cleanup(obd);
271 err_ns:
272         ldlm_namespace_free(obd->obd_namespace, NULL, 0);
273         obd->obd_namespace = NULL;
274 err_ops:
275         fsfilt_put_ops(obd->obd_fsops);
276 err_put:
277         server_put_mount(obd->obd_name, mnt);
278         mgs->mgs_sb = 0;
279         return rc;
280 }
281
282 static int mgs_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
283 {
284         int rc = 0;
285         ENTRY;
286
287         switch (stage) {
288         case OBD_CLEANUP_EARLY:
289         case OBD_CLEANUP_EXPORTS:
290                 rc = obd_llog_finish(obd, 0);
291                 break;
292         }
293         RETURN(rc);
294 }
295
296 /**
297  * Performs cleanup procedures for passed \a obd given it is mgs obd.
298  */
299 static int mgs_cleanup(struct obd_device *obd)
300 {
301         struct mgs_obd *mgs = &obd->u.mgs;
302         ENTRY;
303
304         if (mgs->mgs_sb == NULL)
305                 RETURN(0);
306
307         ping_evictor_stop();
308
309         ptlrpc_unregister_service(mgs->mgs_service);
310
311         mgs_cleanup_fsdb_list(obd);
312         lproc_mgs_cleanup(obd);
313         mgs_fs_cleanup(obd);
314
315         server_put_mount(obd->obd_name, mgs->mgs_vfsmnt);
316         mgs->mgs_sb = NULL;
317
318         ldlm_namespace_free(obd->obd_namespace, NULL, 1);
319         obd->obd_namespace = NULL;
320
321         fsfilt_put_ops(obd->obd_fsops);
322
323         LCONSOLE_INFO("%s has stopped.\n", obd->obd_name);
324         RETURN(0);
325 }
326
327 /* similar to filter_prepare_destroy */
328 static int mgs_get_cfg_lock(struct obd_device *obd, char *fsname,
329                             struct lustre_handle *lockh)
330 {
331         struct ldlm_res_id res_id;
332         int rc, flags = 0;
333         ENTRY;
334
335         rc = mgc_fsname2resid(fsname, &res_id);
336         if (!rc)
337                 rc = ldlm_cli_enqueue_local(obd->obd_namespace, &res_id,
338                                             LDLM_PLAIN, NULL, LCK_EX,
339                                             &flags, ldlm_blocking_ast,
340                                             ldlm_completion_ast, NULL,
341                                             fsname, 0, NULL, lockh);
342         if (rc)
343                 CERROR("can't take cfg lock for %s (%d)\n", fsname, rc);
344
345         RETURN(rc);
346 }
347
348 static int mgs_put_cfg_lock(struct lustre_handle *lockh)
349 {
350         ENTRY;
351         ldlm_lock_decref(lockh, LCK_EX);
352         RETURN(0);
353 }
354
355 void mgs_revoke_lock(struct obd_device *obd, struct fs_db *fsdb)
356 {
357         struct lustre_handle lockh;
358         int                  lockrc;
359
360         LASSERT(fsdb->fsdb_name[0] != '\0');
361
362         if (cfs_test_and_set_bit(FSDB_REVOKING_LOCK, &fsdb->fsdb_flags) == 0) {
363                 lockrc = mgs_get_cfg_lock(obd, fsdb->fsdb_name, &lockh);
364                 /* clear the bit before lock put */
365                 cfs_clear_bit(FSDB_REVOKING_LOCK, &fsdb->fsdb_flags);
366
367                 if (lockrc != ELDLM_OK)
368                         CERROR("lock error %d for fs %s\n",
369                                lockrc, fsdb->fsdb_name);
370                 else
371                         mgs_put_cfg_lock(&lockh);
372         }
373 }
374
375 /* rc=0 means ok
376       1 means update
377      <0 means error */
378 static int mgs_check_target(struct obd_device *obd, struct mgs_target_info *mti)
379 {
380         int rc;
381         ENTRY;
382
383         rc = mgs_check_index(obd, mti);
384         if (rc == 0) {
385                 LCONSOLE_ERROR_MSG(0x13b, "%s claims to have registered, but "
386                                    "this MGS does not know about it, preventing "
387                                    "registration.\n", mti->mti_svname);
388                 rc = -ENOENT;
389         } else if (rc == -1) {
390                 LCONSOLE_ERROR_MSG(0x13c, "Client log %s-client has "
391                                    "disappeared! Regenerating all logs.\n",
392                                    mti->mti_fsname);
393                 mti->mti_flags |= LDD_F_WRITECONF;
394                 rc = 1;
395         } else {
396                 /* Index is correctly marked as used */
397
398                 /* If the logs don't contain the mti_nids then add
399                    them as failover nids */
400                 rc = mgs_check_failnid(obd, mti);
401         }
402
403         RETURN(rc);
404 }
405
406 /* Ensure this is not a failover node that is connecting first*/
407 static int mgs_check_failover_reg(struct mgs_target_info *mti)
408 {
409         lnet_nid_t nid;
410         char *ptr;
411         int i;
412
413         ptr = mti->mti_params;
414         while (class_find_param(ptr, PARAM_FAILNODE, &ptr) == 0) {
415                 while (class_parse_nid(ptr, &nid, &ptr) == 0) {
416                         for (i = 0; i < mti->mti_nid_count; i++) {
417                                 if (nid == mti->mti_nids[i]) {
418                                         LCONSOLE_WARN("Denying initial registra"
419                                                       "tion attempt from nid %s"
420                                                       ", specified as failover"
421                                                       "\n",libcfs_nid2str(nid));
422                                         return -EADDRNOTAVAIL;
423                                 }
424                         }
425                 }
426         }
427         return 0;
428 }
429
430 /* Called whenever a target starts up.  Flags indicate first connect, etc. */
431 static int mgs_handle_target_reg(struct ptlrpc_request *req)
432 {
433         struct obd_device *obd = req->rq_export->exp_obd;
434         struct mgs_target_info *mti, *rep_mti;
435         struct fs_db *fsdb;
436         int rc = 0;
437         ENTRY;
438
439         mgs_counter_incr(req->rq_export, LPROC_MGS_TARGET_REG);
440
441         mti = req_capsule_client_get(&req->rq_pill, &RMF_MGS_TARGET_INFO);
442
443         if (mti->mti_flags & LDD_F_NEED_INDEX)
444                 mti->mti_flags |= LDD_F_WRITECONF;
445
446         if (!(mti->mti_flags & (LDD_F_WRITECONF | LDD_F_UPGRADE14 |
447                                 LDD_F_UPDATE))) {
448                 /* We're just here as a startup ping. */
449                 CDEBUG(D_MGS, "Server %s is running on %s\n",
450                        mti->mti_svname, obd_export_nid2str(req->rq_export));
451                 rc = mgs_check_target(obd, mti);
452                 /* above will set appropriate mti flags */
453                 if (rc <= 0)
454                         /* Nothing wrong, or fatal error */
455                         GOTO(out_nolock, rc);
456         } else {
457                 if (!(mti->mti_flags & LDD_F_NO_PRIMNODE)
458                     && (rc = mgs_check_failover_reg(mti)))
459                         GOTO(out_nolock, rc);
460         }
461
462         OBD_FAIL_TIMEOUT(OBD_FAIL_MGS_PAUSE_TARGET_REG, 10);
463
464         if (mti->mti_flags & LDD_F_WRITECONF) {
465                 if (mti->mti_flags & LDD_F_SV_TYPE_MDT &&
466                     mti->mti_stripe_index == 0) {
467                         rc = mgs_erase_logs(obd, mti->mti_fsname);
468                         LCONSOLE_WARN("%s: Logs for fs %s were removed by user "
469                                       "request.  All servers must be restarted "
470                                       "in order to regenerate the logs."
471                                       "\n", obd->obd_name, mti->mti_fsname);
472                 } else if (mti->mti_flags &
473                            (LDD_F_SV_TYPE_OST | LDD_F_SV_TYPE_MDT)) {
474                         rc = mgs_erase_log(obd, mti->mti_svname);
475                         LCONSOLE_WARN("%s: Regenerating %s log by user "
476                                       "request.\n",
477                                       obd->obd_name, mti->mti_svname);
478                 }
479                 mti->mti_flags |= LDD_F_UPDATE;
480                 /* Erased logs means start from scratch. */
481                 mti->mti_flags &= ~LDD_F_UPGRADE14;
482         }
483
484         rc = mgs_find_or_make_fsdb(obd, mti->mti_fsname, &fsdb);
485         if (rc) {
486                 CERROR("Can't get db for %s: %d\n", mti->mti_fsname, rc);
487                 GOTO(out_nolock, rc);
488         }
489
490         /*
491          * Log writing contention is handled by the fsdb_sem.
492          *
493          * It should be alright if someone was reading while we were
494          * updating the logs - if we revoke at the end they will just update
495          * from where they left off.
496          */
497
498         /* COMPAT_146 */
499         if (mti->mti_flags & LDD_F_UPGRADE14) {
500                 rc = mgs_upgrade_sv_14(obd, mti, fsdb);
501                 if (rc) {
502                         CERROR("Can't upgrade from 1.4 (%d)\n", rc);
503                         GOTO(out, rc);
504                 }
505
506                 /* We're good to go */
507                 mti->mti_flags |= LDD_F_UPDATE;
508         }
509         /* end COMPAT_146 */
510
511         if (mti->mti_flags & LDD_F_UPDATE) {
512                 CDEBUG(D_MGS, "updating %s, index=%d\n", mti->mti_svname,
513                        mti->mti_stripe_index);
514
515                 /* create or update the target log
516                    and update the client/mdt logs */
517                 rc = mgs_write_log_target(obd, mti, fsdb);
518                 if (rc) {
519                         CERROR("Failed to write %s log (%d)\n",
520                                mti->mti_svname, rc);
521                         GOTO(out, rc);
522                 }
523
524                 mti->mti_flags &= ~(LDD_F_VIRGIN | LDD_F_UPDATE |
525                                     LDD_F_NEED_INDEX | LDD_F_WRITECONF |
526                                     LDD_F_UPGRADE14);
527                 mti->mti_flags |= LDD_F_REWRITE_LDD;
528         }
529
530 out:
531         mgs_revoke_lock(obd, fsdb);
532
533 out_nolock:
534         CDEBUG(D_MGS, "replying with %s, index=%d, rc=%d\n", mti->mti_svname,
535                mti->mti_stripe_index, rc);
536         req->rq_status = rc;
537         rc = req_capsule_server_pack(&req->rq_pill);
538         if (rc)
539                 RETURN(rc);
540
541         /* send back the whole mti in the reply */
542         rep_mti = req_capsule_server_get(&req->rq_pill, &RMF_MGS_TARGET_INFO);
543         *rep_mti = *mti;
544
545         /* Flush logs to disk */
546         fsfilt_sync(obd, obd->u.mgs.mgs_sb);
547         RETURN(rc);
548 }
549
550 static int mgs_set_info_rpc(struct ptlrpc_request *req)
551 {
552         struct obd_device *obd = req->rq_export->exp_obd;
553         struct mgs_send_param *msp, *rep_msp;
554         int rc;
555         struct lustre_cfg_bufs bufs;
556         struct lustre_cfg *lcfg;
557         char fsname[MTI_NAME_MAXLEN];
558         ENTRY;
559
560         msp = req_capsule_client_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
561         LASSERT(msp);
562
563         /* Construct lustre_cfg structure to pass to function mgs_setparam */
564         lustre_cfg_bufs_reset(&bufs, NULL);
565         lustre_cfg_bufs_set_string(&bufs, 1, msp->mgs_param);
566         lcfg = lustre_cfg_new(LCFG_PARAM, &bufs);
567         rc = mgs_setparam(obd, lcfg, fsname);
568         if (rc) {
569                 CERROR("Error %d in setting the parameter %s for fs %s\n",
570                        rc, msp->mgs_param, fsname);
571                 RETURN(rc);
572         }
573
574         lustre_cfg_free(lcfg);
575
576         rc = req_capsule_server_pack(&req->rq_pill);
577         if (rc == 0) {
578                 rep_msp = req_capsule_server_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
579                 rep_msp = msp;
580         }
581         RETURN(rc);
582 }
583
584 /*
585  * similar as in ost_connect_check_sptlrpc()
586  */
587 static int mgs_connect_check_sptlrpc(struct ptlrpc_request *req)
588 {
589         struct obd_export     *exp = req->rq_export;
590         struct obd_device     *obd = exp->exp_obd;
591         struct fs_db          *fsdb;
592         struct sptlrpc_flavor  flvr;
593         int                    rc = 0;
594
595         if (exp->exp_flvr.sf_rpc == SPTLRPC_FLVR_INVALID) {
596                 rc = mgs_find_or_make_fsdb(obd, MGSSELF_NAME, &fsdb);
597                 if (rc)
598                         return rc;
599
600                 cfs_down(&fsdb->fsdb_sem);
601                 if (sptlrpc_rule_set_choose(&fsdb->fsdb_srpc_gen,
602                                             LUSTRE_SP_MGC, LUSTRE_SP_MGS,
603                                             req->rq_peer.nid,
604                                             &flvr) == 0) {
605                         /* by defualt allow any flavors */
606                         flvr.sf_rpc = SPTLRPC_FLVR_ANY;
607                 }
608                 cfs_up(&fsdb->fsdb_sem);
609
610                 cfs_spin_lock(&exp->exp_lock);
611
612                 exp->exp_sp_peer = req->rq_sp_from;
613                 exp->exp_flvr = flvr;
614
615                 if (exp->exp_flvr.sf_rpc != SPTLRPC_FLVR_ANY &&
616                     exp->exp_flvr.sf_rpc != req->rq_flvr.sf_rpc) {
617                         CERROR("invalid rpc flavor %x, expect %x, from %s\n",
618                                req->rq_flvr.sf_rpc, exp->exp_flvr.sf_rpc,
619                                libcfs_nid2str(req->rq_peer.nid));
620                         rc = -EACCES;
621                 }
622
623                 cfs_spin_unlock(&exp->exp_lock);
624         } else {
625                 if (exp->exp_sp_peer != req->rq_sp_from) {
626                         CERROR("RPC source %s doesn't match %s\n",
627                                sptlrpc_part2name(req->rq_sp_from),
628                                sptlrpc_part2name(exp->exp_sp_peer));
629                         rc = -EACCES;
630                 } else {
631                         rc = sptlrpc_target_export_check(exp, req);
632                 }
633         }
634
635         return rc;
636 }
637
638 /* Called whenever a target cleans up. */
639 /* XXX - Currently unused */
640 static int mgs_handle_target_del(struct ptlrpc_request *req)
641 {
642         ENTRY;
643         mgs_counter_incr(req->rq_export, LPROC_MGS_TARGET_DEL);
644         RETURN(0);
645 }
646
647 /* XXX - Currently unused */
648 static int mgs_handle_exception(struct ptlrpc_request *req)
649 {
650         ENTRY;
651         mgs_counter_incr(req->rq_export, LPROC_MGS_EXCEPTION);
652         RETURN(0);
653 }
654
655 /* TODO: handle requests in a similar way as MDT: see mdt_handle_common() */
656 int mgs_handle(struct ptlrpc_request *req)
657 {
658         int fail = OBD_FAIL_MGS_ALL_REPLY_NET;
659         int opc, rc = 0;
660         ENTRY;
661
662         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
663         CFS_FAIL_TIMEOUT_MS(OBD_FAIL_MGS_PAUSE_REQ, cfs_fail_val);
664         if (CFS_FAIL_CHECK(OBD_FAIL_MGS_ALL_REQUEST_NET))
665                 RETURN(0);
666
667         LASSERT(current->journal_info == NULL);
668         opc = lustre_msg_get_opc(req->rq_reqmsg);
669
670         if (opc == SEC_CTX_INIT ||
671             opc == SEC_CTX_INIT_CONT ||
672             opc == SEC_CTX_FINI)
673                 GOTO(out, rc = 0);
674
675         if (opc != MGS_CONNECT) {
676                 if (!class_connected_export(req->rq_export)) {
677                         CERROR("lustre_mgs: operation %d on unconnected MGS\n",
678                                opc);
679                         req->rq_status = -ENOTCONN;
680                         GOTO(out, rc = -ENOTCONN);
681                 }
682         }
683
684         switch (opc) {
685         case MGS_CONNECT:
686                 DEBUG_REQ(D_MGS, req, "connect");
687                 /* MGS and MDS have same request format for connect */
688                 req_capsule_set(&req->rq_pill, &RQF_MDS_CONNECT);
689                 rc = target_handle_connect(req);
690                 if (rc == 0)
691                         rc = mgs_connect_check_sptlrpc(req);
692
693                 if (!rc && (lustre_msg_get_conn_cnt(req->rq_reqmsg) > 1))
694                         /* Make clients trying to reconnect after a MGS restart
695                            happy; also requires obd_replayable */
696                         lustre_msg_add_op_flags(req->rq_repmsg,
697                                                 MSG_CONNECT_RECONNECT);
698                 break;
699         case MGS_DISCONNECT:
700                 DEBUG_REQ(D_MGS, req, "disconnect");
701                 /* MGS and MDS have same request format for disconnect */
702                 req_capsule_set(&req->rq_pill, &RQF_MDS_DISCONNECT);
703                 rc = target_handle_disconnect(req);
704                 req->rq_status = rc;            /* superfluous? */
705                 break;
706         case MGS_EXCEPTION:
707                 DEBUG_REQ(D_MGS, req, "exception");
708                 rc = mgs_handle_exception(req);
709                 break;
710         case MGS_TARGET_REG:
711                 DEBUG_REQ(D_MGS, req, "target add");
712                 req_capsule_set(&req->rq_pill, &RQF_MGS_TARGET_REG);
713                 rc = mgs_handle_target_reg(req);
714                 break;
715         case MGS_TARGET_DEL:
716                 DEBUG_REQ(D_MGS, req, "target del");
717                 rc = mgs_handle_target_del(req);
718                 break;
719         case MGS_SET_INFO:
720                 DEBUG_REQ(D_MGS, req, "set_info");
721                 req_capsule_set(&req->rq_pill, &RQF_MGS_SET_INFO);
722                 rc = mgs_set_info_rpc(req);
723                 break;
724
725         case LDLM_ENQUEUE:
726                 DEBUG_REQ(D_MGS, req, "enqueue");
727                 req_capsule_set(&req->rq_pill, &RQF_LDLM_ENQUEUE);
728                 rc = ldlm_handle_enqueue(req, ldlm_server_completion_ast,
729                                          ldlm_server_blocking_ast, NULL);
730                 break;
731         case LDLM_BL_CALLBACK:
732         case LDLM_CP_CALLBACK:
733                 DEBUG_REQ(D_MGS, req, "callback");
734                 CERROR("callbacks should not happen on MGS\n");
735                 LBUG();
736                 break;
737
738         case OBD_PING:
739                 DEBUG_REQ(D_INFO, req, "ping");
740                 req_capsule_set(&req->rq_pill, &RQF_OBD_PING);
741                 rc = target_handle_ping(req);
742                 break;
743         case OBD_LOG_CANCEL:
744                 DEBUG_REQ(D_MGS, req, "log cancel");
745                 rc = -ENOTSUPP; /* la la la */
746                 break;
747
748         case LLOG_ORIGIN_HANDLE_CREATE:
749                 DEBUG_REQ(D_MGS, req, "llog_init");
750                 req_capsule_set(&req->rq_pill, &RQF_LLOG_ORIGIN_HANDLE_CREATE);
751                 rc = llog_origin_handle_create(req);
752                 break;
753         case LLOG_ORIGIN_HANDLE_NEXT_BLOCK:
754                 DEBUG_REQ(D_MGS, req, "llog next block");
755                 req_capsule_set(&req->rq_pill,
756                                 &RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK);
757                 rc = llog_origin_handle_next_block(req);
758                 break;
759         case LLOG_ORIGIN_HANDLE_READ_HEADER:
760                 DEBUG_REQ(D_MGS, req, "llog read header");
761                 req_capsule_set(&req->rq_pill,
762                                 &RQF_LLOG_ORIGIN_HANDLE_READ_HEADER);
763                 rc = llog_origin_handle_read_header(req);
764                 break;
765         case LLOG_ORIGIN_HANDLE_CLOSE:
766                 DEBUG_REQ(D_MGS, req, "llog close");
767                 rc = llog_origin_handle_close(req);
768                 break;
769         case LLOG_CATINFO:
770                 DEBUG_REQ(D_MGS, req, "llog catinfo");
771                 req_capsule_set(&req->rq_pill, &RQF_LLOG_CATINFO);
772                 rc = llog_catinfo(req);
773                 break;
774         default:
775                 req->rq_status = -ENOTSUPP;
776                 rc = ptlrpc_error(req);
777                 RETURN(rc);
778         }
779
780         LASSERT(current->journal_info == NULL);
781
782         if (rc)
783                 CERROR("MGS handle cmd=%d rc=%d\n", opc, rc);
784
785 out:
786         target_send_reply(req, rc, fail);
787         RETURN(0);
788 }
789
790 static inline int mgs_init_export(struct obd_export *exp)
791 {
792         cfs_spin_lock(&exp->exp_lock);
793         exp->exp_connecting = 1;
794         cfs_spin_unlock(&exp->exp_lock);
795
796         return ldlm_init_export(exp);
797 }
798
799 static inline int mgs_destroy_export(struct obd_export *exp)
800 {
801         ENTRY;
802
803         target_destroy_export(exp);
804         mgs_client_free(exp);
805         ldlm_destroy_export(exp);
806
807         RETURN(0);
808 }
809
810 static int mgs_extract_fs_pool(char * arg, char *fsname, char *poolname)
811 {
812         char *ptr;
813
814         ENTRY;
815         for (ptr = arg;  (*ptr != '\0') && (*ptr != '.'); ptr++ ) {
816                 *fsname = *ptr;
817                 fsname++;
818         }
819         if (*ptr == '\0')
820                 return -EINVAL;
821         *fsname = '\0';
822         ptr++;
823         strcpy(poolname, ptr);
824
825         RETURN(0);
826 }
827
828 static int mgs_iocontrol_pool(struct obd_device *obd,
829                               struct obd_ioctl_data *data)
830 {
831         int rc;
832         struct lustre_cfg *lcfg = NULL;
833         struct llog_rec_hdr rec;
834         char *fsname = NULL;
835         char *poolname = NULL;
836         ENTRY;
837
838         OBD_ALLOC(fsname, MTI_NAME_MAXLEN);
839         if (fsname == NULL)
840                 RETURN(-ENOMEM);
841
842         OBD_ALLOC(poolname, LOV_MAXPOOLNAME + 1);
843         if (poolname == NULL) {
844                 rc = -ENOMEM;
845                 GOTO(out_pool, rc);
846         }
847         rec.lrh_len = llog_data_len(data->ioc_plen1);
848
849         if (data->ioc_type == LUSTRE_CFG_TYPE) {
850                 rec.lrh_type = OBD_CFG_REC;
851         } else {
852                 CERROR("unknown cfg record type:%d \n", data->ioc_type);
853                 rc = -EINVAL;
854                 GOTO(out_pool, rc);
855         }
856
857         if (data->ioc_plen1 > CFS_PAGE_SIZE) {
858                 rc = -E2BIG;
859                 GOTO(out_pool, rc);
860         }
861
862         OBD_ALLOC(lcfg, data->ioc_plen1);
863         if (lcfg == NULL)
864                 GOTO(out_pool, rc = -ENOMEM);
865
866         if (cfs_copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
867                 GOTO(out_pool, rc = -EFAULT);
868
869         if (lcfg->lcfg_bufcount < 2) {
870                 GOTO(out_pool, rc = -EFAULT);
871         }
872
873         /* first arg is always <fsname>.<poolname> */
874         mgs_extract_fs_pool(lustre_cfg_string(lcfg, 1), fsname,
875                             poolname);
876
877         switch (lcfg->lcfg_command) {
878         case LCFG_POOL_NEW: {
879                 if (lcfg->lcfg_bufcount != 2)
880                         RETURN(-EINVAL);
881                 rc = mgs_pool_cmd(obd, LCFG_POOL_NEW, fsname,
882                                   poolname, NULL);
883                 break;
884         }
885         case LCFG_POOL_ADD: {
886                 if (lcfg->lcfg_bufcount != 3)
887                         RETURN(-EINVAL);
888                 rc = mgs_pool_cmd(obd, LCFG_POOL_ADD, fsname, poolname,
889                                   lustre_cfg_string(lcfg, 2));
890                 break;
891         }
892         case LCFG_POOL_REM: {
893                 if (lcfg->lcfg_bufcount != 3)
894                         RETURN(-EINVAL);
895                 rc = mgs_pool_cmd(obd, LCFG_POOL_REM, fsname, poolname,
896                                   lustre_cfg_string(lcfg, 2));
897                 break;
898         }
899         case LCFG_POOL_DEL: {
900                 if (lcfg->lcfg_bufcount != 2)
901                         RETURN(-EINVAL);
902                 rc = mgs_pool_cmd(obd, LCFG_POOL_DEL, fsname,
903                                   poolname, NULL);
904                 break;
905         }
906         default: {
907                  rc = -EINVAL;
908                  GOTO(out_pool, rc);
909         }
910         }
911
912         if (rc) {
913                 CERROR("OBD_IOC_POOL err %d, cmd %X for pool %s.%s\n",
914                        rc, lcfg->lcfg_command, fsname, poolname);
915                 GOTO(out_pool, rc);
916         }
917
918 out_pool:
919         if (lcfg != NULL)
920                 OBD_FREE(lcfg, data->ioc_plen1);
921
922         if (fsname != NULL)
923                 OBD_FREE(fsname, MTI_NAME_MAXLEN);
924
925         if (poolname != NULL)
926                 OBD_FREE(poolname, LOV_MAXPOOLNAME + 1);
927
928         RETURN(rc);
929 }
930
931 /* from mdt_iocontrol */
932 int mgs_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
933                   void *karg, void *uarg)
934 {
935         struct obd_device *obd = exp->exp_obd;
936         struct obd_ioctl_data *data = karg;
937         struct lvfs_run_ctxt saved;
938         int rc = 0;
939
940         ENTRY;
941         CDEBUG(D_IOCTL, "handling ioctl cmd %#x\n", cmd);
942
943         switch (cmd) {
944
945         case OBD_IOC_PARAM: {
946                 struct lustre_cfg *lcfg;
947                 struct llog_rec_hdr rec;
948                 char fsname[MTI_NAME_MAXLEN];
949
950                 rec.lrh_len = llog_data_len(data->ioc_plen1);
951
952                 if (data->ioc_type == LUSTRE_CFG_TYPE) {
953                         rec.lrh_type = OBD_CFG_REC;
954                 } else {
955                         CERROR("unknown cfg record type:%d \n", data->ioc_type);
956                         RETURN(-EINVAL);
957                 }
958
959                 OBD_ALLOC(lcfg, data->ioc_plen1);
960                 if (lcfg == NULL)
961                         RETURN(-ENOMEM);
962                 if (cfs_copy_from_user(lcfg, data->ioc_pbuf1, data->ioc_plen1))
963                         GOTO(out_free, rc = -EFAULT);
964
965                 if (lcfg->lcfg_bufcount < 1)
966                         GOTO(out_free, rc = -EINVAL);
967
968                 rc = mgs_setparam(obd, lcfg, fsname);
969                 if (rc) {
970                         CERROR("setparam err %d\n", rc);
971                         GOTO(out_free, rc);
972                 }
973 out_free:
974                 OBD_FREE(lcfg, data->ioc_plen1);
975                 RETURN(rc);
976         }
977
978         case OBD_IOC_POOL: {
979                 RETURN(mgs_iocontrol_pool(obd, data));
980         }
981
982         case OBD_IOC_DUMP_LOG: {
983                 struct llog_ctxt *ctxt;
984                 ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
985                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
986                 rc = class_config_dump_llog(ctxt, data->ioc_inlbuf1, NULL);
987                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
988                 llog_ctxt_put(ctxt);
989
990                 RETURN(rc);
991         }
992
993         case OBD_IOC_LLOG_CHECK:
994         case OBD_IOC_LLOG_INFO:
995         case OBD_IOC_LLOG_PRINT: {
996                 struct llog_ctxt *ctxt;
997                 ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
998
999                 push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
1000                 rc = llog_ioctl(ctxt, cmd, data);
1001                 pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
1002                 llog_ctxt_put(ctxt);
1003
1004                 RETURN(rc);
1005         }
1006
1007         default:
1008                 CDEBUG(D_INFO, "unknown command %x\n", cmd);
1009                 RETURN(-EINVAL);
1010         }
1011         RETURN(0);
1012 }
1013
1014 /* use obd ops to offer management infrastructure */
1015 static struct obd_ops mgs_obd_ops = {
1016         .o_owner           = THIS_MODULE,
1017         .o_connect         = mgs_connect,
1018         .o_reconnect       = mgs_reconnect,
1019         .o_disconnect      = mgs_disconnect,
1020         .o_setup           = mgs_setup,
1021         .o_precleanup      = mgs_precleanup,
1022         .o_cleanup         = mgs_cleanup,
1023         .o_init_export     = mgs_init_export,
1024         .o_destroy_export  = mgs_destroy_export,
1025         .o_iocontrol       = mgs_iocontrol,
1026         .o_llog_init       = mgs_llog_init,
1027         .o_llog_finish     = mgs_llog_finish
1028 };
1029
1030 static int __init mgs_init(void)
1031 {
1032         struct lprocfs_static_vars lvars;
1033
1034         lprocfs_mgs_init_vars(&lvars);
1035         class_register_type(&mgs_obd_ops, NULL,
1036                             lvars.module_vars, LUSTRE_MGS_NAME, NULL);
1037
1038         return 0;
1039 }
1040
1041 static void /*__exit*/ mgs_exit(void)
1042 {
1043         class_unregister_type(LUSTRE_MGS_NAME);
1044 }
1045
1046 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1047 MODULE_DESCRIPTION("Lustre  Management Server (MGS)");
1048 MODULE_LICENSE("GPL");
1049
1050 module_init(mgs_init);
1051 module_exit(mgs_exit);