Whamcloud - gitweb
land b_colibri_devel on HEAD:
[fs/lustre-release.git] / lustre / obdclass / obd_config.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2001-2006 Cluster File Systems, Inc.
5  *
6  *   This file is part of the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  *
24  * Config API
25  *
26  */
27
28 #define DEBUG_SUBSYSTEM S_CLASS
29 #ifdef __KERNEL__
30 #include <obd_class.h>
31 #include <linux/string.h>
32 #else
33 #include <liblustre.h>
34 #include <obd_class.h>
35 #include <obd.h>
36 #endif
37 #include <lustre_log.h>
38 #include <lprocfs_status.h>
39 #include <libcfs/list.h>
40 #include <lustre_param.h>
41 #include <class_hash.h>
42
43 extern struct lustre_hash_operations uuid_hash_operations;
44 extern struct lustre_hash_operations nid_hash_operations;
45
46 /*********** string parsing utils *********/
47
48 /* returns 0 if we find this key in the buffer, else 1 */
49 int class_find_param(char *buf, char *key, char **valp)
50 {
51         char *ptr;
52
53         if (!buf) 
54                 return 1;
55
56         if ((ptr = strstr(buf, key)) == NULL) 
57                 return 1;
58
59         if (valp) 
60                 *valp = ptr + strlen(key);
61         
62         return 0;
63 }
64
65 /* returns 0 if this is the first key in the buffer, else 1.
66    valp points to first char after key. */
67 int class_match_param(char *buf, char *key, char **valp)
68 {
69         if (!buf) 
70                 return 1;
71
72         if (memcmp(buf, key, strlen(key)) != 0) 
73                 return 1;
74
75         if (valp) 
76                 *valp = buf + strlen(key);
77         
78         return 0;
79 }
80
81 /* 0 is good nid, 
82    1 not found
83    < 0 error
84    endh is set to next separator */
85 int class_parse_nid(char *buf, lnet_nid_t *nid, char **endh)
86 {
87         char tmp, *endp;
88
89         if (!buf) 
90                 return 1;
91         while (*buf == ',' || *buf == ':') 
92                 buf++;
93         if (*buf == ' ' || *buf == '/' || *buf == '\0') 
94                 return 1;
95
96         /* nid separators or end of nids */
97         endp = strpbrk(buf, ",: /");
98         if (endp == NULL) 
99                 endp = buf + strlen(buf);
100
101         tmp = *endp;
102         *endp = '\0';
103         *nid = libcfs_str2nid(buf);
104         if (*nid == LNET_NID_ANY) {
105                 LCONSOLE_ERROR_MSG(0x159, "Can't parse NID '%s'\n", buf);
106                 *endp = tmp;
107                 return -EINVAL;
108         }
109         *endp = tmp;
110
111         if (endh) 
112                 *endh = endp;
113         CDEBUG(D_INFO, "Nid %s\n", libcfs_nid2str(*nid));
114         return 0;
115 }
116
117 EXPORT_SYMBOL(class_find_param);
118 EXPORT_SYMBOL(class_match_param);
119 EXPORT_SYMBOL(class_parse_nid);
120
121 /********************** class fns **********************/
122
123 /* Create a new device and set the type, name and uuid.  If
124  * successful, the new device can be accessed by either name or uuid.
125  */
126 int class_attach(struct lustre_cfg *lcfg)
127 {
128         struct obd_device *obd = NULL;
129         char *typename, *name, *uuid;
130         int rc, len;
131         ENTRY;
132
133         if (!LUSTRE_CFG_BUFLEN(lcfg, 1)) {
134                 CERROR("No type passed!\n");
135                 RETURN(-EINVAL);
136         }
137         typename = lustre_cfg_string(lcfg, 1);
138
139         if (!LUSTRE_CFG_BUFLEN(lcfg, 0)) {
140                 CERROR("No name passed!\n");
141                 RETURN(-EINVAL);
142         }
143         name = lustre_cfg_string(lcfg, 0);
144
145         if (!LUSTRE_CFG_BUFLEN(lcfg, 2)) {
146                 CERROR("No UUID passed!\n");
147                 RETURN(-EINVAL);
148         }
149         uuid = lustre_cfg_string(lcfg, 2);
150
151         CDEBUG(D_IOCTL, "attach type %s name: %s uuid: %s\n",
152                MKSTR(typename), MKSTR(name), MKSTR(uuid));
153
154         obd = class_newdev(typename, name);
155         if (IS_ERR(obd)) {
156                 /* Already exists or out of obds */
157                 rc = PTR_ERR(obd);
158                 obd = NULL;
159                 CERROR("Cannot create device %s of type %s : %d\n",
160                        name, typename, rc);
161                 GOTO(out, rc);
162         }
163         LASSERTF(obd != NULL, "Cannot get obd device %s of type %s\n",
164                  name, typename);
165         LASSERTF(obd->obd_magic == OBD_DEVICE_MAGIC, 
166                  "obd %p obd_magic %08X != %08X\n",
167                  obd, obd->obd_magic, OBD_DEVICE_MAGIC);
168         LASSERTF(strncmp(obd->obd_name, name, strlen(name)) == 0, "%p obd_name %s != %s\n",
169                  obd, obd->obd_name, name);
170
171         CFS_INIT_LIST_HEAD(&obd->obd_exports);
172         CFS_INIT_LIST_HEAD(&obd->obd_exports_timed);
173         spin_lock_init(&obd->obd_dev_lock);
174         sema_init(&obd->obd_dev_sem, 1);
175         sema_init(&obd->obd_proc_exp_sem, 1);
176         spin_lock_init(&obd->obd_osfs_lock);
177         /* obd->obd_osfs_age must be set to a value in the distant
178          * past to guarantee a fresh statfs is fetched on mount. */
179         obd->obd_osfs_age = cfs_time_shift_64(-1000);
180
181         /* XXX belongs in setup not attach  */
182         /* recovery data */
183         cfs_init_timer(&obd->obd_recovery_timer);
184         spin_lock_init(&obd->obd_processing_task_lock);
185         cfs_waitq_init(&obd->obd_next_transno_waitq);
186         cfs_waitq_init(&obd->obd_evict_inprogress_waitq);
187         CFS_INIT_LIST_HEAD(&obd->obd_req_replay_queue);
188         CFS_INIT_LIST_HEAD(&obd->obd_lock_replay_queue);
189         CFS_INIT_LIST_HEAD(&obd->obd_final_req_queue);
190
191         spin_lock_init(&obd->obd_uncommitted_replies_lock);
192         CFS_INIT_LIST_HEAD(&obd->obd_uncommitted_replies);
193
194         len = strlen(uuid);
195         if (len >= sizeof(obd->obd_uuid)) {
196                 CERROR("uuid must be < "LPSZ" bytes long\n",
197                        sizeof(obd->obd_uuid));
198                 GOTO(out, rc = -EINVAL);
199         }
200         memcpy(obd->obd_uuid.uuid, uuid, len);
201
202         /* do the attach */
203         if (OBP(obd, attach)) {
204                 rc = OBP(obd,attach)(obd, sizeof *lcfg, lcfg);
205                 if (rc)
206                         GOTO(out, rc = -EINVAL);
207         }
208
209         /* Detach drops this */
210         spin_lock(&obd->obd_dev_lock);
211         atomic_set(&obd->obd_refcount, 1);
212         spin_unlock(&obd->obd_dev_lock);
213
214         obd->obd_attached = 1;
215         CDEBUG(D_IOCTL, "OBD: dev %d attached type %s with refcount %d\n",
216                obd->obd_minor, typename, atomic_read(&obd->obd_refcount));
217         RETURN(0);
218  out:
219         if (obd != NULL) {
220                 class_release_dev(obd);
221         }
222         return rc;
223 }
224
225 int class_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
226 {
227         int err = 0;
228         struct obd_export *exp;
229         ENTRY;
230
231         LASSERT(obd != NULL);
232         LASSERTF(obd == class_num2obd(obd->obd_minor), "obd %p != obd_devs[%d] %p\n", 
233                  obd, obd->obd_minor, class_num2obd(obd->obd_minor));
234         LASSERTF(obd->obd_magic == OBD_DEVICE_MAGIC, "obd %p obd_magic %08x != %08x\n", 
235                  obd, obd->obd_magic, OBD_DEVICE_MAGIC);
236
237         /* have we attached a type to this device? */
238         if (!obd->obd_attached) {
239                 CERROR("Device %d not attached\n", obd->obd_minor);
240                 RETURN(-ENODEV);
241         }
242
243         if (obd->obd_set_up) {
244                 CERROR("Device %d already setup (type %s)\n",
245                        obd->obd_minor, obd->obd_type->typ_name);
246                 RETURN(-EEXIST);
247         }
248
249         /* is someone else setting us up right now? (attach inits spinlock) */
250         spin_lock(&obd->obd_dev_lock);
251         if (obd->obd_starting) {
252                 spin_unlock(&obd->obd_dev_lock);
253                 CERROR("Device %d setup in progress (type %s)\n",
254                        obd->obd_minor, obd->obd_type->typ_name);
255                 RETURN(-EEXIST);
256         }
257         /* just leave this on forever.  I can't use obd_set_up here because
258            other fns check that status, and we're not actually set up yet. */
259         obd->obd_starting = 1;
260         spin_unlock(&obd->obd_dev_lock);
261
262         /* create an uuid-export hash body */
263         err = lustre_hash_init(&obd->obd_uuid_hash_body, "UUID_HASH", 
264                                128, &uuid_hash_operations);
265         if (err) {
266                 GOTO(err_hash, err);
267         }
268
269         /* create a nid-export hash body */
270         err = lustre_hash_init(&obd->obd_nid_hash_body, "NID_HASH", 
271                                128, &nid_hash_operations);
272         if (err)
273                 GOTO(err_hash, err);
274
275         exp = class_new_export(obd, &obd->obd_uuid);
276         if (IS_ERR(exp))
277                 RETURN(PTR_ERR(exp));
278         obd->obd_self_export = exp;
279         list_del_init(&exp->exp_obd_chain_timed);
280         class_export_put(exp);
281
282         err = obd_setup(obd, lcfg);
283         if (err)
284                 GOTO(err_exp, err);
285
286         obd->obd_set_up = 1;
287         
288         spin_lock(&obd->obd_dev_lock);
289         /* cleanup drops this */
290         class_incref(obd);
291         spin_unlock(&obd->obd_dev_lock);
292
293         CDEBUG(D_IOCTL, "finished setup of obd %s (uuid %s)\n",
294                obd->obd_name, obd->obd_uuid.uuid);
295
296         RETURN(0);
297
298 err_exp:
299         class_unlink_export(obd->obd_self_export);
300         obd->obd_self_export = NULL;
301 err_hash:
302         lustre_hash_exit(&obd->obd_uuid_hash_body);
303         lustre_hash_exit(&obd->obd_nid_hash_body);
304         obd->obd_starting = 0;
305         CERROR("setup %s failed (%d)\n", obd->obd_name, err);
306         RETURN(err);
307 }
308
309 int class_detach(struct obd_device *obd, struct lustre_cfg *lcfg)
310 {
311         ENTRY;
312
313         if (obd->obd_set_up) {
314                 CERROR("OBD device %d still set up\n", obd->obd_minor);
315                 RETURN(-EBUSY);
316         }
317
318         spin_lock(&obd->obd_dev_lock);
319         if (!obd->obd_attached) {
320                 spin_unlock(&obd->obd_dev_lock);
321                 CERROR("OBD device %d not attached\n", obd->obd_minor);
322                 RETURN(-ENODEV);
323         }
324         obd->obd_attached = 0;
325         spin_unlock(&obd->obd_dev_lock);
326
327         CDEBUG(D_IOCTL, "detach on obd %s (uuid %s)\n",
328                obd->obd_name, obd->obd_uuid.uuid);
329
330         class_decref(obd);
331         
332         /* not strictly necessary, but cleans up eagerly */
333         obd_zombie_impexp_cull();
334         
335         RETURN(0);
336 }
337
338 static void dump_exports(struct obd_device *obd)
339 {
340         struct obd_export *exp, *n;
341
342         list_for_each_entry_safe(exp, n, &obd->obd_exports, exp_obd_chain) {
343                 struct ptlrpc_reply_state *rs;
344                 struct ptlrpc_reply_state *first_reply = NULL;
345                 int                        nreplies = 0;
346
347                 list_for_each_entry (rs, &exp->exp_outstanding_replies,
348                                      rs_exp_list) {
349                         if (nreplies == 0)
350                                 first_reply = rs;
351                         nreplies++;
352                 }
353
354                 CDEBUG(D_IOCTL, "%s: %p %s %s %d %d %d: %p %s\n",
355                        obd->obd_name, exp, exp->exp_client_uuid.uuid,
356                        obd_export_nid2str(exp),
357                        atomic_read(&exp->exp_refcount),
358                        exp->exp_failed, nreplies, first_reply,
359                        nreplies > 3 ? "..." : "");
360         }
361 }
362
363 int class_cleanup(struct obd_device *obd, struct lustre_cfg *lcfg)
364 {
365         int err = 0;
366         char *flag;
367         ENTRY;
368
369         OBD_RACE(OBD_FAIL_LDLM_RECOV_CLIENTS);
370
371         if (!obd->obd_set_up) {
372                 CERROR("Device %d not setup\n", obd->obd_minor);
373                 RETURN(-ENODEV);
374         }
375
376         spin_lock(&obd->obd_dev_lock);
377         if (obd->obd_stopping) {
378                 spin_unlock(&obd->obd_dev_lock);
379                 CERROR("OBD %d already stopping\n", obd->obd_minor);
380                 RETURN(-ENODEV);
381         }
382         /* Leave this on forever */
383         obd->obd_stopping = 1;
384         spin_unlock(&obd->obd_dev_lock);
385
386         if (lcfg->lcfg_bufcount >= 2 && LUSTRE_CFG_BUFLEN(lcfg, 1) > 0) {
387                 for (flag = lustre_cfg_string(lcfg, 1); *flag != 0; flag++)
388                         switch (*flag) {
389                         case 'F':
390                                 obd->obd_force = 1;
391                                 break;
392                         case 'A':
393                                 LCONSOLE_WARN("Failing over %s\n",
394                                               obd->obd_name);
395                                 obd->obd_fail = 1;
396                                 obd->obd_no_transno = 1;
397                                 obd->obd_no_recov = 1;
398                                 /* Set the obd readonly if we can */
399                                 if (OBP(obd, iocontrol))
400                                         obd_iocontrol(OBD_IOC_SET_READONLY,
401                                                       obd->obd_self_export,
402                                                       0, NULL, NULL);
403                                 break;
404                         default:
405                                 CERROR("unrecognised flag '%c'\n",
406                                        *flag);
407                         }
408         }
409
410         /* The three references that should be remaining are the
411          * obd_self_export and the attach and setup references. */
412         if (atomic_read(&obd->obd_refcount) > 3) {
413 #if 0           /* We should never fail to cleanup with mountconf */ 
414                 if (!(obd->obd_fail || obd->obd_force)) {
415                         CERROR("OBD %s is still busy with %d references\n"
416                                "You should stop active file system users,"
417                                " or use the --force option to cleanup.\n",
418                                obd->obd_name, atomic_read(&obd->obd_refcount));
419                         dump_exports(obd);
420                         /* Allow a failed cleanup to try again. */
421                         obd->obd_stopping = 0;
422                 }
423 #endif
424                 /* refcounf - 3 might be the number of real exports 
425                    (excluding self export). But class_incref is called
426                    by other things as well, so don't count on it. */
427                 CDEBUG(D_IOCTL, "%s: forcing exports to disconnect: %d\n",
428                        obd->obd_name, atomic_read(&obd->obd_refcount) - 3);
429                 dump_exports(obd);
430                 class_disconnect_exports(obd);
431         }
432         LASSERT(obd->obd_self_export);
433
434         /* destroy an uuid-export hash body */
435         lustre_hash_exit(&obd->obd_uuid_hash_body);
436
437         /* destroy a nid-export hash body */
438         lustre_hash_exit(&obd->obd_nid_hash_body);
439
440         /* Precleanup stage 1, we must make sure all exports (other than the
441            self-export) get destroyed. */
442         err = obd_precleanup(obd, OBD_CLEANUP_EXPORTS);
443         if (err)
444                 CERROR("Precleanup %s returned %d\n",
445                        obd->obd_name, err);
446
447         class_decref(obd);
448         obd->obd_set_up = 0;
449         RETURN(0);
450 }
451
452 struct obd_device *class_incref(struct obd_device *obd)
453 {
454         atomic_inc(&obd->obd_refcount);
455         CDEBUG(D_INFO, "incref %s (%p) now %d\n", obd->obd_name, obd,
456                atomic_read(&obd->obd_refcount));
457
458         return obd;
459 }
460
461 void class_decref(struct obd_device *obd)
462 {
463         int err;
464         int refs;
465
466         spin_lock(&obd->obd_dev_lock);
467         atomic_dec(&obd->obd_refcount);
468         refs = atomic_read(&obd->obd_refcount);
469         spin_unlock(&obd->obd_dev_lock);
470
471         CDEBUG(D_INFO, "Decref %s (%p) now %d\n", obd->obd_name, obd, refs);
472
473         if ((refs == 1) && obd->obd_stopping) {
474                 /* All exports (other than the self-export) have been
475                    destroyed; there should be no more in-progress ops
476                    by this point.*/
477                 /* if we're not stopping, we didn't finish setup */
478                 /* Precleanup stage 2,  do other type-specific
479                    cleanup requiring the self-export. */
480                 err = obd_precleanup(obd, OBD_CLEANUP_SELF_EXP);
481                 if (err)
482                         CERROR("Precleanup %s returned %d\n",
483                                obd->obd_name, err);
484                 
485                 spin_lock(&obd->obd_self_export->exp_lock);
486                 obd->obd_self_export->exp_flags |=
487                         (obd->obd_fail ? OBD_OPT_FAILOVER : 0) |
488                         (obd->obd_force ? OBD_OPT_FORCE : 0);
489                 spin_unlock(&obd->obd_self_export->exp_lock);
490
491                 /* note that we'll recurse into class_decref again */
492                 class_unlink_export(obd->obd_self_export);
493                 return;
494         }
495
496         if (refs == 0) {
497                 CDEBUG(D_CONFIG, "finishing cleanup of obd %s (%s)\n",
498                        obd->obd_name, obd->obd_uuid.uuid);
499                 LASSERT(!obd->obd_attached);
500                 if (obd->obd_stopping) {
501                         /* If we're not stopping, we were never set up */
502                         err = obd_cleanup(obd);
503                         if (err)
504                                 CERROR("Cleanup %s returned %d\n",
505                                        obd->obd_name, err);
506                 }
507                 if (OBP(obd, detach)) {
508                         err = OBP(obd,detach)(obd);
509                         if (err)
510                                 CERROR("Detach returned %d\n", err);
511                 }
512                 class_release_dev(obd);
513         }
514 }
515
516 int class_add_conn(struct obd_device *obd, struct lustre_cfg *lcfg)
517 {
518         struct obd_import *imp;
519         struct obd_uuid uuid;
520         int rc;
521         ENTRY;
522
523         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1 ||
524             LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(struct obd_uuid)) {
525                 CERROR("invalid conn_uuid\n");
526                 RETURN(-EINVAL);
527         }
528         if (strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) &&
529             strcmp(obd->obd_type->typ_name, LUSTRE_OSC_NAME) &&
530             strcmp(obd->obd_type->typ_name, LUSTRE_MGC_NAME)) {
531                 CERROR("can't add connection on non-client dev\n");
532                 RETURN(-EINVAL);
533         }
534
535         imp = obd->u.cli.cl_import;
536         if (!imp) {
537                 CERROR("try to add conn on immature client dev\n");
538                 RETURN(-EINVAL);
539         }
540
541         obd_str2uuid(&uuid, lustre_cfg_string(lcfg, 1));
542         rc = obd_add_conn(imp, &uuid, lcfg->lcfg_num);
543
544         RETURN(rc);
545 }
546
547 int class_del_conn(struct obd_device *obd, struct lustre_cfg *lcfg)
548 {
549         struct obd_import *imp;
550         struct obd_uuid uuid;
551         int rc;
552         ENTRY;
553
554         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1 ||
555             LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(struct obd_uuid)) {
556                 CERROR("invalid conn_uuid\n");
557                 RETURN(-EINVAL);
558         }
559         if (strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) &&
560             strcmp(obd->obd_type->typ_name, LUSTRE_OSC_NAME)) {
561                 CERROR("can't del connection on non-client dev\n");
562                 RETURN(-EINVAL);
563         }
564
565         imp = obd->u.cli.cl_import;
566         if (!imp) {
567                 CERROR("try to del conn on immature client dev\n");
568                 RETURN(-EINVAL);
569         }
570
571         obd_str2uuid(&uuid, lustre_cfg_string(lcfg, 1));
572         rc = obd_del_conn(imp, &uuid);
573
574         RETURN(rc);
575 }
576
577 CFS_LIST_HEAD(lustre_profile_list);
578
579 struct lustre_profile *class_get_profile(const char * prof)
580 {
581         struct lustre_profile *lprof;
582
583         ENTRY;
584         list_for_each_entry(lprof, &lustre_profile_list, lp_list) {
585                 if (!strcmp(lprof->lp_profile, prof)) {
586                         RETURN(lprof);
587                 }
588         }
589         RETURN(NULL);
590 }
591
592 int class_add_profile(int proflen, char *prof, int osclen, char *osc,
593                       int mdclen, char *mdc)
594 {
595         struct lustre_profile *lprof;
596         int err = 0;
597         ENTRY;
598
599         CDEBUG(D_CONFIG, "Add profile %s\n", prof);
600
601         OBD_ALLOC(lprof, sizeof(*lprof));
602         if (lprof == NULL)
603                 RETURN(-ENOMEM);
604         CFS_INIT_LIST_HEAD(&lprof->lp_list);
605
606         LASSERT(proflen == (strlen(prof) + 1));
607         OBD_ALLOC(lprof->lp_profile, proflen);
608         if (lprof->lp_profile == NULL)
609                 GOTO(out, err = -ENOMEM);
610         memcpy(lprof->lp_profile, prof, proflen);
611
612         LASSERT(osclen == (strlen(osc) + 1));
613         OBD_ALLOC(lprof->lp_dt, osclen);
614         if (lprof->lp_dt == NULL)
615                 GOTO(out, err = -ENOMEM);
616         memcpy(lprof->lp_dt, osc, osclen);
617
618         if (mdclen > 0) {
619                 LASSERT(mdclen == (strlen(mdc) + 1));
620                 OBD_ALLOC(lprof->lp_md, mdclen);
621                 if (lprof->lp_md == NULL)
622                         GOTO(out, err = -ENOMEM);
623                 memcpy(lprof->lp_md, mdc, mdclen);
624         }
625
626         list_add(&lprof->lp_list, &lustre_profile_list);
627         RETURN(err);
628
629 out:
630         if (lprof->lp_md)
631                 OBD_FREE(lprof->lp_md, mdclen);
632         if (lprof->lp_dt)
633                 OBD_FREE(lprof->lp_dt, osclen);
634         if (lprof->lp_profile)
635                 OBD_FREE(lprof->lp_profile, proflen);
636         OBD_FREE(lprof, sizeof(*lprof));        
637         RETURN(err);
638 }
639
640 void class_del_profile(const char *prof)
641 {
642         struct lustre_profile *lprof;
643         ENTRY;
644
645         CDEBUG(D_CONFIG, "Del profile %s\n", prof);
646
647         lprof = class_get_profile(prof);
648         if (lprof) {
649                 list_del(&lprof->lp_list);
650                 OBD_FREE(lprof->lp_profile, strlen(lprof->lp_profile) + 1);
651                 OBD_FREE(lprof->lp_dt, strlen(lprof->lp_dt) + 1);
652                 if (lprof->lp_md)
653                         OBD_FREE(lprof->lp_md, strlen(lprof->lp_md) + 1);
654                 OBD_FREE(lprof, sizeof *lprof);
655         }
656         EXIT;
657 }
658
659 /* COMPAT_146 */
660 void class_del_profiles(void)
661 {
662         struct lustre_profile *lprof, *n;
663         ENTRY;
664
665         list_for_each_entry_safe(lprof, n, &lustre_profile_list, lp_list) {
666                 list_del(&lprof->lp_list);
667                 OBD_FREE(lprof->lp_profile, strlen(lprof->lp_profile) + 1);
668                 OBD_FREE(lprof->lp_dt, strlen(lprof->lp_dt) + 1);
669                 if (lprof->lp_md)
670                         OBD_FREE(lprof->lp_md, strlen(lprof->lp_md) + 1);
671                 OBD_FREE(lprof, sizeof *lprof);
672         }
673         EXIT;
674 }
675
676 /* We can't call ll_process_config directly because it lives in a module that
677    must be loaded after this one. */
678 static int (*client_process_config)(struct lustre_cfg *lcfg) = NULL;
679
680 void lustre_register_client_process_config(int (*cpc)(struct lustre_cfg *lcfg))
681 {
682         client_process_config = cpc;
683 }
684 EXPORT_SYMBOL(lustre_register_client_process_config);
685
686 int class_process_config(struct lustre_cfg *lcfg)
687 {
688         struct obd_device *obd;
689         int err;
690
691         LASSERT(lcfg && !IS_ERR(lcfg));
692         CDEBUG(D_IOCTL, "processing cmd: %x\n", lcfg->lcfg_command);
693
694         /* Commands that don't need a device */
695         switch(lcfg->lcfg_command) {
696         case LCFG_ATTACH: {
697                 err = class_attach(lcfg);
698                 GOTO(out, err);
699         }
700         case LCFG_ADD_UUID: {
701                 CDEBUG(D_IOCTL, "adding mapping from uuid %s to nid "LPX64
702                        " (%s)\n", lustre_cfg_string(lcfg, 1),
703                        lcfg->lcfg_nid, libcfs_nid2str(lcfg->lcfg_nid));
704
705                 err = class_add_uuid(lustre_cfg_string(lcfg, 1), lcfg->lcfg_nid);
706                 GOTO(out, err);
707         }
708         case LCFG_DEL_UUID: {
709                 CDEBUG(D_IOCTL, "removing mappings for uuid %s\n",
710                        (lcfg->lcfg_bufcount < 2 || LUSTRE_CFG_BUFLEN(lcfg, 1) == 0)
711                        ? "<all uuids>" : lustre_cfg_string(lcfg, 1));
712
713                 err = class_del_uuid(lustre_cfg_string(lcfg, 1));
714                 GOTO(out, err);
715         }
716         case LCFG_MOUNTOPT: {
717                 CDEBUG(D_IOCTL, "mountopt: profile %s osc %s mdc %s\n",
718                        lustre_cfg_string(lcfg, 1),
719                        lustre_cfg_string(lcfg, 2),
720                        lustre_cfg_string(lcfg, 3));
721                 /* set these mount options somewhere, so ll_fill_super
722                  * can find them. */
723                 err = class_add_profile(LUSTRE_CFG_BUFLEN(lcfg, 1),
724                                         lustre_cfg_string(lcfg, 1),
725                                         LUSTRE_CFG_BUFLEN(lcfg, 2),
726                                         lustre_cfg_string(lcfg, 2),
727                                         LUSTRE_CFG_BUFLEN(lcfg, 3),
728                                         lustre_cfg_string(lcfg, 3));
729                 GOTO(out, err);
730         }
731         case LCFG_DEL_MOUNTOPT: {
732                 CDEBUG(D_IOCTL, "mountopt: profile %s\n",
733                        lustre_cfg_string(lcfg, 1));
734                 class_del_profile(lustre_cfg_string(lcfg, 1));
735                 GOTO(out, err = 0);
736         }
737         case LCFG_SET_TIMEOUT: {
738                 CDEBUG(D_IOCTL, "changing lustre timeout from %d to %d\n",
739                        obd_timeout, lcfg->lcfg_num);
740                 obd_timeout = max(lcfg->lcfg_num, 1U);
741                 obd_health_check_timeout = HEALTH_CHECK_TIMEOUT;
742                 GOTO(out, err = 0);
743         }
744         case LCFG_SET_UPCALL: {
745                 LCONSOLE_ERROR_MSG(0x15a, "recovery upcall is deprecated\n");
746                 /* COMPAT_146 Don't fail on old configs */
747                 GOTO(out, err = 0);
748         }
749         case LCFG_MARKER: {
750                 struct cfg_marker *marker;
751                 marker = lustre_cfg_buf(lcfg, 1);
752                 CDEBUG(D_IOCTL, "marker %d (%#x) %.16s %s\n", marker->cm_step,
753                        marker->cm_flags, marker->cm_tgtname, marker->cm_comment);
754                 GOTO(out, err = 0);
755         }
756         case LCFG_PARAM: {
757                 /* llite has no obd */
758                 if ((class_match_param(lustre_cfg_string(lcfg, 1), 
759                                        PARAM_LLITE, 0) == 0) &&
760                     client_process_config) {
761                         err = (*client_process_config)(lcfg);
762                         GOTO(out, err);
763                 }
764                 /* Fall through */
765                 break;
766         }
767         }
768
769         /* Commands that require a device */
770         obd = class_name2obd(lustre_cfg_string(lcfg, 0));
771         if (obd == NULL) {
772                 if (!LUSTRE_CFG_BUFLEN(lcfg, 0))
773                         CERROR("this lcfg command requires a device name\n");
774                 else
775                         CERROR("no device for: %s\n",
776                                lustre_cfg_string(lcfg, 0));
777
778                 GOTO(out, err = -EINVAL);
779         }
780
781         switch(lcfg->lcfg_command) {
782         case LCFG_SETUP: {
783                 err = class_setup(obd, lcfg);
784                 GOTO(out, err);
785         }
786         case LCFG_DETACH: {
787                 err = class_detach(obd, lcfg);
788                 GOTO(out, err = 0);
789         }
790         case LCFG_CLEANUP: {
791                 err = class_cleanup(obd, lcfg);
792                 GOTO(out, err = 0);
793         }
794         case LCFG_ADD_CONN: {
795                 err = class_add_conn(obd, lcfg);
796                 GOTO(out, err = 0);
797         }
798         case LCFG_DEL_CONN: {
799                 err = class_del_conn(obd, lcfg);
800                 GOTO(out, err = 0);
801         }
802         default: {
803                 err = obd_process_config(obd, sizeof(*lcfg), lcfg);
804                 GOTO(out, err);
805
806         }
807         }
808 out:
809         if ((err < 0) && !(lcfg->lcfg_command & LCFG_REQUIRED)) {
810                 CWARN("Ignoring error %d on optional command %#x\n", err, 
811                       lcfg->lcfg_command);
812                 err = 0;
813         }
814         return err;
815 }
816
817 int class_process_proc_param(char *prefix, struct lprocfs_vars *lvars, 
818                              struct lustre_cfg *lcfg, void *data)
819 {
820 #ifdef __KERNEL__
821         struct lprocfs_vars *var;
822         char *key, *sval;
823         int i, keylen, vallen;
824         int matched = 0, j = 0;
825         int rc = 0;
826         ENTRY;
827
828         if (lcfg->lcfg_command != LCFG_PARAM) {
829                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
830                 RETURN(-EINVAL);
831         }
832
833         /* e.g. tunefs.lustre --param mdt.group_upcall=foo /r/tmp/lustre-mdt
834            or   lctl conf_param lustre-MDT0000.mdt.group_upcall=bar
835            or   lctl conf_param lustre-OST0000.osc.max_dirty_mb=36 */
836         for (i = 1; i < lcfg->lcfg_bufcount; i++) {
837                 key = lustre_cfg_buf(lcfg, i);
838                 /* Strip off prefix */
839                 class_match_param(key, prefix, &key);
840                 sval = strchr(key, '=');
841                 if (!sval || (*(sval + 1) == 0)) {
842                         CERROR("Can't parse param %s\n", key);
843                         rc = -EINVAL;
844                         /* continue parsing other params */
845                         continue;
846                 }
847                 keylen = sval - key;
848                 sval++;
849                 vallen = strlen(sval);
850                 matched = 0;
851                 j = 0;
852                 /* Search proc entries */
853                 while (lvars[j].name) {
854                         var = &lvars[j];
855                         if (class_match_param(key, (char *)var->name, 0) == 0 &&
856                             keylen == strlen(var->name)) {
857                                 matched++;
858                                 rc = -EROFS;
859                                 if (var->write_fptr) {
860                                         mm_segment_t oldfs;
861                                         oldfs = get_fs();
862                                         set_fs(KERNEL_DS);
863                                         rc = (var->write_fptr)(NULL, sval,
864                                                                vallen, data);
865                                         set_fs(oldfs);
866                                 }
867                                 if (rc < 0) 
868                                         CERROR("writing proc entry %s err %d\n", 
869                                                var->name, rc);
870                                 break;
871                         }
872                         j++;
873                 }    
874                 if (!matched) {
875                         CERROR("%s: unknown param %s\n",
876                                (char *)lustre_cfg_string(lcfg, 0), key);
877                         rc = -EINVAL;
878                         /* continue parsing other params */
879                 } else {
880                         LCONSOLE_INFO("%s.%.*s: set parameter %.*s=%s\n", 
881                                       (char *)lustre_cfg_string(lcfg, 0),
882                                       (int)strlen(prefix) - 1, prefix,
883                                       (int)(sval - key - 1), key, sval);
884                 }
885         }
886         
887         if (rc > 0) 
888                 rc = 0;
889         RETURN(rc);
890 #else
891         CDEBUG(D_CONFIG, "liblustre can't process params.\n");
892         /* Don't throw config error */
893         RETURN(0);
894 #endif
895 }
896
897 int class_config_dump_handler(struct llog_handle * handle,
898                               struct llog_rec_hdr *rec, void *data);
899
900 #ifdef __KERNEL__
901 extern int lustre_check_exclusion(struct super_block *sb, char *svname);
902 #else
903 #define lustre_check_exclusion(a,b)  0
904 #endif
905
906 static int class_config_llog_handler(struct llog_handle * handle,
907                                      struct llog_rec_hdr *rec, void *data)
908 {
909         struct config_llog_instance *clli = data;
910         int cfg_len = rec->lrh_len;
911         char *cfg_buf = (char*) (rec + 1);
912         int rc = 0;
913         ENTRY;
914
915         //class_config_dump_handler(handle, rec, data);
916
917         switch (rec->lrh_type) {
918         case OBD_CFG_REC: {
919                 struct lustre_cfg *lcfg, *lcfg_new;
920                 struct lustre_cfg_bufs bufs;
921                 char *inst_name = NULL;
922                 int inst_len = 0;
923                 int inst = 0;
924
925                 lcfg = (struct lustre_cfg *)cfg_buf;
926                 if (lcfg->lcfg_version == __swab32(LUSTRE_CFG_VERSION))
927                         lustre_swab_lustre_cfg(lcfg);
928
929                 rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
930                 if (rc)
931                         GOTO(out, rc);
932
933                 /* Figure out config state info */
934                 if (lcfg->lcfg_command == LCFG_MARKER) {
935                         struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
936                         CDEBUG(D_CONFIG, "Marker, inst_flg=%#x mark_flg=%#x\n",
937                                clli->cfg_flags, marker->cm_flags);
938                         if (marker->cm_flags & CM_START) {
939                                 /* all previous flags off */
940                                 clli->cfg_flags = CFG_F_MARKER;
941                                 if (marker->cm_flags & CM_SKIP) { 
942                                         clli->cfg_flags |= CFG_F_SKIP;
943                                         CDEBUG(D_CONFIG, "SKIP #%d\n",
944                                                marker->cm_step);
945                                 } else if ((marker->cm_flags & CM_EXCLUDE) ||
946                                            lustre_check_exclusion(clli->cfg_sb, 
947                                                           marker->cm_tgtname)) {
948                                         clli->cfg_flags |= CFG_F_EXCLUDE;
949                                         CDEBUG(D_CONFIG, "EXCLUDE %d\n",
950                                                marker->cm_step);
951                                 }
952                         } else if (marker->cm_flags & CM_END) {
953                                 clli->cfg_flags = 0;
954                         }
955                 }
956                 /* A config command without a start marker before it is 
957                    illegal (post 146) */
958                 if (!(clli->cfg_flags & CFG_F_COMPAT146) &&
959                     !(clli->cfg_flags & CFG_F_MARKER) && 
960                     (lcfg->lcfg_command != LCFG_MARKER)) {
961                         CWARN("Config not inside markers, ignoring! "
962                               "(inst: %s, uuid: %s, flags: %#x)\n",
963                               clli->cfg_instance ? clli->cfg_instance : "<null>",
964                               clli->cfg_uuid.uuid, clli->cfg_flags);
965                         clli->cfg_flags |= CFG_F_SKIP;
966                 }
967                 if (clli->cfg_flags & CFG_F_SKIP) {
968                         CDEBUG(D_CONFIG, "skipping %#x\n",
969                                clli->cfg_flags);
970                         rc = 0;
971                         /* No processing! */
972                         break;
973                 }
974
975                 if ((clli->cfg_flags & CFG_F_EXCLUDE) && 
976                     (lcfg->lcfg_command == LCFG_LOV_ADD_OBD))
977                         /* Add inactive instead */
978                         lcfg->lcfg_command = LCFG_LOV_ADD_INA;
979
980                 lustre_cfg_bufs_init(&bufs, lcfg);
981
982                 if (clli && clli->cfg_instance && 
983                     LUSTRE_CFG_BUFLEN(lcfg, 0) > 0){
984                         inst = 1;
985                         inst_len = LUSTRE_CFG_BUFLEN(lcfg, 0) +
986                                 strlen(clli->cfg_instance) + 1;
987                         OBD_ALLOC(inst_name, inst_len);
988                         if (inst_name == NULL)
989                                 GOTO(out, rc = -ENOMEM);
990                         sprintf(inst_name, "%s-%s",
991                                 lustre_cfg_string(lcfg, 0),
992                                 clli->cfg_instance);
993                         lustre_cfg_bufs_set_string(&bufs, 0, inst_name);
994                         CDEBUG(D_CONFIG, "cmd %x, instance name: %s\n",
995                                lcfg->lcfg_command, inst_name);
996                 }
997
998                 /* we override the llog's uuid for clients, to insure they
999                 are unique */
1000                 if (clli && clli->cfg_instance && 
1001                     lcfg->lcfg_command == LCFG_ATTACH) {
1002                         lustre_cfg_bufs_set_string(&bufs, 2,
1003                                                    clli->cfg_uuid.uuid);
1004                 }
1005
1006                 lcfg_new = lustre_cfg_new(lcfg->lcfg_command, &bufs);
1007
1008                 lcfg_new->lcfg_num   = lcfg->lcfg_num;
1009                 lcfg_new->lcfg_flags = lcfg->lcfg_flags;
1010
1011                 /* XXX Hack to try to remain binary compatible with
1012                  * pre-newconfig logs */
1013                 if (lcfg->lcfg_nal != 0 &&      /* pre-newconfig log? */
1014                     (lcfg->lcfg_nid >> 32) == 0) {
1015                         __u32 addr = (__u32)(lcfg->lcfg_nid & 0xffffffff);
1016
1017                         lcfg_new->lcfg_nid =
1018                                 LNET_MKNID(LNET_MKNET(lcfg->lcfg_nal, 0), addr);
1019                         CWARN("Converted pre-newconfig NAL %d NID %x to %s\n",
1020                               lcfg->lcfg_nal, addr,
1021                               libcfs_nid2str(lcfg_new->lcfg_nid));
1022                 } else {
1023                         lcfg_new->lcfg_nid = lcfg->lcfg_nid;
1024                 }
1025
1026                 lcfg_new->lcfg_nal = 0; /* illegal value for obsolete field */
1027
1028                 rc = class_process_config(lcfg_new);
1029                 lustre_cfg_free(lcfg_new);
1030
1031                 if (inst)
1032                         OBD_FREE(inst_name, inst_len);
1033                 break;
1034         }
1035         default:
1036                 CERROR("Unknown llog record type %#x encountered\n",
1037                        rec->lrh_type);
1038                 break;
1039         }
1040 out:
1041         if (rc) {
1042                 CERROR("Err %d on cfg command:\n", rc);
1043                 class_config_dump_handler(handle, rec, data);
1044         }
1045         RETURN(rc);
1046 }
1047
1048 int class_config_parse_llog(struct llog_ctxt *ctxt, char *name,
1049                             struct config_llog_instance *cfg)
1050 {
1051         struct llog_process_cat_data cd = {0, 0};
1052         struct llog_handle *llh;
1053         int rc, rc2;
1054         ENTRY;
1055
1056         CDEBUG(D_INFO, "looking up llog %s\n", name);
1057         rc = llog_create(ctxt, &llh, NULL, name);
1058         if (rc)
1059                 RETURN(rc);
1060
1061         rc = llog_init_handle(llh, LLOG_F_IS_PLAIN, NULL);
1062         if (rc)
1063                 GOTO(parse_out, rc);
1064
1065         /* continue processing from where we last stopped to end-of-log */
1066         if (cfg)
1067                 cd.first_idx = cfg->cfg_last_idx;
1068         cd.last_idx = 0;
1069
1070         rc = llog_process(llh, class_config_llog_handler, cfg, &cd);
1071
1072         CDEBUG(D_CONFIG, "Processed log %s gen %d-%d (rc=%d)\n", name, 
1073                cd.first_idx + 1, cd.last_idx, rc);
1074
1075         if (cfg)
1076                 cfg->cfg_last_idx = cd.last_idx;
1077
1078 parse_out:
1079         rc2 = llog_close(llh);
1080         if (rc == 0)
1081                 rc = rc2;
1082
1083         RETURN(rc);
1084 }
1085
1086 int class_config_dump_handler(struct llog_handle * handle,
1087                               struct llog_rec_hdr *rec, void *data)
1088 {
1089         int cfg_len = rec->lrh_len;
1090         char *cfg_buf = (char*) (rec + 1);
1091         char *outstr, *ptr, *end;
1092         int rc = 0;
1093         ENTRY;
1094
1095         OBD_ALLOC(outstr, 256);
1096         end = outstr + 256;
1097         ptr = outstr;
1098         if (!outstr) {
1099                 RETURN(-ENOMEM);
1100         }
1101         if (rec->lrh_type == OBD_CFG_REC) {
1102                 struct lustre_cfg *lcfg;
1103                 int i;
1104
1105                 rc = lustre_cfg_sanity_check(cfg_buf, cfg_len);
1106                 if (rc)
1107                         GOTO(out, rc);
1108                 lcfg = (struct lustre_cfg *)cfg_buf;
1109
1110                 ptr += snprintf(ptr, end-ptr, "cmd=%05x ",
1111                                 lcfg->lcfg_command);
1112                 if (lcfg->lcfg_flags) {
1113                         ptr += snprintf(ptr, end-ptr, "flags=%#08x ",
1114                                         lcfg->lcfg_flags);
1115                 }
1116                 if (lcfg->lcfg_num) {
1117                         ptr += snprintf(ptr, end-ptr, "num=%#08x ",
1118                                         lcfg->lcfg_num);
1119                 }
1120                 if (lcfg->lcfg_nid) {
1121                         ptr += snprintf(ptr, end-ptr, "nid=%s("LPX64")\n     ",
1122                                         libcfs_nid2str(lcfg->lcfg_nid),
1123                                         lcfg->lcfg_nid);
1124                 }
1125                 if (lcfg->lcfg_command == LCFG_MARKER) {
1126                         struct cfg_marker *marker = lustre_cfg_buf(lcfg, 1);
1127                         ptr += snprintf(ptr, end-ptr, "marker=%d(%#x)%s '%s'",
1128                                         marker->cm_step, marker->cm_flags,
1129                                         marker->cm_tgtname, marker->cm_comment);
1130                 } else {
1131                         for (i = 0; i <  lcfg->lcfg_bufcount; i++) {
1132                                 ptr += snprintf(ptr, end-ptr, "%d:%s  ", i,
1133                                                 lustre_cfg_string(lcfg, i));
1134                         }
1135                 }
1136                 LCONSOLE(D_WARNING, "   %s\n", outstr);
1137         } else {
1138                 LCONSOLE(D_WARNING, "unhandled lrh_type: %#x\n", rec->lrh_type);
1139                 rc = -EINVAL;
1140         }
1141 out:
1142         OBD_FREE(outstr, 256);
1143         RETURN(rc);
1144 }
1145
1146 int class_config_dump_llog(struct llog_ctxt *ctxt, char *name,
1147                            struct config_llog_instance *cfg)
1148 {
1149         struct llog_handle *llh;
1150         int rc, rc2;
1151         ENTRY;
1152
1153         LCONSOLE_INFO("Dumping config log %s\n", name);
1154
1155         rc = llog_create(ctxt, &llh, NULL, name);
1156         if (rc)
1157                 RETURN(rc);
1158
1159         rc = llog_init_handle(llh, LLOG_F_IS_PLAIN, NULL);
1160         if (rc)
1161                 GOTO(parse_out, rc);
1162
1163         rc = llog_process(llh, class_config_dump_handler, cfg, NULL);
1164 parse_out:
1165         rc2 = llog_close(llh);
1166         if (rc == 0)
1167                 rc = rc2;
1168
1169         LCONSOLE_INFO("End config log %s\n", name);
1170         RETURN(rc);
1171
1172 }
1173
1174 /* Cleanup and detach */
1175 int class_manual_cleanup(struct obd_device *obd)
1176 {
1177         struct lustre_cfg *lcfg;
1178         struct lustre_cfg_bufs bufs;
1179         int rc;
1180         char flags[3]="";
1181         ENTRY;
1182
1183         if (!obd) {
1184                 CERROR("empty cleanup\n");
1185                 RETURN(-EALREADY);
1186         }
1187
1188         if (obd->obd_force)
1189                 strcat(flags, "F");
1190         if (obd->obd_fail)
1191                 strcat(flags, "A");
1192
1193         CDEBUG(D_CONFIG, "Manual cleanup of %s (flags='%s')\n",
1194                obd->obd_name, flags);
1195
1196         lustre_cfg_bufs_reset(&bufs, obd->obd_name);
1197         lustre_cfg_bufs_set_string(&bufs, 1, flags);
1198         lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
1199
1200         rc = class_process_config(lcfg);
1201         if (rc) {
1202                 CERROR("cleanup failed %d: %s\n", rc, obd->obd_name);
1203                 GOTO(out, rc);
1204         }
1205
1206         /* the lcfg is almost the same for both ops */
1207         lcfg->lcfg_command = LCFG_DETACH;
1208         rc = class_process_config(lcfg);
1209         if (rc)
1210                 CERROR("detach failed %d: %s\n", rc, obd->obd_name);
1211 out:
1212         lustre_cfg_free(lcfg);
1213         RETURN(rc);
1214 }
1215