Whamcloud - gitweb
7d82c5b25b2370f3d2407c9e0d2beed82583483c
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/obdclass/obd_config.c
37  *
38  * Config API
39  */
40
41 #define DEBUG_SUBSYSTEM S_CLASS
42 #ifdef __KERNEL__
43 #include <obd_class.h>
44 #include <linux/string.h>
45 #else
46 #include <liblustre.h>
47 #include <string.h>
48 #include <obd_class.h>
49 #include <obd.h>
50 #endif
51 #include <lustre_param.h>
52
53 #include "llog_internal.h"
54
55 static cfs_hash_ops_t uuid_hash_ops;
56 static cfs_hash_ops_t nid_hash_ops;
57 static cfs_hash_ops_t nid_stat_hash_ops;
58
59 /*********** string parsing utils *********/
60
61 /* returns 0 if we find this key in the buffer, else 1 */
62 int class_find_param(char *buf, char *key, char **valp)
63 {
64         char *ptr;
65
66         if (!buf)
67                 return 1;
68
69         if ((ptr = strstr(buf, key)) == NULL)
70                 return 1;
71
72         if (valp)
73                 *valp = ptr + strlen(key);
74
75         return 0;
76 }
77 EXPORT_SYMBOL(class_find_param);
78
79 /**
80  * Finds a parameter in \a params and copies it to \a copy.
81  *
82  * Leading spaces are skipped. Next space or end of string is the
83  * parameter terminator with the exception that spaces inside single or double
84  * quotes get included into a parameter. The parameter is copied into \a copy
85  * which has to be allocated big enough by a caller, quotes are stripped in
86  * the copy and the copy is terminated by 0.
87  *
88  * On return \a params is set to next parameter or to NULL if last
89  * parameter is returned.
90  *
91  * \retval 0 if parameter is returned in \a copy
92  * \retval 1 otherwise
93  * \retval -EINVAL if unbalanced quota is found
94  */
95 int class_get_next_param(char **params, char *copy)
96 {
97         char *q1, *q2, *str;
98         int len;
99
100         str = *params;
101         while (*str == ' ')
102                 str++;
103
104         if (*str == '\0') {
105                 *params = NULL;
106                 return 1;
107         }
108
109         while (1) {
110                 q1 = strpbrk(str, " '\"");
111                 if (q1 == NULL) {
112                         len = strlen(str);
113                         memcpy(copy, str, len);
114                         copy[len] = '\0';
115                         *params = NULL;
116                         return 0;
117                 }
118                 len = q1 - str;
119                 if (*q1 == ' ') {
120                         memcpy(copy, str, len);
121                         copy[len] = '\0';
122                         *params = str + len;
123                         return 0;
124                 }
125
126                 memcpy(copy, str, len);
127                 copy += len;
128
129                 /* search for the matching closing quote */
130                 str = q1 + 1;
131                 q2 = strchr(str, *q1);
132                 if (q2 == NULL) {
133                         CERROR("Unbalanced quota in parameters: \"%s\"\n",
134                                *params);
135                         return -EINVAL;
136                 }
137                 len = q2 - str;
138                 memcpy(copy, str, len);
139                 copy += len;
140                 str = q2 + 1;
141         }
142         return 1;
143 }
144 EXPORT_SYMBOL(class_get_next_param);
145
146 /* returns 0 if this is the first key in the buffer, else 1.
147    valp points to first char after key. */
148 int class_match_param(char *buf, char *key, char **valp)
149 {
150         if (!buf)
151                 return 1;
152
153         if (memcmp(buf, key, strlen(key)) != 0)
154                 return 1;
155
156         if (valp)
157                 *valp = buf + strlen(key);
158
159         return 0;
160 }
161 EXPORT_SYMBOL(class_match_param);
162
163 static int parse_nid(char *buf, void *value)
164 {
165         lnet_nid_t *nid = (lnet_nid_t *)value;
166
167         *nid = libcfs_str2nid(buf);
168         if (*nid != LNET_NID_ANY)
169                 return 0;
170
171         LCONSOLE_ERROR_MSG(0x159, "Can't parse NID '%s'\n", buf);
172         return -EINVAL;
173 }
174
175 static int parse_net(char *buf, void *value)
176 {
177         __u32 *net = (__u32 *)value;
178
179         *net = libcfs_str2net(buf);
180         CDEBUG(D_INFO, "Net %s\n", libcfs_net2str(*net));
181         return 0;
182 }
183
184 enum {
185         CLASS_PARSE_NID = 1,
186         CLASS_PARSE_NET,
187 };
188
189 /* 0 is good nid,
190    1 not found
191    < 0 error
192    endh is set to next separator */
193 static int class_parse_value(char *buf, int opc, void *value, char **endh)
194 {
195         char *endp;
196         char  tmp;
197         int   rc = 0;
198
199         if (!buf)
200                 return 1;
201         while (*buf == ',' || *buf == ':')
202                 buf++;
203         if (*buf == ' ' || *buf == '/' || *buf == '\0')
204                 return 1;
205
206         /* nid separators or end of nids */
207         endp = strpbrk(buf, ",: /");
208         if (endp == NULL)
209                 endp = buf + strlen(buf);
210
211         tmp = *endp;
212         *endp = '\0';
213         switch (opc) {
214         default:
215                 LBUG();
216         case CLASS_PARSE_NID:
217                 rc = parse_nid(buf, value);
218                 break;
219         case CLASS_PARSE_NET:
220                 rc = parse_net(buf, value);
221                 break;
222         }
223         *endp = tmp;
224         if (rc != 0)
225                 return rc;
226         if (endh)
227                 *endh = endp;
228         return 0;
229 }
230
231 int class_parse_nid(char *buf, lnet_nid_t *nid, char **endh)
232 {
233         return class_parse_value(buf, CLASS_PARSE_NID, (void *)nid, endh);
234 }
235 EXPORT_SYMBOL(class_parse_nid);
236
237 int class_parse_net(char *buf, __u32 *net, char **endh)
238 {
239         return class_parse_value(buf, CLASS_PARSE_NET, (void *)net, endh);
240 }
241 EXPORT_SYMBOL(class_parse_net);
242
243 /* 1 param contains key and match
244  * 0 param contains key and not match
245  * -1 param does not contain key
246  */
247 int class_match_nid(char *buf, char *key, lnet_nid_t nid)
248 {
249         lnet_nid_t tmp;
250         int   rc = -1;
251
252         while (class_find_param(buf, key, &buf) == 0) {
253                 /* please restrict to the nids pertaining to
254                  * the specified nids */
255                 while (class_parse_nid(buf, &tmp, &buf) == 0) {
256                         if (tmp == nid)
257                                 return 1;
258                 }
259                 rc = 0;
260         }
261         return rc;
262 }
263 EXPORT_SYMBOL(class_match_nid);
264
265 int class_match_net(char *buf, char *key, __u32 net)
266 {
267         __u32 tmp;
268         int   rc = -1;
269
270         while (class_find_param(buf, key, &buf) == 0) {
271                 /* please restrict to the nids pertaining to
272                  * the specified networks */
273                 while (class_parse_net(buf, &tmp, &buf) == 0) {
274                         if (tmp == net)
275                                 return 1;
276                 }
277                 rc = 0;
278         }
279         return rc;
280 }
281 EXPORT_SYMBOL(class_match_net);
282
283 /********************** class fns **********************/
284
285 /**
286  * Create a new obd device and set the type, name and uuid.  If successful,
287  * the new device can be accessed by either name or uuid.
288  */
289 int class_attach(struct lustre_cfg *lcfg)
290 {
291         struct obd_device *obd = NULL;
292         char *typename, *name, *uuid;
293         int rc, len;
294         ENTRY;
295
296         if (!LUSTRE_CFG_BUFLEN(lcfg, 1)) {
297                 CERROR("No type passed!\n");
298                 RETURN(-EINVAL);
299         }
300         typename = lustre_cfg_string(lcfg, 1);
301
302         if (!LUSTRE_CFG_BUFLEN(lcfg, 0)) {
303                 CERROR("No name passed!\n");
304                 RETURN(-EINVAL);
305         }
306         name = lustre_cfg_string(lcfg, 0);
307
308         if (!LUSTRE_CFG_BUFLEN(lcfg, 2)) {
309                 CERROR("No UUID passed!\n");
310                 RETURN(-EINVAL);
311         }
312         uuid = lustre_cfg_string(lcfg, 2);
313
314         CDEBUG(D_IOCTL, "attach type %s name: %s uuid: %s\n",
315                MKSTR(typename), MKSTR(name), MKSTR(uuid));
316
317         obd = class_newdev(typename, name);
318         if (IS_ERR(obd)) {
319                 /* Already exists or out of obds */
320                 rc = PTR_ERR(obd);
321                 obd = NULL;
322                 CERROR("Cannot create device %s of type %s : %d\n",
323                        name, typename, rc);
324                 GOTO(out, rc);
325         }
326         LASSERTF(obd != NULL, "Cannot get obd device %s of type %s\n",
327                  name, typename);
328         LASSERTF(obd->obd_magic == OBD_DEVICE_MAGIC,
329                  "obd %p obd_magic %08X != %08X\n",
330                  obd, obd->obd_magic, OBD_DEVICE_MAGIC);
331         LASSERTF(strncmp(obd->obd_name, name, strlen(name)) == 0,
332                  "%p obd_name %s != %s\n", obd, obd->obd_name, name);
333
334         cfs_rwlock_init(&obd->obd_pool_lock);
335         obd->obd_pool_limit = 0;
336         obd->obd_pool_slv = 0;
337
338         CFS_INIT_LIST_HEAD(&obd->obd_exports);
339         CFS_INIT_LIST_HEAD(&obd->obd_unlinked_exports);
340         CFS_INIT_LIST_HEAD(&obd->obd_delayed_exports);
341         CFS_INIT_LIST_HEAD(&obd->obd_exports_timed);
342         CFS_INIT_LIST_HEAD(&obd->obd_nid_stats);
343         cfs_spin_lock_init(&obd->obd_nid_lock);
344         cfs_spin_lock_init(&obd->obd_dev_lock);
345         cfs_mutex_init(&obd->obd_dev_mutex);
346         cfs_spin_lock_init(&obd->obd_osfs_lock);
347         /* obd->obd_osfs_age must be set to a value in the distant
348          * past to guarantee a fresh statfs is fetched on mount. */
349         obd->obd_osfs_age = cfs_time_shift_64(-1000);
350
351         /* XXX belongs in setup not attach  */
352         cfs_init_rwsem(&obd->obd_observer_link_sem);
353         /* recovery data */
354         cfs_init_timer(&obd->obd_recovery_timer);
355         cfs_spin_lock_init(&obd->obd_recovery_task_lock);
356         cfs_waitq_init(&obd->obd_next_transno_waitq);
357         cfs_waitq_init(&obd->obd_evict_inprogress_waitq);
358         CFS_INIT_LIST_HEAD(&obd->obd_req_replay_queue);
359         CFS_INIT_LIST_HEAD(&obd->obd_lock_replay_queue);
360         CFS_INIT_LIST_HEAD(&obd->obd_final_req_queue);
361         CFS_INIT_LIST_HEAD(&obd->obd_evict_list);
362
363         llog_group_init(&obd->obd_olg, FID_SEQ_LLOG);
364
365         obd->obd_conn_inprogress = 0;
366
367         len = strlen(uuid);
368         if (len >= sizeof(obd->obd_uuid)) {
369                 CERROR("uuid must be < %d bytes long\n",
370                        (int)sizeof(obd->obd_uuid));
371                 GOTO(out, rc = -EINVAL);
372         }
373         memcpy(obd->obd_uuid.uuid, uuid, len);
374
375         /* do the attach */
376         if (OBP(obd, attach)) {
377                 rc = OBP(obd,attach)(obd, sizeof *lcfg, lcfg);
378                 if (rc)
379                         GOTO(out, rc = -EINVAL);
380         }
381
382         /* Detach drops this */
383         cfs_spin_lock(&obd->obd_dev_lock);
384         cfs_atomic_set(&obd->obd_refcount, 1);
385         cfs_spin_unlock(&obd->obd_dev_lock);
386         lu_ref_init(&obd->obd_reference);
387         lu_ref_add(&obd->obd_reference, "attach", obd);
388
389         obd->obd_attached = 1;
390         CDEBUG(D_IOCTL, "OBD: dev %d attached type %s with refcount %d\n",
391                obd->obd_minor, typename, cfs_atomic_read(&obd->obd_refcount));
392         RETURN(0);
393  out:
394         if (obd != NULL) {
395                 class_release_dev(obd);
396         }
397         return rc;
398 }
399 EXPORT_SYMBOL(class_attach);
400
401 /** Create hashes, self-export, and call type-specific setup.
402  * Setup is effectively the "start this obd" call.
403  */
404 int class_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
405 {
406         int err = 0;
407         struct obd_export *exp;
408         ENTRY;
409
410         LASSERT(obd != NULL);
411         LASSERTF(obd == class_num2obd(obd->obd_minor),
412                  "obd %p != obd_devs[%d] %p\n",
413                  obd, obd->obd_minor, class_num2obd(obd->obd_minor));
414         LASSERTF(obd->obd_magic == OBD_DEVICE_MAGIC,
415                  "obd %p obd_magic %08x != %08x\n",
416                  obd, obd->obd_magic, OBD_DEVICE_MAGIC);
417
418         /* have we attached a type to this device? */
419         if (!obd->obd_attached) {
420                 CERROR("Device %d not attached\n", obd->obd_minor);
421                 RETURN(-ENODEV);
422         }
423
424         if (obd->obd_set_up) {
425                 CERROR("Device %d already setup (type %s)\n",
426                        obd->obd_minor, obd->obd_type->typ_name);
427                 RETURN(-EEXIST);
428         }
429
430         /* is someone else setting us up right now? (attach inits spinlock) */
431         cfs_spin_lock(&obd->obd_dev_lock);
432         if (obd->obd_starting) {
433                 cfs_spin_unlock(&obd->obd_dev_lock);
434                 CERROR("Device %d setup in progress (type %s)\n",
435                        obd->obd_minor, obd->obd_type->typ_name);
436                 RETURN(-EEXIST);
437         }
438         /* just leave this on forever.  I can't use obd_set_up here because
439            other fns check that status, and we're not actually set up yet. */
440         obd->obd_starting = 1;
441         obd->obd_uuid_hash = NULL;
442         obd->obd_nid_hash = NULL;
443         obd->obd_nid_stats_hash = NULL;
444         cfs_spin_unlock(&obd->obd_dev_lock);
445
446         /* create an uuid-export lustre hash */
447         obd->obd_uuid_hash = cfs_hash_create("UUID_HASH",
448                                              HASH_UUID_CUR_BITS,
449                                              HASH_UUID_MAX_BITS,
450                                              HASH_UUID_BKT_BITS, 0,
451                                              CFS_HASH_MIN_THETA,
452                                              CFS_HASH_MAX_THETA,
453                                              &uuid_hash_ops, CFS_HASH_DEFAULT);
454         if (!obd->obd_uuid_hash)
455                 GOTO(err_hash, err = -ENOMEM);
456
457         /* create a nid-export lustre hash */
458         obd->obd_nid_hash = cfs_hash_create("NID_HASH",
459                                             HASH_NID_CUR_BITS,
460                                             HASH_NID_MAX_BITS,
461                                             HASH_NID_BKT_BITS, 0,
462                                             CFS_HASH_MIN_THETA,
463                                             CFS_HASH_MAX_THETA,
464                                             &nid_hash_ops, CFS_HASH_DEFAULT);
465         if (!obd->obd_nid_hash)
466                 GOTO(err_hash, err = -ENOMEM);
467
468         /* create a nid-stats lustre hash */
469         obd->obd_nid_stats_hash = cfs_hash_create("NID_STATS",
470                                                   HASH_NID_STATS_CUR_BITS,
471                                                   HASH_NID_STATS_MAX_BITS,
472                                                   HASH_NID_STATS_BKT_BITS, 0,
473                                                   CFS_HASH_MIN_THETA,
474                                                   CFS_HASH_MAX_THETA,
475                                                   &nid_stat_hash_ops, CFS_HASH_DEFAULT);
476         if (!obd->obd_nid_stats_hash)
477                 GOTO(err_hash, err = -ENOMEM);
478
479         exp = class_new_export(obd, &obd->obd_uuid);
480         if (IS_ERR(exp))
481                 GOTO(err_hash, err = PTR_ERR(exp));
482
483         obd->obd_self_export = exp;
484         cfs_list_del_init(&exp->exp_obd_chain_timed);
485         class_export_put(exp);
486
487         err = obd_setup(obd, lcfg);
488         if (err)
489                 GOTO(err_exp, err);
490
491         obd->obd_set_up = 1;
492
493         cfs_spin_lock(&obd->obd_dev_lock);
494         /* cleanup drops this */
495         class_incref(obd, "setup", obd);
496         cfs_spin_unlock(&obd->obd_dev_lock);
497
498         CDEBUG(D_IOCTL, "finished setup of obd %s (uuid %s)\n",
499                obd->obd_name, obd->obd_uuid.uuid);
500
501         RETURN(0);
502 err_exp:
503         if (obd->obd_self_export) {
504                 class_unlink_export(obd->obd_self_export);
505                 obd->obd_self_export = NULL;
506         }
507 err_hash:
508         if (obd->obd_uuid_hash) {
509                 cfs_hash_putref(obd->obd_uuid_hash);
510                 obd->obd_uuid_hash = NULL;
511         }
512         if (obd->obd_nid_hash) {
513                 cfs_hash_putref(obd->obd_nid_hash);
514                 obd->obd_nid_hash = NULL;
515         }
516         if (obd->obd_nid_stats_hash) {
517                 cfs_hash_putref(obd->obd_nid_stats_hash);
518                 obd->obd_nid_stats_hash = NULL;
519         }
520         obd->obd_starting = 0;
521         CERROR("setup %s failed (%d)\n", obd->obd_name, err);
522         return err;
523 }
524 EXPORT_SYMBOL(class_setup);
525
526 /** We have finished using this obd and are ready to destroy it.
527  * There can be no more references to this obd.
528  */
529 int class_detach(struct obd_device *obd, struct lustre_cfg *lcfg)
530 {
531         ENTRY;
532
533         if (obd->obd_set_up) {
534                 CERROR("OBD device %d still set up\n", obd->obd_minor);
535                 RETURN(-EBUSY);
536         }
537
538         cfs_spin_lock(&obd->obd_dev_lock);
539         if (!obd->obd_attached) {
540                 cfs_spin_unlock(&obd->obd_dev_lock);
541                 CERROR("OBD device %d not attached\n", obd->obd_minor);
542                 RETURN(-ENODEV);
543         }
544         obd->obd_attached = 0;
545         cfs_spin_unlock(&obd->obd_dev_lock);
546
547         CDEBUG(D_IOCTL, "detach on obd %s (uuid %s)\n",
548                obd->obd_name, obd->obd_uuid.uuid);
549
550         class_decref(obd, "attach", obd);
551         RETURN(0);
552 }
553 EXPORT_SYMBOL(class_detach);
554
555 /** Start shutting down the obd.  There may be in-progess ops when
556  * this is called.  We tell them to start shutting down with a call
557  * to class_disconnect_exports().
558  */
559 int class_cleanup(struct obd_device *obd, struct lustre_cfg *lcfg)
560 {
561         int err = 0;
562         char *flag;
563         ENTRY;
564
565         OBD_RACE(OBD_FAIL_LDLM_RECOV_CLIENTS);
566
567         if (!obd->obd_set_up) {
568                 CERROR("Device %d not setup\n", obd->obd_minor);
569                 RETURN(-ENODEV);
570         }
571
572         cfs_spin_lock(&obd->obd_dev_lock);
573         if (obd->obd_stopping) {
574                 cfs_spin_unlock(&obd->obd_dev_lock);
575                 CERROR("OBD %d already stopping\n", obd->obd_minor);
576                 RETURN(-ENODEV);
577         }
578         /* Leave this on forever */
579         obd->obd_stopping = 1;
580
581         /* wait for already-arrived-connections to finish. */
582         while (obd->obd_conn_inprogress > 0) {
583                 cfs_spin_unlock(&obd->obd_dev_lock);
584
585                 cfs_cond_resched();
586
587                 cfs_spin_lock(&obd->obd_dev_lock);
588         }
589        cfs_spin_unlock(&obd->obd_dev_lock);
590
591         if (lcfg->lcfg_bufcount >= 2 && LUSTRE_CFG_BUFLEN(lcfg, 1) > 0) {
592                 for (flag = lustre_cfg_string(lcfg, 1); *flag != 0; flag++)
593                         switch (*flag) {
594                         case 'F':
595                                 obd->obd_force = 1;
596                                 break;
597                         case 'A':
598                                 LCONSOLE_WARN("Failing over %s\n",
599                                               obd->obd_name);
600                                 obd->obd_fail = 1;
601                                 obd->obd_no_transno = 1;
602                                 obd->obd_no_recov = 1;
603                                 if (OBP(obd, iocontrol)) {
604                                         obd_iocontrol(OBD_IOC_SYNC,
605                                                       obd->obd_self_export,
606                                                       0, NULL, NULL);
607                                 }
608                                 break;
609                         default:
610                                 CERROR("Unrecognised flag '%c'\n", *flag);
611                         }
612         }
613
614         LASSERT(obd->obd_self_export);
615
616         /* The three references that should be remaining are the
617          * obd_self_export and the attach and setup references. */
618         if (cfs_atomic_read(&obd->obd_refcount) > 3) {
619                 /* refcounf - 3 might be the number of real exports
620                    (excluding self export). But class_incref is called
621                    by other things as well, so don't count on it. */
622                 CDEBUG(D_IOCTL, "%s: forcing exports to disconnect: %d\n",
623                        obd->obd_name, cfs_atomic_read(&obd->obd_refcount) - 3);
624                 dump_exports(obd, 0);
625                 class_disconnect_exports(obd);
626         }
627
628         /* Precleanup, we must make sure all exports get destroyed. */
629         err = obd_precleanup(obd, OBD_CLEANUP_EXPORTS);
630         if (err)
631                 CERROR("Precleanup %s returned %d\n",
632                        obd->obd_name, err);
633
634         /* destroy an uuid-export hash body */
635         if (obd->obd_uuid_hash) {
636                 cfs_hash_putref(obd->obd_uuid_hash);
637                 obd->obd_uuid_hash = NULL;
638         }
639
640         /* destroy a nid-export hash body */
641         if (obd->obd_nid_hash) {
642                 cfs_hash_putref(obd->obd_nid_hash);
643                 obd->obd_nid_hash = NULL;
644         }
645
646         /* destroy a nid-stats hash body */
647         if (obd->obd_nid_stats_hash) {
648                 cfs_hash_putref(obd->obd_nid_stats_hash);
649                 obd->obd_nid_stats_hash = NULL;
650         }
651
652         class_decref(obd, "setup", obd);
653         obd->obd_set_up = 0;
654
655         RETURN(0);
656 }
657 EXPORT_SYMBOL(class_cleanup);
658
659 struct obd_device *class_incref(struct obd_device *obd,
660                                 const char *scope, const void *source)
661 {
662         lu_ref_add_atomic(&obd->obd_reference, scope, source);
663         cfs_atomic_inc(&obd->obd_refcount);
664         CDEBUG(D_INFO, "incref %s (%p) now %d\n", obd->obd_name, obd,
665                cfs_atomic_read(&obd->obd_refcount));
666
667         return obd;
668 }
669 EXPORT_SYMBOL(class_incref);
670
671 void class_decref(struct obd_device *obd, const char *scope, const void *source)
672 {
673         int err;
674         int refs;
675
676         cfs_spin_lock(&obd->obd_dev_lock);
677         cfs_atomic_dec(&obd->obd_refcount);
678         refs = cfs_atomic_read(&obd->obd_refcount);
679         cfs_spin_unlock(&obd->obd_dev_lock);
680         lu_ref_del(&obd->obd_reference, scope, source);
681
682         CDEBUG(D_INFO, "Decref %s (%p) now %d\n", obd->obd_name, obd, refs);
683
684         if ((refs == 1) && obd->obd_stopping) {
685                 /* All exports have been destroyed; there should
686                    be no more in-progress ops by this point.*/
687
688                 cfs_spin_lock(&obd->obd_self_export->exp_lock);
689                 obd->obd_self_export->exp_flags |= exp_flags_from_obd(obd);
690                 cfs_spin_unlock(&obd->obd_self_export->exp_lock);
691
692                 /* note that we'll recurse into class_decref again */
693                 class_unlink_export(obd->obd_self_export);
694                 return;
695         }
696
697         if (refs == 0) {
698                 CDEBUG(D_CONFIG, "finishing cleanup of obd %s (%s)\n",
699                        obd->obd_name, obd->obd_uuid.uuid);
700                 LASSERT(!obd->obd_attached);
701                 if (obd->obd_stopping) {
702                         /* If we're not stopping, we were never set up */
703                         err = obd_cleanup(obd);
704                         if (err)
705                                 CERROR("Cleanup %s returned %d\n",
706                                        obd->obd_name, err);
707                 }
708                 if (OBP(obd, detach)) {
709                         err = OBP(obd, detach)(obd);
710                         if (err)
711                                 CERROR("Detach returned %d\n", err);
712                 }
713                 class_release_dev(obd);
714         }
715 }
716 EXPORT_SYMBOL(class_decref);
717
718 /** Add a failover nid location.
719  * Client obd types contact server obd types using this nid list.
720  */
721 int class_add_conn(struct obd_device *obd, struct lustre_cfg *lcfg)
722 {
723         struct obd_import *imp;
724         struct obd_uuid uuid;
725         int rc;
726         ENTRY;
727
728         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1 ||
729             LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(struct obd_uuid)) {
730                 CERROR("invalid conn_uuid\n");
731                 RETURN(-EINVAL);
732         }
733         if (strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) &&
734             strcmp(obd->obd_type->typ_name, LUSTRE_OSC_NAME) &&
735             strcmp(obd->obd_type->typ_name, LUSTRE_MGC_NAME)) {
736                 CERROR("can't add connection on non-client dev\n");
737                 RETURN(-EINVAL);
738         }
739
740         imp = obd->u.cli.cl_import;
741         if (!imp) {
742                 CERROR("try to add conn on immature client dev\n");
743                 RETURN(-EINVAL);
744         }
745
746         obd_str2uuid(&uuid, lustre_cfg_string(lcfg, 1));
747         rc = obd_add_conn(imp, &uuid, lcfg->lcfg_num);
748
749         RETURN(rc);
750 }
751
752 /** Remove a failover nid location.
753  */
754 int class_del_conn(struct obd_device *obd, struct lustre_cfg *lcfg)
755 {
756         struct obd_import *imp;
757         struct obd_uuid uuid;
758         int rc;
759         ENTRY;
760
761         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1 ||
762             LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(struct obd_uuid)) {
763                 CERROR("invalid conn_uuid\n");
764                 RETURN(-EINVAL);
765         }
766         if (strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) &&
767             strcmp(obd->obd_type->typ_name, LUSTRE_OSC_NAME)) {
768                 CERROR("can't del connection on non-client dev\n");
769                 RETURN(-EINVAL);
770         }
771
772         imp = obd->u.cli.cl_import;
773         if (!imp) {
774                 CERROR("try to del conn on immature client dev\n");
775                 RETURN(-EINVAL);
776         }
777
778         obd_str2uuid(&uuid, lustre_cfg_string(lcfg, 1));
779         rc = obd_del_conn(imp, &uuid);
780
781         RETURN(rc);
782 }
783
784 CFS_LIST_HEAD(lustre_profile_list);
785
786 struct lustre_profile *class_get_profile(const char * prof)
787 {
788         struct lustre_profile *lprof;
789
790         ENTRY;
791         cfs_list_for_each_entry(lprof, &lustre_profile_list, lp_list) {
792                 if (!strcmp(lprof->lp_profile, prof)) {
793                         RETURN(lprof);
794                 }
795         }
796         RETURN(NULL);
797 }
798 EXPORT_SYMBOL(class_get_profile);
799
800 /** Create a named "profile".
801  * This defines the mdc and osc names to use for a client.
802  * This also is used to define the lov to be used by a mdt.
803  */
804 int class_add_profile(int proflen, char *prof, int osclen, char *osc,
805                       int mdclen, char *mdc)
806 {
807         struct lustre_profile *lprof;
808         int err = 0;
809         ENTRY;
810
811         CDEBUG(D_CONFIG, "Add profile %s\n", prof);
812
813         OBD_ALLOC(lprof, sizeof(*lprof));
814         if (lprof == NULL)
815                 RETURN(-ENOMEM);
816         CFS_INIT_LIST_HEAD(&lprof->lp_list);
817
818         LASSERT(proflen == (strlen(prof) + 1));
819         OBD_ALLOC(lprof->lp_profile, proflen);
820         if (lprof->lp_profile == NULL)
821                 GOTO(out, err = -ENOMEM);
822         memcpy(lprof->lp_profile, prof, proflen);
823
824         LASSERT(osclen == (strlen(osc) + 1));
825         OBD_ALLOC(lprof->lp_dt, osclen);
826         if (lprof->lp_dt == NULL)
827                 GOTO(out, err = -ENOMEM);
828         memcpy(lprof->lp_dt, osc, osclen);
829
830         if (mdclen > 0) {
831                 LASSERT(mdclen == (strlen(mdc) + 1));
832                 OBD_ALLOC(lprof->lp_md, mdclen);
833                 if (lprof->lp_md == NULL)
834                         GOTO(out, err = -ENOMEM);
835                 memcpy(lprof->lp_md, mdc, mdclen);
836         }
837
838         cfs_list_add(&lprof->lp_list, &lustre_profile_list);
839         RETURN(err);
840
841 out:
842         if (lprof->lp_md)
843                 OBD_FREE(lprof->lp_md, mdclen);
844         if (lprof->lp_dt)
845                 OBD_FREE(lprof->lp_dt, osclen);
846         if (lprof->lp_profile)
847                 OBD_FREE(lprof->lp_profile, proflen);
848         OBD_FREE(lprof, sizeof(*lprof));
849         RETURN(err);
850 }
851
852 void class_del_profile(const char *prof)
853 {
854         struct lustre_profile *lprof;
855         ENTRY;
856
857         CDEBUG(D_CONFIG, "Del profile %s\n", prof);
858
859         lprof = class_get_profile(prof);
860         if (lprof) {
861                 cfs_list_del(&lprof->lp_list);
862                 OBD_FREE(lprof->lp_profile, strlen(lprof->lp_profile) + 1);
863                 OBD_FREE(lprof->lp_dt, strlen(lprof->lp_dt) + 1);
864                 if (lprof->lp_md)
865                         OBD_FREE(lprof->lp_md, strlen(lprof->lp_md) + 1);
866                 OBD_FREE(lprof, sizeof *lprof);
867         }
868         EXIT;
869 }
870 EXPORT_SYMBOL(class_del_profile);
871
872 /* COMPAT_146 */
873 void class_del_profiles(void)
874 {
875         struct lustre_profile *lprof, *n;
876         ENTRY;
877
878         cfs_list_for_each_entry_safe(lprof, n, &lustre_profile_list, lp_list) {
879                 cfs_list_del(&lprof->lp_list);
880                 OBD_FREE(lprof->lp_profile, strlen(lprof->lp_profile) + 1);
881                 OBD_FREE(lprof->lp_dt, strlen(lprof->lp_dt) + 1);
882                 if (lprof->lp_md)
883                         OBD_FREE(lprof->lp_md, strlen(lprof->lp_md) + 1);
884                 OBD_FREE(lprof, sizeof *lprof);
885         }
886         EXIT;
887 }
888 EXPORT_SYMBOL(class_del_profiles);
889
890 static int class_set_global(char *ptr, int val, struct lustre_cfg *lcfg)
891 {
892         ENTRY;
893         if (class_match_param(ptr, PARAM_AT_MIN, NULL) == 0)
894                 at_min = val;
895         else if (class_match_param(ptr, PARAM_AT_MAX, NULL) == 0)
896                 at_max = val;
897         else if (class_match_param(ptr, PARAM_AT_EXTRA, NULL) == 0)
898                 at_extra = val;
899         else if (class_match_param(ptr, PARAM_AT_EARLY_MARGIN, NULL) == 0)
900                 at_early_margin = val;
901         else if (class_match_param(ptr, PARAM_AT_HISTORY, NULL) == 0)
902                 at_history = val;
903         else if (class_match_param(ptr, PARAM_JOBID_VAR, NULL) == 0)
904                 strlcpy(obd_jobid_var, lustre_cfg_string(lcfg, 2),
905                         JOBSTATS_JOBID_VAR_MAX_LEN + 1);
906         else
907                 RETURN(-EINVAL);
908
909         CDEBUG(D_IOCTL, "global %s = %d\n", ptr, val);
910         RETURN(0);
911 }
912
913
914 /* We can't call ll_process_config directly because it lives in a module that
915    must be loaded after this one. */
916 static int (*client_process_config)(struct lustre_cfg *lcfg) = NULL;
917
918 void lustre_register_client_process_config(int (*cpc)(struct lustre_cfg *lcfg))
919 {
920         client_process_config = cpc;
921 }
922 EXPORT_SYMBOL(lustre_register_client_process_config);
923
924 /**
925  * Rename the proc parameter in \a cfg with a new name \a new_name.
926  *
927  * \param cfg      config structure which contains the proc parameter
928  * \param new_name new name of the proc parameter
929  *
930  * \retval valid-pointer    pointer to the newly-allocated config structure
931  *                          which contains the renamed proc parameter
932  * \retval ERR_PTR(-EINVAL) if \a cfg or \a new_name is NULL, or \a cfg does
933  *                          not contain a proc parameter
934  * \retval ERR_PTR(-ENOMEM) if memory allocation failure occurs
935  */
936 struct lustre_cfg *lustre_cfg_rename(struct lustre_cfg *cfg,
937                                      const char *new_name)
938 {
939         struct lustre_cfg_bufs  *bufs = NULL;
940         struct lustre_cfg       *new_cfg = NULL;
941         char                    *param = NULL;
942         char                    *new_param = NULL;
943         char                    *value = NULL;
944         int                      name_len = 0;
945         int                      new_len = 0;
946         ENTRY;
947
948         if (cfg == NULL || new_name == NULL)
949                 RETURN(ERR_PTR(-EINVAL));
950
951         param = lustre_cfg_string(cfg, 1);
952         if (param == NULL)
953                 RETURN(ERR_PTR(-EINVAL));
954
955         value = strchr(param, '=');
956         if (value == NULL)
957                 name_len = strlen(param);
958         else
959                 name_len = value - param;
960
961         new_len = LUSTRE_CFG_BUFLEN(cfg, 1) + strlen(new_name) - name_len;
962
963         OBD_ALLOC(new_param, new_len);
964         if (new_param == NULL)
965                 RETURN(ERR_PTR(-ENOMEM));
966
967         strcpy(new_param, new_name);
968         if (value != NULL)
969                 strcat(new_param, value);
970
971         OBD_ALLOC_PTR(bufs);
972         if (bufs == NULL) {
973                 OBD_FREE(new_param, new_len);
974                 RETURN(ERR_PTR(-ENOMEM));
975         }
976
977         lustre_cfg_bufs_reset(bufs, NULL);
978         lustre_cfg_bufs_init(bufs, cfg);
979         lustre_cfg_bufs_set_string(bufs, 1, new_param);
980
981         new_cfg = lustre_cfg_new(cfg->lcfg_command, bufs);
982
983         OBD_FREE(new_param, new_len);
984         OBD_FREE_PTR(bufs);
985         if (new_cfg == NULL)
986                 RETURN(ERR_PTR(-ENOMEM));
987
988         new_cfg->lcfg_num = cfg->lcfg_num;
989         new_cfg->lcfg_flags = cfg->lcfg_flags;
990         new_cfg->lcfg_nid = cfg->lcfg_nid;
991         new_cfg->lcfg_nal = cfg->lcfg_nal;
992
993         RETURN(new_cfg);
994 }
995 EXPORT_SYMBOL(lustre_cfg_rename);
996
997 /** Process configuration commands given in lustre_cfg form.
998  * These may come from direct calls (e.g. class_manual_cleanup)
999  * or processing the config llog, or ioctl from lctl.
1000  */
1001 int class_process_config(struct lustre_cfg *lcfg)
1002 {
1003         struct obd_device *obd;
1004         int err;
1005
1006         LASSERT(lcfg && !IS_ERR(lcfg));
1007         CDEBUG(D_IOCTL, "processing cmd: %x\n", lcfg->lcfg_command);
1008
1009         /* Commands that don't need a device */
1010         switch(lcfg->lcfg_command) {
1011         case LCFG_ATTACH: {
1012                 err = class_attach(lcfg);
1013                 GOTO(out, err);
1014         }
1015         case LCFG_ADD_UUID: {
1016                 CDEBUG(D_IOCTL, "adding mapping from uuid %s to nid "LPX64
1017                        " (%s)\n", lustre_cfg_string(lcfg, 1),
1018                        lcfg->lcfg_nid, libcfs_nid2str(lcfg->lcfg_nid));
1019
1020                 err = class_add_uuid(lustre_cfg_string(lcfg, 1), lcfg->lcfg_nid);
1021                 GOTO(out, err);
1022         }
1023         case LCFG_DEL_UUID: {
1024                 CDEBUG(D_IOCTL, "removing mappings for uuid %s\n",
1025                        (lcfg->lcfg_bufcount < 2 || LUSTRE_CFG_BUFLEN(lcfg, 1) == 0)
1026                        ? "<all uuids>" : lustre_cfg_string(lcfg, 1));
1027
1028                 err = class_del_uuid(lustre_cfg_string(lcfg, 1));
1029                 GOTO(out, err);
1030         }
1031         case LCFG_MOUNTOPT: {
1032                 CDEBUG(D_IOCTL, "mountopt: profile %s osc %s mdc %s\n",
1033                        lustre_cfg_string(lcfg, 1),
1034                        lustre_cfg_string(lcfg, 2),
1035                        lustre_cfg_string(lcfg, 3));
1036                 /* set these mount options somewhere, so ll_fill_super
1037                  * can find them. */
1038                 err = class_add_profile(LUSTRE_CFG_BUFLEN(lcfg, 1),
1039                                         lustre_cfg_string(lcfg, 1),
1040                                         LUSTRE_CFG_BUFLEN(lcfg, 2),
1041                                         lustre_cfg_string(lcfg, 2),
1042                                         LUSTRE_CFG_BUFLEN(lcfg, 3),
1043                                         lustre_cfg_string(lcfg, 3));
1044                 GOTO(out, err);
1045         }
1046         case LCFG_DEL_MOUNTOPT: {
1047                 CDEBUG(D_IOCTL, "mountopt: profile %s\n",
1048                        lustre_cfg_string(lcfg, 1));
1049                 class_del_profile(lustre_cfg_string(lcfg, 1));
1050                 GOTO(out, err = 0);
1051         }
1052         case LCFG_SET_TIMEOUT: {
1053                 CDEBUG(D_IOCTL, "changing lustre timeout from %d to %d\n",
1054                        obd_timeout, lcfg->lcfg_num);
1055                 obd_timeout = max(lcfg->lcfg_num, 1U);
1056                 obd_timeout_set = 1;
1057                 GOTO(out, err = 0);
1058         }
1059         case LCFG_SET_LDLM_TIMEOUT: {
1060                 CDEBUG(D_IOCTL, "changing lustre ldlm_timeout from %d to %d\n",
1061                        ldlm_timeout, lcfg->lcfg_num);
1062                 ldlm_timeout = max(lcfg->lcfg_num, 1U);
1063                 if (ldlm_timeout >= obd_timeout)
1064                         ldlm_timeout = max(obd_timeout / 3, 1U);
1065                 ldlm_timeout_set = 1;
1066                 GOTO(out, err = 0);
1067         }
1068         case LCFG_SET_UPCALL: {
1069                 LCONSOLE_ERROR_MSG(0x15a, "recovery upcall is deprecated\n");
1070                 /* COMPAT_146 Don't fail on old configs */
1071                 GOTO(out, err = 0);
1072         }
1073         case LCFG_MARKER: {
1074                 struct cfg_marker *marker;
1075                 marker = lustre_cfg_buf(lcfg, 1);
1076                 CDEBUG(D_IOCTL, "marker %d (%#x) %.16s %s\n", marker->cm_step,
1077                        marker->cm_flags, marker->cm_tgtname, marker->cm_comment);
1078                 GOTO(out, err = 0);
1079         }
1080         case LCFG_PARAM: {
1081                 char *tmp;
1082                 /* llite has no obd */
1083                 if ((class_match_param(lustre_cfg_string(lcfg, 1),
1084                                        PARAM_LLITE, 0) == 0) &&
1085                     client_process_config) {
1086                         err = (*client_process_config)(lcfg);
1087                         GOTO(out, err);
1088                 } else if ((class_match_param(lustre_cfg_string(lcfg, 1),
1089                                               PARAM_SYS, &tmp) == 0)) {
1090                         /* Global param settings */
1091                         err = class_set_global(tmp, lcfg->lcfg_num, lcfg);
1092                         /* Note that since LCFG_PARAM is LCFG_REQUIRED, new
1093                            unknown globals would cause config to fail */
1094                         if (err)
1095                                 CWARN("Ignoring unknown param %s\n", tmp);
1096                         GOTO(out, 0);
1097                 }
1098
1099                 /* Fall through */
1100                 break;
1101         }
1102         }
1103
1104         /* Commands that require a device */
1105         obd = class_name2obd(lustre_cfg_string(lcfg, 0));
1106         if (obd == NULL) {
1107                 if (!LUSTRE_CFG_BUFLEN(lcfg, 0))
1108                         CERROR("this lcfg command requires a device name\n");
1109                 else
1110                         CERROR("no device for: %s\n",
1111                                lustre_cfg_string(lcfg, 0));
1112
1113                 GOTO(out, err = -EINVAL);
1114         }
1115
1116         switch(lcfg->lcfg_command) {
1117         case LCFG_SETUP: {
1118                 err = class_setup(obd, lcfg);
1119                 GOTO(out, err);
1120         }
1121         case LCFG_DETACH: {
1122                 err = class_detach(obd, lcfg);
1123                 GOTO(out, err = 0);
1124         }
1125         case LCFG_CLEANUP: {
1126                 err = class_cleanup(obd, lcfg);
1127                 GOTO(out, err = 0);
1128         }
1129         case LCFG_ADD_CONN: {
1130                 err = class_add_conn(obd, lcfg);
1131                 GOTO(out, err = 0);
1132         }
1133         case LCFG_DEL_CONN: {
1134                 err = class_del_conn(obd, lcfg);
1135                 GOTO(out, err = 0);
1136         }
1137         case LCFG_POOL_NEW: {
1138                 err = obd_pool_new(obd, lustre_cfg_string(lcfg, 2));
1139                 GOTO(out, err = 0);
1140                 break;
1141         }
1142         case LCFG_POOL_ADD: {
1143                 err = obd_pool_add(obd, lustre_cfg_string(lcfg, 2),
1144                                    lustre_cfg_string(lcfg, 3));
1145                 GOTO(out, err = 0);
1146                 break;
1147         }
1148         case LCFG_POOL_REM: {
1149                 err = obd_pool_rem(obd, lustre_cfg_string(lcfg, 2),
1150                                    lustre_cfg_string(lcfg, 3));
1151                 GOTO(out, err = 0);
1152                 break;
1153         }
1154         case LCFG_POOL_DEL: {
1155                 err = obd_pool_del(obd, lustre_cfg_string(lcfg, 2));
1156                 GOTO(out, err = 0);
1157                 break;
1158         }
1159         default: {
1160                 err = obd_process_config(obd, sizeof(*lcfg), lcfg);
1161                 GOTO(out, err);
1162
1163         }
1164         }
1165 out:
1166         if ((err < 0) && !(lcfg->lcfg_command & LCFG_REQUIRED)) {
1167                 CWARN("Ignoring error %d on optional command %#x\n", err,
1168                       lcfg->lcfg_command);
1169                 err = 0;
1170         }
1171         return err;
1172 }
1173 EXPORT_SYMBOL(class_process_config);
1174
1175 int class_process_proc_param(char *prefix, struct lprocfs_vars *lvars,
1176                              struct lustre_cfg *lcfg, void *data)
1177 {
1178 #ifdef __KERNEL__
1179         struct lprocfs_vars *var;
1180         char *key, *sval;
1181         int i, keylen, vallen;
1182         int matched = 0, j = 0;
1183         int rc = 0;
1184         int skip = 0;
1185         ENTRY;
1186
1187         if (lcfg->lcfg_command != LCFG_PARAM) {
1188                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
1189                 RETURN(-EINVAL);
1190         }
1191
1192         /* e.g. tunefs.lustre --param mdt.group_upcall=foo /r/tmp/lustre-mdt
1193            or   lctl conf_param lustre-MDT0000.mdt.group_upcall=bar
1194            or   lctl conf_param lustre-OST0000.osc.max_dirty_mb=36 */
1195         for (i = 1; i < lcfg->lcfg_bufcount; i++) {
1196                 key = lustre_cfg_buf(lcfg, i);
1197                 /* Strip off prefix */
1198                 class_match_param(key, prefix, &key);
1199                 sval = strchr(key, '=');
1200                 if (!sval || (*(sval + 1) == 0)) {
1201                         CERROR("Can't parse param %s (missing '=')\n", key);
1202                         /* rc = -EINVAL;        continue parsing other params */
1203                         continue;
1204                 }
1205                 keylen = sval - key;
1206                 sval++;
1207                 vallen = strlen(sval);
1208                 matched = 0;
1209                 j = 0;
1210                 /* Search proc entries */
1211                 while (lvars[j].name) {
1212                         var = &lvars[j];
1213                         if (class_match_param(key, (char *)var->name, 0) == 0 &&
1214                             keylen == strlen(var->name)) {
1215                                 matched++;
1216                                 rc = -EROFS;
1217                                 if (var->write_fptr) {
1218                                         mm_segment_t oldfs;
1219                                         oldfs = get_fs();
1220                                         set_fs(KERNEL_DS);
1221                                         rc = (var->write_fptr)(NULL, sval,
1222                                                                vallen, data);
1223                                         set_fs(oldfs);
1224                                 }
1225                                 break;
1226                         }
1227                         j++;
1228                 }
1229                 if (!matched) {
1230                         /* If the prefix doesn't match, return error so we
1231                            can pass it down the stack */
1232                         if (strnchr(key, keylen, '.'))
1233                             RETURN(-ENOSYS);
1234                         CERROR("%s: unknown param %s\n",
1235                                (char *)lustre_cfg_string(lcfg, 0), key);
1236                         /* rc = -EINVAL;        continue parsing other params */
1237                         skip++;
1238                 } else if (rc < 0) {
1239                         CERROR("writing proc entry %s err %d\n",
1240                                var->name, rc);
1241                         rc = 0;
1242                 } else {
1243                         CDEBUG(D_CONFIG, "%s.%.*s: set parameter %.*s=%s\n",
1244                                       lustre_cfg_string(lcfg, 0),
1245                                       (int)strlen(prefix) - 1, prefix,
1246                                       (int)(sval - key - 1), key, sval);
1247                 }
1248         }
1249
1250         if (rc > 0)
1251                 rc = 0;
1252         if (!rc && skip)
1253                 rc = skip;
1254         RETURN(rc);
1255 #else
1256         CDEBUG(D_CONFIG, "liblustre can't process params.\n");
1257         /* Don't throw config error */
1258         RETURN(0);
1259 #endif
1260 }
1261 EXPORT_SYMBOL(class_process_proc_param);
1262
1263 #ifdef __KERNEL__
1264 extern int lustre_check_exclusion(struct super_block *sb, char *svname);
1265 #else
1266 #define lustre_check_exclusion(a,b)  0
1267 #endif
1268
1269 /** Parse a configuration llog, doing various manipulations on them
1270  * for various reasons, (modifications for compatibility, skip obsolete
1271  * records, change uuids, etc), then class_process_config() resulting
1272  * net records.
1273  */
1274 static int class_config_llog_handler(const struct lu_env *env,
1275                                      struct llog_handle *handle,
1276                                      struct llog_rec_hdr *rec, void *data)
1277 {
1278         struct config_llog_instance *clli = data;
1279         int cfg_len = rec->lrh_len;
1280         char *cfg_buf = (char*) (rec + 1);
1281         int rc = 0;
1282         ENTRY;
1283
1284         //class_config_dump_handler(handle, rec, data);
1285
1286         switch (rec->lrh_type) {
1287         case OBD_CFG_REC: {
1288                 struct lustre_cfg *lcfg, *lcfg_new;
1289                 struct lustre_cfg_bufs bufs;
1290                 char *inst_name = NULL;
1291                 int inst_len = 0;
1292                 int inst = 0, swab = 0;
1293
1294                 lcfg = (struct lustre_cfg *)cfg_buf;
1295                 if (lcfg->lcfg_version == __swab32(LUSTRE_CFG_VERSION)) {
1296                         lustre_swab_lustre_cfg(lcfg);
1297                         swab = 1;
1298                 }
1299
1300                 rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
1301                 if (rc)
1302                         GOTO(out, rc);
1303
1304                 /* Figure out config state info */
1305                 if (lcfg->lcfg_command == LCFG_MARKER) {
1306                         struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
1307                         lustre_swab_cfg_marker(marker, swab,
1308                                                LUSTRE_CFG_BUFLEN(lcfg, 1));
1309                         CDEBUG(D_CONFIG, "Marker, inst_flg=%#x mark_flg=%#x\n",
1310                                clli->cfg_flags, marker->cm_flags);
1311                         if (marker->cm_flags & CM_START) {
1312                                 /* all previous flags off */
1313                                 clli->cfg_flags = CFG_F_MARKER;
1314                                 if (marker->cm_flags & CM_SKIP) {
1315                                         clli->cfg_flags |= CFG_F_SKIP;
1316                                         CDEBUG(D_CONFIG, "SKIP #%d\n",
1317                                                marker->cm_step);
1318                                 } else if ((marker->cm_flags & CM_EXCLUDE) ||
1319                                            (clli->cfg_sb &&
1320                                             lustre_check_exclusion(clli->cfg_sb,
1321                                                          marker->cm_tgtname))) {
1322                                         clli->cfg_flags |= CFG_F_EXCLUDE;
1323                                         CDEBUG(D_CONFIG, "EXCLUDE %d\n",
1324                                                marker->cm_step);
1325                                 }
1326                         } else if (marker->cm_flags & CM_END) {
1327                                 clli->cfg_flags = 0;
1328                         }
1329                 }
1330                 /* A config command without a start marker before it is
1331                    illegal (post 146) */
1332                 if (!(clli->cfg_flags & CFG_F_COMPAT146) &&
1333                     !(clli->cfg_flags & CFG_F_MARKER) &&
1334                     (lcfg->lcfg_command != LCFG_MARKER)) {
1335                         CWARN("Config not inside markers, ignoring! "
1336                               "(inst: %p, uuid: %s, flags: %#x)\n",
1337                               clli->cfg_instance,
1338                               clli->cfg_uuid.uuid, clli->cfg_flags);
1339                         clli->cfg_flags |= CFG_F_SKIP;
1340                 }
1341                 if (clli->cfg_flags & CFG_F_SKIP) {
1342                         CDEBUG(D_CONFIG, "skipping %#x\n",
1343                                clli->cfg_flags);
1344                         rc = 0;
1345                         /* No processing! */
1346                         break;
1347                 }
1348
1349                 /*
1350                  * For interoperability between 1.8 and 2.0,
1351                  * rename "mds" obd device type to "mdt".
1352                  */
1353                 {
1354                         char *typename = lustre_cfg_string(lcfg, 1);
1355                         char *index = lustre_cfg_string(lcfg, 2);
1356
1357                         if ((lcfg->lcfg_command == LCFG_ATTACH && typename &&
1358                              strcmp(typename, "mds") == 0)) {
1359                                 CWARN("For 1.8 interoperability, rename obd "
1360                                        "type from mds to mdt\n");
1361                                 typename[2] = 't';
1362                         }
1363                         if ((lcfg->lcfg_command == LCFG_SETUP && index &&
1364                              strcmp(index, "type") == 0)) {
1365                                 CDEBUG(D_INFO, "For 1.8 interoperability, "
1366                                        "set this index to '0'\n");
1367                                 index[0] = '0';
1368                                 index[1] = 0;
1369                         }
1370                 }
1371
1372                 if ((clli->cfg_flags & CFG_F_EXCLUDE) &&
1373                     (lcfg->lcfg_command == LCFG_LOV_ADD_OBD))
1374                         /* Add inactive instead */
1375                         lcfg->lcfg_command = LCFG_LOV_ADD_INA;
1376
1377                 lustre_cfg_bufs_init(&bufs, lcfg);
1378
1379                 if (clli && clli->cfg_instance &&
1380                     LUSTRE_CFG_BUFLEN(lcfg, 0) > 0){
1381                         inst = 1;
1382                         inst_len = LUSTRE_CFG_BUFLEN(lcfg, 0) +
1383                                    sizeof(clli->cfg_instance) * 2 + 4;
1384                         OBD_ALLOC(inst_name, inst_len);
1385                         if (inst_name == NULL)
1386                                 GOTO(out, rc = -ENOMEM);
1387                         sprintf(inst_name, "%s-%p",
1388                                 lustre_cfg_string(lcfg, 0),
1389                                 clli->cfg_instance);
1390                         lustre_cfg_bufs_set_string(&bufs, 0, inst_name);
1391                         CDEBUG(D_CONFIG, "cmd %x, instance name: %s\n",
1392                                lcfg->lcfg_command, inst_name);
1393                 }
1394
1395                 /* we override the llog's uuid for clients, to insure they
1396                 are unique */
1397                 if (clli && clli->cfg_instance != NULL &&
1398                     lcfg->lcfg_command == LCFG_ATTACH) {
1399                         lustre_cfg_bufs_set_string(&bufs, 2,
1400                                                    clli->cfg_uuid.uuid);
1401                 }
1402                 /*
1403                  * sptlrpc config record, we expect 2 data segments:
1404                  *  [0]: fs_name/target_name,
1405                  *  [1]: rule string
1406                  * moving them to index [1] and [2], and insert MGC's
1407                  * obdname at index [0].
1408                  */
1409                 if (clli && clli->cfg_instance == NULL &&
1410                     lcfg->lcfg_command == LCFG_SPTLRPC_CONF) {
1411                         lustre_cfg_bufs_set(&bufs, 2, bufs.lcfg_buf[1],
1412                                             bufs.lcfg_buflen[1]);
1413                         lustre_cfg_bufs_set(&bufs, 1, bufs.lcfg_buf[0],
1414                                             bufs.lcfg_buflen[0]);
1415                         lustre_cfg_bufs_set_string(&bufs, 0,
1416                                                    clli->cfg_obdname);
1417                 }
1418
1419                 lcfg_new = lustre_cfg_new(lcfg->lcfg_command, &bufs);
1420
1421                 lcfg_new->lcfg_num   = lcfg->lcfg_num;
1422                 lcfg_new->lcfg_flags = lcfg->lcfg_flags;
1423
1424                 /* XXX Hack to try to remain binary compatible with
1425                  * pre-newconfig logs */
1426                 if (lcfg->lcfg_nal != 0 &&      /* pre-newconfig log? */
1427                     (lcfg->lcfg_nid >> 32) == 0) {
1428                         __u32 addr = (__u32)(lcfg->lcfg_nid & 0xffffffff);
1429
1430                         lcfg_new->lcfg_nid =
1431                                 LNET_MKNID(LNET_MKNET(lcfg->lcfg_nal, 0), addr);
1432                         CWARN("Converted pre-newconfig NAL %d NID %x to %s\n",
1433                               lcfg->lcfg_nal, addr,
1434                               libcfs_nid2str(lcfg_new->lcfg_nid));
1435                 } else {
1436                         lcfg_new->lcfg_nid = lcfg->lcfg_nid;
1437                 }
1438
1439                 lcfg_new->lcfg_nal = 0; /* illegal value for obsolete field */
1440
1441                 rc = class_process_config(lcfg_new);
1442                 lustre_cfg_free(lcfg_new);
1443
1444                 if (inst)
1445                         OBD_FREE(inst_name, inst_len);
1446                 break;
1447         }
1448         default:
1449                 CERROR("Unknown llog record type %#x encountered\n",
1450                        rec->lrh_type);
1451                 break;
1452         }
1453 out:
1454         if (rc) {
1455                 CERROR("Err %d on cfg command:\n", rc);
1456                 class_config_dump_handler(NULL, handle, rec, data);
1457         }
1458         RETURN(rc);
1459 }
1460
1461 int class_config_parse_llog(struct llog_ctxt *ctxt, char *name,
1462                             struct config_llog_instance *cfg)
1463 {
1464         struct llog_process_cat_data cd = {0, 0};
1465         struct llog_handle *llh;
1466         int rc, rc2;
1467         ENTRY;
1468
1469         CDEBUG(D_INFO, "looking up llog %s\n", name);
1470         rc = llog_create(NULL, ctxt, &llh, NULL, name);
1471         if (rc)
1472                 RETURN(rc);
1473
1474         rc = llog_init_handle(NULL, llh, LLOG_F_IS_PLAIN, NULL);
1475         if (rc)
1476                 GOTO(parse_out, rc);
1477
1478         /* continue processing from where we last stopped to end-of-log */
1479         if (cfg)
1480                 cd.lpcd_first_idx = cfg->cfg_last_idx;
1481         cd.lpcd_last_idx = 0;
1482
1483         rc = llog_process(NULL, llh, class_config_llog_handler, cfg, &cd);
1484
1485         CDEBUG(D_CONFIG, "Processed log %s gen %d-%d (rc=%d)\n", name,
1486                cd.lpcd_first_idx + 1, cd.lpcd_last_idx, rc);
1487
1488         if (cfg)
1489                 cfg->cfg_last_idx = cd.lpcd_last_idx;
1490
1491 parse_out:
1492         rc2 = llog_close(NULL, llh);
1493         if (rc == 0)
1494                 rc = rc2;
1495
1496         RETURN(rc);
1497 }
1498 EXPORT_SYMBOL(class_config_parse_llog);
1499
1500 int class_config_dump_handler(const struct lu_env *env,
1501                               struct llog_handle *handle,
1502                               struct llog_rec_hdr *rec, void *data)
1503 {
1504         int cfg_len = rec->lrh_len;
1505         char *cfg_buf = (char*) (rec + 1);
1506         char *outstr, *ptr, *end;
1507         int rc = 0;
1508         ENTRY;
1509
1510         OBD_ALLOC(outstr, 256);
1511         end = outstr + 256;
1512         ptr = outstr;
1513         if (!outstr) {
1514                 RETURN(-ENOMEM);
1515         }
1516         if (rec->lrh_type == OBD_CFG_REC) {
1517                 struct lustre_cfg *lcfg;
1518                 int i;
1519
1520                 rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
1521                 if (rc)
1522                         GOTO(out, rc);
1523                 lcfg = (struct lustre_cfg *)cfg_buf;
1524
1525                 ptr += snprintf(ptr, end-ptr, "cmd=%05x ",
1526                                 lcfg->lcfg_command);
1527                 if (lcfg->lcfg_flags) {
1528                         ptr += snprintf(ptr, end-ptr, "flags=%#08x ",
1529                                         lcfg->lcfg_flags);
1530                 }
1531                 if (lcfg->lcfg_num) {
1532                         ptr += snprintf(ptr, end-ptr, "num=%#08x ",
1533                                         lcfg->lcfg_num);
1534                 }
1535                 if (lcfg->lcfg_nid) {
1536                         ptr += snprintf(ptr, end-ptr, "nid=%s("LPX64")\n     ",
1537                                         libcfs_nid2str(lcfg->lcfg_nid),
1538                                         lcfg->lcfg_nid);
1539                 }
1540                 if (lcfg->lcfg_command == LCFG_MARKER) {
1541                         struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
1542                         ptr += snprintf(ptr, end-ptr, "marker=%d(%#x)%s '%s'",
1543                                         marker->cm_step, marker->cm_flags,
1544                                         marker->cm_tgtname, marker->cm_comment);
1545                 } else {
1546                         for (i = 0; i <  lcfg->lcfg_bufcount; i++) {
1547                                 ptr += snprintf(ptr, end-ptr, "%d:%s  ", i,
1548                                                 lustre_cfg_string(lcfg, i));
1549                         }
1550                 }
1551                 LCONSOLE(D_WARNING, "   %s\n", outstr);
1552         } else {
1553                 LCONSOLE(D_WARNING, "unhandled lrh_type: %#x\n", rec->lrh_type);
1554                 rc = -EINVAL;
1555         }
1556 out:
1557         OBD_FREE(outstr, 256);
1558         RETURN(rc);
1559 }
1560
1561 int class_config_dump_llog(struct llog_ctxt *ctxt, char *name,
1562                            struct config_llog_instance *cfg)
1563 {
1564         struct llog_handle *llh;
1565         int rc, rc2;
1566         ENTRY;
1567
1568         LCONSOLE_INFO("Dumping config log %s\n", name);
1569
1570         rc = llog_create(NULL, ctxt, &llh, NULL, name);
1571         if (rc)
1572                 RETURN(rc);
1573
1574         rc = llog_init_handle(NULL, llh, LLOG_F_IS_PLAIN, NULL);
1575         if (rc)
1576                 GOTO(parse_out, rc);
1577
1578         rc = llog_process(NULL, llh, class_config_dump_handler, cfg, NULL);
1579 parse_out:
1580         rc2 = llog_close(NULL, llh);
1581         if (rc == 0)
1582                 rc = rc2;
1583
1584         LCONSOLE_INFO("End config log %s\n", name);
1585         RETURN(rc);
1586
1587 }
1588 EXPORT_SYMBOL(class_config_dump_llog);
1589
1590 /** Call class_cleanup and class_detach.
1591  * "Manual" only in the sense that we're faking lcfg commands.
1592  */
1593 int class_manual_cleanup(struct obd_device *obd)
1594 {
1595         char                    flags[3] = "";
1596         struct lustre_cfg      *lcfg;
1597         struct lustre_cfg_bufs  bufs;
1598         int                     rc;
1599         ENTRY;
1600
1601         if (!obd) {
1602                 CERROR("empty cleanup\n");
1603                 RETURN(-EALREADY);
1604         }
1605
1606         if (obd->obd_force)
1607                 strcat(flags, "F");
1608         if (obd->obd_fail)
1609                 strcat(flags, "A");
1610
1611         CDEBUG(D_CONFIG, "Manual cleanup of %s (flags='%s')\n",
1612                obd->obd_name, flags);
1613
1614         lustre_cfg_bufs_reset(&bufs, obd->obd_name);
1615         lustre_cfg_bufs_set_string(&bufs, 1, flags);
1616         lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
1617         if (!lcfg)
1618                 RETURN(-ENOMEM);
1619
1620         rc = class_process_config(lcfg);
1621         if (rc) {
1622                 CERROR("cleanup failed %d: %s\n", rc, obd->obd_name);
1623                 GOTO(out, rc);
1624         }
1625
1626         /* the lcfg is almost the same for both ops */
1627         lcfg->lcfg_command = LCFG_DETACH;
1628         rc = class_process_config(lcfg);
1629         if (rc)
1630                 CERROR("detach failed %d: %s\n", rc, obd->obd_name);
1631 out:
1632         lustre_cfg_free(lcfg);
1633         RETURN(rc);
1634 }
1635 EXPORT_SYMBOL(class_manual_cleanup);
1636
1637 /*
1638  * uuid<->export lustre hash operations
1639  */
1640
1641 static unsigned
1642 uuid_hash(cfs_hash_t *hs, const void *key, unsigned mask)
1643 {
1644         return cfs_hash_djb2_hash(((struct obd_uuid *)key)->uuid,
1645                                   sizeof(((struct obd_uuid *)key)->uuid), mask);
1646 }
1647
1648 static void *
1649 uuid_key(cfs_hlist_node_t *hnode)
1650 {
1651         struct obd_export *exp;
1652
1653         exp = cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
1654
1655         return &exp->exp_client_uuid;
1656 }
1657
1658 /*
1659  * NOTE: It is impossible to find an export that is in failed
1660  *       state with this function
1661  */
1662 static int
1663 uuid_keycmp(const void *key, cfs_hlist_node_t *hnode)
1664 {
1665         struct obd_export *exp;
1666
1667         LASSERT(key);
1668         exp = cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
1669
1670         return obd_uuid_equals(key, &exp->exp_client_uuid) &&
1671                !exp->exp_failed;
1672 }
1673
1674 static void *
1675 uuid_export_object(cfs_hlist_node_t *hnode)
1676 {
1677         return cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
1678 }
1679
1680 static void
1681 uuid_export_get(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
1682 {
1683         struct obd_export *exp;
1684
1685         exp = cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
1686         class_export_get(exp);
1687 }
1688
1689 static void
1690 uuid_export_put_locked(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
1691 {
1692         struct obd_export *exp;
1693
1694         exp = cfs_hlist_entry(hnode, struct obd_export, exp_uuid_hash);
1695         class_export_put(exp);
1696 }
1697
1698 static cfs_hash_ops_t uuid_hash_ops = {
1699         .hs_hash        = uuid_hash,
1700         .hs_key         = uuid_key,
1701         .hs_keycmp      = uuid_keycmp,
1702         .hs_object      = uuid_export_object,
1703         .hs_get         = uuid_export_get,
1704         .hs_put_locked  = uuid_export_put_locked,
1705 };
1706
1707
1708 /*
1709  * nid<->export hash operations
1710  */
1711
1712 static unsigned
1713 nid_hash(cfs_hash_t *hs, const void *key, unsigned mask)
1714 {
1715         return cfs_hash_djb2_hash(key, sizeof(lnet_nid_t), mask);
1716 }
1717
1718 static void *
1719 nid_key(cfs_hlist_node_t *hnode)
1720 {
1721         struct obd_export *exp;
1722
1723         exp = cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
1724
1725         RETURN(&exp->exp_connection->c_peer.nid);
1726 }
1727
1728 /*
1729  * NOTE: It is impossible to find an export that is in failed
1730  *       state with this function
1731  */
1732 static int
1733 nid_kepcmp(const void *key, cfs_hlist_node_t *hnode)
1734 {
1735         struct obd_export *exp;
1736
1737         LASSERT(key);
1738         exp = cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
1739
1740         RETURN(exp->exp_connection->c_peer.nid == *(lnet_nid_t *)key &&
1741                !exp->exp_failed);
1742 }
1743
1744 static void *
1745 nid_export_object(cfs_hlist_node_t *hnode)
1746 {
1747         return cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
1748 }
1749
1750 static void
1751 nid_export_get(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
1752 {
1753         struct obd_export *exp;
1754
1755         exp = cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
1756         class_export_get(exp);
1757 }
1758
1759 static void
1760 nid_export_put_locked(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
1761 {
1762         struct obd_export *exp;
1763
1764         exp = cfs_hlist_entry(hnode, struct obd_export, exp_nid_hash);
1765         class_export_put(exp);
1766 }
1767
1768 static cfs_hash_ops_t nid_hash_ops = {
1769         .hs_hash        = nid_hash,
1770         .hs_key         = nid_key,
1771         .hs_keycmp      = nid_kepcmp,
1772         .hs_object      = nid_export_object,
1773         .hs_get         = nid_export_get,
1774         .hs_put_locked  = nid_export_put_locked,
1775 };
1776
1777
1778 /*
1779  * nid<->nidstats hash operations
1780  */
1781
1782 static void *
1783 nidstats_key(cfs_hlist_node_t *hnode)
1784 {
1785         struct nid_stat *ns;
1786
1787         ns = cfs_hlist_entry(hnode, struct nid_stat, nid_hash);
1788
1789         return &ns->nid;
1790 }
1791
1792 static int
1793 nidstats_keycmp(const void *key, cfs_hlist_node_t *hnode)
1794 {
1795         return *(lnet_nid_t *)nidstats_key(hnode) == *(lnet_nid_t *)key;
1796 }
1797
1798 static void *
1799 nidstats_object(cfs_hlist_node_t *hnode)
1800 {
1801         return cfs_hlist_entry(hnode, struct nid_stat, nid_hash);
1802 }
1803
1804 static void
1805 nidstats_get(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
1806 {
1807         struct nid_stat *ns;
1808
1809         ns = cfs_hlist_entry(hnode, struct nid_stat, nid_hash);
1810         nidstat_getref(ns);
1811 }
1812
1813 static void
1814 nidstats_put_locked(cfs_hash_t *hs, cfs_hlist_node_t *hnode)
1815 {
1816         struct nid_stat *ns;
1817
1818         ns = cfs_hlist_entry(hnode, struct nid_stat, nid_hash);
1819         nidstat_putref(ns);
1820 }
1821
1822 static cfs_hash_ops_t nid_stat_hash_ops = {
1823         .hs_hash        = nid_hash,
1824         .hs_key         = nidstats_key,
1825         .hs_keycmp      = nidstats_keycmp,
1826         .hs_object      = nidstats_object,
1827         .hs_get         = nidstats_get,
1828         .hs_put_locked  = nidstats_put_locked,
1829 };