Whamcloud - gitweb
- Cancel any and all outstanding locks when an export is disconnected.
[fs/lustre-release.git] / lustre / obdclass / class_obd.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2001, 2002 Cluster File Systems, Inc.
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  *
9  * These are the only exported functions, they provide some generic
10  * infrastructure for managing object devices
11  *
12  * Object Devices Class Driver
13  */
14
15 #define EXPORT_SYMTAB
16 #include <linux/config.h> /* for CONFIG_PROC_FS */
17 #include <linux/module.h>
18 #include <linux/errno.h>
19 #include <linux/kernel.h>
20 #include <linux/major.h>
21 #include <linux/sched.h>
22 #include <linux/lp.h>
23 #include <linux/slab.h>
24 #include <linux/ioport.h>
25 #include <linux/fcntl.h>
26 #include <linux/delay.h>
27 #include <linux/skbuff.h>
28 #include <linux/proc_fs.h>
29 #include <linux/fs.h>
30 #include <linux/poll.h>
31 #include <linux/init.h>
32 #include <linux/list.h>
33 #include <asm/io.h>
34 #include <asm/system.h>
35 #include <asm/poll.h>
36 #include <asm/uaccess.h>
37 #include <linux/miscdevice.h>
38
39 #define DEBUG_SUBSYSTEM S_CLASS
40
41 #include <linux/obd_support.h>
42 #include <linux/obd_class.h>
43 #include <linux/lustre_debug.h>
44 #include <linux/smp_lock.h>
45 #include <linux/lprocfs.h>
46
47 struct semaphore obd_conf_sem;   /* serialize configuration commands */
48 struct obd_device obd_dev[MAX_OBD_DEVICES];
49 struct list_head obd_types;
50 unsigned long obd_memory;
51
52 /* The following are visible and mutable through /proc/sys/lustre/. */
53 unsigned long obd_fail_loc;
54 unsigned long obd_timeout = 100;
55 char obd_recovery_upcall[128] = "/usr/lib/lustre/ha_assist";
56
57 extern struct obd_type *class_nm_to_type(char *nm);
58 /*
59  * LProcFS specific data structures. These define the namespace for
60  * the various device classes. We will need to distribute these
61  * later, to individual modules (e.g. MDS, MDC etc)
62  */
63
64 #ifdef LPROCFS_EXISTS
65
66 /*
67  * Common OBD namespace for lprocFS (these are used very often)
68  */
69
70 char* obd_dir_nm_1[]= {
71         "mgmt%",
72         "mgmt/setup",
73         "mgmt/cleanup",
74         "mgmt/connect",
75         "mgmt/disconnect",
76         0
77 };
78
79 lprocfs_vars_t obd_var_nm_1[]= {
80         {"num_ops", lprocfs_ll_rd, lprocfs_ll_wr},
81         {"min_time", lprocfs_ll_rd, lprocfs_ll_wr},
82         {"max_time", lprocfs_ll_rd, lprocfs_ll_wr},
83         {"sum_time", lprocfs_ll_rd, lprocfs_ll_wr},
84         {"0", 0, 0}
85 };
86
87
88 /*
89  *  MDC Spcific namespace for lprocFS
90  */
91
92 char *mdc_dir_nm_1[]= {
93         "reint",
94         "getstatus",
95         "getattr",
96         "setattr",
97         "open",
98         "readpage",
99         "create",
100         "unlink",
101         "link",
102         "rename",
103         0
104 };
105
106 /*
107  * Create the MDC groupings
108  */
109 lprocfs_group_t lprocfs_mdc_nm[]= {
110
111         {obd_dir_nm_1, obd_var_nm_1, e_generic},
112         {mdc_dir_nm_1, obd_var_nm_1, e_generic},
113         {0, 0, 0}
114 };
115
116 /*
117  * MDS Device Groupings
118  */
119 char *mds_dir_nm_1[]={
120         "getstatus",
121         "connect",
122         "disconnect_callback",
123         "getattr",
124         "readpage",
125         "open",
126         "close",
127         "create",
128         "unlink",
129         "link",
130         "rename",
131         "reint%",
132         "reint/summary",
133         "reint/setattr",
134         "reint/create",
135         "reint/unlink",
136         "reint/link",
137         "reint/rename",
138         "reint/recreate",
139         0
140 };
141
142 char *mds_dir_nm_2[]={
143         "mstatfs",
144         0
145 };
146
147
148 lprocfs_vars_t mds_var_nm_2[]={
149         {"f_type", rd_other, wr_other},
150         {"f_bsize",rd_other, wr_other},
151         {"f_blocks",rd_other, wr_other},
152         {"f_bfree",rd_other, wr_other},
153         {"f_bavail",rd_other, wr_other},
154         {"uuid",rd_string, wr_string},
155         {"0", 0, 0}
156 };
157
158
159 lprocfs_group_t lprocfs_mds_nm[]={
160          {obd_dir_nm_1, obd_var_nm_1, e_generic},
161          {mds_dir_nm_1, obd_var_nm_1, e_generic},
162          {mds_dir_nm_2, mds_var_nm_2, e_specific},
163          {0, 0, 0}
164 };
165
166 /*
167  * OSC Namespace
168  */
169
170 char* osc_dir_nm_1[]={
171         "create",
172         "destroy",
173         "getattr",
174         "setattr",
175         "open",
176         "close",
177         "brw",
178         "punch",
179         "summary",
180         "cancel",
181         0
182 };
183
184 lprocfs_group_t lprocfs_osc_nm[]={
185          {obd_dir_nm_1, obd_var_nm_1, e_generic},
186          {osc_dir_nm_1, obd_var_nm_1, e_generic},
187          {0, 0, 0}
188 };
189
190
191 /*
192  * OST, LOV, OBD_FILTER namespace
193  * Note: These namespaces are exactly similar to the osc_dir_namespace
194  * Hence, I use the osc namespace as the base class and add only
195  * those attributes that are missing in osc_dir_namespace.
196  */
197
198 char *ost_lov_obdfilter_dir_nm_1[]={
199         "getinfo",
200         0
201
202 };
203
204 char *ost_lov_obdfilter_dir_nm_2[]={
205         "ostatfs",
206         0
207 };
208
209 lprocfs_vars_t ost_lov_obdfilter_var_nm_2[]={
210         {"f_type", rd_other, wr_other},
211         {"f_bsize",rd_other, wr_other},
212         {"f_blocks",rd_other, wr_other},
213         {"f_bfree",rd_other, wr_other},
214         {"f_bavail",rd_other, wr_other},
215         {"f_objects", rd_other, wr_other},
216         {"f_ofree", rd_other, wr_other},
217         {"f_objectgroups", rd_other, wr_other},
218         {"f_uuid", rd_string, wr_string},
219         {"0", 0, 0}
220 };
221
222
223 lprocfs_group_t lprocfs_ost_lov_obdf_nm[]={
224          {obd_dir_nm_1, obd_var_nm_1, e_generic},
225          {osc_dir_nm_1, obd_var_nm_1, e_generic},
226          {ost_lov_obdfilter_dir_nm_1, obd_var_nm_1, e_generic},
227          {ost_lov_obdfilter_dir_nm_2, ost_lov_obdfilter_var_nm_2, e_specific},
228          {0, 0, 0}
229 };
230
231 /*
232  * LDLM Device namespace
233  */
234
235
236 char* ldlm_dir_nm_1[]={
237         "locks%",
238         "locks/enqueus",
239         "locks/cancels",
240         "locks/converts",
241         "locks/matches",
242         0
243 };
244
245 lprocfs_vars_t ldlm_var_nm_1[]= {
246         {"num_total", lprocfs_ll_rd, lprocfs_ll_wr},
247         {"num_zerolatency", lprocfs_ll_rd, lprocfs_ll_wr},
248         {"num_zerolatency_inflight", lprocfs_ll_rd, lprocfs_ll_wr},
249         {"num_zerolatency_done", lprocfs_ll_rd, lprocfs_ll_wr},
250         {"nonzero_mintime", lprocfs_ll_rd, lprocfs_ll_wr},
251         {"nonzero_maxtime", lprocfs_ll_rd, lprocfs_ll_wr},
252         {"nonzero_sumtime", lprocfs_ll_rd, lprocfs_ll_wr},
253         {"0", 0, 0}
254
255 };
256
257 lprocfs_group_t lprocfs_ldlm_nm[]={
258          {obd_dir_nm_1, obd_var_nm_1, e_generic},
259          {ldlm_dir_nm_1, ldlm_var_nm_1, e_generic},
260          {0, 0, 0}
261 };
262
263 /*
264  * Note: Need to add namespace for breaking out locks by device class
265  */
266
267 /*
268  * PTLRPC Namespace
269  */
270 char* ptlrpc_dir_nm_1[]={
271         "counters",
272         0
273 };
274
275 lprocfs_vars_t ptlrpc_var_nm_1[]={
276         {"msgs_alloc", lprocfs_ll_rd, lprocfs_ll_wr},
277         {"msgs_max", lprocfs_ll_rd, lprocfs_ll_wr},
278         {"recv_count", lprocfs_ll_rd, lprocfs_ll_wr},
279         {"recv_length", lprocfs_ll_rd, lprocfs_ll_wr},
280         {"send_count", lprocfs_ll_rd, lprocfs_ll_wr},
281         {"send_length", lprocfs_ll_rd, lprocfs_ll_wr},
282         {"portal_kmemory", lprocfs_ll_rd, lprocfs_ll_wr},
283         {"0", 0, 0}
284 };
285
286 char* ptlrpc_dir_nm_2[] = {
287         "network",
288         0
289 };
290
291 lprocfs_vars_t ptlrpc_var_nm_2[] = {
292         {"type", rd_string, wr_string},
293         {"mtu", lprocfs_ll_rd, lprocfs_ll_wr},
294         {"rxpackets", lprocfs_ll_rd, lprocfs_ll_wr},
295         {"txpackets", lprocfs_ll_rd, lprocfs_ll_wr},
296         {"txbytes", lprocfs_ll_rd, lprocfs_ll_wr},
297         {"0", 0, 0}
298 };
299
300 lprocfs_group_t lprocfs_ptlrpc_nm[]={
301          {obd_dir_nm_1, obd_var_nm_1, e_generic},
302          {ptlrpc_dir_nm_1, ptlrpc_var_nm_1, e_generic},
303          {ptlrpc_dir_nm_2, ptlrpc_var_nm_2, e_specific},
304          {0, 0, 0}
305 };
306
307
308 /*
309  * Building the entire device namespace. This will be used during attach and
310  * detach to associate the namespace with the class of the device
311  */
312
313 lprocfs_obd_nm_t obd_nm[]={
314         {"mdc", lprocfs_mdc_nm, sizeof(struct lprofiler_gen)},
315         {"mds", lprocfs_mds_nm, sizeof(struct lprofiler_gen)},
316         {"osc", lprocfs_osc_nm, sizeof(struct lprofiler_gen)},
317         {"ost", lprocfs_ost_lov_obdf_nm, sizeof(struct lprofiler_gen)},
318         {"lov", lprocfs_ost_lov_obdf_nm, sizeof(struct lprofiler_gen)},
319         {"obdfilter", lprocfs_ost_lov_obdf_nm, sizeof(struct lprofiler_gen)},
320         {"obdecho", lprocfs_ost_lov_obdf_nm, sizeof(struct lprofiler_gen)},
321         {"ldlm", lprocfs_ldlm_nm, sizeof(struct lprofiler_ldlm)},
322         {"ptlrpc", lprocfs_ptlrpc_nm, sizeof(struct lprofiler_ptlrpc)},
323         {"0", 0, 0}
324 };
325
326 #else
327
328 lprocfs_obd_nm_t* obd_nm=0;
329
330 #endif
331
332 /*  opening /dev/obd */
333 static int obd_class_open(struct inode * inode, struct file * file)
334 {
335         ENTRY;
336
337         file->private_data = NULL;
338         CDEBUG(D_IOCTL, "MOD_INC_USE for open: count = %d\n",
339                atomic_read(&(THIS_MODULE)->uc.usecount));
340         MOD_INC_USE_COUNT;
341         RETURN(0);
342 }
343
344 /*  closing /dev/obd */
345 static int obd_class_release(struct inode * inode, struct file * file)
346 {
347         ENTRY;
348
349         // XXX drop lsm, connections here
350         if (file->private_data)
351                 file->private_data = NULL;
352
353         CDEBUG(D_IOCTL, "MOD_DEC_USE for close: count = %d\n",
354                atomic_read(&(THIS_MODULE)->uc.usecount) - 1);
355         MOD_DEC_USE_COUNT;
356         RETURN(0);
357 }
358
359
360 inline void obd_data2conn(struct lustre_handle *conn, struct obd_ioctl_data *data)
361 {
362         conn->addr = data->ioc_addr;
363         conn->cookie = data->ioc_cookie;
364 }
365
366
367 inline void obd_conn2data(struct obd_ioctl_data *data, struct lustre_handle *conn)
368 {
369         data->ioc_addr = conn->addr;
370         data->ioc_cookie = conn->cookie;
371 }
372
373
374 /* to control /dev/obd */
375 static int obd_class_ioctl (struct inode * inode, struct file * filp,
376                             unsigned int cmd, unsigned long arg)
377 {
378         char *buf = NULL;
379         int len = 0;
380         struct obd_ioctl_data *data;
381         struct obd_device *obd = filp->private_data;
382
383         struct lustre_handle conn;
384         int rw = OBD_BRW_READ;
385         int err = 0;
386         int serialised = 0;
387         int l_idx = 0;
388         ENTRY;
389
390         switch (cmd)
391         {
392         case OBD_IOC_BRW_WRITE:
393         case OBD_IOC_BRW_READ:
394         case OBD_IOC_GETATTR:
395                 break;
396         default:
397                 down(&obd_conf_sem);
398                 serialised = 1;
399                 break;
400         }
401
402         if (!obd && cmd != OBD_IOC_DEVICE && cmd != TCGETS &&
403             cmd != OBD_IOC_LIST &&
404             cmd != OBD_IOC_NAME2DEV && cmd != OBD_IOC_NEWDEV) {
405                 CERROR("OBD ioctl: No device\n");
406                 GOTO(out, err=-EINVAL);
407         }
408         if (obd_ioctl_getdata(&buf, &len, (void *)arg)) {
409                 CERROR("OBD ioctl: data error\n");
410                 GOTO(out, err=-EINVAL);
411         }
412         data = (struct obd_ioctl_data *)buf;
413
414         switch (cmd) {
415         case TCGETS:
416                 GOTO(out, err=-EINVAL);
417         case OBD_IOC_DEVICE: {
418                 CDEBUG(D_IOCTL, "\n");
419                 if (data->ioc_dev >= MAX_OBD_DEVICES || data->ioc_dev < 0) {
420                         CERROR("OBD ioctl: DEVICE insufficient devices\n");
421                         GOTO(out, err=-EINVAL);
422                 }
423                 CDEBUG(D_IOCTL, "device %d\n", data->ioc_dev);
424
425                 filp->private_data = &obd_dev[data->ioc_dev];
426                 GOTO(out, err=0);
427         }
428
429         case OBD_IOC_LIST: {
430                 int i;
431                 char *buf2 = data->ioc_bulk;
432                 int remains = data->ioc_inllen1;
433
434                 if (!data->ioc_inlbuf1) {
435                         CERROR("No buffer passed!\n");
436                         GOTO(out, err=-EINVAL);
437                 }
438
439
440                 for (i = 0 ; i < MAX_OBD_DEVICES ; i++) {
441                         int l;
442                         char *status;
443                         struct obd_device *obd = &obd_dev[i];
444                         if (!obd->obd_type)
445                                 continue;
446                         if (obd->obd_flags & OBD_SET_UP)
447                                 status = "UP";
448                         else if (obd->obd_flags & OBD_ATTACHED)
449                                 status = "AT";
450                         else
451                                 status = "-";
452                         l = snprintf(buf2, remains, "%2d %s %s %s %s %d\n",
453                                      i, status, obd->obd_type->typ_name,
454                                      obd->obd_name, obd->obd_uuid, obd->obd_type->typ_refcnt);
455                         buf2 +=l;
456                         remains -=l;
457                         if (remains <= 0) {
458                                 CERROR("not enough space for device listing\n");
459                                 break;
460                         }
461                 }
462
463                 err = copy_to_user((int *)arg, data, len);
464                 GOTO(out, err);
465         }
466
467
468         case OBD_IOC_NAME2DEV: {
469                 /* Resolve a device name.  This does not change the
470                  * currently selected device.
471                  */
472                 int dev;
473
474                 if (!data->ioc_inllen1 || !data->ioc_inlbuf1 ) {
475                         CERROR("No name passed,!\n");
476                         GOTO(out, err=-EINVAL);
477                 }
478                 if (data->ioc_inlbuf1[data->ioc_inllen1-1] !=0) {
479                         CERROR("Name not nul terminated!\n");
480                         GOTO(out, err=-EINVAL);
481                 }
482
483                 CDEBUG(D_IOCTL, "device name %s\n", data->ioc_inlbuf1);
484                 dev = class_name2dev(data->ioc_inlbuf1);
485                 data->ioc_dev = dev;
486                 if (dev == -1) {
487                         CDEBUG(D_IOCTL, "No device for name %s!\n",
488                                data->ioc_inlbuf1);
489                         GOTO(out, err=-EINVAL);
490                 }
491
492                 CDEBUG(D_IOCTL, "device name %s, dev %d\n", data->ioc_inlbuf1,
493                        dev);
494                 err = copy_to_user((int *)arg, data, sizeof(*data));
495                 GOTO(out, err);
496         }
497
498         case OBD_IOC_UUID2DEV: {
499                 /* Resolve a device uuid.  This does not change the
500                  * currently selected device.
501                  */
502                 int dev;
503
504                 if (!data->ioc_inllen1 || !data->ioc_inlbuf1) {
505                         CERROR("No UUID passed!\n");
506                         GOTO(out, err=-EINVAL);
507                 }
508                 if (data->ioc_inlbuf1[data->ioc_inllen1-1] !=0) {
509                         CERROR("Name not nul terminated!\n");
510                         GOTO(out, err=-EINVAL);
511                 }
512
513                 CDEBUG(D_IOCTL, "device name %s\n", data->ioc_inlbuf1);
514                 dev = class_uuid2dev(data->ioc_inlbuf1);
515                 data->ioc_dev = dev;
516                 if (dev == -1) {
517                         CDEBUG(D_IOCTL, "No device for name %s!\n",
518                                data->ioc_inlbuf1);
519                         GOTO(out, err=-EINVAL);
520                 }
521
522                 CDEBUG(D_IOCTL, "device name %s, dev %d\n", data->ioc_inlbuf1,
523                        dev);
524                 err = copy_to_user((int *)arg, data, sizeof(*data));
525                 GOTO(out, err);
526         }
527
528         case OBD_IOC_NEWDEV: {
529                 int dev = -1;
530                 int i;
531
532                 filp->private_data = NULL;
533                 for (i = 0 ; i < MAX_OBD_DEVICES ; i++) {
534                         struct obd_device *obd = &obd_dev[i];
535                         if (!obd->obd_type) {
536                                 filp->private_data = obd;
537                                 dev = i;
538                                 break;
539                         }
540                 }
541
542
543                 data->ioc_dev = dev;
544                 if (dev == -1)
545                         GOTO(out, err=-EINVAL);
546
547                 err = copy_to_user((int *)arg, data, sizeof(*data));
548                 GOTO(out, err);
549         }
550
551         case OBD_IOC_ATTACH: {
552                 struct obd_type *type;
553                 int minor;
554
555                 /* have we attached a type to this device */
556                 if (obd->obd_flags & OBD_ATTACHED || obd->obd_type) {
557                         CERROR("OBD: Device %d already typed as %s.\n",
558                                obd->obd_minor, MKSTR(obd->obd_type->typ_name));
559                         GOTO(out, err=-EBUSY);
560                 }
561
562                 if (!data->ioc_inllen1 || !data->ioc_inlbuf1) {
563                         CERROR("No type passed!\n");
564                         GOTO(out, err=-EINVAL);
565                 }
566                 if (data->ioc_inlbuf1[data->ioc_inllen1-1] !=0) {
567                         CERROR("Type not nul terminated!\n");
568                         GOTO(out, err=-EINVAL);
569                 }
570
571                 CDEBUG(D_IOCTL, "attach type %s name: %s uuid: %s\n",
572                        MKSTR(data->ioc_inlbuf1),
573                        MKSTR(data->ioc_inlbuf2), MKSTR(data->ioc_inlbuf3));
574
575                 /* find the type */
576                 type = class_nm_to_type(data->ioc_inlbuf1);
577                 if (!type) {
578                         CERROR("OBD: unknown type dev %d\n", obd->obd_minor);
579                         GOTO(out, err=-EINVAL);
580                 }
581
582                 minor = obd->obd_minor;
583                 memset(obd, 0, sizeof(*obd));
584                 obd->obd_minor = minor;
585                 obd->obd_type = type;
586                 INIT_LIST_HEAD(&obd->obd_exports);
587                 INIT_LIST_HEAD(&obd->obd_imports);
588                 spin_lock_init(&obd->obd_dev_lock);
589
590                 /* do the attach */
591                 if (OBP(obd, attach))
592                         err = OBP(obd,attach)(obd, sizeof(*data), data);
593                 if (err) {
594                         obd->obd_type = NULL;
595                 } else {
596                         obd->obd_flags |= OBD_ATTACHED;
597
598                         type->typ_refcnt++;
599                         CDEBUG(D_IOCTL, "OBD: dev %d attached type %s\n",
600                                obd->obd_minor, data->ioc_inlbuf1);
601                         if (data->ioc_inlbuf2) {
602                                 int len = strlen(data->ioc_inlbuf2) + 1;
603                                 OBD_ALLOC(obd->obd_name, len);
604                                 if (!obd->obd_name) {
605                                         CERROR("no memory\n");
606                                         LBUG();
607                                 }
608                                 memcpy(obd->obd_name, data->ioc_inlbuf2, len);
609                                 /* obd->obd_proc_entry =
610                                         proc_lustre_register_obd_device(obd);
611                                 */
612                         } else {
613                                 CERROR("WARNING: unnamed obd device\n");
614                                 obd->obd_proc_entry = NULL;
615                         }
616
617                         if (data->ioc_inlbuf3) {
618                                 int len = strlen(data->ioc_inlbuf3);
619                                 if (len >= sizeof(obd->obd_uuid)) {
620                                         CERROR("uuid must be < %d bytes long\n",
621                                                sizeof(obd->obd_uuid));
622                                         if (obd->obd_name)
623                                                 OBD_FREE(obd->obd_name,
624                                                          strlen(obd->obd_name) + 1);
625                                         GOTO(out, err=-EINVAL);
626                                 }
627                                 memcpy(obd->obd_uuid, data->ioc_inlbuf3, len);
628                         }
629                         /* Get the LprocFS namespace for this device class */
630                         /*
631                         l_idx = lprocfs_get_nm(data->ioc_inlbuf1, obd_nm);
632                         if (l_idx < 0) {
633                                 CERROR("Non-existent device class"
634                                        "or proc/lustre not compiled \n");
635                         } else {
636                                 lprocfs_reg_dev(obd, obd_nm[l_idx].obd_names,
637                                                 obd_nm[l_idx].cntr_blk_sz);
638                         }
639                         */
640                         CDEBUG(D_IOCTL, "MOD_INC_USE for attach: count = %d\n",
641                                atomic_read(&(THIS_MODULE)->uc.usecount));
642                         MOD_INC_USE_COUNT;
643                 }
644
645                 GOTO(out, err);
646         }
647
648         case OBD_IOC_DETACH: {
649                 ENTRY;
650                 if (obd->obd_flags & OBD_SET_UP) {
651                         CERROR("OBD device %d still set up\n", obd->obd_minor);
652                         GOTO(out, err=-EBUSY);
653                 }
654                 if (!(obd->obd_flags & OBD_ATTACHED) ) {
655                         CERROR("OBD device %d not attached\n", obd->obd_minor);
656                         GOTO(out, err=-ENODEV);
657                 }
658 #warning FIXME: Mike, we probably need some sort of "force detach" here
659                 if (!list_empty(&obd->obd_exports) ) {
660                         CERROR("OBD device %d (%p) has exports\n",
661                                obd->obd_minor, obd);
662                         GOTO(out, err=-EBUSY);
663                 }
664
665                 /*
666                 if (lprocfs_dereg_dev(obd) != LPROCFS_SUCCESS) {
667                         CERROR("Could not remove /proc entry\n");
668                 }
669                 */
670                 if (obd->obd_name) {
671                         OBD_FREE(obd->obd_name, strlen(obd->obd_name)+1);
672                         obd->obd_name = NULL;
673                 }
674                 /*
675                 if (obd->obd_proc_entry)
676                         proc_lustre_release_obd_device(obd);
677                 */
678
679                 obd->obd_flags &= ~OBD_ATTACHED;
680                 obd->obd_type->typ_refcnt--;
681                 obd->obd_type = NULL;
682                 CDEBUG(D_IOCTL, "MOD_DEC_USE for detach: count = %d\n",
683                        atomic_read(&(THIS_MODULE)->uc.usecount) - 1);
684                 MOD_DEC_USE_COUNT;
685                 GOTO(out, err = 0);
686         }
687
688         case OBD_IOC_SETUP: {
689                 /* have we attached a type to this device? */
690                 if (!(obd->obd_flags & OBD_ATTACHED)) {
691                         CERROR("Device %d not attached\n", obd->obd_minor);
692                         GOTO(out, err=-ENODEV);
693                 }
694
695                 /* has this been done already? */
696                 if ( obd->obd_flags & OBD_SET_UP ) {
697                         CERROR("Device %d already setup (type %s)\n",
698                                obd->obd_minor, obd->obd_type->typ_name);
699                         GOTO(out, err=-EBUSY);
700                 }
701
702                 if ( OBT(obd) && OBP(obd, setup) )
703                         err = obd_setup(obd, sizeof(*data), data);
704
705                 if (!err) {
706                         obd->obd_type->typ_refcnt++;
707                         obd->obd_flags |= OBD_SET_UP;
708                 }
709
710                 GOTO(out, err);
711         }
712         case OBD_IOC_CLEANUP: {
713                 /* have we attached a type to this device? */
714                 if (!(obd->obd_flags & OBD_ATTACHED)) {
715                         CERROR("Device %d not attached\n", obd->obd_minor);
716                         GOTO(out, err=-ENODEV);
717                 }
718
719                 if ( OBT(obd) && OBP(obd, cleanup) )
720                         err = obd_cleanup(obd);
721
722                 if (!err) {
723                         obd->obd_flags &= ~OBD_SET_UP;
724                         obd->obd_type->typ_refcnt--;
725                 }
726                 GOTO(out, err);
727         }
728
729         case OBD_IOC_CONNECT: {
730                 char * cluuid = "OBD_CLASS_UUID";
731                 obd_data2conn(&conn, data);
732
733                 err = obd_connect(&conn, obd, cluuid);
734
735                 CDEBUG(D_IOCTL, "assigned export "LPX64"\n", conn.addr);
736                 obd_conn2data(data, &conn);
737                 if (err)
738                         GOTO(out, err);
739
740                 err = copy_to_user((int *)arg, data, sizeof(*data));
741                 // XXX save connection data into file handle
742                 GOTO(out, err);
743         }
744
745         case OBD_IOC_DISCONNECT: {
746                 obd_data2conn(&conn, data);
747                 err = obd_disconnect(&conn);
748                 GOTO(out, err);
749         }
750
751         case OBD_IOC_DEC_USE_COUNT: {
752                 CDEBUG(D_IOCTL, "MOD_DEC_USE for force dec: count = %d\n",
753                        atomic_read(&(THIS_MODULE)->uc.usecount) - 1);
754                 MOD_DEC_USE_COUNT;
755                 GOTO(out, err=0);
756         }
757
758         case OBD_IOC_CREATE: {
759                 struct lov_stripe_md *lsm = NULL;
760                 obd_data2conn(&conn, data);
761
762 #warning FIXME: save lsm into file handle for other ops, release on close
763                 err = obd_create(&conn, &data->ioc_obdo1, &lsm);
764                 if (err)
765                         GOTO(out, err);
766
767                 err = copy_to_user((int *)arg, data, sizeof(*data));
768                 GOTO(out, err);
769         }
770
771         case OBD_IOC_GETATTR: {
772
773                 obd_data2conn(&conn, data);
774                 err = obd_getattr(&conn, &data->ioc_obdo1, NULL);
775                 if (err)
776                         GOTO(out, err);
777
778                 err = copy_to_user((int *)arg, data, sizeof(*data));
779                 GOTO(out, err);
780         }
781
782         case OBD_IOC_SETATTR: {
783                 obd_data2conn(&conn, data);
784                 err = obd_setattr(&conn, &data->ioc_obdo1, NULL);
785                 if (err)
786                         GOTO(out, err);
787
788                 err = copy_to_user((int *)arg, data, sizeof(*data));
789                 GOTO(out, err);
790         }
791
792         case OBD_IOC_DESTROY: {
793                 //void *ea;
794                 obd_data2conn(&conn, data);
795
796                 err = obd_destroy(&conn, &data->ioc_obdo1, NULL);
797                 if (err)
798                         GOTO(out, err);
799
800                 err = copy_to_user((int *)arg, data, sizeof(*data));
801                 GOTO(out, err);
802         }
803
804         case OBD_IOC_OPEN: {
805                 struct lov_stripe_md *lsm = NULL; // XXX fill in from create
806
807                 obd_data2conn(&conn, data);
808                 err = obd_open(&conn, &data->ioc_obdo1, lsm);
809                 GOTO(out, err);
810         }
811
812         case OBD_IOC_CLOSE: {
813                 struct lov_stripe_md *lsm = NULL; // XXX fill in from create
814
815                 obd_data2conn(&conn, data);
816                 obd_data2conn(&conn, data);
817                 err = obd_close(&conn, &data->ioc_obdo1, lsm);
818                 GOTO(out, err);
819         }
820
821         case OBD_IOC_BRW_WRITE:
822                 rw = OBD_BRW_WRITE;
823         case OBD_IOC_BRW_READ: {
824                 struct lov_stripe_md tmp_lsm; // XXX fill in from create
825                 struct lov_stripe_md *lsm = &tmp_lsm; // XXX fill in from create
826                 struct io_cb_data *cbd = ll_init_cb();
827                 obd_count       pages = 0;
828                 struct brw_page *pga, *pgp;
829                 __u64 id = data->ioc_obdo1.o_id;
830                 int gfp_mask = (id & 1) ? GFP_HIGHUSER : GFP_KERNEL;
831                 int verify = (id != 0);
832                 __u64 off;
833                 int j;
834
835                 if (!cbd)
836                         GOTO(out, err = -ENOMEM);
837
838                 obd_data2conn(&conn, data);
839
840                 pages = data->ioc_count / PAGE_SIZE;
841                 off = data->ioc_offset;
842
843                 CDEBUG(D_INODE, "BRW %s with %d pages @ "LPX64"\n",
844                        rw == OBD_BRW_READ ? "read" : "write", pages, off);
845                 OBD_ALLOC(pga, pages * sizeof(*pga));
846                 if (!pga) {
847                         CERROR("no memory for %d BRW per-page data\n", pages);
848                         GOTO(brw_free, err = -ENOMEM);
849                 }
850
851                 memset(lsm, 0, sizeof(*lsm)); // XXX don't do this later
852                 lsm->lsm_object_id = id; // ensure id == lsm->lsm_object_id
853
854                 for (j = 0, pgp = pga; j < pages; j++, off += PAGE_SIZE, pgp++){
855                         pgp->pg = alloc_pages(gfp_mask, 0);
856                         if (!pgp->pg) {
857                                 CERROR("no memory for brw pages\n");
858                                 GOTO(brw_cleanup, err = -ENOMEM);
859                         }
860                         pgp->count = PAGE_SIZE;
861                         pgp->off = off;
862                         pgp->flag = 0;
863
864                         if (verify) {
865                                 void *addr = kmap(pgp->pg);
866
867                                 if (rw == OBD_BRW_WRITE)
868                                         page_debug_setup(addr, pgp->count,
869                                                          pgp->off, id);
870                                 else
871                                         page_debug_setup(addr, pgp->count,
872                                                          0xdeadbeef00c0ffee,
873                                                          0xdeadbeef00c0ffee);
874                                 kunmap(pgp->pg);
875                         }
876                 }
877
878                 err = obd_brw(rw, &conn, lsm, j, pga, ll_sync_io_cb, cbd);
879                 if (err)
880                         CERROR("test_brw: error from obd_brw: err = %d\n", err);
881                 EXIT;
882         brw_cleanup:
883                 for (j = 0, pgp = pga; j < pages; j++, pgp++) {
884                         if (pgp->pg != NULL) {
885                                 if (verify && !err) {
886                                         void *addr = kmap(pgp->pg);
887
888                                         err = page_debug_check("test_brw",
889                                                                addr,
890                                                                PAGE_SIZE,
891                                                                pgp->off,id);
892                                         kunmap(pgp->pg);
893                                 }
894                                 __free_pages(pgp->pg, 0);
895                         }
896                 }
897         brw_free:
898                 OBD_FREE(pga, pages * sizeof(*pga));
899                 GOTO(out, err);
900         }
901         default:
902                 obd_data2conn(&conn, data);
903
904                 err = obd_iocontrol(cmd, &conn, len, data, NULL);
905                 if (err)
906                         GOTO(out, err);
907
908                 err = copy_to_user((int *)arg, data, len);
909                 GOTO(out, err);
910         }
911
912  out:
913         if (buf)
914                 OBD_FREE(buf, len);
915         if (serialised)
916                 up(&obd_conf_sem);
917         RETURN(err);
918 } /* obd_class_ioctl */
919
920
921
922 /* declare character device */
923 static struct file_operations obd_psdev_fops = {
924         ioctl: obd_class_ioctl,       /* ioctl */
925         open: obd_class_open,        /* open */
926         release: obd_class_release,     /* release */
927 };
928
929 /* modules setup */
930 #define OBD_MINOR 241
931 static struct miscdevice obd_psdev = {
932         OBD_MINOR,
933         "obd_psdev",
934         &obd_psdev_fops
935 };
936
937 void (*class_signal_connection_failure)(struct ptlrpc_connection *);
938
939 EXPORT_SYMBOL(obd_dev);
940 EXPORT_SYMBOL(obdo_cachep);
941 EXPORT_SYMBOL(obd_memory);
942 EXPORT_SYMBOL(obd_fail_loc);
943 EXPORT_SYMBOL(obd_timeout);
944 EXPORT_SYMBOL(obd_recovery_upcall);
945
946 EXPORT_SYMBOL(class_register_type);
947 EXPORT_SYMBOL(class_unregister_type);
948 EXPORT_SYMBOL(class_name2dev);
949 EXPORT_SYMBOL(class_uuid2dev);
950 EXPORT_SYMBOL(class_uuid2obd);
951 EXPORT_SYMBOL(class_new_export);
952 EXPORT_SYMBOL(class_destroy_export);
953 EXPORT_SYMBOL(class_connect);
954 EXPORT_SYMBOL(class_conn2export);
955 EXPORT_SYMBOL(class_conn2obd);
956 EXPORT_SYMBOL(class_conn2cliimp);
957 EXPORT_SYMBOL(class_conn2ldlmimp);
958 EXPORT_SYMBOL(class_disconnect);
959 EXPORT_SYMBOL(class_disconnect_all);
960 //EXPORT_SYMBOL(class_uuid_parse);
961 EXPORT_SYMBOL(class_uuid_unparse);
962 //EXPORT_SYMBOL(class_multi_setup);
963 //EXPORT_SYMBOL(class_multi_cleanup);
964
965 EXPORT_SYMBOL(class_signal_connection_failure);
966 EXPORT_SYMBOL(ll_sync_io_cb);
967 EXPORT_SYMBOL(ll_init_cb);
968
969 static int __init init_obdclass(void)
970 {
971         struct obd_device *obd;
972         int err;
973         int i;
974
975         printk(KERN_INFO "OBD class driver  v0.9, info@clusterfs.com\n");
976
977         sema_init(&obd_conf_sem, 1);
978         INIT_LIST_HEAD(&obd_types);
979
980         if ((err = misc_register(&obd_psdev))) {
981                 CERROR("cannot register %d err %d\n", OBD_MINOR, err);
982                 return err;
983         }
984
985         /* This struct is already zerod for us (static global) */
986         for (i = 0, obd = obd_dev; i < MAX_OBD_DEVICES; i++, obd++)
987                 obd->obd_minor = i;
988
989         err = obd_init_caches();
990         if (err)
991                 return err;
992         obd_sysctl_init();
993         return 0;
994 }
995
996 static void __exit cleanup_obdclass(void)
997 {
998         int i;
999         ENTRY;
1000
1001         misc_deregister(&obd_psdev);
1002         for (i = 0; i < MAX_OBD_DEVICES; i++) {
1003                 struct obd_device *obd = &obd_dev[i];
1004                 if (obd->obd_type && (obd->obd_flags & OBD_SET_UP) &&
1005                     OBT(obd) && OBP(obd, detach)) {
1006                         /* XXX should this call generic detach otherwise? */
1007                         OBP(obd, detach)(obd);
1008                 }
1009         }
1010
1011         obd_cleanup_caches();
1012         obd_sysctl_clean();
1013         CERROR("obd memory leaked: %ld bytes\n", obd_memory);
1014         EXIT;
1015 }
1016
1017 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
1018 MODULE_DESCRIPTION("Lustre Class Driver v1.0");
1019 MODULE_LICENSE("GPL");
1020
1021 module_init(init_obdclass);
1022 module_exit(cleanup_obdclass);