Whamcloud - gitweb
Land b_orphan on HEAD (20040130_1601)
[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         init_waitqueue_head(&obd->obd_refcount_waitq);
126         
127         /* XXX belongs in setup not attach  */
128         /* recovery data */
129         spin_lock_init(&obd->obd_processing_task_lock);
130         init_waitqueue_head(&obd->obd_next_transno_waitq);
131         INIT_LIST_HEAD(&obd->obd_recovery_queue);
132         INIT_LIST_HEAD(&obd->obd_delayed_reply_queue);
133         
134         init_waitqueue_head(&obd->obd_commit_waitq);
135         
136         len = strlen(name) + 1;
137         OBD_ALLOC(obd->obd_name, len);
138         if (!obd->obd_name) {
139                 class_put_type(obd->obd_type);
140                 obd->obd_type = NULL;
141                 RETURN(-ENOMEM);
142         }
143         memcpy(obd->obd_name, name, len);
144         
145         len = strlen(uuid);
146         if (len >= sizeof(obd->obd_uuid)) {
147                 CERROR("uuid must be < "LPSZ" bytes long\n",
148                        sizeof(obd->obd_uuid));
149                 OBD_FREE(obd->obd_name, strlen(obd->obd_name) + 1);
150                 class_put_type(obd->obd_type);
151                 obd->obd_type = NULL;
152                 RETURN(-EINVAL);
153         }
154         memcpy(obd->obd_uuid.uuid, uuid, len);
155
156         /* do the attach */
157         if (OBP(obd, attach))
158                 err = OBP(obd,attach)(obd, sizeof *lcfg, lcfg);
159
160         if (err) {
161                 OBD_FREE(obd->obd_name, strlen(obd->obd_name) + 1);
162                 class_put_type(obd->obd_type);
163                 obd->obd_type = NULL;
164         } else {
165                 obd->obd_attached = 1;
166                 type->typ_refcnt++;
167                 CDEBUG(D_IOCTL, "OBD: dev %d attached type %s\n",
168                        obd->obd_minor, typename);
169         }
170         RETURN(err);
171 }
172
173 int class_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
174 {
175         int err = 0;
176         struct obd_export *exp;
177         ENTRY;
178
179         LASSERT(obd == (obd_dev + obd->obd_minor));
180
181         /* have we attached a type to this device? */
182         if (!obd->obd_attached) {
183                 CERROR("Device %d not attached\n", obd->obd_minor);
184                 RETURN(-ENODEV);
185         }
186
187         /* has this been done already? */
188         if (obd->obd_set_up) {
189                 CERROR("Device %d already setup (type %s)\n",
190                        obd->obd_minor, obd->obd_type->typ_name);
191                 RETURN(-EBUSY);
192         }
193
194         atomic_set(&obd->obd_refcount, 0);
195
196         err = obd_setup(obd, sizeof(*lcfg), lcfg);
197         if (err) {
198                 RETURN(err);
199         }
200         
201         obd->obd_type->typ_refcnt++;
202         obd->obd_set_up = 1;
203
204         exp = class_new_export(obd);
205         if (exp == NULL) {
206                 GOTO(err_cleanup, err = -ENOMEM);
207         }
208         memcpy(&exp->exp_client_uuid, &obd->obd_uuid, 
209                sizeof(exp->exp_client_uuid));
210         obd->obd_self_export = exp;
211         class_export_put(exp);
212
213         if (OBT(obd) && OBP(obd, postsetup)) {
214                 err = obd_postsetup(obd);
215                 if (err) 
216                         GOTO(err_exp, err);
217         } 
218
219         RETURN(err);
220
221 err_exp:
222         class_unlink_export(obd->obd_self_export);
223         obd->obd_self_export = NULL;
224 err_cleanup:
225         obd->obd_stopping = 1;
226         obd_cleanup(obd, 0);
227         obd->obd_set_up = obd->obd_stopping = 0;
228         obd->obd_type->typ_refcnt--;
229         RETURN(err);
230 }
231
232 int class_detach(struct obd_device *obd, struct lustre_cfg *lcfg)
233 {
234         int minor;
235         int err = 0;
236
237         ENTRY;
238         if (obd->obd_set_up) {
239                 CERROR("OBD device %d still set up\n", obd->obd_minor);
240                 RETURN(-EBUSY);
241         }
242         if (!obd->obd_attached) {
243                 CERROR("OBD device %d not attached\n", obd->obd_minor);
244                 RETURN(-ENODEV);
245         }
246         if (OBP(obd, detach))
247                 err = OBP(obd,detach)(obd);
248
249         if (obd->obd_name) {
250                 OBD_FREE(obd->obd_name, strlen(obd->obd_name)+1);
251                 obd->obd_name = NULL;
252         } else 
253                 CERROR("device %d: no name at detach\n", obd->obd_minor);
254
255         obd->obd_attached = 0;
256         obd->obd_type->typ_refcnt--;
257         class_put_type(obd->obd_type);
258         obd->obd_type = NULL;
259         minor = obd->obd_minor;
260         memset(obd, 0, sizeof(*obd));
261         obd->obd_minor = minor;
262         RETURN(err);
263 }
264
265 static void dump_exports(struct obd_device *obd)
266 {
267         struct obd_export *exp, *n;
268
269         list_for_each_entry_safe(exp, n, &obd->obd_exports, exp_obd_chain) {
270                 CERROR("%s: %p %s %d %d %p\n",
271                        obd->obd_name, exp, exp->exp_client_uuid.uuid,
272                        atomic_read(&exp->exp_refcount),
273                        exp->exp_failed, exp->exp_outstanding_reply );
274         }
275 }
276
277 int class_cleanup(struct obd_device *obd, struct lustre_cfg *lcfg)
278 {
279         int flags = 0;
280         int err = 0;
281         char *flag;
282         
283         ENTRY;
284         if (!obd->obd_set_up) {
285                 CERROR("Device %d not setup\n", obd->obd_minor);
286                 RETURN(-ENODEV);
287         }
288
289         if (lcfg->lcfg_inlbuf1) {
290                 for (flag = lcfg->lcfg_inlbuf1; *flag != 0; flag++)
291                         switch (*flag) {
292                         case 'F':
293                                 flags |= OBD_OPT_FORCE;
294                                 break;
295                         case 'A':
296                                 flags |= OBD_OPT_FAILOVER;
297                                 break;
298                         default:
299                                 CERROR("unrecognised flag '%c'\n",
300                                        *flag);
301                         }
302         }
303
304         /* The one reference that should be remaining is the
305          * obd_self_export */
306         if (atomic_read(&obd->obd_refcount) <= 1 ||
307             flags & OBD_OPT_FORCE) {
308                 /* this will stop new connections, and need to
309                    do it before class_disconnect_exports() */
310                 obd->obd_stopping = 1;
311         }
312
313         if (atomic_read(&obd->obd_refcount) > 1) {
314                 struct l_wait_info lwi = LWI_TIMEOUT_INTR(1 * HZ, NULL,
315                                                           NULL, NULL);
316                 int rc;
317
318                 if (!(flags & OBD_OPT_FORCE)) {
319                         CERROR("OBD device %d (%p) has refcount %d\n",
320                                obd->obd_minor, obd,
321                                atomic_read(&obd->obd_refcount));
322                         dump_exports(obd);
323                         GOTO(out, err = -EBUSY);
324                 }
325                 class_disconnect_exports(obd, flags);
326                 CDEBUG(D_IOCTL,
327                        "%s: waiting for obd refs to go away: %d\n",
328                        obd->obd_name, atomic_read(&obd->obd_refcount));
329
330                 rc = l_wait_event(obd->obd_refcount_waitq,
331                                   atomic_read(&obd->obd_refcount) < 2, &lwi);
332                 if (rc == 0) {
333                         LASSERT(atomic_read(&obd->obd_refcount) == 1);
334                 } else {
335                         CERROR("wait cancelled cleaning anyway. "
336                                "refcount: %d\n",
337                                atomic_read(&obd->obd_refcount));
338                         dump_exports(obd);
339                 }
340                 CDEBUG(D_IOCTL, "%s: awake, now finishing cleanup\n",
341                        obd->obd_name);
342         }
343
344         if (obd->obd_self_export) {
345                 err = obd_precleanup(obd, flags);
346                 if (err) 
347                         GOTO(out, err);
348                 class_unlink_export(obd->obd_self_export);
349                 obd->obd_self_export = NULL;
350         }
351
352         err = obd_cleanup(obd, flags);
353 out:
354         if (!err) {
355                 obd->obd_set_up = obd->obd_stopping = 0;
356                 obd->obd_type->typ_refcnt--;
357                 /* XXX this should be an LASSERT */
358                 if (atomic_read(&obd->obd_refcount) > 0) 
359                         CERROR("%s still has refcount %d after "
360                                "cleanup.\n", obd->obd_name,
361                                atomic_read(&obd->obd_refcount));
362         } 
363
364         RETURN(err);
365
366 }
367
368 LIST_HEAD(lustre_profile_list);
369
370 struct lustre_profile *class_get_profile(char * prof)
371 {
372         struct lustre_profile *lprof;
373         
374         list_for_each_entry(lprof, &lustre_profile_list, lp_list) {
375                 if (!strcmp(lprof->lp_profile, prof)) {
376                         RETURN(lprof);
377                 }
378         }
379         RETURN(NULL);
380 }
381
382 int class_add_profile(int proflen, char *prof, 
383                       int osclen, char *osc, 
384                       int mdclen, char *mdc)
385 {
386         struct lustre_profile *lprof;
387         int err = 0;
388
389         OBD_ALLOC(lprof, sizeof(*lprof));
390         if (lprof == NULL)
391                 GOTO(out, err = -ENOMEM);
392         INIT_LIST_HEAD(&lprof->lp_list);
393
394         LASSERT(proflen == (strlen(prof) + 1));
395         OBD_ALLOC(lprof->lp_profile, proflen);
396         if (lprof->lp_profile == NULL)
397                 GOTO(out, err = -ENOMEM);
398         memcpy(lprof->lp_profile, prof, proflen);
399         
400         LASSERT(osclen == (strlen(osc) + 1));
401         OBD_ALLOC(lprof->lp_osc, osclen);
402         if (lprof->lp_profile == NULL)
403                 GOTO(out, err = -ENOMEM);
404         memcpy(lprof->lp_osc, osc, osclen);
405
406         if (mdclen > 0) {
407                 LASSERT(mdclen == (strlen(mdc) + 1));
408                 OBD_ALLOC(lprof->lp_mdc, mdclen);
409                 if (lprof->lp_mdc == NULL)
410                         GOTO(out, err = -ENOMEM);
411                 memcpy(lprof->lp_mdc, mdc, mdclen);
412         }
413
414         list_add(&lprof->lp_list, &lustre_profile_list);
415
416 out:
417         RETURN(err);
418 }
419
420 void class_del_profile(char *prof)
421 {
422         struct lustre_profile *lprof;
423         
424         lprof = class_get_profile(prof);
425         if (lprof) {
426                 list_del(&lprof->lp_list);
427                 OBD_FREE(lprof->lp_profile, strlen(lprof->lp_profile) + 1);
428                 OBD_FREE(lprof->lp_osc, strlen(lprof->lp_osc) + 1);
429                 if (lprof->lp_mdc)
430                         OBD_FREE(lprof->lp_mdc, strlen(lprof->lp_mdc) + 1);
431                 OBD_FREE(lprof, sizeof *lprof);
432         }
433 }
434
435 int class_process_config(struct lustre_cfg *lcfg)
436 {
437         struct obd_device *obd;
438         char str[PTL_NALFMT_SIZE];
439         int err;
440
441         LASSERT(lcfg && !IS_ERR(lcfg));
442
443         CDEBUG(D_IOCTL, "processing cmd: %x\n", lcfg->lcfg_command);
444
445         /* Commands that don't need a device */
446         switch(lcfg->lcfg_command) {
447         case LCFG_ATTACH: {
448                 err = class_attach(lcfg);
449                 GOTO(out, err);
450         }
451         case LCFG_ADD_UUID: {
452                 CDEBUG(D_IOCTL, "adding mapping from uuid %s to nid "LPX64
453                        " (%s), nal %d\n", lcfg->lcfg_inlbuf1, lcfg->lcfg_nid,
454                        portals_nid2str(lcfg->lcfg_nal, lcfg->lcfg_nid, str),
455                        lcfg->lcfg_nal);
456
457                 err = class_add_uuid(lcfg->lcfg_inlbuf1, lcfg->lcfg_nid,
458                                      lcfg->lcfg_nal);
459                 GOTO(out, err);
460         }
461         case LCFG_DEL_UUID: {
462                 CDEBUG(D_IOCTL, "removing mappings for uuid %s\n",
463                        lcfg->lcfg_inlbuf1 == NULL ? "<all uuids>" :
464                        lcfg->lcfg_inlbuf1);
465
466                 err = class_del_uuid(lcfg->lcfg_inlbuf1);
467                 GOTO(out, err);
468         }
469         case LCFG_MOUNTOPT: {
470                 CDEBUG(D_IOCTL, "mountopt: profile %s osc %s mdc %s\n", 
471                        lcfg->lcfg_inlbuf1, lcfg->lcfg_inlbuf2, lcfg->lcfg_inlbuf3);
472                 /* set these mount options somewhere, so ll_fill_super
473                  * can find them. */
474                 err = class_add_profile(lcfg->lcfg_inllen1, lcfg->lcfg_inlbuf1, 
475                                         lcfg->lcfg_inllen2, lcfg->lcfg_inlbuf2, 
476                                         lcfg->lcfg_inllen3, lcfg->lcfg_inlbuf3);
477                 GOTO(out, err);
478         }
479         case LCFG_DEL_MOUNTOPT: {
480                 CDEBUG(D_IOCTL, "mountopt: profile %s\n", lcfg->lcfg_inlbuf1);
481                 /* set these mount options somewhere, so ll_fill_super
482                  * can find them. */
483                 class_del_profile(lcfg->lcfg_inlbuf1);
484                 GOTO(out, err = 0);
485         }
486         case LCFG_SET_TIMEOUT: {
487                 CDEBUG(D_IOCTL, "changing lustre timeout from %d to %d\n", 
488                        obd_timeout,
489                        lcfg->lcfg_num);
490                 obd_timeout = lcfg->lcfg_num;
491                 GOTO(out, err = 0);
492         }
493         case LCFG_SET_UPCALL: {
494                 CDEBUG(D_IOCTL, "setting lustre ucpall to: %s\n", 
495                        lcfg->lcfg_inlbuf1);
496                 if (lcfg->lcfg_inllen1 > sizeof obd_lustre_upcall)
497                         GOTO(out, err = -EINVAL);
498                 memcpy(obd_lustre_upcall, lcfg->lcfg_inlbuf1, 
499                        lcfg->lcfg_inllen1);
500                 GOTO(out, err = 0);
501         }
502         }
503         
504
505         /* Commands that require a device */
506         obd = class_name2obd(lcfg->lcfg_dev_name);
507         if (obd == NULL) {
508                 if (lcfg->lcfg_dev_name == NULL) {
509                         CERROR("this lcfg command requires a device name\n");
510                 } else {
511                         CERROR("no device for: %s\n", lcfg->lcfg_dev_name);
512                 }
513                 GOTO(out, err = -EINVAL);
514         }
515             
516         switch(lcfg->lcfg_command) {
517         case LCFG_SETUP: {
518                 err = class_setup(obd, lcfg);
519                 GOTO(out, err);
520         }
521         case LCFG_DETACH: {
522                 err = class_detach(obd, lcfg);
523                 GOTO(out, err = 0);
524         }
525         case LCFG_CLEANUP: {
526                 err = class_cleanup(obd, lcfg);
527                 GOTO(out, err = 0);
528         }
529         default: { 
530                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
531                 GOTO(out, err = -EINVAL);
532
533         }
534         }
535 out:
536         RETURN(err);
537 }
538             
539 static int class_config_llog_handler(struct llog_handle * handle,
540                                      struct llog_rec_hdr *rec, void *data)
541 {
542         struct config_llog_instance *cfg = data;
543         int cfg_len = rec->lrh_len;
544         char *cfg_buf = (char*) (rec + 1);
545         int rc = 0;
546
547         if (rec->lrh_type == OBD_CFG_REC) {
548                 char *buf;
549                 struct lustre_cfg *lcfg;
550                 char *old_name = NULL;
551                 int old_len = 0;
552                 char *old_uuid = NULL;
553                 int old_uuid_len = 0;
554                 char *inst_name = NULL;
555                 int inst_len = 0;
556
557                 rc = lustre_cfg_getdata(&buf, cfg_len, cfg_buf, 1);
558                 if (rc) 
559                         GOTO(out, rc);
560                 lcfg = (struct lustre_cfg* ) buf;
561
562                 if (cfg && cfg->cfg_instance && lcfg->lcfg_dev_name) {
563                         inst_len = strlen(lcfg->lcfg_dev_name) + 
564                                 strlen(cfg->cfg_instance) + 2;
565                         OBD_ALLOC(inst_name, inst_len);
566                         if (inst_name == NULL) 
567                                 GOTO(out, rc = -ENOMEM);
568                         sprintf(inst_name, "%s-%s", lcfg->lcfg_dev_name, 
569                                 cfg->cfg_instance);
570                         old_name = lcfg->lcfg_dev_name;
571                         old_len = lcfg->lcfg_dev_namelen;
572                         lcfg->lcfg_dev_name = inst_name;
573                         lcfg->lcfg_dev_namelen = strlen(inst_name) + 1;
574                 }
575                 
576                 if (cfg && lcfg->lcfg_command == LCFG_ATTACH) {
577                         old_uuid = lcfg->lcfg_inlbuf2;
578                         old_uuid_len = lcfg->lcfg_inllen2;
579
580                         lcfg->lcfg_inlbuf2 = (char*)&cfg->cfg_uuid.uuid;
581                         lcfg->lcfg_inllen2 = sizeof(cfg->cfg_uuid);
582                 }
583
584                 rc = class_process_config(lcfg);
585
586                 if (old_name) {
587                         lcfg->lcfg_dev_name = old_name;
588                         lcfg->lcfg_dev_namelen = old_len;
589                         OBD_FREE(inst_name, inst_len);
590                 }
591               
592                 if (old_uuid) {
593                         lcfg->lcfg_inlbuf2 = old_uuid;
594                         lcfg->lcfg_inllen2 = old_uuid_len;
595                 }
596                 
597                 lustre_cfg_freedata(buf, cfg_len);
598         } else if (rec->lrh_type == PTL_CFG_REC) {
599                 struct portals_cfg *pcfg = (struct portals_cfg *)cfg_buf;
600                 if (pcfg->pcfg_command ==NAL_CMD_REGISTER_MYNID &&
601                     cfg->cfg_local_nid != PTL_NID_ANY) {
602                         pcfg->pcfg_nid = cfg->cfg_local_nid;
603                 }
604
605                 rc = kportal_nal_cmd(pcfg);
606         }
607 out:
608         RETURN(rc);
609 }
610
611 int class_config_parse_llog(struct llog_ctxt *ctxt, char *name, 
612                           struct config_llog_instance *cfg)
613 {
614         struct llog_handle *llh;
615         int rc, rc2;
616         ENTRY;
617
618         rc = llog_create(ctxt, &llh, NULL, name);
619         if (rc) 
620                 RETURN(rc);
621
622         rc = llog_init_handle(llh, LLOG_F_IS_PLAIN, NULL);
623         if (rc) 
624                 GOTO(parse_out, rc);
625
626         rc = llog_process(llh, class_config_llog_handler, cfg, NULL);
627 parse_out:
628         rc2 = llog_close(llh);
629         if (rc == 0)
630                 rc = rc2;
631
632         RETURN(rc);
633
634 }
635
636 static int class_config_dump_handler(struct llog_handle * handle,
637                                      struct llog_rec_hdr *rec, void *data)
638 {
639         int cfg_len = rec->lrh_len;
640         char *cfg_buf = (char*) (rec + 1);
641         int rc = 0;
642
643         if (rec->lrh_type == OBD_CFG_REC) {
644                 char *buf;
645                 struct lustre_cfg *lcfg;
646
647                 rc = lustre_cfg_getdata(&buf, cfg_len, cfg_buf, 1);
648                 if (rc) 
649                         GOTO(out, rc);
650                 lcfg = (struct lustre_cfg* ) buf;
651                 
652                 CDEBUG(D_INFO, "lcfg command: %x\n", lcfg->lcfg_command);
653                 if (lcfg->lcfg_dev_name)
654                         CDEBUG(D_INFO, "     devname: %s\n",
655                                lcfg->lcfg_dev_name);
656                 if (lcfg->lcfg_flags)
657                         CDEBUG(D_INFO, "       flags: %x\n", lcfg->lcfg_flags);
658                 if (lcfg->lcfg_nid)
659                         CDEBUG(D_INFO, "         nid: "LPX64"\n",
660                                lcfg->lcfg_nid);
661                 if (lcfg->lcfg_nal)
662                         CDEBUG(D_INFO, "         nal: %x\n", lcfg->lcfg_nal);
663                 if (lcfg->lcfg_num)
664                         CDEBUG(D_INFO, "         nal: %x\n", lcfg->lcfg_num);
665                 if (lcfg->lcfg_inlbuf1)
666                         CDEBUG(D_INFO, "     inlbuf1: %s\n",lcfg->lcfg_inlbuf1);
667                 if (lcfg->lcfg_inlbuf2)
668                         CDEBUG(D_INFO, "     inlbuf1: %s\n",lcfg->lcfg_inlbuf2);
669                 if (lcfg->lcfg_inlbuf3)
670                         CDEBUG(D_INFO, "     inlbuf1: %s\n",lcfg->lcfg_inlbuf3);
671                 if (lcfg->lcfg_inlbuf4)
672                         CDEBUG(D_INFO, "     inlbuf1: %s\n",lcfg->lcfg_inlbuf4);
673
674                 lustre_cfg_freedata(buf, cfg_len);
675         } else if (rec->lrh_type == PTL_CFG_REC) {
676                 struct portals_cfg *pcfg = (struct portals_cfg *)cfg_buf;
677
678                 CDEBUG(D_INFO, "pcfg command: %d\n", pcfg->pcfg_command);
679                 if (pcfg->pcfg_nal)
680                         CDEBUG(D_INFO, "         nal: %d\n",
681                                pcfg->pcfg_nal);
682                 if (pcfg->pcfg_gw_nal)
683                         CDEBUG(D_INFO, "      gw_nal: %d\n",
684                                pcfg->pcfg_gw_nal);
685                 if (pcfg->pcfg_nid)
686                         CDEBUG(D_INFO, "         nid: "LPX64"\n",
687                                pcfg->pcfg_nid);
688                 if (pcfg->pcfg_nid2)
689                         CDEBUG(D_INFO, "         nid: "LPX64"\n",
690                                pcfg->pcfg_nid2);
691                 if (pcfg->pcfg_nid3)
692                         CDEBUG(D_INFO, "         nid: "LPX64"\n",
693                                pcfg->pcfg_nid3);
694                 if (pcfg->pcfg_misc)
695                         CDEBUG(D_INFO, "         nid: %d\n",
696                                pcfg->pcfg_misc);
697                 if (pcfg->pcfg_id)
698                         CDEBUG(D_INFO, "          id: %x\n",
699                                pcfg->pcfg_id);
700                 if (pcfg->pcfg_flags)
701                         CDEBUG(D_INFO, "       flags: %x\n",
702                                pcfg->pcfg_flags);
703         }
704 out:
705         RETURN(rc);
706 }
707
708 int class_config_dump_llog(struct llog_ctxt *ctxt, char *name, 
709                           struct config_llog_instance *cfg)
710 {
711         struct llog_handle *llh;
712         int rc, rc2;
713         ENTRY;
714
715         rc = llog_create(ctxt, &llh, NULL, name);
716         if (rc) 
717                 RETURN(rc);
718
719         rc = llog_init_handle(llh, LLOG_F_IS_PLAIN, NULL);
720         if (rc) 
721                 GOTO(parse_out, rc);
722
723         rc = llog_process(llh, class_config_dump_handler, cfg, NULL);
724 parse_out:
725         rc2 = llog_close(llh);
726         if (rc == 0)
727                 rc = rc2;
728
729         RETURN(rc);
730
731 }
732