Whamcloud - gitweb
r=zab,phil
[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-2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * Config API
22  *
23  */
24
25 #define DEBUG_SUBSYSTEM S_CLASS
26 #ifdef __KERNEL__
27 #include <linux/kmod.h>   /* for request_module() */
28 #include <linux/module.h>
29 #include <linux/obd_class.h>
30 #include <linux/random.h>
31 #include <linux/slab.h>
32 #include <linux/pagemap.h>
33 #else 
34 #include <liblustre.h>
35 #include <linux/obd_class.h>
36 #include <linux/obd.h>
37 #endif
38 #include <linux/lustre_log.h>
39 #include <linux/lprocfs_status.h>
40 #include <portals/list.h>
41
42
43 /* Create a new device and set the type, name and uuid.  If
44  * successful, the new device can be accessed by either name or uuid.
45  */
46 int class_attach(struct lustre_cfg *lcfg)
47 {
48         int minor;
49         struct obd_type *type;
50         int err = 0;
51         int len;
52         char *typename;
53         char *name;
54         char *uuid;
55         struct obd_device *obd;
56         int dev;
57                  
58         if (!lcfg->lcfg_inllen1 || !lcfg->lcfg_inlbuf1) {
59                 CERROR("No type passed!\n");
60                 RETURN(-EINVAL);
61         }
62         if (lcfg->lcfg_inlbuf1[lcfg->lcfg_inllen1 - 1] != 0) {
63                 CERROR("Type not nul terminated!\n");
64                 RETURN(-EINVAL);
65         }
66         typename = lcfg->lcfg_inlbuf1;
67
68         if (!lcfg->lcfg_dev_namelen || !lcfg->lcfg_dev_name) {
69                 CERROR("No name passed!\n");
70                 RETURN(-EINVAL);
71         }
72         if (lcfg->lcfg_dev_name[lcfg->lcfg_dev_namelen - 1] != 0) {
73                 CERROR("Name not nul terminated!\n");
74                 RETURN(-EINVAL);
75         }
76         name = lcfg->lcfg_dev_name;
77
78         if (!lcfg->lcfg_inllen2 || !lcfg->lcfg_inlbuf2) {
79                 CERROR("No UUID passed!\n");
80                 RETURN(-EINVAL);
81         }
82         if (lcfg->lcfg_inlbuf2[lcfg->lcfg_inllen2 - 1] != 0) {
83                 CERROR("UUID not nul terminated!\n");
84                 RETURN(-EINVAL);
85         }
86         uuid = lcfg->lcfg_inlbuf2;
87
88         CDEBUG(D_IOCTL, "attach type %s name: %s uuid: %s\n",
89                MKSTR(lcfg->lcfg_inlbuf1),
90                MKSTR(lcfg->lcfg_dev_name), MKSTR(lcfg->lcfg_inlbuf2));
91
92         /* find the type */
93         type = class_get_type(typename);
94         if (!type) {
95                 CERROR("OBD: unknown type: %s\n", typename);
96                 RETURN(-EINVAL);
97         }
98         
99         obd = class_name2obd(name);
100         if (obd != NULL) {
101                 CERROR("obd %s already attached\n", name);
102                 RETURN(-EEXIST);
103         }
104
105         obd = class_newdev(&dev);
106         if (obd == NULL)
107                 RETURN(-EINVAL);
108
109         /* have we attached a type to this device */
110         if (obd->obd_attached || obd->obd_type) {
111                 CERROR("OBD: Device %d already typed as %s.\n",
112                        obd->obd_minor, MKSTR(obd->obd_type->typ_name));
113                 RETURN(-EBUSY);
114         }
115
116         LASSERT(obd == (obd_dev + obd->obd_minor));
117
118         minor = obd->obd_minor;
119         memset(obd, 0, sizeof(*obd));
120         obd->obd_minor = minor;
121         obd->obd_type = type;
122         INIT_LIST_HEAD(&obd->obd_exports);
123         obd->obd_num_exports = 0;
124         spin_lock_init(&obd->obd_dev_lock);
125         spin_lock_init(&obd->obd_osfs_lock);
126         obd->obd_osfs_age = jiffies - 1000 * HZ;
127         init_waitqueue_head(&obd->obd_refcount_waitq);
128         
129         /* XXX belongs in setup not attach  */
130         /* recovery data */
131         spin_lock_init(&obd->obd_processing_task_lock);
132         init_waitqueue_head(&obd->obd_next_transno_waitq);
133         INIT_LIST_HEAD(&obd->obd_recovery_queue);
134         INIT_LIST_HEAD(&obd->obd_delayed_reply_queue);
135         
136         init_waitqueue_head(&obd->obd_commit_waitq);
137         
138         len = strlen(name) + 1;
139         OBD_ALLOC(obd->obd_name, len);
140         if (!obd->obd_name) {
141                 class_put_type(obd->obd_type);
142                 obd->obd_type = NULL;
143                 RETURN(-ENOMEM);
144         }
145         memcpy(obd->obd_name, name, len);
146         
147         len = strlen(uuid);
148         if (len >= sizeof(obd->obd_uuid)) {
149                 CERROR("uuid must be < "LPSZ" bytes long\n",
150                        sizeof(obd->obd_uuid));
151                 OBD_FREE(obd->obd_name, strlen(obd->obd_name) + 1);
152                 class_put_type(obd->obd_type);
153                 obd->obd_type = NULL;
154                 RETURN(-EINVAL);
155         }
156         memcpy(obd->obd_uuid.uuid, uuid, len);
157
158         /* do the attach */
159         if (OBP(obd, attach))
160                 err = OBP(obd,attach)(obd, sizeof *lcfg, lcfg);
161
162         if (err) {
163                 OBD_FREE(obd->obd_name, strlen(obd->obd_name) + 1);
164                 class_put_type(obd->obd_type);
165                 obd->obd_type = NULL;
166         } else {
167                 obd->obd_attached = 1;
168                 type->typ_refcnt++;
169                 CDEBUG(D_IOCTL, "OBD: dev %d attached type %s\n",
170                        obd->obd_minor, typename);
171         }
172         RETURN(err);
173 }
174
175 int class_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
176 {
177         int err = 0;
178         struct obd_export *exp;
179         ENTRY;
180
181         LASSERT(obd == (obd_dev + obd->obd_minor));
182
183         /* have we attached a type to this device? */
184         if (!obd->obd_attached) {
185                 CERROR("Device %d not attached\n", obd->obd_minor);
186                 RETURN(-ENODEV);
187         }
188
189         /* has this been done already? */
190         if (obd->obd_set_up) {
191                 CERROR("Device %d already setup (type %s)\n",
192                        obd->obd_minor, obd->obd_type->typ_name);
193                 RETURN(-EBUSY);
194         }
195
196         atomic_set(&obd->obd_refcount, 0);
197
198         err = obd_setup(obd, sizeof(*lcfg), lcfg);
199         if (err) {
200                 RETURN(err);
201         }
202         
203         obd->obd_type->typ_refcnt++;
204         obd->obd_set_up = 1;
205
206         exp = class_new_export(obd);
207         if (exp == NULL) {
208                 GOTO(err_cleanup, err = -ENOMEM);
209         }
210         memcpy(&exp->exp_client_uuid, &obd->obd_uuid, 
211                sizeof(exp->exp_client_uuid));
212         obd->obd_self_export = exp;
213         class_export_put(exp);
214
215         if (OBT(obd) && OBP(obd, postsetup)) {
216                 err = obd_postsetup(obd);
217                 if (err) 
218                         GOTO(err_exp, err);
219         } 
220
221         RETURN(err);
222
223 err_exp:
224         class_unlink_export(obd->obd_self_export);
225         obd->obd_self_export = NULL;
226 err_cleanup:
227         obd->obd_stopping = 1;
228         obd_cleanup(obd, 0);
229         obd->obd_set_up = obd->obd_stopping = 0;
230         obd->obd_type->typ_refcnt--;
231         RETURN(err);
232 }
233
234 int class_detach(struct obd_device *obd, struct lustre_cfg *lcfg)
235 {
236         int minor;
237         int err = 0;
238
239         ENTRY;
240         if (obd->obd_set_up) {
241                 CERROR("OBD device %d still set up\n", obd->obd_minor);
242                 RETURN(-EBUSY);
243         }
244         if (!obd->obd_attached) {
245                 CERROR("OBD device %d not attached\n", obd->obd_minor);
246                 RETURN(-ENODEV);
247         }
248         if (OBP(obd, detach))
249                 err = OBP(obd,detach)(obd);
250
251         if (obd->obd_name) {
252                 OBD_FREE(obd->obd_name, strlen(obd->obd_name)+1);
253                 obd->obd_name = NULL;
254         } else 
255                 CERROR("device %d: no name at detach\n", obd->obd_minor);
256
257         obd->obd_attached = 0;
258         obd->obd_type->typ_refcnt--;
259         class_put_type(obd->obd_type);
260         obd->obd_type = NULL;
261         minor = obd->obd_minor;
262         memset(obd, 0, sizeof(*obd));
263         obd->obd_minor = minor;
264         RETURN(err);
265 }
266
267 static void dump_exports(struct obd_device *obd)
268 {
269         struct obd_export *exp, *n;
270
271         list_for_each_entry_safe(exp, n, &obd->obd_exports, exp_obd_chain) {
272                 CERROR("%s: %p %s %d %d %p\n",
273                        obd->obd_name, exp, exp->exp_client_uuid.uuid,
274                        atomic_read(&exp->exp_refcount),
275                        exp->exp_failed, exp->exp_outstanding_reply );
276         }
277 }
278
279 int class_cleanup(struct obd_device *obd, struct lustre_cfg *lcfg)
280 {
281         int flags = 0;
282         int err = 0;
283         char *flag;
284         
285         ENTRY;
286         if (!obd->obd_set_up) {
287                 CERROR("Device %d not setup\n", obd->obd_minor);
288                 RETURN(-ENODEV);
289         }
290
291         if (lcfg->lcfg_inlbuf1) {
292                 for (flag = lcfg->lcfg_inlbuf1; *flag != 0; flag++)
293                         switch (*flag) {
294                         case 'F':
295                                 flags |= OBD_OPT_FORCE;
296                                 break;
297                         case 'A':
298                                 flags |= OBD_OPT_FAILOVER;
299                                 break;
300                         default:
301                                 CERROR("unrecognised flag '%c'\n",
302                                        *flag);
303                         }
304         }
305
306         /* The one reference that should be remaining is the
307          * obd_self_export */
308         if (atomic_read(&obd->obd_refcount) <= 1 ||
309             flags & OBD_OPT_FORCE) {
310                 /* this will stop new connections, and need to
311                    do it before class_disconnect_exports() */
312                 obd->obd_stopping = 1;
313         }
314
315         if (atomic_read(&obd->obd_refcount) > 1) {
316                 struct l_wait_info lwi = LWI_TIMEOUT_INTR(1 * HZ, NULL,
317                                                           NULL, NULL);
318                 int rc;
319
320                 if (!(flags & OBD_OPT_FORCE)) {
321                         CERROR("OBD device %d (%p) has refcount %d\n",
322                                obd->obd_minor, obd,
323                                atomic_read(&obd->obd_refcount));
324                         dump_exports(obd);
325                         GOTO(out, err = -EBUSY);
326                 }
327                 class_disconnect_exports(obd, flags);
328                 CDEBUG(D_IOCTL,
329                        "%s: waiting for obd refs to go away: %d\n",
330                        obd->obd_name, atomic_read(&obd->obd_refcount));
331
332                 rc = l_wait_event(obd->obd_refcount_waitq,
333                                   atomic_read(&obd->obd_refcount) < 2, &lwi);
334                 if (rc == 0) {
335                         LASSERT(atomic_read(&obd->obd_refcount) == 1);
336                 } else {
337                         CERROR("wait cancelled cleaning anyway. "
338                                "refcount: %d\n",
339                                atomic_read(&obd->obd_refcount));
340                         dump_exports(obd);
341                 }
342                 CDEBUG(D_IOCTL, "%s: awake, now finishing cleanup\n",
343                        obd->obd_name);
344         }
345
346         if (obd->obd_self_export) {
347                 err = obd_precleanup(obd, flags);
348                 if (err) 
349                         GOTO(out, err);
350                 class_unlink_export(obd->obd_self_export);
351                 obd->obd_self_export = NULL;
352         }
353
354         err = obd_cleanup(obd, flags);
355 out:
356         if (!err) {
357                 obd->obd_set_up = obd->obd_stopping = 0;
358                 obd->obd_type->typ_refcnt--;
359                 /* XXX this should be an LASSERT */
360                 if (atomic_read(&obd->obd_refcount) > 0) 
361                         CERROR("%s still has refcount %d after "
362                                "cleanup.\n", obd->obd_name,
363                                atomic_read(&obd->obd_refcount));
364         } 
365
366         RETURN(err);
367
368 }
369
370 LIST_HEAD(lustre_profile_list);
371
372 struct lustre_profile *class_get_profile(char * prof)
373 {
374         struct lustre_profile *lprof;
375         
376         list_for_each_entry(lprof, &lustre_profile_list, lp_list) {
377                 if (!strcmp(lprof->lp_profile, prof)) {
378                         RETURN(lprof);
379                 }
380         }
381         RETURN(NULL);
382 }
383
384 int class_add_profile(int proflen, char *prof, 
385                       int osclen, char *osc, 
386                       int mdclen, char *mdc)
387 {
388         struct lustre_profile *lprof;
389         int err = 0;
390
391         OBD_ALLOC(lprof, sizeof(*lprof));
392         if (lprof == NULL)
393                 GOTO(out, err = -ENOMEM);
394         INIT_LIST_HEAD(&lprof->lp_list);
395
396         LASSERT(proflen == (strlen(prof) + 1));
397         OBD_ALLOC(lprof->lp_profile, proflen);
398         if (lprof->lp_profile == NULL)
399                 GOTO(out, err = -ENOMEM);
400         memcpy(lprof->lp_profile, prof, proflen);
401         
402         LASSERT(osclen == (strlen(osc) + 1));
403         OBD_ALLOC(lprof->lp_osc, osclen);
404         if (lprof->lp_profile == NULL)
405                 GOTO(out, err = -ENOMEM);
406         memcpy(lprof->lp_osc, osc, osclen);
407
408         if (mdclen > 0) {
409                 LASSERT(mdclen == (strlen(mdc) + 1));
410                 OBD_ALLOC(lprof->lp_mdc, mdclen);
411                 if (lprof->lp_mdc == NULL)
412                         GOTO(out, err = -ENOMEM);
413                 memcpy(lprof->lp_mdc, mdc, mdclen);
414         }
415
416         list_add(&lprof->lp_list, &lustre_profile_list);
417
418 out:
419         RETURN(err);
420 }
421
422 void class_del_profile(char *prof)
423 {
424         struct lustre_profile *lprof;
425         
426         lprof = class_get_profile(prof);
427         if (lprof) {
428                 list_del(&lprof->lp_list);
429                 OBD_FREE(lprof->lp_profile, strlen(lprof->lp_profile) + 1);
430                 OBD_FREE(lprof->lp_osc, strlen(lprof->lp_osc) + 1);
431                 if (lprof->lp_mdc)
432                         OBD_FREE(lprof->lp_mdc, strlen(lprof->lp_mdc) + 1);
433                 OBD_FREE(lprof, sizeof *lprof);
434         }
435 }
436
437 int class_process_config(struct lustre_cfg *lcfg)
438 {
439         struct obd_device *obd;
440         char str[PTL_NALFMT_SIZE];
441         int err;
442
443         LASSERT(lcfg && !IS_ERR(lcfg));
444
445         CDEBUG(D_IOCTL, "processing cmd: %x\n", lcfg->lcfg_command);
446
447         /* Commands that don't need a device */
448         switch(lcfg->lcfg_command) {
449         case LCFG_ATTACH: {
450                 err = class_attach(lcfg);
451                 GOTO(out, err);
452         }
453         case LCFG_ADD_UUID: {
454                 CDEBUG(D_IOCTL, "adding mapping from uuid %s to nid "LPX64
455                        " (%s), nal %d\n", lcfg->lcfg_inlbuf1, lcfg->lcfg_nid,
456                        portals_nid2str(lcfg->lcfg_nal, lcfg->lcfg_nid, str),
457                        lcfg->lcfg_nal);
458
459                 err = class_add_uuid(lcfg->lcfg_inlbuf1, lcfg->lcfg_nid,
460                                      lcfg->lcfg_nal);
461                 GOTO(out, err);
462         }
463         case LCFG_DEL_UUID: {
464                 CDEBUG(D_IOCTL, "removing mappings for uuid %s\n",
465                        lcfg->lcfg_inlbuf1 == NULL ? "<all uuids>" :
466                        lcfg->lcfg_inlbuf1);
467
468                 err = class_del_uuid(lcfg->lcfg_inlbuf1);
469                 GOTO(out, err);
470         }
471         case LCFG_MOUNTOPT: {
472                 CDEBUG(D_IOCTL, "mountopt: profile %s osc %s mdc %s\n", 
473                        lcfg->lcfg_inlbuf1, lcfg->lcfg_inlbuf2, lcfg->lcfg_inlbuf3);
474                 /* set these mount options somewhere, so ll_fill_super
475                  * can find them. */
476                 err = class_add_profile(lcfg->lcfg_inllen1, lcfg->lcfg_inlbuf1, 
477                                         lcfg->lcfg_inllen2, lcfg->lcfg_inlbuf2, 
478                                         lcfg->lcfg_inllen3, lcfg->lcfg_inlbuf3);
479                 GOTO(out, err);
480         }
481         case LCFG_DEL_MOUNTOPT: {
482                 CDEBUG(D_IOCTL, "mountopt: profile %s\n", lcfg->lcfg_inlbuf1);
483                 /* set these mount options somewhere, so ll_fill_super
484                  * can find them. */
485                 class_del_profile(lcfg->lcfg_inlbuf1);
486                 GOTO(out, err = 0);
487         }
488         case LCFG_SET_TIMEOUT: {
489                 CDEBUG(D_IOCTL, "changing lustre timeout from %d to %d\n", 
490                        obd_timeout,
491                        lcfg->lcfg_num);
492                 obd_timeout = lcfg->lcfg_num;
493                 GOTO(out, err = 0);
494         }
495         case LCFG_SET_UPCALL: {
496                 CDEBUG(D_IOCTL, "setting lustre ucpall to: %s\n", 
497                        lcfg->lcfg_inlbuf1);
498                 if (lcfg->lcfg_inllen1 > sizeof obd_lustre_upcall)
499                         GOTO(out, err = -EINVAL);
500                 memcpy(obd_lustre_upcall, lcfg->lcfg_inlbuf1, 
501                        lcfg->lcfg_inllen1);
502                 GOTO(out, err = 0);
503         }
504         }
505         
506
507         /* Commands that require a device */
508         obd = class_name2obd(lcfg->lcfg_dev_name);
509         if (obd == NULL) {
510                 if (lcfg->lcfg_dev_name == NULL) {
511                         CERROR("this lcfg command requires a device name\n");
512                 } else {
513                         CERROR("no device for: %s\n", lcfg->lcfg_dev_name);
514                 }
515                 GOTO(out, err = -EINVAL);
516         }
517             
518         switch(lcfg->lcfg_command) {
519         case LCFG_SETUP: {
520                 err = class_setup(obd, lcfg);
521                 GOTO(out, err);
522         }
523         case LCFG_DETACH: {
524                 err = class_detach(obd, lcfg);
525                 GOTO(out, err = 0);
526         }
527         case LCFG_CLEANUP: {
528                 err = class_cleanup(obd, lcfg);
529                 GOTO(out, err = 0);
530         }
531         default: { 
532                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
533                 GOTO(out, err = -EINVAL);
534
535         }
536         }
537 out:
538         RETURN(err);
539 }
540             
541 static int class_config_llog_handler(struct llog_handle * handle,
542                                      struct llog_rec_hdr *rec, void *data)
543 {
544         struct config_llog_instance *cfg = data;
545         int cfg_len = rec->lrh_len;
546         char *cfg_buf = (char*) (rec + 1);
547         int rc = 0;
548
549         if (rec->lrh_type == OBD_CFG_REC) {
550                 char *buf;
551                 struct lustre_cfg *lcfg;
552                 char *old_name = NULL;
553                 int old_len = 0;
554                 char *old_uuid = NULL;
555                 int old_uuid_len = 0;
556                 char *inst_name = NULL;
557                 int inst_len = 0;
558
559                 rc = lustre_cfg_getdata(&buf, cfg_len, cfg_buf, 1);
560                 if (rc) 
561                         GOTO(out, rc);
562                 lcfg = (struct lustre_cfg* ) buf;
563
564                 if (cfg && cfg->cfg_instance && lcfg->lcfg_dev_name) {
565                         inst_len = strlen(lcfg->lcfg_dev_name) + 
566                                 strlen(cfg->cfg_instance) + 2;
567                         OBD_ALLOC(inst_name, inst_len);
568                         if (inst_name == NULL) 
569                                 GOTO(out, rc = -ENOMEM);
570                         sprintf(inst_name, "%s-%s", lcfg->lcfg_dev_name, 
571                                 cfg->cfg_instance);
572                         old_name = lcfg->lcfg_dev_name;
573                         old_len = lcfg->lcfg_dev_namelen;
574                         lcfg->lcfg_dev_name = inst_name;
575                         lcfg->lcfg_dev_namelen = strlen(inst_name) + 1;
576                 }
577                 
578                 if (cfg && lcfg->lcfg_command == LCFG_ATTACH) {
579                         old_uuid = lcfg->lcfg_inlbuf2;
580                         old_uuid_len = lcfg->lcfg_inllen2;
581
582                         lcfg->lcfg_inlbuf2 = (char*)&cfg->cfg_uuid.uuid;
583                         lcfg->lcfg_inllen2 = sizeof(cfg->cfg_uuid);
584                 }
585
586                 rc = class_process_config(lcfg);
587
588                 if (old_name) {
589                         lcfg->lcfg_dev_name = old_name;
590                         lcfg->lcfg_dev_namelen = old_len;
591                         OBD_FREE(inst_name, inst_len);
592                 }
593               
594                 if (old_uuid) {
595                         lcfg->lcfg_inlbuf2 = old_uuid;
596                         lcfg->lcfg_inllen2 = old_uuid_len;
597                 }
598                 
599                 lustre_cfg_freedata(buf, cfg_len);
600         } else if (rec->lrh_type == PTL_CFG_REC) {
601                 struct portals_cfg *pcfg = (struct portals_cfg *)cfg_buf;
602                 if (pcfg->pcfg_command ==NAL_CMD_REGISTER_MYNID &&
603                     cfg->cfg_local_nid != PTL_NID_ANY) {
604                         pcfg->pcfg_nid = cfg->cfg_local_nid;
605                 }
606
607                 rc = kportal_nal_cmd(pcfg);
608         }
609 out:
610         RETURN(rc);
611 }
612
613 int class_config_parse_llog(struct llog_ctxt *ctxt, char *name, 
614                           struct config_llog_instance *cfg)
615 {
616         struct llog_handle *llh;
617         int rc, rc2;
618         ENTRY;
619
620         rc = llog_create(ctxt, &llh, NULL, name);
621         if (rc) 
622                 RETURN(rc);
623
624         rc = llog_init_handle(llh, LLOG_F_IS_PLAIN, NULL);
625         if (rc) 
626                 GOTO(parse_out, rc);
627
628         rc = llog_process(llh, class_config_llog_handler, cfg);
629 parse_out:
630         rc2 = llog_close(llh);
631         if (rc == 0)
632                 rc = rc2;
633
634         RETURN(rc);
635
636 }
637
638 static int class_config_dump_handler(struct llog_handle * handle,
639                                      struct llog_rec_hdr *rec, void *data)
640 {
641         int cfg_len = rec->lrh_len;
642         char *cfg_buf = (char*) (rec + 1);
643         int rc = 0;
644
645         if (rec->lrh_type == OBD_CFG_REC) {
646                 char *buf;
647                 struct lustre_cfg *lcfg;
648
649                 rc = lustre_cfg_getdata(&buf, cfg_len, cfg_buf, 1);
650                 if (rc) 
651                         GOTO(out, rc);
652                 lcfg = (struct lustre_cfg* ) buf;
653                 
654                 CDEBUG(D_INFO, "lcfg command: %x\n", lcfg->lcfg_command);
655                 if (lcfg->lcfg_dev_name)
656                         CDEBUG(D_INFO, "     devname: %s\n",
657                                lcfg->lcfg_dev_name);
658                 if (lcfg->lcfg_flags)
659                         CDEBUG(D_INFO, "       flags: %x\n", lcfg->lcfg_flags);
660                 if (lcfg->lcfg_nid)
661                         CDEBUG(D_INFO, "         nid: "LPX64"\n",
662                                lcfg->lcfg_nid);
663                 if (lcfg->lcfg_nal)
664                         CDEBUG(D_INFO, "         nal: %x\n", lcfg->lcfg_nal);
665                 if (lcfg->lcfg_num)
666                         CDEBUG(D_INFO, "         nal: %x\n", lcfg->lcfg_num);
667                 if (lcfg->lcfg_inlbuf1)
668                         CDEBUG(D_INFO, "     inlbuf1: %s\n",lcfg->lcfg_inlbuf1);
669                 if (lcfg->lcfg_inlbuf2)
670                         CDEBUG(D_INFO, "     inlbuf1: %s\n",lcfg->lcfg_inlbuf2);
671                 if (lcfg->lcfg_inlbuf3)
672                         CDEBUG(D_INFO, "     inlbuf1: %s\n",lcfg->lcfg_inlbuf3);
673                 if (lcfg->lcfg_inlbuf4)
674                         CDEBUG(D_INFO, "     inlbuf1: %s\n",lcfg->lcfg_inlbuf4);
675
676                 lustre_cfg_freedata(buf, cfg_len);
677         } else if (rec->lrh_type == PTL_CFG_REC) {
678                 struct portals_cfg *pcfg = (struct portals_cfg *)cfg_buf;
679
680                 CDEBUG(D_INFO, "pcfg command: %d\n", pcfg->pcfg_command);
681                 if (pcfg->pcfg_nal)
682                         CDEBUG(D_INFO, "         nal: %d\n",
683                                pcfg->pcfg_nal);
684                 if (pcfg->pcfg_gw_nal)
685                         CDEBUG(D_INFO, "      gw_nal: %d\n",
686                                pcfg->pcfg_gw_nal);
687                 if (pcfg->pcfg_nid)
688                         CDEBUG(D_INFO, "         nid: "LPX64"\n",
689                                pcfg->pcfg_nid);
690                 if (pcfg->pcfg_nid2)
691                         CDEBUG(D_INFO, "         nid: "LPX64"\n",
692                                pcfg->pcfg_nid2);
693                 if (pcfg->pcfg_nid3)
694                         CDEBUG(D_INFO, "         nid: "LPX64"\n",
695                                pcfg->pcfg_nid3);
696                 if (pcfg->pcfg_misc)
697                         CDEBUG(D_INFO, "         nid: %d\n",
698                                pcfg->pcfg_misc);
699                 if (pcfg->pcfg_id)
700                         CDEBUG(D_INFO, "          id: %x\n",
701                                pcfg->pcfg_id);
702                 if (pcfg->pcfg_flags)
703                         CDEBUG(D_INFO, "       flags: %x\n",
704                                pcfg->pcfg_flags);
705         }
706 out:
707         RETURN(rc);
708 }
709
710 int class_config_dump_llog(struct llog_ctxt *ctxt, char *name, 
711                           struct config_llog_instance *cfg)
712 {
713         struct llog_handle *llh;
714         int rc, rc2;
715         ENTRY;
716
717         rc = llog_create(ctxt, &llh, NULL, name);
718         if (rc) 
719                 RETURN(rc);
720
721         rc = llog_init_handle(llh, LLOG_F_IS_PLAIN, NULL);
722         if (rc) 
723                 GOTO(parse_out, rc);
724
725         rc = llog_process(llh, class_config_dump_handler, cfg);
726 parse_out:
727         rc2 = llog_close(llh);
728         if (rc == 0)
729                 rc = rc2;
730
731         RETURN(rc);
732
733 }
734