Whamcloud - gitweb
Lproc-snmp code drop
[fs/lustre-release.git] / lustre / obdclass / genops.c
index 648cdfa..fcc57a5 100644 (file)
@@ -1,8 +1,8 @@
 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
  * vim:expandtab:shiftwidth=8:tabstop=8:
-*
- *  linux/fs/ext2_obd/sim_obd.c
- * Copyright (C) 2001  Cluster File Systems, Inc.
+ *
+ * lustre/obdclass/genops.c
+ * Copyright (C) 2001-2002  Cluster File Systems, Inc.
  *
  * This code is issued under the GNU General Public License.
  * See the file COPYING in this distribution
 #include <linux/obd_class.h>
 #include <linux/random.h>
 #include <linux/slab.h>
+#include <linux/lprocfs_status.h>
 
-extern struct list_head obd_types; 
-extern struct obd_device obd_dev[MAX_OBD_DEVICES];
+extern struct list_head obd_types;
 kmem_cache_t *obdo_cachep = NULL;
-kmem_cache_t *export_cachep = NULL;
 kmem_cache_t *import_cachep = NULL;
+kmem_cache_t *export_cachep = NULL;
+
+int (*ptlrpc_put_connection_superhack)(struct ptlrpc_connection *c);
+
+/* I would prefer if these next four functions were in ptlrpc, to be honest,
+ * but obdclass uses them for the netregression ioctls. -phil */
+static int sync_io_timeout(void *data)
+{
+        struct io_cb_data *cbd = data;
+        struct ptlrpc_bulk_desc *desc;
+        ENTRY;
+
+        LASSERT(cbd);
+        desc = cbd->desc;
+
+        if (!desc) {
+                CERROR("no desc for timed-out BRW, reopen Bugzilla 214!\n");
+                RETURN(0); /* back to sleep -- someone had better wake us up! */
+        }
+
+        LASSERT(desc->bd_connection);
+
+        CERROR("IO of %d pages to/from %s:%d (conn %p) timed out\n",
+               desc->bd_page_count, desc->bd_connection->c_remote_uuid,
+               desc->bd_portal, desc->bd_connection);
+        desc->bd_connection->c_level = LUSTRE_CONN_RECOVD;
+        desc->bd_flags |= PTL_RPC_FL_TIMEOUT;
+        if (desc->bd_connection && class_signal_connection_failure) {
+                class_signal_connection_failure(desc->bd_connection);
+
+                /* We go back to sleep, until we're resumed or interrupted. */
+                RETURN(0);
+        }
+
+        /* If we can't be recovered, just abort the syscall with -ETIMEDOUT. */
+        RETURN(1);
+}
+
+static int sync_io_intr(void *data)
+{
+        struct io_cb_data *cbd = data;
+        struct ptlrpc_bulk_desc *desc = cbd->desc;
+
+        ENTRY;
+        desc->bd_flags |= PTL_RPC_FL_INTR;
+        RETURN(1); /* ignored, as of this writing */
+}
+
+int ll_sync_io_cb(struct io_cb_data *data, int err, int phase)
+{
+        int ret;
+        ENTRY;
+
+        if (phase == CB_PHASE_START) {
+                struct l_wait_info lwi;
+                lwi = LWI_TIMEOUT_INTR(obd_timeout * HZ, sync_io_timeout,
+                                       sync_io_intr, data);
+                ret = l_wait_event(data->waitq, data->complete, &lwi);
+                if (atomic_dec_and_test(&data->refcount))
+                        OBD_FREE(data, sizeof(*data));
+                if (ret == -EINTR)
+                        RETURN(ret);
+        } else if (phase == CB_PHASE_FINISH) {
+                data->err = err;
+                data->complete = 1;
+                wake_up(&data->waitq);
+                if (atomic_dec_and_test(&data->refcount))
+                        OBD_FREE(data, sizeof(*data));
+                RETURN(err);
+        } else                
+                LBUG();
+        EXIT;
+        return 0;
+}
+
+struct io_cb_data *ll_init_cb(void)
+{
+        struct io_cb_data *d;
+
+        OBD_ALLOC(d, sizeof(*d));
+        if (d) {
+                init_waitqueue_head(&d->waitq);
+                atomic_set(&d->refcount, 2);
+        }
+        RETURN(d);
+}
 
 /*
  * support functions: we could use inter-module communication, but this
@@ -36,7 +121,7 @@ static struct obd_type *class_search_type(char *nm)
         CDEBUG(D_INFO, "SEARCH %s\n", nm);
 
         tmp = &obd_types;
-        while ( (tmp = tmp->next) != &obd_types ) {
+        list_for_each(tmp, &obd_types) {
                 type = list_entry(tmp, struct obd_type, typ_chain);
                 CDEBUG(D_INFO, "TYP %s\n", type->typ_name);
                 if (strlen(type->typ_name) == strlen(nm) &&
@@ -64,9 +149,10 @@ struct obd_type *class_nm_to_type(char *nm)
         return type;
 }
 
-int class_register_type(struct obd_ops *ops, char *nm)
+int class_register_type(struct obd_ops *ops, struct lprocfs_vars* vars, char *nm)
 {
         struct obd_type *type;
+        int rc;
 
         ENTRY;
 
@@ -76,13 +162,21 @@ int class_register_type(struct obd_ops *ops, char *nm)
         }
 
         OBD_ALLOC(type, sizeof(*type));
+        OBD_ALLOC(type->typ_ops, sizeof(*type->typ_ops));
+        OBD_ALLOC(type->typ_name, strlen(nm) + 1);
         if (!type)
                 RETURN(-ENOMEM);
         INIT_LIST_HEAD(&type->typ_chain);
+        CDEBUG(D_INFO, "MOD_INC_USE for register_type: count = %d\n",
+               atomic_read(&(THIS_MODULE)->uc.usecount));
         MOD_INC_USE_COUNT;
-        list_add(&type->typ_chain, obd_types.next);
-        type->typ_ops = ops;
-        type->typ_name = nm;
+        list_add(&type->typ_chain, &obd_types);
+        memcpy(type->typ_ops, ops, sizeof(*type->typ_ops));
+        strcpy(type->typ_name, nm);
+        rc = lprocfs_reg_class(type, (lprocfs_vars_t *)vars, (void*)type);
+        if(rc)
+                RETURN(rc);
+        
         RETURN(0);
 }
 
@@ -92,18 +186,28 @@ int class_unregister_type(char *nm)
 
         ENTRY;
 
-        if ( !type ) {
+        if (!type) {
                 CERROR("unknown obd type\n");
                 RETURN(-EINVAL);
         }
 
-        if ( type->typ_refcnt ) {
+        if (type->typ_refcnt) {
                 CERROR("type %s has refcount (%d)\n", nm, type->typ_refcnt);
+                /* This is a bad situation, let's make the best of it */
+                /* Remove ops, but leave the name for debugging */
+                OBD_FREE(type->typ_ops, sizeof(*type->typ_ops));
                 RETURN(-EBUSY);
         }
