Whamcloud - gitweb
LU-8837 lod: move lod-specifc pool config code into lod_dev
[fs/lustre-release.git] / lustre / obdclass / obd_config.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) 2003, 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/obdclass/obd_config.c
33  *
34  * Config API
35  */
36
37 #define DEBUG_SUBSYSTEM S_CLASS
38
39 #include <linux/kobject.h>
40 #include <linux/string.h>
41
42 #include <llog_swab.h>
43 #include <lprocfs_status.h>
44 #include <lustre_disk.h>
45 #include <uapi/linux/lustre/lustre_ioctl.h>
46 #include <lustre_log.h>
47 #include <uapi/linux/lustre/lustre_param.h>
48 #include <obd_class.h>
49
50 #include "llog_internal.h"
51
52 #ifdef HAVE_SERVER_SUPPORT
53 static struct cfs_hash_ops nid_stat_hash_ops;
54 static struct cfs_hash_ops gen_hash_ops;
55 #endif /* HAVE_SERVER_SUPPORT */
56
57 /*
58  * uuid<->export lustre hash operations
59  */
60 /*
61  * NOTE: It is impossible to find an export that is in failed
62  *      state with this function
63  */
64 static int
65 uuid_keycmp(struct rhashtable_compare_arg *arg, const void *obj)
66 {
67         const struct obd_uuid *uuid = arg->key;
68         const struct obd_export *exp = obj;
69
70         if (obd_uuid_equals(uuid, &exp->exp_client_uuid) &&
71             !exp->exp_failed)
72                 return 0;
73         return -ESRCH;
74 }
75
76 static void
77 obd_export_exit(void *vexport, void *data)
78 {
79         struct obd_export *exp = vexport;
80
81         class_export_put(exp);
82 }
83
84 static const struct rhashtable_params uuid_hash_params = {
85         .key_len        = sizeof(struct obd_uuid),
86         .key_offset     = offsetof(struct obd_export, exp_client_uuid),
87         .head_offset    = offsetof(struct obd_export, exp_uuid_hash),
88         .obj_cmpfn      = uuid_keycmp,
89         .max_size       = MAX_OBD_DEVICES,
90         .automatic_shrinking = true,
91 };
92
93 int obd_uuid_add(struct obd_device *obd, struct obd_export *export)
94 {
95         int rc;
96
97         class_export_get(export);
98         rcu_read_lock();
99         rc = rhashtable_lookup_insert_fast(&obd->obd_uuid_hash,
100                                            &export->exp_uuid_hash,
101                                            uuid_hash_params);
102         if (rc) {
103                 class_export_put(export);
104                 if (rc != -EEXIST) {
105                         /* map obscure error codes to -ENOMEM */
106                         rc = -ENOMEM;
107                 } else {
108                         rc = -EALREADY;
109                 }
110         }
111         rcu_read_unlock();
112
113         return rc;
114 }
115 EXPORT_SYMBOL(obd_uuid_add);
116
117 void obd_uuid_del(struct obd_device *obd, struct obd_export *export)
118 {
119         int rc;
120
121         rcu_read_lock();
122         rc = rhashtable_remove_fast(&obd->obd_uuid_hash,
123                                     &export->exp_uuid_hash,
124                                     uuid_hash_params);
125         if (!rc)
126                 class_export_put(export);
127         rcu_read_unlock();
128 }
129 EXPORT_SYMBOL(obd_uuid_del);
130
131 #ifdef HAVE_SERVER_SUPPORT
132 /* obd_uuid_lookup() is used only server side by target_handle_connect(),
133  * mdt_hsm_agent_send(), and obd_export_evict_by_uuid().
134  */
135 struct obd_export *obd_uuid_lookup(struct obd_device *obd,
136                                    struct obd_uuid *uuid)
137 {
138         struct obd_export *export = NULL;
139
140         rcu_read_lock();
141         export = rhashtable_lookup_fast(&obd->obd_uuid_hash, uuid,
142                                         uuid_hash_params);
143         if (export && !refcount_inc_not_zero(&export->exp_handle.h_ref))
144                 export = NULL;
145         rcu_read_unlock();
146
147         return export;
148 }
149 EXPORT_SYMBOL(obd_uuid_lookup);
150
151 /*
152  * nid<->export hash operations
153  */
154 static u32 nid_keyhash(const void *data, u32 key_len, u32 seed)
155 {
156         const struct obd_export *exp = data;
157         void *key;
158
159         if (!exp->exp_connection)
160                 return 0;
161
162         key = &exp->exp_connection->c_peer.nid;
163         return jhash2(key, key_len / sizeof(u32), seed);
164 }
165
166 /*
167  * NOTE: It is impossible to find an export that is in failed
168  *       state with this function
169  */
170 static int
171 nid_keycmp(struct rhashtable_compare_arg *arg, const void *obj)
172 {
173         const lnet_nid_t *nid = arg->key;
174         const struct obd_export *exp = obj;
175
176         if (exp->exp_connection->c_peer.nid == *nid)
177                 return 0;
178
179         return -ESRCH;
180 }
181
182 static void
183 nid_export_exit(void *vexport, void *data)
184 {
185         struct obd_export *exp = vexport;
186
187         class_export_put(exp);
188 }
189
190 static const struct rhashtable_params nid_hash_params = {
191         .key_len                = sizeof(lnet_nid_t),
192         .head_offset            = offsetof(struct obd_export, exp_nid_hash),
193         .obj_hashfn             = nid_keyhash,
194         .obj_cmpfn              = nid_keycmp,
195         .automatic_shrinking    = true,
196 };
197
198 int obd_nid_add(struct obd_device *obd, struct obd_export *exp)
199 {
200         int rc;
201
202         if (exp == exp->exp_obd->obd_self_export || exp->exp_hashed)
203                 return 0;
204
205         class_export_get(exp);
206         rc = rhltable_insert_key(&obd->obd_nid_hash,
207                                  &exp->exp_connection->c_peer.nid,
208                                  &exp->exp_nid_hash,
209                                  nid_hash_params);
210         if (rc) {
211                 class_export_put(exp);
212                 /* map obscure error codes to -ENOMEM */
213                 rc = -ENOMEM;
214         } else {
215                 exp->exp_hashed = 1;
216         }
217         return rc;
218 }
219 EXPORT_SYMBOL(obd_nid_add);
220
221 void obd_nid_del(struct obd_device *obd, struct obd_export *exp)
222 {
223         int rc;
224
225         if (exp == exp->exp_obd->obd_self_export || !exp->exp_hashed)
226                 return;
227
228         rc = rhltable_remove(&obd->obd_nid_hash, &exp->exp_nid_hash,
229                              nid_hash_params);
230         if (rc == 0) {
231                 class_export_put(exp);
232                 exp->exp_hashed = 0;
233         }
234 }
235 EXPORT_SYMBOL(obd_nid_del);
236
237 int obd_nid_export_for_each(struct obd_device *obd, lnet_nid_t nid,
238                             int cb(struct obd_export *exp, void *data),
239                             void *data)
240 {
241         struct rhlist_head *exports, *tmp;
242         struct obd_export *exp;
243         int ret = 0;
244
245         rcu_read_lock();
246         exports = rhltable_lookup(&obd->obd_nid_hash, &nid, nid_hash_params);
247         if (!exports) {
248                 ret = -ENODEV;
249                 goto out_unlock;
250         }
251
252         rhl_for_each_entry_rcu(exp, tmp, exports, exp_nid_hash) {
253                 if (!exp->exp_failed && cb(exp, data))
254                         ret++;
255         }
256
257 out_unlock:
258         rcu_read_unlock();
259         return ret;
260 }
261 EXPORT_SYMBOL(obd_nid_export_for_each);
262 #endif /* HAVE_SERVER_SUPPORT */
263
264 /*********** string parsing utils *********/
265
266 /* returns 0 if we find this key in the buffer, else 1 */
267 int class_find_param(char *buf, char *key, char **valp)
268 {
269         char *ptr;
270
271         if (!buf)
272                 return 1;
273
274         ptr = strstr(buf, key);
275         if (!ptr)
276                 return 1;
277
278         if (valp)
279                 *valp = ptr + strlen(key);
280
281         return 0;
282 }
283 EXPORT_SYMBOL(class_find_param);
284
285 /**
286  * Check whether the proc parameter \a param is an old parameter or not from
287  * the array \a ptr which contains the mapping from old parameters to new ones.
288  * If it's an old one, then return the pointer to the cfg_interop_param struc-
289  * ture which contains both the old and new parameters.
290  *
291  * \param param                 proc parameter
292  * \param ptr                   an array which contains the mapping from
293  *                              old parameters to new ones
294  *
295  * \retval valid-pointer        pointer to the cfg_interop_param structure
296  *                              which contains the old and new parameters
297  * \retval NULL                 \a param or \a ptr is NULL,
298  *                              or \a param is not an old parameter
299  */
300 struct cfg_interop_param *class_find_old_param(const char *param,
301                                                struct cfg_interop_param *ptr)
302 {
303         char *value = NULL;
304         int   name_len = 0;
305
306         if (!param || !ptr)
307                 RETURN(NULL);
308
309         value = strchr(param, '=');
310         if (value)
311                 name_len = value - param;
312         else
313                 name_len = strlen(param);
314
315         while (ptr->old_param) {
316                 if (strncmp(param, ptr->old_param, name_len) == 0 &&
317                     name_len == strlen(ptr->old_param))
318                         RETURN(ptr);
319                 ptr++;
320         }
321
322         RETURN(NULL);
323 }
324 EXPORT_SYMBOL(class_find_old_param);
325
326 /**
327  * Finds a parameter in \a params and copies it to \a copy.
328  *
329  * Leading spaces are skipped. Next space or end of string is the
330  * parameter terminator with the exception that spaces inside single or double
331  * quotes get included into a parameter. The parameter is copied into \a copy
332  * which has to be allocated big enough by a caller, quotes are stripped in
333  * the copy and the copy is terminated by 0.
334  *
335  * On return \a params is set to next parameter or to NULL if last
336  * parameter is returned.
337  *
338  * \retval 0 if parameter is returned in \a copy
339  * \retval 1 otherwise
340  * \retval -EINVAL if unbalanced quota is found
341  */
342 int class_get_next_param(char **params, char *copy)
343 {
344         char *q1, *q2, *str;
345         int len;
346
347         str = *params;
348         while (*str == ' ')
349                 str++;
350
351         if (*str == '\0') {
352                 *params = NULL;
353                 return 1;
354         }
355
356         while (1) {
357                 q1 = strpbrk(str, " '\"");
358                 if (!q1) {
359                         len = strlen(str);
360                         memcpy(copy, str, len);
361                         copy[len] = '\0';
362                         *params = NULL;
363                         return 0;
364                 }
365                 len = q1 - str;
366                 if (*q1 == ' ') {
367                         memcpy(copy, str, len);
368                         copy[len] = '\0';
369                         *params = str + len;
370                         return 0;
371                 }
372
373                 memcpy(copy, str, len);
374                 copy += len;
375
376                 /* search for the matching closing quote */
377                 str = q1 + 1;
378                 q2 = strchr(str, *q1);
379                 if (!q2) {
380                         CERROR("Unbalanced quota in parameters: \"%s\"\n",
381                                *params);
382                         return -EINVAL;
383                 }
384                 len = q2 - str;
385                 memcpy(copy, str, len);
386                 copy += len;
387                 str = q2 + 1;
388         }
389         return 1;
390 }
391 EXPORT_SYMBOL(class_get_next_param);
392
393 /*
394  * returns 0 if this is the first key in the buffer, else 1.
395  * valp points to first char after key.
396  */
397 int class_match_param(char *buf, const char *key, char **valp)
398 {
399         if (!buf)
400                 return 1;
401
402         if (memcmp(buf, key, strlen(key)) != 0)
403                 return 1;
404
405         if (valp)
406                 *valp = buf + strlen(key);
407
408         return 0;
409 }
410 EXPORT_SYMBOL(class_match_param);
411
412 static int parse_nid(char *buf, void *value, int quiet)
413 {
414         lnet_nid_t *nid = (lnet_nid_t *)value;
415
416         *nid = libcfs_str2nid(buf);
417         if (*nid != LNET_NID_ANY)
418                 return 0;
419
420         if (!quiet)
421                 LCONSOLE_ERROR_MSG(0x159, "Can't parse NID '%s'\n", buf);
422         return -EINVAL;
423 }
424
425 static int parse_net(char *buf, void *value)
426 {
427         __u32 *net = (__u32 *)value;
428
429         *net = libcfs_str2net(buf);
430         CDEBUG(D_INFO, "Net %s\n", libcfs_net2str(*net));
431         return 0;
432 }
433
434 enum {
435         CLASS_PARSE_NID = 1,
436         CLASS_PARSE_NET,
437 };
438
439 /*
440  * 0 is good NID,
441  * 1 not found
442  * < 0 error
443  * endh is set to next separator
444  */
445 static int class_parse_value(char *buf, int opc, void *value, char **endh,
446                              int quiet)
447 {
448         char *endp;
449         char  tmp;
450         int   rc = 0;
451
452         if (!buf)
453                 return 1;
454         while (*buf == ',' || *buf == ':')
455                 buf++;
456         if (*buf == ' ' || *buf == '/' || *buf == '\0')
457                 return 1;
458
459         /* NID separators or end of NIDs */
460         endp = strpbrk(buf, ",: /");
461         if (!endp)
462                 endp = buf + strlen(buf);
463
464         tmp = *endp;
465         *endp = '\0';
466         switch (opc) {
467         default:
468                 LBUG();
469         case CLASS_PARSE_NID:
470                 rc = parse_nid(buf, value, quiet);
471                 break;
472         case CLASS_PARSE_NET:
473                 rc = parse_net(buf, value);
474                 break;
475         }
476         *endp = tmp;
477         if (rc != 0)
478                 return rc;
479         if (endh)
480                 *endh = endp;
481         return 0;
482 }
483
484 int class_parse_nid(char *buf, lnet_nid_t *nid, char **endh)
485 {
486         return class_parse_value(buf, CLASS_PARSE_NID, (void *)nid, endh, 0);
487 }
488 EXPORT_SYMBOL(class_parse_nid);
489
490 int class_parse_nid_quiet(char *buf, lnet_nid_t *nid, char **endh)
491 {
492         return class_parse_value(buf, CLASS_PARSE_NID, (void *)nid, endh, 1);
493 }
494 EXPORT_SYMBOL(class_parse_nid_quiet);
495
496 int class_parse_net(char *buf, __u32 *net, char **endh)
497 {
498         return class_parse_value(buf, CLASS_PARSE_NET, (void *)net, endh, 0);
499 }
500
501 /*
502  * 1 param contains key and match
503  * 0 param contains key and not match
504  * -1 param does not contain key
505  */
506 int class_match_nid(char *buf, char *key, lnet_nid_t nid)
507 {
508         lnet_nid_t tmp;
509         int rc = -1;
510
511         while (class_find_param(buf, key, &buf) == 0) {
512                 /*
513                  * please restrict to the NIDs pertaining to
514                  * the specified NIDs
515                  */
516                 while (class_parse_nid(buf, &tmp, &buf) == 0) {
517                         if (tmp == nid)
518                                 return 1;
519                 }
520                 rc = 0;
521         }
522         return rc;
523 }
524
525 int class_match_net(char *buf, char *key, __u32 net)
526 {
527         __u32 tmp;
528         int rc = -1;
529
530         while (class_find_param(buf, key, &buf) == 0) {
531                 /*
532                  * please restrict to the NIDs pertaining to
533                  * the specified networks
534                  */
535                 while (class_parse_net(buf, &tmp, &buf) == 0) {
536                         if (tmp == net)
537                                 return 1;
538                 }
539                 rc = 0;
540         }
541         return rc;
542 }
543
544 char *lustre_cfg_string(struct lustre_cfg *lcfg, u32 index)
545 {
546         char *s;
547
548         if (!lcfg->lcfg_buflens[index])
549                 return NULL;
550
551         s = lustre_cfg_buf(lcfg, index);
552         if (!s)
553                 return NULL;
554
555         /*
556          * make sure it's NULL terminated, even if this kills a char
557          * of data.  Try to use the padding first though.
558          */
559         if (s[lcfg->lcfg_buflens[index] - 1] != '\0') {
560                 size_t last = ALIGN(lcfg->lcfg_buflens[index], 8) - 1;
561                 char lost;
562
563                 /* Use the smaller value */
564                 if (last > lcfg->lcfg_buflens[index])
565                         last = lcfg->lcfg_buflens[index];
566
567                 lost = s[last];
568                 s[last] = '\0';
569                 if (lost != '\0') {
570                         CWARN("Truncated buf %d to '%s' (lost '%c'...)\n",
571                               index, s, lost);
572                 }
573         }
574         return s;
575 }
576 EXPORT_SYMBOL(lustre_cfg_string);
577
578 /********************** class fns **********************/
579
580 /**
581  * Create a new OBD device and set the type, name and uuid.  If successful,
582  * the new device can be accessed by either name or uuid.
583  */
584 int class_attach(struct lustre_cfg *lcfg)
585 {
586         struct obd_export *exp;
587         struct obd_device *obd = NULL;
588         char *typename, *name, *uuid;
589         int rc, len;
590
591         ENTRY;
592
593         if (!LUSTRE_CFG_BUFLEN(lcfg, 1)) {
594                 CERROR("No type passed!\n");
595                 RETURN(-EINVAL);
596         }
597         typename = lustre_cfg_string(lcfg, 1);
598
599         if (!LUSTRE_CFG_BUFLEN(lcfg, 0)) {
600                 CERROR("No name passed!\n");
601                 RETURN(-EINVAL);
602         }
603         name = lustre_cfg_string(lcfg, 0);
604         if (!LUSTRE_CFG_BUFLEN(lcfg, 2)) {
605                 CERROR("No UUID passed!\n");
606                 RETURN(-EINVAL);
607         }
608
609         uuid = lustre_cfg_string(lcfg, 2);
610         len = strlen(uuid);
611         if (len >= sizeof(obd->obd_uuid)) {
612                 CERROR("%s: uuid must be < %d bytes long\n",
613                        name, (int)sizeof(obd->obd_uuid));
614                 RETURN(-EINVAL);
615         }
616
617         obd = class_newdev(typename, name, uuid);
618         if (IS_ERR(obd)) { /* Already exists or out of obds */
619                 rc = PTR_ERR(obd);
620                 CERROR("Cannot create device %s of type %s : %d\n",
621                        name, typename, rc);
622                 RETURN(rc);
623         }
624         LASSERTF(obd->obd_magic == OBD_DEVICE_MAGIC,
625                  "obd %p obd_magic %08X != %08X\n",
626                  obd, obd->obd_magic, OBD_DEVICE_MAGIC);
627         LASSERTF(strncmp(obd->obd_name, name, strlen(name)) == 0,
628                  "%p obd_name %s != %s\n", obd, obd->obd_name, name);
629
630         exp = class_new_export_self(obd, &obd->obd_uuid);
631         if (IS_ERR(exp)) {
632                 rc = PTR_ERR(exp);
633                 class_free_dev(obd);
634                 RETURN(rc);
635         }
636
637         obd->obd_self_export = exp;
638         list_del_init(&exp->exp_obd_chain_timed);
639         class_export_put(exp);
640
641         rc = class_register_device(obd);
642         if (rc != 0) {
643                 class_decref(obd, "newdev", obd);
644                 RETURN(rc);
645         }
646
647         obd->obd_attached = 1;
648         CDEBUG(D_IOCTL, "OBD: dev %d attached type %s with refcount %d\n",
649                obd->obd_minor, typename, atomic_read(&obd->obd_refcount));
650
651         RETURN(0);
652 }
653 EXPORT_SYMBOL(class_attach);
654
655 /**
656  * Create hashes, self-export, and call type-specific setup.
657  * Setup is effectively the "start this obd" call.
658  */
659 int class_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
660 {
661         int err = 0;
662
663         ENTRY;
664
665         LASSERT(obd != NULL);
666         LASSERTF(obd == class_num2obd(obd->obd_minor),
667                  "obd %p != obd_devs[%d] %p\n",
668                  obd, obd->obd_minor, class_num2obd(obd->obd_minor));
669         LASSERTF(obd->obd_magic == OBD_DEVICE_MAGIC,
670                  "obd %p obd_magic %08x != %08x\n",
671                  obd, obd->obd_magic, OBD_DEVICE_MAGIC);
672
673         /* have we attached a type to this device? */
674         if (!obd->obd_attached) {
675                 CERROR("Device %d not attached\n", obd->obd_minor);
676                 RETURN(-ENODEV);
677         }
678
679         if (obd->obd_set_up) {
680                 CERROR("Device %d already setup (type %s)\n",
681                        obd->obd_minor, obd->obd_type->typ_name);
682                 RETURN(-EEXIST);
683         }
684
685         /* is someone else setting us up right now? (attach inits spinlock) */
686         spin_lock(&obd->obd_dev_lock);
687         if (obd->obd_starting) {
688                 spin_unlock(&obd->obd_dev_lock);
689                 CERROR("Device %d setup in progress (type %s)\n",
690                        obd->obd_minor, obd->obd_type->typ_name);
691                 RETURN(-EEXIST);
692         }
693         /*
694          * just leave this on forever.  I can't use obd_set_up here because
695          * other fns check that status, and we're not actually set up yet.
696          */
697         obd->obd_starting = 1;
698         obd->obd_nid_stats_hash = NULL;
699         obd->obd_gen_hash = NULL;
700         spin_unlock(&obd->obd_dev_lock);
701
702         /* create an uuid-export lustre hash */
703         err = rhashtable_init(&obd->obd_uuid_hash, &uuid_hash_params);
704         if (err)
705                 GOTO(err_starting, err);
706
707 #ifdef HAVE_SERVER_SUPPORT
708         /* create a nid-export lustre hash */
709         err = rhltable_init(&obd->obd_nid_hash, &nid_hash_params);
710         if (err)
711                 GOTO(err_uuid_hash, err = -ENOMEM);
712
713         /* create a nid-stats lustre hash */
714         obd->obd_nid_stats_hash = cfs_hash_create("NID_STATS",
715                                                   HASH_NID_STATS_CUR_BITS,
716                                                   HASH_NID_STATS_MAX_BITS,
717                                                   HASH_NID_STATS_BKT_BITS, 0,
718                                                   CFS_HASH_MIN_THETA,
719                                                   CFS_HASH_MAX_THETA,
720                                                   &nid_stat_hash_ops,
721                                                   CFS_HASH_DEFAULT);
722         if (!obd->obd_nid_stats_hash)
723                 GOTO(err_nid_hash, err = -ENOMEM);
724
725         /* create a client_generation-export lustre hash */
726         obd->obd_gen_hash = cfs_hash_create("UUID_HASH",
727                                             HASH_GEN_CUR_BITS,
728                                             HASH_GEN_MAX_BITS,
729                                             HASH_GEN_BKT_BITS, 0,
730                                             CFS_HASH_MIN_THETA,
731                                             CFS_HASH_MAX_THETA,
732                                             &gen_hash_ops, CFS_HASH_DEFAULT);
733         if (!obd->obd_gen_hash)
734                 GOTO(err_nid_stats_hash, err = -ENOMEM);
735 #endif /* HAVE_SERVER_SUPPORT */
736
737         err = obd_setup(obd, lcfg);
738         if (err)
739 #ifdef HAVE_SERVER_SUPPORT
740                 GOTO(err_gen_hash, err);
741 #else
742                 GOTO(err_uuid_hash, err);
743 #endif /* ! HAVE_SERVER_SUPPORT */
744
745         obd->obd_set_up = 1;
746
747         spin_lock(&obd->obd_dev_lock);
748         /* cleanup drops this */
749         class_incref(obd, "setup", obd);
750         spin_unlock(&obd->obd_dev_lock);
751
752         CDEBUG(D_IOCTL, "finished setup of obd %s (uuid %s)\n",
753                obd->obd_name, obd->obd_uuid.uuid);
754
755         RETURN(0);
756
757 #ifdef HAVE_SERVER_SUPPORT
758 err_gen_hash:
759         if (obd->obd_gen_hash) {
760                 cfs_hash_putref(obd->obd_gen_hash);
761                 obd->obd_gen_hash = NULL;
762         }
763 err_nid_stats_hash:
764         if (obd->obd_nid_stats_hash) {
765                 cfs_hash_putref(obd->obd_nid_stats_hash);
766                 obd->obd_nid_stats_hash = NULL;
767         }
768 err_nid_hash:
769         rhltable_destroy(&obd->obd_nid_hash);
770 #endif /* HAVE_SERVER_SUPPORT */
771 err_uuid_hash:
772         rhashtable_destroy(&obd->obd_uuid_hash);
773 err_starting:
774         obd->obd_starting = 0;
775         CERROR("setup %s failed (%d)\n", obd->obd_name, err);
776         return err;
777 }
778 EXPORT_SYMBOL(class_setup);
779
780 /**
781  * We have finished using this OBD and are ready to destroy it.
782  * There can be no more references to this obd.
783  */
784 int class_detach(struct obd_device *obd, struct lustre_cfg *lcfg)
785 {
786         ENTRY;
787
788         if (obd->obd_set_up) {
789                 CERROR("OBD device %d still set up\n", obd->obd_minor);
790                 RETURN(-EBUSY);
791         }
792
793         spin_lock(&obd->obd_dev_lock);
794         if (!obd->obd_attached) {
795                 spin_unlock(&obd->obd_dev_lock);
796                 CERROR("OBD device %d not attached\n", obd->obd_minor);
797                 RETURN(-ENODEV);
798         }
799         obd->obd_attached = 0;
800         spin_unlock(&obd->obd_dev_lock);
801
802         /* cleanup in progress. we don't like to find this device after now */
803         class_unregister_device(obd);
804
805         CDEBUG(D_IOCTL, "detach on obd %s (uuid %s)\n",
806                obd->obd_name, obd->obd_uuid.uuid);
807
808         class_decref(obd, "newdev", obd);
809
810         RETURN(0);
811 }
812 EXPORT_SYMBOL(class_detach);
813
814 /**
815  * Start shutting down the OBD.  There may be in-progess ops when
816  * this is called.  We tell them to start shutting down with a call
817  * to class_disconnect_exports().
818  */
819 int class_cleanup(struct obd_device *obd, struct lustre_cfg *lcfg)
820 {
821         int err = 0;
822         char *flag;
823         ENTRY;
824
825         OBD_RACE(OBD_FAIL_LDLM_RECOV_CLIENTS);
826
827         if (!obd->obd_set_up) {
828                 CERROR("Device %d not setup\n", obd->obd_minor);
829                 RETURN(-ENODEV);
830         }
831
832         spin_lock(&obd->obd_dev_lock);
833         if (obd->obd_stopping) {
834                 spin_unlock(&obd->obd_dev_lock);
835                 CERROR("OBD %d already stopping\n", obd->obd_minor);
836                 RETURN(-ENODEV);
837         }
838         /* Leave this on forever */
839         obd->obd_stopping = 1;
840         spin_unlock(&obd->obd_dev_lock);
841
842         /* wait for already-arrived-connections to finish. */
843         while (obd->obd_conn_inprogress > 0)
844                 yield();
845         smp_rmb();
846
847         if (lcfg->lcfg_bufcount >= 2 && LUSTRE_CFG_BUFLEN(lcfg, 1) > 0) {
848                 for (flag = lustre_cfg_string(lcfg, 1); *flag != 0; flag++)
849                         switch (*flag) {
850                         case 'F':
851                                 obd->obd_force = 1;
852                                 break;
853                         case 'A':
854                                 LCONSOLE_WARN("Failing over %s\n",
855                                               obd->obd_name);
856                                 spin_lock(&obd->obd_dev_lock);
857                                 obd->obd_fail = 1;
858 #ifdef HAVE_SERVER_SUPPORT
859                                 obd->obd_no_transno = 1;
860 #endif
861                                 obd->obd_no_recov = 1;
862                                 spin_unlock(&obd->obd_dev_lock);
863                                 if (OBP(obd, iocontrol)) {
864                                         obd_iocontrol(OBD_IOC_SYNC,
865                                                       obd->obd_self_export,
866                                                       0, NULL, NULL);
867                                 }
868                                 break;
869                         default:
870                                 CERROR("Unrecognised flag '%c'\n", *flag);
871                         }
872         }
873
874         LASSERT(obd->obd_self_export);
875
876         CDEBUG(D_IOCTL, "%s: forcing exports to disconnect: %d/%d\n",
877                obd->obd_name, obd->obd_num_exports,
878                atomic_read(&obd->obd_refcount) - 2);
879         dump_exports(obd, 0, D_HA);
880         class_disconnect_exports(obd);
881
882         /* Precleanup, we must make sure all exports get destroyed. */
883         err = obd_precleanup(obd);
884         if (err)
885                 CERROR("Precleanup %s returned %d\n",
886                        obd->obd_name, err);
887
888         /* destroy an uuid-export hash body */
889         rhashtable_free_and_destroy(&obd->obd_uuid_hash, obd_export_exit,
890                                     NULL);
891 #ifdef HAVE_SERVER_SUPPORT
892         /* destroy a nid-export hash body */
893         rhltable_free_and_destroy(&obd->obd_nid_hash, nid_export_exit, NULL);
894
895         /* destroy a nid-stats hash body */
896         if (obd->obd_nid_stats_hash) {
897                 cfs_hash_putref(obd->obd_nid_stats_hash);
898                 obd->obd_nid_stats_hash = NULL;
899         }
900
901         /* destroy a client_generation-export hash body */
902         if (obd->obd_gen_hash) {
903                 cfs_hash_putref(obd->obd_gen_hash);
904                 obd->obd_gen_hash = NULL;
905         }
906 #endif /* HAVE_SERVER_SUPPORT */
907         class_decref(obd, "setup", obd);
908         obd->obd_set_up = 0;
909
910         RETURN(0);
911 }
912
913 struct obd_device *class_incref(struct obd_device *obd,
914                                 const char *scope,
915                                 const void *source)
916 {
917         lu_ref_add_atomic(&obd->obd_reference, scope, source);
918         atomic_inc(&obd->obd_refcount);
919         CDEBUG(D_INFO, "incref %s (%p) now %d\n", obd->obd_name, obd,
920                atomic_read(&obd->obd_refcount));
921
922         return obd;
923 }
924 EXPORT_SYMBOL(class_incref);
925
926 void class_decref(struct obd_device *obd, const char *scope, const void *source)
927 {
928         int last;
929
930         CDEBUG(D_INFO, "Decref %s (%p) now %d - %s\n", obd->obd_name, obd,
931                atomic_read(&obd->obd_refcount), scope);
932
933         LASSERT(obd->obd_num_exports >= 0);
934         last = atomic_dec_and_test(&obd->obd_refcount);
935         lu_ref_del(&obd->obd_reference, scope, source);
936
937         if (last) {
938                 struct obd_export *exp;
939
940                 LASSERT(!obd->obd_attached);
941                 /*
942                  * All exports have been destroyed; there should
943                  * be no more in-progress ops by this point.
944                  */
945                 exp = obd->obd_self_export;
946
947                 if (exp) {
948                         exp->exp_flags |= exp_flags_from_obd(obd);
949                         class_unlink_export(exp);
950                 }
951         }
952 }
953 EXPORT_SYMBOL(class_decref);
954
955 /**
956  * Add a failover NID location.
957  * Client OBD types contact server OBD types using this NID list.
958  */
959 int class_add_conn(struct obd_device *obd, struct lustre_cfg *lcfg)
960 {
961         struct obd_import *imp;
962         struct obd_uuid uuid;
963         int rc;
964
965         ENTRY;
966
967         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1 ||
968             LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(struct obd_uuid)) {
969                 CERROR("invalid conn_uuid\n");
970                 RETURN(-EINVAL);
971         }
972         if (strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) &&
973             strcmp(obd->obd_type->typ_name, LUSTRE_OSC_NAME) &&
974             strcmp(obd->obd_type->typ_name, LUSTRE_OSP_NAME) &&
975             strcmp(obd->obd_type->typ_name, LUSTRE_LWP_NAME) &&
976             strcmp(obd->obd_type->typ_name, LUSTRE_MGC_NAME)) {
977                 CERROR("can't add connection on non-client dev\n");
978                 RETURN(-EINVAL);
979         }
980
981         imp = obd->u.cli.cl_import;
982         if (!imp) {
983                 CERROR("try to add conn on immature client dev\n");
984                 RETURN(-EINVAL);
985         }
986
987         obd_str2uuid(&uuid, lustre_cfg_string(lcfg, 1));
988         rc = obd_add_conn(imp, &uuid, lcfg->lcfg_num);
989
990         RETURN(rc);
991 }
992
993 /** Remove a failover NID location. */
994 static int class_del_conn(struct obd_device *obd, struct lustre_cfg *lcfg)
995 {
996         struct obd_import *imp;
997         struct obd_uuid uuid;
998         int rc;
999
1000         ENTRY;
1001
1002         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1 ||
1003             LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(struct obd_uuid)) {
1004                 CERROR("invalid conn_uuid\n");
1005                 RETURN(-EINVAL);
1006         }
1007         if (strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) &&
1008             strcmp(obd->obd_type->typ_name, LUSTRE_OSC_NAME)) {
1009                 CERROR("can't del connection on non-client dev\n");
1010                 RETURN(-EINVAL);
1011         }
1012
1013         imp = obd->u.cli.cl_import;
1014         if (!imp) {
1015                 CERROR("try to del conn on immature client dev\n");
1016                 RETURN(-EINVAL);
1017         }
1018
1019         obd_str2uuid(&uuid, lustre_cfg_string(lcfg, 1));
1020         rc = obd_del_conn(imp, &uuid);
1021
1022         RETURN(rc);
1023 }
1024
1025 static LIST_HEAD(lustre_profile_list);
1026 static DEFINE_SPINLOCK(lustre_profile_list_lock);
1027
1028 struct lustre_profile *class_get_profile(const char *prof)
1029 {
1030         struct lustre_profile *lprof;
1031
1032         ENTRY;
1033         spin_lock(&lustre_profile_list_lock);
1034         list_for_each_entry(lprof, &lustre_profile_list, lp_list) {
1035                 if (!strcmp(lprof->lp_profile, prof)) {
1036                         lprof->lp_refs++;
1037                         spin_unlock(&lustre_profile_list_lock);
1038                         RETURN(lprof);
1039                 }
1040         }
1041         spin_unlock(&lustre_profile_list_lock);
1042         RETURN(NULL);
1043 }
1044 EXPORT_SYMBOL(class_get_profile);
1045
1046 /**
1047  * Create a named "profile".
1048  * This defines the MDC and OSC names to use for a client.
1049  * This also is used to define the LOV to be used by a MDT.
1050  */
1051 static int class_add_profile(int proflen, char *prof, int osclen, char *osc,
1052                              int mdclen, char *mdc)
1053 {
1054         struct lustre_profile *lprof;
1055         int err = 0;
1056
1057         ENTRY;
1058
1059         CDEBUG(D_CONFIG, "Add profile %s\n", prof);
1060
1061         OBD_ALLOC(lprof, sizeof(*lprof));
1062         if (!lprof)
1063                 RETURN(-ENOMEM);
1064         INIT_LIST_HEAD(&lprof->lp_list);
1065
1066         LASSERT(proflen == (strlen(prof) + 1));
1067         OBD_ALLOC(lprof->lp_profile, proflen);
1068         if (!lprof->lp_profile)
1069                 GOTO(out, err = -ENOMEM);
1070         memcpy(lprof->lp_profile, prof, proflen);
1071
1072         LASSERT(osclen == (strlen(osc) + 1));
1073         OBD_ALLOC(lprof->lp_dt, osclen);
1074         if (!lprof->lp_dt)
1075                 GOTO(out, err = -ENOMEM);
1076         memcpy(lprof->lp_dt, osc, osclen);
1077
1078         if (mdclen > 0) {
1079                 LASSERT(mdclen == (strlen(mdc) + 1));
1080                 OBD_ALLOC(lprof->lp_md, mdclen);
1081                 if (!lprof->lp_md)
1082                         GOTO(out, err = -ENOMEM);
1083                 memcpy(lprof->lp_md, mdc, mdclen);
1084         }
1085
1086         spin_lock(&lustre_profile_list_lock);
1087         lprof->lp_refs = 1;
1088         lprof->lp_list_deleted = false;
1089
1090         list_add(&lprof->lp_list, &lustre_profile_list);
1091         spin_unlock(&lustre_profile_list_lock);
1092         RETURN(err);
1093
1094 out:
1095         if (lprof->lp_md)
1096                 OBD_FREE(lprof->lp_md, mdclen);
1097         if (lprof->lp_dt)
1098                 OBD_FREE(lprof->lp_dt, osclen);
1099         if (lprof->lp_profile)
1100                 OBD_FREE(lprof->lp_profile, proflen);
1101         OBD_FREE(lprof, sizeof(*lprof));
1102         RETURN(err);
1103 }
1104
1105 void class_del_profile(const char *prof)
1106 {
1107         struct lustre_profile *lprof;
1108
1109         ENTRY;
1110
1111         CDEBUG(D_CONFIG, "Del profile %s\n", prof);
1112
1113         lprof = class_get_profile(prof);
1114         if (lprof) {
1115                 spin_lock(&lustre_profile_list_lock);
1116                 /* because get profile increments the ref counter */
1117                 lprof->lp_refs--;
1118                 list_del(&lprof->lp_list);
1119                 lprof->lp_list_deleted = true;
1120                 spin_unlock(&lustre_profile_list_lock);
1121
1122                 class_put_profile(lprof);
1123         }
1124         EXIT;
1125 }
1126 EXPORT_SYMBOL(class_del_profile);
1127
1128 void class_put_profile(struct lustre_profile *lprof)
1129 {
1130         spin_lock(&lustre_profile_list_lock);
1131         if ((--lprof->lp_refs) > 0) {
1132                 LASSERT(lprof->lp_refs > 0);
1133                 spin_unlock(&lustre_profile_list_lock);
1134                 return;
1135         }
1136         spin_unlock(&lustre_profile_list_lock);
1137
1138         /* confirm not a negative number */
1139         LASSERT(lprof->lp_refs == 0);
1140
1141         /*
1142          * At least one class_del_profile/profiles must be called
1143          * on the target profile or lustre_profile_list will corrupt
1144          */
1145         LASSERT(lprof->lp_list_deleted);
1146         OBD_FREE(lprof->lp_profile, strlen(lprof->lp_profile) + 1);
1147         OBD_FREE(lprof->lp_dt, strlen(lprof->lp_dt) + 1);
1148         if (lprof->lp_md)
1149                 OBD_FREE(lprof->lp_md, strlen(lprof->lp_md) + 1);
1150         OBD_FREE(lprof, sizeof(*lprof));
1151 }
1152 EXPORT_SYMBOL(class_put_profile);
1153
1154 /* COMPAT_146 */
1155 void class_del_profiles(void)
1156 {
1157         struct lustre_profile *lprof, *n;
1158         ENTRY;
1159
1160         spin_lock(&lustre_profile_list_lock);
1161         list_for_each_entry_safe(lprof, n, &lustre_profile_list, lp_list) {
1162                 list_del(&lprof->lp_list);
1163                 lprof->lp_list_deleted = true;
1164                 spin_unlock(&lustre_profile_list_lock);
1165
1166                 class_put_profile(lprof);
1167
1168                 spin_lock(&lustre_profile_list_lock);
1169         }
1170         spin_unlock(&lustre_profile_list_lock);
1171         EXIT;
1172 }
1173 EXPORT_SYMBOL(class_del_profiles);
1174
1175 /*
1176  * We can't call lquota_process_config directly because
1177  * it lives in a module that must be loaded after this one.
1178  */
1179 #ifdef HAVE_SERVER_SUPPORT
1180 static int (*quota_process_config)(struct lustre_cfg *lcfg) = NULL;
1181 #endif /* HAVE_SERVER_SUPPORT */
1182
1183 /**
1184  * Rename the proc parameter in \a cfg with a new name \a new_name.
1185  *
1186  * \param cfg      config structure which contains the proc parameter
1187  * \param new_name new name of the proc parameter
1188  *
1189  * \retval valid-pointer    pointer to the newly-allocated config structure
1190  *                          which contains the renamed proc parameter
1191  * \retval ERR_PTR(-EINVAL) if \a cfg or \a new_name is NULL, or \a cfg does
1192  *                          not contain a proc parameter
1193  * \retval ERR_PTR(-ENOMEM) if memory allocation failure occurs
1194  */
1195 struct lustre_cfg *lustre_cfg_rename(struct lustre_cfg *cfg,
1196                                      const char *new_name)
1197 {
1198         struct lustre_cfg_bufs *bufs = NULL;
1199         struct lustre_cfg *new_cfg = NULL;
1200         char *param = NULL;
1201         char *new_param = NULL;
1202         char *value = NULL;
1203         int name_len = 0;
1204         int new_len = 0;
1205
1206         ENTRY;
1207
1208         if (!cfg || !new_name)
1209                 GOTO(out_nocfg, new_cfg = ERR_PTR(-EINVAL));
1210
1211         param = lustre_cfg_string(cfg, 1);
1212         if (!param)
1213                 GOTO(out_nocfg, new_cfg = ERR_PTR(-EINVAL));
1214
1215         value = strchr(param, '=');
1216         if (value)
1217                 name_len = value - param;
1218         else
1219                 name_len = strlen(param);
1220
1221         new_len = LUSTRE_CFG_BUFLEN(cfg, 1) + strlen(new_name) - name_len;
1222
1223         OBD_ALLOC(new_param, new_len);
1224         if (!new_param)
1225                 GOTO(out_nocfg, new_cfg = ERR_PTR(-ENOMEM));
1226
1227         strlcpy(new_param, new_name, new_len);
1228         if (value)
1229                 strcat(new_param, value);
1230
1231         OBD_ALLOC_PTR(bufs);
1232         if (!bufs)
1233                 GOTO(out_free_param, new_cfg = ERR_PTR(-ENOMEM));
1234
1235         lustre_cfg_bufs_reset(bufs, NULL);
1236         lustre_cfg_bufs_init(bufs, cfg);
1237         lustre_cfg_bufs_set_string(bufs, 1, new_param);
1238
1239         OBD_ALLOC(new_cfg, lustre_cfg_len(bufs->lcfg_bufcount,
1240                                           bufs->lcfg_buflen));
1241         if (!new_cfg)
1242                 GOTO(out_free_buf, new_cfg = ERR_PTR(-ENOMEM));
1243
1244         lustre_cfg_init(new_cfg, cfg->lcfg_command, bufs);
1245
1246         new_cfg->lcfg_num = cfg->lcfg_num;
1247         new_cfg->lcfg_flags = cfg->lcfg_flags;
1248         new_cfg->lcfg_nid = cfg->lcfg_nid;
1249         new_cfg->lcfg_nal = cfg->lcfg_nal;
1250 out_free_buf:
1251         OBD_FREE_PTR(bufs);
1252 out_free_param:
1253         OBD_FREE(new_param, new_len);
1254 out_nocfg:
1255         RETURN(new_cfg);
1256 }
1257 EXPORT_SYMBOL(lustre_cfg_rename);
1258
1259 static ssize_t process_param2_config(struct lustre_cfg *lcfg)
1260 {
1261         char *param = lustre_cfg_string(lcfg, 1);
1262         char *upcall = lustre_cfg_string(lcfg, 2);
1263         struct kobject *kobj = NULL;
1264         const char *subsys = param;
1265         char *argv[] = {
1266                 [0] = "/usr/sbin/lctl",
1267                 [1] = "set_param",
1268                 [2] = param,
1269                 [3] = NULL
1270         };
1271         ktime_t start;
1272         ktime_t end;
1273         size_t len;
1274         int rc;
1275
1276         ENTRY;
1277         print_lustre_cfg(lcfg);
1278
1279         len = strcspn(param, ".=");
1280         if (!len)
1281                 return -EINVAL;
1282
1283         /* If we find '=' then its the top level sysfs directory */
1284         if (param[len] == '=')
1285                 return class_set_global(param);
1286
1287         subsys = kstrndup(param, len, GFP_KERNEL);
1288         if (!subsys)
1289                 return -ENOMEM;
1290
1291         kobj = kset_find_obj(lustre_kset, subsys);
1292         kfree(subsys);
1293         if (kobj) {
1294                 char *value = param;
1295                 char *envp[4];
1296                 int i;
1297
1298                 param = strsep(&value, "=");
1299                 envp[0] = kasprintf(GFP_KERNEL, "PARAM=%s", param);
1300                 envp[1] = kasprintf(GFP_KERNEL, "SETTING=%s", value);
1301                 envp[2] = kasprintf(GFP_KERNEL, "TIME=%lld",
1302                                     ktime_get_real_seconds());
1303                 envp[3] = NULL;
1304
1305                 rc = kobject_uevent_env(kobj, KOBJ_CHANGE, envp);
1306                 for (i = 0; i < ARRAY_SIZE(envp); i++)
1307                         kfree(envp[i]);
1308
1309                 kobject_put(kobj);
1310
1311                 RETURN(rc);
1312         }
1313
1314         /* Add upcall processing here. Now only lctl is supported */
1315         if (strcmp(upcall, LCTL_UPCALL) != 0) {
1316                 CERROR("Unsupported upcall %s\n", upcall);
1317                 RETURN(-EINVAL);
1318         }
1319
1320         start = ktime_get();
1321         rc = call_usermodehelper(argv[0], argv, NULL, UMH_WAIT_PROC);
1322         end = ktime_get();
1323
1324         if (rc < 0) {
1325                 CERROR("lctl: error invoking upcall %s %s %s: rc = %d; "
1326                        "time %ldus\n", argv[0], argv[1], argv[2], rc,
1327                        (long)ktime_us_delta(end, start));
1328         } else {
1329                 CDEBUG(D_HA, "lctl: invoked upcall %s %s %s, time %ldus\n",
1330                        argv[0], argv[1], argv[2],
1331                        (long)ktime_us_delta(end, start));
1332                        rc = 0;
1333         }
1334
1335         RETURN(rc);
1336 }
1337
1338 #ifdef HAVE_SERVER_SUPPORT
1339 void lustre_register_quota_process_config(int (*qpc)(struct lustre_cfg *lcfg))
1340 {
1341         quota_process_config = qpc;
1342 }
1343 EXPORT_SYMBOL(lustre_register_quota_process_config);
1344 #endif /* HAVE_SERVER_SUPPORT */
1345
1346 /**
1347  * Process configuration commands given in lustre_cfg form.
1348  * These may come from direct calls (e.g. class_manual_cleanup)
1349  * or processing the config llog, or ioctl from lctl.
1350  */
1351 int class_process_config(struct lustre_cfg *lcfg)
1352 {
1353         struct obd_device *obd;
1354         int err;
1355
1356         LASSERT(lcfg && !IS_ERR(lcfg));
1357         CDEBUG(D_IOCTL, "processing cmd: %x\n", lcfg->lcfg_command);
1358
1359         /* Commands that don't need a device */
1360         switch (lcfg->lcfg_command) {
1361         case LCFG_ATTACH: {
1362                 err = class_attach(lcfg);
1363                 GOTO(out, err);
1364         }
1365         case LCFG_ADD_UUID: {
1366                 CDEBUG(D_IOCTL,
1367                        "adding mapping from uuid %s to nid %#llx (%s)\n",
1368                        lustre_cfg_string(lcfg, 1), lcfg->lcfg_nid,
1369                        libcfs_nid2str(lcfg->lcfg_nid));
1370
1371                 err = class_add_uuid(lustre_cfg_string(lcfg, 1),
1372                                      lcfg->lcfg_nid);
1373                 GOTO(out, err);
1374         }
1375         case LCFG_DEL_UUID: {
1376                 CDEBUG(D_IOCTL, "removing mappings for uuid %s\n",
1377                        (lcfg->lcfg_bufcount < 2 || LUSTRE_CFG_BUFLEN(lcfg, 1) ==
1378                         0) ? "<all uuids>" : lustre_cfg_string(lcfg, 1));
1379
1380                 err = class_del_uuid(lustre_cfg_string(lcfg, 1));
1381                 GOTO(out, err);
1382         }
1383         case LCFG_MOUNTOPT: {
1384                 CDEBUG(D_IOCTL, "mountopt: profile %s osc %s mdc %s\n",
1385                        lustre_cfg_string(lcfg, 1),
1386                        lustre_cfg_string(lcfg, 2),
1387                        lustre_cfg_string(lcfg, 3));
1388                 /*
1389                  * set these mount options somewhere, so ll_fill_super
1390                  * can find them.
1391                  */
1392                 err = class_add_profile(LUSTRE_CFG_BUFLEN(lcfg, 1),
1393                                         lustre_cfg_string(lcfg, 1),
1394                                         LUSTRE_CFG_BUFLEN(lcfg, 2),
1395                                         lustre_cfg_string(lcfg, 2),
1396                                         LUSTRE_CFG_BUFLEN(lcfg, 3),
1397                                         lustre_cfg_string(lcfg, 3));
1398                 GOTO(out, err);
1399         }
1400         case LCFG_DEL_MOUNTOPT: {
1401                 CDEBUG(D_IOCTL, "mountopt: profile %s\n",
1402                        lustre_cfg_string(lcfg, 1));
1403                 class_del_profile(lustre_cfg_string(lcfg, 1));
1404                 GOTO(out, err = 0);
1405         }
1406         case LCFG_SET_TIMEOUT: {
1407                 CDEBUG(D_IOCTL, "changing lustre timeout from %d to %d\n",
1408                        obd_timeout, lcfg->lcfg_num);
1409                 obd_timeout = max(lcfg->lcfg_num, 1U);
1410                 obd_timeout_set = 1;
1411                 GOTO(out, err = 0);
1412         }
1413         case LCFG_SET_LDLM_TIMEOUT: {
1414                 CDEBUG(D_IOCTL, "changing lustre ldlm_timeout from %d to %d\n",
1415                        ldlm_timeout, lcfg->lcfg_num);
1416                 ldlm_timeout = max(lcfg->lcfg_num, 1U);
1417                 if (ldlm_timeout >= obd_timeout)
1418                         ldlm_timeout = max(obd_timeout / 3, 1U);
1419                 ldlm_timeout_set = 1;
1420                 GOTO(out, err = 0);
1421         }
1422         case LCFG_SET_UPCALL: {
1423                 LCONSOLE_ERROR_MSG(0x15a, "recovery upcall is deprecated\n");
1424                 /* COMPAT_146 Don't fail on old configs */
1425                 GOTO(out, err = 0);
1426         }
1427         case LCFG_MARKER: {
1428                 struct cfg_marker *marker;
1429
1430                 marker = lustre_cfg_buf(lcfg, 1);
1431                 CDEBUG(D_IOCTL, "marker %d (%#x) %.16s %s\n", marker->cm_step,
1432                        marker->cm_flags, marker->cm_tgtname,
1433                        marker->cm_comment);
1434                 GOTO(out, err = 0);
1435         }
1436         case LCFG_PARAM: {
1437                 char *tmp;
1438
1439                 /* llite has no OBD */
1440                 if (class_match_param(lustre_cfg_string(lcfg, 1),
1441                                       PARAM_LLITE, NULL) == 0) {
1442                         struct lustre_sb_info *lsi;
1443                         unsigned long addr;
1444                         ssize_t count;
1445
1446                         /*
1447                          * The instance name contains the sb:
1448                          * lustre-client-aacfe000
1449                          */
1450                         tmp = strrchr(lustre_cfg_string(lcfg, 0), '-');
1451                         if (!tmp || !*(++tmp))
1452                                 GOTO(out, err = -EINVAL);
1453
1454                         if (sscanf(tmp, "%lx", &addr) != 1)
1455                                 GOTO(out, err = -EINVAL);
1456
1457                         lsi = s2lsi((struct super_block *)addr);
1458                         /* This better be a real Lustre superblock! */
1459                         LASSERT(lsi->lsi_lmd->lmd_magic == LMD_MAGIC);
1460
1461                         count = class_modify_config(lcfg, PARAM_LLITE,
1462                                                     lsi->lsi_kobj);
1463                         err = count < 0 ? count : 0;
1464                         GOTO(out, err);
1465                 } else if ((class_match_param(lustre_cfg_string(lcfg, 1),
1466                                               PARAM_SYS, &tmp) == 0)) {
1467                         /* Global param settings */
1468                         err = class_set_global(tmp);
1469                         /*
1470                          * Client or server should not fail to mount if
1471                          * it hits an unknown configuration parameter.
1472                          */
1473                         if (err < 0)
1474                                 CWARN("Ignoring unknown param %s\n", tmp);
1475
1476                         GOTO(out, err = 0);
1477 #ifdef HAVE_SERVER_SUPPORT
1478                 } else if ((class_match_param(lustre_cfg_string(lcfg, 1),
1479                                               PARAM_QUOTA, &tmp) == 0) &&
1480                            quota_process_config) {
1481                         err = (*quota_process_config)(lcfg);
1482                         GOTO(out, err);
1483 #endif /* HAVE_SERVER_SUPPORT */
1484                 }
1485
1486                 break;
1487         }
1488         case LCFG_SET_PARAM: {
1489                 err = process_param2_config(lcfg);
1490                 GOTO(out, err = 0);
1491         }
1492         }
1493         /* Commands that require a device */
1494         obd = class_name2obd(lustre_cfg_string(lcfg, 0));
1495         if (!obd) {
1496                 if (!LUSTRE_CFG_BUFLEN(lcfg, 0))
1497                         CERROR("this lcfg command requires a device name\n");
1498                 else
1499                         CERROR("no device for: %s\n",
1500                                lustre_cfg_string(lcfg, 0));
1501
1502                 GOTO(out, err = -EINVAL);
1503         }
1504         switch(lcfg->lcfg_command) {
1505         case LCFG_SETUP: {
1506                 err = class_setup(obd, lcfg);
1507                 GOTO(out, err);
1508         }
1509         case LCFG_DETACH: {
1510                 err = class_detach(obd, lcfg);
1511                 GOTO(out, err = 0);
1512         }
1513         case LCFG_CLEANUP: {
1514                 err = class_cleanup(obd, lcfg);
1515                 GOTO(out, err = 0);
1516         }
1517         case LCFG_ADD_CONN: {
1518                 err = class_add_conn(obd, lcfg);
1519                 GOTO(out, err = 0);
1520         }
1521         case LCFG_DEL_CONN: {
1522                 err = class_del_conn(obd, lcfg);
1523                 GOTO(out, err = 0);
1524         }
1525         case LCFG_POOL_NEW: {
1526                 err = obd_pool_new(obd, lustre_cfg_string(lcfg, 2));
1527                 GOTO(out, err = 0);
1528         }
1529         case LCFG_POOL_ADD: {
1530                 err = obd_pool_add(obd, lustre_cfg_string(lcfg, 2),
1531                                    lustre_cfg_string(lcfg, 3));
1532                 GOTO(out, err = 0);
1533         }
1534         case LCFG_POOL_REM: {
1535                 err = obd_pool_rem(obd, lustre_cfg_string(lcfg, 2),
1536                                    lustre_cfg_string(lcfg, 3));
1537                 GOTO(out, err = 0);
1538         }
1539         case LCFG_POOL_DEL: {
1540                 err = obd_pool_del(obd, lustre_cfg_string(lcfg, 2));
1541                 GOTO(out, err = 0);
1542         }
1543         /*
1544          * Process config log ADD_MDC record twice to add MDC also to LOV
1545          * for Data-on-MDT:
1546          *
1547          * add 0:lustre-clilmv 1:lustre-MDT0000_UUID 2:0 3:1
1548          *     4:lustre-MDT0000-mdc_UUID
1549          */
1550         case LCFG_ADD_MDC: {
1551                 struct obd_device *lov_obd;
1552                 char *clilmv;
1553
1554                 err = obd_process_config(obd, sizeof(*lcfg), lcfg);
1555                 if (err)
1556                         GOTO(out, err);
1557
1558                 /* make sure this is client LMV log entry */
1559                 clilmv = strstr(lustre_cfg_string(lcfg, 0), "clilmv");
1560                 if (!clilmv)
1561                         GOTO(out, err);
1562
1563                 /*
1564                  * replace 'lmv' with 'lov' name to address LOV device and
1565                  * process llog record to add MDC there.
1566                  */
1567                 clilmv[4] = 'o';
1568                 lov_obd = class_name2obd(lustre_cfg_string(lcfg, 0));
1569                 if (lov_obd) {
1570                         err = obd_process_config(lov_obd, sizeof(*lcfg), lcfg);
1571                 } else {
1572                         err = -ENOENT;
1573                         CERROR("%s: Cannot find LOV by %s name, rc = %d\n",
1574                                obd->obd_name, lustre_cfg_string(lcfg, 0), err);
1575                 }
1576                 /* restore 'lmv' name */
1577                 clilmv[4] = 'm';
1578                 GOTO(out, err);
1579         }
1580         default: {
1581                 err = obd_process_config(obd, sizeof(*lcfg), lcfg);
1582                 GOTO(out, err);
1583         }
1584         }
1585         EXIT;
1586 out:
1587         if ((err < 0) && !(lcfg->lcfg_command & LCFG_REQUIRED)) {
1588                 CWARN("Ignoring error %d on optional command %#x\n", err,
1589                       lcfg->lcfg_command);
1590                 err = 0;
1591         }
1592         return err;
1593 }
1594 EXPORT_SYMBOL(class_process_config);
1595
1596 ssize_t class_modify_config(struct lustre_cfg *lcfg, const char *prefix,
1597                             struct kobject *kobj)
1598 {
1599         struct kobj_type *typ;
1600         ssize_t count = 0;
1601         int i;
1602
1603         if (lcfg->lcfg_command != LCFG_PARAM) {
1604                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
1605                 return -EINVAL;
1606         }
1607
1608         typ = get_ktype(kobj);
1609         if (!typ || !typ->default_attrs)
1610                 return -ENODEV;
1611
1612         print_lustre_cfg(lcfg);
1613
1614         /*
1615          * e.g. tunefs.lustre --param mdt.group_upcall=foo /r/tmp/lustre-mdt
1616          * or   lctl conf_param lustre-MDT0000.mdt.group_upcall=bar
1617          * or   lctl conf_param lustre-OST0000.osc.max_dirty_mb=36
1618          */
1619         for (i = 1; i < lcfg->lcfg_bufcount; i++) {
1620                 struct attribute *attr;
1621                 size_t keylen;
1622                 char *value;
1623                 char *key;
1624                 int j;
1625
1626                 key = lustre_cfg_buf(lcfg, i);
1627                 /* Strip off prefix */
1628                 if (class_match_param(key, prefix, &key))
1629                         /*
1630                          * If the prefix doesn't match, return error so we
1631                          * can pass it down the stack
1632                          */
1633                         return -EINVAL;
1634
1635                 value = strchr(key, '=');
1636                 if (!value || *(value + 1) == 0) {
1637                         CERROR("%s: can't parse param '%s' (missing '=')\n",
1638                                lustre_cfg_string(lcfg, 0),
1639                                lustre_cfg_string(lcfg, i));
1640                         /* continue parsing other params */
1641                         continue;
1642                 }
1643                 keylen = value - key;
1644                 value++;
1645
1646                 attr = NULL;
1647                 for (j = 0; typ->default_attrs[j]; j++) {
1648                         if (!strncmp(typ->default_attrs[j]->name, key,
1649                                      keylen)) {
1650                                 attr = typ->default_attrs[j];
1651                                 break;
1652                         }
1653                 }
1654
1655                 if (!attr) {
1656                         char *envp[4], *param, *path;
1657
1658                         path = kobject_get_path(kobj, GFP_KERNEL);
1659                         if (!path)
1660                                 return -EINVAL;
1661
1662                         /* convert sysfs path to uevent format */
1663                         param = path;
1664                         while ((param = strchr(param, '/')) != NULL)
1665                                 *param = '.';
1666
1667                         param = strstr(path, "fs.lustre.") + 10;
1668
1669                         envp[0] = kasprintf(GFP_KERNEL, "PARAM=%s.%.*s",
1670                                             param, (int) keylen, key);
1671                         envp[1] = kasprintf(GFP_KERNEL, "SETTING=%s", value);
1672                         envp[2] = kasprintf(GFP_KERNEL, "TIME=%lld",
1673                                             ktime_get_real_seconds());
1674                         envp[3] = NULL;
1675
1676                         if (kobject_uevent_env(kobj, KOBJ_CHANGE, envp)) {
1677                                 CERROR("%s: failed to send uevent %s\n",
1678                                        kobject_name(kobj), key);
1679                         }
1680
1681                         for (i = 0; i < ARRAY_SIZE(envp); i++)
1682                                 kfree(envp[i]);
1683                         kfree(path);
1684                 } else {
1685                         count += lustre_attr_store(kobj, attr, value,
1686                                                    strlen(value));
1687                 }
1688         }
1689         return count;
1690 }
1691 EXPORT_SYMBOL(class_modify_config);
1692
1693 /*
1694  * Supplemental functions for config logs, it allocates lustre_cfg
1695  * buffers plus initialized llog record header at the beginning.
1696  */
1697 struct llog_cfg_rec *lustre_cfg_rec_new(int cmd, struct lustre_cfg_bufs *bufs)
1698 {
1699         struct llog_cfg_rec *lcr;
1700         int reclen;
1701
1702         ENTRY;
1703
1704         reclen = lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen);
1705         reclen = llog_data_len(reclen) + sizeof(struct llog_rec_hdr) +
1706                  sizeof(struct llog_rec_tail);
1707
1708         OBD_ALLOC(lcr, reclen);
1709         if (!lcr)
1710                 RETURN(NULL);
1711
1712         lustre_cfg_init(&lcr->lcr_cfg, cmd, bufs);
1713
1714         lcr->lcr_hdr.lrh_len = reclen;
1715         lcr->lcr_hdr.lrh_type = OBD_CFG_REC;
1716
1717         RETURN(lcr);
1718 }
1719 EXPORT_SYMBOL(lustre_cfg_rec_new);
1720
1721 void lustre_cfg_rec_free(struct llog_cfg_rec *lcr)
1722 {
1723         ENTRY;
1724         OBD_FREE(lcr, lcr->lcr_hdr.lrh_len);
1725         EXIT;
1726 }
1727 EXPORT_SYMBOL(lustre_cfg_rec_free);
1728
1729 /**
1730  * Parse a configuration llog, doing various manipulations on them
1731  * for various reasons, (modifications for compatibility, skip obsolete
1732  * records, change uuids, etc), then class_process_config() resulting
1733  * net records.
1734  */
1735 int class_config_llog_handler(const struct lu_env *env,
1736                               struct llog_handle *handle,
1737                               struct llog_rec_hdr *rec, void *data)
1738 {
1739         struct config_llog_instance *cfg = data;
1740         int cfg_len = rec->lrh_len;
1741         char *cfg_buf = (char *) (rec + 1);
1742         int rc = 0;
1743         ENTRY;
1744
1745         /* class_config_dump_handler(handle, rec, data); */
1746
1747         switch (rec->lrh_type) {
1748         case OBD_CFG_REC: {
1749                 struct lustre_cfg *lcfg, *lcfg_new;
1750                 struct lustre_cfg_bufs bufs;
1751                 char *inst_name = NULL;
1752                 int inst_len = 0;
1753                 int swab = 0;
1754
1755                 lcfg = (struct lustre_cfg *)cfg_buf;
1756                 if (lcfg->lcfg_version == __swab32(LUSTRE_CFG_VERSION)) {
1757                         lustre_swab_lustre_cfg(lcfg);
1758                         swab = 1;
1759                 }
1760
1761                 rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
1762                 if (rc)
1763                         GOTO(out, rc);
1764
1765                 /* Figure out config state info */
1766                 if (lcfg->lcfg_command == LCFG_MARKER) {
1767                         struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
1768                         lustre_swab_cfg_marker(marker, swab,
1769                                                LUSTRE_CFG_BUFLEN(lcfg, 1));
1770                         CDEBUG(D_CONFIG, "Marker, inst_flg=%#x mark_flg=%#x\n",
1771                                cfg->cfg_flags, marker->cm_flags);
1772                         if (marker->cm_flags & CM_START) {
1773                                 /* all previous flags off */
1774                                 cfg->cfg_flags = CFG_F_MARKER;
1775                                 server_name2index(marker->cm_tgtname,
1776                                                   &cfg->cfg_lwp_idx, NULL);
1777                                 if (marker->cm_flags & CM_SKIP) {
1778                                         cfg->cfg_flags |= CFG_F_SKIP;
1779                                         CDEBUG(D_CONFIG, "SKIP #%d\n",
1780                                                marker->cm_step);
1781                                 } else if ((marker->cm_flags & CM_EXCLUDE) ||
1782                                            (cfg->cfg_sb &&
1783                                            lustre_check_exclusion(cfg->cfg_sb,
1784                                                         marker->cm_tgtname))) {
1785                                         cfg->cfg_flags |= CFG_F_EXCLUDE;
1786                                         CDEBUG(D_CONFIG, "EXCLUDE %d\n",
1787                                                marker->cm_step);
1788                                 }
1789                         } else if (marker->cm_flags & CM_END) {
1790                                 cfg->cfg_flags = 0;
1791                         }
1792                 }
1793                 /*
1794                  * A config command without a start marker before it is
1795                  * illegal
1796                  */
1797                 if (!(cfg->cfg_flags & CFG_F_MARKER) &&
1798                     (lcfg->lcfg_command != LCFG_MARKER)) {
1799                         CWARN("Skip config outside markers, (inst: %016lx, uuid: %s, flags: %#x)\n",
1800                                 cfg->cfg_instance,
1801                                 cfg->cfg_uuid.uuid, cfg->cfg_flags);
1802                         cfg->cfg_flags |= CFG_F_SKIP;
1803                 }
1804                 if (cfg->cfg_flags & CFG_F_SKIP) {
1805                         CDEBUG(D_CONFIG, "skipping %#x\n",
1806                                cfg->cfg_flags);
1807                         rc = 0;
1808                         /* No processing! */
1809                         break;
1810                 }
1811
1812                 /*
1813                  * For interoperability between 1.8 and 2.0,
1814                  * rename "mds" OBD device type to "mdt".
1815                  */
1816                 {
1817                         char *typename = lustre_cfg_string(lcfg, 1);
1818                         char *index = lustre_cfg_string(lcfg, 2);
1819
1820                         if ((lcfg->lcfg_command == LCFG_ATTACH && typename &&
1821                             strcmp(typename, "mds") == 0)) {
1822                                 CWARN("For 1.8 interoperability, rename obd "
1823                                         "type from mds to mdt\n");
1824                                 typename[2] = 't';
1825                         }
1826                         if ((lcfg->lcfg_command == LCFG_SETUP && index &&
1827                             strcmp(index, "type") == 0)) {
1828                                 CDEBUG(D_INFO, "For 1.8 interoperability, "
1829                                        "set this index to '0'\n");
1830                                 index[0] = '0';
1831                                 index[1] = 0;
1832                         }
1833                 }
1834
1835 #ifdef HAVE_SERVER_SUPPORT
1836                 /* newer MDS replaces LOV/OSC with LOD/OSP */
1837                 if ((lcfg->lcfg_command == LCFG_ATTACH ||
1838                      lcfg->lcfg_command == LCFG_SET_PARAM ||
1839                      lcfg->lcfg_command == LCFG_PARAM) &&
1840                     cfg->cfg_sb && IS_MDT(s2lsi(cfg->cfg_sb))) {
1841                         char *typename = lustre_cfg_string(lcfg, 1);
1842
1843                         if (typename &&
1844                             strcmp(typename, LUSTRE_LOV_NAME) == 0) {
1845                                 CDEBUG(D_CONFIG,
1846                                        "For 2.x interoperability, rename obd "
1847                                        "type from lov to lod (%s)\n",
1848                                        s2lsi(cfg->cfg_sb)->lsi_svname);
1849                                 strcpy(typename, LUSTRE_LOD_NAME);
1850                         }
1851                         if (typename &&
1852                             strcmp(typename, LUSTRE_OSC_NAME) == 0) {
1853                                 CDEBUG(D_CONFIG,
1854                                        "For 2.x interoperability, rename obd "
1855                                        "type from osc to osp (%s)\n",
1856                                        s2lsi(cfg->cfg_sb)->lsi_svname);
1857                                 strcpy(typename, LUSTRE_OSP_NAME);
1858                         }
1859                 }
1860 #endif /* HAVE_SERVER_SUPPORT */
1861
1862                 if (cfg->cfg_flags & CFG_F_EXCLUDE) {
1863                         CDEBUG(D_CONFIG, "cmd: %x marked EXCLUDED\n",
1864                                lcfg->lcfg_command);
1865                         if (lcfg->lcfg_command == LCFG_LOV_ADD_OBD)
1866                                 /* Add inactive instead */
1867                                 lcfg->lcfg_command = LCFG_LOV_ADD_INA;
1868                 }
1869
1870                 lustre_cfg_bufs_reset(&bufs, NULL);
1871                 lustre_cfg_bufs_init(&bufs, lcfg);
1872
1873                 if (cfg->cfg_instance &&
1874                     lcfg->lcfg_command != LCFG_SPTLRPC_CONF &&
1875                     LUSTRE_CFG_BUFLEN(lcfg, 0) > 0) {
1876                         inst_len = LUSTRE_CFG_BUFLEN(lcfg, 0) +
1877                                 LUSTRE_MAXINSTANCE + 4;
1878                         OBD_ALLOC(inst_name, inst_len);
1879                         if (!inst_name)
1880                                 GOTO(out, rc = -ENOMEM);
1881                         snprintf(inst_name, inst_len, "%s-%016lx",
1882                                 lustre_cfg_string(lcfg, 0),
1883                                 cfg->cfg_instance);
1884                         lustre_cfg_bufs_set_string(&bufs, 0, inst_name);
1885                         CDEBUG(D_CONFIG, "cmd %x, instance name: %s\n",
1886                                lcfg->lcfg_command, inst_name);
1887                 }
1888
1889                 /* override llog UUID for clients, to insure they are unique */
1890                 if (cfg->cfg_instance && lcfg->lcfg_command == LCFG_ATTACH)
1891                         lustre_cfg_bufs_set_string(&bufs, 2,
1892                                                    cfg->cfg_uuid.uuid);
1893                 /*
1894                  * sptlrpc config record, we expect 2 data segments:
1895                  *  [0]: fs_name/target_name,
1896                  *  [1]: rule string
1897                  * moving them to index [1] and [2], and insert MGC's
1898                  * obdname at index [0].
1899                  */
1900                 if (cfg->cfg_instance &&
1901                     lcfg->lcfg_command == LCFG_SPTLRPC_CONF) {
1902                         /* After ASLR changes cfg_instance this needs fixing */
1903                         /* "obd" is set in config_log_find_or_add() */
1904                         struct obd_device *obd = (void *)cfg->cfg_instance;
1905
1906                         lustre_cfg_bufs_set(&bufs, 2, bufs.lcfg_buf[1],
1907                                             bufs.lcfg_buflen[1]);
1908                         lustre_cfg_bufs_set(&bufs, 1, bufs.lcfg_buf[0],
1909                                             bufs.lcfg_buflen[0]);
1910                         lustre_cfg_bufs_set_string(&bufs, 0,
1911                                                    obd->obd_name);
1912                 }
1913
1914                 /*
1915                  * Add net info to setup command
1916                  * if given on command line.
1917                  * So config log will be:
1918                  * [0]: client name
1919                  * [1]: client UUID
1920                  * [2]: server UUID
1921                  * [3]: inactive-on-startup
1922                  * [4]: restrictive net
1923                  */
1924                 if (cfg && cfg->cfg_sb && s2lsi(cfg->cfg_sb) &&
1925                     !IS_SERVER(s2lsi(cfg->cfg_sb))) {
1926                         struct lustre_sb_info *lsi = s2lsi(cfg->cfg_sb);
1927                         char *nidnet = lsi->lsi_lmd->lmd_nidnet;
1928
1929                         if (lcfg->lcfg_command == LCFG_SETUP &&
1930                             lcfg->lcfg_bufcount != 2 && nidnet) {
1931                                 CDEBUG(D_CONFIG, "Adding net %s info to setup "
1932                                        "command for client %s\n", nidnet,
1933                                        lustre_cfg_string(lcfg, 0));
1934                                 lustre_cfg_bufs_set_string(&bufs, 4, nidnet);
1935                         }
1936                 }
1937
1938                 /*
1939                  * Skip add_conn command if uuid is
1940                  * not on restricted net
1941                  */
1942                 if (cfg && cfg->cfg_sb && s2lsi(cfg->cfg_sb) &&
1943                     !IS_SERVER(s2lsi(cfg->cfg_sb))) {
1944                         struct lustre_sb_info *lsi = s2lsi(cfg->cfg_sb);
1945                         char *uuid_str = lustre_cfg_string(lcfg, 1);
1946
1947                         if (lcfg->lcfg_command == LCFG_ADD_CONN &&
1948                             lsi->lsi_lmd->lmd_nidnet &&
1949                             LNET_NIDNET(libcfs_str2nid(uuid_str)) !=
1950                             libcfs_str2net(lsi->lsi_lmd->lmd_nidnet)) {
1951                                 CDEBUG(D_CONFIG, "skipping add_conn for %s\n",
1952                                        uuid_str);
1953                                 rc = 0;
1954                                 /* No processing! */
1955                                 break;
1956                         }
1957                 }
1958
1959                 OBD_ALLOC(lcfg_new, lustre_cfg_len(bufs.lcfg_bufcount,
1960                                                    bufs.lcfg_buflen));
1961                 if (!lcfg_new)
1962                         GOTO(out, rc = -ENOMEM);
1963
1964                 lustre_cfg_init(lcfg_new, lcfg->lcfg_command, &bufs);
1965                 lcfg_new->lcfg_num   = lcfg->lcfg_num;
1966                 lcfg_new->lcfg_flags = lcfg->lcfg_flags;
1967
1968                 /*
1969                  * XXX Hack to try to remain binary compatible with
1970                  * pre-newconfig logs
1971                  */
1972                 if (lcfg->lcfg_nal != 0 &&      /* pre-newconfig log? */
1973                     (lcfg->lcfg_nid >> 32) == 0) {
1974                         __u32 addr = (__u32)(lcfg->lcfg_nid & 0xffffffff);
1975
1976                         lcfg_new->lcfg_nid =
1977                                 LNET_MKNID(LNET_MKNET(lcfg->lcfg_nal, 0), addr);
1978                         CWARN("Converted pre-newconfig NAL %d NID %x to %s\n",
1979                               lcfg->lcfg_nal, addr,
1980                               libcfs_nid2str(lcfg_new->lcfg_nid));
1981                 } else {
1982                         lcfg_new->lcfg_nid = lcfg->lcfg_nid;
1983                 }
1984
1985                 lcfg_new->lcfg_nal = 0; /* illegal value for obsolete field */
1986
1987                 rc = class_process_config(lcfg_new);
1988                 OBD_FREE(lcfg_new, lustre_cfg_len(lcfg_new->lcfg_bufcount,
1989                                                   lcfg_new->lcfg_buflens));
1990                 if (inst_name)
1991                         OBD_FREE(inst_name, inst_len);
1992                 break;
1993         }
1994         default:
1995                 CERROR("Unknown llog record type %#x encountered\n",
1996                        rec->lrh_type);
1997                 break;
1998         }
1999 out:
2000         if (rc) {
2001                 CERROR("%s: cfg command failed: rc = %d\n",
2002                         handle->lgh_ctxt->loc_obd->obd_name, rc);
2003                 class_config_dump_handler(NULL, handle, rec, data);
2004         }
2005         RETURN(rc);
2006 }
2007 EXPORT_SYMBOL(class_config_llog_handler);
2008
2009 int class_config_parse_llog(const struct lu_env *env, struct llog_ctxt *ctxt,
2010                             char *name, struct config_llog_instance *cfg)
2011 {
2012         struct llog_process_cat_data cd = {
2013                 .lpcd_first_idx = 0,
2014         };
2015         struct llog_handle *llh;
2016         llog_cb_t callback;
2017         int rc;
2018         ENTRY;
2019
2020         CDEBUG(D_INFO, "looking up llog %s\n", name);
2021         rc = llog_open(env, ctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
2022         if (rc)
2023                 RETURN(rc);
2024
2025         rc = llog_init_handle(env, llh, LLOG_F_IS_PLAIN, NULL);
2026         if (rc)
2027                 GOTO(parse_out, rc);
2028
2029         /* continue processing from where we last stopped to end-of-log */
2030         if (cfg) {
2031                 cd.lpcd_first_idx = cfg->cfg_last_idx;
2032                 callback = cfg->cfg_callback;
2033                 LASSERT(callback != NULL);
2034         } else {
2035                 callback = class_config_llog_handler;
2036         }
2037
2038         cd.lpcd_last_idx = 0;
2039
2040         rc = llog_process(env, llh, callback, cfg, &cd);
2041
2042         CDEBUG(D_CONFIG, "Processed log %s gen %d-%d (rc=%d)\n", name,
2043                cd.lpcd_first_idx + 1, cd.lpcd_last_idx, rc);
2044         if (cfg)
2045                 cfg->cfg_last_idx = cd.lpcd_last_idx;
2046
2047 parse_out:
2048         llog_close(env, llh);
2049         RETURN(rc);
2050 }
2051 EXPORT_SYMBOL(class_config_parse_llog);
2052
2053 /**
2054  * Parse config record and output dump in supplied buffer.
2055  *
2056  * This is separated from class_config_dump_handler() to use
2057  * for ioctl needs as well
2058  *
2059  * Sample Output:
2060  * - { index: 4, event: attach, device: lustrewt-clilov, type: lov,
2061  *     UUID: lustrewt-clilov_UUID }
2062  */
2063 int class_config_yaml_output(struct llog_rec_hdr *rec, char *buf, int size)
2064 {
2065         struct lustre_cfg *lcfg = (struct lustre_cfg *)(rec + 1);
2066         char *ptr = buf;
2067         char *end = buf + size;
2068         int rc = 0, i;
2069         struct lcfg_type_data *ldata;
2070
2071         LASSERT(rec->lrh_type == OBD_CFG_REC);
2072         rc = lustre_cfg_sanity_check(lcfg, rec->lrh_len);
2073         if (rc < 0)
2074                 return rc;
2075
2076         ldata = lcfg_cmd2data(lcfg->lcfg_command);
2077         if (!ldata)
2078                 return -ENOTTY;
2079
2080         if (lcfg->lcfg_command == LCFG_MARKER)
2081                 return 0;
2082
2083         /* form YAML entity */
2084         ptr += snprintf(ptr, end - ptr, "- { index: %u, event: %s",
2085                         rec->lrh_index, ldata->ltd_name);
2086         if (end - ptr <= 0)
2087                 goto out_overflow;
2088
2089         if (lcfg->lcfg_flags) {
2090                 ptr += snprintf(ptr, end - ptr, ", flags: %#08x",
2091                                 lcfg->lcfg_flags);
2092                 if (end - ptr <= 0)
2093                         goto out_overflow;
2094         }
2095         if (lcfg->lcfg_num) {
2096                 ptr += snprintf(ptr, end - ptr, ", num: %#08x",
2097                                 lcfg->lcfg_num);
2098                 if (end - ptr <= 0)
2099                         goto out_overflow;
2100         }
2101         if (lcfg->lcfg_nid) {
2102                 char nidstr[LNET_NIDSTR_SIZE];
2103
2104                 libcfs_nid2str_r(lcfg->lcfg_nid, nidstr, sizeof(nidstr));
2105                 ptr += snprintf(ptr, end - ptr, ", nid: %s(%#llx)",
2106                                 nidstr, lcfg->lcfg_nid);
2107                 if (end - ptr <= 0)
2108                         goto out_overflow;
2109         }
2110
2111         if (LUSTRE_CFG_BUFLEN(lcfg, 0) > 0) {
2112                 ptr += snprintf(ptr, end - ptr, ", device: %s",
2113                                 lustre_cfg_string(lcfg, 0));
2114                 if (end - ptr <= 0)
2115                         goto out_overflow;
2116         }
2117
2118         if (lcfg->lcfg_command == LCFG_SET_PARAM) {
2119                 /*
2120                  * set_param -P parameters have param=val here, separate
2121                  * them through pointer magic and print them out in
2122                  * native yamlese
2123                  */
2124                 char *cfg_str = lustre_cfg_string(lcfg, 1);
2125                 char *tmp = strchr(cfg_str, '=');
2126                 size_t len;
2127
2128                 if (!tmp)
2129                         goto out_done;
2130
2131                 ptr += snprintf(ptr, end - ptr, ", %s: ", ldata->ltd_bufs[0]);
2132                 len = tmp - cfg_str + 1;
2133                 snprintf(ptr, len, "%s", cfg_str);
2134                 ptr += len - 1;
2135
2136                 ptr += snprintf(ptr, end - ptr, ", %s: ", ldata->ltd_bufs[1]);
2137                 ptr += snprintf(ptr, end - ptr, "%s", tmp + 1);
2138
2139                 goto out_done;
2140         }
2141
2142         for (i = 1; i < lcfg->lcfg_bufcount; i++) {
2143                 if (LUSTRE_CFG_BUFLEN(lcfg, i) > 0) {
2144                         ptr += snprintf(ptr, end - ptr, ", %s: %s",
2145                                         ldata->ltd_bufs[i - 1],
2146                                         lustre_cfg_string(lcfg, i));
2147                         if (end - ptr <= 0)
2148                                 goto out_overflow;
2149                 }
2150         }
2151
2152 out_done:
2153         ptr += snprintf(ptr, end - ptr, " }\n");
2154 out_overflow:
2155         /* Return consumed bytes.  If the buffer overflowed, zero last byte */
2156         rc = ptr - buf;
2157         if (rc > size) {
2158                 rc = -EOVERFLOW;
2159                 *(end - 1) = '\0';
2160         }
2161
2162         return rc;
2163 }
2164
2165 /**
2166  * parse config record and output dump in supplied buffer.
2167  * This is separated from class_config_dump_handler() to use
2168  * for ioctl needs as well
2169  */
2170 static int class_config_parse_rec(struct llog_rec_hdr *rec, char *buf, int size)
2171 {
2172         struct lustre_cfg       *lcfg = (struct lustre_cfg *)(rec + 1);
2173         char                    *ptr = buf;
2174         char                    *end = buf + size;
2175         int                      rc = 0;
2176
2177         ENTRY;
2178
2179         LASSERT(rec->lrh_type == OBD_CFG_REC);
2180         rc = lustre_cfg_sanity_check(lcfg, rec->lrh_len);
2181         if (rc < 0)
2182                 RETURN(rc);
2183
2184         ptr += snprintf(ptr, end-ptr, "cmd=%05x ", lcfg->lcfg_command);
2185         if (lcfg->lcfg_flags)
2186                 ptr += snprintf(ptr, end-ptr, "flags=%#08x ",
2187                                 lcfg->lcfg_flags);
2188
2189         if (lcfg->lcfg_num)
2190                 ptr += snprintf(ptr, end-ptr, "num=%#08x ", lcfg->lcfg_num);
2191
2192         if (lcfg->lcfg_nid) {
2193                 char nidstr[LNET_NIDSTR_SIZE];
2194
2195                 libcfs_nid2str_r(lcfg->lcfg_nid, nidstr, sizeof(nidstr));
2196                 ptr += snprintf(ptr, end-ptr, "nid=%s(%#llx)    ",
2197                                 nidstr, lcfg->lcfg_nid);
2198         }
2199
2200         if (lcfg->lcfg_command == LCFG_MARKER) {
2201                 struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
2202
2203                 ptr += snprintf(ptr, end-ptr, "marker=%d(%#x)%s '%s'",
2204                                 marker->cm_step, marker->cm_flags,
2205                                 marker->cm_tgtname, marker->cm_comment);
2206         } else {
2207                 int i;
2208
2209                 for (i = 0; i <  lcfg->lcfg_bufcount; i++) {
2210                         ptr += snprintf(ptr, end-ptr, "%d:%s  ", i,
2211                                         lustre_cfg_string(lcfg, i));
2212                 }
2213         }
2214         ptr += snprintf(ptr, end - ptr, "\n");
2215         /* return consumed bytes */
2216         rc = ptr - buf;
2217         RETURN(rc);
2218 }
2219
2220 int class_config_dump_handler(const struct lu_env *env,
2221                               struct llog_handle *handle,
2222                               struct llog_rec_hdr *rec, void *data)
2223 {
2224         char *outstr;
2225         int rc = 0;
2226
2227         ENTRY;
2228
2229         OBD_ALLOC(outstr, 256);
2230         if (!outstr)
2231                 RETURN(-ENOMEM);
2232
2233         if (rec->lrh_type == OBD_CFG_REC) {
2234                 class_config_parse_rec(rec, outstr, 256);
2235                 LCONSOLE(D_WARNING, "   %s\n", outstr);
2236         } else {
2237                 LCONSOLE(D_WARNING, "unhandled lrh_type: %#x\n", rec->lrh_type);
2238                 rc = -EINVAL;
2239         }
2240
2241         OBD_FREE(outstr, 256);
2242         RETURN(rc);
2243 }
2244
2245 /**
2246  * Call class_cleanup and class_detach.
2247  * "Manual" only in the sense that we're faking lcfg commands.
2248  */
2249 int class_manual_cleanup(struct obd_device *obd)
2250 {
2251         char flags[3] = "";
2252         struct lustre_cfg *lcfg;
2253         struct lustre_cfg_bufs bufs;
2254         int rc;
2255
2256         ENTRY;
2257
2258         if (!obd) {
2259                 CERROR("empty cleanup\n");
2260                 RETURN(-EALREADY);
2261         }
2262
2263         if (obd->obd_force)
2264                 strlcat(flags, "F", sizeof(flags));
2265         if (obd->obd_fail)
2266                 strlcat(flags, "A", sizeof(flags));
2267
2268         CDEBUG(D_CONFIG, "Manual cleanup of %s (flags='%s')\n",
2269                obd->obd_name, flags);
2270
2271         lustre_cfg_bufs_reset(&bufs, obd->obd_name);
2272         lustre_cfg_bufs_set_string(&bufs, 1, flags);
2273         OBD_ALLOC(lcfg, lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
2274         if (!lcfg)
2275                 RETURN(-ENOMEM);
2276         lustre_cfg_init(lcfg, LCFG_CLEANUP, &bufs);
2277
2278         rc = class_process_config(lcfg);
2279         if (rc) {
2280                 CERROR("cleanup failed %d: %s\n", rc, obd->obd_name);
2281                 GOTO(out, rc);
2282         }
2283
2284         /* the lcfg is almost the same for both ops */
2285         lcfg->lcfg_command = LCFG_DETACH;
2286         rc = class_process_config(lcfg);
2287         if (rc)
2288                 CERROR("detach failed %d: %s\n", rc, obd->obd_name);
2289 out:
2290         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
2291         RETURN(rc);
2292 }
2293 EXPORT_SYMBOL(class_manual_cleanup);
2294
2295 #ifdef HAVE_SERVER_SUPPORT
2296 /*
2297  * nid<->nidstats hash operations
2298  */
2299 static unsigned
2300 nidstats_hash(struct cfs_hash *hs, const void *key, unsigned int mask)
2301 {
2302         return cfs_hash_djb2_hash(key, sizeof(lnet_nid_t), mask);
2303 }
2304
2305 static void *
2306 nidstats_key(struct hlist_node *hnode)
2307 {
2308         struct nid_stat *ns;
2309
2310         ns = hlist_entry(hnode, struct nid_stat, nid_hash);
2311
2312         return &ns->nid;
2313 }
2314
2315 static int
2316 nidstats_keycmp(const void *key, struct hlist_node *hnode)
2317 {
2318         return *(lnet_nid_t *)nidstats_key(hnode) == *(lnet_nid_t *)key;
2319 }
2320
2321 static void *
2322 nidstats_object(struct hlist_node *hnode)
2323 {
2324         return hlist_entry(hnode, struct nid_stat, nid_hash);
2325 }
2326
2327 static void
2328 nidstats_get(struct cfs_hash *hs, struct hlist_node *hnode)
2329 {
2330         struct nid_stat *ns;
2331
2332         ns = hlist_entry(hnode, struct nid_stat, nid_hash);
2333         nidstat_getref(ns);
2334 }
2335
2336 static void
2337 nidstats_put_locked(struct cfs_hash *hs, struct hlist_node *hnode)
2338 {
2339         struct nid_stat *ns;
2340
2341         ns = hlist_entry(hnode, struct nid_stat, nid_hash);
2342         nidstat_putref(ns);
2343 }
2344
2345 static struct cfs_hash_ops nid_stat_hash_ops = {
2346         .hs_hash        = nidstats_hash,
2347         .hs_key         = nidstats_key,
2348         .hs_keycmp      = nidstats_keycmp,
2349         .hs_object      = nidstats_object,
2350         .hs_get         = nidstats_get,
2351         .hs_put_locked  = nidstats_put_locked,
2352 };
2353
2354
2355 /*
2356  * client_generation<->export hash operations
2357  */
2358
2359 static unsigned
2360 gen_hash(struct cfs_hash *hs, const void *key, unsigned mask)
2361 {
2362         return cfs_hash_djb2_hash(key, sizeof(__u32), mask);
2363 }
2364
2365 static void *
2366 gen_key(struct hlist_node *hnode)
2367 {
2368         struct obd_export *exp;
2369
2370         exp = hlist_entry(hnode, struct obd_export, exp_gen_hash);
2371
2372         RETURN(&exp->exp_target_data.ted_lcd->lcd_generation);
2373 }
2374
2375 /*
2376  * NOTE: It is impossible to find an export that is in failed
2377  *       state with this function
2378  */
2379 static int
2380 gen_kepcmp(const void *key, struct hlist_node *hnode)
2381 {
2382         struct obd_export *exp;
2383
2384         LASSERT(key);
2385         exp = hlist_entry(hnode, struct obd_export, exp_gen_hash);
2386
2387         RETURN(exp->exp_target_data.ted_lcd->lcd_generation == *(__u32 *)key &&
2388                !exp->exp_failed);
2389 }
2390
2391 static void *
2392 gen_export_object(struct hlist_node *hnode)
2393 {
2394         return hlist_entry(hnode, struct obd_export, exp_gen_hash);
2395 }
2396
2397 static void
2398 gen_export_get(struct cfs_hash *hs, struct hlist_node *hnode)
2399 {
2400         struct obd_export *exp;
2401
2402         exp = hlist_entry(hnode, struct obd_export, exp_gen_hash);
2403         class_export_get(exp);
2404 }
2405
2406 static void
2407 gen_export_put_locked(struct cfs_hash *hs, struct hlist_node *hnode)
2408 {
2409         struct obd_export *exp;
2410
2411         exp = hlist_entry(hnode, struct obd_export, exp_gen_hash);
2412         class_export_put(exp);
2413 }
2414
2415 static struct cfs_hash_ops gen_hash_ops = {
2416         .hs_hash        = gen_hash,
2417         .hs_key         = gen_key,
2418         .hs_keycmp      = gen_kepcmp,
2419         .hs_object      = gen_export_object,
2420         .hs_get         = gen_export_get,
2421         .hs_put_locked  = gen_export_put_locked,
2422 };
2423
2424 #endif /* HAVE_SERVER_SUPPORT */