Whamcloud - gitweb
LU-11809 llite: don't use %p to generate cfg_instance
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/mgc/mgc_request.c
33  *
34  * Author: Nathan Rutman <nathan@clusterfs.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_MGC
38 #define D_MGC D_CONFIG /*|D_WARNING*/
39
40 #include <linux/module.h>
41 #include <linux/kthread.h>
42
43 #include <dt_object.h>
44 #include <lprocfs_status.h>
45 #include <lustre_dlm.h>
46 #include <lustre_disk.h>
47 #include <lustre_log.h>
48 #include <lustre_nodemap.h>
49 #include <lustre_swab.h>
50 #include <obd_class.h>
51 #include <lustre_barrier.h>
52
53 #include "mgc_internal.h"
54
55 static int mgc_name2resid(char *name, int len, struct ldlm_res_id *res_id,
56                           int type)
57 {
58         __u64 resname = 0;
59
60         if (len > sizeof(resname)) {
61                 CERROR("name too long: %s\n", name);
62                 return -EINVAL;
63         }
64         if (len <= 0) {
65                 CERROR("missing name: %s\n", name);
66                 return -EINVAL;
67         }
68         memcpy(&resname, name, len);
69
70         /* Always use the same endianness for the resid */
71         memset(res_id, 0, sizeof(*res_id));
72         res_id->name[0] = cpu_to_le64(resname);
73         /* XXX: unfortunately, sptlprc and config llog share one lock */
74         switch(type) {
75         case CONFIG_T_CONFIG:
76         case CONFIG_T_SPTLRPC:
77                 resname = 0;
78                 break;
79         case CONFIG_T_RECOVER:
80         case CONFIG_T_PARAMS:
81         case CONFIG_T_NODEMAP:
82         case CONFIG_T_BARRIER:
83                 resname = type;
84                 break;
85         default:
86                 LBUG();
87         }
88         res_id->name[1] = cpu_to_le64(resname);
89         CDEBUG(D_MGC, "log %s to resid %#llx/%#llx (%.8s)\n", name,
90                res_id->name[0], res_id->name[1], (char *)&res_id->name[0]);
91         return 0;
92 }
93
94 int mgc_fsname2resid(char *fsname, struct ldlm_res_id *res_id, int type)
95 {
96         /* fsname is at most 8 chars long, maybe contain "-".
97          * e.g. "lustre", "SUN-000" */
98         return mgc_name2resid(fsname, strlen(fsname), res_id, type);
99 }
100 EXPORT_SYMBOL(mgc_fsname2resid);
101
102 int mgc_logname2resid(char *logname, struct ldlm_res_id *res_id, int type)
103 {
104         char *name_end;
105         int len;
106
107         /* logname consists of "fsname-nodetype".
108          * e.g. "lustre-MDT0001", "SUN-000-client"
109          * there is an exception: llog "params" */
110         name_end = strrchr(logname, '-');
111         if (!name_end)
112                 len = strlen(logname);
113         else
114                 len = name_end - logname;
115         return mgc_name2resid(logname, len, res_id, type);
116 }
117 EXPORT_SYMBOL(mgc_logname2resid);
118
119 /********************** config llog list **********************/
120 static struct list_head config_llog_list = LIST_HEAD_INIT(config_llog_list);
121 static DEFINE_SPINLOCK(config_list_lock);       /* protects config_llog_list */
122
123 /* Take a reference to a config log */
124 static int config_log_get(struct config_llog_data *cld)
125 {
126         ENTRY;
127         atomic_inc(&cld->cld_refcount);
128         CDEBUG(D_INFO, "log %s refs %d\n", cld->cld_logname,
129                 atomic_read(&cld->cld_refcount));
130         RETURN(0);
131 }
132
133 /* Drop a reference to a config log.  When no longer referenced,
134    we can free the config log data */
135 static void config_log_put(struct config_llog_data *cld)
136 {
137         ENTRY;
138
139         if (unlikely(!cld))
140                 RETURN_EXIT;
141
142         CDEBUG(D_INFO, "log %s refs %d\n", cld->cld_logname,
143                 atomic_read(&cld->cld_refcount));
144         LASSERT(atomic_read(&cld->cld_refcount) > 0);
145
146         /* spinlock to make sure no item with 0 refcount in the list */
147         if (atomic_dec_and_lock(&cld->cld_refcount, &config_list_lock)) {
148                 list_del(&cld->cld_list_chain);
149                 spin_unlock(&config_list_lock);
150
151                 CDEBUG(D_MGC, "dropping config log %s\n", cld->cld_logname);
152
153                 config_log_put(cld->cld_barrier);
154                 config_log_put(cld->cld_recover);
155                 config_log_put(cld->cld_params);
156                 config_log_put(cld->cld_nodemap);
157                 config_log_put(cld->cld_sptlrpc);
158                 if (cld_is_sptlrpc(cld))
159                         sptlrpc_conf_log_stop(cld->cld_logname);
160
161                 class_export_put(cld->cld_mgcexp);
162                 OBD_FREE(cld, sizeof(*cld) + strlen(cld->cld_logname) + 1);
163         }
164
165         EXIT;
166 }
167
168 /* Find a config log by name */
169 static
170 struct config_llog_data *config_log_find(char *logname,
171                                          struct config_llog_instance *cfg)
172 {
173         struct config_llog_data *cld;
174         struct config_llog_data *found = NULL;
175         unsigned long cfg_instance;
176
177         ENTRY;
178         LASSERT(logname != NULL);
179
180         cfg_instance = cfg ? cfg->cfg_instance : 0;
181         spin_lock(&config_list_lock);
182         list_for_each_entry(cld, &config_llog_list, cld_list_chain) {
183                 /* check if cfg_instance is the one we want */
184                 if (cfg_instance != cld->cld_cfg.cfg_instance)
185                         continue;
186
187                 /* instance may be NULL, should check name */
188                 if (strcmp(logname, cld->cld_logname) == 0) {
189                         found = cld;
190                         config_log_get(found);
191                         break;
192                 }
193         }
194         spin_unlock(&config_list_lock);
195         RETURN(found);
196 }
197
198 static
199 struct config_llog_data *do_config_log_add(struct obd_device *obd,
200                                            char *logname,
201                                            int type,
202                                            struct config_llog_instance *cfg,
203                                            struct super_block *sb)
204 {
205         struct config_llog_data *cld;
206         int rc;
207
208         ENTRY;
209
210         CDEBUG(D_MGC, "do adding config log %s-%016lx\n", logname,
211                cfg ? cfg->cfg_instance : 0);
212
213         OBD_ALLOC(cld, sizeof(*cld) + strlen(logname) + 1);
214         if (!cld)
215                 RETURN(ERR_PTR(-ENOMEM));
216
217         rc = mgc_logname2resid(logname, &cld->cld_resid, type);
218         if (rc) {
219                 OBD_FREE(cld, sizeof(*cld) + strlen(cld->cld_logname) + 1);
220                 RETURN(ERR_PTR(rc));
221         }
222
223         strcpy(cld->cld_logname, logname);
224         if (cfg)
225                 cld->cld_cfg = *cfg;
226         else
227                 cld->cld_cfg.cfg_callback = class_config_llog_handler;
228         mutex_init(&cld->cld_lock);
229         cld->cld_cfg.cfg_last_idx = 0;
230         cld->cld_cfg.cfg_flags = 0;
231         cld->cld_cfg.cfg_sb = sb;
232         cld->cld_type = type;
233         atomic_set(&cld->cld_refcount, 1);
234
235         /* Keep the mgc around until we are done */
236         cld->cld_mgcexp = class_export_get(obd->obd_self_export);
237
238         if (cld_is_sptlrpc(cld))
239                 sptlrpc_conf_log_start(logname);
240
241         spin_lock(&config_list_lock);
242         list_add(&cld->cld_list_chain, &config_llog_list);
243         spin_unlock(&config_list_lock);
244
245         if (cld_is_sptlrpc(cld) || cld_is_nodemap(cld) || cld_is_barrier(cld)) {
246                 rc = mgc_process_log(obd, cld);
247                 if (rc && rc != -ENOENT)
248                         CERROR("%s: failed processing log, type %d: rc = %d\n",
249                                obd->obd_name, type, rc);
250         }
251
252         RETURN(cld);
253 }
254
255 static struct config_llog_data *config_recover_log_add(struct obd_device *obd,
256                                         char *fsname,
257                                         struct config_llog_instance *cfg,
258                                         struct super_block *sb)
259 {
260         struct config_llog_instance lcfg = *cfg;
261         struct lustre_sb_info *lsi = s2lsi(sb);
262         struct config_llog_data *cld;
263         char logname[32];
264
265         if (IS_OST(lsi))
266                 return NULL;
267
268         /* for osp-on-ost, see lustre_start_osp() */
269         if (IS_MDT(lsi) && lcfg.cfg_instance)
270                 return NULL;
271
272         /* We have to use different llog for clients and MDTs for DNE,
273          * where only clients are notified if one of DNE server restarts.
274          */
275         LASSERT(strlen(fsname) < sizeof(logname) / 2);
276         strncpy(logname, fsname, sizeof(logname));
277         if (IS_SERVER(lsi)) { /* mdt */
278                 LASSERT(lcfg.cfg_instance == 0);
279                 lcfg.cfg_instance = ll_get_cfg_instance(sb);
280                 strncat(logname, "-mdtir", sizeof(logname));
281         } else {
282                 LASSERT(lcfg.cfg_instance != 0);
283                 strncat(logname, "-cliir", sizeof(logname));
284         }
285
286         cld = do_config_log_add(obd, logname, CONFIG_T_RECOVER, &lcfg, sb);
287         return cld;
288 }
289
290 static struct config_llog_data *config_log_find_or_add(struct obd_device *obd,
291                                 char *logname, struct super_block *sb, int type,
292                                 struct config_llog_instance *cfg)
293 {
294         struct config_llog_instance lcfg = *cfg;
295         struct config_llog_data *cld;
296
297         /* Note class_config_llog_handler() depends on getting "obd" back */
298         lcfg.cfg_instance = sb ? ll_get_cfg_instance(sb) : (unsigned long)obd;
299
300         cld = config_log_find(logname, &lcfg);
301         if (unlikely(cld != NULL))
302                 return cld;
303
304         return do_config_log_add(obd, logname, type, &lcfg, sb);
305 }
306
307 /** Add this log to the list of active logs watched by an MGC.
308  * Active means we're watching for updates.
309  * We have one active log per "mount" - client instance or servername.
310  * Each instance may be at a different point in the log.
311  */
312 static struct config_llog_data *
313 config_log_add(struct obd_device *obd, char *logname,
314                struct config_llog_instance *cfg, struct super_block *sb)
315 {
316         struct lustre_sb_info *lsi = s2lsi(sb);
317         struct config_llog_data *cld = NULL;
318         struct config_llog_data *sptlrpc_cld = NULL;
319         struct config_llog_data *params_cld = NULL;
320         struct config_llog_data *nodemap_cld = NULL;
321         struct config_llog_data *barrier_cld = NULL;
322         char seclogname[32];
323         char *ptr;
324         int rc;
325         bool locked = false;
326         ENTRY;
327
328         CDEBUG(D_MGC, "add config log %s-%016lx\n", logname,
329                cfg->cfg_instance);
330
331         /*
332          * for each regular log, the depended sptlrpc log name is
333          * <fsname>-sptlrpc. multiple regular logs may share one sptlrpc log.
334          */
335         ptr = strrchr(logname, '-');
336         if (ptr == NULL || ptr - logname > 8) {
337                 CERROR("logname %s is too long\n", logname);
338                 RETURN(ERR_PTR(-EINVAL));
339         }
340
341         memcpy(seclogname, logname, ptr - logname);
342         strcpy(seclogname + (ptr - logname), "-sptlrpc");
343
344         if (cfg->cfg_sub_clds & CONFIG_SUB_SPTLRPC) {
345                 sptlrpc_cld = config_log_find_or_add(obd, seclogname, NULL,
346                                                      CONFIG_T_SPTLRPC, cfg);
347                 if (IS_ERR(sptlrpc_cld)) {
348                         CERROR("%s: can't create sptlrpc log %s: rc = %ld\n",
349                                obd->obd_name, seclogname, PTR_ERR(sptlrpc_cld));
350                         RETURN(sptlrpc_cld);
351                 }
352         }
353
354         if (!IS_MGS(lsi) && cfg->cfg_sub_clds & CONFIG_SUB_NODEMAP) {
355                 nodemap_cld = config_log_find_or_add(obd, LUSTRE_NODEMAP_NAME,
356                                                      NULL, CONFIG_T_NODEMAP,
357                                                      cfg);
358                 if (IS_ERR(nodemap_cld)) {
359                         rc = PTR_ERR(nodemap_cld);
360                         CERROR("%s: cannot create nodemap log: rc = %d\n",
361                                obd->obd_name, rc);
362                         GOTO(out_sptlrpc, rc);
363                 }
364         }
365
366         if (cfg->cfg_sub_clds & CONFIG_SUB_PARAMS) {
367                 params_cld = config_log_find_or_add(obd, PARAMS_FILENAME, sb,
368                                                     CONFIG_T_PARAMS, cfg);
369                 if (IS_ERR(params_cld)) {
370                         rc = PTR_ERR(params_cld);
371                         CERROR("%s: can't create params log: rc = %d\n",
372                                obd->obd_name, rc);
373                         GOTO(out_nodemap, rc);
374                 }
375         }
376
377         if (IS_MDT(s2lsi(sb)) && cfg->cfg_sub_clds & CONFIG_SUB_BARRIER) {
378                 snprintf(seclogname + (ptr - logname), sizeof(seclogname) - 1,
379                          "-%s", BARRIER_FILENAME);
380                 barrier_cld = config_log_find_or_add(obd, seclogname, sb,
381                                                      CONFIG_T_BARRIER, cfg);
382                 if (IS_ERR(barrier_cld)) {
383                         rc = PTR_ERR(barrier_cld);
384                         CERROR("%s: can't create barrier log: rc = %d\n",
385                                obd->obd_name, rc);
386                         GOTO(out_params, rc);
387                 }
388         }
389
390         cld = do_config_log_add(obd, logname, CONFIG_T_CONFIG, cfg, sb);
391         if (IS_ERR(cld)) {
392                 rc = PTR_ERR(cld);
393                 CERROR("%s: can't create log: rc = %d\n",
394                        obd->obd_name, rc);
395                 GOTO(out_barrier, rc = PTR_ERR(cld));
396         }
397
398         LASSERT(lsi->lsi_lmd);
399         if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOIR) &&
400             cfg->cfg_sub_clds & CONFIG_SUB_RECOVER) {
401                 struct config_llog_data *recover_cld;
402
403                 ptr = strrchr(seclogname, '-');
404                 if (ptr != NULL) {
405                         *ptr = 0;
406                 } else {
407                         CERROR("%s: sptlrpc log name not correct, %s: "
408                                "rc = %d\n", obd->obd_name, seclogname, -EINVAL);
409                         GOTO(out_cld, rc = -EINVAL);
410                 }
411
412                 recover_cld = config_recover_log_add(obd, seclogname, cfg, sb);
413                 if (IS_ERR(recover_cld)) {
414                         rc = PTR_ERR(recover_cld);
415                         CERROR("%s: can't create recover log: rc = %d\n",
416                                obd->obd_name, rc);
417                         GOTO(out_cld, rc);
418                 }
419
420                 mutex_lock(&cld->cld_lock);
421                 locked = true;
422                 cld->cld_recover = recover_cld;
423         }
424
425         if (!locked)
426                 mutex_lock(&cld->cld_lock);
427         cld->cld_params = params_cld;
428         cld->cld_barrier = barrier_cld;
429         cld->cld_nodemap = nodemap_cld;
430         cld->cld_sptlrpc = sptlrpc_cld;
431         mutex_unlock(&cld->cld_lock);
432
433         RETURN(cld);
434
435 out_cld:
436         config_log_put(cld);
437 out_barrier:
438         config_log_put(barrier_cld);
439 out_params:
440         config_log_put(params_cld);
441 out_nodemap:
442         config_log_put(nodemap_cld);
443 out_sptlrpc:
444         config_log_put(sptlrpc_cld);
445
446         return ERR_PTR(rc);
447 }
448
449 DEFINE_MUTEX(llog_process_lock);
450
451 static inline void config_mark_cld_stop(struct config_llog_data *cld)
452 {
453         if (cld) {
454                 mutex_lock(&cld->cld_lock);
455                 spin_lock(&config_list_lock);
456                 cld->cld_stopping = 1;
457                 spin_unlock(&config_list_lock);
458                 mutex_unlock(&cld->cld_lock);
459         }
460 }
461
462 /** Stop watching for updates on this log.
463  */
464 static int config_log_end(char *logname, struct config_llog_instance *cfg)
465 {
466         struct config_llog_data *cld;
467         struct config_llog_data *cld_sptlrpc = NULL;
468         struct config_llog_data *cld_params = NULL;
469         struct config_llog_data *cld_recover = NULL;
470         struct config_llog_data *cld_nodemap = NULL;
471         struct config_llog_data *cld_barrier = NULL;
472         int rc = 0;
473
474         ENTRY;
475
476         cld = config_log_find(logname, cfg);
477         if (cld == NULL)
478                 RETURN(-ENOENT);
479
480         mutex_lock(&cld->cld_lock);
481         /*
482          * if cld_stopping is set, it means we didn't start the log thus
483          * not owning the start ref. this can happen after previous umount:
484          * the cld still hanging there waiting for lock cancel, and we
485          * remount again but failed in the middle and call log_end without
486          * calling start_log.
487          */
488         if (unlikely(cld->cld_stopping)) {
489                 mutex_unlock(&cld->cld_lock);
490                 /* drop the ref from the find */
491                 config_log_put(cld);
492                 RETURN(rc);
493         }
494
495         spin_lock(&config_list_lock);
496         cld->cld_stopping = 1;
497         spin_unlock(&config_list_lock);
498
499         cld_recover = cld->cld_recover;
500         cld->cld_recover = NULL;
501         cld_params = cld->cld_params;
502         cld->cld_params = NULL;
503         cld_nodemap = cld->cld_nodemap;
504         cld->cld_nodemap = NULL;
505         cld_barrier = cld->cld_barrier;
506         cld->cld_barrier = NULL;
507         cld_sptlrpc = cld->cld_sptlrpc;
508         cld->cld_sptlrpc = NULL;
509         mutex_unlock(&cld->cld_lock);
510
511         config_mark_cld_stop(cld_recover);
512         config_log_put(cld_recover);
513
514         config_mark_cld_stop(cld_params);
515         config_log_put(cld_params);
516
517         /* don't set cld_stopping on nm lock as other targets may be active */
518         config_log_put(cld_nodemap);
519
520         if (cld_barrier) {
521                 mutex_lock(&cld_barrier->cld_lock);
522                 cld_barrier->cld_stopping = 1;
523                 mutex_unlock(&cld_barrier->cld_lock);
524                 config_log_put(cld_barrier);
525         }
526
527         config_log_put(cld_sptlrpc);
528
529         /* drop the ref from the find */
530         config_log_put(cld);
531         /* drop the start ref */
532         config_log_put(cld);
533
534         CDEBUG(D_MGC, "end config log %s (%d)\n", logname ? logname : "client",
535                rc);
536         RETURN(rc);
537 }
538
539 int lprocfs_mgc_rd_ir_state(struct seq_file *m, void *data)
540 {
541         struct obd_device       *obd = data;
542         struct obd_import       *imp;
543         struct obd_connect_data *ocd;
544         struct config_llog_data *cld;
545
546         ENTRY;
547         LASSERT(obd);
548         LPROCFS_CLIMP_CHECK(obd);
549         imp = obd->u.cli.cl_import;
550         ocd = &imp->imp_connect_data;
551
552         seq_printf(m, "imperative_recovery: %s\n",
553                    OCD_HAS_FLAG(ocd, IMP_RECOV) ? "ENABLED" : "DISABLED");
554         seq_printf(m, "client_state:\n");
555
556         spin_lock(&config_list_lock);
557         list_for_each_entry(cld, &config_llog_list, cld_list_chain) {
558                 if (cld->cld_recover == NULL)
559                         continue;
560                 seq_printf(m,  "    - { client: %s, nidtbl_version: %u }\n",
561                            cld->cld_logname,
562                            cld->cld_recover->cld_cfg.cfg_last_idx);
563         }
564         spin_unlock(&config_list_lock);
565
566         LPROCFS_CLIMP_EXIT(obd);
567         RETURN(0);
568 }
569
570 /* reenqueue any lost locks */
571 #define RQ_RUNNING      0x1
572 #define RQ_NOW          0x2
573 #define RQ_LATER        0x4
574 #define RQ_STOP         0x8
575 #define RQ_PRECLEANUP   0x10
576 static int                    rq_state = 0;
577 static wait_queue_head_t      rq_waitq;
578 static DECLARE_COMPLETION(rq_exit);
579 static DECLARE_COMPLETION(rq_start);
580
581 static void do_requeue(struct config_llog_data *cld)
582 {
583         int rc = 0;
584         ENTRY;
585
586         LASSERT(atomic_read(&cld->cld_refcount) > 0);
587
588         /*
589          * Do not run mgc_process_log on a disconnected export or an
590          * export which is being disconnected. Take the client
591          * semaphore to make the check non-racy.
592          */
593         down_read_nested(&cld->cld_mgcexp->exp_obd->u.cli.cl_sem,
594                          OBD_CLI_SEM_MGC);
595         if (cld->cld_mgcexp->exp_obd->u.cli.cl_conn_count != 0) {
596                 CDEBUG(D_MGC, "updating log %s\n", cld->cld_logname);
597                 rc = mgc_process_log(cld->cld_mgcexp->exp_obd, cld);
598                 if (rc && rc != -ENOENT)
599                         CERROR("failed processing log: %d\n", rc);
600         } else {
601                 CDEBUG(D_MGC, "disconnecting, won't update log %s\n",
602                        cld->cld_logname);
603         }
604         up_read(&cld->cld_mgcexp->exp_obd->u.cli.cl_sem);
605
606         EXIT;
607 }
608
609 /* this timeout represents how many seconds MGC should wait before
610  * requeue config and recover lock to the MGS. We need to randomize this
611  * in order to not flood the MGS.
612  */
613 #define MGC_TIMEOUT_MIN_SECONDS   5
614 #define MGC_TIMEOUT_RAND_CENTISEC 0x1ff /* ~500 */
615
616 static int mgc_requeue_thread(void *data)
617 {
618         int rc = 0;
619         bool first = true;
620         ENTRY;
621
622         CDEBUG(D_MGC, "Starting requeue thread\n");
623
624         /* Keep trying failed locks periodically */
625         spin_lock(&config_list_lock);
626         rq_state |= RQ_RUNNING;
627         while (!(rq_state & RQ_STOP)) {
628                 struct l_wait_info lwi;
629                 struct config_llog_data *cld, *cld_prev;
630                 int rand = cfs_rand() & MGC_TIMEOUT_RAND_CENTISEC;
631                 int to;
632
633                 /* Any new or requeued lostlocks will change the state */
634                 rq_state &= ~(RQ_NOW | RQ_LATER);
635                 spin_unlock(&config_list_lock);
636
637                 if (first) {
638                         first = false;
639                         complete(&rq_start);
640                 }
641
642                 /* Always wait a few seconds to allow the server who
643                    caused the lock revocation to finish its setup, plus some
644                    random so everyone doesn't try to reconnect at once. */
645                 to = msecs_to_jiffies(MGC_TIMEOUT_MIN_SECONDS * MSEC_PER_SEC);
646                 /* rand is centi-seconds */
647                 to += msecs_to_jiffies(rand * MSEC_PER_SEC / 100);
648                 lwi = LWI_TIMEOUT(to, NULL, NULL);
649                 l_wait_event(rq_waitq, rq_state & (RQ_STOP | RQ_PRECLEANUP),
650                              &lwi);
651
652                 /*
653                  * iterate & processing through the list. for each cld, process
654                  * its depending sptlrpc cld firstly (if any) and then itself.
655                  *
656                  * it's guaranteed any item in the list must have
657                  * reference > 0; and if cld_lostlock is set, at
658                  * least one reference is taken by the previous enqueue.
659                  */
660                 cld_prev = NULL;
661
662                 spin_lock(&config_list_lock);
663                 rq_state &= ~RQ_PRECLEANUP;
664                 list_for_each_entry(cld, &config_llog_list,
665                                     cld_list_chain) {
666                         if (!cld->cld_lostlock || cld->cld_stopping)
667                                 continue;
668
669                         /* hold reference to avoid being freed during
670                          * subsequent processing. */
671                         config_log_get(cld);
672                         cld->cld_lostlock = 0;
673                         spin_unlock(&config_list_lock);
674
675                         config_log_put(cld_prev);
676                         cld_prev = cld;
677
678                         if (likely(!(rq_state & RQ_STOP))) {
679                                 do_requeue(cld);
680                                 spin_lock(&config_list_lock);
681                         } else {
682                                 spin_lock(&config_list_lock);
683                                 break;
684                         }
685                 }
686                 spin_unlock(&config_list_lock);
687                 config_log_put(cld_prev);
688
689                 /* Wait a bit to see if anyone else needs a requeue */
690                 lwi = (struct l_wait_info) { 0 };
691                 l_wait_event(rq_waitq, rq_state & (RQ_NOW | RQ_STOP),
692                              &lwi);
693                 spin_lock(&config_list_lock);
694         }
695
696         /* spinlock and while guarantee RQ_NOW and RQ_LATER are not set */
697         rq_state &= ~RQ_RUNNING;
698         spin_unlock(&config_list_lock);
699
700         complete(&rq_exit);
701
702         CDEBUG(D_MGC, "Ending requeue thread\n");
703         RETURN(rc);
704 }
705
706 /* Add a cld to the list to requeue.  Start the requeue thread if needed.
707    We are responsible for dropping the config log reference from here on out. */
708 static void mgc_requeue_add(struct config_llog_data *cld)
709 {
710         bool wakeup = false;
711         ENTRY;
712
713         CDEBUG(D_INFO, "log %s: requeue (r=%d sp=%d st=%x)\n",
714                 cld->cld_logname, atomic_read(&cld->cld_refcount),
715                 cld->cld_stopping, rq_state);
716         LASSERT(atomic_read(&cld->cld_refcount) > 0);
717
718         mutex_lock(&cld->cld_lock);
719         spin_lock(&config_list_lock);
720         if (!(rq_state & RQ_STOP) && !cld->cld_stopping && !cld->cld_lostlock) {
721                 cld->cld_lostlock = 1;
722                 rq_state |= RQ_NOW;
723                 wakeup = true;
724         }
725         spin_unlock(&config_list_lock);
726         mutex_unlock(&cld->cld_lock);
727         if (wakeup)
728                 wake_up(&rq_waitq);
729
730         EXIT;
731 }
732
733 /********************** class fns **********************/
734 static int mgc_local_llog_init(const struct lu_env *env,
735                                struct obd_device *obd,
736                                struct obd_device *disk)
737 {
738         struct llog_ctxt        *ctxt;
739         int                      rc;
740
741         ENTRY;
742
743         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_CONFIG_ORIG_CTXT, disk,
744                         &llog_osd_ops);
745         if (rc)
746                 RETURN(rc);
747
748         ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
749         LASSERT(ctxt);
750         ctxt->loc_dir = obd->u.cli.cl_mgc_configs_dir;
751         llog_ctxt_put(ctxt);
752
753         RETURN(0);
754 }
755
756 static int mgc_local_llog_fini(const struct lu_env *env,
757                                struct obd_device *obd)
758 {
759         struct llog_ctxt *ctxt;
760
761         ENTRY;
762
763         ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
764         llog_cleanup(env, ctxt);
765
766         RETURN(0);
767 }
768
769 static int mgc_fs_setup(const struct lu_env *env, struct obd_device *obd,
770                         struct super_block *sb)
771 {
772         struct lustre_sb_info   *lsi = s2lsi(sb);
773         struct client_obd       *cli = &obd->u.cli;
774         struct lu_fid            rfid, fid;
775         struct dt_object        *root, *dto;
776         int                      rc = 0;
777
778         ENTRY;
779
780         LASSERT(lsi);
781         LASSERT(lsi->lsi_dt_dev);
782
783         /* The mgc fs exclusion mutex. Only one fs can be setup at a time. */
784         mutex_lock(&cli->cl_mgc_mutex);
785
786         /* Setup the configs dir */
787         fid.f_seq = FID_SEQ_LOCAL_NAME;
788         fid.f_oid = 1;
789         fid.f_ver = 0;
790         rc = local_oid_storage_init(env, lsi->lsi_dt_dev, &fid,
791                                     &cli->cl_mgc_los);
792         if (rc)
793                 RETURN(rc);
794
795         rc = dt_root_get(env, lsi->lsi_dt_dev, &rfid);
796         if (rc)
797                 GOTO(out_los, rc);
798
799         root = dt_locate_at(env, lsi->lsi_dt_dev, &rfid,
800                             &cli->cl_mgc_los->los_dev->dd_lu_dev, NULL);
801         if (unlikely(IS_ERR(root)))
802                 GOTO(out_los, rc = PTR_ERR(root));
803
804         dto = local_file_find_or_create(env, cli->cl_mgc_los, root,
805                                         MOUNT_CONFIGS_DIR,
806                                         S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO);
807         dt_object_put_nocache(env, root);
808         if (IS_ERR(dto))
809                 GOTO(out_los, rc = PTR_ERR(dto));
810
811         cli->cl_mgc_configs_dir = dto;
812
813         LASSERT(lsi->lsi_osd_exp->exp_obd->obd_lvfs_ctxt.dt);
814         rc = mgc_local_llog_init(env, obd, lsi->lsi_osd_exp->exp_obd);
815         if (rc)
816                 GOTO(out_llog, rc);
817
818         /* We take an obd ref to insure that we can't get to mgc_cleanup
819          * without calling mgc_fs_cleanup first. */
820         class_incref(obd, "mgc_fs", obd);
821
822         /* We keep the cl_mgc_sem until mgc_fs_cleanup */
823         EXIT;
824 out_llog:
825         if (rc) {
826                 dt_object_put(env, cli->cl_mgc_configs_dir);
827                 cli->cl_mgc_configs_dir = NULL;
828         }
829 out_los:
830         if (rc < 0) {
831                 local_oid_storage_fini(env, cli->cl_mgc_los);
832                 cli->cl_mgc_los = NULL;
833                 mutex_unlock(&cli->cl_mgc_mutex);
834         }
835         return rc;
836 }
837
838 static int mgc_fs_cleanup(const struct lu_env *env, struct obd_device *obd)
839 {
840         struct client_obd       *cli = &obd->u.cli;
841         ENTRY;
842
843         LASSERT(cli->cl_mgc_los != NULL);
844
845         mgc_local_llog_fini(env, obd);
846
847         dt_object_put_nocache(env, cli->cl_mgc_configs_dir);
848         cli->cl_mgc_configs_dir = NULL;
849
850         local_oid_storage_fini(env, cli->cl_mgc_los);
851         cli->cl_mgc_los = NULL;
852
853         class_decref(obd, "mgc_fs", obd);
854         mutex_unlock(&cli->cl_mgc_mutex);
855
856         RETURN(0);
857 }
858
859 static int mgc_llog_init(const struct lu_env *env, struct obd_device *obd)
860 {
861         struct llog_ctxt        *ctxt;
862         int                      rc;
863
864         ENTRY;
865
866         /* setup only remote ctxt, the local disk context is switched per each
867          * filesystem during mgc_fs_setup() */
868         rc = llog_setup(env, obd, &obd->obd_olg, LLOG_CONFIG_REPL_CTXT, obd,
869                         &llog_client_ops);
870         if (rc)
871                 RETURN(rc);
872
873         ctxt = llog_get_context(obd, LLOG_CONFIG_REPL_CTXT);
874         LASSERT(ctxt);
875
876         llog_initiator_connect(ctxt);
877         llog_ctxt_put(ctxt);
878
879         RETURN(0);
880 }
881
882 static int mgc_llog_fini(const struct lu_env *env, struct obd_device *obd)
883 {
884         struct llog_ctxt *ctxt;
885
886         ENTRY;
887
888         ctxt = llog_get_context(obd, LLOG_CONFIG_REPL_CTXT);
889         if (ctxt)
890                 llog_cleanup(env, ctxt);
891
892         RETURN(0);
893 }
894
895
896 static atomic_t mgc_count = ATOMIC_INIT(0);
897 static int mgc_precleanup(struct obd_device *obd)
898 {
899         int     rc = 0;
900         int     temp;
901         ENTRY;
902
903         if (atomic_dec_and_test(&mgc_count)) {
904                 LASSERT(rq_state & RQ_RUNNING);
905                 /* stop requeue thread */
906                 temp = RQ_STOP;
907         } else {
908                 /* wakeup requeue thread to clean our cld */
909                 temp = RQ_NOW | RQ_PRECLEANUP;
910         }
911
912         spin_lock(&config_list_lock);
913         rq_state |= temp;
914         spin_unlock(&config_list_lock);
915         wake_up(&rq_waitq);
916
917         if (temp & RQ_STOP)
918                 wait_for_completion(&rq_exit);
919         obd_cleanup_client_import(obd);
920
921         rc = mgc_llog_fini(NULL, obd);
922         if (rc != 0)
923                 CERROR("failed to cleanup llogging subsystems\n");
924
925         RETURN(rc);
926 }
927
928 static int mgc_cleanup(struct obd_device *obd)
929 {
930         int rc;
931         ENTRY;
932
933         /* COMPAT_146 - old config logs may have added profiles we don't
934            know about */
935         if (obd->obd_type->typ_refcnt <= 1)
936                 /* Only for the last mgc */
937                 class_del_profiles();
938
939         lprocfs_obd_cleanup(obd);
940         ptlrpcd_decref();
941
942         rc = client_obd_cleanup(obd);
943         RETURN(rc);
944 }
945
946 static int mgc_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
947 {
948         struct task_struct      *task;
949         int                      rc;
950         ENTRY;
951
952         rc = ptlrpcd_addref();
953         if (rc < 0)
954                 RETURN(rc);
955
956         rc = client_obd_setup(obd, lcfg);
957         if (rc)
958                 GOTO(err_decref, rc);
959
960         rc = mgc_llog_init(NULL, obd);
961         if (rc) {
962                 CERROR("failed to setup llogging subsystems\n");
963                 GOTO(err_cleanup, rc);
964         }
965
966         rc = mgc_tunables_init(obd);
967         if (rc)
968                 GOTO(err_sysfs, rc);
969
970         if (atomic_inc_return(&mgc_count) == 1) {
971                 rq_state = 0;
972                 init_waitqueue_head(&rq_waitq);
973
974                 /* start requeue thread */
975                 task = kthread_run(mgc_requeue_thread, NULL, "ll_cfg_requeue");
976                 if (IS_ERR(task)) {
977                         rc = PTR_ERR(task);
978                         CERROR("%s: cannot start requeue thread: rc = %d; "
979                                "no more log updates\n",
980                                obd->obd_name, rc);
981                         GOTO(err_sysfs, rc);
982                 }
983                 /* rc is the task_struct pointer of mgc_requeue_thread. */
984                 rc = 0;
985                 wait_for_completion(&rq_start);
986         }
987
988         RETURN(rc);
989
990 err_sysfs:
991         lprocfs_obd_cleanup(obd);
992 err_cleanup:
993         client_obd_cleanup(obd);
994 err_decref:
995         ptlrpcd_decref();
996         RETURN(rc);
997 }
998
999 /* based on ll_mdc_blocking_ast */
1000 static int mgc_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
1001                             void *data, int flag)
1002 {
1003         struct lustre_handle lockh;
1004         struct config_llog_data *cld = (struct config_llog_data *)data;
1005         int rc = 0;
1006         ENTRY;
1007
1008         switch (flag) {
1009         case LDLM_CB_BLOCKING:
1010                 /* mgs wants the lock, give it up... */
1011                 LDLM_DEBUG(lock, "MGC blocking CB");
1012                 ldlm_lock2handle(lock, &lockh);
1013                 rc = ldlm_cli_cancel(&lockh, LCF_ASYNC);
1014                 break;
1015         case LDLM_CB_CANCELING:
1016                 /* We've given up the lock, prepare ourselves to update. */
1017                 LDLM_DEBUG(lock, "MGC cancel CB");
1018
1019                 CDEBUG(D_MGC, "Lock res "DLDLMRES" (%.8s)\n",
1020                        PLDLMRES(lock->l_resource),
1021                        (char *)&lock->l_resource->lr_name.name[0]);
1022
1023                 if (!cld) {
1024                         CDEBUG(D_INFO, "missing data, won't requeue\n");
1025                         break;
1026                 }
1027
1028                 /* held at mgc_process_log(). */
1029                 LASSERT(atomic_read(&cld->cld_refcount) > 0);
1030
1031                 lock->l_ast_data = NULL;
1032                 /* Are we done with this log? */
1033                 if (cld->cld_stopping) {
1034                         CDEBUG(D_MGC, "log %s: stopping, won't requeue\n",
1035                                 cld->cld_logname);
1036                         config_log_put(cld);
1037                         break;
1038                 }
1039                 /* Make sure not to re-enqueue when the mgc is stopping
1040                    (we get called from client_disconnect_export) */
1041                 if (lock->l_conn_export == NULL ||
1042                     lock->l_conn_export->exp_obd->u.cli.cl_conn_count == 0) {
1043                         CDEBUG(D_MGC, "log %.8s: disconnecting, won't requeue\n",
1044                                 cld->cld_logname);
1045                         config_log_put(cld);
1046                         break;
1047                 }
1048
1049                 /* Re-enqueue now */
1050                 mgc_requeue_add(cld);
1051                 config_log_put(cld);
1052                 break;
1053         default:
1054                 LBUG();
1055         }
1056
1057         RETURN(rc);
1058 }
1059
1060 /* Not sure where this should go... */
1061 /* This is the timeout value for MGS_CONNECT request plus a ping interval, such
1062  * that we can have a chance to try the secondary MGS if any. */
1063 #define  MGC_ENQUEUE_LIMIT (INITIAL_CONNECT_TIMEOUT + (AT_OFF ? 0 : at_min) \
1064                                 + PING_INTERVAL)
1065 #define  MGC_TARGET_REG_LIMIT 10
1066 #define  MGC_TARGET_REG_LIMIT_MAX RECONNECT_DELAY_MAX
1067 #define  MGC_SEND_PARAM_LIMIT 10
1068
1069 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 13, 53, 0)
1070 /* Send parameter to MGS*/
1071 static int mgc_set_mgs_param(struct obd_export *exp,
1072                              struct mgs_send_param *msp)
1073 {
1074         struct ptlrpc_request *req;
1075         struct mgs_send_param *req_msp, *rep_msp;
1076         int rc;
1077         ENTRY;
1078
1079         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
1080                                         &RQF_MGS_SET_INFO, LUSTRE_MGS_VERSION,
1081                                         MGS_SET_INFO);
1082         if (!req)
1083                 RETURN(-ENOMEM);
1084
1085         req_msp = req_capsule_client_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
1086         if (!req_msp) {
1087                 ptlrpc_req_finished(req);
1088                 RETURN(-ENOMEM);
1089         }
1090
1091         memcpy(req_msp, msp, sizeof(*req_msp));
1092         ptlrpc_request_set_replen(req);
1093
1094         /* Limit how long we will wait for the enqueue to complete */
1095         req->rq_delay_limit = MGC_SEND_PARAM_LIMIT;
1096         rc = ptlrpc_queue_wait(req);
1097         if (!rc) {
1098                 rep_msp = req_capsule_server_get(&req->rq_pill, &RMF_MGS_SEND_PARAM);
1099                 memcpy(msp, rep_msp, sizeof(*rep_msp));
1100         }
1101
1102         ptlrpc_req_finished(req);
1103
1104         RETURN(rc);
1105 }
1106 #endif
1107
1108 /* Take a config lock so we can get cancel notifications */
1109 static int mgc_enqueue(struct obd_export *exp, enum ldlm_type type,
1110                        union ldlm_policy_data *policy, enum ldlm_mode mode,
1111                        __u64 *flags, ldlm_glimpse_callback glimpse_callback,
1112                        void *data, __u32 lvb_len, void *lvb_swabber,
1113                        struct lustre_handle *lockh)
1114 {
1115         struct config_llog_data *cld = (struct config_llog_data *)data;
1116         struct ldlm_enqueue_info einfo = {
1117                 .ei_type        = type,
1118                 .ei_mode        = mode,
1119                 .ei_cb_bl       = mgc_blocking_ast,
1120                 .ei_cb_cp       = ldlm_completion_ast,
1121                 .ei_cb_gl       = glimpse_callback,
1122         };
1123         struct ptlrpc_request *req;
1124         int short_limit = cld_is_sptlrpc(cld);
1125         int rc;
1126         ENTRY;
1127
1128         CDEBUG(D_MGC, "Enqueue for %s (res %#llx)\n", cld->cld_logname,
1129                cld->cld_resid.name[0]);
1130
1131         /* We need a callback for every lockholder, so don't try to
1132            ldlm_lock_match (see rev 1.1.2.11.2.47) */
1133         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
1134                                         &RQF_LDLM_ENQUEUE, LUSTRE_DLM_VERSION,
1135                                         LDLM_ENQUEUE);
1136         if (req == NULL)
1137                 RETURN(-ENOMEM);
1138
1139         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER, 0);
1140         ptlrpc_request_set_replen(req);
1141
1142         /* check if this is server or client */
1143         if (cld->cld_cfg.cfg_sb) {
1144                 struct lustre_sb_info *lsi = s2lsi(cld->cld_cfg.cfg_sb);
1145                 if (lsi && IS_SERVER(lsi))
1146                         short_limit = 1;
1147         }
1148         /* Limit how long we will wait for the enqueue to complete */
1149         req->rq_delay_limit = short_limit ? 5 : MGC_ENQUEUE_LIMIT;
1150         rc = ldlm_cli_enqueue(exp, &req, &einfo, &cld->cld_resid, NULL, flags,
1151                               NULL, 0, LVB_T_NONE, lockh, 0);
1152         /* A failed enqueue should still call the mgc_blocking_ast,
1153            where it will be requeued if needed ("grant failed"). */
1154         ptlrpc_req_finished(req);
1155         RETURN(rc);
1156 }
1157
1158 static int mgc_cancel(struct obd_export *exp, enum ldlm_mode mode,
1159                       struct lustre_handle *lockh)
1160 {
1161         ENTRY;
1162
1163         ldlm_lock_decref(lockh, mode);
1164
1165         RETURN(0);
1166 }
1167
1168 static void mgc_notify_active(struct obd_device *unused)
1169 {
1170         /* wakeup mgc_requeue_thread to requeue mgc lock */
1171         spin_lock(&config_list_lock);
1172         rq_state |= RQ_NOW;
1173         spin_unlock(&config_list_lock);
1174         wake_up(&rq_waitq);
1175
1176         /* TODO: Help the MGS rebuild nidtbl. -jay */
1177 }
1178
1179 /* Send target_reg message to MGS */
1180 static int mgc_target_register(struct obd_export *exp,
1181                                struct mgs_target_info *mti)
1182 {
1183         struct ptlrpc_request  *req;
1184         struct mgs_target_info *req_mti, *rep_mti;
1185         int                     rc;
1186         ENTRY;
1187
1188         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
1189                                         &RQF_MGS_TARGET_REG, LUSTRE_MGS_VERSION,
1190                                         MGS_TARGET_REG);
1191         if (req == NULL)
1192                 RETURN(-ENOMEM);
1193
1194         req_mti = req_capsule_client_get(&req->rq_pill, &RMF_MGS_TARGET_INFO);
1195         if (!req_mti) {
1196                 ptlrpc_req_finished(req);
1197                 RETURN(-ENOMEM);
1198         }
1199
1200         memcpy(req_mti, mti, sizeof(*req_mti));
1201         ptlrpc_request_set_replen(req);
1202         CDEBUG(D_MGC, "register %s\n", mti->mti_svname);
1203         /* Limit how long we will wait for the enqueue to complete */
1204         req->rq_delay_limit = MGC_TARGET_REG_LIMIT;
1205
1206         /* if the target needs to regenerate the config log in MGS, it's better
1207          * to use some longer limit to let MGC have time to change connection to
1208          * another MGS (or try again with the same MGS) for the target (server)
1209          * will fail and exit if the request expired due to delay limit. */
1210         if (mti->mti_flags & (LDD_F_UPDATE | LDD_F_NEED_INDEX))
1211                 req->rq_delay_limit = MGC_TARGET_REG_LIMIT_MAX;
1212
1213         rc = ptlrpc_queue_wait(req);
1214         if (!rc) {
1215                 rep_mti = req_capsule_server_get(&req->rq_pill,
1216                                                  &RMF_MGS_TARGET_INFO);
1217                 memcpy(mti, rep_mti, sizeof(*rep_mti));
1218                 CDEBUG(D_MGC, "register %s got index = %d\n",
1219                        mti->mti_svname, mti->mti_stripe_index);
1220         }
1221         ptlrpc_req_finished(req);
1222
1223         RETURN(rc);
1224 }
1225
1226 static int mgc_set_info_async(const struct lu_env *env, struct obd_export *exp,
1227                               u32 keylen, void *key,
1228                               u32 vallen, void *val,
1229                               struct ptlrpc_request_set *set)
1230 {
1231         int rc = -EINVAL;
1232         ENTRY;
1233
1234         /* Turn off initial_recov after we try all backup servers once */
1235         if (KEY_IS(KEY_INIT_RECOV_BACKUP)) {
1236                 struct obd_import *imp = class_exp2cliimp(exp);
1237                 int value;
1238                 if (vallen != sizeof(int))
1239                         RETURN(-EINVAL);
1240                 value = *(int *)val;
1241                 CDEBUG(D_MGC, "InitRecov %s %d/d%d:i%d:r%d:or%d:%s\n",
1242                        imp->imp_obd->obd_name, value,
1243                        imp->imp_deactive, imp->imp_invalid,
1244                        imp->imp_replayable, imp->imp_obd->obd_replayable,
1245                        ptlrpc_import_state_name(imp->imp_state));
1246                 /* Resurrect the import immediately if
1247                  * 1. we previously got disconnected,
1248                  * 2. value > 1 (at the same node with MGS)
1249                  * */
1250                 if (imp->imp_state == LUSTRE_IMP_DISCON || value > 1)
1251                         ptlrpc_reconnect_import(imp);
1252
1253                 RETURN(0);
1254         }
1255
1256         /* FIXME move this to mgc_process_config */
1257         if (KEY_IS(KEY_REGISTER_TARGET)) {
1258                 struct mgs_target_info *mti;
1259                 if (vallen != sizeof(struct mgs_target_info))
1260                         RETURN(-EINVAL);
1261                 mti = (struct mgs_target_info *)val;
1262                 CDEBUG(D_MGC, "register_target %s %#x\n",
1263                        mti->mti_svname, mti->mti_flags);
1264                 rc =  mgc_target_register(exp, mti);
1265                 RETURN(rc);
1266         }
1267         if (KEY_IS(KEY_SET_FS)) {
1268                 struct super_block *sb = (struct super_block *)val;
1269
1270                 if (vallen != sizeof(struct super_block))
1271                         RETURN(-EINVAL);
1272
1273                 rc = mgc_fs_setup(env, exp->exp_obd, sb);
1274                 RETURN(rc);
1275         }
1276         if (KEY_IS(KEY_CLEAR_FS)) {
1277                 if (vallen != 0)
1278                         RETURN(-EINVAL);
1279                 rc = mgc_fs_cleanup(env, exp->exp_obd);
1280                 RETURN(rc);
1281         }
1282 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 13, 53, 0)
1283         if (KEY_IS(KEY_SET_INFO)) {
1284                 struct mgs_send_param *msp;
1285
1286                 msp = (struct mgs_send_param *)val;
1287                 rc =  mgc_set_mgs_param(exp, msp);
1288                 RETURN(rc);
1289         }
1290 #endif
1291         if (KEY_IS(KEY_MGSSEC)) {
1292                 struct client_obd     *cli = &exp->exp_obd->u.cli;
1293                 struct sptlrpc_flavor  flvr;
1294
1295                 /*
1296                  * empty string means using current flavor, if which haven't
1297                  * been set yet, set it as null.
1298                  *
1299                  * if flavor has been set previously, check the asking flavor
1300                  * must match the existing one.
1301                  */
1302                 if (vallen == 0) {
1303                         if (cli->cl_flvr_mgc.sf_rpc != SPTLRPC_FLVR_INVALID)
1304                                 RETURN(0);
1305                         val = "null";
1306                         vallen = 4;
1307                 }
1308
1309                 rc = sptlrpc_parse_flavor(val, &flvr);
1310                 if (rc) {
1311                         CERROR("invalid sptlrpc flavor %s to MGS\n",
1312                                (char *) val);
1313                         RETURN(rc);
1314                 }
1315
1316                 /*
1317                  * caller already hold a mutex
1318                  */
1319                 if (cli->cl_flvr_mgc.sf_rpc == SPTLRPC_FLVR_INVALID) {
1320                         cli->cl_flvr_mgc = flvr;
1321                 } else if (memcmp(&cli->cl_flvr_mgc, &flvr,
1322                                   sizeof(flvr)) != 0) {
1323                         char    str[20];
1324
1325                         sptlrpc_flavor2name(&cli->cl_flvr_mgc,
1326                                             str, sizeof(str));
1327                         LCONSOLE_ERROR("asking sptlrpc flavor %s to MGS but "
1328                                        "currently %s is in use\n",
1329                                        (char *) val, str);
1330                         rc = -EPERM;
1331                 }
1332                 RETURN(rc);
1333         }
1334
1335         RETURN(rc);
1336 }
1337
1338 static int mgc_get_info(const struct lu_env *env, struct obd_export *exp,
1339                         __u32 keylen, void *key, __u32 *vallen, void *val)
1340 {
1341         int rc = -EINVAL;
1342
1343         if (KEY_IS(KEY_CONN_DATA)) {
1344                 struct obd_import *imp = class_exp2cliimp(exp);
1345                 struct obd_connect_data *data = val;
1346
1347                 if (*vallen == sizeof(*data)) {
1348                         *data = imp->imp_connect_data;
1349                         rc = 0;
1350                 }
1351         }
1352
1353         return rc;
1354 }
1355
1356 static int mgc_import_event(struct obd_device *obd,
1357                             struct obd_import *imp,
1358                             enum obd_import_event event)
1359 {
1360         int rc = 0;
1361
1362         LASSERT(imp->imp_obd == obd);
1363         CDEBUG(D_MGC, "import event %#x\n", event);
1364
1365         switch (event) {
1366         case IMP_EVENT_DISCON:
1367                 /* MGC imports should not wait for recovery */
1368                 if (OCD_HAS_FLAG(&imp->imp_connect_data, IMP_RECOV))
1369                         ptlrpc_pinger_ir_down();
1370                 break;
1371         case IMP_EVENT_INACTIVE:
1372                 break;
1373         case IMP_EVENT_INVALIDATE: {
1374                 struct ldlm_namespace *ns = obd->obd_namespace;
1375                 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
1376                 break;
1377         }
1378         case IMP_EVENT_ACTIVE:
1379                 CDEBUG(D_INFO, "%s: Reactivating import\n", obd->obd_name);
1380                 /* Clearing obd_no_recov allows us to continue pinging */
1381                 obd->obd_no_recov = 0;
1382                 mgc_notify_active(obd);
1383                 if (OCD_HAS_FLAG(&imp->imp_connect_data, IMP_RECOV))
1384                         ptlrpc_pinger_ir_up();
1385                 break;
1386         case IMP_EVENT_OCD:
1387                 break;
1388         case IMP_EVENT_DEACTIVATE:
1389         case IMP_EVENT_ACTIVATE:
1390                 break;
1391         default:
1392                 CERROR("Unknown import event %#x\n", event);
1393                 LBUG();
1394         }
1395         RETURN(rc);
1396 }
1397
1398 enum {
1399         CONFIG_READ_NRPAGES_INIT = 1 << (20 - PAGE_SHIFT),
1400         CONFIG_READ_NRPAGES      = 4
1401 };
1402
1403 static int mgc_apply_recover_logs(struct obd_device *mgc,
1404                                   struct config_llog_data *cld,
1405                                   __u64 max_version,
1406                                   void *data, int datalen, bool mne_swab)
1407 {
1408         struct config_llog_instance *cfg = &cld->cld_cfg;
1409         struct lustre_sb_info *lsi = s2lsi(cfg->cfg_sb);
1410         struct mgs_nidtbl_entry *entry;
1411         struct lustre_cfg *lcfg;
1412         struct lustre_cfg_bufs bufs;
1413         u64 prev_version = 0;
1414         char *inst;
1415         char *buf;
1416         int bufsz;
1417         int pos;
1418         int rc  = 0;
1419         int off = 0;
1420
1421         ENTRY;
1422         LASSERT(cfg->cfg_instance != 0);
1423         LASSERT(ll_get_cfg_instance(cfg->cfg_sb) == cfg->cfg_instance);
1424
1425         OBD_ALLOC(inst, PAGE_SIZE);
1426         if (inst == NULL)
1427                 RETURN(-ENOMEM);
1428
1429         if (!IS_SERVER(lsi)) {
1430                 pos = snprintf(inst, PAGE_SIZE, "%016lx", cfg->cfg_instance);
1431                 if (pos >= PAGE_SIZE) {
1432                         OBD_FREE(inst, PAGE_SIZE);
1433                         return -E2BIG;
1434                 }
1435         } else {
1436                 LASSERT(IS_MDT(lsi));
1437                 rc = server_name2svname(lsi->lsi_svname, inst, NULL,
1438                                         PAGE_SIZE);
1439                 if (rc) {
1440                         OBD_FREE(inst, PAGE_SIZE);
1441                         RETURN(-EINVAL);
1442                 }
1443                 pos = strlen(inst);
1444         }
1445
1446         ++pos;
1447         buf   = inst + pos;
1448         bufsz = PAGE_SIZE - pos;
1449
1450         while (datalen > 0) {
1451                 int   entry_len = sizeof(*entry);
1452                 int   is_ost, i;
1453                 struct obd_device *obd;
1454                 char *obdname;
1455                 char *cname;
1456                 char *params;
1457                 char *uuid;
1458
1459                 rc = -EINVAL;
1460                 if (datalen < sizeof(*entry))
1461                         break;
1462
1463                 entry = (typeof(entry))(data + off);
1464
1465                 /* sanity check */
1466                 if (entry->mne_nid_type != 0) /* only support type 0 for ipv4 */
1467                         break;
1468                 if (entry->mne_nid_count == 0) /* at least one nid entry */
1469                         break;
1470                 if (entry->mne_nid_size != sizeof(lnet_nid_t))
1471                         break;
1472
1473                 entry_len += entry->mne_nid_count * entry->mne_nid_size;
1474                 if (datalen < entry_len) /* must have entry_len at least */
1475                         break;
1476
1477                 /* Keep this swab for normal mixed endian handling. LU-1644 */
1478                 if (mne_swab)
1479                         lustre_swab_mgs_nidtbl_entry(entry);
1480                 if (entry->mne_length > PAGE_SIZE) {
1481                         CERROR("MNE too large (%u)\n", entry->mne_length);
1482                         break;
1483                 }
1484
1485                 if (entry->mne_length < entry_len)
1486                         break;
1487
1488                 off     += entry->mne_length;
1489                 datalen -= entry->mne_length;
1490                 if (datalen < 0)
1491                         break;
1492
1493                 if (entry->mne_version > max_version) {
1494                         CERROR("entry index(%lld) is over max_index(%lld)\n",
1495                                entry->mne_version, max_version);
1496                         break;
1497                 }
1498
1499                 if (prev_version >= entry->mne_version) {
1500                         CERROR("index unsorted, prev %lld, now %lld\n",
1501                                prev_version, entry->mne_version);
1502                         break;
1503                 }
1504                 prev_version = entry->mne_version;
1505
1506                 /*
1507                  * Write a string with format "nid::instance" to
1508                  * lustre/<osc|mdc>/<target>-<osc|mdc>-<instance>/import.
1509                  */
1510
1511                 is_ost = entry->mne_type == LDD_F_SV_TYPE_OST;
1512                 memset(buf, 0, bufsz);
1513                 obdname = buf;
1514                 pos = 0;
1515
1516                 /* lustre-OST0001-osc-<instance #> */
1517                 strcpy(obdname, cld->cld_logname);
1518                 cname = strrchr(obdname, '-');
1519                 if (cname == NULL) {
1520                         CERROR("mgc %s: invalid logname %s\n",
1521                                mgc->obd_name, obdname);
1522                         break;
1523                 }
1524
1525                 pos = cname - obdname;
1526                 obdname[pos] = 0;
1527                 pos += sprintf(obdname + pos, "-%s%04x",
1528                                   is_ost ? "OST" : "MDT", entry->mne_index);
1529
1530                 cname = is_ost ? "osc" : "mdc",
1531                 pos += sprintf(obdname + pos, "-%s-%s", cname, inst);
1532                 lustre_cfg_bufs_reset(&bufs, obdname);
1533
1534                 /* find the obd by obdname */
1535                 obd = class_name2obd(obdname);
1536                 if (obd == NULL) {
1537                         CDEBUG(D_INFO, "mgc %s: cannot find obdname %s\n",
1538                                mgc->obd_name, obdname);
1539                         rc = 0;
1540                         /* this is a safe race, when the ost is starting up...*/
1541                         continue;
1542                 }
1543
1544                 /* osc.import = "connection=<Conn UUID>::<target instance>" */
1545                 ++pos;
1546                 params = buf + pos;
1547                 pos += sprintf(params, "%s.import=%s", cname, "connection=");
1548                 uuid = buf + pos;
1549
1550                 down_read(&obd->u.cli.cl_sem);
1551                 if (obd->u.cli.cl_import == NULL) {
1552                         /* client does not connect to the OST yet */
1553                         up_read(&obd->u.cli.cl_sem);
1554                         rc = 0;
1555                         continue;
1556                 }
1557
1558                 /* iterate all nids to find one */
1559                 /* find uuid by nid */
1560                 rc = -ENOENT;
1561                 for (i = 0; i < entry->mne_nid_count; i++) {
1562                         rc = client_import_find_conn(obd->u.cli.cl_import,
1563                                                      entry->u.nids[i],
1564                                                      (struct obd_uuid *)uuid);
1565                         if (rc == 0)
1566                                 break;
1567                 }
1568
1569                 up_read(&obd->u.cli.cl_sem);
1570                 if (rc < 0) {
1571                         CERROR("mgc: cannot find uuid by nid %s\n",
1572                                libcfs_nid2str(entry->u.nids[0]));
1573                         break;
1574                 }
1575
1576                 CDEBUG(D_INFO, "Find uuid %s by nid %s\n",
1577                        uuid, libcfs_nid2str(entry->u.nids[0]));
1578
1579                 pos += strlen(uuid);
1580                 pos += sprintf(buf + pos, "::%u", entry->mne_instance);
1581                 LASSERT(pos < bufsz);
1582
1583                 lustre_cfg_bufs_set_string(&bufs, 1, params);
1584
1585                 OBD_ALLOC(lcfg, lustre_cfg_len(bufs.lcfg_bufcount,
1586                                                bufs.lcfg_buflen));
1587                 if (!lcfg) {
1588                         rc = -ENOMEM;
1589                         break;
1590                 }
1591                 lustre_cfg_init(lcfg, LCFG_PARAM, &bufs);
1592
1593                 CDEBUG(D_INFO, "ir apply logs %lld/%lld for %s -> %s\n",
1594                        prev_version, max_version, obdname, params);
1595
1596                 rc = class_process_config(lcfg);
1597                 OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount,
1598                                               lcfg->lcfg_buflens));
1599                 if (rc)
1600                         CDEBUG(D_INFO, "process config for %s error %d\n",
1601                                obdname, rc);
1602
1603                 /* continue, even one with error */
1604         }
1605
1606         OBD_FREE(inst, PAGE_SIZE);
1607         RETURN(rc);
1608 }
1609
1610 /**
1611  * This function is called if this client was notified for target restarting
1612  * by the MGS. A CONFIG_READ RPC is going to send to fetch recovery or
1613  * nodemap logs.
1614  */
1615 static int mgc_process_recover_nodemap_log(struct obd_device *obd,
1616                                            struct config_llog_data *cld)
1617 {
1618         struct ptlrpc_connection *mgc_conn;
1619         struct ptlrpc_request *req = NULL;
1620         struct config_llog_instance *cfg = &cld->cld_cfg;
1621         struct mgs_config_body *body;
1622         struct mgs_config_res *res;
1623         struct nodemap_config *new_config = NULL;
1624         struct lu_nodemap *recent_nodemap = NULL;
1625         struct ptlrpc_bulk_desc *desc;
1626         struct page **pages = NULL;
1627         __u64 config_read_offset = 0;
1628         __u8 nodemap_cur_pass = 0;
1629         int nrpages = 0;
1630         bool eof = true;
1631         bool mne_swab = false;
1632         int i;
1633         int ealen;
1634         int rc;
1635         ENTRY;
1636
1637         mgc_conn = class_exp2cliimp(cld->cld_mgcexp)->imp_connection;
1638
1639         /* don't need to get local config */
1640         if (cld_is_nodemap(cld) &&
1641             (LNET_NETTYP(LNET_NIDNET(mgc_conn->c_peer.nid)) == LOLND))
1642                 GOTO(out, rc = 0);
1643
1644         /* allocate buffer for bulk transfer.
1645          * if this is the first time for this mgs to read logs,
1646          * CONFIG_READ_NRPAGES_INIT will be used since it will read all logs
1647          * once; otherwise, it only reads increment of logs, this should be
1648          * small and CONFIG_READ_NRPAGES will be used.
1649          */
1650         nrpages = CONFIG_READ_NRPAGES;
1651         if (cfg->cfg_last_idx == 0 || cld_is_nodemap(cld))
1652                 nrpages = CONFIG_READ_NRPAGES_INIT;
1653
1654         OBD_ALLOC(pages, sizeof(*pages) * nrpages);
1655         if (pages == NULL)
1656                 GOTO(out, rc = -ENOMEM);
1657
1658         for (i = 0; i < nrpages; i++) {
1659                 pages[i] = alloc_page(GFP_KERNEL);
1660                 if (pages[i] == NULL)
1661                         GOTO(out, rc = -ENOMEM);
1662         }
1663
1664 again:
1665 #ifdef HAVE_SERVER_SUPPORT
1666         if (cld_is_nodemap(cld) && config_read_offset == 0) {
1667                 new_config = nodemap_config_alloc();
1668                 if (IS_ERR(new_config)) {
1669                         rc = PTR_ERR(new_config);
1670                         new_config = NULL;
1671                         GOTO(out, rc);
1672                 }
1673         }
1674 #endif
1675         LASSERT(cld_is_recover(cld) || cld_is_nodemap(cld));
1676         LASSERT(mutex_is_locked(&cld->cld_lock));
1677         req = ptlrpc_request_alloc(class_exp2cliimp(cld->cld_mgcexp),
1678                                    &RQF_MGS_CONFIG_READ);
1679         if (req == NULL)
1680                 GOTO(out, rc = -ENOMEM);
1681
1682         rc = ptlrpc_request_pack(req, LUSTRE_MGS_VERSION, MGS_CONFIG_READ);
1683         if (rc)
1684                 GOTO(out, rc);
1685
1686         /* pack request */
1687         body = req_capsule_client_get(&req->rq_pill, &RMF_MGS_CONFIG_BODY);
1688         LASSERT(body != NULL);
1689         LASSERT(sizeof(body->mcb_name) > strlen(cld->cld_logname));
1690         if (strlcpy(body->mcb_name, cld->cld_logname, sizeof(body->mcb_name))
1691             >= sizeof(body->mcb_name))
1692                 GOTO(out, rc = -E2BIG);
1693         if (cld_is_nodemap(cld))
1694                 body->mcb_offset = config_read_offset;
1695         else
1696                 body->mcb_offset = cfg->cfg_last_idx + 1;
1697         body->mcb_type   = cld->cld_type;
1698         body->mcb_bits   = PAGE_SHIFT;
1699         body->mcb_units  = nrpages;
1700         body->mcb_nm_cur_pass = nodemap_cur_pass;
1701
1702         /* allocate bulk transfer descriptor */
1703         desc = ptlrpc_prep_bulk_imp(req, nrpages, 1,
1704                                     PTLRPC_BULK_PUT_SINK | PTLRPC_BULK_BUF_KIOV,
1705                                     MGS_BULK_PORTAL,
1706                                     &ptlrpc_bulk_kiov_pin_ops);
1707         if (desc == NULL)
1708                 GOTO(out, rc = -ENOMEM);
1709
1710         for (i = 0; i < nrpages; i++)
1711                 desc->bd_frag_ops->add_kiov_frag(desc, pages[i], 0,
1712                                                  PAGE_SIZE);
1713
1714         ptlrpc_request_set_replen(req);
1715         rc = ptlrpc_queue_wait(req);
1716         if (rc)
1717                 GOTO(out, rc);
1718
1719         res = req_capsule_server_get(&req->rq_pill, &RMF_MGS_CONFIG_RES);
1720         if (!res)
1721                 GOTO(out, rc = -EPROTO);
1722
1723         if (cld_is_nodemap(cld)) {
1724                 config_read_offset = res->mcr_offset;
1725                 eof = config_read_offset == II_END_OFF;
1726                 nodemap_cur_pass = res->mcr_nm_cur_pass;
1727         } else {
1728                 if (res->mcr_size < res->mcr_offset)
1729                         GOTO(out, rc = -EINVAL);
1730
1731                 /* always update the index even though it might have errors with
1732                  * handling the recover logs
1733                  */
1734                 cfg->cfg_last_idx = res->mcr_offset;
1735                 eof = res->mcr_offset == res->mcr_size;
1736
1737                 CDEBUG(D_INFO, "Latest version %lld, more %d.\n",
1738                        res->mcr_offset, eof == false);
1739         }
1740
1741         ealen = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk, 0);
1742         if (ealen < 0)
1743                 GOTO(out, rc = ealen);
1744
1745         if (ealen > nrpages << PAGE_SHIFT)
1746                 GOTO(out, rc = -EINVAL);
1747
1748         if (ealen == 0) { /* no logs transferred */
1749 #ifdef HAVE_SERVER_SUPPORT
1750                 /* config changed since first read RPC */
1751                 if (cld_is_nodemap(cld) && config_read_offset == 0) {
1752                         CDEBUG(D_INFO, "nodemap config changed in transit, retrying\n");
1753                         GOTO(out, rc = -EAGAIN);
1754                 }
1755 #endif
1756                 if (!eof)
1757                         rc = -EINVAL;
1758                 GOTO(out, rc);
1759         }
1760
1761         mne_swab = ptlrpc_rep_need_swab(req);
1762
1763         /* When a nodemap config is received, we build a new nodemap config,
1764          * with new nodemap structs. We keep track of the most recently added
1765          * nodemap since the config is read ordered by nodemap_id, and so it
1766          * is likely that the next record will be related. Because access to
1767          * the nodemaps is single threaded until the nodemap_config is active,
1768          * we don't need to reference count with recent_nodemap, though
1769          * recent_nodemap should be set to NULL when the nodemap_config
1770          * is either destroyed or set active.
1771          */
1772         for (i = 0; i < nrpages && ealen > 0; i++) {
1773                 int rc2;
1774                 union lu_page   *ptr;
1775
1776                 ptr = kmap(pages[i]);
1777                 if (cld_is_nodemap(cld))
1778                         rc2 = nodemap_process_idx_pages(new_config, ptr,
1779                                                        &recent_nodemap);
1780                 else
1781                         rc2 = mgc_apply_recover_logs(obd, cld, res->mcr_offset,
1782                                                      ptr,
1783                                                      min_t(int, ealen,
1784                                                            PAGE_SIZE),
1785                                                      mne_swab);
1786                 kunmap(pages[i]);
1787                 if (rc2 < 0) {
1788                         CWARN("%s: error processing %s log %s: rc = %d\n",
1789                               obd->obd_name,
1790                               cld_is_nodemap(cld) ? "nodemap" : "recovery",
1791                               cld->cld_logname,
1792                               rc2);
1793                         GOTO(out, rc = rc2);
1794                 }
1795
1796                 ealen -= PAGE_SIZE;
1797         }
1798
1799 out:
1800         if (req) {
1801                 ptlrpc_req_finished(req);
1802                 req = NULL;
1803         }
1804
1805         if (rc == 0 && !eof)
1806                 goto again;
1807
1808 #ifdef HAVE_SERVER_SUPPORT
1809         if (new_config != NULL) {
1810                 /* recent_nodemap cannot be used after set_active/dealloc */
1811                 if (rc == 0)
1812                         nodemap_config_set_active_mgc(new_config);
1813                 else
1814                         nodemap_config_dealloc(new_config);
1815         }
1816 #endif
1817
1818         if (pages) {
1819                 for (i = 0; i < nrpages; i++) {
1820                         if (pages[i] == NULL)
1821                                 break;
1822                         __free_page(pages[i]);
1823                 }
1824                 OBD_FREE(pages, sizeof(*pages) * nrpages);
1825         }
1826         return rc;
1827 }
1828
1829 static int mgc_barrier_glimpse_ast(struct ldlm_lock *lock, void *data)
1830 {
1831         struct config_llog_data *cld = lock->l_ast_data;
1832         int rc;
1833         ENTRY;
1834
1835         if (cld->cld_stopping)
1836                 RETURN(-ENODEV);
1837
1838         rc = barrier_handler(s2lsi(cld->cld_cfg.cfg_sb)->lsi_dt_dev,
1839                              (struct ptlrpc_request *)data);
1840
1841         RETURN(rc);
1842 }
1843
1844 /* Copy a remote log locally */
1845 static int mgc_llog_local_copy(const struct lu_env *env,
1846                                struct obd_device *obd,
1847                                struct llog_ctxt *rctxt,
1848                                struct llog_ctxt *lctxt, char *logname)
1849 {
1850         char    *temp_log;
1851         int      rc;
1852
1853         ENTRY;
1854
1855         /*
1856          * - copy it to backup using llog_backup()
1857          * - copy remote llog to logname using llog_backup()
1858          * - if failed then move bakup to logname again
1859          */
1860
1861         OBD_ALLOC(temp_log, strlen(logname) + 2);
1862         if (!temp_log)
1863                 RETURN(-ENOMEM);
1864         sprintf(temp_log, "%sT", logname);
1865
1866         /* make a copy of local llog at first */
1867         rc = llog_backup(env, obd, lctxt, lctxt, logname, temp_log);
1868         if (rc < 0 && rc != -ENOENT)
1869                 GOTO(out, rc);
1870         /* copy remote llog to the local copy */
1871         rc = llog_backup(env, obd, rctxt, lctxt, logname, logname);
1872         if (rc == -ENOENT) {
1873                 /* no remote llog, delete local one too */
1874                 llog_erase(env, lctxt, NULL, logname);
1875         } else if (rc < 0) {
1876                 /* error during backup, get local one back from the copy */
1877                 llog_backup(env, obd, lctxt, lctxt, temp_log, logname);
1878 out:
1879                 CERROR("%s: failed to copy remote log %s: rc = %d\n",
1880                        obd->obd_name, logname, rc);
1881         }
1882         llog_erase(env, lctxt, NULL, temp_log);
1883         OBD_FREE(temp_log, strlen(logname) + 2);
1884         return rc;
1885 }
1886
1887 /* local_only means it cannot get remote llogs */
1888 static int mgc_process_cfg_log(struct obd_device *mgc,
1889                                struct config_llog_data *cld, int local_only)
1890 {
1891         struct llog_ctxt        *ctxt, *lctxt = NULL;
1892         struct client_obd       *cli = &mgc->u.cli;
1893         struct lustre_sb_info   *lsi = NULL;
1894         int                      rc = 0;
1895         struct lu_env           *env;
1896
1897         ENTRY;
1898
1899         LASSERT(cld);
1900         LASSERT(mutex_is_locked(&cld->cld_lock));
1901
1902         if (cld->cld_cfg.cfg_sb)
1903                 lsi = s2lsi(cld->cld_cfg.cfg_sb);
1904
1905         OBD_ALLOC_PTR(env);
1906         if (env == NULL)
1907                 RETURN(-ENOMEM);
1908
1909         rc = lu_env_init(env, LCT_MG_THREAD);
1910         if (rc)
1911                 GOTO(out_free, rc);
1912
1913         ctxt = llog_get_context(mgc, LLOG_CONFIG_REPL_CTXT);
1914         LASSERT(ctxt);
1915
1916         lctxt = llog_get_context(mgc, LLOG_CONFIG_ORIG_CTXT);
1917
1918         /* Copy the setup log locally if we can. Don't mess around if we're
1919          * running an MGS though (logs are already local). */
1920         if (lctxt && lsi && IS_SERVER(lsi) && !IS_MGS(lsi) &&
1921             cli->cl_mgc_configs_dir != NULL &&
1922             lu2dt_dev(cli->cl_mgc_configs_dir->do_lu.lo_dev) ==
1923             lsi->lsi_dt_dev) {
1924                 if (!local_only && !lsi->lsi_dt_dev->dd_rdonly)
1925                         /* Only try to copy log if we have the lock. */
1926                         rc = mgc_llog_local_copy(env, mgc, ctxt, lctxt,
1927                                                  cld->cld_logname);
1928                 if (local_only || rc) {
1929                         if (strcmp(cld->cld_logname, PARAMS_FILENAME) != 0 &&
1930                             llog_is_empty(env, lctxt, cld->cld_logname)) {
1931                                 LCONSOLE_ERROR_MSG(0x13a, "Failed to get MGS "
1932                                                    "log %s and no local copy."
1933                                                    "\n", cld->cld_logname);
1934                                 GOTO(out_pop, rc = -ENOENT);
1935                         }
1936                         CDEBUG(D_MGC, "Failed to get MGS log %s, using local "
1937                                "copy for now, will try to update later.\n",
1938                                cld->cld_logname);
1939                         rc = 0;
1940                 }
1941                 /* Now, whether we copied or not, start using the local llog.
1942                  * If we failed to copy, we'll start using whatever the old
1943                  * log has. */
1944                 llog_ctxt_put(ctxt);
1945                 ctxt = lctxt;
1946                 lctxt = NULL;
1947         } else {
1948                 if (local_only) /* no local log at client side */
1949                         GOTO(out_pop, rc = -EIO);
1950         }
1951
1952         rc = -EAGAIN;
1953         if (lsi && IS_SERVER(lsi) && !IS_MGS(lsi) &&
1954             lsi->lsi_dt_dev->dd_rdonly) {
1955                 struct llog_ctxt *rctxt;
1956
1957                 /* Under readonly mode, we may have no local copy or local
1958                  * copy is incomplete, so try to use remote llog firstly. */
1959                 rctxt = llog_get_context(mgc, LLOG_CONFIG_REPL_CTXT);
1960                 LASSERT(rctxt);
1961
1962                 rc = class_config_parse_llog(env, rctxt, cld->cld_logname,
1963                                              &cld->cld_cfg);
1964                 llog_ctxt_put(rctxt);
1965         }
1966
1967         if (rc && rc != -ENOENT)
1968                 rc = class_config_parse_llog(env, ctxt, cld->cld_logname,
1969                                              &cld->cld_cfg);
1970
1971         /*
1972          * update settings on existing OBDs. doing it inside
1973          * of llog_process_lock so no device is attaching/detaching
1974          * in parallel.
1975          * the logname must be <fsname>-sptlrpc
1976          */
1977         if (rc == 0 && cld_is_sptlrpc(cld))
1978                 class_notify_sptlrpc_conf(cld->cld_logname,
1979                                           strlen(cld->cld_logname) -
1980                                           strlen("-sptlrpc"));
1981         EXIT;
1982
1983 out_pop:
1984         __llog_ctxt_put(env, ctxt);
1985         if (lctxt)
1986                 __llog_ctxt_put(env, lctxt);
1987
1988         lu_env_fini(env);
1989 out_free:
1990         OBD_FREE_PTR(env);
1991         return rc;
1992 }
1993
1994 static bool mgc_import_in_recovery(struct obd_import *imp)
1995 {
1996         bool in_recovery = true;
1997
1998         spin_lock(&imp->imp_lock);
1999         if (imp->imp_state == LUSTRE_IMP_FULL ||
2000             imp->imp_state == LUSTRE_IMP_CLOSED)
2001                 in_recovery = false;
2002         spin_unlock(&imp->imp_lock);
2003
2004         return in_recovery;
2005 }
2006
2007 /**
2008  * Get a configuration log from the MGS and process it.
2009  *
2010  * This function is called for both clients and servers to process the
2011  * configuration log from the MGS.  The MGC enqueues a DLM lock on the
2012  * log from the MGS, and if the lock gets revoked the MGC will be notified
2013  * by the lock cancellation callback that the config log has changed,
2014  * and will enqueue another MGS lock on it, and then continue processing
2015  * the new additions to the end of the log.
2016  *
2017  * Since the MGC import is not replayable, if the import is being evicted
2018  * (rcl == -ESHUTDOWN, \see ptlrpc_import_delay_req()), retry to process
2019  * the log until recovery is finished or the import is closed.
2020  *
2021  * Make a local copy of the log before parsing it if appropriate (non-MGS
2022  * server) so that the server can start even when the MGS is down.
2023  *
2024  * There shouldn't be multiple processes running process_log at once --
2025  * sounds like badness.  It actually might be fine, as long as they're not
2026  * trying to update from the same log simultaneously, in which case we
2027  * should use a per-log semaphore instead of cld_lock.
2028  *
2029  * \param[in] mgc       MGC device by which to fetch the configuration log
2030  * \param[in] cld       log processing state (stored in lock callback data)
2031  *
2032  * \retval              0 on success
2033  * \retval              negative errno on failure
2034  */
2035 int mgc_process_log(struct obd_device *mgc, struct config_llog_data *cld)
2036 {
2037         struct lustre_handle lockh = { 0 };
2038         __u64 flags = LDLM_FL_NO_LRU;
2039         int rc = 0, rcl;
2040         bool retry = false;
2041         ENTRY;
2042
2043         LASSERT(cld != NULL);
2044
2045         /* I don't want multiple processes running process_log at once --
2046            sounds like badness.  It actually might be fine, as long as
2047            we're not trying to update from the same log
2048            simultaneously (in which case we should use a per-log sem.) */
2049 restart:
2050         mutex_lock(&cld->cld_lock);
2051         if (cld->cld_stopping) {
2052                 mutex_unlock(&cld->cld_lock);
2053                 RETURN(0);
2054         }
2055
2056         OBD_FAIL_TIMEOUT(OBD_FAIL_MGC_PAUSE_PROCESS_LOG, 20);
2057
2058         CDEBUG(D_MGC, "Process log %s-%016lx from %d\n", cld->cld_logname,
2059                cld->cld_cfg.cfg_instance, cld->cld_cfg.cfg_last_idx + 1);
2060
2061         /* Get the cfg lock on the llog */
2062         rcl = mgc_enqueue(mgc->u.cli.cl_mgc_mgsexp, LDLM_PLAIN, NULL,
2063                           LCK_CR, &flags,
2064                           cld_is_barrier(cld) ? mgc_barrier_glimpse_ast : NULL,
2065                           cld, 0, NULL, &lockh);
2066         if (rcl == 0) {
2067                 /* Get the cld, it will be released in mgc_blocking_ast. */
2068                 config_log_get(cld);
2069                 rc = ldlm_lock_set_data(&lockh, (void *)cld);
2070                 LASSERT(rc == 0);
2071         } else {
2072                 CDEBUG(D_MGC, "Can't get cfg lock: %d\n", rcl);
2073
2074                 if (rcl == -ESHUTDOWN &&
2075                     atomic_read(&mgc->u.cli.cl_mgc_refcount) > 0 && !retry) {
2076                         struct obd_import *imp;
2077                         struct l_wait_info lwi;
2078                         int secs = cfs_time_seconds(obd_timeout);
2079
2080                         mutex_unlock(&cld->cld_lock);
2081                         imp = class_exp2cliimp(mgc->u.cli.cl_mgc_mgsexp);
2082
2083                         /* Let's force the pinger, and wait the import to be
2084                          * connected, note: since mgc import is non-replayable,
2085                          * and even the import state is disconnected, it does
2086                          * not mean the "recovery" is stopped, so we will keep
2087                          * waitting until timeout or the import state is
2088                          * FULL or closed */
2089                         ptlrpc_pinger_force(imp);
2090
2091                         lwi = LWI_TIMEOUT(secs, NULL, NULL);
2092                         l_wait_event(imp->imp_recovery_waitq,
2093                                      !mgc_import_in_recovery(imp), &lwi);
2094
2095                         if (imp->imp_state == LUSTRE_IMP_FULL) {
2096                                 retry = true;
2097                                 goto restart;
2098                         } else {
2099                                 mutex_lock(&cld->cld_lock);
2100                                 /* unlock/lock mutex, so check stopping again */
2101                                 if (cld->cld_stopping) {
2102                                         mutex_unlock(&cld->cld_lock);
2103                                         RETURN(0);
2104                                 }
2105                                 spin_lock(&config_list_lock);
2106                                 cld->cld_lostlock = 1;
2107                                 spin_unlock(&config_list_lock);
2108                         }
2109                 } else {
2110                         /* mark cld_lostlock so that it will requeue
2111                          * after MGC becomes available. */
2112                         spin_lock(&config_list_lock);
2113                         cld->cld_lostlock = 1;
2114                         spin_unlock(&config_list_lock);
2115                 }
2116         }
2117
2118         if (cld_is_recover(cld) || cld_is_nodemap(cld)) {
2119                 if (!rcl)
2120                         rc = mgc_process_recover_nodemap_log(mgc, cld);
2121                 else if (cld_is_nodemap(cld))
2122                         rc = rcl;
2123
2124                 if (cld_is_recover(cld) && rc) {
2125                         if (!rcl) {
2126                                 CERROR("%s: recover log %s failed, not fatal: rc = %d\n",
2127                                        mgc->obd_name, cld->cld_logname, rc);
2128                                 spin_lock(&config_list_lock);
2129                                 cld->cld_lostlock = 1;
2130                                 spin_unlock(&config_list_lock);
2131                         }
2132                         rc = 0; /* this is not a fatal error for recover log */
2133                 }
2134         } else if (!cld_is_barrier(cld)) {
2135                 rc = mgc_process_cfg_log(mgc, cld, rcl != 0);
2136         }
2137
2138         CDEBUG(D_MGC, "%s: configuration from log '%s' %sed (%d).\n",
2139                mgc->obd_name, cld->cld_logname, rc ? "fail" : "succeed", rc);
2140
2141         mutex_unlock(&cld->cld_lock);
2142
2143         /* Now drop the lock so MGS can revoke it */
2144         if (!rcl) {
2145                 rcl = mgc_cancel(mgc->u.cli.cl_mgc_mgsexp, LCK_CR, &lockh);
2146                 if (rcl)
2147                         CERROR("Can't drop cfg lock: %d\n", rcl);
2148         }
2149
2150         /* requeue nodemap lock immediately if transfer was interrupted */
2151         if (cld_is_nodemap(cld) && rc == -EAGAIN) {
2152                 mgc_requeue_add(cld);
2153                 rc = 0;
2154         }
2155
2156         RETURN(rc);
2157 }
2158
2159
2160 /** Called from lustre_process_log.
2161  * LCFG_LOG_START gets the config log from the MGS, processes it to start
2162  * any services, and adds it to the list logs to watch (follow).
2163  */
2164 static int mgc_process_config(struct obd_device *obd, size_t len, void *buf)
2165 {
2166         struct lustre_cfg *lcfg = buf;
2167         struct config_llog_instance *cfg = NULL;
2168         char *logname;
2169         int rc = 0;
2170         ENTRY;
2171
2172         switch(lcfg->lcfg_command) {
2173         case LCFG_LOV_ADD_OBD: {
2174                 /* Overloading this cfg command: register a new target */
2175                 struct mgs_target_info *mti;
2176
2177                 if (LUSTRE_CFG_BUFLEN(lcfg, 1) !=
2178                     sizeof(struct mgs_target_info))
2179                         GOTO(out, rc = -EINVAL);
2180
2181                 mti = (struct mgs_target_info *)lustre_cfg_buf(lcfg, 1);
2182                 CDEBUG(D_MGC, "add_target %s %#x\n",
2183                        mti->mti_svname, mti->mti_flags);
2184                 rc = mgc_target_register(obd->u.cli.cl_mgc_mgsexp, mti);
2185                 break;
2186         }
2187         case LCFG_LOV_DEL_OBD:
2188                 /* Unregister has no meaning at the moment. */
2189                 CERROR("lov_del_obd unimplemented\n");
2190                 rc = -ENOSYS;
2191                 break;
2192         case LCFG_SPTLRPC_CONF: {
2193                 rc = sptlrpc_process_config(lcfg);
2194                 break;
2195         }
2196         case LCFG_LOG_START: {
2197                 struct config_llog_data *cld;
2198                 struct super_block *sb;
2199
2200                 logname = lustre_cfg_string(lcfg, 1);
2201                 cfg = (struct config_llog_instance *)lustre_cfg_buf(lcfg, 2);
2202                 sb = *(struct super_block **)lustre_cfg_buf(lcfg, 3);
2203
2204                 CDEBUG(D_MGC, "parse_log %s from %d\n", logname,
2205                        cfg->cfg_last_idx);
2206
2207                 /* We're only called through here on the initial mount */
2208                 cld = config_log_add(obd, logname, cfg, sb);
2209                 if (IS_ERR(cld)) {
2210                         rc = PTR_ERR(cld);
2211                         break;
2212                 }
2213
2214                 rc = mgc_process_log(obd, cld);
2215                 if (rc == 0 && cld->cld_recover != NULL) {
2216                         if (OCD_HAS_FLAG(&obd->u.cli.cl_import->
2217                                          imp_connect_data, IMP_RECOV)) {
2218                                 rc = mgc_process_log(obd, cld->cld_recover);
2219                         } else {
2220                                 struct config_llog_data *cir;
2221
2222                                 mutex_lock(&cld->cld_lock);
2223                                 cir = cld->cld_recover;
2224                                 cld->cld_recover = NULL;
2225                                 mutex_unlock(&cld->cld_lock);
2226                                 config_log_put(cir);
2227                         }
2228
2229                         if (rc)
2230                                 CERROR("Cannot process recover llog %d\n", rc);
2231                 }
2232
2233                 if (rc == 0 && cld->cld_params != NULL) {
2234                         rc = mgc_process_log(obd, cld->cld_params);
2235                         if (rc == -ENOENT) {
2236                                 CDEBUG(D_MGC, "There is no params "
2237                                               "config file yet\n");
2238                                 rc = 0;
2239                         }
2240                         /* params log is optional */
2241                         if (rc)
2242                                 CERROR("%s: can't process params llog: rc = %d\n",
2243                                        obd->obd_name, rc);
2244                 }
2245
2246                 break;
2247         }
2248         case LCFG_LOG_END: {
2249                 logname = lustre_cfg_string(lcfg, 1);
2250
2251                 if (lcfg->lcfg_bufcount >= 2)
2252                         cfg = (struct config_llog_instance *)lustre_cfg_buf(
2253                                 lcfg, 2);
2254                 rc = config_log_end(logname, cfg);
2255                 break;
2256         }
2257         default: {
2258                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
2259                 GOTO(out, rc = -EINVAL);
2260
2261         }
2262         }
2263 out:
2264         RETURN(rc);
2265 }
2266
2267 static struct obd_ops mgc_obd_ops = {
2268         .o_owner        = THIS_MODULE,
2269         .o_setup        = mgc_setup,
2270         .o_precleanup   = mgc_precleanup,
2271         .o_cleanup      = mgc_cleanup,
2272         .o_add_conn     = client_import_add_conn,
2273         .o_del_conn     = client_import_del_conn,
2274         .o_connect      = client_connect_import,
2275         .o_disconnect   = client_disconnect_export,
2276         .o_set_info_async = mgc_set_info_async,
2277         .o_get_info       = mgc_get_info,
2278         .o_import_event = mgc_import_event,
2279         .o_process_config = mgc_process_config,
2280 };
2281
2282 static int __init mgc_init(void)
2283 {
2284         return class_register_type(&mgc_obd_ops, NULL, false, NULL,
2285                                    LUSTRE_MGC_NAME, NULL);
2286 }
2287
2288 static void __exit mgc_exit(void)
2289 {
2290         class_unregister_type(LUSTRE_MGC_NAME);
2291 }
2292
2293 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
2294 MODULE_DESCRIPTION("Lustre Management Client");
2295 MODULE_VERSION(LUSTRE_VERSION_STRING);
2296 MODULE_LICENSE("GPL");
2297
2298 module_init(mgc_init);
2299 module_exit(mgc_exit);