4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, 2013, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/obdclass/obd_config.c
41 #define DEBUG_SUBSYSTEM S_CLASS
43 #include <obd_class.h>
44 #include <linux/string.h>
45 #include <lustre_disk.h>
47 #include <liblustre.h>
49 #include <obd_class.h>
52 #include <lustre_ioctl.h>
53 #include <lustre_log.h>
54 #include <lprocfs_status.h>
55 #include <lustre_param.h>
57 #include "llog_internal.h"
59 static cfs_hash_ops_t uuid_hash_ops;
60 static cfs_hash_ops_t nid_hash_ops;
61 static cfs_hash_ops_t nid_stat_hash_ops;
63 /*********** string parsing utils *********/
65 /* returns 0 if we find this key in the buffer, else 1 */
66 int class_find_param(char *buf, char *key, char **valp)
73 if ((ptr = strstr(buf, key)) == NULL)
77 *valp = ptr + strlen(key);
81 EXPORT_SYMBOL(class_find_param);
84 * Check whether the proc parameter \a param is an old parameter or not from
85 * the array \a ptr which contains the mapping from old parameters to new ones.
86 * If it's an old one, then return the pointer to the cfg_interop_param struc-
87 * ture which contains both the old and new parameters.
89 * \param param proc parameter
90 * \param ptr an array which contains the mapping from
91 * old parameters to new ones
93 * \retval valid-pointer pointer to the cfg_interop_param structure
94 * which contains the old and new parameters
95 * \retval NULL \a param or \a ptr is NULL,
96 * or \a param is not an old parameter
98 struct cfg_interop_param *class_find_old_param(const char *param,
99 struct cfg_interop_param *ptr)
104 if (param == NULL || ptr == NULL)
107 value = strchr(param, '=');
109 name_len = strlen(param);
111 name_len = value - param;
113 while (ptr->old_param != NULL) {
114 if (strncmp(param, ptr->old_param, name_len) == 0 &&
115 name_len == strlen(ptr->old_param))
122 EXPORT_SYMBOL(class_find_old_param);
125 * Finds a parameter in \a params and copies it to \a copy.
127 * Leading spaces are skipped. Next space or end of string is the
128 * parameter terminator with the exception that spaces inside single or double
129 * quotes get included into a parameter. The parameter is copied into \a copy
130 * which has to be allocated big enough by a caller, quotes are stripped in
131 * the copy and the copy is terminated by 0.
133 * On return \a params is set to next parameter or to NULL if last
134 * parameter is returned.
136 * \retval 0 if parameter is returned in \a copy
137 * \retval 1 otherwise
138 * \retval -EINVAL if unbalanced quota is found
140 int class_get_next_param(char **params, char *copy)
155 q1 = strpbrk(str, " '\"");
158 memcpy(copy, str, len);
165 memcpy(copy, str, len);
171 memcpy(copy, str, len);
174 /* search for the matching closing quote */
176 q2 = strchr(str, *q1);
178 CERROR("Unbalanced quota in parameters: \"%s\"\n",
183 memcpy(copy, str, len);
189 EXPORT_SYMBOL(class_get_next_param);
191 /* returns 0 if this is the first key in the buffer, else 1.
192 valp points to first char after key. */
193 int class_match_param(char *buf, char *key, char **valp)
198 if (memcmp(buf, key, strlen(key)) != 0)
202 *valp = buf + strlen(key);
206 EXPORT_SYMBOL(class_match_param);
208 static int parse_nid(char *buf, void *value, int quiet)
210 lnet_nid_t *nid = (lnet_nid_t *)value;
212 *nid = libcfs_str2nid(buf);
213 if (*nid != LNET_NID_ANY)
217 LCONSOLE_ERROR_MSG(0x159, "Can't parse NID '%s'\n", buf);
221 static int parse_net(char *buf, void *value)
223 __u32 *net = (__u32 *)value;
225 *net = libcfs_str2net(buf);
226 CDEBUG(D_INFO, "Net %s\n", libcfs_net2str(*net));
238 endh is set to next separator */
239 static int class_parse_value(char *buf, int opc, void *value, char **endh,
248 while (*buf == ',' || *buf == ':')
250 if (*buf == ' ' || *buf == '/' || *buf == '\0')
253 /* nid separators or end of nids */
254 endp = strpbrk(buf, ",: /");
256 endp = buf + strlen(buf);
263 case CLASS_PARSE_NID:
264 rc = parse_nid(buf, value, quiet);
266 case CLASS_PARSE_NET:
267 rc = parse_net(buf, value);
278 int class_parse_nid(char *buf, lnet_nid_t *nid, char **endh)
280 return class_parse_value(buf, CLASS_PARSE_NID, (void *)nid, endh, 0);
282 EXPORT_SYMBOL(class_parse_nid);
284 int class_parse_nid_quiet(char *buf, lnet_nid_t *nid, char **endh)
286 return class_parse_value(buf, CLASS_PARSE_NID, (void *)nid, endh, 1);
288 EXPORT_SYMBOL(class_parse_nid_quiet);
290 int class_parse_net(char *buf, __u32 *net, char **endh)
292 return class_parse_value(buf, CLASS_PARSE_NET, (void *)net, endh, 0);
294 EXPORT_SYMBOL(class_parse_net);
296 /* 1 param contains key and match
297 * 0 param contains key and not match
298 * -1 param does not contain key
300 int class_match_nid(char *buf, char *key, lnet_nid_t nid)
305 while (class_find_param(buf, key, &buf) == 0) {
306 /* please restrict to the nids pertaining to
307 * the specified nids */
308 while (class_parse_nid(buf, &tmp, &buf) == 0) {
316 EXPORT_SYMBOL(class_match_nid);
318 int class_match_net(char *buf, char *key, __u32 net)
323 while (class_find_param(buf, key, &buf) == 0) {
324 /* please restrict to the nids pertaining to
325 * the specified networks */
326 while (class_parse_net(buf, &tmp, &buf) == 0) {
334 EXPORT_SYMBOL(class_match_net);
336 /********************** class fns **********************/
339 * Create a new obd device and set the type, name and uuid. If successful,
340 * the new device can be accessed by either name or uuid.
342 int class_attach(struct lustre_cfg *lcfg)
344 struct obd_device *obd = NULL;
345 char *typename, *name, *uuid;
349 if (!LUSTRE_CFG_BUFLEN(lcfg, 1)) {
350 CERROR("No type passed!\n");
353 typename = lustre_cfg_string(lcfg, 1);
355 if (!LUSTRE_CFG_BUFLEN(lcfg, 0)) {
356 CERROR("No name passed!\n");
359 name = lustre_cfg_string(lcfg, 0);
361 if (!LUSTRE_CFG_BUFLEN(lcfg, 2)) {
362 CERROR("No UUID passed!\n");
365 uuid = lustre_cfg_string(lcfg, 2);
367 CDEBUG(D_IOCTL, "attach type %s name: %s uuid: %s\n",
368 MKSTR(typename), MKSTR(name), MKSTR(uuid));
370 obd = class_newdev(typename, name);
372 /* Already exists or out of obds */
375 CERROR("Cannot create device %s of type %s : %d\n",
379 LASSERTF(obd != NULL, "Cannot get obd device %s of type %s\n",
381 LASSERTF(obd->obd_magic == OBD_DEVICE_MAGIC,
382 "obd %p obd_magic %08X != %08X\n",
383 obd, obd->obd_magic, OBD_DEVICE_MAGIC);
384 LASSERTF(strncmp(obd->obd_name, name, strlen(name)) == 0,
385 "%p obd_name %s != %s\n", obd, obd->obd_name, name);
387 rwlock_init(&obd->obd_pool_lock);
388 obd->obd_pool_limit = 0;
389 obd->obd_pool_slv = 0;
391 CFS_INIT_LIST_HEAD(&obd->obd_exports);
392 CFS_INIT_LIST_HEAD(&obd->obd_unlinked_exports);
393 CFS_INIT_LIST_HEAD(&obd->obd_delayed_exports);
394 CFS_INIT_LIST_HEAD(&obd->obd_exports_timed);
395 CFS_INIT_LIST_HEAD(&obd->obd_nid_stats);
396 spin_lock_init(&obd->obd_nid_lock);
397 spin_lock_init(&obd->obd_dev_lock);
398 mutex_init(&obd->obd_dev_mutex);
399 spin_lock_init(&obd->obd_osfs_lock);
400 /* obd->obd_osfs_age must be set to a value in the distant
401 * past to guarantee a fresh statfs is fetched on mount. */
402 obd->obd_osfs_age = cfs_time_shift_64(-1000);
404 /* XXX belongs in setup not attach */
405 init_rwsem(&obd->obd_observer_link_sem);
407 cfs_init_timer(&obd->obd_recovery_timer);
408 spin_lock_init(&obd->obd_recovery_task_lock);
409 init_waitqueue_head(&obd->obd_next_transno_waitq);
410 init_waitqueue_head(&obd->obd_evict_inprogress_waitq);
411 CFS_INIT_LIST_HEAD(&obd->obd_req_replay_queue);
412 CFS_INIT_LIST_HEAD(&obd->obd_lock_replay_queue);
413 CFS_INIT_LIST_HEAD(&obd->obd_final_req_queue);
414 CFS_INIT_LIST_HEAD(&obd->obd_evict_list);
415 INIT_LIST_HEAD(&obd->obd_lwp_list);
417 llog_group_init(&obd->obd_olg);
419 obd->obd_conn_inprogress = 0;
422 if (len >= sizeof(obd->obd_uuid)) {
423 CERROR("uuid must be < %d bytes long\n",
424 (int)sizeof(obd->obd_uuid));
425 GOTO(out, rc = -EINVAL);
427 memcpy(obd->obd_uuid.uuid, uuid, len);
429 /* Detach drops this */
430 spin_lock(&obd->obd_dev_lock);
431 atomic_set(&obd->obd_refcount, 1);
432 spin_unlock(&obd->obd_dev_lock);
433 lu_ref_init(&obd->obd_reference);
434 lu_ref_add(&obd->obd_reference, "attach", obd);
436 obd->obd_attached = 1;
437 CDEBUG(D_IOCTL, "OBD: dev %d attached type %s with refcount %d\n",
438 obd->obd_minor, typename, atomic_read(&obd->obd_refcount));
442 class_release_dev(obd);
446 EXPORT_SYMBOL(class_attach);
448 /** Create hashes, self-export, and call type-specific setup.
449 * Setup is effectively the "start this obd" call.
451 int class_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
454 struct obd_export *exp;
457 LASSERT(obd != NULL);
458 LASSERTF(obd == class_num2obd(obd->obd_minor),
459 "obd %p != obd_devs[%d] %p\n",
460 obd, obd->obd_minor, class_num2obd(obd->obd_minor));
461 LASSERTF(obd->obd_magic == OBD_DEVICE_MAGIC,
462 "obd %p obd_magic %08x != %08x\n",
463 obd, obd->obd_magic, OBD_DEVICE_MAGIC);
465 /* have we attached a type to this device? */
466 if (!obd->obd_attached) {
467 CERROR("Device %d not attached\n", obd->obd_minor);
471 if (obd->obd_set_up) {
472 CERROR("Device %d already setup (type %s)\n",
473 obd->obd_minor, obd->obd_type->typ_name);
477 /* is someone else setting us up right now? (attach inits spinlock) */
478 spin_lock(&obd->obd_dev_lock);
479 if (obd->obd_starting) {
480 spin_unlock(&obd->obd_dev_lock);
481 CERROR("Device %d setup in progress (type %s)\n",
482 obd->obd_minor, obd->obd_type->typ_name);
485 /* just leave this on forever. I can't use obd_set_up here because
486 other fns check that status, and we're not actually set up yet. */
487 obd->obd_starting = 1;
488 obd->obd_uuid_hash = NULL;
489 obd->obd_nid_hash = NULL;
490 obd->obd_nid_stats_hash = NULL;
491 spin_unlock(&obd->obd_dev_lock);
493 /* create an uuid-export lustre hash */
494 obd->obd_uuid_hash = cfs_hash_create("UUID_HASH",
497 HASH_UUID_BKT_BITS, 0,
500 &uuid_hash_ops, CFS_HASH_DEFAULT);
501 if (!obd->obd_uuid_hash)
502 GOTO(err_hash, err = -ENOMEM);
504 /* create a nid-export lustre hash */
505 obd->obd_nid_hash = cfs_hash_create("NID_HASH",
508 HASH_NID_BKT_BITS, 0,
511 &nid_hash_ops, CFS_HASH_DEFAULT);
512 if (!obd->obd_nid_hash)
513 GOTO(err_hash, err = -ENOMEM);
515 /* create a nid-stats lustre hash */
516 obd->obd_nid_stats_hash = cfs_hash_create("NID_STATS",
517 HASH_NID_STATS_CUR_BITS,
518 HASH_NID_STATS_MAX_BITS,
519 HASH_NID_STATS_BKT_BITS, 0,
522 &nid_stat_hash_ops, CFS_HASH_DEFAULT);
523 if (!obd->obd_nid_stats_hash)
524 GOTO(err_hash, err = -ENOMEM);
526 exp = class_new_export(obd, &obd->obd_uuid);
528 GOTO(err_hash, err = PTR_ERR(exp));
530 obd->obd_self_export = exp;
531 cfs_list_del_init(&exp->exp_obd_chain_timed);
532 class_export_put(exp);
534 err = obd_setup(obd, lcfg);
540 spin_lock(&obd->obd_dev_lock);
541 /* cleanup drops this */
542 class_incref(obd, "setup", obd);
543 spin_unlock(&obd->obd_dev_lock);
545 CDEBUG(D_IOCTL, "finished setup of obd %s (uuid %s)\n",
546 obd->obd_name, obd->obd_uuid.uuid);
550 if (obd->obd_self_export) {
551 class_unlink_export(obd->obd_self_export);
552 obd->obd_self_export = NULL;
555 if (obd->obd_uuid_hash) {
556 cfs_hash_putref(obd->obd_uuid_hash);
557 obd->obd_uuid_hash = NULL;
559 if (obd->obd_nid_hash) {
560 cfs_hash_putref(obd->obd_nid_hash);
561 obd->obd_nid_hash = NULL;
563 if (obd->obd_nid_stats_hash) {
564 cfs_hash_putref(obd->obd_nid_stats_hash);
565 obd->obd_nid_stats_hash = NULL;
567 obd->obd_starting = 0;
568 CERROR("setup %s failed (%d)\n", obd->obd_name, err);
571 EXPORT_SYMBOL(class_setup);
573 /** We have finished using this obd and are ready to destroy it.
574 * There can be no more references to this obd.
576 int class_detach(struct obd_device *obd, struct lustre_cfg *lcfg)
580 if (obd->obd_set_up) {
581 CERROR("OBD device %d still set up\n", obd->obd_minor);
585 spin_lock(&obd->obd_dev_lock);
586 if (!obd->obd_attached) {
587 spin_unlock(&obd->obd_dev_lock);
588 CERROR("OBD device %d not attached\n", obd->obd_minor);
591 obd->obd_attached = 0;
592 spin_unlock(&obd->obd_dev_lock);
594 CDEBUG(D_IOCTL, "detach on obd %s (uuid %s)\n",
595 obd->obd_name, obd->obd_uuid.uuid);
597 class_decref(obd, "attach", obd);
600 EXPORT_SYMBOL(class_detach);
602 /** Start shutting down the obd. There may be in-progess ops when
603 * this is called. We tell them to start shutting down with a call
604 * to class_disconnect_exports().
606 int class_cleanup(struct obd_device *obd, struct lustre_cfg *lcfg)
612 OBD_RACE(OBD_FAIL_LDLM_RECOV_CLIENTS);
614 if (!obd->obd_set_up) {
615 CERROR("Device %d not setup\n", obd->obd_minor);
619 spin_lock(&obd->obd_dev_lock);
620 if (obd->obd_stopping) {
621 spin_unlock(&obd->obd_dev_lock);
622 CERROR("OBD %d already stopping\n", obd->obd_minor);
625 /* Leave this on forever */
626 obd->obd_stopping = 1;
628 /* wait for already-arrived-connections to finish. */
629 while (obd->obd_conn_inprogress > 0) {
630 spin_unlock(&obd->obd_dev_lock);
634 spin_lock(&obd->obd_dev_lock);
636 spin_unlock(&obd->obd_dev_lock);
638 if (lcfg->lcfg_bufcount >= 2 && LUSTRE_CFG_BUFLEN(lcfg, 1) > 0) {
639 for (flag = lustre_cfg_string(lcfg, 1); *flag != 0; flag++)
645 LCONSOLE_WARN("Failing over %s\n",
648 obd->obd_no_transno = 1;
649 obd->obd_no_recov = 1;
650 if (OBP(obd, iocontrol)) {
651 obd_iocontrol(OBD_IOC_SYNC,
652 obd->obd_self_export,
657 CERROR("Unrecognised flag '%c'\n", *flag);
661 LASSERT(obd->obd_self_export);
663 /* The three references that should be remaining are the
664 * obd_self_export and the attach and setup references. */
665 if (atomic_read(&obd->obd_refcount) > 3) {
666 /* refcounf - 3 might be the number of real exports
667 (excluding self export). But class_incref is called
668 by other things as well, so don't count on it. */
669 CDEBUG(D_IOCTL, "%s: forcing exports to disconnect: %d\n",
670 obd->obd_name, atomic_read(&obd->obd_refcount) - 3);
671 dump_exports(obd, 0);
672 class_disconnect_exports(obd);
675 /* Precleanup, we must make sure all exports get destroyed. */
676 err = obd_precleanup(obd, OBD_CLEANUP_EXPORTS);
678 CERROR("Precleanup %s returned %d\n",
681 /* destroy an uuid-export hash body */
682 if (obd->obd_uuid_hash) {
683 cfs_hash_putref(obd->obd_uuid_hash);
684 obd->obd_uuid_hash = NULL;
687 /* destroy a nid-export hash body */
688 if (obd->obd_nid_hash) {
689 cfs_hash_putref(obd->obd_nid_hash);
690 obd->obd_nid_hash = NULL;
693 /* destroy a nid-stats hash body */
694 if (obd->obd_nid_stats_hash) {
695 cfs_hash_putref(obd->obd_nid_stats_hash);
696 obd->obd_nid_stats_hash = NULL;
699 class_decref(obd, "setup", obd);
704 EXPORT_SYMBOL(class_cleanup);
706 struct obd_device *class_incref(struct obd_device *obd,
707 const char *scope, const void *source)
709 lu_ref_add_atomic(&obd->obd_reference, scope, source);
710 atomic_inc(&obd->obd_refcount);
711 CDEBUG(D_INFO, "incref %s (%p) now %d\n", obd->obd_name, obd,
712 atomic_read(&obd->obd_refcount));
716 EXPORT_SYMBOL(class_incref);
718 void class_decref(struct obd_device *obd, const char *scope, const void *source)
723 spin_lock(&obd->obd_dev_lock);
724 atomic_dec(&obd->obd_refcount);
725 refs = atomic_read(&obd->obd_refcount);
726 spin_unlock(&obd->obd_dev_lock);
727 lu_ref_del(&obd->obd_reference, scope, source);
729 CDEBUG(D_INFO, "Decref %s (%p) now %d\n", obd->obd_name, obd, refs);
731 if ((refs == 1) && obd->obd_stopping) {
732 /* All exports have been destroyed; there should
733 be no more in-progress ops by this point.*/
735 spin_lock(&obd->obd_self_export->exp_lock);
736 obd->obd_self_export->exp_flags |= exp_flags_from_obd(obd);
737 spin_unlock(&obd->obd_self_export->exp_lock);
739 /* note that we'll recurse into class_decref again */
740 class_unlink_export(obd->obd_self_export);
745 CDEBUG(D_CONFIG, "finishing cleanup of obd %s (%s)\n",
746 obd->obd_name, obd->obd_uuid.uuid);
747 LASSERT(!obd->obd_attached);
748 if (obd->obd_stopping) {
749 /* If we're not stopping, we were never set up */
750 err = obd_cleanup(obd);
752 CERROR("Cleanup %s returned %d\n",
756 class_release_dev(obd);
759 EXPORT_SYMBOL(class_decref);
761 /** Add a failover nid location.
762 * Client obd types contact server obd types using this nid list.
764 int class_add_conn(struct obd_device *obd, struct lustre_cfg *lcfg)
766 struct obd_import *imp;
767 struct obd_uuid uuid;
771 if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1 ||
772 LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(struct obd_uuid)) {
773 CERROR("invalid conn_uuid\n");
776 if (strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) &&
777 strcmp(obd->obd_type->typ_name, LUSTRE_OSC_NAME) &&
778 strcmp(obd->obd_type->typ_name, LUSTRE_OSP_NAME) &&
779 strcmp(obd->obd_type->typ_name, LUSTRE_LWP_NAME) &&
780 strcmp(obd->obd_type->typ_name, LUSTRE_MGC_NAME)) {
781 CERROR("can't add connection on non-client dev\n");
785 imp = obd->u.cli.cl_import;
787 CERROR("try to add conn on immature client dev\n");
791 obd_str2uuid(&uuid, lustre_cfg_string(lcfg, 1));
792 rc = obd_add_conn(imp, &uuid, lcfg->lcfg_num);
796 EXPORT_SYMBOL(class_add_conn);
798 /** Remove a failover nid location.
800 int class_del_conn(struct obd_device *obd, struct lustre_cfg *lcfg)
802 struct obd_import *imp;
803 struct obd_uuid uuid;
807 if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1 ||
808 LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(struct obd_uuid)) {
809 CERROR("invalid conn_uuid\n");
812 if (strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) &&
813 strcmp(obd->obd_type->typ_name, LUSTRE_OSC_NAME)) {
814 CERROR("can't del connection on non-client dev\n");
818 imp = obd->u.cli.cl_import;
820 CERROR("try to del conn on immature client dev\n");
824 obd_str2uuid(&uuid, lustre_cfg_string(lcfg, 1));
825 rc = obd_del_conn(imp, &uuid);
830 CFS_LIST_HEAD(lustre_profile_list);
832 struct lustre_profile *class_get_profile(const char * prof)
834 struct lustre_profile *lprof;
837 cfs_list_for_each_entry(lprof, &lustre_profile_list, lp_list) {
838 if (!strcmp(lprof->lp_profile, prof)) {
844 EXPORT_SYMBOL(class_get_profile);
846 /** Create a named "profile".
847 * This defines the mdc and osc names to use for a client.
848 * This also is used to define the lov to be used by a mdt.
850 int class_add_profile(int proflen, char *prof, int osclen, char *osc,
851 int mdclen, char *mdc)
853 struct lustre_profile *lprof;
857 CDEBUG(D_CONFIG, "Add profile %s\n", prof);
859 OBD_ALLOC(lprof, sizeof(*lprof));
862 CFS_INIT_LIST_HEAD(&lprof->lp_list);
864 LASSERT(proflen == (strlen(prof) + 1));
865 OBD_ALLOC(lprof->lp_profile, proflen);
866 if (lprof->lp_profile == NULL)
867 GOTO(out, err = -ENOMEM);
868 memcpy(lprof->lp_profile, prof, proflen);
870 LASSERT(osclen == (strlen(osc) + 1));
871 OBD_ALLOC(lprof->lp_dt, osclen);
872 if (lprof->lp_dt == NULL)
873 GOTO(out, err = -ENOMEM);
874 memcpy(lprof->lp_dt, osc, osclen);
877 LASSERT(mdclen == (strlen(mdc) + 1));
878 OBD_ALLOC(lprof->lp_md, mdclen);
879 if (lprof->lp_md == NULL)
880 GOTO(out, err = -ENOMEM);
881 memcpy(lprof->lp_md, mdc, mdclen);
884 cfs_list_add(&lprof->lp_list, &lustre_profile_list);
889 OBD_FREE(lprof->lp_md, mdclen);
891 OBD_FREE(lprof->lp_dt, osclen);
892 if (lprof->lp_profile)
893 OBD_FREE(lprof->lp_profile, proflen);
894 OBD_FREE(lprof, sizeof(*lprof));
898 void class_del_profile(const char *prof)
900 struct lustre_profile *lprof;
903 CDEBUG(D_CONFIG, "Del profile %s\n", prof);
905 lprof = class_get_profile(prof);
907 cfs_list_del(&lprof->lp_list);
908 OBD_FREE(lprof->lp_profile, strlen(lprof->lp_profile) + 1);
909 OBD_FREE(lprof->lp_dt, strlen(lprof->lp_dt) + 1);
911 OBD_FREE(lprof->lp_md, strlen(lprof->lp_md) + 1);
912 OBD_FREE(lprof, sizeof *lprof);
916 EXPORT_SYMBOL(class_del_profile);
919 void class_del_profiles(void)
921 struct lustre_profile *lprof, *n;
924 cfs_list_for_each_entry_safe(lprof, n, &lustre_profile_list, lp_list) {
925 cfs_list_del(&lprof->lp_list);
926 OBD_FREE(lprof->lp_profile, strlen(lprof->lp_profile) + 1);
927 OBD_FREE(lprof->lp_dt, strlen(lprof->lp_dt) + 1);
929 OBD_FREE(lprof->lp_md, strlen(lprof->lp_md) + 1);
930 OBD_FREE(lprof, sizeof *lprof);
934 EXPORT_SYMBOL(class_del_profiles);
936 static int class_set_global(char *ptr, int val, struct lustre_cfg *lcfg)
939 if (class_match_param(ptr, PARAM_AT_MIN, NULL) == 0)
941 else if (class_match_param(ptr, PARAM_AT_MAX, NULL) == 0)
943 else if (class_match_param(ptr, PARAM_AT_EXTRA, NULL) == 0)
945 else if (class_match_param(ptr, PARAM_AT_EARLY_MARGIN, NULL) == 0)
946 at_early_margin = val;
947 else if (class_match_param(ptr, PARAM_AT_HISTORY, NULL) == 0)
949 else if (class_match_param(ptr, PARAM_JOBID_VAR, NULL) == 0)
950 strlcpy(obd_jobid_var, lustre_cfg_string(lcfg, 2),
951 JOBSTATS_JOBID_VAR_MAX_LEN + 1);
955 CDEBUG(D_IOCTL, "global %s = %d\n", ptr, val);
960 /* We can't call ll_process_config or lquota_process_config directly because
961 * it lives in a module that must be loaded after this one. */
962 static int (*client_process_config)(struct lustre_cfg *lcfg) = NULL;
963 static int (*quota_process_config)(struct lustre_cfg *lcfg) = NULL;
965 void lustre_register_client_process_config(int (*cpc)(struct lustre_cfg *lcfg))
967 client_process_config = cpc;
969 EXPORT_SYMBOL(lustre_register_client_process_config);
972 * Rename the proc parameter in \a cfg with a new name \a new_name.
974 * \param cfg config structure which contains the proc parameter
975 * \param new_name new name of the proc parameter
977 * \retval valid-pointer pointer to the newly-allocated config structure
978 * which contains the renamed proc parameter
979 * \retval ERR_PTR(-EINVAL) if \a cfg or \a new_name is NULL, or \a cfg does
980 * not contain a proc parameter
981 * \retval ERR_PTR(-ENOMEM) if memory allocation failure occurs
983 struct lustre_cfg *lustre_cfg_rename(struct lustre_cfg *cfg,
984 const char *new_name)
986 struct lustre_cfg_bufs *bufs = NULL;
987 struct lustre_cfg *new_cfg = NULL;
989 char *new_param = NULL;
995 if (cfg == NULL || new_name == NULL)
996 RETURN(ERR_PTR(-EINVAL));
998 param = lustre_cfg_string(cfg, 1);
1000 RETURN(ERR_PTR(-EINVAL));
1002 value = strchr(param, '=');
1004 name_len = strlen(param);
1006 name_len = value - param;
1008 new_len = LUSTRE_CFG_BUFLEN(cfg, 1) + strlen(new_name) - name_len;
1010 OBD_ALLOC(new_param, new_len);
1011 if (new_param == NULL)
1012 RETURN(ERR_PTR(-ENOMEM));
1014 strcpy(new_param, new_name);
1016 strcat(new_param, value);
1018 OBD_ALLOC_PTR(bufs);
1020 OBD_FREE(new_param, new_len);
1021 RETURN(ERR_PTR(-ENOMEM));
1024 lustre_cfg_bufs_reset(bufs, NULL);
1025 lustre_cfg_bufs_init(bufs, cfg);
1026 lustre_cfg_bufs_set_string(bufs, 1, new_param);
1028 new_cfg = lustre_cfg_new(cfg->lcfg_command, bufs);
1030 OBD_FREE(new_param, new_len);
1032 if (new_cfg == NULL)
1033 RETURN(ERR_PTR(-ENOMEM));
1035 new_cfg->lcfg_num = cfg->lcfg_num;
1036 new_cfg->lcfg_flags = cfg->lcfg_flags;
1037 new_cfg->lcfg_nid = cfg->lcfg_nid;
1038 new_cfg->lcfg_nal = cfg->lcfg_nal;
1042 EXPORT_SYMBOL(lustre_cfg_rename);
1044 static int process_param2_config(struct lustre_cfg *lcfg)
1046 char *param = lustre_cfg_string(lcfg, 1);
1047 char *upcall = lustre_cfg_string(lcfg, 2);
1049 [0] = "/usr/sbin/lctl",
1054 struct timeval start;
1059 /* Add upcall processing here. Now only lctl is supported */
1060 if (strcmp(upcall, LCTL_UPCALL) != 0) {
1061 CERROR("Unsupported upcall %s\n", upcall);
1065 do_gettimeofday(&start);
1066 rc = call_usermodehelper(argv[0], argv, NULL, 0);
1067 do_gettimeofday(&end);
1070 CERROR("lctl: error invoking upcall %s %s %s: rc = %d; "
1071 "time %ldus\n", argv[0], argv[1], argv[2], rc,
1072 cfs_timeval_sub(&end, &start, NULL));
1074 CDEBUG(D_HA, "lctl: invoked upcall %s %s %s, time %ldus\n",
1075 argv[0], argv[1], argv[2],
1076 cfs_timeval_sub(&end, &start, NULL));
1083 void lustre_register_quota_process_config(int (*qpc)(struct lustre_cfg *lcfg))
1085 quota_process_config = qpc;
1087 EXPORT_SYMBOL(lustre_register_quota_process_config);
1089 /** Process configuration commands given in lustre_cfg form.
1090 * These may come from direct calls (e.g. class_manual_cleanup)
1091 * or processing the config llog, or ioctl from lctl.
1093 int class_process_config(struct lustre_cfg *lcfg)
1095 struct obd_device *obd;
1098 LASSERT(lcfg && !IS_ERR(lcfg));
1099 CDEBUG(D_IOCTL, "processing cmd: %x\n", lcfg->lcfg_command);
1101 /* Commands that don't need a device */
1102 switch(lcfg->lcfg_command) {
1104 err = class_attach(lcfg);
1107 case LCFG_ADD_UUID: {
1108 CDEBUG(D_IOCTL, "adding mapping from uuid %s to nid "LPX64
1109 " (%s)\n", lustre_cfg_string(lcfg, 1),
1110 lcfg->lcfg_nid, libcfs_nid2str(lcfg->lcfg_nid));
1112 err = class_add_uuid(lustre_cfg_string(lcfg, 1), lcfg->lcfg_nid);
1115 case LCFG_DEL_UUID: {
1116 CDEBUG(D_IOCTL, "removing mappings for uuid %s\n",
1117 (lcfg->lcfg_bufcount < 2 || LUSTRE_CFG_BUFLEN(lcfg, 1) == 0)
1118 ? "<all uuids>" : lustre_cfg_string(lcfg, 1));
1120 err = class_del_uuid(lustre_cfg_string(lcfg, 1));
1123 case LCFG_MOUNTOPT: {
1124 CDEBUG(D_IOCTL, "mountopt: profile %s osc %s mdc %s\n",
1125 lustre_cfg_string(lcfg, 1),
1126 lustre_cfg_string(lcfg, 2),
1127 lustre_cfg_string(lcfg, 3));
1128 /* set these mount options somewhere, so ll_fill_super
1130 err = class_add_profile(LUSTRE_CFG_BUFLEN(lcfg, 1),
1131 lustre_cfg_string(lcfg, 1),
1132 LUSTRE_CFG_BUFLEN(lcfg, 2),
1133 lustre_cfg_string(lcfg, 2),
1134 LUSTRE_CFG_BUFLEN(lcfg, 3),
1135 lustre_cfg_string(lcfg, 3));
1138 case LCFG_DEL_MOUNTOPT: {
1139 CDEBUG(D_IOCTL, "mountopt: profile %s\n",
1140 lustre_cfg_string(lcfg, 1));
1141 class_del_profile(lustre_cfg_string(lcfg, 1));
1144 case LCFG_SET_TIMEOUT: {
1145 CDEBUG(D_IOCTL, "changing lustre timeout from %d to %d\n",
1146 obd_timeout, lcfg->lcfg_num);
1147 obd_timeout = max(lcfg->lcfg_num, 1U);
1148 obd_timeout_set = 1;
1151 case LCFG_SET_LDLM_TIMEOUT: {
1152 CDEBUG(D_IOCTL, "changing lustre ldlm_timeout from %d to %d\n",
1153 ldlm_timeout, lcfg->lcfg_num);
1154 ldlm_timeout = max(lcfg->lcfg_num, 1U);
1155 if (ldlm_timeout >= obd_timeout)
1156 ldlm_timeout = max(obd_timeout / 3, 1U);
1157 ldlm_timeout_set = 1;
1160 case LCFG_SET_UPCALL: {
1161 LCONSOLE_ERROR_MSG(0x15a, "recovery upcall is deprecated\n");
1162 /* COMPAT_146 Don't fail on old configs */
1166 struct cfg_marker *marker;
1167 marker = lustre_cfg_buf(lcfg, 1);
1168 CDEBUG(D_IOCTL, "marker %d (%#x) %.16s %s\n", marker->cm_step,
1169 marker->cm_flags, marker->cm_tgtname, marker->cm_comment);
1174 /* llite has no obd */
1175 if ((class_match_param(lustre_cfg_string(lcfg, 1),
1176 PARAM_LLITE, 0) == 0) &&
1177 client_process_config) {
1178 err = (*client_process_config)(lcfg);
1180 } else if ((class_match_param(lustre_cfg_string(lcfg, 1),
1181 PARAM_SYS, &tmp) == 0)) {
1182 /* Global param settings */
1183 err = class_set_global(tmp, lcfg->lcfg_num, lcfg);
1185 * Client or server should not fail to mount if
1186 * it hits an unknown configuration parameter.
1189 CWARN("Ignoring unknown param %s\n", tmp);
1192 } else if ((class_match_param(lustre_cfg_string(lcfg, 1),
1193 PARAM_QUOTA, &tmp) == 0) &&
1194 quota_process_config) {
1195 err = (*quota_process_config)(lcfg);
1201 case LCFG_SET_PARAM: {
1202 err = process_param2_config(lcfg);
1206 /* Commands that require a device */
1207 obd = class_name2obd(lustre_cfg_string(lcfg, 0));
1209 if (!LUSTRE_CFG_BUFLEN(lcfg, 0))
1210 CERROR("this lcfg command requires a device name\n");
1212 CERROR("no device for: %s\n",
1213 lustre_cfg_string(lcfg, 0));
1215 GOTO(out, err = -EINVAL);
1218 switch(lcfg->lcfg_command) {
1220 err = class_setup(obd, lcfg);
1224 err = class_detach(obd, lcfg);
1227 case LCFG_CLEANUP: {
1228 err = class_cleanup(obd, lcfg);
1231 case LCFG_ADD_CONN: {
1232 err = class_add_conn(obd, lcfg);
1235 case LCFG_DEL_CONN: {
1236 err = class_del_conn(obd, lcfg);
1239 case LCFG_POOL_NEW: {
1240 err = obd_pool_new(obd, lustre_cfg_string(lcfg, 2));
1243 case LCFG_POOL_ADD: {
1244 err = obd_pool_add(obd, lustre_cfg_string(lcfg, 2),
1245 lustre_cfg_string(lcfg, 3));
1248 case LCFG_POOL_REM: {
1249 err = obd_pool_rem(obd, lustre_cfg_string(lcfg, 2),
1250 lustre_cfg_string(lcfg, 3));
1253 case LCFG_POOL_DEL: {
1254 err = obd_pool_del(obd, lustre_cfg_string(lcfg, 2));
1258 err = obd_process_config(obd, sizeof(*lcfg), lcfg);
1264 if ((err < 0) && !(lcfg->lcfg_command & LCFG_REQUIRED)) {
1265 CWARN("Ignoring error %d on optional command %#x\n", err,
1266 lcfg->lcfg_command);
1271 EXPORT_SYMBOL(class_process_config);
1273 #ifndef HAVE_ONLY_PROCFS_SEQ
1274 int class_process_proc_param(char *prefix, struct lprocfs_vars *lvars,
1275 struct lustre_cfg *lcfg, void *data)
1278 struct lprocfs_vars *var;
1280 int i, keylen, vallen;
1281 int matched = 0, j = 0;
1286 if (lcfg->lcfg_command != LCFG_PARAM) {
1287 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
1291 /* e.g. tunefs.lustre --param mdt.group_upcall=foo /r/tmp/lustre-mdt
1292 or lctl conf_param lustre-MDT0000.mdt.group_upcall=bar
1293 or lctl conf_param lustre-OST0000.osc.max_dirty_mb=36 */
1294 for (i = 1; i < lcfg->lcfg_bufcount; i++) {
1295 key = lustre_cfg_buf(lcfg, i);
1296 /* Strip off prefix */
1297 if (class_match_param(key, prefix, &key))
1298 /* If the prefix doesn't match, return error so we
1299 * can pass it down the stack */
1301 sval = strchr(key, '=');
1302 if (!sval || (*(sval + 1) == 0)) {
1303 CERROR("Can't parse param %s (missing '=')\n", key);
1304 /* rc = -EINVAL; continue parsing other params */
1307 keylen = sval - key;
1309 vallen = strlen(sval);
1312 /* Search proc entries */
1313 while (lvars[j].name) {
1315 if (class_match_param(key, (char *)var->name, 0) == 0 &&
1316 keylen == strlen(var->name)) {
1320 if (var->write_fptr) {
1324 rc = (var->write_fptr)(NULL, sval,
1333 CERROR("%.*s: %s unknown param %s\n",
1334 (int)strlen(prefix) - 1, prefix,
1335 (char *)lustre_cfg_string(lcfg, 0), key);
1336 /* rc = -EINVAL; continue parsing other params */
1338 } else if (rc < 0) {
1339 CERROR("%s: error writing proc entry '%s': rc = %d\n",
1340 prefix, var->name, rc);
1343 CDEBUG(D_CONFIG, "%s.%.*s: Set parameter %.*s=%s\n",
1344 lustre_cfg_string(lcfg, 0),
1345 (int)strlen(prefix) - 1, prefix,
1346 (int)(sval - key - 1), key, sval);
1356 CDEBUG(D_CONFIG, "liblustre can't process params.\n");
1357 /* Don't throw config error */
1361 EXPORT_SYMBOL(class_process_proc_param);
1364 int class_process_proc_seq_param(char *prefix, struct lprocfs_seq_vars *lvars,
1365 struct lustre_cfg *lcfg, void *data)
1368 struct lprocfs_seq_vars *var;
1369 struct file fakefile;
1370 struct seq_file fake_seqfile;
1372 int i, keylen, vallen;
1373 int matched = 0, j = 0;
1378 if (lcfg->lcfg_command != LCFG_PARAM) {
1379 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
1383 /* fake a seq file so that var->fops->write can work... */
1384 fakefile.private_data = &fake_seqfile;
1385 fake_seqfile.private = data;
1386 /* e.g. tunefs.lustre --param mdt.group_upcall=foo /r/tmp/lustre-mdt
1387 or lctl conf_param lustre-MDT0000.mdt.group_upcall=bar
1388 or lctl conf_param lustre-OST0000.osc.max_dirty_mb=36 */
1389 for (i = 1; i < lcfg->lcfg_bufcount; i++) {
1390 key = lustre_cfg_buf(lcfg, i);
1391 /* Strip off prefix */
1392 if (class_match_param(key, prefix, &key))
1393 /* If the prefix doesn't match, return error so we
1394 * can pass it down the stack */
1396 sval = strchr(key, '=');
1397 if (!sval || (*(sval + 1) == 0)) {
1398 CERROR("Can't parse param %s (missing '=')\n", key);
1399 /* rc = -EINVAL; continue parsing other params */
1402 keylen = sval - key;
1404 vallen = strlen(sval);
1407 /* Search proc entries */
1408 while (lvars[j].name) {
1410 if (class_match_param(key, (char *)var->name, 0) == 0 &&
1411 keylen == strlen(var->name)) {
1415 if (var->fops && var->fops->write) {
1419 rc = (var->fops->write)(&fakefile, sval,
1428 CERROR("%.*s: %s unknown param %s\n",
1429 (int)strlen(prefix) - 1, prefix,
1430 (char *)lustre_cfg_string(lcfg, 0), key);
1431 /* rc = -EINVAL; continue parsing other params */
1433 } else if (rc < 0) {
1434 CERROR("%s: error writing proc entry '%s': rc = %d\n",
1435 prefix, var->name, rc);
1438 CDEBUG(D_CONFIG, "%s.%.*s: Set parameter %.*s=%s\n",
1439 lustre_cfg_string(lcfg, 0),
1440 (int)strlen(prefix) - 1, prefix,
1441 (int)(sval - key - 1), key, sval);
1451 CDEBUG(D_CONFIG, "liblustre can't process params.\n");
1452 /* Don't throw config error */
1456 EXPORT_SYMBOL(class_process_proc_seq_param);
1459 extern int lustre_check_exclusion(struct super_block *sb, char *svname);
1461 #define lustre_check_exclusion(a,b) 0
1465 * Supplemental functions for config logs, it allocates lustre_cfg
1466 * buffers plus initialized llog record header at the beginning.
1468 struct llog_cfg_rec *lustre_cfg_rec_new(int cmd, struct lustre_cfg_bufs *bufs)
1470 struct llog_cfg_rec *lcr;
1475 reclen = lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen);
1476 reclen = llog_data_len(reclen) + sizeof(struct llog_rec_hdr) +
1477 sizeof(struct llog_rec_tail);
1479 OBD_ALLOC(lcr, reclen);
1483 lustre_cfg_init(&lcr->lcr_cfg, cmd, bufs);
1485 lcr->lcr_hdr.lrh_len = reclen;
1486 lcr->lcr_hdr.lrh_type = OBD_CFG_REC;
1490 EXPORT_SYMBOL(lustre_cfg_rec_new);
1492 void lustre_cfg_rec_free(struct llog_cfg_rec *lcr)
1495 OBD_FREE(lcr, lcr->lcr_hdr.lrh_len);
1498 EXPORT_SYMBOL(lustre_cfg_rec_free);
1500 /** Parse a configuration llog, doing various manipulations on them
1501 * for various reasons, (modifications for compatibility, skip obsolete
1502 * records, change uuids, etc), then class_process_config() resulting
1505 int class_config_llog_handler(const struct lu_env *env,
1506 struct llog_handle *handle,
1507 struct llog_rec_hdr *rec, void *data)
1509 struct config_llog_instance *clli = data;
1510 int cfg_len = rec->lrh_len;
1511 char *cfg_buf = (char*) (rec + 1);
1515 //class_config_dump_handler(handle, rec, data);
1517 switch (rec->lrh_type) {
1519 struct lustre_cfg *lcfg, *lcfg_new;
1520 struct lustre_cfg_bufs bufs;
1521 char *inst_name = NULL;
1523 int inst = 0, swab = 0;
1525 lcfg = (struct lustre_cfg *)cfg_buf;
1526 if (lcfg->lcfg_version == __swab32(LUSTRE_CFG_VERSION)) {
1527 lustre_swab_lustre_cfg(lcfg);
1531 rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
1535 /* Figure out config state info */
1536 if (lcfg->lcfg_command == LCFG_MARKER) {
1537 struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
1538 lustre_swab_cfg_marker(marker, swab,
1539 LUSTRE_CFG_BUFLEN(lcfg, 1));
1540 CDEBUG(D_CONFIG, "Marker, inst_flg=%#x mark_flg=%#x\n",
1541 clli->cfg_flags, marker->cm_flags);
1542 if (marker->cm_flags & CM_START) {
1543 /* all previous flags off */
1544 clli->cfg_flags = CFG_F_MARKER;
1545 server_name2index(marker->cm_tgtname,
1546 &clli->cfg_lwp_idx, NULL);
1547 if (marker->cm_flags & CM_SKIP) {
1548 clli->cfg_flags |= CFG_F_SKIP;
1549 CDEBUG(D_CONFIG, "SKIP #%d\n",
1551 } else if ((marker->cm_flags & CM_EXCLUDE) ||
1553 lustre_check_exclusion(clli->cfg_sb,
1554 marker->cm_tgtname))) {
1555 clli->cfg_flags |= CFG_F_EXCLUDE;
1556 CDEBUG(D_CONFIG, "EXCLUDE %d\n",
1559 } else if (marker->cm_flags & CM_END) {
1560 clli->cfg_flags = 0;
1563 /* A config command without a start marker before it is
1564 illegal (post 146) */
1565 if (!(clli->cfg_flags & CFG_F_COMPAT146) &&
1566 !(clli->cfg_flags & CFG_F_MARKER) &&
1567 (lcfg->lcfg_command != LCFG_MARKER)) {
1568 CWARN("Config not inside markers, ignoring! "
1569 "(inst: %p, uuid: %s, flags: %#x)\n",
1571 clli->cfg_uuid.uuid, clli->cfg_flags);
1572 clli->cfg_flags |= CFG_F_SKIP;
1574 if (clli->cfg_flags & CFG_F_SKIP) {
1575 CDEBUG(D_CONFIG, "skipping %#x\n",
1578 /* No processing! */
1583 * For interoperability between 1.8 and 2.0,
1584 * rename "mds" obd device type to "mdt".
1587 char *typename = lustre_cfg_string(lcfg, 1);
1588 char *index = lustre_cfg_string(lcfg, 2);
1590 if ((lcfg->lcfg_command == LCFG_ATTACH && typename &&
1591 strcmp(typename, "mds") == 0)) {
1592 CWARN("For 1.8 interoperability, rename obd "
1593 "type from mds to mdt\n");
1596 if ((lcfg->lcfg_command == LCFG_SETUP && index &&
1597 strcmp(index, "type") == 0)) {
1598 CDEBUG(D_INFO, "For 1.8 interoperability, "
1599 "set this index to '0'\n");
1605 #if defined(HAVE_SERVER_SUPPORT) && defined(__KERNEL__)
1606 /* newer MDS replaces LOV/OSC with LOD/OSP */
1608 char *typename = lustre_cfg_string(lcfg, 1);
1610 if ((lcfg->lcfg_command == LCFG_ATTACH && typename &&
1611 strcmp(typename, LUSTRE_LOV_NAME) == 0) &&
1612 IS_MDT(s2lsi(clli->cfg_sb))) {
1614 "For 2.x interoperability, rename obd "
1615 "type from lov to lod (%s)\n",
1616 s2lsi(clli->cfg_sb)->lsi_svname);
1617 strcpy(typename, LUSTRE_LOD_NAME);
1619 if ((lcfg->lcfg_command == LCFG_ATTACH && typename &&
1620 strcmp(typename, LUSTRE_OSC_NAME) == 0) &&
1621 IS_MDT(s2lsi(clli->cfg_sb))) {
1623 "For 2.x interoperability, rename obd "
1624 "type from osc to osp (%s)\n",
1625 s2lsi(clli->cfg_sb)->lsi_svname);
1626 strcpy(typename, LUSTRE_OSP_NAME);
1631 if (clli->cfg_flags & CFG_F_EXCLUDE) {
1632 CDEBUG(D_CONFIG, "cmd: %x marked EXCLUDED\n",
1633 lcfg->lcfg_command);
1634 if (lcfg->lcfg_command == LCFG_LOV_ADD_OBD)
1635 /* Add inactive instead */
1636 lcfg->lcfg_command = LCFG_LOV_ADD_INA;
1639 lustre_cfg_bufs_init(&bufs, lcfg);
1641 if (clli && clli->cfg_instance &&
1642 LUSTRE_CFG_BUFLEN(lcfg, 0) > 0){
1644 inst_len = LUSTRE_CFG_BUFLEN(lcfg, 0) +
1645 sizeof(clli->cfg_instance) * 2 + 4;
1646 OBD_ALLOC(inst_name, inst_len);
1647 if (inst_name == NULL)
1648 GOTO(out, rc = -ENOMEM);
1649 sprintf(inst_name, "%s-%p",
1650 lustre_cfg_string(lcfg, 0),
1651 clli->cfg_instance);
1652 lustre_cfg_bufs_set_string(&bufs, 0, inst_name);
1653 CDEBUG(D_CONFIG, "cmd %x, instance name: %s\n",
1654 lcfg->lcfg_command, inst_name);
1657 /* we override the llog's uuid for clients, to insure they
1659 if (clli && clli->cfg_instance != NULL &&
1660 lcfg->lcfg_command == LCFG_ATTACH) {
1661 lustre_cfg_bufs_set_string(&bufs, 2,
1662 clli->cfg_uuid.uuid);
1665 * sptlrpc config record, we expect 2 data segments:
1666 * [0]: fs_name/target_name,
1668 * moving them to index [1] and [2], and insert MGC's
1669 * obdname at index [0].
1671 if (clli && clli->cfg_instance == NULL &&
1672 lcfg->lcfg_command == LCFG_SPTLRPC_CONF) {
1673 lustre_cfg_bufs_set(&bufs, 2, bufs.lcfg_buf[1],
1674 bufs.lcfg_buflen[1]);
1675 lustre_cfg_bufs_set(&bufs, 1, bufs.lcfg_buf[0],
1676 bufs.lcfg_buflen[0]);
1677 lustre_cfg_bufs_set_string(&bufs, 0,
1681 lcfg_new = lustre_cfg_new(lcfg->lcfg_command, &bufs);
1682 if (lcfg_new == NULL)
1683 GOTO(out, rc = -ENOMEM);
1685 lcfg_new->lcfg_num = lcfg->lcfg_num;
1686 lcfg_new->lcfg_flags = lcfg->lcfg_flags;
1688 /* XXX Hack to try to remain binary compatible with
1689 * pre-newconfig logs */
1690 if (lcfg->lcfg_nal != 0 && /* pre-newconfig log? */
1691 (lcfg->lcfg_nid >> 32) == 0) {
1692 __u32 addr = (__u32)(lcfg->lcfg_nid & 0xffffffff);
1694 lcfg_new->lcfg_nid =
1695 LNET_MKNID(LNET_MKNET(lcfg->lcfg_nal, 0), addr);
1696 CWARN("Converted pre-newconfig NAL %d NID %x to %s\n",
1697 lcfg->lcfg_nal, addr,
1698 libcfs_nid2str(lcfg_new->lcfg_nid));
1700 lcfg_new->lcfg_nid = lcfg->lcfg_nid;
1703 lcfg_new->lcfg_nal = 0; /* illegal value for obsolete field */
1705 rc = class_process_config(lcfg_new);
1706 lustre_cfg_free(lcfg_new);
1709 OBD_FREE(inst_name, inst_len);
1713 CERROR("Unknown llog record type %#x encountered\n",
1719 CERROR("%s: cfg command failed: rc = %d\n",
1720 handle->lgh_ctxt->loc_obd->obd_name, rc);
1721 class_config_dump_handler(NULL, handle, rec, data);
1725 EXPORT_SYMBOL(class_config_llog_handler);
1727 int class_config_parse_llog(const struct lu_env *env, struct llog_ctxt *ctxt,
1728 char *name, struct config_llog_instance *cfg)
1730 struct llog_process_cat_data cd = {0, 0};
1731 struct llog_handle *llh;
1736 CDEBUG(D_INFO, "looking up llog %s\n", name);
1737 rc = llog_open(env, ctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
1741 rc = llog_init_handle(env, llh, LLOG_F_IS_PLAIN, NULL);
1743 GOTO(parse_out, rc);
1745 /* continue processing from where we last stopped to end-of-log */
1747 cd.lpcd_first_idx = cfg->cfg_last_idx;
1748 callback = cfg->cfg_callback;
1749 LASSERT(callback != NULL);
1751 callback = class_config_llog_handler;
1754 cd.lpcd_last_idx = 0;
1756 rc = llog_process(env, llh, callback, cfg, &cd);
1758 CDEBUG(D_CONFIG, "Processed log %s gen %d-%d (rc=%d)\n", name,
1759 cd.lpcd_first_idx + 1, cd.lpcd_last_idx, rc);
1761 cfg->cfg_last_idx = cd.lpcd_last_idx;
1764 llog_close(env, llh);
1767 EXPORT_SYMBOL(class_config_parse_llog);
1769 struct lcfg_type_data {
1773 } lcfg_data_table[] = {
1774 { LCFG_ATTACH, "attach", { "type", "UUID", "3", "4" } },
1775 { LCFG_DETACH, "detach", { "1", "2", "3", "4" } },
1776 { LCFG_SETUP, "setup", { "UUID", "node", "options", "failout" } },
1777 { LCFG_CLEANUP, "cleanup", { "1", "2", "3", "4" } },
1778 { LCFG_ADD_UUID, "add_uuid", { "node", "2", "3", "4" } },
1779 { LCFG_DEL_UUID, "del_uuid", { "1", "2", "3", "4" } },
1780 { LCFG_MOUNTOPT, "new_profile", { "name", "lov", "lmv", "4" } },
1781 { LCFG_DEL_MOUNTOPT, "del_mountopt", { "1", "2", "3", "4" } , },
1782 { LCFG_SET_TIMEOUT, "set_timeout", { "parameter", "2", "3", "4" } },
1783 { LCFG_SET_UPCALL, "set_upcall", { "1", "2", "3", "4" } },
1784 { LCFG_ADD_CONN, "add_conn", { "node", "2", "3", "4" } },
1785 { LCFG_DEL_CONN, "del_conn", { "1", "2", "3", "4" } },
1786 { LCFG_LOV_ADD_OBD, "add_osc", { "ost", "index", "gen", "UUID" } },
1787 { LCFG_LOV_DEL_OBD, "del_osc", { "1", "2", "3", "4" } },
1788 { LCFG_PARAM, "set_param", { "parameter", "value", "3", "4" } },
1789 { LCFG_MARKER, "marker", { "1", "2", "3", "4" } },
1790 { LCFG_LOG_START, "log_start", { "1", "2", "3", "4" } },
1791 { LCFG_LOG_END, "log_end", { "1", "2", "3", "4" } },
1792 { LCFG_LOV_ADD_INA, "add_osc_inactive", { "1", "2", "3", "4" } },
1793 { LCFG_ADD_MDC, "add_mdc", { "mdt", "index", "gen", "UUID" } },
1794 { LCFG_DEL_MDC, "del_mdc", { "1", "2", "3", "4" } },
1795 { LCFG_SPTLRPC_CONF, "security", { "parameter", "2", "3", "4" } },
1796 { LCFG_POOL_NEW, "new_pool", { "fsname", "pool", "3", "4" } },
1797 { LCFG_POOL_ADD, "add_pool", { "fsname", "pool", "ost", "4" } },
1798 { LCFG_POOL_REM, "remove_pool", { "fsname", "pool", "ost", "4" } },
1799 { LCFG_POOL_DEL, "del_pool", { "fsname", "pool", "3", "4" } },
1800 { LCFG_SET_LDLM_TIMEOUT, "set_ldlm_timeout",
1801 { "parameter", "2", "3", "4" } },
1802 { 0, NULL, { NULL, NULL, NULL, NULL } }
1805 static struct lcfg_type_data *lcfg_cmd2data(__u32 cmd)
1809 while (lcfg_data_table[i].ltd_type != 0) {
1810 if (lcfg_data_table[i].ltd_type == cmd)
1811 return &lcfg_data_table[i];
1818 * parse config record and output dump in supplied buffer.
1819 * This is separated from class_config_dump_handler() to use
1820 * for ioctl needs as well
1823 * - { event: attach, device: lustrewt-clilov, type: lov, UUID:
1824 * lustrewt-clilov_UUID }
1826 int class_config_yaml_output(struct llog_rec_hdr *rec, char *buf, int size)
1828 struct lustre_cfg *lcfg = (struct lustre_cfg *)(rec + 1);
1830 char *end = buf + size;
1832 struct lcfg_type_data *ldata;
1834 LASSERT(rec->lrh_type == OBD_CFG_REC);
1835 rc = lustre_cfg_sanity_check(lcfg, rec->lrh_len);
1839 ldata = lcfg_cmd2data(lcfg->lcfg_command);
1843 if (lcfg->lcfg_command == LCFG_MARKER)
1846 /* form YAML entity */
1847 ptr += snprintf(ptr, end - ptr, "- { event: %s", ldata->ltd_name);
1849 if (lcfg->lcfg_flags)
1850 ptr += snprintf(ptr, end - ptr, ", flags: %#08x",
1853 ptr += snprintf(ptr, end - ptr, ", num: %#08x",
1856 ptr += snprintf(ptr, end - ptr, ", nid: %s("LPX64")",
1857 libcfs_nid2str(lcfg->lcfg_nid),
1860 if (LUSTRE_CFG_BUFLEN(lcfg, 0) > 0)
1861 ptr += snprintf(ptr, end - ptr, ", device: %s",
1862 lustre_cfg_string(lcfg, 0));
1864 for (i = 1; i < lcfg->lcfg_bufcount; i++) {
1865 if (LUSTRE_CFG_BUFLEN(lcfg, i) > 0)
1866 ptr += snprintf(ptr, end - ptr, ", %s: %s",
1867 ldata->ltd_bufs[i - 1],
1868 lustre_cfg_string(lcfg, i));
1871 ptr += snprintf(ptr, end - ptr, " }\n");
1872 /* return consumed bytes */
1878 * parse config record and output dump in supplied buffer.
1879 * This is separated from class_config_dump_handler() to use
1880 * for ioctl needs as well
1882 int class_config_parse_rec(struct llog_rec_hdr *rec, char *buf, int size)
1884 struct lustre_cfg *lcfg = (struct lustre_cfg *)(rec + 1);
1886 char *end = buf + size;
1891 LASSERT(rec->lrh_type == OBD_CFG_REC);
1892 rc = lustre_cfg_sanity_check(lcfg, rec->lrh_len);
1896 ptr += snprintf(ptr, end-ptr, "cmd=%05x ", lcfg->lcfg_command);
1897 if (lcfg->lcfg_flags)
1898 ptr += snprintf(ptr, end-ptr, "flags=%#08x ",
1902 ptr += snprintf(ptr, end-ptr, "num=%#08x ", lcfg->lcfg_num);
1905 ptr += snprintf(ptr, end-ptr, "nid=%s("LPX64")\n ",
1906 libcfs_nid2str(lcfg->lcfg_nid),
1909 if (lcfg->lcfg_command == LCFG_MARKER) {
1910 struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
1912 ptr += snprintf(ptr, end-ptr, "marker=%d(%#x)%s '%s'",
1913 marker->cm_step, marker->cm_flags,
1914 marker->cm_tgtname, marker->cm_comment);
1918 for (i = 0; i < lcfg->lcfg_bufcount; i++) {
1919 ptr += snprintf(ptr, end-ptr, "%d:%s ", i,
1920 lustre_cfg_string(lcfg, i));
1923 ptr += snprintf(ptr, end - ptr, "\n");
1924 /* return consumed bytes */
1929 int class_config_dump_handler(const struct lu_env *env,
1930 struct llog_handle *handle,
1931 struct llog_rec_hdr *rec, void *data)
1938 OBD_ALLOC(outstr, 256);
1942 if (rec->lrh_type == OBD_CFG_REC) {
1943 class_config_parse_rec(rec, outstr, 256);
1944 LCONSOLE(D_WARNING, " %s", outstr);
1946 LCONSOLE(D_WARNING, "unhandled lrh_type: %#x\n", rec->lrh_type);
1950 OBD_FREE(outstr, 256);
1954 int class_config_dump_llog(const struct lu_env *env, struct llog_ctxt *ctxt,
1955 char *name, struct config_llog_instance *cfg)
1957 struct llog_handle *llh;
1962 LCONSOLE_INFO("Dumping config log %s\n", name);
1964 rc = llog_open(env, ctxt, &llh, NULL, name, LLOG_OPEN_EXISTS);
1968 rc = llog_init_handle(env, llh, LLOG_F_IS_PLAIN, NULL);
1970 GOTO(parse_out, rc);
1972 rc = llog_process(env, llh, class_config_dump_handler, cfg, NULL);
1974 llog_close(env, llh);
1976 LCONSOLE_INFO("End config log %s\n", name);
1979 EXPORT_SYMBOL(class_config_dump_llog);
1981 /** Call class_cleanup and class_detach.
1982 * "Manual" only in the sense that we're faking lcfg commands.
1984 int class_manual_cleanup(struct obd_device *obd)
1987 struct lustre_cfg *lcfg;
1988 struct lustre_cfg_bufs bufs;
1993 CERROR("empty cleanup\n");
2002 CDEBUG(D_CONFIG, "Manual cleanup of %s (flags='%s')\n",
2003 obd->obd_name, flags);
2005 lustre_cfg_bufs_reset(&bufs, obd->obd_name);
2006 lustre_cfg_bufs_set_string(&bufs, 1, flags);
2007 lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
2011 rc = class_process_config(lcfg);
2013 CERROR("cleanup failed %d: %s\n", rc, obd->obd_name);
2017 /* the lcfg is almost the same for both ops */
2018 lcfg->lcfg_command = LCFG_DETACH;
2019 rc = class_process_config(lcfg);
2021 CERROR("detach failed %d: %s\n", rc, obd->obd_name);
2023 lustre_cfg_free(lcfg);
2026 EXPORT_SYMBOL(class_manual_cleanup);
2029 * uuid<->export lustre hash operations
2033 uuid_hash(cfs_hash_t *hs, const void *key, unsigned mask)
2035 return cfs_hash_djb2_hash(((struct obd_uuid *)key)->uuid,
2036 sizeof(((struct obd_uuid *)key)->uuid), mask);
2040 uuid_key(cfs_hlist_node_t *hnode)
2042 struct obd_export *exp;
2044 exp = cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
2046 return &exp->exp_client_uuid;
2050 * NOTE: It is impossible to find an export that is in failed
2051 * state with this function
2054 uuid_keycmp(const void *key, cfs_hlist_node_t *hnode)
2056 struct obd_export *exp;
2059 exp = cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
2061 return obd_uuid_equals(key, &exp->exp_client_uuid) &&
2066 uuid_export_object(cfs_hlist_node_t *hnode)
2068 return cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
2072 uuid_export_get(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
2074 struct obd_export *exp;
2076 exp = cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
2077 class_export_get(exp);
2081 uuid_export_put_locked(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
2083 struct obd_export *exp;
2085 exp = cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
2086 class_export_put(exp);
2089 static cfs_hash_ops_t uuid_hash_ops = {
2090 .hs_hash = uuid_hash,
2092 .hs_keycmp = uuid_keycmp,
2093 .hs_object = uuid_export_object,
2094 .hs_get = uuid_export_get,
2095 .hs_put_locked = uuid_export_put_locked,
2100 * nid<->export hash operations
2104 nid_hash(cfs_hash_t *hs, const void *key, unsigned mask)
2106 return cfs_hash_djb2_hash(key, sizeof(lnet_nid_t), mask);
2110 nid_key(cfs_hlist_node_t *hnode)
2112 struct obd_export *exp;
2114 exp = cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
2116 RETURN(&exp->exp_connection->c_peer.nid);
2120 * NOTE: It is impossible to find an export that is in failed
2121 * state with this function
2124 nid_kepcmp(const void *key, cfs_hlist_node_t *hnode)
2126 struct obd_export *exp;
2129 exp = cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
2131 RETURN(exp->exp_connection->c_peer.nid == *(lnet_nid_t *)key &&
2136 nid_export_object(cfs_hlist_node_t *hnode)
2138 return cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
2142 nid_export_get(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
2144 struct obd_export *exp;
2146 exp = cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
2147 class_export_get(exp);
2151 nid_export_put_locked(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
2153 struct obd_export *exp;
2155 exp = cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
2156 class_export_put(exp);
2159 static cfs_hash_ops_t nid_hash_ops = {
2160 .hs_hash = nid_hash,
2162 .hs_keycmp = nid_kepcmp,
2163 .hs_object = nid_export_object,
2164 .hs_get = nid_export_get,
2165 .hs_put_locked = nid_export_put_locked,
2170 * nid<->nidstats hash operations
2174 nidstats_key(cfs_hlist_node_t *hnode)
2176 struct nid_stat *ns;
2178 ns = cfs_hlist_entry(hnode, struct nid_stat, nid_hash);
2184 nidstats_keycmp(const void *key, cfs_hlist_node_t *hnode)
2186 return *(lnet_nid_t *)nidstats_key(hnode) == *(lnet_nid_t *)key;
2190 nidstats_object(cfs_hlist_node_t *hnode)
2192 return cfs_hlist_entry(hnode, struct nid_stat, nid_hash);
2196 nidstats_get(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
2198 struct nid_stat *ns;
2200 ns = cfs_hlist_entry(hnode, struct nid_stat, nid_hash);
2205 nidstats_put_locked(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
2207 struct nid_stat *ns;
2209 ns = cfs_hlist_entry(hnode, struct nid_stat, nid_hash);
2213 static cfs_hash_ops_t nid_stat_hash_ops = {
2214 .hs_hash = nid_hash,
2215 .hs_key = nidstats_key,
2216 .hs_keycmp = nidstats_keycmp,
2217 .hs_object = nidstats_object,
2218 .hs_get = nidstats_get,
2219 .hs_put_locked = nidstats_put_locked,