Whamcloud - gitweb
d6c1717d57f8f5c25b757219ec4267e80bc4208e
[fs/lustre-release.git] / lustre / ptlrpc / connection.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_RPC
38 #include <obd_support.h>
39 #include <obd_class.h>
40 #include <lustre_net.h>
41
42 #include "ptlrpc_internal.h"
43
44 static cfs_hash_t *conn_hash = NULL;
45 static cfs_hash_ops_t conn_hash_ops;
46
47 struct ptlrpc_connection *
48 ptlrpc_connection_get(lnet_process_id_t peer, lnet_nid_t self,
49                       struct obd_uuid *uuid)
50 {
51         struct ptlrpc_connection *conn, *conn2;
52         ENTRY;
53
54         conn = cfs_hash_lookup(conn_hash, &peer);
55         if (conn)
56                 GOTO(out, conn);
57
58         OBD_ALLOC_PTR(conn);
59         if (!conn)
60                 RETURN(NULL);
61
62         conn->c_peer = peer;
63         conn->c_self = self;
64         INIT_HLIST_NODE(&conn->c_hash);
65         atomic_set(&conn->c_refcount, 1);
66         if (uuid)
67                 obd_str2uuid(&conn->c_remote_uuid, uuid->uuid);
68
69         /*
70          * Add the newly created conn to the hash, on key collision we
71          * lost a racing addition and must destroy our newly allocated
72          * connection.  The object which exists in the has will be
73          * returned and may be compared against out object.
74          */
75         /* In the function below, .hs_keycmp resolves to
76          * conn_keycmp() */
77         /* coverity[overrun-buffer-val] */
78         conn2 = cfs_hash_findadd_unique(conn_hash, &peer, &conn->c_hash);
79         if (conn != conn2) {
80                 OBD_FREE_PTR(conn);
81                 conn = conn2;
82         }
83         EXIT;
84 out:
85         CDEBUG(D_INFO, "conn=%p refcount %d to %s\n",
86                conn, atomic_read(&conn->c_refcount),
87                libcfs_nid2str(conn->c_peer.nid));
88         return conn;
89 }
90
91 int ptlrpc_connection_put(struct ptlrpc_connection *conn)
92 {
93         int rc = 0;
94         ENTRY;
95
96         if (!conn)
97                 RETURN(rc);
98
99         LASSERT(atomic_read(&conn->c_refcount) > 1);
100
101         /*
102          * We do not remove connection from hashtable and
103          * do not free it even if last caller released ref,
104          * as we want to have it cached for the case it is
105          * needed again.
106          *
107          * Deallocating it and later creating new connection
108          * again would be wastful. This way we also avoid
109          * expensive locking to protect things from get/put
110          * race when found cached connection is freed by
111          * ptlrpc_connection_put().
112          *
113          * It will be freed later in module unload time,
114          * when ptlrpc_connection_fini()->lh_exit->conn_exit()
115          * path is called.
116          */
117         if (atomic_dec_return(&conn->c_refcount) == 1)
118                 rc = 1;
119
120         CDEBUG(D_INFO, "PUT conn=%p refcount %d to %s\n",
121                conn, atomic_read(&conn->c_refcount),
122                libcfs_nid2str(conn->c_peer.nid));
123
124         RETURN(rc);
125 }
126
127 struct ptlrpc_connection *
128 ptlrpc_connection_addref(struct ptlrpc_connection *conn)
129 {
130         ENTRY;
131
132         atomic_inc(&conn->c_refcount);
133         CDEBUG(D_INFO, "conn=%p refcount %d to %s\n",
134                conn, atomic_read(&conn->c_refcount),
135                libcfs_nid2str(conn->c_peer.nid));
136
137         RETURN(conn);
138 }
139
140 int ptlrpc_connection_init(void)
141 {
142         ENTRY;
143
144         conn_hash = cfs_hash_create("CONN_HASH",
145                                     HASH_CONN_CUR_BITS,
146                                     HASH_CONN_MAX_BITS,
147                                     HASH_CONN_BKT_BITS, 0,
148                                     CFS_HASH_MIN_THETA,
149                                     CFS_HASH_MAX_THETA,
150                                     &conn_hash_ops, CFS_HASH_DEFAULT);
151         if (!conn_hash)
152                 RETURN(-ENOMEM);
153
154         RETURN(0);
155 }
156
157 void ptlrpc_connection_fini(void) {
158         ENTRY;
159         cfs_hash_putref(conn_hash);
160         EXIT;
161 }
162
163 /*
164  * Hash operations for net_peer<->connection
165  */
166 static unsigned
167 conn_hashfn(cfs_hash_t *hs, const void *key, unsigned mask)
168 {
169         return cfs_hash_djb2_hash(key, sizeof(lnet_process_id_t), mask);
170 }
171
172 static int
173 conn_keycmp(const void *key, struct hlist_node *hnode)
174 {
175         struct ptlrpc_connection *conn;
176         const lnet_process_id_t *conn_key;
177
178         LASSERT(key != NULL);
179         conn_key = (lnet_process_id_t *)key;
180         conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
181
182         return conn_key->nid == conn->c_peer.nid &&
183                conn_key->pid == conn->c_peer.pid;
184 }
185
186 static void *
187 conn_key(struct hlist_node *hnode)
188 {
189         struct ptlrpc_connection *conn;
190         conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
191         return &conn->c_peer;
192 }
193
194 static void *
195 conn_object(struct hlist_node *hnode)
196 {
197         return hlist_entry(hnode, struct ptlrpc_connection, c_hash);
198 }
199
200 static void
201 conn_get(cfs_hash_t *hs, struct hlist_node *hnode)
202 {
203         struct ptlrpc_connection *conn;
204
205         conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
206         atomic_inc(&conn->c_refcount);
207 }
208
209 static void
210 conn_put_locked(cfs_hash_t *hs, struct hlist_node *hnode)
211 {
212         struct ptlrpc_connection *conn;
213
214         conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
215         atomic_dec(&conn->c_refcount);
216 }
217
218 static void
219 conn_exit(cfs_hash_t *hs, struct hlist_node *hnode)
220 {
221         struct ptlrpc_connection *conn;
222
223         conn = hlist_entry(hnode, struct ptlrpc_connection, c_hash);
224         /*
225          * Nothing should be left. Connection user put it and
226          * connection also was deleted from table by this time
227          * so we should have 0 refs.
228          */
229         LASSERTF(atomic_read(&conn->c_refcount) == 0,
230                  "Busy connection with %d refs\n",
231                  atomic_read(&conn->c_refcount));
232         OBD_FREE_PTR(conn);
233 }
234
235 static cfs_hash_ops_t conn_hash_ops = {
236         .hs_hash        = conn_hashfn,
237         .hs_keycmp      = conn_keycmp,
238         .hs_key         = conn_key,
239         .hs_object      = conn_object,
240         .hs_get         = conn_get,
241         .hs_put_locked  = conn_put_locked,
242         .hs_exit        = conn_exit,
243 };