Whamcloud - gitweb
LU-1302 llog: simplify llog_setup functionality
[fs/lustre-release.git] / lustre / mgc / mgc_request.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Whamcloud, Inc.
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/mgc/mgc_request.c
37  *
38  * Author: Nathan Rutman <nathan@clusterfs.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_MGC
42 #define D_MGC D_CONFIG /*|D_WARNING*/
43
44 #ifdef __KERNEL__
45 # include <linux/module.h>
46 # include <linux/pagemap.h>
47 # include <linux/miscdevice.h>
48 # include <linux/init.h>
49 #else
50 # include <liblustre.h>
51 #endif
52
53 #include <obd_class.h>
54 #include <lustre_dlm.h>
55 #include <lprocfs_status.h>
56 #include <lustre_log.h>
57 #include <lustre_fsfilt.h>
58 #include <lustre_disk.h>
59 #include "mgc_internal.h"
60
61 static int mgc_name2resid(char *name, int len, struct ldlm_res_id *res_id,
62                           int type)
63 {
64         __u64 resname = 0;
65
66         if (len > 8) {
67                 CERROR("name too long: %s\n", name);
68                 return -EINVAL;
69         }
70         if (len <= 0) {
71                 CERROR("missing name: %s\n", name);
72                 return -EINVAL;
73         }
74         memcpy(&resname, name, len);
75
76         /* Always use the same endianness for the resid */
77         memset(res_id, 0, sizeof(*res_id));
78         res_id->name[0] = cpu_to_le64(resname);
79         /* XXX: unfortunately, sptlprc and config llog share one lock */
80         switch(type) {
81         case CONFIG_T_CONFIG:
82         case CONFIG_T_SPTLRPC:
83                 resname = 0;
84                 break;
85         case CONFIG_T_RECOVER:
86                 resname = type;
87                 break;
88         default:
89                 LBUG();
90         }
91         res_id->name[1] = cpu_to_le64(resname);
92         CDEBUG(D_MGC, "log %s to resid "LPX64"/"LPX64" (%.8s)\n", name,
93                res_id->name[0], res_id->name[1], (char *)&res_id->name[0]);
94         return 0;
95 }
96
97 int mgc_fsname2resid(char *fsname, struct ldlm_res_id *res_id, int type)
98 {
99         /* fsname is at most 8 chars long, maybe contain "-".
100          * e.g. "lustre", "SUN-000" */
101         return mgc_name2resid(fsname, strlen(fsname), res_id, type);
102 }
103 EXPORT_SYMBOL(mgc_fsname2resid);
104
105 int mgc_logname2resid(char *logname, struct ldlm_res_id *res_id, int type)
106 {
107         char *name_end;
108         int len;
109
110         /* logname consists of "fsname-nodetype".
111          * e.g. "lustre-MDT0001", "SUN-000-client" */
112         name_end = strrchr(logname, '-');
113         LASSERT(name_end);
114         len = name_end - logname;
115         return mgc_name2resid(logname, len, res_id, type);
116 }
117
118 /********************** config llog list **********************/
119 static CFS_LIST_HEAD(config_llog_list);
120 static DEFINE_SPINLOCK(config_list_lock);
121
122 /* Take a reference to a config log */
123 static int config_log_get(struct config_llog_data *cld)
124 {
125         ENTRY;
126         cfs_atomic_inc(&cld->cld_refcount);
127         CDEBUG(D_INFO, "log %s refs %d\n", cld->cld_logname,
128                cfs_atomic_read(&cld->cld_refcount));
129         RETURN(0);
130 }
131
132 /* Drop a reference to a config log.  When no longer referenced,
133    we can free the config log data */
134 static void config_log_put(struct config_llog_data *cld)
135 {
136         ENTRY;
137
138         CDEBUG(D_INFO, "log %s refs %d\n", cld->cld_logname,
139                cfs_atomic_read(&cld->cld_refcount));
140         LASSERT(cfs_atomic_read(&cld->cld_refcount) > 0);
141
142         /* spinlock to make sure no item with 0 refcount in the list */
143         if (cfs_atomic_dec_and_lock(&cld->cld_refcount, &config_list_lock)) {
144                 cfs_list_del(&cld->cld_list_chain);
145                 cfs_spin_unlock(&config_list_lock);
146
147                 CDEBUG(D_MGC, "dropping config log %s\n", cld->cld_logname);
148
149                 if (cld->cld_recover)
150                         config_log_put(cld->cld_recover);
151                 if (cld->cld_sptlrpc)
152                         config_log_put(cld->cld_sptlrpc);
153                 if (cld_is_sptlrpc(cld))
154                         sptlrpc_conf_log_stop(cld->cld_logname);
155
156                 class_export_put(cld->cld_mgcexp);
157                 OBD_FREE(cld, sizeof(*cld) + strlen(cld->cld_logname) + 1);
158         }
159
160         EXIT;
161 }
162
163 /* Find a config log by name */
164 static
165 struct config_llog_data *config_log_find(char *logname,
166                                          struct config_llog_instance *cfg)
167 {
168         struct config_llog_data *cld;
169         struct config_llog_data *found = NULL;
170         void *                   instance;
171         ENTRY;
172
173         LASSERT(logname != NULL);
174
175         instance = cfg ? cfg->cfg_instance : NULL;
176         cfs_spin_lock(&config_list_lock);
177         cfs_list_for_each_entry(cld, &config_llog_list, cld_list_chain) {
178                 /* check if instance equals */
179                 if (instance != cld->cld_cfg.cfg_instance)
180                         continue;
181
182                 /* instance may be NULL, should check name */
183                 if (strcmp(logname, cld->cld_logname) == 0) {
184                         found = cld;
185                         break;
186                 }
187         }
188         if (found) {
189                 cfs_atomic_inc(&found->cld_refcount);
190                 LASSERT(found->cld_stopping == 0 || cld_is_sptlrpc(found) == 0);
191         }
192         cfs_spin_unlock(&config_list_lock);
193         RETURN(found);
194 }
195
196 static
197 struct config_llog_data *do_config_log_add(struct obd_device *obd,
198                                            char *logname,
199                                            int type,
200                                            struct config_llog_instance *cfg,
201                                            struct super_block *sb)
202 {
203         struct config_llog_data *cld;
204         int                      rc;
205         ENTRY;
206
207         CDEBUG(D_MGC, "do adding config log %s:%p\n", logname,
208                cfg ? cfg->cfg_instance : 0);
209
210         OBD_ALLOC(cld, sizeof(*cld) + strlen(logname) + 1);
211         if (!cld)
212                 RETURN(ERR_PTR(-ENOMEM));
213
214         strcpy(cld->cld_logname, logname);
215         if (cfg)
216                 cld->cld_cfg = *cfg;
217         cfs_mutex_init(&cld->cld_lock);
218         cld->cld_cfg.cfg_last_idx = 0;
219         cld->cld_cfg.cfg_flags = 0;
220         cld->cld_cfg.cfg_sb = sb;
221         cld->cld_type = type;
222         cfs_atomic_set(&cld->cld_refcount, 1);
223
224         /* Keep the mgc around until we are done */
225         cld->cld_mgcexp = class_export_get(obd->obd_self_export);
226
227         if (cld_is_sptlrpc(cld)) {
228                 sptlrpc_conf_log_start(logname);
229                 cld->cld_cfg.cfg_obdname = obd->obd_name;
230         }
231
232         rc = mgc_logname2resid(logname, &cld->cld_resid, type);
233
234         cfs_spin_lock(&config_list_lock);
235         cfs_list_add(&cld->cld_list_chain, &config_llog_list);
236         cfs_spin_unlock(&config_list_lock);
237
238         if (rc) {
239                 config_log_put(cld);
240                 RETURN(ERR_PTR(rc));
241         }
242
243         if (cld_is_sptlrpc(cld)) {
244                 rc = mgc_process_log(obd, cld);
245                 if (rc)
246                         CERROR("failed processing sptlrpc log: %d\n", rc);
247         }
248
249         RETURN(cld);
250 }
251
252 static struct config_llog_data *config_recover_log_add(struct obd_device *obd,
253         char *fsname,
254         struct config_llog_instance *cfg,
255         struct super_block *sb)
256 {
257         struct config_llog_instance lcfg = *cfg;
258         struct lustre_sb_info *lsi = s2lsi(sb);
259         struct config_llog_data *cld;
260         char logname[32];
261
262         if (IS_OST(lsi))
263                 return NULL;
264
265         /* we have to use different llog for clients and mdts for cmd
266          * where only clients are notified if one of cmd server restarts */
267         LASSERT(strlen(fsname) < sizeof(logname) / 2);
268         strcpy(logname, fsname);
269         if (IS_SERVER(lsi)) { /* mdt */
270                 LASSERT(lcfg.cfg_instance == NULL);
271                 lcfg.cfg_instance = sb;
272                 strcat(logname, "-mdtir");
273         } else {
274                 LASSERT(lcfg.cfg_instance != NULL);
275                 strcat(logname, "-cliir");
276         }
277
278         cld = do_config_log_add(obd, logname, CONFIG_T_RECOVER, &lcfg, sb);
279         return cld;
280 }
281
282
283 /** Add this log to the list of active logs watched by an MGC.
284  * Active means we're watching for updates.
285  * We have one active log per "mount" - client instance or servername.
286  * Each instance may be at a different point in the log.
287  */
288 static int config_log_add(struct obd_device *obd, char *logname,
289                           struct config_llog_instance *cfg,
290                           struct super_block *sb)
291 {
292         struct lustre_sb_info *lsi = s2lsi(sb);
293         struct config_llog_data *cld;
294         struct config_llog_data *sptlrpc_cld;
295         char                     seclogname[32];
296         char                    *ptr;
297         ENTRY;
298
299         CDEBUG(D_MGC, "adding config log %s:%p\n", logname, cfg->cfg_instance);
300
301         /*
302          * for each regular log, the depended sptlrpc log name is
303          * <fsname>-sptlrpc. multiple regular logs may share one sptlrpc log.
304          */
305         ptr = strrchr(logname, '-');
306         if (ptr == NULL || ptr - logname > 8) {
307                 CERROR("logname %s is too long\n", logname);
308                 RETURN(-EINVAL);
309         }
310
311         memcpy(seclogname, logname, ptr - logname);
312         strcpy(seclogname + (ptr - logname), "-sptlrpc");
313
314         sptlrpc_cld = config_log_find(seclogname, NULL);
315         if (sptlrpc_cld == NULL) {
316                 sptlrpc_cld = do_config_log_add(obd, seclogname,
317                                                 CONFIG_T_SPTLRPC, NULL, NULL);
318                 if (IS_ERR(sptlrpc_cld)) {
319                         CERROR("can't create sptlrpc log: %s\n", seclogname);
320                         RETURN(PTR_ERR(sptlrpc_cld));
321                 }
322         }
323
324         cld = do_config_log_add(obd, logname, CONFIG_T_CONFIG, cfg, sb);
325         if (IS_ERR(cld)) {
326                 CERROR("can't create log: %s\n", logname);
327                 config_log_put(sptlrpc_cld);
328                 RETURN(PTR_ERR(cld));
329         }
330
331         cld->cld_sptlrpc = sptlrpc_cld;
332
333         LASSERT(lsi->lsi_lmd);
334         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOIR)) {
335                 struct config_llog_data *recover_cld;
336                 *strrchr(seclogname, '-') = 0;
337                 recover_cld = config_recover_log_add(obd, seclogname, cfg, sb);
338                 if (IS_ERR(recover_cld)) {
339                         config_log_put(cld);
340                         RETURN(PTR_ERR(recover_cld));
341                 }
342                 cld->cld_recover = recover_cld;
343         }
344
345         RETURN(0);
346 }
347
348 CFS_DEFINE_MUTEX(llog_process_lock);
349
350 /** Stop watching for updates on this log.
351  */
352 static int config_log_end(char *logname, struct config_llog_instance *cfg)
353 {
354         struct config_llog_data *cld;
355         struct config_llog_data *cld_sptlrpc = NULL;
356         struct config_llog_data *cld_recover = NULL;
357         int rc = 0;
358         ENTRY;
359
360         cld = config_log_find(logname, cfg);
361         if (cld == NULL)
362                 RETURN(-ENOENT);
363
364         cfs_mutex_lock(&cld->cld_lock);
365         /*
366          * if cld_stopping is set, it means we didn't start the log thus
367          * not owning the start ref. this can happen after previous umount:
368          * the cld still hanging there waiting for lock cancel, and we
369          * remount again but failed in the middle and call log_end without
370          * calling start_log.
371          */
372         if (unlikely(cld->cld_stopping)) {
373                 cfs_mutex_unlock(&cld->cld_lock);
374                 /* drop the ref from the find */
375                 config_log_put(cld);
376                 RETURN(rc);
377         }
378
379         cld->cld_stopping = 1;
380
381         cld_recover = cld->cld_recover;
382         cld->cld_recover = NULL;
383         cfs_mutex_unlock(&cld->cld_lock);
384
385         if (cld_recover) {
386                 cfs_mutex_lock(&cld_recover->cld_lock);
387                 cld_recover->cld_stopping = 1;
388                 cfs_mutex_unlock(&cld_recover->cld_lock);
389                 config_log_put(cld_recover);
390         }
391
392         cfs_spin_lock(&config_list_lock);
393         cld_sptlrpc = cld->cld_sptlrpc;
394         cld->cld_sptlrpc = NULL;
395         cfs_spin_unlock(&config_list_lock);
396
397         if (cld_sptlrpc)
398                 config_log_put(cld_sptlrpc);
399
400         /* drop the ref from the find */
401         config_log_put(cld);
402         /* drop the start ref */
403         config_log_put(cld);
404
405         CDEBUG(D_MGC, "end config log %s (%d)\n", logname ? logname : "client",
406                rc);
407         RETURN(rc);
408 }
409
410 int lprocfs_mgc_rd_ir_state(char *page, char **start, off_t off,
411                             int count, int *eof, void *data)
412 {
413         struct obd_device       *obd = data;
414         struct obd_import       *imp = obd->u.cli.cl_import;
415         struct obd_connect_data *ocd = &imp->imp_connect_data;
416         struct config_llog_data *cld;
417         int rc = 0;
418         ENTRY;
419
420         rc = snprintf(page, count, "imperative_recovery: %s\n",
421                       OCD_HAS_FLAG(ocd, IMP_RECOV) ? "ENABLED" : "DISABLED");
422         rc += snprintf(page + rc, count - rc, "client_state:\n");
423
424         cfs_spin_lock(&config_list_lock);
425         cfs_list_for_each_entry(cld, &config_llog_list, cld_list_chain) {
426                 if (cld->cld_recover == NULL)
427                         continue;
428                 rc += snprintf(page + rc, count - rc,
429                                "    - { client: %s, nidtbl_version: %u }\n",
430                                cld->cld_logname,
431                                cld->cld_recover->cld_cfg.cfg_last_idx);
432         }
433         cfs_spin_unlock(&config_list_lock);
434
435         RETURN(rc);
436 }
437
438 /* reenqueue any lost locks */
439 #define RQ_RUNNING 0x1
440 #define RQ_NOW     0x2
441 #define RQ_LATER   0x4
442 #define RQ_STOP    0x8
443 static int                    rq_state = 0;
444 static cfs_waitq_t            rq_waitq;
445 static CFS_DECLARE_COMPLETION(rq_exit);
446
447 static void do_requeue(struct config_llog_data *cld)
448 {
449         ENTRY;
450         LASSERT(cfs_atomic_read(&cld->cld_refcount) > 0);
451
452         /* Do not run mgc_process_log on a disconnected export or an
453            export which is being disconnected. Take the client
454            semaphore to make the check non-racy. */
455         cfs_down_read(&cld->cld_mgcexp->exp_obd->u.cli.cl_sem);
456         if (cld->cld_mgcexp->exp_obd->u.cli.cl_conn_count != 0) {
457                 CDEBUG(D_MGC, "updating log %s\n", cld->cld_logname);
458                 mgc_process_log(cld->cld_mgcexp->exp_obd, cld);
459         } else {
460                 CDEBUG(D_MGC, "disconnecting, won't update log %s\n",
461                        cld->cld_logname);
462         }
463         cfs_up_read(&cld->cld_mgcexp->exp_obd->u.cli.cl_sem);
464
465         EXIT;
466 }
467
468 /* this timeout represents how many seconds MGC should wait before
469  * requeue config and recover lock to the MGS. We need to randomize this
470  * in order to not flood the MGS.
471  */
472 #define MGC_TIMEOUT_MIN_SECONDS   5
473 #define MGC_TIMEOUT_RAND_CENTISEC 0x1ff /* ~500 */
474
475 static int mgc_requeue_thread(void *data)
476 {
477         char name[] = "ll_cfg_requeue";
478         int rc = 0;
479         ENTRY;
480
481         cfs_daemonize(name);
482
483         CDEBUG(D_MGC, "Starting requeue thread\n");
484
485         /* Keep trying failed locks periodically */
486         cfs_spin_lock(&config_list_lock);
487         rq_state |= RQ_RUNNING;
488         while (1) {
489                 struct l_wait_info lwi;
490                 struct config_llog_data *cld, *cld_prev;
491                 int rand = cfs_rand() & MGC_TIMEOUT_RAND_CENTISEC;
492                 int stopped = !!(rq_state & RQ_STOP);
493                 int to;
494
495                 /* Any new or requeued lostlocks will change the state */
496                 rq_state &= ~(RQ_NOW | RQ_LATER);
497                 cfs_spin_unlock(&config_list_lock);
498
499                 /* Always wait a few seconds to allow the server who
500                    caused the lock revocation to finish its setup, plus some
501                    random so everyone doesn't try to reconnect at once. */
502                 to = MGC_TIMEOUT_MIN_SECONDS * CFS_HZ;
503                 to += rand * CFS_HZ / 100; /* rand is centi-seconds */
504                 lwi = LWI_TIMEOUT(to, NULL, NULL);
505                 l_wait_event(rq_waitq, rq_state & RQ_STOP, &lwi);
506
507                 /*
508                  * iterate & processing through the list. for each cld, process
509                  * its depending sptlrpc cld firstly (if any) and then itself.
510                  *
511                  * it's guaranteed any item in the list must have
512                  * reference > 0; and if cld_lostlock is set, at
513                  * least one reference is taken by the previous enqueue.
514                  */
515                 cld_prev = NULL;
516
517                 cfs_spin_lock(&config_list_lock);
518                 cfs_list_for_each_entry(cld, &config_llog_list,
519                                         cld_list_chain) {
520                         if (!cld->cld_lostlock)
521                                 continue;
522
523                         cfs_spin_unlock(&config_list_lock);
524
525                         LASSERT(cfs_atomic_read(&cld->cld_refcount) > 0);
526
527                         /* Whether we enqueued again or not in mgc_process_log,
528                          * we're done with the ref from the old enqueue */
529                         if (cld_prev)
530                                 config_log_put(cld_prev);
531                         cld_prev = cld;
532
533                         cld->cld_lostlock = 0;
534                         if (likely(!stopped))
535                                 do_requeue(cld);
536
537                         cfs_spin_lock(&config_list_lock);
538                 }
539                 cfs_spin_unlock(&config_list_lock);
540                 if (cld_prev)
541                         config_log_put(cld_prev);
542
543                 /* break after scanning the list so that we can drop
544                  * refcount to losing lock clds */
545                 if (unlikely(stopped)) {
546                         cfs_spin_lock(&config_list_lock);
547                         break;
548                 }
549
550                 /* Wait a bit to see if anyone else needs a requeue */
551                 lwi = (struct l_wait_info) { 0 };
552                 l_wait_event(rq_waitq, rq_state & (RQ_NOW | RQ_STOP),
553                              &lwi);
554                 cfs_spin_lock(&config_list_lock);
555         }
556         /* spinlock and while guarantee RQ_NOW and RQ_LATER are not set */
557         rq_state &= ~RQ_RUNNING;
558         cfs_spin_unlock(&config_list_lock);
559
560         cfs_complete(&rq_exit);
561
562         CDEBUG(D_MGC, "Ending requeue thread\n");
563         RETURN(rc);
564 }
565
566 /* Add a cld to the list to requeue.  Start the requeue thread if needed.
567    We are responsible for dropping the config log reference from here on out. */
568 static void mgc_requeue_add(struct config_llog_data *cld)
569 {
570         ENTRY;
571
572         CDEBUG(D_INFO, "log %s: requeue (r=%d sp=%d st=%x)\n",
573                cld->cld_logname, cfs_atomic_read(&cld->cld_refcount),
574                cld->cld_stopping, rq_state);
575         LASSERT(cfs_atomic_read(&cld->cld_refcount) > 0);
576
577         cfs_mutex_lock(&cld->cld_lock);
578         if (cld->cld_stopping || cld->cld_lostlock) {
579                 cfs_mutex_unlock(&cld->cld_lock);
580                 RETURN_EXIT;
581         }
582         /* this refcount will be released in mgc_requeue_thread. */
583         config_log_get(cld);
584         cld->cld_lostlock = 1;
585         cfs_mutex_unlock(&cld->cld_lock);
586
587         /* Hold lock for rq_state */
588         cfs_spin_lock(&config_list_lock);
589         if (rq_state & RQ_STOP) {
590                 cfs_spin_unlock(&config_list_lock);
591                 cld->cld_lostlock = 0;
592                 config_log_put(cld);
593         } else {
594                 rq_state |= RQ_NOW;
595                 cfs_spin_unlock(&config_list_lock);
596                 cfs_waitq_signal(&rq_waitq);
597         }
598         EXIT;
599 }
600
601 /********************** class fns **********************/
602
603 static int mgc_fs_setup(struct obd_device *obd, struct super_block *sb,
604                         struct vfsmount *mnt)
605 {
606         struct lvfs_run_ctxt saved;
607         struct lustre_sb_info *lsi = s2lsi(sb);
608         struct client_obd *cli = &obd->u.cli;
609         struct dentry *dentry;
610         char *label;
611         int err = 0;
612         ENTRY;
613
614         LASSERT(lsi);
615         LASSERT(lsi->lsi_srv_mnt == mnt);
616
617         /* The mgc fs exclusion sem. Only one fs can be setup at a time. */
618         cfs_down(&cli->cl_mgc_sem);
619
620         cfs_cleanup_group_info();
621
622         obd->obd_fsops = fsfilt_get_ops(lsi->lsi_fstype);
623         if (IS_ERR(obd->obd_fsops)) {
624                 cfs_up(&cli->cl_mgc_sem);
625                 CERROR("No fstype %s rc=%ld\n", lsi->lsi_fstype,
626                        PTR_ERR(obd->obd_fsops));
627                 RETURN(PTR_ERR(obd->obd_fsops));
628         }
629
630         cli->cl_mgc_vfsmnt = mnt;
631         err = fsfilt_setup(obd, mnt->mnt_sb);
632         if (err)
633                 GOTO(err_ops, err);
634
635         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
636         obd->obd_lvfs_ctxt.pwdmnt = mnt;
637         obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
638         obd->obd_lvfs_ctxt.fs = get_ds();
639
640         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
641         dentry = ll_lookup_one_len(MOUNT_CONFIGS_DIR, cfs_fs_pwd(current->fs),
642                                    strlen(MOUNT_CONFIGS_DIR));
643         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
644         if (IS_ERR(dentry)) {
645                 err = PTR_ERR(dentry);
646                 CERROR("cannot lookup %s directory: rc = %d\n",
647                        MOUNT_CONFIGS_DIR, err);
648                 GOTO(err_ops, err);
649         }
650         cli->cl_mgc_configs_dir = dentry;
651
652         /* We take an obd ref to insure that we can't get to mgc_cleanup
653            without calling mgc_fs_cleanup first. */
654         class_incref(obd, "mgc_fs", obd);
655
656         label = fsfilt_get_label(obd, mnt->mnt_sb);
657         if (label)
658                 CDEBUG(D_MGC, "MGC using disk labelled=%s\n", label);
659
660         /* We keep the cl_mgc_sem until mgc_fs_cleanup */
661         RETURN(0);
662
663 err_ops:
664         fsfilt_put_ops(obd->obd_fsops);
665         obd->obd_fsops = NULL;
666         cli->cl_mgc_vfsmnt = NULL;
667         cfs_up(&cli->cl_mgc_sem);
668         RETURN(err);
669 }
670
671 static int mgc_fs_cleanup(struct obd_device *obd)
672 {
673         struct client_obd *cli = &obd->u.cli;
674         int rc = 0;
675         ENTRY;
676
677         LASSERT(cli->cl_mgc_vfsmnt != NULL);
678
679         if (cli->cl_mgc_configs_dir != NULL) {
680                 struct lvfs_run_ctxt saved;
681                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
682                 l_dput(cli->cl_mgc_configs_dir);
683                 cli->cl_mgc_configs_dir = NULL;
684                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
685                 class_decref(obd, "mgc_fs", obd);
686         }
687
688         cli->cl_mgc_vfsmnt = NULL;
689         if (obd->obd_fsops)
690                 fsfilt_put_ops(obd->obd_fsops);
691
692         cfs_up(&cli->cl_mgc_sem);
693
694         RETURN(rc);
695 }
696
697 static cfs_atomic_t mgc_count = CFS_ATOMIC_INIT(0);
698 static int mgc_precleanup(struct obd_device *obd, enum obd_cleanup_stage stage)
699 {
700         int rc = 0;
701         ENTRY;
702
703         switch (stage) {
704         case OBD_CLEANUP_EARLY:
705                 break;
706         case OBD_CLEANUP_EXPORTS:
707                 if (cfs_atomic_dec_and_test(&mgc_count)) {
708                         int running;
709                         /* stop requeue thread */
710                         cfs_spin_lock(&config_list_lock);
711                         running = rq_state & RQ_RUNNING;
712                         if (running)
713                                 rq_state |= RQ_STOP;
714                         cfs_spin_unlock(&config_list_lock);
715                         if (running) {
716                                 cfs_waitq_signal(&rq_waitq);
717                                 cfs_wait_for_completion(&rq_exit);
718                         }
719                 }
720                 obd_cleanup_client_import(obd);
721                 rc = obd_llog_finish(obd, 0);
722                 if (rc != 0)
723                         CERROR("failed to cleanup llogging subsystems\n");
724                 break;
725         }
726         RETURN(rc);
727 }
728
729 static int mgc_cleanup(struct obd_device *obd)
730 {
731         struct client_obd *cli = &obd->u.cli;
732         int rc;
733         ENTRY;
734
735         LASSERT(cli->cl_mgc_vfsmnt == NULL);
736
737         /* COMPAT_146 - old config logs may have added profiles we don't
738            know about */
739         if (obd->obd_type->typ_refcnt <= 1)
740                 /* Only for the last mgc */
741                 class_del_profiles();
742
743         lprocfs_obd_cleanup(obd);
744         ptlrpcd_decref();
745
746         rc = client_obd_cleanup(obd);
747         RETURN(rc);
748 }
749
750 static int mgc_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
751 {
752         struct lprocfs_static_vars lvars;
753         int rc;
754         ENTRY;
755
756         ptlrpcd_addref();
757
758         rc = client_obd_setup(obd, lcfg);
759         if (rc)
760                 GOTO(err_decref, rc);
761
762         rc = obd_llog_init(obd, &obd->obd_olg, obd, NULL);
763         if (rc) {
764                 CERROR("failed to setup llogging subsystems\n");
765                 GOTO(err_cleanup, rc);
766         }
767
768         lprocfs_mgc_init_vars(&lvars);
769         lprocfs_obd_setup(obd, lvars.obd_vars);
770         sptlrpc_lprocfs_cliobd_attach(obd);
771
772         if (cfs_atomic_inc_return(&mgc_count) == 1) {
773                 rq_state = 0;
774                 cfs_waitq_init(&rq_waitq);
775
776                 /* start requeue thread */
777                 rc = cfs_create_thread(mgc_requeue_thread, NULL,
778                                        CFS_DAEMON_FLAGS);
779                 if (rc < 0) {
780                         CERROR("%s: Cannot start requeue thread (%d),"
781                                "no more log updates!\n",
782                                obd->obd_name, rc);
783                         GOTO(err_cleanup, rc);
784                 }
785                 /* rc is the pid of mgc_requeue_thread. */
786                 rc = 0;
787         }
788
789         RETURN(rc);
790
791 err_cleanup:
792         client_obd_cleanup(obd);
793 err_decref:
794         ptlrpcd_decref();
795         RETURN(rc);
796 }
797
798 /* based on ll_mdc_blocking_ast */
799 static int mgc_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
800                             void *data, int flag)
801 {
802         struct lustre_handle lockh;
803         struct config_llog_data *cld = (struct config_llog_data *)data;
804         int rc = 0;
805         ENTRY;
806
807         switch (flag) {
808         case LDLM_CB_BLOCKING:
809                 /* mgs wants the lock, give it up... */
810                 LDLM_DEBUG(lock, "MGC blocking CB");
811                 ldlm_lock2handle(lock, &lockh);
812                 rc = ldlm_cli_cancel(&lockh);
813                 break;
814         case LDLM_CB_CANCELING:
815                 /* We've given up the lock, prepare ourselves to update. */
816                 LDLM_DEBUG(lock, "MGC cancel CB");
817
818                 CDEBUG(D_MGC, "Lock res "LPX64" (%.8s)\n",
819                        lock->l_resource->lr_name.name[0],
820                        (char *)&lock->l_resource->lr_name.name[0]);
821
822                 if (!cld) {
823                         CDEBUG(D_INFO, "missing data, won't requeue\n");
824                         break;
825                 }
826
827                 /* held at mgc_process_log(). */
828                 LASSERT(cfs_atomic_read(&cld->cld_refcount) > 0);
829                 /* Are we done with this log? */
830                 if (cld->cld_stopping) {
831                         CDEBUG(D_MGC, "log %s: stopping, won't requeue\n",
832                                cld->cld_logname);
833                         config_log_put(cld);
834                         break;
835                 }
836                 /* Make sure not to re-enqueue when the mgc is stopping
837                    (we get called from client_disconnect_export) */
838                 if (!lock->l_conn_export ||
839                     !lock->l_conn_export->exp_obd->u.cli.cl_conn_count) {
840                         CDEBUG(D_MGC, "log %.8s: disconnecting, won't requeue\n",
841                                cld->cld_logname);
842                         config_log_put(cld);
843                         break;
844                 }
845
846                 /* Re-enqueue now */
847                 mgc_requeue_add(cld);
848                 config_log_put(cld);
849                 break;
850         default:
851                 LBUG();
852         }
853
854         RETURN(rc);
855 }
856
857 /* Not sure where this should go... */
858 #define  MGC_ENQUEUE_LIMIT 50
859 #define  MGC_TARGET_REG_LIMIT 10
860 #define  MGC_SEND_PARAM_LIMIT 10
861
862 /* Send parameter to MGS*/
863 static int mgc_set_mgs_param(struct obd_export *exp,
864                              struct mgs_send_param *msp)
865 {
866         struct ptlrpc_request *req;
867         struct mgs_send_param *req_msp, *rep_msp;
868         int rc;
869         ENTRY;
870
871         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
872                                         &RQF_MGS_SET_INFO, LUSTRE_MGS_VERSION,
873                                         MGS_SET_INFO);
874         if (!req)
875                 RETURN(-ENOMEM);
876
877         req_msp = req_capsule_client_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
878         if (!req_msp) {
879                 ptlrpc_req_finished(req);
880                 RETURN(-ENOMEM);
881         }
882
883         memcpy(req_msp, msp, sizeof(*req_msp));
884         ptlrpc_request_set_replen(req);
885
886         /* Limit how long we will wait for the enqueue to complete */
887         req->rq_delay_limit = MGC_SEND_PARAM_LIMIT;
888         rc = ptlrpc_queue_wait(req);
889         if (!rc) {
890                 rep_msp = req_capsule_server_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
891                 memcpy(msp, rep_msp, sizeof(*rep_msp));
892         }
893
894         ptlrpc_req_finished(req);
895
896         RETURN(rc);
897 }
898
899 /* Take a config lock so we can get cancel notifications */
900 static int mgc_enqueue(struct obd_export *exp, struct lov_stripe_md *lsm,
901                        __u32 type, ldlm_policy_data_t *policy, __u32 mode,
902                        int *flags, void *bl_cb, void *cp_cb, void *gl_cb,
903                        void *data, __u32 lvb_len, void *lvb_swabber,
904                        struct lustre_handle *lockh)
905 {
906         struct config_llog_data *cld = (struct config_llog_data *)data;
907         struct ldlm_enqueue_info einfo = { type, mode, mgc_blocking_ast,
908                          ldlm_completion_ast, NULL, NULL, NULL };
909         struct ptlrpc_request *req;
910         int short_limit = cld_is_sptlrpc(cld);
911         int rc;
912         ENTRY;
913
914         CDEBUG(D_MGC, "Enqueue for %s (res "LPX64")\n", cld->cld_logname,
915                cld->cld_resid.name[0]);
916
917         /* We need a callback for every lockholder, so don't try to
918            ldlm_lock_match (see rev 1.1.2.11.2.47) */
919         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
920                                         &RQF_LDLM_ENQUEUE, LUSTRE_DLM_VERSION,
921                                         LDLM_ENQUEUE);
922         if (req == NULL)
923                 RETURN(-ENOMEM);
924         ptlrpc_request_set_replen(req);
925
926         /* check if this is server or client */
927         if (cld->cld_cfg.cfg_sb) {
928                 struct lustre_sb_info *lsi = s2lsi(cld->cld_cfg.cfg_sb);
929                 if (lsi && IS_SERVER(lsi))
930                         short_limit = 1;
931         }
932         /* Limit how long we will wait for the enqueue to complete */
933         req->rq_delay_limit = short_limit ? 5 : MGC_ENQUEUE_LIMIT;
934         rc = ldlm_cli_enqueue(exp, &req, &einfo, &cld->cld_resid, NULL, flags,
935                               NULL, 0, lockh, 0);
936         /* A failed enqueue should still call the mgc_blocking_ast,
937            where it will be requeued if needed ("grant failed"). */
938         ptlrpc_req_finished(req);
939         RETURN(rc);
940 }
941
942 static int mgc_cancel(struct obd_export *exp, struct lov_stripe_md *md,
943                       __u32 mode, struct lustre_handle *lockh)
944 {
945         ENTRY;
946
947         ldlm_lock_decref(lockh, mode);
948
949         RETURN(0);
950 }
951
952 static void mgc_notify_active(struct obd_device *unused)
953 {
954         /* wakeup mgc_requeue_thread to requeue mgc lock */
955         cfs_spin_lock(&config_list_lock);
956         rq_state |= RQ_NOW;
957         cfs_spin_unlock(&config_list_lock);
958         cfs_waitq_signal(&rq_waitq);
959
960         /* TODO: Help the MGS rebuild nidtbl. -jay */
961 }
962
963 /* Send target_reg message to MGS */
964 static int mgc_target_register(struct obd_export *exp,
965                                struct mgs_target_info *mti)
966 {
967         struct ptlrpc_request  *req;
968         struct mgs_target_info *req_mti, *rep_mti;
969         int                     rc;
970         ENTRY;
971
972         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
973                                         &RQF_MGS_TARGET_REG, LUSTRE_MGS_VERSION,
974                                         MGS_TARGET_REG);
975         if (req == NULL)
976                 RETURN(-ENOMEM);
977
978         req_mti = req_capsule_client_get(&req->rq_pill, &RMF_MGS_TARGET_INFO);
979         if (!req_mti) {
980                 ptlrpc_req_finished(req);
981                 RETURN(-ENOMEM);
982         }
983
984         memcpy(req_mti, mti, sizeof(*req_mti));
985         ptlrpc_request_set_replen(req);
986         CDEBUG(D_MGC, "register %s\n", mti->mti_svname);
987         /* Limit how long we will wait for the enqueue to complete */
988         req->rq_delay_limit = MGC_TARGET_REG_LIMIT;
989
990         rc = ptlrpc_queue_wait(req);
991         if (!rc) {
992                 rep_mti = req_capsule_server_get(&req->rq_pill,
993                                                  &RMF_MGS_TARGET_INFO);
994                 memcpy(mti, rep_mti, sizeof(*rep_mti));
995                 CDEBUG(D_MGC, "register %s got index = %d\n",
996                        mti->mti_svname, mti->mti_stripe_index);
997         }
998         ptlrpc_req_finished(req);
999
1000         RETURN(rc);
1001 }
1002
1003 int mgc_set_info_async(const struct lu_env *env, struct obd_export *exp,
1004                        obd_count keylen, void *key, obd_count vallen,
1005                        void *val, struct ptlrpc_request_set *set)
1006 {
1007         int rc = -EINVAL;
1008         ENTRY;
1009
1010         /* Turn off initial_recov after we try all backup servers once */
1011         if (KEY_IS(KEY_INIT_RECOV_BACKUP)) {
1012                 struct obd_import *imp = class_exp2cliimp(exp);
1013                 int value;
1014                 if (vallen != sizeof(int))
1015                         RETURN(-EINVAL);
1016                 value = *(int *)val;
1017                 CDEBUG(D_MGC, "InitRecov %s %d/d%d:i%d:r%d:or%d:%s\n",
1018                        imp->imp_obd->obd_name, value,
1019                        imp->imp_deactive, imp->imp_invalid,
1020                        imp->imp_replayable, imp->imp_obd->obd_replayable,
1021                        ptlrpc_import_state_name(imp->imp_state));
1022                 /* Resurrect if we previously died */
1023                 if ((imp->imp_state != LUSTRE_IMP_FULL &&
1024                      imp->imp_state != LUSTRE_IMP_NEW) || value > 1)
1025                         ptlrpc_reconnect_import(imp);
1026                 RETURN(0);
1027         }
1028         /* FIXME move this to mgc_process_config */
1029         if (KEY_IS(KEY_REGISTER_TARGET)) {
1030                 struct mgs_target_info *mti;
1031                 if (vallen != sizeof(struct mgs_target_info))
1032                         RETURN(-EINVAL);
1033                 mti = (struct mgs_target_info *)val;
1034                 CDEBUG(D_MGC, "register_target %s %#x\n",
1035                        mti->mti_svname, mti->mti_flags);
1036                 rc =  mgc_target_register(exp, mti);
1037                 RETURN(rc);
1038         }
1039         if (KEY_IS(KEY_SET_FS)) {
1040                 struct super_block *sb = (struct super_block *)val;
1041                 struct lustre_sb_info *lsi;
1042                 if (vallen != sizeof(struct super_block))
1043                         RETURN(-EINVAL);
1044                 lsi = s2lsi(sb);
1045                 rc = mgc_fs_setup(exp->exp_obd, sb, lsi->lsi_srv_mnt);
1046                 if (rc) {
1047                         CERROR("set_fs got %d\n", rc);
1048                 }
1049                 RETURN(rc);
1050         }
1051         if (KEY_IS(KEY_CLEAR_FS)) {
1052                 if (vallen != 0)
1053                         RETURN(-EINVAL);
1054                 rc = mgc_fs_cleanup(exp->exp_obd);
1055                 if (rc) {
1056                         CERROR("clear_fs got %d\n", rc);
1057                 }
1058                 RETURN(rc);
1059         }
1060         if (KEY_IS(KEY_SET_INFO)) {
1061                 struct mgs_send_param *msp;
1062
1063                 msp = (struct mgs_send_param *)val;
1064                 rc =  mgc_set_mgs_param(exp, msp);
1065                 RETURN(rc);
1066         }
1067         if (KEY_IS(KEY_MGSSEC)) {
1068                 struct client_obd     *cli = &exp->exp_obd->u.cli;
1069                 struct sptlrpc_flavor  flvr;
1070
1071                 /*
1072                  * empty string means using current flavor, if which haven't
1073                  * been set yet, set it as null.
1074                  *
1075                  * if flavor has been set previously, check the asking flavor
1076                  * must match the existing one.
1077                  */
1078                 if (vallen == 0) {
1079                         if (cli->cl_flvr_mgc.sf_rpc != SPTLRPC_FLVR_INVALID)
1080                                 RETURN(0);
1081                         val = "null";
1082                         vallen = 4;
1083                 }
1084
1085                 rc = sptlrpc_parse_flavor(val, &flvr);
1086                 if (rc) {
1087                         CERROR("invalid sptlrpc flavor %s to MGS\n",
1088                                (char *) val);
1089                         RETURN(rc);
1090                 }
1091
1092                 /*
1093                  * caller already hold a mutex
1094                  */
1095                 if (cli->cl_flvr_mgc.sf_rpc == SPTLRPC_FLVR_INVALID) {
1096                         cli->cl_flvr_mgc = flvr;
1097                 } else if (memcmp(&cli->cl_flvr_mgc, &flvr,
1098                                   sizeof(flvr)) != 0) {
1099                         char    str[20];
1100
1101                         sptlrpc_flavor2name(&cli->cl_flvr_mgc,
1102                                             str, sizeof(str));
1103                         LCONSOLE_ERROR("asking sptlrpc flavor %s to MGS but "
1104                                        "currently %s is in use\n",
1105                                        (char *) val, str);
1106                         rc = -EPERM;
1107                 }
1108                 RETURN(rc);
1109         }
1110
1111         RETURN(rc);
1112 }
1113
1114 static int mgc_get_info(const struct lu_env *env, struct obd_export *exp,
1115                         __u32 keylen, void *key, __u32 *vallen, void *val,
1116                         struct lov_stripe_md *unused)
1117 {
1118         int rc = -EINVAL;
1119
1120         if (KEY_IS(KEY_CONN_DATA)) {
1121                 struct obd_import *imp = class_exp2cliimp(exp);
1122                 struct obd_connect_data *data = val;
1123
1124                 if (*vallen == sizeof(*data)) {
1125                         *data = imp->imp_connect_data;
1126                         rc = 0;
1127                 }
1128         }
1129
1130         return rc;
1131 }
1132
1133 static int mgc_import_event(struct obd_device *obd,
1134                             struct obd_import *imp,
1135                             enum obd_import_event event)
1136 {
1137         int rc = 0;
1138
1139         LASSERT(imp->imp_obd == obd);
1140         CDEBUG(D_MGC, "import event %#x\n", event);
1141
1142         switch (event) {
1143         case IMP_EVENT_DISCON:
1144                 /* MGC imports should not wait for recovery */
1145                 break;
1146         case IMP_EVENT_INACTIVE:
1147                 break;
1148         case IMP_EVENT_INVALIDATE: {
1149                 struct ldlm_namespace *ns = obd->obd_namespace;
1150                 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
1151                 break;
1152         }
1153         case IMP_EVENT_ACTIVE:
1154                 LCONSOLE_WARN("%s: Reactivating import\n", obd->obd_name);
1155                 /* Clearing obd_no_recov allows us to continue pinging */
1156                 obd->obd_no_recov = 0;
1157                 mgc_notify_active(obd);
1158                 break;
1159         case IMP_EVENT_OCD:
1160                 break;
1161         case IMP_EVENT_DEACTIVATE:
1162         case IMP_EVENT_ACTIVATE:
1163                 break;
1164         default:
1165                 CERROR("Unknown import event %#x\n", event);
1166                 LBUG();
1167         }
1168         RETURN(rc);
1169 }
1170
1171 static int mgc_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
1172                          struct obd_device *tgt, int *index)
1173 {
1174         struct llog_ctxt *ctxt;
1175         int rc;
1176         ENTRY;
1177
1178         LASSERT(olg == &obd->obd_olg);
1179
1180         rc = llog_setup(NULL, obd, olg, LLOG_CONFIG_ORIG_CTXT, tgt,
1181                         &llog_lvfs_ops);
1182         if (rc)
1183                 RETURN(rc);
1184
1185         rc = llog_setup(NULL, obd, olg, LLOG_CONFIG_REPL_CTXT, tgt,
1186                         &llog_client_ops);
1187         if (rc)
1188                 GOTO(out, rc);
1189
1190         ctxt = llog_group_get_ctxt(olg, LLOG_CONFIG_REPL_CTXT);
1191         if (!ctxt)
1192                 GOTO(out, rc = -ENODEV);
1193
1194         llog_initiator_connect(ctxt);
1195         llog_ctxt_put(ctxt);
1196
1197         RETURN(0);
1198 out:
1199         ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
1200         if (ctxt)
1201                 llog_cleanup(NULL, ctxt);
1202         RETURN(rc);
1203 }
1204
1205 static int mgc_llog_finish(struct obd_device *obd, int count)
1206 {
1207         struct llog_ctxt *ctxt;
1208
1209         ENTRY;
1210
1211         ctxt = llog_get_context(obd, LLOG_CONFIG_REPL_CTXT);
1212         if (ctxt)
1213                 llog_cleanup(NULL, ctxt);
1214
1215         ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
1216         if (ctxt)
1217                 llog_cleanup(NULL, ctxt);
1218         RETURN(0);
1219 }
1220
1221 enum {
1222         CONFIG_READ_NRPAGES_INIT = 1 << (20 - CFS_PAGE_SHIFT),
1223         CONFIG_READ_NRPAGES      = 4
1224 };
1225
1226 static int mgc_apply_recover_logs(struct obd_device *mgc,
1227                                   struct config_llog_data *cld,
1228                                   __u64 max_version,
1229                                   void *data, int datalen, bool mne_swab)
1230 {
1231         struct config_llog_instance *cfg = &cld->cld_cfg;
1232         struct lustre_sb_info       *lsi = s2lsi(cfg->cfg_sb);
1233         struct mgs_nidtbl_entry *entry;
1234         struct lustre_cfg       *lcfg;
1235         struct lustre_cfg_bufs   bufs;
1236         u64   prev_version = 0;
1237         char *inst;
1238         char *buf;
1239         int   bufsz;
1240         int   pos;
1241         int   rc  = 0;
1242         int   off = 0;
1243         ENTRY;
1244
1245         LASSERT(cfg->cfg_instance != NULL);
1246         LASSERT(cfg->cfg_sb == cfg->cfg_instance);
1247
1248         OBD_ALLOC(inst, CFS_PAGE_SIZE);
1249         if (inst == NULL)
1250                 RETURN(-ENOMEM);
1251
1252         if (!IS_SERVER(lsi)) {
1253                 pos = sprintf(inst, "%p", cfg->cfg_instance);
1254         } else {
1255                 LASSERT(IS_MDT(lsi));
1256                 rc = server_name2svname(lsi->lsi_svname, inst, NULL);
1257                 if (rc)
1258                         RETURN(-EINVAL);
1259                 pos = strlen(inst);
1260         }
1261
1262         ++pos;
1263         buf   = inst + pos;
1264         bufsz = CFS_PAGE_SIZE - pos;
1265
1266         while (datalen > 0) {
1267                 int   entry_len = sizeof(*entry);
1268                 int   is_ost;
1269                 struct obd_device *obd;
1270                 char *obdname;
1271                 char *cname;
1272                 char *params;
1273                 char *uuid;
1274
1275                 rc = -EINVAL;
1276                 if (datalen < sizeof(*entry))
1277                         break;
1278
1279                 entry = (typeof(entry))(data + off);
1280
1281                 /* sanity check */
1282                 if (entry->mne_nid_type != 0) /* only support type 0 for ipv4 */
1283                         break;
1284                 if (entry->mne_nid_count == 0) /* at least one nid entry */
1285                         break;
1286                 if (entry->mne_nid_size != sizeof(lnet_nid_t))
1287                         break;
1288
1289                 entry_len += entry->mne_nid_count * entry->mne_nid_size;
1290                 if (datalen < entry_len) /* must have entry_len at least */
1291                         break;
1292
1293                 /* Keep this swab for normal mixed endian handling. LU-1644 */
1294                 if (mne_swab)
1295                         lustre_swab_mgs_nidtbl_entry(entry);
1296                 if (entry->mne_length > CFS_PAGE_SIZE) {
1297                         CERROR("MNE too large (%u)\n", entry->mne_length);
1298                         break;
1299                 }
1300
1301                 if (entry->mne_length < entry_len)
1302                         break;
1303
1304                 off     += entry->mne_length;
1305                 datalen -= entry->mne_length;
1306                 if (datalen < 0)
1307                         break;
1308
1309                 if (entry->mne_version > max_version) {
1310                         CERROR("entry index(%lld) is over max_index(%lld)\n",
1311                                entry->mne_version, max_version);
1312                         break;
1313                 }
1314
1315                 if (prev_version >= entry->mne_version) {
1316                         CERROR("index unsorted, prev %lld, now %lld\n",
1317                                prev_version, entry->mne_version);
1318                         break;
1319                 }
1320                 prev_version = entry->mne_version;
1321
1322                 /*
1323                  * Write a string with format "nid::instance" to
1324                  * lustre/<osc|mdc>/<target>-<osc|mdc>-<instance>/import.
1325                  */
1326
1327                 is_ost = entry->mne_type == LDD_F_SV_TYPE_OST;
1328                 memset(buf, 0, bufsz);
1329                 obdname = buf;
1330                 pos = 0;
1331
1332                 /* lustre-OST0001-osc-<instance #> */
1333                 strcpy(obdname, cld->cld_logname);
1334                 cname = strrchr(obdname, '-');
1335                 if (cname == NULL) {
1336                         CERROR("mgc %s: invalid logname %s\n",
1337                                mgc->obd_name, obdname);
1338                         break;
1339                 }
1340
1341                 pos = cname - obdname;
1342                 obdname[pos] = 0;
1343                 pos += sprintf(obdname + pos, "-%s%04x",
1344                                   is_ost ? "OST" : "MDT", entry->mne_index);
1345
1346                 cname = is_ost ? "osc" : "mdc",
1347                 pos += sprintf(obdname + pos, "-%s-%s", cname, inst);
1348                 lustre_cfg_bufs_reset(&bufs, obdname);
1349
1350                 /* find the obd by obdname */
1351                 obd = class_name2obd(obdname);
1352                 if (obd == NULL) {
1353                         CDEBUG(D_INFO, "mgc %s: cannot find obdname %s\n",
1354                                mgc->obd_name, obdname);
1355                         rc = 0;
1356                         /* this is a safe race, when the ost is starting up...*/
1357                         continue;
1358                 }
1359
1360                 /* osc.import = "connection=<Conn UUID>::<target instance>" */
1361                 ++pos;
1362                 params = buf + pos;
1363                 pos += sprintf(params, "%s.import=%s", cname, "connection=");
1364                 uuid = buf + pos;
1365
1366                 /* TODO: iterate all nids to find one */
1367                 /* find uuid by nid */
1368                 rc = client_import_find_conn(obd->u.cli.cl_import,
1369                                              entry->u.nids[0],
1370                                              (struct obd_uuid *)uuid);
1371                 if (rc < 0) {
1372                         CERROR("mgc: cannot find uuid by nid %s\n",
1373                                libcfs_nid2str(entry->u.nids[0]));
1374                         break;
1375                 }
1376
1377                 CDEBUG(D_INFO, "Find uuid %s by nid %s\n",
1378                        uuid, libcfs_nid2str(entry->u.nids[0]));
1379
1380                 pos += strlen(uuid);
1381                 pos += sprintf(buf + pos, "::%u", entry->mne_instance);
1382                 LASSERT(pos < bufsz);
1383
1384                 lustre_cfg_bufs_set_string(&bufs, 1, params);
1385
1386                 rc = -ENOMEM;
1387                 lcfg = lustre_cfg_new(LCFG_PARAM, &bufs);
1388                 if (lcfg == NULL) {
1389                         CERROR("mgc: cannot allocate memory\n");
1390                         break;
1391                 }
1392
1393                 CDEBUG(D_INFO, "ir apply logs "LPD64"/"LPD64" for %s -> %s\n",
1394                        prev_version, max_version, obdname, params);
1395
1396                 rc = class_process_config(lcfg);
1397                 lustre_cfg_free(lcfg);
1398                 if (rc)
1399                         CDEBUG(D_INFO, "process config for %s error %d\n",
1400                                obdname, rc);
1401
1402                 /* continue, even one with error */
1403         }
1404
1405         OBD_FREE(inst, CFS_PAGE_SIZE);
1406         RETURN(rc);
1407 }
1408
1409 /**
1410  * This function is called if this client was notified for target restarting
1411  * by the MGS. A CONFIG_READ RPC is going to send to fetch recovery logs.
1412  */
1413 static int mgc_process_recover_log(struct obd_device *obd,
1414                                    struct config_llog_data *cld)
1415 {
1416         struct ptlrpc_request *req = NULL;
1417         struct config_llog_instance *cfg = &cld->cld_cfg;
1418         struct mgs_config_body *body;
1419         struct mgs_config_res  *res;
1420         struct ptlrpc_bulk_desc *desc;
1421         cfs_page_t **pages;
1422         int nrpages;
1423         bool eof = true;
1424         bool mne_swab = false;
1425         int i;
1426         int ealen;
1427         int rc;
1428         ENTRY;
1429
1430         /* allocate buffer for bulk transfer.
1431          * if this is the first time for this mgs to read logs,
1432          * CONFIG_READ_NRPAGES_INIT will be used since it will read all logs
1433          * once; otherwise, it only reads increment of logs, this should be
1434          * small and CONFIG_READ_NRPAGES will be used.
1435          */
1436         nrpages = CONFIG_READ_NRPAGES;
1437         if (cfg->cfg_last_idx == 0) /* the first time */
1438                 nrpages = CONFIG_READ_NRPAGES_INIT;
1439
1440         OBD_ALLOC(pages, sizeof(*pages) * nrpages);
1441         if (pages == NULL)
1442                 GOTO(out, rc = -ENOMEM);
1443
1444         for (i = 0; i < nrpages; i++) {
1445                 pages[i] = cfs_alloc_page(CFS_ALLOC_STD);
1446                 if (pages[i] == NULL)
1447                         GOTO(out, rc = -ENOMEM);
1448         }
1449
1450 again:
1451         LASSERT(cld_is_recover(cld));
1452         LASSERT(cfs_mutex_is_locked(&cld->cld_lock));
1453         req = ptlrpc_request_alloc(class_exp2cliimp(cld->cld_mgcexp),
1454                                    &RQF_MGS_CONFIG_READ);
1455         if (req == NULL)
1456                 GOTO(out, rc = -ENOMEM);
1457
1458         rc = ptlrpc_request_pack(req, LUSTRE_MGS_VERSION, MGS_CONFIG_READ);
1459         if (rc)
1460                 GOTO(out, rc);
1461
1462         /* pack request */
1463         body = req_capsule_client_get(&req->rq_pill, &RMF_MGS_CONFIG_BODY);
1464         LASSERT(body != NULL);
1465         LASSERT(sizeof(body->mcb_name) > strlen(cld->cld_logname));
1466         strncpy(body->mcb_name, cld->cld_logname, sizeof(body->mcb_name));
1467         body->mcb_offset = cfg->cfg_last_idx + 1;
1468         body->mcb_type   = cld->cld_type;
1469         body->mcb_bits   = CFS_PAGE_SHIFT;
1470         body->mcb_units  = nrpages;
1471
1472         /* allocate bulk transfer descriptor */
1473         desc = ptlrpc_prep_bulk_imp(req, nrpages, BULK_PUT_SINK,
1474                                     MGS_BULK_PORTAL);
1475         if (desc == NULL)
1476                 GOTO(out, rc = -ENOMEM);
1477
1478         for (i = 0; i < nrpages; i++)
1479                 ptlrpc_prep_bulk_page(desc, pages[i], 0, CFS_PAGE_SIZE);
1480
1481         ptlrpc_request_set_replen(req);
1482         rc = ptlrpc_queue_wait(req);
1483         if (rc)
1484                 GOTO(out, rc);
1485
1486         res = req_capsule_server_get(&req->rq_pill, &RMF_MGS_CONFIG_RES);
1487         if (res->mcr_size < res->mcr_offset)
1488                 GOTO(out, rc = -EINVAL);
1489
1490         /* always update the index even though it might have errors with
1491          * handling the recover logs */
1492         cfg->cfg_last_idx = res->mcr_offset;
1493         eof = res->mcr_offset == res->mcr_size;
1494
1495         CDEBUG(D_INFO, "Latest version "LPD64", more %d.\n",
1496                res->mcr_offset, eof == false);
1497
1498         ealen = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk, 0);
1499         if (ealen < 0)
1500                 GOTO(out, rc = ealen);
1501
1502         if (ealen > nrpages << CFS_PAGE_SHIFT)
1503                 GOTO(out, rc = -EINVAL);
1504
1505         if (ealen == 0) { /* no logs transferred */
1506                 if (!eof)
1507                         rc = -EINVAL;
1508                 GOTO(out, rc);
1509         }
1510
1511         mne_swab = !!ptlrpc_rep_need_swab(req);
1512 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 2, 50, 0)
1513         /* This import flag means the server did an extra swab of IR MNE
1514          * records (fixed in LU-1252), reverse it here if needed. LU-1644 */
1515         if (unlikely(req->rq_import->imp_need_mne_swab))
1516                 mne_swab = !mne_swab;
1517 #else
1518 #warning "LU-1644: Remove old OBD_CONNECT_MNE_SWAB fixup and imp_need_mne_swab"
1519 #endif
1520
1521         for (i = 0; i < nrpages && ealen > 0; i++) {
1522                 int rc2;
1523                 void *ptr;
1524
1525                 ptr = cfs_kmap(pages[i]);
1526                 rc2 = mgc_apply_recover_logs(obd, cld, res->mcr_offset, ptr,
1527                                              min_t(int, ealen, CFS_PAGE_SIZE),
1528                                              mne_swab);
1529                 cfs_kunmap(pages[i]);
1530                 if (rc2 < 0) {
1531                         CWARN("Process recover log %s error %d\n",
1532                               cld->cld_logname, rc2);
1533                         break;
1534                 }
1535
1536                 ealen -= CFS_PAGE_SIZE;
1537         }
1538
1539 out:
1540         if (req)
1541                 ptlrpc_req_finished(req);
1542
1543         if (rc == 0 && !eof)
1544                 goto again;
1545
1546         if (pages) {
1547                 for (i = 0; i < nrpages; i++) {
1548                         if (pages[i] == NULL)
1549                                 break;
1550                         cfs_free_page(pages[i]);
1551                 }
1552                 OBD_FREE(pages, sizeof(*pages) * nrpages);
1553         }
1554         return rc;
1555 }
1556
1557 /* identical to mgs_log_is_empty */
1558 static int mgc_llog_is_empty(struct obd_device *obd, struct llog_ctxt *ctxt,
1559                              char *name)
1560 {
1561         struct lvfs_run_ctxt     saved;
1562         struct llog_handle      *llh;
1563         int                      rc = 0;
1564
1565         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1566         rc = llog_open(NULL, ctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
1567         if (rc == 0) {
1568                 llog_init_handle(NULL, llh, LLOG_F_IS_PLAIN, NULL);
1569                 rc = llog_get_size(llh);
1570                 llog_close(NULL, llh);
1571         } else if (rc == -ENOENT) {
1572                 rc = 0;
1573         }
1574         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1575         /* header is record 1 */
1576         return (rc <= 1);
1577 }
1578
1579 static int mgc_copy_handler(const struct lu_env *env, struct llog_handle *llh,
1580                             struct llog_rec_hdr *rec, void *data)
1581 {
1582         struct llog_rec_hdr local_rec = *rec;
1583         struct llog_handle *local_llh = (struct llog_handle *)data;
1584         char *cfg_buf = (char*) (rec + 1);
1585         struct lustre_cfg *lcfg;
1586         int rc = 0;
1587         ENTRY;
1588
1589         /* Append all records */
1590         local_rec.lrh_len -= sizeof(*rec) + sizeof(struct llog_rec_tail);
1591         rc = llog_write(env, local_llh, &local_rec, NULL, 0,
1592                         (void *)cfg_buf, -1);
1593
1594         lcfg = (struct lustre_cfg *)cfg_buf;
1595         CDEBUG(D_INFO, "idx=%d, rc=%d, len=%d, cmd %x %s %s\n",
1596                rec->lrh_index, rc, rec->lrh_len, lcfg->lcfg_command,
1597                lustre_cfg_string(lcfg, 0), lustre_cfg_string(lcfg, 1));
1598
1599         RETURN(rc);
1600 }
1601
1602 /* Copy a remote log locally */
1603 static int mgc_copy_llog(struct obd_device *obd, struct llog_ctxt *rctxt,
1604                          struct llog_ctxt *lctxt, char *logname)
1605 {
1606         struct llog_handle *local_llh, *remote_llh;
1607         struct obd_uuid *uuid;
1608         char *temp_log;
1609         int rc, rc2;
1610         ENTRY;
1611
1612         /* Write new log to a temp name, then vfs_rename over logname
1613            upon successful completion. */
1614
1615         OBD_ALLOC(temp_log, strlen(logname) + 1);
1616         if (!temp_log)
1617                 RETURN(-ENOMEM);
1618         sprintf(temp_log, "%sT", logname);
1619
1620         /* Make sure there's no old temp log */
1621         rc = llog_erase(NULL, lctxt, NULL, temp_log);
1622         if (rc < 0 && rc != -ENOENT)
1623                 GOTO(out, rc);
1624
1625         /* open local log */
1626         rc = llog_open_create(NULL, lctxt, &local_llh, NULL, temp_log);
1627         if (rc)
1628                 GOTO(out, rc);
1629
1630         /* set the log header uuid for fun */
1631         OBD_ALLOC_PTR(uuid);
1632         obd_str2uuid(uuid, logname);
1633         rc = llog_init_handle(NULL, local_llh, LLOG_F_IS_PLAIN, uuid);
1634         OBD_FREE_PTR(uuid);
1635         if (rc)
1636                 GOTO(out_closel, rc);
1637
1638         /* open remote log */
1639         rc = llog_open(NULL, rctxt, &remote_llh, NULL, logname,
1640                        LLOG_OPEN_EXISTS);
1641         if (rc < 0) {
1642                 if (rc == -ENOENT)
1643                         rc = 0;
1644                 GOTO(out_closel, rc);
1645         }
1646
1647         rc = llog_init_handle(NULL, remote_llh, LLOG_F_IS_PLAIN, NULL);
1648         if (rc)
1649                 GOTO(out_closer, rc);
1650
1651         /* Copy remote log */
1652         rc = llog_process(NULL, remote_llh, mgc_copy_handler,
1653                           (void *)local_llh, NULL);
1654
1655 out_closer:
1656         rc2 = llog_close(NULL, remote_llh);
1657         if (!rc)
1658                 rc = rc2;
1659 out_closel:
1660         rc2 = llog_close(NULL, local_llh);
1661         if (!rc)
1662                 rc = rc2;
1663
1664         /* We've copied the remote log to the local temp log, now
1665            replace the old local log with the temp log. */
1666         if (rc == 0) {
1667                 struct client_obd *cli = &obd->u.cli;
1668
1669                 LASSERT(cli);
1670                 LASSERT(cli->cl_mgc_configs_dir);
1671                 rc = lustre_rename(cli->cl_mgc_configs_dir, cli->cl_mgc_vfsmnt,
1672                                    temp_log, logname);
1673         }
1674         CDEBUG(D_MGC, "Copied remote log %s (%d)\n", logname, rc);
1675 out:
1676         if (rc)
1677                 CERROR("Failed to copy remote log %s (%d)\n", logname, rc);
1678         OBD_FREE(temp_log, strlen(logname) + 1);
1679         RETURN(rc);
1680 }
1681
1682 /* local_only means it cannot get remote llogs */
1683 static int mgc_process_cfg_log(struct obd_device *mgc,
1684                                struct config_llog_data *cld,
1685                                int local_only)
1686 {
1687         struct llog_ctxt *ctxt, *lctxt = NULL;
1688         struct client_obd *cli = &mgc->u.cli;
1689         struct lvfs_run_ctxt *saved_ctxt;
1690         struct lustre_sb_info *lsi = NULL;
1691         int rc = 0, must_pop = 0;
1692         bool sptlrpc_started = false;
1693
1694         ENTRY;
1695
1696         LASSERT(cld);
1697         LASSERT(cfs_mutex_is_locked(&cld->cld_lock));
1698
1699         /*
1700          * local copy of sptlrpc log is controlled elsewhere, don't try to
1701          * read it up here.
1702          */
1703         if (cld_is_sptlrpc(cld) && local_only)
1704                 RETURN(0);
1705
1706         if (cld->cld_cfg.cfg_sb)
1707                 lsi = s2lsi(cld->cld_cfg.cfg_sb);
1708
1709         ctxt = llog_get_context(mgc, LLOG_CONFIG_REPL_CTXT);
1710         if (!ctxt) {
1711                 CERROR("missing llog context\n");
1712                 RETURN(-EINVAL);
1713         }
1714
1715         OBD_ALLOC_PTR(saved_ctxt);
1716         if (saved_ctxt == NULL)
1717                 RETURN(-ENOMEM);
1718
1719         lctxt = llog_get_context(mgc, LLOG_CONFIG_ORIG_CTXT);
1720
1721         /* Copy the setup log locally if we can. Don't mess around if we're
1722            running an MGS though (logs are already local). */
1723         if (lctxt && lsi && IS_SERVER(lsi) &&
1724             (lsi->lsi_srv_mnt == cli->cl_mgc_vfsmnt) &&
1725             !IS_MGS(lsi) && lsi->lsi_srv_mnt) {
1726                 push_ctxt(saved_ctxt, &mgc->obd_lvfs_ctxt, NULL);
1727                 must_pop++;
1728                 if (!local_only)
1729                         /* Only try to copy log if we have the lock. */
1730                         rc = mgc_copy_llog(mgc, ctxt, lctxt, cld->cld_logname);
1731                 if (local_only || rc) {
1732                         if (mgc_llog_is_empty(mgc, lctxt, cld->cld_logname)) {
1733                                 LCONSOLE_ERROR_MSG(0x13a, "Failed to get MGS "
1734                                                    "log %s and no local copy."
1735                                                    "\n", cld->cld_logname);
1736                                 GOTO(out_pop, rc = -ENOTCONN);
1737                         }
1738                         CDEBUG(D_MGC, "Failed to get MGS log %s, using local "
1739                                "copy for now, will try to update later.\n",
1740                                cld->cld_logname);
1741                 }
1742                 /* Now, whether we copied or not, start using the local llog.
1743                    If we failed to copy, we'll start using whatever the old
1744                    log has. */
1745                 llog_ctxt_put(ctxt);
1746                 ctxt = lctxt;
1747                 lctxt = NULL;
1748         } else if (local_only) { /* no local log at client side */
1749                 GOTO(out_pop, rc = -EIO);
1750         }
1751
1752         if (cld_is_sptlrpc(cld)) {
1753                 sptlrpc_conf_log_update_begin(cld->cld_logname);
1754                 sptlrpc_started = true;
1755         }
1756
1757         /* logname and instance info should be the same, so use our
1758            copy of the instance for the update.  The cfg_last_idx will
1759            be updated here. */
1760         rc = class_config_parse_llog(ctxt, cld->cld_logname, &cld->cld_cfg);
1761         EXIT;
1762
1763 out_pop:
1764         llog_ctxt_put(ctxt);
1765         if (lctxt)
1766                 llog_ctxt_put(lctxt);
1767         if (must_pop)
1768                 pop_ctxt(saved_ctxt, &mgc->obd_lvfs_ctxt, NULL);
1769
1770         OBD_FREE_PTR(saved_ctxt);
1771         /*
1772          * update settings on existing OBDs. doing it inside
1773          * of llog_process_lock so no device is attaching/detaching
1774          * in parallel.
1775          * the logname must be <fsname>-sptlrpc
1776          */
1777         if (sptlrpc_started) {
1778                 LASSERT(cld_is_sptlrpc(cld));
1779                 sptlrpc_conf_log_update_end(cld->cld_logname);
1780                 class_notify_sptlrpc_conf(cld->cld_logname,
1781                                           strlen(cld->cld_logname) -
1782                                           strlen("-sptlrpc"));
1783         }
1784
1785         RETURN(rc);
1786 }
1787
1788 /** Get a config log from the MGS and process it.
1789  * This func is called for both clients and servers.
1790  * Copy the log locally before parsing it if appropriate (non-MGS server)
1791  */
1792 int mgc_process_log(struct obd_device *mgc, struct config_llog_data *cld)
1793 {
1794         struct lustre_handle lockh = { 0 };
1795         int rc = 0, rcl, flags = LDLM_FL_NO_LRU;
1796         ENTRY;
1797
1798         LASSERT(cld);
1799
1800         /* I don't want multiple processes running process_log at once --
1801            sounds like badness.  It actually might be fine, as long as
1802            we're not trying to update from the same log
1803            simultaneously (in which case we should use a per-log sem.) */
1804         cfs_mutex_lock(&cld->cld_lock);
1805         if (cld->cld_stopping) {
1806                 cfs_mutex_unlock(&cld->cld_lock);
1807                 RETURN(0);
1808         }
1809
1810         OBD_FAIL_TIMEOUT(OBD_FAIL_MGC_PAUSE_PROCESS_LOG, 20);
1811
1812         CDEBUG(D_MGC, "Process log %s:%p from %d\n", cld->cld_logname,
1813                cld->cld_cfg.cfg_instance, cld->cld_cfg.cfg_last_idx + 1);
1814
1815         /* Get the cfg lock on the llog */
1816         rcl = mgc_enqueue(mgc->u.cli.cl_mgc_mgsexp, NULL, LDLM_PLAIN, NULL,
1817                           LCK_CR, &flags, NULL, NULL, NULL,
1818                           cld, 0, NULL, &lockh);
1819         if (rcl == 0) {
1820                 /* Get the cld, it will be released in mgc_blocking_ast. */
1821                 config_log_get(cld);
1822                 rc = ldlm_lock_set_data(&lockh, (void *)cld);
1823                 LASSERT(rc == 0);
1824         } else {
1825                 CDEBUG(D_MGC, "Can't get cfg lock: %d\n", rcl);
1826
1827                 /* mark cld_lostlock so that it will requeue
1828                  * after MGC becomes available. */
1829                 cld->cld_lostlock = 1;
1830                 /* Get extra reference, it will be put in requeue thread */
1831                 config_log_get(cld);
1832         }
1833
1834
1835         if (cld_is_recover(cld)) {
1836                 rc = 0; /* this is not a fatal error for recover log */
1837                 if (rcl == 0)
1838                         rc = mgc_process_recover_log(mgc, cld);
1839         } else {
1840                 rc = mgc_process_cfg_log(mgc, cld, rcl != 0);
1841         }
1842
1843         CDEBUG(D_MGC, "%s: configuration from log '%s' %sed (%d).\n",
1844                mgc->obd_name, cld->cld_logname, rc ? "fail" : "succeed", rc);
1845
1846         cfs_mutex_unlock(&cld->cld_lock);
1847
1848         /* Now drop the lock so MGS can revoke it */
1849         if (!rcl) {
1850                 rcl = mgc_cancel(mgc->u.cli.cl_mgc_mgsexp, NULL,
1851                                  LCK_CR, &lockh);
1852                 if (rcl)
1853                         CERROR("Can't drop cfg lock: %d\n", rcl);
1854         }
1855
1856         RETURN(rc);
1857 }
1858
1859
1860 /** Called from lustre_process_log.
1861  * LCFG_LOG_START gets the config log from the MGS, processes it to start
1862  * any services, and adds it to the list logs to watch (follow).
1863  */
1864 static int mgc_process_config(struct obd_device *obd, obd_count len, void *buf)
1865 {
1866         struct lustre_cfg *lcfg = buf;
1867         struct config_llog_instance *cfg = NULL;
1868         char *logname;
1869         int rc = 0;
1870         ENTRY;
1871
1872         switch(lcfg->lcfg_command) {
1873         case LCFG_LOV_ADD_OBD: {
1874                 /* Overloading this cfg command: register a new target */
1875                 struct mgs_target_info *mti;
1876
1877                 if (LUSTRE_CFG_BUFLEN(lcfg, 1) !=
1878                     sizeof(struct mgs_target_info))
1879                         GOTO(out, rc = -EINVAL);
1880
1881                 mti = (struct mgs_target_info *)lustre_cfg_buf(lcfg, 1);
1882                 CDEBUG(D_MGC, "add_target %s %#x\n",
1883                        mti->mti_svname, mti->mti_flags);
1884                 rc = mgc_target_register(obd->u.cli.cl_mgc_mgsexp, mti);
1885                 break;
1886         }
1887         case LCFG_LOV_DEL_OBD:
1888                 /* Unregister has no meaning at the moment. */
1889                 CERROR("lov_del_obd unimplemented\n");
1890                 rc = -ENOSYS;
1891                 break;
1892         case LCFG_SPTLRPC_CONF: {
1893                 rc = sptlrpc_process_config(lcfg);
1894                 break;
1895         }
1896         case LCFG_LOG_START: {
1897                 struct config_llog_data *cld;
1898                 struct super_block *sb;
1899
1900                 logname = lustre_cfg_string(lcfg, 1);
1901                 cfg = (struct config_llog_instance *)lustre_cfg_buf(lcfg, 2);
1902                 sb = *(struct super_block **)lustre_cfg_buf(lcfg, 3);
1903
1904                 CDEBUG(D_MGC, "parse_log %s from %d\n", logname,
1905                        cfg->cfg_last_idx);
1906
1907                 /* We're only called through here on the initial mount */
1908                 rc = config_log_add(obd, logname, cfg, sb);
1909                 if (rc)
1910                         break;
1911                 cld = config_log_find(logname, cfg);
1912                 if (cld == NULL) {
1913                         rc = -ENOENT;
1914                         break;
1915                 }
1916
1917                 /* COMPAT_146 */
1918                 /* FIXME only set this for old logs!  Right now this forces
1919                    us to always skip the "inside markers" check */
1920                 cld->cld_cfg.cfg_flags |= CFG_F_COMPAT146;
1921
1922                 rc = mgc_process_log(obd, cld);
1923                 if (rc == 0 && cld->cld_recover != NULL) {
1924                         if (OCD_HAS_FLAG(&obd->u.cli.cl_import->
1925                                          imp_connect_data, IMP_RECOV)) {
1926                                 rc = mgc_process_log(obd, cld->cld_recover);
1927                         } else {
1928                                 struct config_llog_data *cir = cld->cld_recover;
1929                                 cld->cld_recover = NULL;
1930                                 config_log_put(cir);
1931                         }
1932                         if (rc)
1933                                 CERROR("Cannot process recover llog %d\n", rc);
1934                 }
1935                 config_log_put(cld);
1936
1937                 break;
1938         }
1939         case LCFG_LOG_END: {
1940                 logname = lustre_cfg_string(lcfg, 1);
1941
1942                 if (lcfg->lcfg_bufcount >= 2)
1943                         cfg = (struct config_llog_instance *)lustre_cfg_buf(
1944                                 lcfg, 2);
1945                 rc = config_log_end(logname, cfg);
1946                 break;
1947         }
1948         default: {
1949                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
1950                 GOTO(out, rc = -EINVAL);
1951
1952         }
1953         }
1954 out:
1955         RETURN(rc);
1956 }
1957
1958 struct obd_ops mgc_obd_ops = {
1959         .o_owner        = THIS_MODULE,
1960         .o_setup        = mgc_setup,
1961         .o_precleanup   = mgc_precleanup,
1962         .o_cleanup      = mgc_cleanup,
1963         .o_add_conn     = client_import_add_conn,
1964         .o_del_conn     = client_import_del_conn,
1965         .o_connect      = client_connect_import,
1966         .o_disconnect   = client_disconnect_export,
1967         //.o_enqueue      = mgc_enqueue,
1968         .o_cancel       = mgc_cancel,
1969         //.o_iocontrol    = mgc_iocontrol,
1970         .o_set_info_async = mgc_set_info_async,
1971         .o_get_info       = mgc_get_info,
1972         .o_import_event = mgc_import_event,
1973         .o_llog_init    = mgc_llog_init,
1974         .o_llog_finish  = mgc_llog_finish,
1975         .o_process_config = mgc_process_config,
1976 };
1977
1978 int __init mgc_init(void)
1979 {
1980         return class_register_type(&mgc_obd_ops, NULL, NULL,
1981                                    LUSTRE_MGC_NAME, NULL);
1982 }
1983
1984 #ifdef __KERNEL__
1985 static void /*__exit*/ mgc_exit(void)
1986 {
1987         class_unregister_type(LUSTRE_MGC_NAME);
1988 }
1989
1990 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1991 MODULE_DESCRIPTION("Lustre Management Client");
1992 MODULE_LICENSE("GPL");
1993
1994 module_init(mgc_init);
1995 module_exit(mgc_exit);
1996 #endif