Whamcloud - gitweb
94fe3bd5197b172faa0d9bcf967bb7b6c248f28d
[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(obd, olg, LLOG_CONFIG_ORIG_CTXT, tgt, 0, NULL,
1181                         &llog_lvfs_ops);
1182         if (rc)
1183                 RETURN(rc);
1184
1185         rc = llog_setup(obd, olg, LLOG_CONFIG_REPL_CTXT, tgt, 0, NULL,
1186                         &llog_client_ops);
1187         if (rc == 0) {
1188                 ctxt = llog_get_context(obd, LLOG_CONFIG_REPL_CTXT);
1189                 if (!ctxt) {
1190                         ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
1191                         if (ctxt)
1192                                 llog_cleanup(ctxt);
1193                         RETURN(-ENODEV);
1194                 }
1195                 llog_initiator_connect(ctxt);
1196                 llog_ctxt_put(ctxt);
1197         } else {
1198                 ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
1199                 if (ctxt)
1200                         llog_cleanup(ctxt);
1201         }
1202
1203         RETURN(rc);
1204 }
1205
1206 static int mgc_llog_finish(struct obd_device *obd, int count)
1207 {
1208         struct llog_ctxt *ctxt;
1209         int rc = 0, rc2 = 0;
1210         ENTRY;
1211
1212         ctxt = llog_get_context(obd, LLOG_CONFIG_REPL_CTXT);
1213         if (ctxt)
1214                 rc = llog_cleanup(ctxt);
1215
1216         ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
1217         if (ctxt)
1218                 rc2 = llog_cleanup(ctxt);
1219
1220         if (!rc)
1221                 rc = rc2;
1222
1223         RETURN(rc);
1224 }
1225
1226 enum {
1227         CONFIG_READ_NRPAGES_INIT = 1 << (20 - CFS_PAGE_SHIFT),
1228         CONFIG_READ_NRPAGES      = 4
1229 };
1230
1231 static int mgc_apply_recover_logs(struct obd_device *mgc,
1232                                   struct config_llog_data *cld,
1233                                   __u64 max_version,
1234                                   void *data, int datalen, bool mne_swab)
1235 {
1236         struct config_llog_instance *cfg = &cld->cld_cfg;
1237         struct lustre_sb_info       *lsi = s2lsi(cfg->cfg_sb);
1238         struct mgs_nidtbl_entry *entry;
1239         struct lustre_cfg       *lcfg;
1240         struct lustre_cfg_bufs   bufs;
1241         u64   prev_version = 0;
1242         char *inst;
1243         char *buf;
1244         int   bufsz;
1245         int   pos;
1246         int   rc  = 0;
1247         int   off = 0;
1248         ENTRY;
1249
1250         LASSERT(cfg->cfg_instance != NULL);
1251         LASSERT(cfg->cfg_sb == cfg->cfg_instance);
1252
1253         OBD_ALLOC(inst, CFS_PAGE_SIZE);
1254         if (inst == NULL)
1255                 RETURN(-ENOMEM);
1256
1257         if (!IS_SERVER(lsi)) {
1258                 pos = sprintf(inst, "%p", cfg->cfg_instance);
1259         } else {
1260                 LASSERT(IS_MDT(lsi));
1261                 rc = server_name2svname(lsi->lsi_svname, inst, NULL);
1262                 if (rc)
1263                         RETURN(-EINVAL);
1264                 pos = strlen(inst);
1265         }
1266
1267         ++pos;
1268         buf   = inst + pos;
1269         bufsz = CFS_PAGE_SIZE - pos;
1270
1271         while (datalen > 0) {
1272                 int   entry_len = sizeof(*entry);
1273                 int   is_ost;
1274                 struct obd_device *obd;
1275                 char *obdname;
1276                 char *cname;
1277                 char *params;
1278                 char *uuid;
1279
1280                 rc = -EINVAL;
1281                 if (datalen < sizeof(*entry))
1282                         break;
1283
1284                 entry = (typeof(entry))(data + off);
1285
1286                 /* sanity check */
1287                 if (entry->mne_nid_type != 0) /* only support type 0 for ipv4 */
1288                         break;
1289                 if (entry->mne_nid_count == 0) /* at least one nid entry */
1290                         break;
1291                 if (entry->mne_nid_size != sizeof(lnet_nid_t))
1292                         break;
1293
1294                 entry_len += entry->mne_nid_count * entry->mne_nid_size;
1295                 if (datalen < entry_len) /* must have entry_len at least */
1296                         break;
1297
1298                 /* Keep this swab for normal mixed endian handling. LU-1644 */
1299                 if (mne_swab)
1300                         lustre_swab_mgs_nidtbl_entry(entry);
1301                 if (entry->mne_length > CFS_PAGE_SIZE) {
1302                         CERROR("MNE too large (%u)\n", entry->mne_length);
1303                         break;
1304                 }
1305
1306                 if (entry->mne_length < entry_len)
1307                         break;
1308
1309                 off     += entry->mne_length;
1310                 datalen -= entry->mne_length;
1311                 if (datalen < 0)
1312                         break;
1313
1314                 if (entry->mne_version > max_version) {
1315                         CERROR("entry index(%lld) is over max_index(%lld)\n",
1316                                entry->mne_version, max_version);
1317                         break;
1318                 }
1319
1320                 if (prev_version >= entry->mne_version) {
1321                         CERROR("index unsorted, prev %lld, now %lld\n",
1322                                prev_version, entry->mne_version);
1323                         break;
1324                 }
1325                 prev_version = entry->mne_version;
1326
1327                 /*
1328                  * Write a string with format "nid::instance" to
1329                  * lustre/<osc|mdc>/<target>-<osc|mdc>-<instance>/import.
1330                  */
1331
1332                 is_ost = entry->mne_type == LDD_F_SV_TYPE_OST;
1333                 memset(buf, 0, bufsz);
1334                 obdname = buf;
1335                 pos = 0;
1336
1337                 /* lustre-OST0001-osc-<instance #> */
1338                 strcpy(obdname, cld->cld_logname);
1339                 cname = strrchr(obdname, '-');
1340                 if (cname == NULL) {
1341                         CERROR("mgc %s: invalid logname %s\n",
1342                                mgc->obd_name, obdname);
1343                         break;
1344                 }
1345
1346                 pos = cname - obdname;
1347                 obdname[pos] = 0;
1348                 pos += sprintf(obdname + pos, "-%s%04x",
1349                                   is_ost ? "OST" : "MDT", entry->mne_index);
1350
1351                 cname = is_ost ? "osc" : "mdc",
1352                 pos += sprintf(obdname + pos, "-%s-%s", cname, inst);
1353                 lustre_cfg_bufs_reset(&bufs, obdname);
1354
1355                 /* find the obd by obdname */
1356                 obd = class_name2obd(obdname);
1357                 if (obd == NULL) {
1358                         CDEBUG(D_INFO, "mgc %s: cannot find obdname %s\n",
1359                                mgc->obd_name, obdname);
1360                         rc = 0;
1361                         /* this is a safe race, when the ost is starting up...*/
1362                         continue;
1363                 }
1364
1365                 /* osc.import = "connection=<Conn UUID>::<target instance>" */
1366                 ++pos;
1367                 params = buf + pos;
1368                 pos += sprintf(params, "%s.import=%s", cname, "connection=");
1369                 uuid = buf + pos;
1370
1371                 /* TODO: iterate all nids to find one */
1372                 /* find uuid by nid */
1373                 rc = client_import_find_conn(obd->u.cli.cl_import,
1374                                              entry->u.nids[0],
1375                                              (struct obd_uuid *)uuid);
1376                 if (rc < 0) {
1377                         CERROR("mgc: cannot find uuid by nid %s\n",
1378                                libcfs_nid2str(entry->u.nids[0]));
1379                         break;
1380                 }
1381
1382                 CDEBUG(D_INFO, "Find uuid %s by nid %s\n",
1383                        uuid, libcfs_nid2str(entry->u.nids[0]));
1384
1385                 pos += strlen(uuid);
1386                 pos += sprintf(buf + pos, "::%u", entry->mne_instance);
1387                 LASSERT(pos < bufsz);
1388
1389                 lustre_cfg_bufs_set_string(&bufs, 1, params);
1390
1391                 rc = -ENOMEM;
1392                 lcfg = lustre_cfg_new(LCFG_PARAM, &bufs);
1393                 if (lcfg == NULL) {
1394                         CERROR("mgc: cannot allocate memory\n");
1395                         break;
1396                 }
1397
1398                 CDEBUG(D_INFO, "ir apply logs "LPD64"/"LPD64" for %s -> %s\n",
1399                        prev_version, max_version, obdname, params);
1400
1401                 rc = class_process_config(lcfg);
1402                 lustre_cfg_free(lcfg);
1403                 if (rc)
1404                         CDEBUG(D_INFO, "process config for %s error %d\n",
1405                                obdname, rc);
1406
1407                 /* continue, even one with error */
1408         }
1409
1410         OBD_FREE(inst, CFS_PAGE_SIZE);
1411         RETURN(rc);
1412 }
1413
1414 /**
1415  * This function is called if this client was notified for target restarting
1416  * by the MGS. A CONFIG_READ RPC is going to send to fetch recovery logs.
1417  */
1418 static int mgc_process_recover_log(struct obd_device *obd,
1419                                    struct config_llog_data *cld)
1420 {
1421         struct ptlrpc_request *req = NULL;
1422         struct config_llog_instance *cfg = &cld->cld_cfg;
1423         struct mgs_config_body *body;
1424         struct mgs_config_res  *res;
1425         struct ptlrpc_bulk_desc *desc;
1426         cfs_page_t **pages;
1427         int nrpages;
1428         bool eof = true;
1429         bool mne_swab = false;
1430         int i;
1431         int ealen;
1432         int rc;
1433         ENTRY;
1434
1435         /* allocate buffer for bulk transfer.
1436          * if this is the first time for this mgs to read logs,
1437          * CONFIG_READ_NRPAGES_INIT will be used since it will read all logs
1438          * once; otherwise, it only reads increment of logs, this should be
1439          * small and CONFIG_READ_NRPAGES will be used.
1440          */
1441         nrpages = CONFIG_READ_NRPAGES;
1442         if (cfg->cfg_last_idx == 0) /* the first time */
1443                 nrpages = CONFIG_READ_NRPAGES_INIT;
1444
1445         OBD_ALLOC(pages, sizeof(*pages) * nrpages);
1446         if (pages == NULL)
1447                 GOTO(out, rc = -ENOMEM);
1448
1449         for (i = 0; i < nrpages; i++) {
1450                 pages[i] = cfs_alloc_page(CFS_ALLOC_STD);
1451                 if (pages[i] == NULL)
1452                         GOTO(out, rc = -ENOMEM);
1453         }
1454
1455 again:
1456         LASSERT(cld_is_recover(cld));
1457         LASSERT(cfs_mutex_is_locked(&cld->cld_lock));
1458         req = ptlrpc_request_alloc(class_exp2cliimp(cld->cld_mgcexp),
1459                                    &RQF_MGS_CONFIG_READ);
1460         if (req == NULL)
1461                 GOTO(out, rc = -ENOMEM);
1462
1463         rc = ptlrpc_request_pack(req, LUSTRE_MGS_VERSION, MGS_CONFIG_READ);
1464         if (rc)
1465                 GOTO(out, rc);
1466
1467         /* pack request */
1468         body = req_capsule_client_get(&req->rq_pill, &RMF_MGS_CONFIG_BODY);
1469         LASSERT(body != NULL);
1470         LASSERT(sizeof(body->mcb_name) > strlen(cld->cld_logname));
1471         strncpy(body->mcb_name, cld->cld_logname, sizeof(body->mcb_name));
1472         body->mcb_offset = cfg->cfg_last_idx + 1;
1473         body->mcb_type   = cld->cld_type;
1474         body->mcb_bits   = CFS_PAGE_SHIFT;
1475         body->mcb_units  = nrpages;
1476
1477         /* allocate bulk transfer descriptor */
1478         desc = ptlrpc_prep_bulk_imp(req, nrpages, BULK_PUT_SINK,
1479                                     MGS_BULK_PORTAL);
1480         if (desc == NULL)
1481                 GOTO(out, rc = -ENOMEM);
1482
1483         for (i = 0; i < nrpages; i++)
1484                 ptlrpc_prep_bulk_page(desc, pages[i], 0, CFS_PAGE_SIZE);
1485
1486         ptlrpc_request_set_replen(req);
1487         rc = ptlrpc_queue_wait(req);
1488         if (rc)
1489                 GOTO(out, rc);
1490
1491         res = req_capsule_server_get(&req->rq_pill, &RMF_MGS_CONFIG_RES);
1492         if (res->mcr_size < res->mcr_offset)
1493                 GOTO(out, rc = -EINVAL);
1494
1495         /* always update the index even though it might have errors with
1496          * handling the recover logs */
1497         cfg->cfg_last_idx = res->mcr_offset;
1498         eof = res->mcr_offset == res->mcr_size;
1499
1500         CDEBUG(D_INFO, "Latest version "LPD64", more %d.\n",
1501                res->mcr_offset, eof == false);
1502
1503         ealen = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk, 0);
1504         if (ealen < 0)
1505                 GOTO(out, rc = ealen);
1506
1507         if (ealen > nrpages << CFS_PAGE_SHIFT)
1508                 GOTO(out, rc = -EINVAL);
1509
1510         if (ealen == 0) { /* no logs transferred */
1511                 if (!eof)
1512                         rc = -EINVAL;
1513                 GOTO(out, rc);
1514         }
1515
1516         mne_swab = !!ptlrpc_rep_need_swab(req);
1517 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 6, 50, 0)
1518         /* This import flag means the server did an extra swab of IR MNE
1519          * records (fixed in LU-1252), reverse it here if needed. LU-1644 */
1520         if (unlikely(req->rq_import->imp_need_mne_swab))
1521                 mne_swab = !mne_swab;
1522 #else
1523 #warning "LU-1644: Remove old OBD_CONNECT_MNE_SWAB fixup and exp_need_mne_swab"
1524 #endif
1525
1526         for (i = 0; i < nrpages && ealen > 0; i++) {
1527                 int rc2;
1528                 void *ptr;
1529
1530                 ptr = cfs_kmap(pages[i]);
1531                 rc2 = mgc_apply_recover_logs(obd, cld, res->mcr_offset, ptr,
1532                                              min_t(int, ealen, CFS_PAGE_SIZE),
1533                                              mne_swab);
1534                 cfs_kunmap(pages[i]);
1535                 if (rc2 < 0) {
1536                         CWARN("Process recover log %s error %d\n",
1537                               cld->cld_logname, rc2);
1538                         break;
1539                 }
1540
1541                 ealen -= CFS_PAGE_SIZE;
1542         }
1543
1544 out:
1545         if (req)
1546                 ptlrpc_req_finished(req);
1547
1548         if (rc == 0 && !eof)
1549                 goto again;
1550
1551         if (pages) {
1552                 for (i = 0; i < nrpages; i++) {
1553                         if (pages[i] == NULL)
1554                                 break;
1555                         cfs_free_page(pages[i]);
1556                 }
1557                 OBD_FREE(pages, sizeof(*pages) * nrpages);
1558         }
1559         return rc;
1560 }
1561
1562 /* identical to mgs_log_is_empty */
1563 static int mgc_llog_is_empty(struct obd_device *obd, struct llog_ctxt *ctxt,
1564                              char *name)
1565 {
1566         struct lvfs_run_ctxt     saved;
1567         struct llog_handle      *llh;
1568         int                      rc = 0;
1569
1570         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1571         rc = llog_open(NULL, ctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
1572         if (rc == 0) {
1573                 llog_init_handle(NULL, llh, LLOG_F_IS_PLAIN, NULL);
1574                 rc = llog_get_size(llh);
1575                 llog_close(NULL, llh);
1576         } else if (rc == -ENOENT) {
1577                 rc = 0;
1578         }
1579         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1580         /* header is record 1 */
1581         return (rc <= 1);
1582 }
1583
1584 static int mgc_copy_handler(const struct lu_env *env, struct llog_handle *llh,
1585                             struct llog_rec_hdr *rec, void *data)
1586 {
1587         struct llog_rec_hdr local_rec = *rec;
1588         struct llog_handle *local_llh = (struct llog_handle *)data;
1589         char *cfg_buf = (char*) (rec + 1);
1590         struct lustre_cfg *lcfg;
1591         int rc = 0;
1592         ENTRY;
1593
1594         /* Append all records */
1595         local_rec.lrh_len -= sizeof(*rec) + sizeof(struct llog_rec_tail);
1596         rc = llog_write_rec(env, local_llh, &local_rec, NULL, 0,
1597                             (void *)cfg_buf, -1);
1598
1599         lcfg = (struct lustre_cfg *)cfg_buf;
1600         CDEBUG(D_INFO, "idx=%d, rc=%d, len=%d, cmd %x %s %s\n",
1601                rec->lrh_index, rc, rec->lrh_len, lcfg->lcfg_command,
1602                lustre_cfg_string(lcfg, 0), lustre_cfg_string(lcfg, 1));
1603
1604         RETURN(rc);
1605 }
1606
1607 /* Copy a remote log locally */
1608 static int mgc_copy_llog(struct obd_device *obd, struct llog_ctxt *rctxt,
1609                          struct llog_ctxt *lctxt, char *logname)
1610 {
1611         struct llog_handle *local_llh, *remote_llh;
1612         struct obd_uuid *uuid;
1613         char *temp_log;
1614         int rc, rc2;
1615         ENTRY;
1616
1617         /* Write new log to a temp name, then vfs_rename over logname
1618            upon successful completion. */
1619
1620         OBD_ALLOC(temp_log, strlen(logname) + 1);
1621         if (!temp_log)
1622                 RETURN(-ENOMEM);
1623         sprintf(temp_log, "%sT", logname);
1624
1625         /* Make sure there's no old temp log */
1626         rc = llog_erase(NULL, lctxt, NULL, temp_log);
1627         if (rc < 0 && rc != -ENOENT)
1628                 GOTO(out, rc);
1629
1630         /* open local log */
1631         rc = llog_open_create(NULL, lctxt, &local_llh, NULL, temp_log);
1632         if (rc)
1633                 GOTO(out, rc);
1634
1635         /* set the log header uuid for fun */
1636         OBD_ALLOC_PTR(uuid);
1637         obd_str2uuid(uuid, logname);
1638         rc = llog_init_handle(NULL, local_llh, LLOG_F_IS_PLAIN, uuid);
1639         OBD_FREE_PTR(uuid);
1640         if (rc)
1641                 GOTO(out_closel, rc);
1642
1643         /* open remote log */
1644         rc = llog_open(NULL, rctxt, &remote_llh, NULL, logname,
1645                        LLOG_OPEN_EXISTS);
1646         if (rc < 0) {
1647                 if (rc == -ENOENT)
1648                         rc = 0;
1649                 GOTO(out_closel, rc);
1650         }
1651
1652         rc = llog_init_handle(NULL, remote_llh, LLOG_F_IS_PLAIN, NULL);
1653         if (rc)
1654                 GOTO(out_closer, rc);
1655
1656         /* Copy remote log */
1657         rc = llog_process(NULL, remote_llh, mgc_copy_handler,
1658                           (void *)local_llh, NULL);
1659
1660 out_closer:
1661         rc2 = llog_close(NULL, remote_llh);
1662         if (!rc)
1663                 rc = rc2;
1664 out_closel:
1665         rc2 = llog_close(NULL, local_llh);
1666         if (!rc)
1667                 rc = rc2;
1668
1669         /* We've copied the remote log to the local temp log, now
1670            replace the old local log with the temp log. */
1671         if (rc == 0) {
1672                 struct client_obd *cli = &obd->u.cli;
1673
1674                 LASSERT(cli);
1675                 LASSERT(cli->cl_mgc_configs_dir);
1676                 rc = lustre_rename(cli->cl_mgc_configs_dir, cli->cl_mgc_vfsmnt,
1677                                    temp_log, logname);
1678         }
1679         CDEBUG(D_MGC, "Copied remote log %s (%d)\n", logname, rc);
1680 out:
1681         if (rc)
1682                 CERROR("Failed to copy remote log %s (%d)\n", logname, rc);
1683         OBD_FREE(temp_log, strlen(logname) + 1);
1684         RETURN(rc);
1685 }
1686
1687 /* local_only means it cannot get remote llogs */
1688 static int mgc_process_cfg_log(struct obd_device *mgc,
1689                                struct config_llog_data *cld,
1690                                int local_only)
1691 {
1692         struct llog_ctxt *ctxt, *lctxt = NULL;
1693         struct client_obd *cli = &mgc->u.cli;
1694         struct lvfs_run_ctxt *saved_ctxt;
1695         struct lustre_sb_info *lsi = NULL;
1696         int rc = 0, must_pop = 0;
1697         bool sptlrpc_started = false;
1698
1699         ENTRY;
1700
1701         LASSERT(cld);
1702         LASSERT(cfs_mutex_is_locked(&cld->cld_lock));
1703
1704         /*
1705          * local copy of sptlrpc log is controlled elsewhere, don't try to
1706          * read it up here.
1707          */
1708         if (cld_is_sptlrpc(cld) && local_only)
1709                 RETURN(0);
1710
1711         if (cld->cld_cfg.cfg_sb)
1712                 lsi = s2lsi(cld->cld_cfg.cfg_sb);
1713
1714         ctxt = llog_get_context(mgc, LLOG_CONFIG_REPL_CTXT);
1715         if (!ctxt) {
1716                 CERROR("missing llog context\n");
1717                 RETURN(-EINVAL);
1718         }
1719
1720         OBD_ALLOC_PTR(saved_ctxt);
1721         if (saved_ctxt == NULL)
1722                 RETURN(-ENOMEM);
1723
1724         lctxt = llog_get_context(mgc, LLOG_CONFIG_ORIG_CTXT);
1725
1726         /* Copy the setup log locally if we can. Don't mess around if we're
1727            running an MGS though (logs are already local). */
1728         if (lctxt && lsi && IS_SERVER(lsi) &&
1729             (lsi->lsi_srv_mnt == cli->cl_mgc_vfsmnt) &&
1730             !IS_MGS(lsi) && lsi->lsi_srv_mnt) {
1731                 push_ctxt(saved_ctxt, &mgc->obd_lvfs_ctxt, NULL);
1732                 must_pop++;
1733                 if (!local_only)
1734                         /* Only try to copy log if we have the lock. */
1735                         rc = mgc_copy_llog(mgc, ctxt, lctxt, cld->cld_logname);
1736                 if (local_only || rc) {
1737                         if (mgc_llog_is_empty(mgc, lctxt, cld->cld_logname)) {
1738                                 LCONSOLE_ERROR_MSG(0x13a, "Failed to get MGS "
1739                                                    "log %s and no local copy."
1740                                                    "\n", cld->cld_logname);
1741                                 GOTO(out_pop, rc = -ENOTCONN);
1742                         }
1743                         CDEBUG(D_MGC, "Failed to get MGS log %s, using local "
1744                                "copy for now, will try to update later.\n",
1745                                cld->cld_logname);
1746                 }
1747                 /* Now, whether we copied or not, start using the local llog.
1748                    If we failed to copy, we'll start using whatever the old
1749                    log has. */
1750                 llog_ctxt_put(ctxt);
1751                 ctxt = lctxt;
1752                 lctxt = NULL;
1753         } else if (local_only) { /* no local log at client side */
1754                 GOTO(out_pop, rc = -EIO);
1755         }
1756
1757         if (cld_is_sptlrpc(cld)) {
1758                 sptlrpc_conf_log_update_begin(cld->cld_logname);
1759                 sptlrpc_started = true;
1760         }
1761
1762         /* logname and instance info should be the same, so use our
1763            copy of the instance for the update.  The cfg_last_idx will
1764            be updated here. */
1765         rc = class_config_parse_llog(ctxt, cld->cld_logname, &cld->cld_cfg);
1766         EXIT;
1767
1768 out_pop:
1769         llog_ctxt_put(ctxt);
1770         if (lctxt)
1771                 llog_ctxt_put(lctxt);
1772         if (must_pop)
1773                 pop_ctxt(saved_ctxt, &mgc->obd_lvfs_ctxt, NULL);
1774
1775         OBD_FREE_PTR(saved_ctxt);
1776         /*
1777          * update settings on existing OBDs. doing it inside
1778          * of llog_process_lock so no device is attaching/detaching
1779          * in parallel.
1780          * the logname must be <fsname>-sptlrpc
1781          */
1782         if (sptlrpc_started) {
1783                 LASSERT(cld_is_sptlrpc(cld));
1784                 sptlrpc_conf_log_update_end(cld->cld_logname);
1785                 class_notify_sptlrpc_conf(cld->cld_logname,
1786                                           strlen(cld->cld_logname) -
1787                                           strlen("-sptlrpc"));
1788         }
1789
1790         RETURN(rc);
1791 }
1792
1793 /** Get a config log from the MGS and process it.
1794  * This func is called for both clients and servers.
1795  * Copy the log locally before parsing it if appropriate (non-MGS server)
1796  */
1797 int mgc_process_log(struct obd_device *mgc, struct config_llog_data *cld)
1798 {
1799         struct lustre_handle lockh = { 0 };
1800         int rc = 0, rcl, flags = LDLM_FL_NO_LRU;
1801         ENTRY;
1802
1803         LASSERT(cld);
1804
1805         /* I don't want multiple processes running process_log at once --
1806            sounds like badness.  It actually might be fine, as long as
1807            we're not trying to update from the same log
1808            simultaneously (in which case we should use a per-log sem.) */
1809         cfs_mutex_lock(&cld->cld_lock);
1810         if (cld->cld_stopping) {
1811                 cfs_mutex_unlock(&cld->cld_lock);
1812                 RETURN(0);
1813         }
1814
1815         OBD_FAIL_TIMEOUT(OBD_FAIL_MGC_PAUSE_PROCESS_LOG, 20);
1816
1817         CDEBUG(D_MGC, "Process log %s:%p from %d\n", cld->cld_logname,
1818                cld->cld_cfg.cfg_instance, cld->cld_cfg.cfg_last_idx + 1);
1819
1820         /* Get the cfg lock on the llog */
1821         rcl = mgc_enqueue(mgc->u.cli.cl_mgc_mgsexp, NULL, LDLM_PLAIN, NULL,
1822                           LCK_CR, &flags, NULL, NULL, NULL,
1823                           cld, 0, NULL, &lockh);
1824         if (rcl == 0) {
1825                 /* Get the cld, it will be released in mgc_blocking_ast. */
1826                 config_log_get(cld);
1827                 rc = ldlm_lock_set_data(&lockh, (void *)cld);
1828                 LASSERT(rc == 0);
1829         } else {
1830                 CDEBUG(D_MGC, "Can't get cfg lock: %d\n", rcl);
1831
1832                 /* mark cld_lostlock so that it will requeue
1833                  * after MGC becomes available. */
1834                 cld->cld_lostlock = 1;
1835                 /* Get extra reference, it will be put in requeue thread */
1836                 config_log_get(cld);
1837         }
1838
1839
1840         if (cld_is_recover(cld)) {
1841                 rc = 0; /* this is not a fatal error for recover log */
1842                 if (rcl == 0)
1843                         rc = mgc_process_recover_log(mgc, cld);
1844         } else {
1845                 rc = mgc_process_cfg_log(mgc, cld, rcl != 0);
1846         }
1847
1848         CDEBUG(D_MGC, "%s: configuration from log '%s' %sed (%d).\n",
1849                mgc->obd_name, cld->cld_logname, rc ? "fail" : "succeed", rc);
1850
1851         cfs_mutex_unlock(&cld->cld_lock);
1852
1853         /* Now drop the lock so MGS can revoke it */
1854         if (!rcl) {
1855                 rcl = mgc_cancel(mgc->u.cli.cl_mgc_mgsexp, NULL,
1856                                  LCK_CR, &lockh);
1857                 if (rcl)
1858                         CERROR("Can't drop cfg lock: %d\n", rcl);
1859         }
1860
1861         RETURN(rc);
1862 }
1863
1864
1865 /** Called from lustre_process_log.
1866  * LCFG_LOG_START gets the config log from the MGS, processes it to start
1867  * any services, and adds it to the list logs to watch (follow).
1868  */
1869 static int mgc_process_config(struct obd_device *obd, obd_count len, void *buf)
1870 {
1871         struct lustre_cfg *lcfg = buf;
1872         struct config_llog_instance *cfg = NULL;
1873         char *logname;
1874         int rc = 0;
1875         ENTRY;
1876
1877         switch(lcfg->lcfg_command) {
1878         case LCFG_LOV_ADD_OBD: {
1879                 /* Overloading this cfg command: register a new target */
1880                 struct mgs_target_info *mti;
1881
1882                 if (LUSTRE_CFG_BUFLEN(lcfg, 1) !=
1883                     sizeof(struct mgs_target_info))
1884                         GOTO(out, rc = -EINVAL);
1885
1886                 mti = (struct mgs_target_info *)lustre_cfg_buf(lcfg, 1);
1887                 CDEBUG(D_MGC, "add_target %s %#x\n",
1888                        mti->mti_svname, mti->mti_flags);
1889                 rc = mgc_target_register(obd->u.cli.cl_mgc_mgsexp, mti);
1890                 break;
1891         }
1892         case LCFG_LOV_DEL_OBD:
1893                 /* Unregister has no meaning at the moment. */
1894                 CERROR("lov_del_obd unimplemented\n");
1895                 rc = -ENOSYS;
1896                 break;
1897         case LCFG_SPTLRPC_CONF: {
1898                 rc = sptlrpc_process_config(lcfg);
1899                 break;
1900         }
1901         case LCFG_LOG_START: {
1902                 struct config_llog_data *cld;
1903                 struct super_block *sb;
1904
1905                 logname = lustre_cfg_string(lcfg, 1);
1906                 cfg = (struct config_llog_instance *)lustre_cfg_buf(lcfg, 2);
1907                 sb = *(struct super_block **)lustre_cfg_buf(lcfg, 3);
1908
1909                 CDEBUG(D_MGC, "parse_log %s from %d\n", logname,
1910                        cfg->cfg_last_idx);
1911
1912                 /* We're only called through here on the initial mount */
1913                 rc = config_log_add(obd, logname, cfg, sb);
1914                 if (rc)
1915                         break;
1916                 cld = config_log_find(logname, cfg);
1917                 if (cld == NULL) {
1918                         rc = -ENOENT;
1919                         break;
1920                 }
1921
1922                 /* COMPAT_146 */
1923                 /* FIXME only set this for old logs!  Right now this forces
1924                    us to always skip the "inside markers" check */
1925                 cld->cld_cfg.cfg_flags |= CFG_F_COMPAT146;
1926
1927                 rc = mgc_process_log(obd, cld);
1928                 if (rc == 0 && cld->cld_recover != NULL) {
1929                         if (OCD_HAS_FLAG(&obd->u.cli.cl_import->
1930                                          imp_connect_data, IMP_RECOV)) {
1931                                 rc = mgc_process_log(obd, cld->cld_recover);
1932                         } else {
1933                                 struct config_llog_data *cir = cld->cld_recover;
1934                                 cld->cld_recover = NULL;
1935                                 config_log_put(cir);
1936                         }
1937                         if (rc)
1938                                 CERROR("Cannot process recover llog %d\n", rc);
1939                 }
1940                 config_log_put(cld);
1941
1942                 break;
1943         }
1944         case LCFG_LOG_END: {
1945                 logname = lustre_cfg_string(lcfg, 1);
1946
1947                 if (lcfg->lcfg_bufcount >= 2)
1948                         cfg = (struct config_llog_instance *)lustre_cfg_buf(
1949                                 lcfg, 2);
1950                 rc = config_log_end(logname, cfg);
1951                 break;
1952         }
1953         default: {
1954                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
1955                 GOTO(out, rc = -EINVAL);
1956
1957         }
1958         }
1959 out:
1960         RETURN(rc);
1961 }
1962
1963 struct obd_ops mgc_obd_ops = {
1964         .o_owner        = THIS_MODULE,
1965         .o_setup        = mgc_setup,
1966         .o_precleanup   = mgc_precleanup,
1967         .o_cleanup      = mgc_cleanup,
1968         .o_add_conn     = client_import_add_conn,
1969         .o_del_conn     = client_import_del_conn,
1970         .o_connect      = client_connect_import,
1971         .o_disconnect   = client_disconnect_export,
1972         //.o_enqueue      = mgc_enqueue,
1973         .o_cancel       = mgc_cancel,
1974         //.o_iocontrol    = mgc_iocontrol,
1975         .o_set_info_async = mgc_set_info_async,
1976         .o_get_info       = mgc_get_info,
1977         .o_import_event = mgc_import_event,
1978         .o_llog_init    = mgc_llog_init,
1979         .o_llog_finish  = mgc_llog_finish,
1980         .o_process_config = mgc_process_config,
1981 };
1982
1983 int __init mgc_init(void)
1984 {
1985         return class_register_type(&mgc_obd_ops, NULL, NULL,
1986                                    LUSTRE_MGC_NAME, NULL);
1987 }
1988
1989 #ifdef __KERNEL__
1990 static void /*__exit*/ mgc_exit(void)
1991 {
1992         class_unregister_type(LUSTRE_MGC_NAME);
1993 }
1994
1995 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
1996 MODULE_DESCRIPTION("Lustre Management Client");
1997 MODULE_LICENSE("GPL");
1998
1999 module_init(mgc_init);
2000 module_exit(mgc_exit);
2001 #endif