Whamcloud - gitweb
merge b_devel into HEAD. Includes:
[fs/lustre-release.git] / lustre / obdclass / genops.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  * These are the only exported functions, they provide some generic
22  * infrastructure for managing object devices
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 #else 
33 #include <liblustre.h>
34 #include <linux/obd_class.h>
35 #include <linux/obd.h>
36 #endif
37 #include <linux/lprocfs_status.h>
38
39 extern struct list_head obd_types;
40 kmem_cache_t *obdo_cachep = NULL;
41 kmem_cache_t *import_cachep = NULL;
42 kmem_cache_t *export_cachep = NULL;
43
44 int (*ptlrpc_put_connection_superhack)(struct ptlrpc_connection *c);
45 void (*ptlrpc_abort_inflight_superhack)(struct obd_import *imp,
46                                         int dying_import);
47
48 /*
49  * support functions: we could use inter-module communication, but this
50  * is more portable to other OS's
51  */
52 static struct obd_type *class_search_type(char *name)
53 {
54         struct list_head *tmp;
55         struct obd_type *type;
56         CDEBUG(D_INFO, "SEARCH %s\n", name);
57
58         tmp = &obd_types;
59         list_for_each(tmp, &obd_types) {
60                 type = list_entry(tmp, struct obd_type, typ_chain);
61                 CDEBUG(D_INFO, "TYP %s\n", type->typ_name);
62                 if (strlen(type->typ_name) == strlen(name) &&
63                     strcmp(type->typ_name, name) == 0) {
64                         return type;
65                 }
66         }
67         return NULL;
68 }
69
70 struct obd_type *class_get_type(char *name)
71 {
72         struct obd_type *type = class_search_type(name);
73
74 #ifdef CONFIG_KMOD
75         if (!type) {
76                 if (!request_module(name)) {
77                         CDEBUG(D_INFO, "Loaded module '%s'\n", name);
78                         type = class_search_type(name);
79                 } else
80                         CDEBUG(D_INFO, "Can't load module '%s'\n", name);
81         }
82 #endif
83         if (type)
84                 __MOD_INC_USE_COUNT(type->typ_ops->o_owner);
85         return type;
86 }
87
88 void class_put_type(struct obd_type *type)
89 {
90         LASSERT(type);
91         __MOD_DEC_USE_COUNT(type->typ_ops->o_owner);
92 }
93
94 int class_register_type(struct obd_ops *ops, struct lprocfs_vars *vars,
95                         char *name)
96 {
97         struct obd_type *type;
98         int rc = 0;
99         ENTRY;
100
101         LASSERT(strnlen(name, 1024) < 1024);    /* sanity check */
102
103         if (class_search_type(name)) {
104                 CDEBUG(D_IOCTL, "Type %s already registered\n", name);
105                 RETURN(-EEXIST);
106         }
107
108         rc = -ENOMEM;
109         OBD_ALLOC(type, sizeof(*type));
110         if (type == NULL)
111                 RETURN(rc);
112
113         OBD_ALLOC(type->typ_ops, sizeof(*type->typ_ops));
114         OBD_ALLOC(type->typ_name, strlen(name) + 1);
115         if (type->typ_ops == NULL || type->typ_name == NULL)
116                 GOTO (failed, rc);
117
118         *(type->typ_ops) = *ops;
119         strcpy(type->typ_name, name);
120         list_add(&type->typ_chain, &obd_types);
121
122         type->typ_procroot = lprocfs_register(type->typ_name, proc_lustre_root,
123                                               vars, type);
124         if (IS_ERR(type->typ_procroot)) {
125                 rc = PTR_ERR(type->typ_procroot);
126                 type->typ_procroot = NULL;
127                 list_del(&type->typ_chain);
128                 GOTO (failed, rc);
129         }
130
131         RETURN (0);
132
133  failed:
134         if (type->typ_ops != NULL)
135                 OBD_FREE(type->typ_name, strlen(name) + 1);
136         if (type->typ_ops != NULL)
137                 OBD_FREE (type->typ_ops, sizeof (*type->typ_ops));
138         RETURN(rc);
139 }
140
141 int class_unregister_type(char *name)
142 {
143         struct obd_type *type = class_search_type(name);
144         ENTRY;
145
146         if (!type) {
147                 CERROR("unknown obd type\n");
148                 RETURN(-EINVAL);
149         }
150
151         if (type->typ_refcnt) {
152                 CERROR("type %s has refcount (%d)\n", name, type->typ_refcnt);
153                 /* This is a bad situation, let's make the best of it */
154                 /* Remove ops, but leave the name for debugging */
155                 OBD_FREE(type->typ_ops, sizeof(*type->typ_ops));
156                 RETURN(-EBUSY);
157         }
158
159         if (type->typ_procroot) {
160                 lprocfs_remove(type->typ_procroot);
161                 type->typ_procroot = NULL;
162         }
163
164         list_del(&type->typ_chain);
165         OBD_FREE(type->typ_name, strlen(name) + 1);
166         if (type->typ_ops != NULL)
167                 OBD_FREE(type->typ_ops, sizeof(*type->typ_ops));
168         OBD_FREE(type, sizeof(*type));
169         RETURN(0);
170 } /* class_unregister_type */
171
172 int class_name2dev(char *name)
173 {
174         int res = -1;
175         int i;
176
177         if (!name)
178                 return -1;
179
180         for (i = 0; i < MAX_OBD_DEVICES; i++) {
181                 struct obd_device *obd = &obd_dev[i];
182                 if (obd->obd_name && strcmp(name, obd->obd_name) == 0) {
183                         res = i;
184                         return res;
185                 }
186         }
187
188         return res;
189 }
190
191 int class_uuid2dev(struct obd_uuid *uuid)
192 {
193         int res = -1;
194         int i;
195
196         for (i = 0; i < MAX_OBD_DEVICES; i++) {
197                 struct obd_device *obd = &obd_dev[i];
198                 if (strncmp(uuid->uuid, obd->obd_uuid.uuid, sizeof(obd->obd_uuid.uuid)) == 0) {
199                         res = i;
200                         return res;
201                 }
202         }
203
204         return res;
205 }
206
207
208 struct obd_device *class_uuid2obd(struct obd_uuid *uuid)
209 {
210         int i;
211
212         for (i = 0; i < MAX_OBD_DEVICES; i++) {
213                 struct obd_device *obd = &obd_dev[i];
214                 if (strncmp(uuid->uuid, obd->obd_uuid.uuid, sizeof(obd->obd_uuid.uuid)) == 0)
215                         return obd;
216         }
217
218         return NULL;
219 }
220
221 void obd_cleanup_caches(void)
222 {
223         int rc;
224         ENTRY;
225         if (obdo_cachep) {
226                 rc = kmem_cache_destroy(obdo_cachep);
227                 if (rc)
228                         CERROR("Cannot destory ll_obdo_cache\n");
229                 obdo_cachep = NULL;
230         }
231         if (import_cachep) {
232                 rc = kmem_cache_destroy(import_cachep);
233                 if (rc)
234                         CERROR("Cannot destory ll_import_cache\n");
235                 import_cachep = NULL;
236         }
237         if (export_cachep) {
238                 rc = kmem_cache_destroy(export_cachep);
239                 if (rc)
240                         CERROR("Cannot destory ll_export_cache\n");
241                 export_cachep = NULL;
242         }
243         EXIT;
244 }
245
246 int obd_init_caches(void)
247 {
248         ENTRY;
249         LASSERT(obdo_cachep == NULL);
250         obdo_cachep = kmem_cache_create("ll_obdo_cache", sizeof(struct obdo),
251                                         0, 0, NULL, NULL);
252         if (!obdo_cachep)
253                 GOTO(out, -ENOMEM);
254
255         LASSERT(export_cachep == NULL);
256         export_cachep = kmem_cache_create("ll_export_cache",
257                                           sizeof(struct obd_export),
258                                           0, 0, NULL, NULL);
259         if (!export_cachep)
260                 GOTO(out, -ENOMEM);
261
262         LASSERT(import_cachep == NULL);
263         import_cachep = kmem_cache_create("ll_import_cache",
264                                           sizeof(struct obd_import),
265                                           0, 0, NULL, NULL);
266         if (!import_cachep)
267                 GOTO(out, -ENOMEM);
268
269         RETURN(0);
270  out:
271         obd_cleanup_caches();
272         RETURN(-ENOMEM);
273
274 }
275
276 /* map connection to client */
277 struct obd_export *class_conn2export(struct lustre_handle *conn)
278 {
279         struct obd_export *export;
280         ENTRY;
281
282         if (!conn) {
283                 CDEBUG(D_CACHE, "looking for null handle\n");
284                 RETURN(NULL);
285         }
286
287         if (conn->addr == -1) {  /* this means assign a new connection */
288                 CDEBUG(D_CACHE, "want a new connection\n");
289                 RETURN(NULL);
290         }
291
292         if (!conn->addr) {
293                 CDEBUG(D_CACHE, "looking for null addr\n");
294                 fixme();
295                 RETURN(NULL);
296         }
297
298         CDEBUG(D_IOCTL, "looking for export addr "LPX64" cookie "LPX64"\n",
299                conn->addr, conn->cookie);
300         export = (struct obd_export *) (unsigned long)conn->addr;
301         if (!kmem_cache_validate(export_cachep, (void *)export))
302                 RETURN(NULL);
303
304         if (export->exp_cookie != conn->cookie)
305                 RETURN(NULL);
306         RETURN(export);
307 } /* class_conn2export */
308
309 struct obd_device *class_conn2obd(struct lustre_handle *conn)
310 {
311         struct obd_export *export;
312         export = class_conn2export(conn);
313         if (export)
314                 return export->exp_obd;
315         fixme();
316         return NULL;
317 }
318
319 struct obd_import *class_conn2cliimp(struct lustre_handle *conn)
320 {
321         return &class_conn2obd(conn)->u.cli.cl_import;
322 }
323
324 struct obd_import *class_conn2ldlmimp(struct lustre_handle *conn)
325 {
326         return &class_conn2export(conn)->exp_ldlm_data.led_import;
327 }
328
329 struct obd_export *class_new_export(struct obd_device *obddev)
330 {
331         struct obd_export *export;
332
333         PORTAL_SLAB_ALLOC(export, export_cachep, sizeof(*export));
334         if (!export) {
335                 CERROR("no memory! (minor %d)\n", obddev->obd_minor);
336                 return NULL;
337         }
338
339         get_random_bytes(&export->exp_cookie, sizeof(export->exp_cookie));
340         export->exp_obd = obddev;
341         /* XXX this should be in LDLM init */
342         INIT_LIST_HEAD(&export->exp_ldlm_data.led_held_locks);
343         INIT_LIST_HEAD(&export->exp_conn_chain);
344         spin_lock(&obddev->obd_dev_lock);
345         list_add(&export->exp_obd_chain, &export->exp_obd->obd_exports);
346         spin_unlock(&obddev->obd_dev_lock);
347         return export;
348 }
349
350 void class_destroy_export(struct obd_export *exp)
351 {
352         LASSERT(exp->exp_cookie != DEAD_HANDLE_MAGIC);
353
354         CDEBUG(D_IOCTL, "destroying export %p/%s\n", exp,
355                exp->exp_client_uuid.uuid);
356
357         spin_lock(&exp->exp_obd->obd_dev_lock);
358         list_del(&exp->exp_obd_chain);
359         spin_unlock(&exp->exp_obd->obd_dev_lock);
360
361         /* XXXshaver no connection here... */
362         if (exp->exp_connection)
363                 spin_lock(&exp->exp_connection->c_lock);
364         list_del(&exp->exp_conn_chain);
365         if (exp->exp_connection) {
366                 spin_unlock(&exp->exp_connection->c_lock);
367                 ptlrpc_put_connection_superhack(exp->exp_connection);
368         }
369
370         /* Abort any inflight DLM requests and NULL out their (about to be
371          * freed) import. */
372         if (exp->exp_ldlm_data.led_import.imp_obd)
373                 ptlrpc_abort_inflight_superhack(&exp->exp_ldlm_data.led_import,
374                                                 1);
375
376         PORTAL_SLAB_FREE(exp, export_cachep, sizeof(*exp));
377 }
378
379 /* a connection defines an export context in which preallocation can
380    be managed. */
381 int class_connect(struct lustre_handle *exporth, struct obd_device *obd,
382                   struct obd_uuid *cluuid)
383 {
384         struct obd_export * export;
385         if (exporth == NULL) {
386                 LBUG();
387                 return -EINVAL;
388         }
389
390         if (obd == NULL) {
391                 LBUG();
392                 return -EINVAL;
393         }
394
395         if (cluuid == NULL) {
396                 LBUG();
397                 return -EINVAL;
398         }
399
400         export = class_new_export(obd);
401         if (!export)
402                 return -ENOMEM;
403
404         exporth->addr = (__u64) (unsigned long)export;
405         exporth->cookie = export->exp_cookie;
406         memcpy(&export->exp_client_uuid, cluuid, sizeof(export->exp_client_uuid));
407
408         CDEBUG(D_IOCTL, "connect: addr %Lx cookie %Lx\n",
409                (long long)exporth->addr, (long long)exporth->cookie);
410         return 0;
411 }
412
413 int class_disconnect(struct lustre_handle *conn)
414 {
415         struct obd_export *export;
416         ENTRY;
417
418         if (!(export = class_conn2export(conn))) {
419                 fixme();
420                 CDEBUG(D_IOCTL, "disconnect: attempting to free "
421                        "nonexistent client "LPX64"\n", conn->addr);
422                 RETURN(-EINVAL);
423         }
424
425         CDEBUG(D_IOCTL, "disconnect: addr %Lx cookie %Lx\n",
426                        (long long)conn->addr, (long long)conn->cookie);
427
428         class_destroy_export(export);
429
430         RETURN(0);
431 }
432
433 void class_disconnect_all(struct obd_device *obddev)
434 {
435         int again = 1;
436
437         while (again) {
438                 spin_lock(&obddev->obd_dev_lock);
439                 if (!list_empty(&obddev->obd_exports)) {
440                         struct obd_export *export;
441                         struct lustre_handle conn;
442                         int rc;
443
444                         export = list_entry(obddev->obd_exports.next,
445                                             struct obd_export,
446                                             exp_obd_chain);
447                         conn.addr = (__u64)(unsigned long)export;
448                         conn.cookie = export->exp_cookie;
449                         spin_unlock(&obddev->obd_dev_lock);
450                         CERROR("force disconnecting %s:%s export %p\n",
451                                export->exp_obd->obd_type->typ_name,
452                                export->exp_connection ?
453                                (char *)export->exp_connection->c_remote_uuid.uuid :
454                                "<unconnected>", export);
455                         rc = obd_disconnect(&conn);
456                         if (rc < 0) {
457                                 /* AED: not so sure about this...  We can't
458                                  * loop here forever, yet we shouldn't leak
459                                  * exports on a struct we will soon destroy.
460                                  */
461                                 CERROR("destroy export %p with err: rc = %d\n",
462                                        export, rc);
463                                 class_destroy_export(export);
464                         }
465                 } else {
466                         spin_unlock(&obddev->obd_dev_lock);
467                         again = 0;
468                 }
469         }
470 }
471
472 #if 0
473
474 /* FIXME: Data is a space- or comma-separated list of device IDs.  This will
475  * have to change. */
476 int class_multi_setup(struct obd_device *obddev, uint32_t len, void *data)
477 {
478         int count, rc;
479         char *p;
480         ENTRY;
481
482         for (p = data, count = 0; p < (char *)data + len; count++) {
483                 char *end;
484                 int tmp = simple_strtoul(p, &end, 0);
485
486                 if (p == end) {
487                         CERROR("invalid device ID starting at: %s\n", p);
488                         GOTO(err_disconnect, rc = -EINVAL);
489                 }
490
491                 if (tmp < 0 || tmp >= MAX_OBD_DEVICES) {
492                         CERROR("Trying to sub dev %d  - dev no too large\n",
493                                tmp);
494                         GOTO(err_disconnect, rc  = -EINVAL);
495                 }
496
497                 rc = obd_connect(&obddev->obd_multi_conn[count], &obd_dev[tmp]);
498                 if (rc) {
499                         CERROR("cannot connect to device %d: rc = %d\n", tmp,
500                                rc);
501                         GOTO(err_disconnect, rc);
502                 }
503
504                 CDEBUG(D_INFO, "target OBD %d is of type %s\n", count,
505                        obd_dev[tmp].obd_type->typ_name);
506
507                 p = end + 1;
508         }
509
510         obddev->obd_multi_count = count;
511
512         RETURN(0);
513
514  err_disconnect:
515         for (count--; count >= 0; count--)
516                 obd_disconnect(&obddev->obd_multi_conn[count]);
517         return rc;
518 }
519
520 /*
521  *    remove all connections to this device
522  *    close all connections to lower devices
523  *    needed for forced unloads of OBD client drivers
524  */
525 int class_multi_cleanup(struct obd_device *obddev)
526 {
527         int i;
528
529         for (i = 0; i < obddev->obd_multi_count; i++) {
530                 int rc;
531                 struct obd_device *obd =
532                         class_conn2obd(&obddev->obd_multi_conn[i]);
533
534                 if (!obd) {
535                         CERROR("no such device [i %d]\n", i);
536                         RETURN(-EINVAL);
537                 }
538
539                 rc = obd_disconnect(&obddev->obd_multi_conn[i]);
540                 if (rc)
541                         CERROR("disconnect failure %d\n", obd->obd_minor);
542         }
543         return 0;
544 }
545 #endif