dlm: fix not reconnecting on connecting error handling
[deliverable/linux.git] / fs / dlm / lowcomms.c
CommitLineData
fdda387f
PC
1/******************************************************************************
2*******************************************************************************
3**
4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
5e9ccc37 5** Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved.
fdda387f
PC
6**
7** This copyrighted material is made available to anyone wishing to use,
8** modify, copy, or redistribute it subject to the terms and conditions
9** of the GNU General Public License v.2.
10**
11*******************************************************************************
12******************************************************************************/
13
14/*
15 * lowcomms.c
16 *
17 * This is the "low-level" comms layer.
18 *
19 * It is responsible for sending/receiving messages
20 * from other nodes in the cluster.
21 *
22 * Cluster nodes are referred to by their nodeids. nodeids are
23 * simply 32 bit numbers to the locking module - if they need to
2cf12c0b 24 * be expanded for the cluster infrastructure then that is its
fdda387f
PC
25 * responsibility. It is this layer's
26 * responsibility to resolve these into IP address or
27 * whatever it needs for inter-node communication.
28 *
29 * The comms level is two kernel threads that deal mainly with
30 * the receiving of messages from other nodes and passing them
31 * up to the mid-level comms layer (which understands the
32 * message format) for execution by the locking core, and
33 * a send thread which does all the setting up of connections
34 * to remote nodes and the sending of data. Threads are not allowed
35 * to send their own data because it may cause them to wait in times
36 * of high load. Also, this way, the sending thread can collect together
37 * messages bound for one node and send them in one block.
38 *
2cf12c0b 39 * lowcomms will choose to use either TCP or SCTP as its transport layer
6ed7257b 40 * depending on the configuration variable 'protocol'. This should be set
2cf12c0b 41 * to 0 (default) for TCP or 1 for SCTP. It should be configured using a
6ed7257b
PC
42 * cluster-wide mechanism as it must be the same on all nodes of the cluster
43 * for the DLM to function.
fdda387f
PC
44 *
45 */
46
fdda387f
PC
47#include <asm/ioctls.h>
48#include <net/sock.h>
49#include <net/tcp.h>
50#include <linux/pagemap.h>
6ed7257b 51#include <linux/file.h>
7a936ce7 52#include <linux/mutex.h>
6ed7257b 53#include <linux/sctp.h>
5a0e3ad6 54#include <linux/slab.h>
2f2d76cc 55#include <net/sctp/sctp.h>
44ad532b 56#include <net/ipv6.h>
fdda387f
PC
57
58#include "dlm_internal.h"
59#include "lowcomms.h"
60#include "midcomms.h"
61#include "config.h"
62
6ed7257b 63#define NEEDED_RMEM (4*1024*1024)
5e9ccc37 64#define CONN_HASH_SIZE 32
6ed7257b 65
f92c8dd7
BP
66/* Number of messages to send before rescheduling */
67#define MAX_SEND_MSG_COUNT 25
68
fdda387f 69struct cbuf {
ac33d071
PC
70 unsigned int base;
71 unsigned int len;
72 unsigned int mask;
fdda387f
PC
73};
74
ac33d071
PC
75static void cbuf_add(struct cbuf *cb, int n)
76{
77 cb->len += n;
78}
fdda387f 79
ac33d071
PC
80static int cbuf_data(struct cbuf *cb)
81{
82 return ((cb->base + cb->len) & cb->mask);
83}
84
85static void cbuf_init(struct cbuf *cb, int size)
86{
87 cb->base = cb->len = 0;
88 cb->mask = size-1;
89}
90
91static void cbuf_eat(struct cbuf *cb, int n)
92{
93 cb->len -= n;
94 cb->base += n;
95 cb->base &= cb->mask;
96}
97
98static bool cbuf_empty(struct cbuf *cb)
99{
100 return cb->len == 0;
101}
fdda387f 102
fdda387f
PC
103struct connection {
104 struct socket *sock; /* NULL if not connected */
105 uint32_t nodeid; /* So we know who we are in the list */
f1f1c1cc 106 struct mutex sock_mutex;
6ed7257b 107 unsigned long flags;
fdda387f
PC
108#define CF_READ_PENDING 1
109#define CF_WRITE_PENDING 2
110#define CF_CONNECT_PENDING 3
6ed7257b
PC
111#define CF_INIT_PENDING 4
112#define CF_IS_OTHERCON 5
063c4c99 113#define CF_CLOSE 6
b36930dd 114#define CF_APP_LIMITED 7
ac33d071 115 struct list_head writequeue; /* List of outgoing writequeue_entries */
fdda387f
PC
116 spinlock_t writequeue_lock;
117 int (*rx_action) (struct connection *); /* What to do when active */
6ed7257b 118 void (*connect_action) (struct connection *); /* What to do to connect */
fdda387f
PC
119 struct page *rx_page;
120 struct cbuf cb;
121 int retries;
fdda387f 122#define MAX_CONNECT_RETRIES 3
6ed7257b 123 int sctp_assoc;
5e9ccc37 124 struct hlist_node list;
fdda387f 125 struct connection *othercon;
1d6e8131
PC
126 struct work_struct rwork; /* Receive workqueue */
127 struct work_struct swork; /* Send workqueue */
98e1b60e 128 bool try_new_addr;
fdda387f
PC
129};
130#define sock2con(x) ((struct connection *)(x)->sk_user_data)
131
132/* An entry waiting to be sent */
133struct writequeue_entry {
134 struct list_head list;
135 struct page *page;
136 int offset;
137 int len;
138 int end;
139 int users;
140 struct connection *con;
141};
142
36b71a8b
DT
143struct dlm_node_addr {
144 struct list_head list;
145 int nodeid;
146 int addr_count;
98e1b60e 147 int curr_addr_index;
36b71a8b
DT
148 struct sockaddr_storage *addr[DLM_MAX_ADDR_COUNT];
149};
150
151static LIST_HEAD(dlm_node_addrs);
152static DEFINE_SPINLOCK(dlm_node_addrs_spin);
153
6ed7257b
PC
154static struct sockaddr_storage *dlm_local_addr[DLM_MAX_ADDR_COUNT];
155static int dlm_local_count;
513ef596 156static int dlm_allow_conn;
fdda387f 157
1d6e8131
PC
158/* Work queues */
159static struct workqueue_struct *recv_workqueue;
160static struct workqueue_struct *send_workqueue;
fdda387f 161
5e9ccc37 162static struct hlist_head connection_hash[CONN_HASH_SIZE];
7a936ce7 163static DEFINE_MUTEX(connections_lock);
c80e7c83 164static struct kmem_cache *con_cache;
fdda387f 165
1d6e8131
PC
166static void process_recv_sockets(struct work_struct *work);
167static void process_send_sockets(struct work_struct *work);
fdda387f 168
5e9ccc37
CC
169
170/* This is deliberately very simple because most clusters have simple
171 sequential nodeids, so we should be able to go straight to a connection
172 struct in the array */
173static inline int nodeid_hash(int nodeid)
174{
175 return nodeid & (CONN_HASH_SIZE-1);
176}
177
178static struct connection *__find_con(int nodeid)
179{
180 int r;
5e9ccc37
CC
181 struct connection *con;
182
183 r = nodeid_hash(nodeid);
184
b67bfe0d 185 hlist_for_each_entry(con, &connection_hash[r], list) {
5e9ccc37
CC
186 if (con->nodeid == nodeid)
187 return con;
188 }
189 return NULL;
190}
191
6ed7257b
PC
192/*
193 * If 'allocation' is zero then we don't attempt to create a new
194 * connection structure for this node.
195 */
196static struct connection *__nodeid2con(int nodeid, gfp_t alloc)
fdda387f
PC
197{
198 struct connection *con = NULL;
6ed7257b 199 int r;
fdda387f 200
5e9ccc37 201 con = __find_con(nodeid);
6ed7257b
PC
202 if (con || !alloc)
203 return con;
fdda387f 204
6ed7257b
PC
205 con = kmem_cache_zalloc(con_cache, alloc);
206 if (!con)
207 return NULL;
fdda387f 208
5e9ccc37
CC
209 r = nodeid_hash(nodeid);
210 hlist_add_head(&con->list, &connection_hash[r]);
fdda387f 211
6ed7257b
PC
212 con->nodeid = nodeid;
213 mutex_init(&con->sock_mutex);
214 INIT_LIST_HEAD(&con->writequeue);
215 spin_lock_init(&con->writequeue_lock);
216 INIT_WORK(&con->swork, process_send_sockets);
217 INIT_WORK(&con->rwork, process_recv_sockets);
fdda387f 218
6ed7257b
PC
219 /* Setup action pointers for child sockets */
220 if (con->nodeid) {
5e9ccc37 221 struct connection *zerocon = __find_con(0);
fdda387f 222
6ed7257b
PC
223 con->connect_action = zerocon->connect_action;
224 if (!con->rx_action)
225 con->rx_action = zerocon->rx_action;
fdda387f
PC
226 }
227
6ed7257b
PC
228 return con;
229}
230
5e9ccc37
CC
231/* Loop round all connections */
232static void foreach_conn(void (*conn_func)(struct connection *c))
233{
234 int i;
b67bfe0d 235 struct hlist_node *n;
5e9ccc37
CC
236 struct connection *con;
237
238 for (i = 0; i < CONN_HASH_SIZE; i++) {
b67bfe0d 239 hlist_for_each_entry_safe(con, n, &connection_hash[i], list)
5e9ccc37 240 conn_func(con);
5e9ccc37
CC
241 }
242}
243
6ed7257b
PC
244static struct connection *nodeid2con(int nodeid, gfp_t allocation)
245{
246 struct connection *con;
247
7a936ce7 248 mutex_lock(&connections_lock);
6ed7257b 249 con = __nodeid2con(nodeid, allocation);
7a936ce7 250 mutex_unlock(&connections_lock);
6ed7257b 251
fdda387f
PC
252 return con;
253}
254
6ed7257b
PC
255/* This is a bit drastic, but only called when things go wrong */
256static struct connection *assoc2con(int assoc_id)
257{
258 int i;
259 struct connection *con;
260
7a936ce7 261 mutex_lock(&connections_lock);
5e9ccc37
CC
262
263 for (i = 0 ; i < CONN_HASH_SIZE; i++) {
b67bfe0d 264 hlist_for_each_entry(con, &connection_hash[i], list) {
f70cb33b 265 if (con->sctp_assoc == assoc_id) {
5e9ccc37
CC
266 mutex_unlock(&connections_lock);
267 return con;
268 }
6ed7257b
PC
269 }
270 }
7a936ce7 271 mutex_unlock(&connections_lock);
6ed7257b
PC
272 return NULL;
273}
274
36b71a8b
DT
275static struct dlm_node_addr *find_node_addr(int nodeid)
276{
277 struct dlm_node_addr *na;
278
279 list_for_each_entry(na, &dlm_node_addrs, list) {
280 if (na->nodeid == nodeid)
281 return na;
282 }
283 return NULL;
284}
285
286static int addr_compare(struct sockaddr_storage *x, struct sockaddr_storage *y)
6ed7257b 287{
36b71a8b
DT
288 switch (x->ss_family) {
289 case AF_INET: {
290 struct sockaddr_in *sinx = (struct sockaddr_in *)x;
291 struct sockaddr_in *siny = (struct sockaddr_in *)y;
292 if (sinx->sin_addr.s_addr != siny->sin_addr.s_addr)
293 return 0;
294 if (sinx->sin_port != siny->sin_port)
295 return 0;
296 break;
297 }
298 case AF_INET6: {
299 struct sockaddr_in6 *sinx = (struct sockaddr_in6 *)x;
300 struct sockaddr_in6 *siny = (struct sockaddr_in6 *)y;
301 if (!ipv6_addr_equal(&sinx->sin6_addr, &siny->sin6_addr))
302 return 0;
303 if (sinx->sin6_port != siny->sin6_port)
304 return 0;
305 break;
306 }
307 default:
308 return 0;
309 }
310 return 1;
311}
312
313static int nodeid_to_addr(int nodeid, struct sockaddr_storage *sas_out,
98e1b60e 314 struct sockaddr *sa_out, bool try_new_addr)
36b71a8b
DT
315{
316 struct sockaddr_storage sas;
317 struct dlm_node_addr *na;
6ed7257b
PC
318
319 if (!dlm_local_count)
320 return -1;
321
36b71a8b
DT
322 spin_lock(&dlm_node_addrs_spin);
323 na = find_node_addr(nodeid);
98e1b60e
MC
324 if (na && na->addr_count) {
325 if (try_new_addr) {
326 na->curr_addr_index++;
327 if (na->curr_addr_index == na->addr_count)
328 na->curr_addr_index = 0;
329 }
330
331 memcpy(&sas, na->addr[na->curr_addr_index ],
332 sizeof(struct sockaddr_storage));
333 }
36b71a8b
DT
334 spin_unlock(&dlm_node_addrs_spin);
335
336 if (!na)
337 return -EEXIST;
338
339 if (!na->addr_count)
340 return -ENOENT;
341
342 if (sas_out)
343 memcpy(sas_out, &sas, sizeof(struct sockaddr_storage));
344
345 if (!sa_out)
346 return 0;
6ed7257b
PC
347
348 if (dlm_local_addr[0]->ss_family == AF_INET) {
36b71a8b
DT
349 struct sockaddr_in *in4 = (struct sockaddr_in *) &sas;
350 struct sockaddr_in *ret4 = (struct sockaddr_in *) sa_out;
6ed7257b
PC
351 ret4->sin_addr.s_addr = in4->sin_addr.s_addr;
352 } else {
36b71a8b
DT
353 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) &sas;
354 struct sockaddr_in6 *ret6 = (struct sockaddr_in6 *) sa_out;
4e3fd7a0 355 ret6->sin6_addr = in6->sin6_addr;
6ed7257b
PC
356 }
357
358 return 0;
359}
360
36b71a8b
DT
361static int addr_to_nodeid(struct sockaddr_storage *addr, int *nodeid)
362{
363 struct dlm_node_addr *na;
364 int rv = -EEXIST;
98e1b60e 365 int addr_i;
36b71a8b
DT
366
367 spin_lock(&dlm_node_addrs_spin);
368 list_for_each_entry(na, &dlm_node_addrs, list) {
369 if (!na->addr_count)
370 continue;
371
98e1b60e
MC
372 for (addr_i = 0; addr_i < na->addr_count; addr_i++) {
373 if (addr_compare(na->addr[addr_i], addr)) {
374 *nodeid = na->nodeid;
375 rv = 0;
376 goto unlock;
377 }
378 }
36b71a8b 379 }
98e1b60e 380unlock:
36b71a8b
DT
381 spin_unlock(&dlm_node_addrs_spin);
382 return rv;
383}
384
385int dlm_lowcomms_addr(int nodeid, struct sockaddr_storage *addr, int len)
386{
387 struct sockaddr_storage *new_addr;
388 struct dlm_node_addr *new_node, *na;
389
390 new_node = kzalloc(sizeof(struct dlm_node_addr), GFP_NOFS);
391 if (!new_node)
392 return -ENOMEM;
393
394 new_addr = kzalloc(sizeof(struct sockaddr_storage), GFP_NOFS);
395 if (!new_addr) {
396 kfree(new_node);
397 return -ENOMEM;
398 }
399
400 memcpy(new_addr, addr, len);
401
402 spin_lock(&dlm_node_addrs_spin);
403 na = find_node_addr(nodeid);
404 if (!na) {
405 new_node->nodeid = nodeid;
406 new_node->addr[0] = new_addr;
407 new_node->addr_count = 1;
408 list_add(&new_node->list, &dlm_node_addrs);
409 spin_unlock(&dlm_node_addrs_spin);
410 return 0;
411 }
412
413 if (na->addr_count >= DLM_MAX_ADDR_COUNT) {
414 spin_unlock(&dlm_node_addrs_spin);
415 kfree(new_addr);
416 kfree(new_node);
417 return -ENOSPC;
418 }
419
420 na->addr[na->addr_count++] = new_addr;
421 spin_unlock(&dlm_node_addrs_spin);
422 kfree(new_node);
423 return 0;
424}
425
fdda387f 426/* Data available on socket or listen socket received a connect */
676d2369 427static void lowcomms_data_ready(struct sock *sk)
fdda387f
PC
428{
429 struct connection *con = sock2con(sk);
afb853fb 430 if (con && !test_and_set_bit(CF_READ_PENDING, &con->flags))
1d6e8131 431 queue_work(recv_workqueue, &con->rwork);
fdda387f
PC
432}
433
434static void lowcomms_write_space(struct sock *sk)
435{
436 struct connection *con = sock2con(sk);
437
b36930dd
DM
438 if (!con)
439 return;
440
441 clear_bit(SOCK_NOSPACE, &con->sock->flags);
442
443 if (test_and_clear_bit(CF_APP_LIMITED, &con->flags)) {
444 con->sock->sk->sk_write_pending--;
445 clear_bit(SOCK_ASYNC_NOSPACE, &con->sock->flags);
446 }
447
448 if (!test_and_set_bit(CF_WRITE_PENDING, &con->flags))
1d6e8131 449 queue_work(send_workqueue, &con->swork);
fdda387f
PC
450}
451
452static inline void lowcomms_connect_sock(struct connection *con)
453{
063c4c99
LMB
454 if (test_bit(CF_CLOSE, &con->flags))
455 return;
1d6e8131
PC
456 if (!test_and_set_bit(CF_CONNECT_PENDING, &con->flags))
457 queue_work(send_workqueue, &con->swork);
fdda387f
PC
458}
459
460static void lowcomms_state_change(struct sock *sk)
461{
ac33d071 462 if (sk->sk_state == TCP_ESTABLISHED)
fdda387f 463 lowcomms_write_space(sk);
fdda387f
PC
464}
465
391fbdc5
CC
466int dlm_lowcomms_connect_node(int nodeid)
467{
468 struct connection *con;
469
04bedd79
DT
470 /* with sctp there's no connecting without sending */
471 if (dlm_config.ci_protocol != 0)
472 return 0;
473
391fbdc5
CC
474 if (nodeid == dlm_our_nodeid())
475 return 0;
476
477 con = nodeid2con(nodeid, GFP_NOFS);
478 if (!con)
479 return -ENOMEM;
480 lowcomms_connect_sock(con);
481 return 0;
482}
483
fdda387f 484/* Make a socket active */
4dd40f0c 485static void add_sock(struct socket *sock, struct connection *con)
fdda387f
PC
486{
487 con->sock = sock;
488
489 /* Install a data_ready callback */
490 con->sock->sk->sk_data_ready = lowcomms_data_ready;
491 con->sock->sk->sk_write_space = lowcomms_write_space;
492 con->sock->sk->sk_state_change = lowcomms_state_change;
6ed7257b 493 con->sock->sk->sk_user_data = con;
d6d7b702 494 con->sock->sk->sk_allocation = GFP_NOFS;
fdda387f
PC
495}
496
6ed7257b 497/* Add the port number to an IPv6 or 4 sockaddr and return the address
fdda387f
PC
498 length */
499static void make_sockaddr(struct sockaddr_storage *saddr, uint16_t port,
500 int *addr_len)
501{
6ed7257b 502 saddr->ss_family = dlm_local_addr[0]->ss_family;
ac33d071 503 if (saddr->ss_family == AF_INET) {
fdda387f
PC
504 struct sockaddr_in *in4_addr = (struct sockaddr_in *)saddr;
505 in4_addr->sin_port = cpu_to_be16(port);
506 *addr_len = sizeof(struct sockaddr_in);
6ed7257b 507 memset(&in4_addr->sin_zero, 0, sizeof(in4_addr->sin_zero));
ac33d071 508 } else {
fdda387f
PC
509 struct sockaddr_in6 *in6_addr = (struct sockaddr_in6 *)saddr;
510 in6_addr->sin6_port = cpu_to_be16(port);
511 *addr_len = sizeof(struct sockaddr_in6);
512 }
01c8cab2 513 memset((char *)saddr + *addr_len, 0, sizeof(struct sockaddr_storage) - *addr_len);
fdda387f
PC
514}
515
516/* Close a remote connection and tidy up */
0d737a8c
MRL
517static void close_connection(struct connection *con, bool and_other,
518 bool tx, bool rx)
fdda387f 519{
0d737a8c
MRL
520 clear_bit(CF_CONNECT_PENDING, &con->flags);
521 clear_bit(CF_WRITE_PENDING, &con->flags);
522 if (tx && cancel_work_sync(&con->swork))
523 log_print("canceled swork for node %d", con->nodeid);
524 if (rx && cancel_work_sync(&con->rwork))
525 log_print("canceled rwork for node %d", con->nodeid);
fdda387f 526
0d737a8c 527 mutex_lock(&con->sock_mutex);
fdda387f
PC
528 if (con->sock) {
529 sock_release(con->sock);
530 con->sock = NULL;
531 }
532 if (con->othercon && and_other) {
ac33d071 533 /* Will only re-enter once. */
0d737a8c 534 close_connection(con->othercon, false, true, true);
fdda387f
PC
535 }
536 if (con->rx_page) {
537 __free_page(con->rx_page);
538 con->rx_page = NULL;
539 }
9e5f2825 540
61d96be0
PC
541 con->retries = 0;
542 mutex_unlock(&con->sock_mutex);
fdda387f
PC
543}
544
28926a09
MRL
545/* We only send shutdown messages to nodes that are not part of the cluster
546 * or if we get multiple connections from a node.
547 */
6ed7257b
PC
548static void sctp_send_shutdown(sctp_assoc_t associd)
549{
550 static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
551 struct msghdr outmessage;
552 struct cmsghdr *cmsg;
553 struct sctp_sndrcvinfo *sinfo;
554 int ret;
555 struct connection *con;
556
557 con = nodeid2con(0,0);
558 BUG_ON(con == NULL);
559
560 outmessage.msg_name = NULL;
561 outmessage.msg_namelen = 0;
562 outmessage.msg_control = outcmsg;
563 outmessage.msg_controllen = sizeof(outcmsg);
564 outmessage.msg_flags = MSG_EOR;
565
566 cmsg = CMSG_FIRSTHDR(&outmessage);
567 cmsg->cmsg_level = IPPROTO_SCTP;
568 cmsg->cmsg_type = SCTP_SNDRCV;
569 cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndrcvinfo));
570 outmessage.msg_controllen = cmsg->cmsg_len;
571 sinfo = CMSG_DATA(cmsg);
572 memset(sinfo, 0x00, sizeof(struct sctp_sndrcvinfo));
573
574 sinfo->sinfo_flags |= MSG_EOF;
575 sinfo->sinfo_assoc_id = associd;
576
577 ret = kernel_sendmsg(con->sock, &outmessage, NULL, 0, 0);
578
579 if (ret != 0)
580 log_print("send EOF to node failed: %d", ret);
581}
582
5e9ccc37
CC
583static void sctp_init_failed_foreach(struct connection *con)
584{
98e1b60e
MC
585
586 /*
587 * Don't try to recover base con and handle race where the
588 * other node's assoc init creates a assoc and we get that
589 * notification, then we get a notification that our attempt
590 * failed due. This happens when we are still trying the primary
591 * address, but the other node has already tried secondary addrs
592 * and found one that worked.
593 */
594 if (!con->nodeid || con->sctp_assoc)
595 return;
596
597 log_print("Retrying SCTP association init for node %d\n", con->nodeid);
598
599 con->try_new_addr = true;
5e9ccc37 600 con->sctp_assoc = 0;
b390ca38 601 if (test_and_clear_bit(CF_INIT_PENDING, &con->flags)) {
5e9ccc37
CC
602 if (!test_and_set_bit(CF_WRITE_PENDING, &con->flags))
603 queue_work(send_workqueue, &con->swork);
604 }
605}
606
6ed7257b
PC
607/* INIT failed but we don't know which node...
608 restart INIT on all pending nodes */
609static void sctp_init_failed(void)
610{
7a936ce7 611 mutex_lock(&connections_lock);
5e9ccc37
CC
612
613 foreach_conn(sctp_init_failed_foreach);
614
7a936ce7 615 mutex_unlock(&connections_lock);
6ed7257b
PC
616}
617
5d689871
MC
618static void retry_failed_sctp_send(struct connection *recv_con,
619 struct sctp_send_failed *sn_send_failed,
620 char *buf)
621{
622 int len = sn_send_failed->ssf_length - sizeof(struct sctp_send_failed);
623 struct dlm_mhandle *mh;
624 struct connection *con;
625 char *retry_buf;
626 int nodeid = sn_send_failed->ssf_info.sinfo_ppid;
627
628 log_print("Retry sending %d bytes to node id %d", len, nodeid);
883854c5
LZ
629
630 if (!nodeid) {
631 log_print("Shouldn't resend data via listening connection.");
632 return;
633 }
5d689871
MC
634
635 con = nodeid2con(nodeid, 0);
636 if (!con) {
637 log_print("Could not look up con for nodeid %d\n",
638 nodeid);
639 return;
640 }
641
642 mh = dlm_lowcomms_get_buffer(nodeid, len, GFP_NOFS, &retry_buf);
643 if (!mh) {
644 log_print("Could not allocate buf for retry.");
645 return;
646 }
647 memcpy(retry_buf, buf + sizeof(struct sctp_send_failed), len);
648 dlm_lowcomms_commit_buffer(mh);
649
650 /*
651 * If we got a assoc changed event before the send failed event then
652 * we only need to retry the send.
653 */
654 if (con->sctp_assoc) {
655 if (!test_and_set_bit(CF_WRITE_PENDING, &con->flags))
656 queue_work(send_workqueue, &con->swork);
657 } else
658 sctp_init_failed_foreach(con);
659}
660
6ed7257b 661/* Something happened to an association */
617e82e1
DT
662static void process_sctp_notification(struct connection *con,
663 struct msghdr *msg, char *buf)
6ed7257b
PC
664{
665 union sctp_notification *sn = (union sctp_notification *)buf;
ece35848 666 struct linger linger;
6ed7257b 667
5d689871
MC
668 switch (sn->sn_header.sn_type) {
669 case SCTP_SEND_FAILED:
670 retry_failed_sctp_send(con, &sn->sn_send_failed, buf);
671 break;
672 case SCTP_ASSOC_CHANGE:
6ed7257b 673 switch (sn->sn_assoc_change.sac_state) {
6ed7257b
PC
674 case SCTP_COMM_UP:
675 case SCTP_RESTART:
676 {
677 /* Check that the new node is in the lockspace */
678 struct sctp_prim prim;
679 int nodeid;
680 int prim_len, ret;
681 int addr_len;
682 struct connection *new_con;
6ed7257b
PC
683
684 /*
685 * We get this before any data for an association.
686 * We verify that the node is in the cluster and
687 * then peel off a socket for it.
688 */
689 if ((int)sn->sn_assoc_change.sac_assoc_id <= 0) {
690 log_print("COMM_UP for invalid assoc ID %d",
617e82e1 691 (int)sn->sn_assoc_change.sac_assoc_id);
6ed7257b
PC
692 sctp_init_failed();
693 return;
694 }
695 memset(&prim, 0, sizeof(struct sctp_prim));
696 prim_len = sizeof(struct sctp_prim);
697 prim.ssp_assoc_id = sn->sn_assoc_change.sac_assoc_id;
698
699 ret = kernel_getsockopt(con->sock,
700 IPPROTO_SCTP,
701 SCTP_PRIMARY_ADDR,
702 (char*)&prim,
703 &prim_len);
704 if (ret < 0) {
705 log_print("getsockopt/sctp_primary_addr on "
706 "new assoc %d failed : %d",
707 (int)sn->sn_assoc_change.sac_assoc_id,
708 ret);
709
710 /* Retry INIT later */
711 new_con = assoc2con(sn->sn_assoc_change.sac_assoc_id);
712 if (new_con)
713 clear_bit(CF_CONNECT_PENDING, &con->flags);
714 return;
715 }
716 make_sockaddr(&prim.ssp_addr, 0, &addr_len);
36b71a8b 717 if (addr_to_nodeid(&prim.ssp_addr, &nodeid)) {
6ed7257b
PC
718 unsigned char *b=(unsigned char *)&prim.ssp_addr;
719 log_print("reject connect from unknown addr");
bcaadf5c
MY
720 print_hex_dump_bytes("ss: ", DUMP_PREFIX_NONE,
721 b, sizeof(struct sockaddr_storage));
6ed7257b
PC
722 sctp_send_shutdown(prim.ssp_assoc_id);
723 return;
724 }
725
748285cc 726 new_con = nodeid2con(nodeid, GFP_NOFS);
6ed7257b
PC
727 if (!new_con)
728 return;
729
28926a09
MRL
730 if (new_con->sock) {
731 log_print("reject connect from node %d: "
732 "already has a connection.",
733 nodeid);
734 sctp_send_shutdown(prim.ssp_assoc_id);
735 return;
736 }
737
6ed7257b 738 /* Peel off a new sock */
048ed4b6 739 lock_sock(con->sock->sk);
2f2d76cc
BP
740 ret = sctp_do_peeloff(con->sock->sk,
741 sn->sn_assoc_change.sac_assoc_id,
742 &new_con->sock);
048ed4b6 743 release_sock(con->sock->sk);
6861f350 744 if (ret < 0) {
617e82e1 745 log_print("Can't peel off a socket for "
6861f350 746 "connection %d to node %d: err=%d",
2f2d76cc
BP
747 (int)sn->sn_assoc_change.sac_assoc_id,
748 nodeid, ret);
6861f350 749 return;
6ed7257b 750 }
6ed7257b 751 add_sock(new_con->sock, new_con);
6ed7257b 752
ece35848
DZ
753 linger.l_onoff = 1;
754 linger.l_linger = 0;
755 ret = kernel_setsockopt(new_con->sock, SOL_SOCKET, SO_LINGER,
756 (char *)&linger, sizeof(linger));
757 if (ret < 0)
758 log_print("set socket option SO_LINGER failed");
759
6861f350
DT
760 log_print("connecting to %d sctp association %d",
761 nodeid, (int)sn->sn_assoc_change.sac_assoc_id);
6ed7257b 762
e1631d0c 763 new_con->sctp_assoc = sn->sn_assoc_change.sac_assoc_id;
98e1b60e 764 new_con->try_new_addr = false;
6ed7257b
PC
765 /* Send any pending writes */
766 clear_bit(CF_CONNECT_PENDING, &new_con->flags);
efad7e6b 767 clear_bit(CF_INIT_PENDING, &new_con->flags);
6ed7257b
PC
768 if (!test_and_set_bit(CF_WRITE_PENDING, &new_con->flags)) {
769 queue_work(send_workqueue, &new_con->swork);
770 }
771 if (!test_and_set_bit(CF_READ_PENDING, &new_con->flags))
772 queue_work(recv_workqueue, &new_con->rwork);
773 }
774 break;
775
776 case SCTP_COMM_LOST:
777 case SCTP_SHUTDOWN_COMP:
778 {
779 con = assoc2con(sn->sn_assoc_change.sac_assoc_id);
780 if (con) {
781 con->sctp_assoc = 0;
782 }
783 }
784 break;
785
6ed7257b
PC
786 case SCTP_CANT_STR_ASSOC:
787 {
5d689871 788 /* Will retry init when we get the send failed notification */
6ed7257b 789 log_print("Can't start SCTP association - retrying");
6ed7257b
PC
790 }
791 break;
792
793 default:
794 log_print("unexpected SCTP assoc change id=%d state=%d",
795 (int)sn->sn_assoc_change.sac_assoc_id,
796 sn->sn_assoc_change.sac_state);
797 }
5d689871
MC
798 default:
799 ; /* fall through */
6ed7257b
PC
800 }
801}
802
fdda387f
PC
803/* Data received from remote end */
804static int receive_from_sock(struct connection *con)
805{
806 int ret = 0;
58addbff
AV
807 struct msghdr msg = {};
808 struct kvec iov[2];
fdda387f
PC
809 unsigned len;
810 int r;
811 int call_again_soon = 0;
58addbff 812 int nvec;
6ed7257b 813 char incmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
fdda387f 814
f1f1c1cc 815 mutex_lock(&con->sock_mutex);
fdda387f 816
a34fbc63
PC
817 if (con->sock == NULL) {
818 ret = -EAGAIN;
819 goto out_close;
820 }
821
fdda387f
PC
822 if (con->rx_page == NULL) {
823 /*
824 * This doesn't need to be atomic, but I think it should
825 * improve performance if it is.
826 */
827 con->rx_page = alloc_page(GFP_ATOMIC);
828 if (con->rx_page == NULL)
829 goto out_resched;
ac33d071 830 cbuf_init(&con->cb, PAGE_CACHE_SIZE);
fdda387f
PC
831 }
832
6ed7257b
PC
833 /* Only SCTP needs these really */
834 memset(&incmsg, 0, sizeof(incmsg));
835 msg.msg_control = incmsg;
836 msg.msg_controllen = sizeof(incmsg);
837
fdda387f
PC
838 /*
839 * iov[0] is the bit of the circular buffer between the current end
840 * point (cb.base + cb.len) and the end of the buffer.
841 */
ac33d071
PC
842 iov[0].iov_len = con->cb.base - cbuf_data(&con->cb);
843 iov[0].iov_base = page_address(con->rx_page) + cbuf_data(&con->cb);
89adc934 844 iov[1].iov_len = 0;
58addbff 845 nvec = 1;
fdda387f
PC
846
847 /*
848 * iov[1] is the bit of the circular buffer between the start of the
849 * buffer and the start of the currently used section (cb.base)
850 */
ac33d071
PC
851 if (cbuf_data(&con->cb) >= con->cb.base) {
852 iov[0].iov_len = PAGE_CACHE_SIZE - cbuf_data(&con->cb);
fdda387f
PC
853 iov[1].iov_len = con->cb.base;
854 iov[1].iov_base = page_address(con->rx_page);
58addbff 855 nvec = 2;
fdda387f
PC
856 }
857 len = iov[0].iov_len + iov[1].iov_len;
858
58addbff 859 r = ret = kernel_recvmsg(con->sock, &msg, iov, nvec, len,
fdda387f 860 MSG_DONTWAIT | MSG_NOSIGNAL);
fdda387f
PC
861 if (ret <= 0)
862 goto out_close;
bd44e2b0 863
6ed7257b
PC
864 /* Process SCTP notifications */
865 if (msg.msg_flags & MSG_NOTIFICATION) {
6ed7257b
PC
866 msg.msg_control = incmsg;
867 msg.msg_controllen = sizeof(incmsg);
868
869 process_sctp_notification(con, &msg,
617e82e1 870 page_address(con->rx_page) + con->cb.base);
6ed7257b
PC
871 mutex_unlock(&con->sock_mutex);
872 return 0;
873 }
874 BUG_ON(con->nodeid == 0);
875
fdda387f
PC
876 if (ret == len)
877 call_again_soon = 1;
ac33d071 878 cbuf_add(&con->cb, ret);
fdda387f
PC
879 ret = dlm_process_incoming_buffer(con->nodeid,
880 page_address(con->rx_page),
881 con->cb.base, con->cb.len,
882 PAGE_CACHE_SIZE);
883 if (ret == -EBADMSG) {
617e82e1
DT
884 log_print("lowcomms: addr=%p, base=%u, len=%u, "
885 "iov_len=%u, iov_base[0]=%p, read=%d",
886 page_address(con->rx_page), con->cb.base, con->cb.len,
887 len, iov[0].iov_base, r);
fdda387f
PC
888 }
889 if (ret < 0)
890 goto out_close;
ac33d071 891 cbuf_eat(&con->cb, ret);
fdda387f 892
ac33d071 893 if (cbuf_empty(&con->cb) && !call_again_soon) {
fdda387f
PC
894 __free_page(con->rx_page);
895 con->rx_page = NULL;
896 }
897
fdda387f
PC
898 if (call_again_soon)
899 goto out_resched;
f1f1c1cc 900 mutex_unlock(&con->sock_mutex);
ac33d071 901 return 0;
fdda387f 902
ac33d071 903out_resched:
1d6e8131
PC
904 if (!test_and_set_bit(CF_READ_PENDING, &con->flags))
905 queue_work(recv_workqueue, &con->rwork);
f1f1c1cc 906 mutex_unlock(&con->sock_mutex);
bd44e2b0 907 return -EAGAIN;
fdda387f 908
ac33d071 909out_close:
f1f1c1cc 910 mutex_unlock(&con->sock_mutex);
9e5f2825 911 if (ret != -EAGAIN) {
0d737a8c 912 close_connection(con, false, true, false);
fdda387f
PC
913 /* Reconnect when there is something to send */
914 }
a34fbc63
PC
915 /* Don't return success if we really got EOF */
916 if (ret == 0)
917 ret = -EAGAIN;
fdda387f 918
fdda387f
PC
919 return ret;
920}
921
922/* Listening socket is busy, accept a connection */
6ed7257b 923static int tcp_accept_from_sock(struct connection *con)
fdda387f
PC
924{
925 int result;
926 struct sockaddr_storage peeraddr;
927 struct socket *newsock;
928 int len;
929 int nodeid;
930 struct connection *newcon;
bd44e2b0 931 struct connection *addcon;
fdda387f 932
513ef596
DT
933 mutex_lock(&connections_lock);
934 if (!dlm_allow_conn) {
935 mutex_unlock(&connections_lock);
936 return -1;
937 }
938 mutex_unlock(&connections_lock);
939
fdda387f 940 memset(&peeraddr, 0, sizeof(peeraddr));
eeb1bd5c
EB
941 result = sock_create_kern(&init_net, dlm_local_addr[0]->ss_family,
942 SOCK_STREAM, IPPROTO_TCP, &newsock);
fdda387f
PC
943 if (result < 0)
944 return -ENOMEM;
945
f1f1c1cc 946 mutex_lock_nested(&con->sock_mutex, 0);
fdda387f
PC
947
948 result = -ENOTCONN;
949 if (con->sock == NULL)
950 goto accept_err;
951
952 newsock->type = con->sock->type;
953 newsock->ops = con->sock->ops;
954
955 result = con->sock->ops->accept(con->sock, newsock, O_NONBLOCK);
956 if (result < 0)
957 goto accept_err;
958
959 /* Get the connected socket's peer */
960 memset(&peeraddr, 0, sizeof(peeraddr));
961 if (newsock->ops->getname(newsock, (struct sockaddr *)&peeraddr,
962 &len, 2)) {
963 result = -ECONNABORTED;
964 goto accept_err;
965 }
966
967 /* Get the new node's NODEID */
968 make_sockaddr(&peeraddr, 0, &len);
36b71a8b 969 if (addr_to_nodeid(&peeraddr, &nodeid)) {
bcaadf5c 970 unsigned char *b=(unsigned char *)&peeraddr;
617e82e1 971 log_print("connect from non cluster node");
bcaadf5c
MY
972 print_hex_dump_bytes("ss: ", DUMP_PREFIX_NONE,
973 b, sizeof(struct sockaddr_storage));
fdda387f 974 sock_release(newsock);
f1f1c1cc 975 mutex_unlock(&con->sock_mutex);
fdda387f
PC
976 return -1;
977 }
978
979 log_print("got connection from %d", nodeid);
980
981 /* Check to see if we already have a connection to this node. This
982 * could happen if the two nodes initiate a connection at roughly
983 * the same time and the connections cross on the wire.
fdda387f
PC
984 * In this case we store the incoming one in "othercon"
985 */
748285cc 986 newcon = nodeid2con(nodeid, GFP_NOFS);
fdda387f
PC
987 if (!newcon) {
988 result = -ENOMEM;
989 goto accept_err;
990 }
f1f1c1cc 991 mutex_lock_nested(&newcon->sock_mutex, 1);
fdda387f 992 if (newcon->sock) {
ac33d071 993 struct connection *othercon = newcon->othercon;
fdda387f
PC
994
995 if (!othercon) {
748285cc 996 othercon = kmem_cache_zalloc(con_cache, GFP_NOFS);
fdda387f 997 if (!othercon) {
617e82e1 998 log_print("failed to allocate incoming socket");
f1f1c1cc 999 mutex_unlock(&newcon->sock_mutex);
fdda387f
PC
1000 result = -ENOMEM;
1001 goto accept_err;
1002 }
fdda387f
PC
1003 othercon->nodeid = nodeid;
1004 othercon->rx_action = receive_from_sock;
f1f1c1cc 1005 mutex_init(&othercon->sock_mutex);
1d6e8131
PC
1006 INIT_WORK(&othercon->swork, process_send_sockets);
1007 INIT_WORK(&othercon->rwork, process_recv_sockets);
fdda387f 1008 set_bit(CF_IS_OTHERCON, &othercon->flags);
61d96be0
PC
1009 }
1010 if (!othercon->sock) {
fdda387f 1011 newcon->othercon = othercon;
97d84836
PC
1012 othercon->sock = newsock;
1013 newsock->sk->sk_user_data = othercon;
1014 add_sock(newsock, othercon);
1015 addcon = othercon;
1016 }
1017 else {
1018 printk("Extra connection from node %d attempted\n", nodeid);
1019 result = -EAGAIN;
f4fadb23 1020 mutex_unlock(&newcon->sock_mutex);
97d84836 1021 goto accept_err;
fdda387f 1022 }
fdda387f
PC
1023 }
1024 else {
1025 newsock->sk->sk_user_data = newcon;
1026 newcon->rx_action = receive_from_sock;
1027 add_sock(newsock, newcon);
bd44e2b0 1028 addcon = newcon;
fdda387f
PC
1029 }
1030
f1f1c1cc 1031 mutex_unlock(&newcon->sock_mutex);
fdda387f
PC
1032
1033 /*
1034 * Add it to the active queue in case we got data
25985edc 1035 * between processing the accept adding the socket
fdda387f
PC
1036 * to the read_sockets list
1037 */
bd44e2b0
PC
1038 if (!test_and_set_bit(CF_READ_PENDING, &addcon->flags))
1039 queue_work(recv_workqueue, &addcon->rwork);
f1f1c1cc 1040 mutex_unlock(&con->sock_mutex);
fdda387f
PC
1041
1042 return 0;
1043
ac33d071 1044accept_err:
f1f1c1cc 1045 mutex_unlock(&con->sock_mutex);
fdda387f
PC
1046 sock_release(newsock);
1047
1048 if (result != -EAGAIN)
617e82e1 1049 log_print("error accepting connection from node: %d", result);
fdda387f
PC
1050 return result;
1051}
1052
6ed7257b
PC
1053static void free_entry(struct writequeue_entry *e)
1054{
1055 __free_page(e->page);
1056 kfree(e);
1057}
1058
5d689871
MC
1059/*
1060 * writequeue_entry_complete - try to delete and free write queue entry
1061 * @e: write queue entry to try to delete
1062 * @completed: bytes completed
1063 *
1064 * writequeue_lock must be held.
1065 */
1066static void writequeue_entry_complete(struct writequeue_entry *e, int completed)
1067{
1068 e->offset += completed;
1069 e->len -= completed;
1070
1071 if (e->len == 0 && e->users == 0) {
1072 list_del(&e->list);
1073 free_entry(e);
1074 }
1075}
1076
6ed7257b
PC
1077/* Initiate an SCTP association.
1078 This is a special case of send_to_sock() in that we don't yet have a
1079 peeled-off socket for this association, so we use the listening socket
1080 and add the primary IP address of the remote node.
1081 */
1082static void sctp_init_assoc(struct connection *con)
1083{
1084 struct sockaddr_storage rem_addr;
1085 char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
1086 struct msghdr outmessage;
1087 struct cmsghdr *cmsg;
1088 struct sctp_sndrcvinfo *sinfo;
1089 struct connection *base_con;
1090 struct writequeue_entry *e;
1091 int len, offset;
1092 int ret;
1093 int addrlen;
1094 struct kvec iov[1];
1095
5d689871 1096 mutex_lock(&con->sock_mutex);
6ed7257b 1097 if (test_and_set_bit(CF_INIT_PENDING, &con->flags))
5d689871 1098 goto unlock;
6ed7257b 1099
98e1b60e
MC
1100 if (nodeid_to_addr(con->nodeid, NULL, (struct sockaddr *)&rem_addr,
1101 con->try_new_addr)) {
6ed7257b 1102 log_print("no address for nodeid %d", con->nodeid);
5d689871 1103 goto unlock;
6ed7257b
PC
1104 }
1105 base_con = nodeid2con(0, 0);
1106 BUG_ON(base_con == NULL);
1107
1108 make_sockaddr(&rem_addr, dlm_config.ci_tcp_port, &addrlen);
1109
1110 outmessage.msg_name = &rem_addr;
1111 outmessage.msg_namelen = addrlen;
1112 outmessage.msg_control = outcmsg;
1113 outmessage.msg_controllen = sizeof(outcmsg);
1114 outmessage.msg_flags = MSG_EOR;
1115
1116 spin_lock(&con->writequeue_lock);
6ed7257b 1117
04bedd79
DT
1118 if (list_empty(&con->writequeue)) {
1119 spin_unlock(&con->writequeue_lock);
1120 log_print("writequeue empty for nodeid %d", con->nodeid);
5d689871 1121 goto unlock;
04bedd79 1122 }
6ed7257b 1123
04bedd79 1124 e = list_first_entry(&con->writequeue, struct writequeue_entry, list);
6ed7257b
PC
1125 len = e->len;
1126 offset = e->offset;
6ed7257b
PC
1127
1128 /* Send the first block off the write queue */
1129 iov[0].iov_base = page_address(e->page)+offset;
1130 iov[0].iov_len = len;
5d689871 1131 spin_unlock(&con->writequeue_lock);
6ed7257b 1132
98e1b60e
MC
1133 if (rem_addr.ss_family == AF_INET) {
1134 struct sockaddr_in *sin = (struct sockaddr_in *)&rem_addr;
1135 log_print("Trying to connect to %pI4", &sin->sin_addr.s_addr);
1136 } else {
1137 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&rem_addr;
1138 log_print("Trying to connect to %pI6", &sin6->sin6_addr);
1139 }
1140
6ed7257b
PC
1141 cmsg = CMSG_FIRSTHDR(&outmessage);
1142 cmsg->cmsg_level = IPPROTO_SCTP;
1143 cmsg->cmsg_type = SCTP_SNDRCV;
1144 cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndrcvinfo));
1145 sinfo = CMSG_DATA(cmsg);
1146 memset(sinfo, 0x00, sizeof(struct sctp_sndrcvinfo));
5d689871 1147 sinfo->sinfo_ppid = cpu_to_le32(con->nodeid);
6ed7257b 1148 outmessage.msg_controllen = cmsg->cmsg_len;
98e1b60e 1149 sinfo->sinfo_flags |= SCTP_ADDR_OVER;
6ed7257b
PC
1150
1151 ret = kernel_sendmsg(base_con->sock, &outmessage, iov, 1, len);
1152 if (ret < 0) {
617e82e1
DT
1153 log_print("Send first packet to node %d failed: %d",
1154 con->nodeid, ret);
6ed7257b
PC
1155
1156 /* Try again later */
1157 clear_bit(CF_CONNECT_PENDING, &con->flags);
1158 clear_bit(CF_INIT_PENDING, &con->flags);
1159 }
1160 else {
1161 spin_lock(&con->writequeue_lock);
5d689871 1162 writequeue_entry_complete(e, ret);
6ed7257b
PC
1163 spin_unlock(&con->writequeue_lock);
1164 }
5d689871
MC
1165
1166unlock:
1167 mutex_unlock(&con->sock_mutex);
6ed7257b
PC
1168}
1169
fdda387f 1170/* Connect a new socket to its peer */
6ed7257b 1171static void tcp_connect_to_sock(struct connection *con)
fdda387f 1172{
6bd8feda 1173 struct sockaddr_storage saddr, src_addr;
fdda387f 1174 int addr_len;
a89d63a1 1175 struct socket *sock = NULL;
cb2d45da 1176 int one = 1;
36b71a8b 1177 int result;
fdda387f
PC
1178
1179 if (con->nodeid == 0) {
1180 log_print("attempt to connect sock 0 foiled");
ac33d071 1181 return;
fdda387f
PC
1182 }
1183
f1f1c1cc 1184 mutex_lock(&con->sock_mutex);
fdda387f
PC
1185 if (con->retries++ > MAX_CONNECT_RETRIES)
1186 goto out;
1187
1188 /* Some odd races can cause double-connects, ignore them */
36b71a8b 1189 if (con->sock)
fdda387f 1190 goto out;
fdda387f
PC
1191
1192 /* Create a socket to communicate with */
eeb1bd5c
EB
1193 result = sock_create_kern(&init_net, dlm_local_addr[0]->ss_family,
1194 SOCK_STREAM, IPPROTO_TCP, &sock);
fdda387f
PC
1195 if (result < 0)
1196 goto out_err;
1197
1198 memset(&saddr, 0, sizeof(saddr));
98e1b60e 1199 result = nodeid_to_addr(con->nodeid, &saddr, NULL, false);
36b71a8b
DT
1200 if (result < 0) {
1201 log_print("no address for nodeid %d", con->nodeid);
ac33d071 1202 goto out_err;
36b71a8b 1203 }
fdda387f
PC
1204
1205 sock->sk->sk_user_data = con;
1206 con->rx_action = receive_from_sock;
6ed7257b
PC
1207 con->connect_action = tcp_connect_to_sock;
1208 add_sock(sock, con);
fdda387f 1209
6bd8feda
LH
1210 /* Bind to our cluster-known address connecting to avoid
1211 routing problems */
1212 memcpy(&src_addr, dlm_local_addr[0], sizeof(src_addr));
1213 make_sockaddr(&src_addr, 0, &addr_len);
1214 result = sock->ops->bind(sock, (struct sockaddr *) &src_addr,
1215 addr_len);
1216 if (result < 0) {
1217 log_print("could not bind for connect: %d", result);
1218 /* This *may* not indicate a critical error */
1219 }
1220
68c817a1 1221 make_sockaddr(&saddr, dlm_config.ci_tcp_port, &addr_len);
fdda387f 1222
fdda387f 1223 log_print("connecting to %d", con->nodeid);
cb2d45da
DT
1224
1225 /* Turn off Nagle's algorithm */
1226 kernel_setsockopt(sock, SOL_TCP, TCP_NODELAY, (char *)&one,
1227 sizeof(one));
1228
36b71a8b 1229 result = sock->ops->connect(sock, (struct sockaddr *)&saddr, addr_len,
ac33d071 1230 O_NONBLOCK);
fdda387f
PC
1231 if (result == -EINPROGRESS)
1232 result = 0;
ac33d071
PC
1233 if (result == 0)
1234 goto out;
fdda387f 1235
ac33d071 1236out_err:
fdda387f
PC
1237 if (con->sock) {
1238 sock_release(con->sock);
1239 con->sock = NULL;
a89d63a1
CD
1240 } else if (sock) {
1241 sock_release(sock);
fdda387f
PC
1242 }
1243 /*
1244 * Some errors are fatal and this list might need adjusting. For other
1245 * errors we try again until the max number of retries is reached.
1246 */
36b71a8b
DT
1247 if (result != -EHOSTUNREACH &&
1248 result != -ENETUNREACH &&
1249 result != -ENETDOWN &&
1250 result != -EINVAL &&
1251 result != -EPROTONOSUPPORT) {
1252 log_print("connect %d try %d error %d", con->nodeid,
1253 con->retries, result);
1254 mutex_unlock(&con->sock_mutex);
1255 msleep(1000);
356344c4 1256 clear_bit(CF_CONNECT_PENDING, &con->flags);
fdda387f 1257 lowcomms_connect_sock(con);
36b71a8b 1258 return;
fdda387f 1259 }
ac33d071 1260out:
f1f1c1cc 1261 mutex_unlock(&con->sock_mutex);
ac33d071 1262 return;
fdda387f
PC
1263}
1264
6ed7257b
PC
1265static struct socket *tcp_create_listen_sock(struct connection *con,
1266 struct sockaddr_storage *saddr)
fdda387f 1267{
ac33d071 1268 struct socket *sock = NULL;
fdda387f
PC
1269 int result = 0;
1270 int one = 1;
1271 int addr_len;
1272
6ed7257b 1273 if (dlm_local_addr[0]->ss_family == AF_INET)
fdda387f
PC
1274 addr_len = sizeof(struct sockaddr_in);
1275 else
1276 addr_len = sizeof(struct sockaddr_in6);
1277
1278 /* Create a socket to communicate with */
eeb1bd5c
EB
1279 result = sock_create_kern(&init_net, dlm_local_addr[0]->ss_family,
1280 SOCK_STREAM, IPPROTO_TCP, &sock);
fdda387f 1281 if (result < 0) {
617e82e1 1282 log_print("Can't create listening comms socket");
fdda387f
PC
1283 goto create_out;
1284 }
1285
cb2d45da
DT
1286 /* Turn off Nagle's algorithm */
1287 kernel_setsockopt(sock, SOL_TCP, TCP_NODELAY, (char *)&one,
1288 sizeof(one));
1289
6ed7257b
PC
1290 result = kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
1291 (char *)&one, sizeof(one));
1292
fdda387f 1293 if (result < 0) {
617e82e1 1294 log_print("Failed to set SO_REUSEADDR on socket: %d", result);
fdda387f 1295 }
6ed7257b
PC
1296 con->rx_action = tcp_accept_from_sock;
1297 con->connect_action = tcp_connect_to_sock;
fdda387f
PC
1298
1299 /* Bind to our port */
68c817a1 1300 make_sockaddr(saddr, dlm_config.ci_tcp_port, &addr_len);
fdda387f
PC
1301 result = sock->ops->bind(sock, (struct sockaddr *) saddr, addr_len);
1302 if (result < 0) {
617e82e1 1303 log_print("Can't bind to port %d", dlm_config.ci_tcp_port);
fdda387f
PC
1304 sock_release(sock);
1305 sock = NULL;
1306 con->sock = NULL;
1307 goto create_out;
1308 }
6ed7257b 1309 result = kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
ac33d071 1310 (char *)&one, sizeof(one));
fdda387f 1311 if (result < 0) {
617e82e1 1312 log_print("Set keepalive failed: %d", result);
fdda387f
PC
1313 }
1314
1315 result = sock->ops->listen(sock, 5);
1316 if (result < 0) {
617e82e1 1317 log_print("Can't listen on port %d", dlm_config.ci_tcp_port);
fdda387f
PC
1318 sock_release(sock);
1319 sock = NULL;
1320 goto create_out;
1321 }
1322
ac33d071 1323create_out:
fdda387f
PC
1324 return sock;
1325}
1326
6ed7257b
PC
1327/* Get local addresses */
1328static void init_local(void)
1329{
1330 struct sockaddr_storage sas, *addr;
1331 int i;
1332
30d3a237 1333 dlm_local_count = 0;
1b189b88 1334 for (i = 0; i < DLM_MAX_ADDR_COUNT; i++) {
6ed7257b
PC
1335 if (dlm_our_addr(&sas, i))
1336 break;
1337
573c24c4 1338 addr = kmalloc(sizeof(*addr), GFP_NOFS);
6ed7257b
PC
1339 if (!addr)
1340 break;
1341 memcpy(addr, &sas, sizeof(*addr));
1342 dlm_local_addr[dlm_local_count++] = addr;
1343 }
1344}
1345
617e82e1
DT
1346/* Bind to an IP address. SCTP allows multiple address so it can do
1347 multi-homing */
1348static int add_sctp_bind_addr(struct connection *sctp_con,
1349 struct sockaddr_storage *addr,
1350 int addr_len, int num)
6ed7257b
PC
1351{
1352 int result = 0;
1353
1354 if (num == 1)
1355 result = kernel_bind(sctp_con->sock,
1356 (struct sockaddr *) addr,
1357 addr_len);
1358 else
1359 result = kernel_setsockopt(sctp_con->sock, SOL_SCTP,
1360 SCTP_SOCKOPT_BINDX_ADD,
1361 (char *)addr, addr_len);
1362
1363 if (result < 0)
1364 log_print("Can't bind to port %d addr number %d",
1365 dlm_config.ci_tcp_port, num);
1366
1367 return result;
1368}
fdda387f 1369
6ed7257b
PC
1370/* Initialise SCTP socket and bind to all interfaces */
1371static int sctp_listen_for_all(void)
1372{
1373 struct socket *sock = NULL;
1374 struct sockaddr_storage localaddr;
1375 struct sctp_event_subscribe subscribe;
1376 int result = -EINVAL, num = 1, i, addr_len;
573c24c4 1377 struct connection *con = nodeid2con(0, GFP_NOFS);
6ed7257b 1378 int bufsize = NEEDED_RMEM;
86e92ad2 1379 int one = 1;
6ed7257b
PC
1380
1381 if (!con)
1382 return -ENOMEM;
1383
1384 log_print("Using SCTP for communications");
1385
eeb1bd5c
EB
1386 result = sock_create_kern(&init_net, dlm_local_addr[0]->ss_family,
1387 SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
6ed7257b
PC
1388 if (result < 0) {
1389 log_print("Can't create comms socket, check SCTP is loaded");
1390 goto out;
1391 }
1392
1393 /* Listen for events */
1394 memset(&subscribe, 0, sizeof(subscribe));
1395 subscribe.sctp_data_io_event = 1;
1396 subscribe.sctp_association_event = 1;
1397 subscribe.sctp_send_failure_event = 1;
1398 subscribe.sctp_shutdown_event = 1;
1399 subscribe.sctp_partial_delivery_event = 1;
1400
df61c952 1401 result = kernel_setsockopt(sock, SOL_SOCKET, SO_RCVBUFFORCE,
6ed7257b
PC
1402 (char *)&bufsize, sizeof(bufsize));
1403 if (result)
617e82e1 1404 log_print("Error increasing buffer space on socket %d", result);
6ed7257b
PC
1405
1406 result = kernel_setsockopt(sock, SOL_SCTP, SCTP_EVENTS,
617e82e1 1407 (char *)&subscribe, sizeof(subscribe));
6ed7257b
PC
1408 if (result < 0) {
1409 log_print("Failed to set SCTP_EVENTS on socket: result=%d",
1410 result);
1411 goto create_delsock;
1412 }
1413
86e92ad2
MC
1414 result = kernel_setsockopt(sock, SOL_SCTP, SCTP_NODELAY, (char *)&one,
1415 sizeof(one));
1416 if (result < 0)
1417 log_print("Could not set SCTP NODELAY error %d\n", result);
1418
6ed7257b
PC
1419 /* Init con struct */
1420 sock->sk->sk_user_data = con;
1421 con->sock = sock;
1422 con->sock->sk->sk_data_ready = lowcomms_data_ready;
1423 con->rx_action = receive_from_sock;
1424 con->connect_action = sctp_init_assoc;
1425
1426 /* Bind to all interfaces. */
1427 for (i = 0; i < dlm_local_count; i++) {
1428 memcpy(&localaddr, dlm_local_addr[i], sizeof(localaddr));
1429 make_sockaddr(&localaddr, dlm_config.ci_tcp_port, &addr_len);
1430
1431 result = add_sctp_bind_addr(con, &localaddr, addr_len, num);
1432 if (result)
1433 goto create_delsock;
1434 ++num;
1435 }
1436
1437 result = sock->ops->listen(sock, 5);
1438 if (result < 0) {
1439 log_print("Can't set socket listening");
1440 goto create_delsock;
1441 }
1442
1443 return 0;
1444
1445create_delsock:
1446 sock_release(sock);
1447 con->sock = NULL;
1448out:
1449 return result;
1450}
1451
1452static int tcp_listen_for_all(void)
fdda387f
PC
1453{
1454 struct socket *sock = NULL;
573c24c4 1455 struct connection *con = nodeid2con(0, GFP_NOFS);
fdda387f
PC
1456 int result = -EINVAL;
1457
6ed7257b
PC
1458 if (!con)
1459 return -ENOMEM;
1460
fdda387f 1461 /* We don't support multi-homed hosts */
6ed7257b 1462 if (dlm_local_addr[1] != NULL) {
617e82e1
DT
1463 log_print("TCP protocol can't handle multi-homed hosts, "
1464 "try SCTP");
6ed7257b
PC
1465 return -EINVAL;
1466 }
1467
1468 log_print("Using TCP for communications");
1469
6ed7257b 1470 sock = tcp_create_listen_sock(con, dlm_local_addr[0]);
fdda387f
PC
1471 if (sock) {
1472 add_sock(sock, con);
1473 result = 0;
1474 }
1475 else {
1476 result = -EADDRINUSE;
1477 }
1478
1479 return result;
1480}
1481
1482
1483
1484static struct writequeue_entry *new_writequeue_entry(struct connection *con,
1485 gfp_t allocation)
1486{
1487 struct writequeue_entry *entry;
1488
1489 entry = kmalloc(sizeof(struct writequeue_entry), allocation);
1490 if (!entry)
1491 return NULL;
1492
1493 entry->page = alloc_page(allocation);
1494 if (!entry->page) {
1495 kfree(entry);
1496 return NULL;
1497 }
1498
1499 entry->offset = 0;
1500 entry->len = 0;
1501 entry->end = 0;
1502 entry->users = 0;
1503 entry->con = con;
1504
1505 return entry;
1506}
1507
617e82e1 1508void *dlm_lowcomms_get_buffer(int nodeid, int len, gfp_t allocation, char **ppc)
fdda387f
PC
1509{
1510 struct connection *con;
1511 struct writequeue_entry *e;
1512 int offset = 0;
fdda387f 1513
fdda387f
PC
1514 con = nodeid2con(nodeid, allocation);
1515 if (!con)
1516 return NULL;
1517
4edde74e 1518 spin_lock(&con->writequeue_lock);
fdda387f 1519 e = list_entry(con->writequeue.prev, struct writequeue_entry, list);
ac33d071 1520 if ((&e->list == &con->writequeue) ||
fdda387f
PC
1521 (PAGE_CACHE_SIZE - e->end < len)) {
1522 e = NULL;
1523 } else {
1524 offset = e->end;
1525 e->end += len;
eeee2b5f 1526 e->users++;
fdda387f
PC
1527 }
1528 spin_unlock(&con->writequeue_lock);
1529
1530 if (e) {
ac33d071 1531 got_one:
fdda387f
PC
1532 *ppc = page_address(e->page) + offset;
1533 return e;
1534 }
1535
1536 e = new_writequeue_entry(con, allocation);
1537 if (e) {
1538 spin_lock(&con->writequeue_lock);
1539 offset = e->end;
1540 e->end += len;
eeee2b5f 1541 e->users++;
fdda387f
PC
1542 list_add_tail(&e->list, &con->writequeue);
1543 spin_unlock(&con->writequeue_lock);
1544 goto got_one;
1545 }
1546 return NULL;
1547}
1548
1549void dlm_lowcomms_commit_buffer(void *mh)
1550{
1551 struct writequeue_entry *e = (struct writequeue_entry *)mh;
1552 struct connection *con = e->con;
1553 int users;
1554
4edde74e 1555 spin_lock(&con->writequeue_lock);
fdda387f
PC
1556 users = --e->users;
1557 if (users)
1558 goto out;
1559 e->len = e->end - e->offset;
fdda387f
PC
1560 spin_unlock(&con->writequeue_lock);
1561
1d6e8131
PC
1562 if (!test_and_set_bit(CF_WRITE_PENDING, &con->flags)) {
1563 queue_work(send_workqueue, &con->swork);
fdda387f
PC
1564 }
1565 return;
1566
ac33d071 1567out:
fdda387f
PC
1568 spin_unlock(&con->writequeue_lock);
1569 return;
1570}
1571
fdda387f 1572/* Send a message */
ac33d071 1573static void send_to_sock(struct connection *con)
fdda387f
PC
1574{
1575 int ret = 0;
fdda387f
PC
1576 const int msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL;
1577 struct writequeue_entry *e;
1578 int len, offset;
f92c8dd7 1579 int count = 0;
fdda387f 1580
f1f1c1cc 1581 mutex_lock(&con->sock_mutex);
fdda387f
PC
1582 if (con->sock == NULL)
1583 goto out_connect;
1584
fdda387f
PC
1585 spin_lock(&con->writequeue_lock);
1586 for (;;) {
1587 e = list_entry(con->writequeue.next, struct writequeue_entry,
1588 list);
1589 if ((struct list_head *) e == &con->writequeue)
1590 break;
1591
1592 len = e->len;
1593 offset = e->offset;
1594 BUG_ON(len == 0 && e->users == 0);
1595 spin_unlock(&con->writequeue_lock);
1596
1597 ret = 0;
1598 if (len) {
1329e3f2
PB
1599 ret = kernel_sendpage(con->sock, e->page, offset, len,
1600 msg_flags);
d66f8277 1601 if (ret == -EAGAIN || ret == 0) {
b36930dd
DM
1602 if (ret == -EAGAIN &&
1603 test_bit(SOCK_ASYNC_NOSPACE, &con->sock->flags) &&
1604 !test_and_set_bit(CF_APP_LIMITED, &con->flags)) {
1605 /* Notify TCP that we're limited by the
1606 * application window size.
1607 */
1608 set_bit(SOCK_NOSPACE, &con->sock->flags);
1609 con->sock->sk->sk_write_pending++;
1610 }
d66f8277 1611 cond_resched();
fdda387f 1612 goto out;
9c5bef58 1613 } else if (ret < 0)
fdda387f 1614 goto send_error;
d66f8277 1615 }
f92c8dd7
BP
1616
1617 /* Don't starve people filling buffers */
1618 if (++count >= MAX_SEND_MSG_COUNT) {
ac33d071 1619 cond_resched();
f92c8dd7
BP
1620 count = 0;
1621 }
fdda387f
PC
1622
1623 spin_lock(&con->writequeue_lock);
5d689871 1624 writequeue_entry_complete(e, ret);
fdda387f
PC
1625 }
1626 spin_unlock(&con->writequeue_lock);
ac33d071 1627out:
f1f1c1cc 1628 mutex_unlock(&con->sock_mutex);
ac33d071 1629 return;
fdda387f 1630
ac33d071 1631send_error:
f1f1c1cc 1632 mutex_unlock(&con->sock_mutex);
0d737a8c 1633 close_connection(con, false, false, true);
fdda387f 1634 lowcomms_connect_sock(con);
ac33d071 1635 return;
fdda387f 1636
ac33d071 1637out_connect:
f1f1c1cc 1638 mutex_unlock(&con->sock_mutex);
6ed7257b
PC
1639 if (!test_bit(CF_INIT_PENDING, &con->flags))
1640 lowcomms_connect_sock(con);
fdda387f
PC
1641}
1642
1643static void clean_one_writequeue(struct connection *con)
1644{
5e9ccc37 1645 struct writequeue_entry *e, *safe;
fdda387f
PC
1646
1647 spin_lock(&con->writequeue_lock);
5e9ccc37 1648 list_for_each_entry_safe(e, safe, &con->writequeue, list) {
fdda387f
PC
1649 list_del(&e->list);
1650 free_entry(e);
1651 }
1652 spin_unlock(&con->writequeue_lock);
1653}
1654
1655/* Called from recovery when it knows that a node has
1656 left the cluster */
1657int dlm_lowcomms_close(int nodeid)
1658{
1659 struct connection *con;
36b71a8b 1660 struct dlm_node_addr *na;
fdda387f 1661
fdda387f
PC
1662 log_print("closing connection to node %d", nodeid);
1663 con = nodeid2con(nodeid, 0);
1664 if (con) {
063c4c99 1665 set_bit(CF_CLOSE, &con->flags);
0d737a8c 1666 close_connection(con, true, true, true);
fdda387f 1667 clean_one_writequeue(con);
fdda387f 1668 }
36b71a8b
DT
1669
1670 spin_lock(&dlm_node_addrs_spin);
1671 na = find_node_addr(nodeid);
1672 if (na) {
1673 list_del(&na->list);
1674 while (na->addr_count--)
1675 kfree(na->addr[na->addr_count]);
1676 kfree(na);
1677 }
1678 spin_unlock(&dlm_node_addrs_spin);
1679
fdda387f 1680 return 0;
fdda387f
PC
1681}
1682
6ed7257b 1683/* Receive workqueue function */
1d6e8131 1684static void process_recv_sockets(struct work_struct *work)
fdda387f 1685{
1d6e8131
PC
1686 struct connection *con = container_of(work, struct connection, rwork);
1687 int err;
fdda387f 1688
1d6e8131
PC
1689 clear_bit(CF_READ_PENDING, &con->flags);
1690 do {
1691 err = con->rx_action(con);
1692 } while (!err);
fdda387f
PC
1693}
1694
6ed7257b 1695/* Send workqueue function */
1d6e8131 1696static void process_send_sockets(struct work_struct *work)
fdda387f 1697{
1d6e8131 1698 struct connection *con = container_of(work, struct connection, swork);
fdda387f 1699
1d6e8131 1700 if (test_and_clear_bit(CF_CONNECT_PENDING, &con->flags)) {
6ed7257b 1701 con->connect_action(con);
063c4c99 1702 set_bit(CF_WRITE_PENDING, &con->flags);
fdda387f 1703 }
063c4c99
LMB
1704 if (test_and_clear_bit(CF_WRITE_PENDING, &con->flags))
1705 send_to_sock(con);
fdda387f
PC
1706}
1707
1708
1709/* Discard all entries on the write queues */
1710static void clean_writequeues(void)
1711{
5e9ccc37 1712 foreach_conn(clean_one_writequeue);
fdda387f
PC
1713}
1714
1d6e8131 1715static void work_stop(void)
fdda387f 1716{
1d6e8131
PC
1717 destroy_workqueue(recv_workqueue);
1718 destroy_workqueue(send_workqueue);
fdda387f
PC
1719}
1720
1d6e8131 1721static int work_start(void)
fdda387f 1722{
e43f055a
DT
1723 recv_workqueue = alloc_workqueue("dlm_recv",
1724 WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
b9d41052
NK
1725 if (!recv_workqueue) {
1726 log_print("can't start dlm_recv");
1727 return -ENOMEM;
fdda387f 1728 }
fdda387f 1729
e43f055a
DT
1730 send_workqueue = alloc_workqueue("dlm_send",
1731 WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
b9d41052
NK
1732 if (!send_workqueue) {
1733 log_print("can't start dlm_send");
1d6e8131 1734 destroy_workqueue(recv_workqueue);
b9d41052 1735 return -ENOMEM;
fdda387f 1736 }
fdda387f
PC
1737
1738 return 0;
1739}
1740
5e9ccc37 1741static void stop_conn(struct connection *con)
fdda387f 1742{
5e9ccc37 1743 con->flags |= 0x0F;
391fbdc5 1744 if (con->sock && con->sock->sk)
5e9ccc37
CC
1745 con->sock->sk->sk_user_data = NULL;
1746}
fdda387f 1747
5e9ccc37
CC
1748static void free_conn(struct connection *con)
1749{
0d737a8c 1750 close_connection(con, true, true, true);
5e9ccc37
CC
1751 if (con->othercon)
1752 kmem_cache_free(con_cache, con->othercon);
1753 hlist_del(&con->list);
1754 kmem_cache_free(con_cache, con);
1755}
1756
1757void dlm_lowcomms_stop(void)
1758{
ac33d071 1759 /* Set all the flags to prevent any
fdda387f
PC
1760 socket activity.
1761 */
7a936ce7 1762 mutex_lock(&connections_lock);
513ef596 1763 dlm_allow_conn = 0;
5e9ccc37 1764 foreach_conn(stop_conn);
7a936ce7 1765 mutex_unlock(&connections_lock);
ac33d071 1766
1d6e8131 1767 work_stop();
6ed7257b 1768
7a936ce7 1769 mutex_lock(&connections_lock);
fdda387f
PC
1770 clean_writequeues();
1771
5e9ccc37
CC
1772 foreach_conn(free_conn);
1773
7a936ce7 1774 mutex_unlock(&connections_lock);
fdda387f
PC
1775 kmem_cache_destroy(con_cache);
1776}
1777
fdda387f
PC
1778int dlm_lowcomms_start(void)
1779{
6ed7257b
PC
1780 int error = -EINVAL;
1781 struct connection *con;
5e9ccc37
CC
1782 int i;
1783
1784 for (i = 0; i < CONN_HASH_SIZE; i++)
1785 INIT_HLIST_HEAD(&connection_hash[i]);
fdda387f 1786
6ed7257b
PC
1787 init_local();
1788 if (!dlm_local_count) {
617e82e1 1789 error = -ENOTCONN;
fdda387f 1790 log_print("no local IP address has been set");
513ef596 1791 goto fail;
fdda387f
PC
1792 }
1793
6ed7257b 1794 error = -ENOMEM;
fdda387f 1795 con_cache = kmem_cache_create("dlm_conn", sizeof(struct connection),
ac33d071 1796 __alignof__(struct connection), 0,
20c2df83 1797 NULL);
fdda387f 1798 if (!con_cache)
513ef596
DT
1799 goto fail;
1800
1801 error = work_start();
1802 if (error)
1803 goto fail_destroy;
1804
1805 dlm_allow_conn = 1;
fdda387f 1806
fdda387f 1807 /* Start listening */
6ed7257b
PC
1808 if (dlm_config.ci_protocol == 0)
1809 error = tcp_listen_for_all();
1810 else
1811 error = sctp_listen_for_all();
fdda387f
PC
1812 if (error)
1813 goto fail_unlisten;
1814
fdda387f
PC
1815 return 0;
1816
ac33d071 1817fail_unlisten:
513ef596 1818 dlm_allow_conn = 0;
6ed7257b
PC
1819 con = nodeid2con(0,0);
1820 if (con) {
0d737a8c 1821 close_connection(con, false, true, true);
6ed7257b
PC
1822 kmem_cache_free(con_cache, con);
1823 }
513ef596 1824fail_destroy:
fdda387f 1825 kmem_cache_destroy(con_cache);
513ef596 1826fail:
fdda387f
PC
1827 return error;
1828}
36b71a8b
DT
1829
1830void dlm_lowcomms_exit(void)
1831{
1832 struct dlm_node_addr *na, *safe;
1833
1834 spin_lock(&dlm_node_addrs_spin);
1835 list_for_each_entry_safe(na, safe, &dlm_node_addrs, list) {
1836 list_del(&na->list);
1837 while (na->addr_count--)
1838 kfree(na->addr[na->addr_count]);
1839 kfree(na);
1840 }
1841 spin_unlock(&dlm_node_addrs_spin);
1842}
This page took 0.741973 seconds and 5 git commands to generate.