Whamcloud - gitweb
LU-10391 ptlrpc: change rq_peer to struct lnet_nid
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #define DEBUG_SUBSYSTEM S_RPC
33
34 #include <linux/delay.h>
35 #include <libcfs/linux/linux-hash.h>
36 #include <obd_support.h>
37 #include <obd_class.h>
38 #include <lustre_net.h>
39
40 #include "ptlrpc_internal.h"
41
42 static struct rhashtable conn_hash;
43
44 /*
45  * struct lnet_process_id may contain unassigned bytes which might not
46  * be zero, so we cannot just hash and compare bytes.
47  */
48
49 static u32 lnet_process_id_hash(const void *data, u32 len, u32 seed)
50 {
51         const struct lnet_processid *lpi = data;
52
53         seed = cfs_hash_32(seed ^ lpi->pid, 32);
54         seed = cfs_hash_32(nidhash(&lpi->nid) ^ seed, 32);
55         return seed;
56 }
57
58 static int lnet_process_id_cmp(struct rhashtable_compare_arg *arg,
59                                const void *obj)
60 {
61         const struct lnet_processid *lpi = arg->key;
62         const struct ptlrpc_connection *con = obj;
63
64         if (nid_same(&lpi->nid, &con->c_peer.nid) &&
65             lpi->pid == con->c_peer.pid)
66                 return 0;
67         return -ESRCH;
68 }
69
70 static const struct rhashtable_params conn_hash_params = {
71         .key_len        = 1,    /* actually variable-length */
72         .key_offset     = offsetof(struct ptlrpc_connection, c_peer),
73         .head_offset    = offsetof(struct ptlrpc_connection, c_hash),
74         .hashfn         = lnet_process_id_hash,
75         .obj_cmpfn      = lnet_process_id_cmp,
76 };
77
78 struct ptlrpc_connection *
79 ptlrpc_connection_get(struct lnet_processid *peer_orig, struct lnet_nid *self,
80                       struct obd_uuid *uuid)
81 {
82         struct ptlrpc_connection *conn, *conn2;
83         struct lnet_processid peer = *peer_orig;
84         ENTRY;
85
86         LNetPrimaryNID(&peer.nid);
87         conn = rhashtable_lookup_fast(&conn_hash, &peer, conn_hash_params);
88         if (conn) {
89                 ptlrpc_connection_addref(conn);
90                 GOTO(out, conn);
91         }
92
93         OBD_ALLOC_PTR(conn);
94         if (!conn)
95                 RETURN(NULL);
96
97         conn->c_peer = peer;
98         conn->c_self = *self;
99         atomic_set(&conn->c_refcount, 1);
100         if (uuid)
101                 obd_str2uuid(&conn->c_remote_uuid, uuid->uuid);
102
103         /*
104          * Add the newly created conn to the hash, on key collision we
105          * lost a racing addition and must destroy our newly allocated
106          * connection.  The object which exists in the hash will be
107          * returned,otherwise NULL is returned on success.
108          */
109 try_again:
110         conn2 = rhashtable_lookup_get_insert_fast(&conn_hash, &conn->c_hash,
111                                                   conn_hash_params);
112         if (conn2) {
113                 /* insertion failed */
114                 if (IS_ERR(conn2)) {
115                         /* hash table could be resizing. */
116                         if (PTR_ERR(conn2) == -ENOMEM ||
117                             PTR_ERR(conn2) == -EBUSY) {
118                                 msleep(5);
119                                 goto try_again;
120                         }
121                         conn2 = NULL;
122                 }
123                 OBD_FREE_PTR(conn);
124                 conn = conn2;
125                 if (conn)
126                         ptlrpc_connection_addref(conn);
127         }
128         EXIT;
129 out:
130         CDEBUG(D_INFO, "conn=%p refcount %d to %s\n",
131                conn, atomic_read(&conn->c_refcount),
132                libcfs_nidstr(&conn->c_peer.nid));
133         return conn;
134 }
135
136 struct ptlrpc_connection *
137 ptlrpc_connection_addref(struct ptlrpc_connection *conn)
138 {
139         ENTRY;
140
141         atomic_inc(&conn->c_refcount);
142         CDEBUG(D_INFO, "conn=%p refcount %d to %s\n",
143                conn, atomic_read(&conn->c_refcount),
144                libcfs_nidstr(&conn->c_peer.nid));
145
146         RETURN(conn);
147 }
148
149 static void
150 conn_exit(void *vconn, void *data)
151 {
152         struct ptlrpc_connection *conn = vconn;
153
154         /*
155          * Nothing should be left. Connection user put it and
156          * connection also was deleted from table by this time
157          * so we should have 0 refs.
158          */
159         LASSERTF(atomic_read(&conn->c_refcount) == 0,
160                  "Busy connection with %d refs\n",
161                  atomic_read(&conn->c_refcount));
162         OBD_FREE_PTR(conn);
163 }
164
165 int ptlrpc_connection_init(void)
166 {
167         return rhashtable_init(&conn_hash, &conn_hash_params);
168 }
169
170 void ptlrpc_connection_fini(void)
171 {
172         rhashtable_free_and_destroy(&conn_hash, conn_exit, NULL);
173 }