+        if(type->typ_procroot)
+                lprocfs_dereg_class(type);
 
         list_del(&type->typ_chain);
+        OBD_FREE(type->typ_name, strlen(nm) + 1);
+        if (type->typ_ops != NULL)
+                OBD_FREE(type->typ_ops, sizeof(*type->typ_ops));
         OBD_FREE(type, sizeof(*type));
+        CDEBUG(D_INFO, "MOD_DEC_USE for register_type: count = %d\n",
+               atomic_read(&(THIS_MODULE)->uc.usecount) - 1);
         MOD_DEC_USE_COUNT;
         RETURN(0);
 } /* class_unregister_type */
@@ -127,14 +231,14 @@ int class_name2dev(char *name)
         return res;
 }
 
-int class_uuid2dev(char *name)
+int class_uuid2dev(char *uuid)
 {
         int res = -1;
         int i;
 
         for (i=0; i < MAX_OBD_DEVICES; i++) {
                 struct obd_device *obd = &obd_dev[i];
-                if (obd->obd_name && strncmp(name, obd->obd_uuid, 37) == 0) {
+                if (strncmp(uuid, obd->obd_uuid, sizeof(obd->obd_uuid)) == 0) {
                         res = i;
                         return res;
                 }
@@ -144,15 +248,14 @@ int class_uuid2dev(char *name)
 }
 
 
-struct obd_device *class_uuid2obd(char *name)
+struct obd_device *class_uuid2obd(char *uuid)
 {
         int i;
 
         for (i=0; i < MAX_OBD_DEVICES; i++) {
                 struct obd_device *obd = &obd_dev[i];
-                if (obd->obd_name && strncmp(name, obd->obd_uuid, 37) == 0) {
+                if (strncmp(uuid, obd->obd_uuid, sizeof(obd->obd_uuid)) == 0)
                         return obd;
-                }
         }
 
         return NULL;
@@ -162,22 +265,22 @@ void obd_cleanup_caches(void)
 {
         int rc;
         ENTRY;
-        if (obdo_cachep) { 
+        if (obdo_cachep) {
                 rc = kmem_cache_destroy(obdo_cachep);
                 if (rc)
-                        CERROR("Cannot destory obdo_cachep\n");
+                        CERROR("Cannot destory ll_obdo_cache\n");
                 obdo_cachep = NULL;
         }
-        if (import_cachep) { 
+        if (import_cachep) {
                 rc = kmem_cache_destroy(import_cachep);
                 if (rc)
-                        CERROR("Cannot destory import_cachep\n");
+                        CERROR("Cannot destory ll_import_cache\n");
                 import_cachep = NULL;
         }
-        if (export_cachep) { 
+        if (export_cachep) {
                 rc = kmem_cache_destroy(export_cachep);
                 if (rc)
-                        CERROR("Cannot destory import_cachep\n");
+                        CERROR("Cannot destory ll_export_cache\n");
                 export_cachep = NULL;
         }
         EXIT;
@@ -186,32 +289,26 @@ void obd_cleanup_caches(void)
 int obd_init_caches(void)
 {
         ENTRY;
-        if (obdo_cachep == NULL) {
-                obdo_cachep = kmem_cache_create("obdo_cache",
-                                                sizeof(struct obdo),
-                                                0, SLAB_HWCACHE_ALIGN,
-                                                NULL, NULL);
-                if (obdo_cachep == NULL)
-                        GOTO(out, -ENOMEM);
-        }
-
-        if (export_cachep == NULL) {
-                export_cachep = kmem_cache_create("export_cache",
-                                                sizeof(struct obd_export),
-                                                0, SLAB_HWCACHE_ALIGN,
-                                                NULL, NULL);
-                if (export_cachep == NULL)
-                        GOTO(out, -ENOMEM);
-        }
+        LASSERT(obdo_cachep == NULL);
+        obdo_cachep = kmem_cache_create("ll_obdo_cache", sizeof(struct obdo),
+                                        0, 0, NULL, NULL);
+        if (!obdo_cachep)
+                GOTO(out, -ENOMEM);
+
+        LASSERT(export_cachep == NULL);
+        export_cachep = kmem_cache_create("ll_export_cache",
+                                          sizeof(struct obd_export),
+                                          0, 0, NULL, NULL);
+        if (!export_cachep)
+                GOTO(out, -ENOMEM);
+
+        LASSERT(import_cachep == NULL);
+        import_cachep = kmem_cache_create("ll_import_cache",
+                                          sizeof(struct obd_import),
+                                          0, 0, NULL, NULL);
+        if (!import_cachep)
+                GOTO(out, -ENOMEM);
 
-        if (import_cachep == NULL) {
-                import_cachep = kmem_cache_create("import_cache",
-                                                sizeof(struct obd_import),
-                                                0, SLAB_HWCACHE_ALIGN,
-                                                NULL, NULL);
-                if (import_cachep == NULL)
-                        GOTO(out, -ENOMEM);
-        }
         RETURN(0);
  out:
         obd_cleanup_caches();
@@ -240,63 +337,109 @@ struct obd_export *class_conn2export(struct lustre_handle *conn)
                 RETURN(NULL);
         }
 
-        CDEBUG(D_IOCTL, "looking for export addr %Lx cookie %Lx\n",
+        CDEBUG(D_IOCTL, "looking for export addr "LPX64" cookie "LPX64"\n",
                conn->addr, conn->cookie);
         export = (struct obd_export *) (unsigned long)conn->addr;
         if (!kmem_cache_validate(export_cachep, (void *)export))
                 RETURN(NULL);
 
         if (export->exp_cookie != conn->cookie)
-                return NULL;
-        return export;
+                RETURN(NULL);
+        RETURN(export);
 } /* class_conn2export */
 
 struct obd_device *class_conn2obd(struct lustre_handle *conn)
 {
         struct obd_export *export;
-        export = class_conn2export(conn); 
-        if (export) 
+        export = class_conn2export(conn);
+        if (export)
                 return export->exp_obd;
         fixme();
         return NULL;
 }
 
-/* a connection defines an export context in which preallocation can
-   be managed. */
-int class_connect (struct lustre_handle *conn, struct obd_device *obd)
+struct obd_import *class_conn2cliimp(struct lustre_handle *conn)
+{
+        return &class_conn2obd(conn)->u.cli.cl_import;
+}
+
+struct obd_import *class_conn2ldlmimp(struct lustre_handle *conn)
+{
+        return &class_conn2export(conn)->exp_ldlm_data.led_import;
+}
+
+struct obd_export *class_new_export(struct obd_device *obddev)
 {
         struct obd_export * export;
 
-        export = kmem_cache_alloc(export_cachep, GFP_KERNEL); 
-        if ( !export ) {
-                CERROR("no memory! (minor %d)\n", obd->obd_minor);
-                return -ENOMEM;
+        export = kmem_cache_alloc(export_cachep, GFP_KERNEL);
+        if (!export) {
+                CERROR("no memory! (minor %d)\n", obddev->obd_minor);
+                return NULL;
         }
 
         memset(export, 0, sizeof(*export));
-        get_random_bytes(&export->exp_cookie, sizeof(__u64));
-        export->exp_obd = obd;
-        export->exp_rconnh.addr = conn->addr;
-        export->exp_rconnh.cookie = conn->cookie;
+        get_random_bytes(&export->exp_cookie, sizeof(export->exp_cookie));
+        export->exp_obd = obddev;
+        /* XXX this should be in LDLM init */
+        INIT_LIST_HEAD(&export->exp_ldlm_data.led_held_locks);
+        INIT_LIST_HEAD(&export->exp_conn_chain);
+        spin_lock(&obddev->obd_dev_lock);
+        list_add(&export->exp_obd_chain, &export->exp_obd->obd_exports);
+        spin_unlock(&obddev->obd_dev_lock);
+        return export;
+}
 
-        list_add(&(export->exp_chain), export->exp_obd->obd_exports.prev);
-        conn->addr = (__u64) (unsigned long)export;
-        conn->cookie = export->exp_cookie;
-        CDEBUG(D_IOCTL, "connect: addr %Lx cookie %Lx\n",
-               (long long)conn->addr, (long long)conn->cookie);
-        return 0;
+void class_destroy_export(struct obd_export *exp)
+{
+        ENTRY;
+
+        LASSERT(exp->exp_cookie != DEAD_HANDLE_MAGIC);
+
+        spin_lock(&exp->exp_obd->obd_dev_lock);
+        list_del(&exp->exp_obd_chain);
+        spin_unlock(&exp->exp_obd->obd_dev_lock);
+
+        /* XXXshaver no connection here... */
+        if (exp->exp_connection)
+                spin_lock(&exp->exp_connection->c_lock);
+        list_del(&exp->exp_conn_chain);
+        if (exp->exp_connection) {
+                spin_unlock(&exp->exp_connection->c_lock);
+                ptlrpc_put_connection_superhack(exp->exp_connection);
+        }
+
+        exp->exp_cookie = DEAD_HANDLE_MAGIC;
+        kmem_cache_free(export_cachep, exp);
+
+        EXIT;
 }
 
-int class_rconn2export(struct lustre_handle *conn, struct lustre_handle *rconn)
+/* a connection defines an export context in which preallocation can
+   be managed. */
+int class_connect(struct lustre_handle *conn, struct obd_device *obd,
+                  obd_uuid_t cluuid)
 {
-        struct obd_export *export = class_conn2export(conn);
+        struct obd_export * export;
+        if (conn == NULL) {
+                LBUG();
+                return -EINVAL;
+        }
 
-        if (!export)
+        if (obd == NULL) {
+                LBUG();
                 return -EINVAL;
+        }
 
-        export->exp_rconnh.addr = rconn->addr;
-        export->exp_rconnh.cookie = rconn->cookie;
+        export = class_new_export(obd);
+        if (!export)
+                return -ENOMEM;
+
+        conn->addr = (__u64) (unsigned long)export;
+        conn->cookie = export->exp_cookie;
 
+        CDEBUG(D_IOCTL, "connect: addr %Lx cookie %Lx\n",
+               (long long)conn->addr, (long long)conn->cookie);
         return 0;
 }
 
@@ -308,17 +451,53 @@ int class_disconnect(struct lustre_handle *conn)
         if (!(export = class_conn2export(conn))) {
                 fixme();
                 CDEBUG(D_IOCTL, "disconnect: attempting to free "
-                       "nonexistent client %Lx\n", conn->addr);
+                       "nonexistent client "LPX64"\n", conn->addr);
                 RETURN(-EINVAL);
-        } else
-                CDEBUG(D_IOCTL, "disconnect: addr %Lx cookie %Lx\n",
+        }
+
+        CDEBUG(D_IOCTL, "disconnect: addr %Lx cookie %Lx\n",
                        (long long)conn->addr, (long long)conn->cookie);
-        list_del(&export->exp_chain);
-        kmem_cache_free(export_cachep, export);
+
+        class_destroy_export(export);
 
         RETURN(0);
 }
 
+void class_disconnect_all(struct obd_device *obddev)
+{
+        int again = 1;
+
+        while (again) {
+                spin_lock(&obddev->obd_dev_lock);
+                if (!list_empty(&obddev->obd_exports)) {
+                        struct obd_export *export;
+                        struct lustre_handle conn;
+                        int rc;
+
+                        export = list_entry(obddev->obd_exports.next,
+                                            struct obd_export,
+                                            exp_obd_chain);
+                        conn.addr = (__u64)(unsigned long)export;
+                        conn.cookie = export->exp_cookie;
+                        spin_unlock(&obddev->obd_dev_lock);
+                        CERROR("force disconnecting export %p\n", export);
+                        rc = obd_disconnect(&conn);
+                        if (rc < 0) {
+                                /* AED: not so sure about this...  We can't
+                                 * loop here forever, yet we shouldn't leak
+                                 * exports on a struct we will soon destroy.
+                                 */
+                                CERROR("destroy export %p with err: rc = %d\n",
+                                       export, rc);
+                                class_destroy_export(export);
+                        }
+                } else {
+                        spin_unlock(&obddev->obd_dev_lock);
+                        again = 0;
+                }
+        }
+}
+
 #if 0
 
 /* FIXME: Data is a space- or comma-separated list of device IDs.  This will
@@ -337,11 +516,11 @@ int class_multi_setup(struct obd_device *obddev, uint32_t len, void *data)
                         CERROR("invalid device ID starting at: %s\n", p);
                         GOTO(err_disconnect, rc = -EINVAL);
                 }
-                
-                if (tmp < 0 || tmp >= MAX_OBD_DEVICES) { 
-                        CERROR("Trying to sub dev %d  - dev no too large\n", 
+
+                if (tmp < 0 || tmp >= MAX_OBD_DEVICES) {
+                        CERROR("Trying to sub dev %d  - dev no too large\n",
                                tmp);
-                        GOTO(err_disconnect, rc  = -EINVAL); 
+                        GOTO(err_disconnect, rc  = -EINVAL);
                 }
 
                 rc = obd_connect(&obddev->obd_multi_conn[count], &obd_dev[tmp]);
@@ -378,10 +557,11 @@ int class_multi_cleanup(struct obd_device *obddev)
 
         for (i = 0; i < obddev->obd_multi_count; i++) {
                 int rc;
-                struct obd_device *obd = class_conn2obd(&obddev->obd_multi_conn[i]);
+                struct obd_device *obd =
+                        class_conn2obd(&obddev->obd_multi_conn[i]);
 
-                if (!obd) { 
-                        CERROR("no such device [i %d]\n", i); 
+                if (!obd) {
+                        CERROR("no such device [i %d]\n", i);
                         RETURN(-EINVAL);
                 }