Whamcloud - gitweb
LU-13004 ptlrpc: Allow BULK_BUF_KIOV to accept a kvec
[fs/lustre-release.git] / lustre / ptlrpc / connection.c
index 52994ba..369eace 100644 (file)
-/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
- * vim:expandtab:shiftwidth=8:tabstop=8:
+/*
+ * GPL HEADER START
  *
- *  Copyright (C) 2002 Cluster File Systems, Inc.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
- *   This file is part of the Lustre file system, http://www.lustre.org
- *   Lustre is a trademark of Cluster File Systems, Inc.
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 only,
+ * as published by the Free Software Foundation.
  *
- *   You may have signed or agreed to another license before downloading
- *   this software.  If so, you are bound by the terms and conditions
- *   of that agreement, and the following does not apply to you.  See the
- *   LICENSE file included with this distribution for more information.
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License version 2 for more details (a copy is included
+ * in the LICENSE file that accompanied this code).
  *
- *   If you did not agree to a different license, then this copy of Lustre
- *   is open source software; you can redistribute it and/or modify it
- *   under the terms of version 2 of the GNU General Public License as
- *   published by the Free Software Foundation.
+ * You should have received a copy of the GNU General Public License
+ * version 2 along with this program; If not, see
+ * http://www.gnu.org/licenses/gpl-2.0.html
  *
- *   In either case, Lustre is distributed in the hope that it will be
- *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
- *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *   license text for more details.
+ * GPL HEADER END
+ */
+/*
+ * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Use is subject to license terms.
  *
+ * Copyright (c) 2011, Intel Corporation.
+ */
+/*
+ * This file is part of Lustre, http://www.lustre.org/
+ * Lustre is a trademark of Sun Microsystems, Inc.
  */
 
 #define DEBUG_SUBSYSTEM S_RPC
-#ifdef __KERNEL__
 #include <obd_support.h>
 #include <obd_class.h>
 #include <lustre_net.h>
-#else
-#include <liblustre.h>
-#endif
 
 #include "ptlrpc_internal.h"
 
-static spinlock_t conn_lock;
-static struct list_head conn_list;
-static struct list_head conn_unused_list;
+static struct cfs_hash *conn_hash;
+static struct cfs_hash_ops conn_hash_ops;
 
-void ptlrpc_dump_connections(void)
+struct ptlrpc_connection *
+ptlrpc_connection_get(struct lnet_process_id peer, lnet_nid_t self,
+                     struct obd_uuid *uuid)
 {
-        struct list_head *tmp;
-        struct ptlrpc_connection *c;
-        ENTRY;
+       struct ptlrpc_connection *conn, *conn2;
+       ENTRY;
+
+       peer.nid = LNetPrimaryNID(peer.nid);
+       conn = cfs_hash_lookup(conn_hash, &peer);
+       if (conn)
+               GOTO(out, conn);
+
+       OBD_ALLOC_PTR(conn);
+       if (!conn)
+               RETURN(NULL);
+
+       conn->c_peer = peer;
+       conn->c_self = self;
+       INIT_HLIST_NODE(&conn->c_hash);
+       atomic_set(&conn->c_refcount, 1);
+       if (uuid)
+               obd_str2uuid(&conn->c_remote_uuid, uuid->uuid);
+
+       /*
+        * Add the newly created conn to the hash, on key collision we
+        * lost a racing addition and must destroy our newly allocated
+        * connection.  The object which exists in the hash will be
+        * returned and may be compared against out object.
+        */
+       /* In the function below, .hs_keycmp resolves to
+        * conn_keycmp() */
+       /* coverity[overrun-buffer-val] */
+       conn2 = cfs_hash_findadd_unique(conn_hash, &peer, &conn->c_hash);
+       if (conn != conn2) {
+               OBD_FREE_PTR(conn);
+               conn = conn2;
+       }
+       EXIT;
+out:
+       CDEBUG(D_INFO, "conn=%p refcount %d to %s\n",
+              conn, atomic_read(&conn->c_refcount),
+              libcfs_nid2str(conn->c_peer.nid));
+       return conn;
+}
 
