Whamcloud - gitweb
LU-12567 ptlrpc: handle reply and resend reorder
[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_process_id *lpi = data;
52
53         seed = cfs_hash_32(seed ^ lpi->pid, 32);
54         seed ^= cfs_hash_64(lpi->nid, 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_process_id *lpi = arg->key;
62         const struct ptlrpc_connection *con = obj;
63
64         if (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_process_id peer, lnet_nid_t self,
80                       struct obd_uuid *uuid)
81 {
82         struct ptlrpc_connection *conn, *conn2;
83         ENTRY;
84
85         peer.nid = LNetPrimaryNID(peer.nid);
86         conn = rhashtable_lookup_fast(&conn_hash, &peer, conn_hash_params);
87         if (conn) {
88                 ptlrpc_connection_addref(conn);
89                 GOTO(out, conn);
90         }
91
92         OBD_ALLOC_PTR(conn);
93         if (!conn)
94                 RETURN(NULL);
95
96         conn->c_peer = peer;
97         conn->c_self = self;
98         atomic_set(&conn->c_refcount, 1);
99         if (uuid)
100                 obd_str2uuid(&conn->c_remote_uuid, uuid->uuid);
101
102         /*
103          * Add the newly created conn to the hash, on key collision we
104          * lost a racing addition and must destroy our newly allocated
105          * connection.  The object which exists in the hash will be
106          * returned,otherwise NULL is returned on success.
107          */
108 try_again:
109         conn2 = rhashtable_lookup_get_insert_fast(&conn_hash, &conn->c_hash,
110                                                   conn_hash_params);
111         if (conn2) {
112                 /* insertion failed */
113                 OBD_FREE_PTR(conn);
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                         return NULL;
122                 }
123                 conn = conn2;
124                 ptlrpc_connection_addref(conn);
125         }
126         EXIT;
127 out:
128         CDEBUG(D_INFO, "conn=%p refcount %d to %s\n",
129                conn, atomic_read(&conn->c_refcount),
130                libcfs_nid2str(conn->c_peer.nid));
131         return conn;
132 }
133
134 struct ptlrpc_connection *
135 ptlrpc_connection_addref(struct ptlrpc_connection *conn)
136 {
137         ENTRY;
138
139         atomic_inc(&conn->c_refcount);
140         CDEBUG(D_INFO, "conn=%p refcount %d to %s\n",
141                conn, atomic_read(&conn->c_refcount),
142                libcfs_nid2str(conn->c_peer.nid));
143
144         RETURN(conn);
145 }
146
147 static void
148 conn_exit(void *vconn, void *data)
149 {
150         struct ptlrpc_connection *conn = vconn;
151
152         /*
153          * Nothing should be left. Connection user put it and
154          * connection also was deleted from table by this time
155          * so we should have 0 refs.
156          */
157         LASSERTF(atomic_read(&conn->c_refcount) == 0,
158                  "Busy connection with %d refs\n",
159                  atomic_read(&conn->c_refcount));
160         OBD_FREE_PTR(conn);
161 }
162
163 int ptlrpc_connection_init(void)
164 {
165         return rhashtable_init(&conn_hash, &conn_hash_params);
166 }
167
168 void ptlrpc_connection_fini(void)
169 {
170         rhashtable_free_and_destroy(&conn_hash, conn_exit, NULL);
171 }