-        list_for_each(tmp, &conn_list) {
-                c = list_entry(tmp, struct ptlrpc_connection, c_link);
-                CERROR("Connection %p/%s has refcount %d (nid=%s->%s)\n",
-                       c, c->c_remote_uuid.uuid, atomic_read(&c->c_refcount),
-                       libcfs_nid2str(c->c_self), 
-                       libcfs_nid2str(c->c_peer.nid));
-        }
-        EXIT;
+int ptlrpc_connection_put(struct ptlrpc_connection *conn)
+{
+       int rc = 0;
+       ENTRY;
+
+       if (!conn)
+               RETURN(rc);
+
+       LASSERT(atomic_read(&conn->c_refcount) > 1);
+
+       /*
+        * We do not remove connection from hashtable and
+        * do not free it even if last caller released ref,
+        * as we want to have it cached for the case it is
+        * needed again.
+        *
+        * Deallocating it and later creating new connection
+        * again would be wastful. This way we also avoid
+        * expensive locking to protect things from get/put
+        * race when found cached connection is freed by
+        * ptlrpc_connection_put().
+        *
+        * It will be freed later in module unload time,
+        * when ptlrpc_connection_fini()->lh_exit->conn_exit()
+        * path is called.
+        */
+       if (atomic_dec_return(&conn->c_refcount) == 1)
+               rc = 1;
+
+       CDEBUG(D_INFO, "PUT conn=%p refcount %d to %s\n",
+              conn, atomic_read(&conn->c_refcount),
+              libcfs_nid2str(conn->c_peer.nid));
+
+       RETURN(rc);
 }
 
-struct ptlrpc_connection*
-ptlrpc_lookup_conn_locked (lnet_process_id_t peer)
+struct ptlrpc_connection *
+ptlrpc_connection_addref(struct ptlrpc_connection *conn)
 {
-        struct ptlrpc_connection *c;
-        struct list_head         *tmp;
+       ENTRY;
 
-        list_for_each(tmp, &conn_list) {
-                c = list_entry(tmp, struct ptlrpc_connection, c_link);
+       atomic_inc(&conn->c_refcount);
+       CDEBUG(D_INFO, "conn=%p refcount %d to %s\n",
+              conn, atomic_read(&conn->c_refcount),
+              libcfs_nid2str(conn->c_peer.nid));
 
-                if (peer.nid == c->c_peer.nid &&
-                    peer.pid == c->c_peer.pid)
-                        return ptlrpc_connection_addref(c);
-        }
+       RETURN(conn);
+}
 
-        list_for_each(tmp, &conn_unused_list) {
-                c = list_entry(tmp, struct ptlrpc_connection, c_link);
+int ptlrpc_connection_init(void)
+{
+        ENTRY;
 
-                if (peer.nid == c->c_peer.nid &&
-                    peer.pid == c->c_peer.pid) {
-                        list_del(&c->c_link);
-                        list_add(&c->c_link, &conn_list);
-                        return ptlrpc_connection_addref(c);
-                }
-        }
+        conn_hash = cfs_hash_create("CONN_HASH",
+                                    HASH_CONN_CUR_BITS,
+                                    HASH_CONN_MAX_BITS,
+                                    HASH_CONN_BKT_BITS, 0,
+                                    CFS_HASH_MIN_THETA,
+                                    CFS_HASH_MAX_THETA,
+                                    &conn_hash_ops, CFS_HASH_DEFAULT);
+        if (!conn_hash)
+                RETURN(-ENOMEM);
+
+        RETURN(0);
+}
 
-        return NULL;
+void ptlrpc_connection_fini(void) {
+        ENTRY;
+        cfs_hash_putref(conn_hash);
+        EXIT;
 }
 
+/*
+ * Hash operations for net_peer<->connection
+ */
+static unsigned
+conn_hashfn(struct cfs_hash *hs, const void *key, unsigned mask)
+{
+       return cfs_hash_djb2_hash(key, sizeof(struct lnet_process_id), mask);
+}
 
-struct ptlrpc_connection *ptlrpc_get_connection(lnet_process_id_t peer,
-                                                lnet_nid_t self, struct obd_uuid *uuid)
+static int
+conn_keycmp(const void *key, struct hlist_node *hnode)
 {
-        struct ptlrpc_connection *c;
-        struct ptlrpc_connection *c2;
-        ENTRY;
+       struct ptlrpc_connection *conn;
+       const struct lnet_process_id *conn_key;
+
+       LASSERT(key != NULL);
+       conn_key = (struct lnet_process_id *)key;
+       conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
 
-        CDEBUG(D_INFO, "self %s peer %s\n", 
-               libcfs_nid2str(self), libcfs_id2str(peer));
-
-        spin_lock(&conn_lock);
-
-        c = ptlrpc_lookup_conn_locked(peer);
-        
-        spin_unlock(&conn_lock);
-
-        if (c != NULL)
-                RETURN (c);
-        
-        OBD_ALLOC(c, sizeof(*c));
-        if (c == NULL)
-                RETURN (NULL);
-
-        atomic_set(&c->c_refcount, 1);
-        c->c_peer = peer;
-        c->c_self = self;
-        if (uuid != NULL)
-                obd_str2uuid(&c->c_remote_uuid, uuid->uuid);
-
-        spin_lock(&conn_lock);
-
-        c2 = ptlrpc_lookup_conn_locked(peer);
-        if (c2 == NULL)
-                list_add(&c->c_link, &conn_list);
-        
-        spin_unlock(&conn_lock);
-
-        if (c2 == NULL)
-                RETURN (c);
-        
-        OBD_FREE(c, sizeof(*c));
-        RETURN (c2);
+       return conn_key->nid == conn->c_peer.nid &&
+               conn_key->pid == conn->c_peer.pid;
 }
 
-int ptlrpc_put_connection(struct ptlrpc_connection *c)
+static void *
+conn_key(struct hlist_node *hnode)
 {
-        int rc = 0;
-        lnet_process_id_t peer;
-        ENTRY;
+       struct ptlrpc_connection *conn;
+       conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
+       return &conn->c_peer;
+}
 
-        if (c == NULL) {
-                CERROR("NULL connection\n");
-                RETURN(0);
-        }
-
-        peer = c->c_peer;
-
-        CDEBUG (D_INFO, "connection=%p refcount %d to %s\n",
-                c, atomic_read(&c->c_refcount) - 1, 
-                libcfs_nid2str(c->c_peer.nid));
-
-        if (atomic_dec_and_test(&c->c_refcount)) {
-                spin_lock(&conn_lock);
-                list_del(&c->c_link);
-                list_add(&c->c_link, &conn_unused_list);
-                spin_unlock(&conn_lock);
-                rc = 1;
-        }
-        if (atomic_read(&c->c_refcount) < 0)
-                CERROR("connection %p refcount %d!\n",
-                       c, atomic_read(&c->c_refcount));
-
-        RETURN(rc);
+static void *
+conn_object(struct hlist_node *hnode)
+{
+       return hlist_entry(hnode, struct ptlrpc_connection, c_hash);
 }
 
-struct ptlrpc_connection *ptlrpc_connection_addref(struct ptlrpc_connection *c)
+static void
+conn_get(struct cfs_hash *hs, struct hlist_node *hnode)
 {
-        ENTRY;
-        atomic_inc(&c->c_refcount);
-        CDEBUG (D_INFO, "connection=%p refcount %d to %s\n",
-                c, atomic_read(&c->c_refcount),
-                libcfs_nid2str(c->c_peer.nid));
-        RETURN(c);
+       struct ptlrpc_connection *conn;
+
+       conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
+       atomic_inc(&conn->c_refcount);
 }
 
-void ptlrpc_init_connection(void)
+static void
+conn_put_locked(struct cfs_hash *hs, struct hlist_node *hnode)
 {
-        CFS_INIT_LIST_HEAD(&conn_list);
-        CFS_INIT_LIST_HEAD(&conn_unused_list);
-        spin_lock_init(&conn_lock);
+       struct ptlrpc_connection *conn;
+
+       conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
+       atomic_dec(&conn->c_refcount);
 }
 
-void ptlrpc_cleanup_connection(void)
+static void
+conn_exit(struct cfs_hash *hs, struct hlist_node *hnode)
 {
-        struct list_head *tmp, *pos;
-        struct ptlrpc_connection *c;
-
-        spin_lock(&conn_lock);
-        list_for_each_safe(tmp, pos, &conn_unused_list) {
-                c = list_entry(tmp, struct ptlrpc_connection, c_link);
-                list_del(&c->c_link);
-                OBD_FREE(c, sizeof(*c));
-        }
-        list_for_each_safe(tmp, pos, &conn_list) {
-                c = list_entry(tmp, struct ptlrpc_connection, c_link);
-                CERROR("Connection %p/%s has refcount %d (nid=%s)\n",
-                       c, c->c_remote_uuid.uuid, atomic_read(&c->c_refcount),
-                       libcfs_nid2str(c->c_peer.nid));
-                list_del(&c->c_link);
-                OBD_FREE(c, sizeof(*c));
-        }
-        spin_unlock(&conn_lock);
+       struct ptlrpc_connection *conn;
+
+       conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
+       /*
+        * Nothing should be left. Connection user put it and
+        * connection also was deleted from table by this time
+        * so we should have 0 refs.
+        */
+       LASSERTF(atomic_read(&conn->c_refcount) == 0,
+                "Busy connection with %d refs\n",
+                atomic_read(&conn->c_refcount));
+       OBD_FREE_PTR(conn);
 }
+
+static struct cfs_hash_ops conn_hash_ops = {
+       .hs_hash        = conn_hashfn,
+       .hs_keycmp      = conn_keycmp,
+       .hs_key         = conn_key,
+       .hs_object      = conn_object,
+       .hs_get         = conn_get,
+       .hs_put_locked  = conn_put_locked,
+       .hs_exit        = conn_exit,
+};