]> git.ipfire.org Git - people/ms/linux.git/blame - fs/dlm/lowcomms.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes
[people/ms/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>
6ed7257b 56#include <net/sctp/user.h>
44ad532b 57#include <net/ipv6.h>
fdda387f
PC
58
59#include "dlm_internal.h"
60#include "lowcomms.h"
61#include "midcomms.h"
62#include "config.h"
63
6ed7257b 64#define NEEDED_RMEM (4*1024*1024)
5e9ccc37 65#define CONN_HASH_SIZE 32
6ed7257b 66
f92c8dd7
BP
67/* Number of messages to send before rescheduling */
68#define MAX_SEND_MSG_COUNT 25
69
fdda387f 70struct cbuf {
ac33d071
PC
71 unsigned int base;
72 unsigned int len;
73 unsigned int mask;
fdda387f
PC
74};
75
ac33d071
PC
76static void cbuf_add(struct cbuf *cb, int n)
77{
78 cb->len += n;
79}
fdda387f 80
ac33d071
PC
81static int cbuf_data(struct cbuf *cb)
82{
83 return ((cb->base + cb->len) & cb->mask);
84}
85
86static void cbuf_init(struct cbuf *cb, int size)
87{
88 cb->base = cb->len = 0;
89 cb->mask = size-1;
90}
91
92static void cbuf_eat(struct cbuf *cb, int n)
93{
94 cb->len -= n;
95 cb->base += n;
96 cb->base &= cb->mask;
97}
98
99static bool cbuf_empty(struct cbuf *cb)
100{
101 return cb->len == 0;
102}
fdda387f 103
fdda387f
PC
104struct connection {
105 struct socket *sock; /* NULL if not connected */
106 uint32_t nodeid; /* So we know who we are in the list */
f1f1c1cc 107 struct mutex sock_mutex;
6ed7257b 108 unsigned long flags;
fdda387f
PC
109#define CF_READ_PENDING 1
110#define CF_WRITE_PENDING 2
111#define CF_CONNECT_PENDING 3
6ed7257b
PC
112#define CF_INIT_PENDING 4
113#define CF_IS_OTHERCON 5
063c4c99 114#define CF_CLOSE 6
b36930dd 115#define CF_APP_LIMITED 7
ac33d071 116 struct list_head writequeue; /* List of outgoing writequeue_entries */
fdda387f
PC
117 spinlock_t writequeue_lock;
118 int (*rx_action) (struct connection *); /* What to do when active */
6ed7257b 119 void (*connect_action) (struct connection *); /* What to do to connect */
fdda387f
PC
120 struct page *rx_page;
121 struct cbuf cb;
122 int retries;
fdda387f 123#define MAX_CONNECT_RETRIES 3
6ed7257b 124 int sctp_assoc;
5e9ccc37 125 struct hlist_node list;
fdda387f 126 struct connection *othercon;
1d6e8131
PC
127 struct work_struct rwork; /* Receive workqueue */
128 struct work_struct swork; /* Send workqueue */
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
6ed7257b
PC
143static struct sockaddr_storage *dlm_local_addr[DLM_MAX_ADDR_COUNT];
144static int dlm_local_count;
fdda387f 145
1d6e8131
PC
146/* Work queues */
147static struct workqueue_struct *recv_workqueue;
148static struct workqueue_struct *send_workqueue;
fdda387f 149
5e9ccc37 150static struct hlist_head connection_hash[CONN_HASH_SIZE];
7a936ce7 151static DEFINE_MUTEX(connections_lock);
c80e7c83 152static struct kmem_cache *con_cache;
fdda387f 153
1d6e8131
PC
154static void process_recv_sockets(struct work_struct *work);
155static void process_send_sockets(struct work_struct *work);
fdda387f 156
5e9ccc37
CC
157
158/* This is deliberately very simple because most clusters have simple
159 sequential nodeids, so we should be able to go straight to a connection
160 struct in the array */
161static inline int nodeid_hash(int nodeid)
162{
163 return nodeid & (CONN_HASH_SIZE-1);
164}
165
166static struct connection *__find_con(int nodeid)
167{
168 int r;
169 struct hlist_node *h;
170 struct connection *con;
171
172 r = nodeid_hash(nodeid);
173
174 hlist_for_each_entry(con, h, &connection_hash[r], list) {
175 if (con->nodeid == nodeid)
176 return con;
177 }
178 return NULL;
179}
180
6ed7257b
PC
181/*
182 * If 'allocation' is zero then we don't attempt to create a new
183 * connection structure for this node.
184 */
185static struct connection *__nodeid2con(int nodeid, gfp_t alloc)
fdda387f
PC
186{
187 struct connection *con = NULL;
6ed7257b 188 int r;
fdda387f 189
5e9ccc37 190 con = __find_con(nodeid);
6ed7257b
PC
191 if (con || !alloc)
192 return con;
fdda387f 193
6ed7257b
PC
194 con = kmem_cache_zalloc(con_cache, alloc);
195 if (!con)
196 return NULL;
fdda387f 197
5e9ccc37
CC
198 r = nodeid_hash(nodeid);
199 hlist_add_head(&con->list, &connection_hash[r]);
fdda387f 200
6ed7257b
PC
201 con->nodeid = nodeid;
202 mutex_init(&con->sock_mutex);
203 INIT_LIST_HEAD(&con->writequeue);
204 spin_lock_init(&con->writequeue_lock);
205 INIT_WORK(&con->swork, process_send_sockets);
206 INIT_WORK(&con->rwork, process_recv_sockets);
fdda387f 207
6ed7257b
PC
208 /* Setup action pointers for child sockets */
209 if (con->nodeid) {
5e9ccc37 210 struct connection *zerocon = __find_con(0);
fdda387f 211
6ed7257b
PC
212 con->connect_action = zerocon->connect_action;
213 if (!con->rx_action)
214 con->rx_action = zerocon->rx_action;
fdda387f
PC
215 }
216
6ed7257b
PC
217 return con;
218}
219
5e9ccc37
CC
220/* Loop round all connections */
221static void foreach_conn(void (*conn_func)(struct connection *c))
222{
223 int i;
224 struct hlist_node *h, *n;
225 struct connection *con;
226
227 for (i = 0; i < CONN_HASH_SIZE; i++) {
228 hlist_for_each_entry_safe(con, h, n, &connection_hash[i], list){
229 conn_func(con);
230 }
231 }
232}
233
6ed7257b
PC
234static struct connection *nodeid2con(int nodeid, gfp_t allocation)
235{
236 struct connection *con;
237
7a936ce7 238 mutex_lock(&connections_lock);
6ed7257b 239 con = __nodeid2con(nodeid, allocation);
7a936ce7 240 mutex_unlock(&connections_lock);
6ed7257b 241
fdda387f
PC
242 return con;
243}
244
6ed7257b
PC
245/* This is a bit drastic, but only called when things go wrong */
246static struct connection *assoc2con(int assoc_id)
247{
248 int i;
5e9ccc37 249 struct hlist_node *h;
6ed7257b
PC
250 struct connection *con;
251
7a936ce7 252 mutex_lock(&connections_lock);
5e9ccc37
CC
253
254 for (i = 0 ; i < CONN_HASH_SIZE; i++) {
255 hlist_for_each_entry(con, h, &connection_hash[i], list) {
f70cb33b 256 if (con->sctp_assoc == assoc_id) {
5e9ccc37
CC
257 mutex_unlock(&connections_lock);
258 return con;
259 }
6ed7257b
PC
260 }
261 }
7a936ce7 262 mutex_unlock(&connections_lock);
6ed7257b
PC
263 return NULL;
264}
265
266static int nodeid_to_addr(int nodeid, struct sockaddr *retaddr)
267{
268 struct sockaddr_storage addr;
269 int error;
270
271 if (!dlm_local_count)
272 return -1;
273
274 error = dlm_nodeid_to_addr(nodeid, &addr);
275 if (error)
276 return error;
277
278 if (dlm_local_addr[0]->ss_family == AF_INET) {
279 struct sockaddr_in *in4 = (struct sockaddr_in *) &addr;
280 struct sockaddr_in *ret4 = (struct sockaddr_in *) retaddr;
281 ret4->sin_addr.s_addr = in4->sin_addr.s_addr;
282 } else {
283 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) &addr;
284 struct sockaddr_in6 *ret6 = (struct sockaddr_in6 *) retaddr;
4e3fd7a0 285 ret6->sin6_addr = in6->sin6_addr;
6ed7257b
PC
286 }
287
288 return 0;
289}
290
fdda387f
PC
291/* Data available on socket or listen socket received a connect */
292static void lowcomms_data_ready(struct sock *sk, int count_unused)
293{
294 struct connection *con = sock2con(sk);
afb853fb 295 if (con && !test_and_set_bit(CF_READ_PENDING, &con->flags))
1d6e8131 296 queue_work(recv_workqueue, &con->rwork);
fdda387f
PC
297}
298
299static void lowcomms_write_space(struct sock *sk)
300{
301 struct connection *con = sock2con(sk);
302
b36930dd
DM
303 if (!con)
304 return;
305
306 clear_bit(SOCK_NOSPACE, &con->sock->flags);
307
308 if (test_and_clear_bit(CF_APP_LIMITED, &con->flags)) {
309 con->sock->sk->sk_write_pending--;
310 clear_bit(SOCK_ASYNC_NOSPACE, &con->sock->flags);
311 }
312
313 if (!test_and_set_bit(CF_WRITE_PENDING, &con->flags))
1d6e8131 314 queue_work(send_workqueue, &con->swork);
fdda387f
PC
315}
316
317static inline void lowcomms_connect_sock(struct connection *con)
318{
063c4c99
LMB
319 if (test_bit(CF_CLOSE, &con->flags))
320 return;
1d6e8131
PC
321 if (!test_and_set_bit(CF_CONNECT_PENDING, &con->flags))
322 queue_work(send_workqueue, &con->swork);
fdda387f
PC
323}
324
325static void lowcomms_state_change(struct sock *sk)
326{
ac33d071 327 if (sk->sk_state == TCP_ESTABLISHED)
fdda387f 328 lowcomms_write_space(sk);
fdda387f
PC
329}
330
391fbdc5
CC
331int dlm_lowcomms_connect_node(int nodeid)
332{
333 struct connection *con;
334
04bedd79
DT
335 /* with sctp there's no connecting without sending */
336 if (dlm_config.ci_protocol != 0)
337 return 0;
338
391fbdc5
CC
339 if (nodeid == dlm_our_nodeid())
340 return 0;
341
342 con = nodeid2con(nodeid, GFP_NOFS);
343 if (!con)
344 return -ENOMEM;
345 lowcomms_connect_sock(con);
346 return 0;
347}
348
fdda387f
PC
349/* Make a socket active */
350static int add_sock(struct socket *sock, struct connection *con)
351{
352 con->sock = sock;
353
354 /* Install a data_ready callback */
355 con->sock->sk->sk_data_ready = lowcomms_data_ready;
356 con->sock->sk->sk_write_space = lowcomms_write_space;
357 con->sock->sk->sk_state_change = lowcomms_state_change;
6ed7257b 358 con->sock->sk->sk_user_data = con;
d6d7b702 359 con->sock->sk->sk_allocation = GFP_NOFS;
fdda387f
PC
360 return 0;
361}
362
6ed7257b 363/* Add the port number to an IPv6 or 4 sockaddr and return the address
fdda387f
PC
364 length */
365static void make_sockaddr(struct sockaddr_storage *saddr, uint16_t port,
366 int *addr_len)
367{
6ed7257b 368 saddr->ss_family = dlm_local_addr[0]->ss_family;
ac33d071 369 if (saddr->ss_family == AF_INET) {
fdda387f
PC
370 struct sockaddr_in *in4_addr = (struct sockaddr_in *)saddr;
371 in4_addr->sin_port = cpu_to_be16(port);
372 *addr_len = sizeof(struct sockaddr_in);
6ed7257b 373 memset(&in4_addr->sin_zero, 0, sizeof(in4_addr->sin_zero));
ac33d071 374 } else {
fdda387f
PC
375 struct sockaddr_in6 *in6_addr = (struct sockaddr_in6 *)saddr;
376 in6_addr->sin6_port = cpu_to_be16(port);
377 *addr_len = sizeof(struct sockaddr_in6);
378 }
01c8cab2 379 memset((char *)saddr + *addr_len, 0, sizeof(struct sockaddr_storage) - *addr_len);
fdda387f
PC
380}
381
382/* Close a remote connection and tidy up */
ac33d071 383static void close_connection(struct connection *con, bool and_other)
fdda387f 384{
f1f1c1cc 385 mutex_lock(&con->sock_mutex);
fdda387f
PC
386
387 if (con->sock) {
388 sock_release(con->sock);
389 con->sock = NULL;
390 }
391 if (con->othercon && and_other) {
ac33d071
PC
392 /* Will only re-enter once. */
393 close_connection(con->othercon, false);
fdda387f
PC
394 }
395 if (con->rx_page) {
396 __free_page(con->rx_page);
397 con->rx_page = NULL;
398 }
9e5f2825 399
61d96be0
PC
400 con->retries = 0;
401 mutex_unlock(&con->sock_mutex);
fdda387f
PC
402}
403
6ed7257b
PC
404/* We only send shutdown messages to nodes that are not part of the cluster */
405static void sctp_send_shutdown(sctp_assoc_t associd)
406{
407 static char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
408 struct msghdr outmessage;
409 struct cmsghdr *cmsg;
410 struct sctp_sndrcvinfo *sinfo;
411 int ret;
412 struct connection *con;
413
414 con = nodeid2con(0,0);
415 BUG_ON(con == NULL);
416
417 outmessage.msg_name = NULL;
418 outmessage.msg_namelen = 0;
419 outmessage.msg_control = outcmsg;
420 outmessage.msg_controllen = sizeof(outcmsg);
421 outmessage.msg_flags = MSG_EOR;
422
423 cmsg = CMSG_FIRSTHDR(&outmessage);
424 cmsg->cmsg_level = IPPROTO_SCTP;
425 cmsg->cmsg_type = SCTP_SNDRCV;
426 cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndrcvinfo));
427 outmessage.msg_controllen = cmsg->cmsg_len;
428 sinfo = CMSG_DATA(cmsg);
429 memset(sinfo, 0x00, sizeof(struct sctp_sndrcvinfo));
430
431 sinfo->sinfo_flags |= MSG_EOF;
432 sinfo->sinfo_assoc_id = associd;
433
434 ret = kernel_sendmsg(con->sock, &outmessage, NULL, 0, 0);
435
436 if (ret != 0)
437 log_print("send EOF to node failed: %d", ret);
438}
439
5e9ccc37
CC
440static void sctp_init_failed_foreach(struct connection *con)
441{
442 con->sctp_assoc = 0;
443 if (test_and_clear_bit(CF_CONNECT_PENDING, &con->flags)) {
444 if (!test_and_set_bit(CF_WRITE_PENDING, &con->flags))
445 queue_work(send_workqueue, &con->swork);
446 }
447}
448
6ed7257b
PC
449/* INIT failed but we don't know which node...
450 restart INIT on all pending nodes */
451static void sctp_init_failed(void)
452{
7a936ce7 453 mutex_lock(&connections_lock);
5e9ccc37
CC
454
455 foreach_conn(sctp_init_failed_foreach);
456
7a936ce7 457 mutex_unlock(&connections_lock);
6ed7257b
PC
458}
459
460/* Something happened to an association */
617e82e1
DT
461static void process_sctp_notification(struct connection *con,
462 struct msghdr *msg, char *buf)
6ed7257b
PC
463{
464 union sctp_notification *sn = (union sctp_notification *)buf;
465
466 if (sn->sn_header.sn_type == SCTP_ASSOC_CHANGE) {
467 switch (sn->sn_assoc_change.sac_state) {
468
469 case SCTP_COMM_UP:
470 case SCTP_RESTART:
471 {
472 /* Check that the new node is in the lockspace */
473 struct sctp_prim prim;
474 int nodeid;
475 int prim_len, ret;
476 int addr_len;
477 struct connection *new_con;
6ed7257b
PC
478
479 /*
480 * We get this before any data for an association.
481 * We verify that the node is in the cluster and
482 * then peel off a socket for it.
483 */
484 if ((int)sn->sn_assoc_change.sac_assoc_id <= 0) {
485 log_print("COMM_UP for invalid assoc ID %d",
617e82e1 486 (int)sn->sn_assoc_change.sac_assoc_id);
6ed7257b
PC
487 sctp_init_failed();
488 return;
489 }
490 memset(&prim, 0, sizeof(struct sctp_prim));
491 prim_len = sizeof(struct sctp_prim);
492 prim.ssp_assoc_id = sn->sn_assoc_change.sac_assoc_id;
493
494 ret = kernel_getsockopt(con->sock,
495 IPPROTO_SCTP,
496 SCTP_PRIMARY_ADDR,
497 (char*)&prim,
498 &prim_len);
499 if (ret < 0) {
500 log_print("getsockopt/sctp_primary_addr on "
501 "new assoc %d failed : %d",
502 (int)sn->sn_assoc_change.sac_assoc_id,
503 ret);
504
505 /* Retry INIT later */
506 new_con = assoc2con(sn->sn_assoc_change.sac_assoc_id);
507 if (new_con)
508 clear_bit(CF_CONNECT_PENDING, &con->flags);
509 return;
510 }
511 make_sockaddr(&prim.ssp_addr, 0, &addr_len);
512 if (dlm_addr_to_nodeid(&prim.ssp_addr, &nodeid)) {
6ed7257b
PC
513 unsigned char *b=(unsigned char *)&prim.ssp_addr;
514 log_print("reject connect from unknown addr");
bcaadf5c
MY
515 print_hex_dump_bytes("ss: ", DUMP_PREFIX_NONE,
516 b, sizeof(struct sockaddr_storage));
6ed7257b
PC
517 sctp_send_shutdown(prim.ssp_assoc_id);
518 return;
519 }
520
748285cc 521 new_con = nodeid2con(nodeid, GFP_NOFS);
6ed7257b
PC
522 if (!new_con)
523 return;
524
525 /* Peel off a new sock */
2f2d76cc
BP
526 sctp_lock_sock(con->sock->sk);
527 ret = sctp_do_peeloff(con->sock->sk,
528 sn->sn_assoc_change.sac_assoc_id,
529 &new_con->sock);
530 sctp_release_sock(con->sock->sk);
6861f350 531 if (ret < 0) {
617e82e1 532 log_print("Can't peel off a socket for "
6861f350 533 "connection %d to node %d: err=%d",
2f2d76cc
BP
534 (int)sn->sn_assoc_change.sac_assoc_id,
535 nodeid, ret);
6861f350 536 return;
6ed7257b 537 }
6ed7257b 538 add_sock(new_con->sock, new_con);
6ed7257b 539
6861f350
DT
540 log_print("connecting to %d sctp association %d",
541 nodeid, (int)sn->sn_assoc_change.sac_assoc_id);
6ed7257b
PC
542
543 /* Send any pending writes */
544 clear_bit(CF_CONNECT_PENDING, &new_con->flags);
545 clear_bit(CF_INIT_PENDING, &con->flags);
546 if (!test_and_set_bit(CF_WRITE_PENDING, &new_con->flags)) {
547 queue_work(send_workqueue, &new_con->swork);
548 }
549 if (!test_and_set_bit(CF_READ_PENDING, &new_con->flags))
550 queue_work(recv_workqueue, &new_con->rwork);
551 }
552 break;
553
554 case SCTP_COMM_LOST:
555 case SCTP_SHUTDOWN_COMP:
556 {
557 con = assoc2con(sn->sn_assoc_change.sac_assoc_id);
558 if (con) {
559 con->sctp_assoc = 0;
560 }
561 }
562 break;
563
564 /* We don't know which INIT failed, so clear the PENDING flags
565 * on them all. if assoc_id is zero then it will then try
566 * again */
567
568 case SCTP_CANT_STR_ASSOC:
569 {
570 log_print("Can't start SCTP association - retrying");
571 sctp_init_failed();
572 }
573 break;
574
575 default:
576 log_print("unexpected SCTP assoc change id=%d state=%d",
577 (int)sn->sn_assoc_change.sac_assoc_id,
578 sn->sn_assoc_change.sac_state);
579 }
580 }
581}
582
fdda387f
PC
583/* Data received from remote end */
584static int receive_from_sock(struct connection *con)
585{
586 int ret = 0;
58addbff
AV
587 struct msghdr msg = {};
588 struct kvec iov[2];
fdda387f
PC
589 unsigned len;
590 int r;
591 int call_again_soon = 0;
58addbff 592 int nvec;
6ed7257b 593 char incmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
fdda387f 594
f1f1c1cc 595 mutex_lock(&con->sock_mutex);
fdda387f 596
a34fbc63
PC
597 if (con->sock == NULL) {
598 ret = -EAGAIN;
599 goto out_close;
600 }
601
fdda387f
PC
602 if (con->rx_page == NULL) {
603 /*
604 * This doesn't need to be atomic, but I think it should
605 * improve performance if it is.
606 */
607 con->rx_page = alloc_page(GFP_ATOMIC);
608 if (con->rx_page == NULL)
609 goto out_resched;
ac33d071 610 cbuf_init(&con->cb, PAGE_CACHE_SIZE);
fdda387f
PC
611 }
612
6ed7257b
PC
613 /* Only SCTP needs these really */
614 memset(&incmsg, 0, sizeof(incmsg));
615 msg.msg_control = incmsg;
616 msg.msg_controllen = sizeof(incmsg);
617
fdda387f
PC
618 /*
619 * iov[0] is the bit of the circular buffer between the current end
620 * point (cb.base + cb.len) and the end of the buffer.
621 */
ac33d071
PC
622 iov[0].iov_len = con->cb.base - cbuf_data(&con->cb);
623 iov[0].iov_base = page_address(con->rx_page) + cbuf_data(&con->cb);
89adc934 624 iov[1].iov_len = 0;
58addbff 625 nvec = 1;
fdda387f
PC
626
627 /*
628 * iov[1] is the bit of the circular buffer between the start of the
629 * buffer and the start of the currently used section (cb.base)
630 */
ac33d071
PC
631 if (cbuf_data(&con->cb) >= con->cb.base) {
632 iov[0].iov_len = PAGE_CACHE_SIZE - cbuf_data(&con->cb);
fdda387f
PC
633 iov[1].iov_len = con->cb.base;
634 iov[1].iov_base = page_address(con->rx_page);
58addbff 635 nvec = 2;
fdda387f
PC
636 }
637 len = iov[0].iov_len + iov[1].iov_len;
638
58addbff 639 r = ret = kernel_recvmsg(con->sock, &msg, iov, nvec, len,
fdda387f 640 MSG_DONTWAIT | MSG_NOSIGNAL);
fdda387f
PC
641 if (ret <= 0)
642 goto out_close;
bd44e2b0 643
6ed7257b
PC
644 /* Process SCTP notifications */
645 if (msg.msg_flags & MSG_NOTIFICATION) {
6ed7257b
PC
646 msg.msg_control = incmsg;
647 msg.msg_controllen = sizeof(incmsg);
648
649 process_sctp_notification(con, &msg,
617e82e1 650 page_address(con->rx_page) + con->cb.base);
6ed7257b
PC
651 mutex_unlock(&con->sock_mutex);
652 return 0;
653 }
654 BUG_ON(con->nodeid == 0);
655
fdda387f
PC
656 if (ret == len)
657 call_again_soon = 1;
ac33d071 658 cbuf_add(&con->cb, ret);
fdda387f
PC
659 ret = dlm_process_incoming_buffer(con->nodeid,
660 page_address(con->rx_page),
661 con->cb.base, con->cb.len,
662 PAGE_CACHE_SIZE);
663 if (ret == -EBADMSG) {
617e82e1
DT
664 log_print("lowcomms: addr=%p, base=%u, len=%u, "
665 "iov_len=%u, iov_base[0]=%p, read=%d",
666 page_address(con->rx_page), con->cb.base, con->cb.len,
667 len, iov[0].iov_base, r);
fdda387f
PC
668 }
669 if (ret < 0)
670 goto out_close;
ac33d071 671 cbuf_eat(&con->cb, ret);
fdda387f 672
ac33d071 673 if (cbuf_empty(&con->cb) && !call_again_soon) {
fdda387f
PC
674 __free_page(con->rx_page);
675 con->rx_page = NULL;
676 }
677
fdda387f
PC
678 if (call_again_soon)
679 goto out_resched;
f1f1c1cc 680 mutex_unlock(&con->sock_mutex);
ac33d071 681 return 0;
fdda387f 682
ac33d071 683out_resched:
1d6e8131
PC
684 if (!test_and_set_bit(CF_READ_PENDING, &con->flags))
685 queue_work(recv_workqueue, &con->rwork);
f1f1c1cc 686 mutex_unlock(&con->sock_mutex);
bd44e2b0 687 return -EAGAIN;
fdda387f 688
ac33d071 689out_close:
f1f1c1cc 690 mutex_unlock(&con->sock_mutex);
9e5f2825 691 if (ret != -EAGAIN) {
ac33d071 692 close_connection(con, false);
fdda387f
PC
693 /* Reconnect when there is something to send */
694 }
a34fbc63
PC
695 /* Don't return success if we really got EOF */
696 if (ret == 0)
697 ret = -EAGAIN;
fdda387f 698
fdda387f
PC
699 return ret;
700}
701
702/* Listening socket is busy, accept a connection */
6ed7257b 703static int tcp_accept_from_sock(struct connection *con)
fdda387f
PC
704{
705 int result;
706 struct sockaddr_storage peeraddr;
707 struct socket *newsock;
708 int len;
709 int nodeid;
710 struct connection *newcon;
bd44e2b0 711 struct connection *addcon;
fdda387f
PC
712
713 memset(&peeraddr, 0, sizeof(peeraddr));
6ed7257b 714 result = sock_create_kern(dlm_local_addr[0]->ss_family, SOCK_STREAM,
ac33d071 715 IPPROTO_TCP, &newsock);
fdda387f
PC
716 if (result < 0)
717 return -ENOMEM;
718
f1f1c1cc 719 mutex_lock_nested(&con->sock_mutex, 0);
fdda387f
PC
720
721 result = -ENOTCONN;
722 if (con->sock == NULL)
723 goto accept_err;
724
725 newsock->type = con->sock->type;
726 newsock->ops = con->sock->ops;
727
728 result = con->sock->ops->accept(con->sock, newsock, O_NONBLOCK);
729 if (result < 0)
730 goto accept_err;
731
732 /* Get the connected socket's peer */
733 memset(&peeraddr, 0, sizeof(peeraddr));
734 if (newsock->ops->getname(newsock, (struct sockaddr *)&peeraddr,
735 &len, 2)) {
736 result = -ECONNABORTED;
737 goto accept_err;
738 }
739
740 /* Get the new node's NODEID */
741 make_sockaddr(&peeraddr, 0, &len);
742 if (dlm_addr_to_nodeid(&peeraddr, &nodeid)) {
bcaadf5c 743 unsigned char *b=(unsigned char *)&peeraddr;
617e82e1 744 log_print("connect from non cluster node");
bcaadf5c
MY
745 print_hex_dump_bytes("ss: ", DUMP_PREFIX_NONE,
746 b, sizeof(struct sockaddr_storage));
fdda387f 747 sock_release(newsock);
f1f1c1cc 748 mutex_unlock(&con->sock_mutex);
fdda387f
PC
749 return -1;
750 }
751
752 log_print("got connection from %d", nodeid);
753
754 /* Check to see if we already have a connection to this node. This
755 * could happen if the two nodes initiate a connection at roughly
756 * the same time and the connections cross on the wire.
fdda387f
PC
757 * In this case we store the incoming one in "othercon"
758 */
748285cc 759 newcon = nodeid2con(nodeid, GFP_NOFS);
fdda387f
PC
760 if (!newcon) {
761 result = -ENOMEM;
762 goto accept_err;
763 }
f1f1c1cc 764 mutex_lock_nested(&newcon->sock_mutex, 1);
fdda387f 765 if (newcon->sock) {
ac33d071 766 struct connection *othercon = newcon->othercon;
fdda387f
PC
767
768 if (!othercon) {
748285cc 769 othercon = kmem_cache_zalloc(con_cache, GFP_NOFS);
fdda387f 770 if (!othercon) {
617e82e1 771 log_print("failed to allocate incoming socket");
f1f1c1cc 772 mutex_unlock(&newcon->sock_mutex);
fdda387f
PC
773 result = -ENOMEM;
774 goto accept_err;
775 }
fdda387f
PC
776 othercon->nodeid = nodeid;
777 othercon->rx_action = receive_from_sock;
f1f1c1cc 778 mutex_init(&othercon->sock_mutex);
1d6e8131
PC
779 INIT_WORK(&othercon->swork, process_send_sockets);
780 INIT_WORK(&othercon->rwork, process_recv_sockets);
fdda387f 781 set_bit(CF_IS_OTHERCON, &othercon->flags);
61d96be0
PC
782 }
783 if (!othercon->sock) {
fdda387f 784 newcon->othercon = othercon;
97d84836
PC
785 othercon->sock = newsock;
786 newsock->sk->sk_user_data = othercon;
787 add_sock(newsock, othercon);
788 addcon = othercon;
789 }
790 else {
791 printk("Extra connection from node %d attempted\n", nodeid);
792 result = -EAGAIN;
f4fadb23 793 mutex_unlock(&newcon->sock_mutex);
97d84836 794 goto accept_err;
fdda387f 795 }
fdda387f
PC
796 }
797 else {
798 newsock->sk->sk_user_data = newcon;
799 newcon->rx_action = receive_from_sock;
800 add_sock(newsock, newcon);
bd44e2b0 801 addcon = newcon;
fdda387f
PC
802 }
803
f1f1c1cc 804 mutex_unlock(&newcon->sock_mutex);
fdda387f
PC
805
806 /*
807 * Add it to the active queue in case we got data
25985edc 808 * between processing the accept adding the socket
fdda387f
PC
809 * to the read_sockets list
810 */
bd44e2b0
PC
811 if (!test_and_set_bit(CF_READ_PENDING, &addcon->flags))
812 queue_work(recv_workqueue, &addcon->rwork);
f1f1c1cc 813 mutex_unlock(&con->sock_mutex);
fdda387f
PC
814
815 return 0;
816
ac33d071 817accept_err:
f1f1c1cc 818 mutex_unlock(&con->sock_mutex);
fdda387f
PC
819 sock_release(newsock);
820
821 if (result != -EAGAIN)
617e82e1 822 log_print("error accepting connection from node: %d", result);
fdda387f
PC
823 return result;
824}
825
6ed7257b
PC
826static void free_entry(struct writequeue_entry *e)
827{
828 __free_page(e->page);
829 kfree(e);
830}
831
832/* Initiate an SCTP association.
833 This is a special case of send_to_sock() in that we don't yet have a
834 peeled-off socket for this association, so we use the listening socket
835 and add the primary IP address of the remote node.
836 */
837static void sctp_init_assoc(struct connection *con)
838{
839 struct sockaddr_storage rem_addr;
840 char outcmsg[CMSG_SPACE(sizeof(struct sctp_sndrcvinfo))];
841 struct msghdr outmessage;
842 struct cmsghdr *cmsg;
843 struct sctp_sndrcvinfo *sinfo;
844 struct connection *base_con;
845 struct writequeue_entry *e;
846 int len, offset;
847 int ret;
848 int addrlen;
849 struct kvec iov[1];
850
851 if (test_and_set_bit(CF_INIT_PENDING, &con->flags))
852 return;
853
854 if (con->retries++ > MAX_CONNECT_RETRIES)
855 return;
856
6ed7257b
PC
857 if (nodeid_to_addr(con->nodeid, (struct sockaddr *)&rem_addr)) {
858 log_print("no address for nodeid %d", con->nodeid);
859 return;
860 }
861 base_con = nodeid2con(0, 0);
862 BUG_ON(base_con == NULL);
863
864 make_sockaddr(&rem_addr, dlm_config.ci_tcp_port, &addrlen);
865
866 outmessage.msg_name = &rem_addr;
867 outmessage.msg_namelen = addrlen;
868 outmessage.msg_control = outcmsg;
869 outmessage.msg_controllen = sizeof(outcmsg);
870 outmessage.msg_flags = MSG_EOR;
871
872 spin_lock(&con->writequeue_lock);
6ed7257b 873
04bedd79
DT
874 if (list_empty(&con->writequeue)) {
875 spin_unlock(&con->writequeue_lock);
876 log_print("writequeue empty for nodeid %d", con->nodeid);
877 return;
878 }
6ed7257b 879
04bedd79 880 e = list_first_entry(&con->writequeue, struct writequeue_entry, list);
6ed7257b
PC
881 len = e->len;
882 offset = e->offset;
883 spin_unlock(&con->writequeue_lock);
6ed7257b
PC
884
885 /* Send the first block off the write queue */
886 iov[0].iov_base = page_address(e->page)+offset;
887 iov[0].iov_len = len;
888
889 cmsg = CMSG_FIRSTHDR(&outmessage);
890 cmsg->cmsg_level = IPPROTO_SCTP;
891 cmsg->cmsg_type = SCTP_SNDRCV;
892 cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndrcvinfo));
893 sinfo = CMSG_DATA(cmsg);
894 memset(sinfo, 0x00, sizeof(struct sctp_sndrcvinfo));
895 sinfo->sinfo_ppid = cpu_to_le32(dlm_our_nodeid());
896 outmessage.msg_controllen = cmsg->cmsg_len;
897
898 ret = kernel_sendmsg(base_con->sock, &outmessage, iov, 1, len);
899 if (ret < 0) {
617e82e1
DT
900 log_print("Send first packet to node %d failed: %d",
901 con->nodeid, ret);
6ed7257b
PC
902
903 /* Try again later */
904 clear_bit(CF_CONNECT_PENDING, &con->flags);
905 clear_bit(CF_INIT_PENDING, &con->flags);
906 }
907 else {
908 spin_lock(&con->writequeue_lock);
909 e->offset += ret;
910 e->len -= ret;
911
912 if (e->len == 0 && e->users == 0) {
913 list_del(&e->list);
6ed7257b
PC
914 free_entry(e);
915 }
916 spin_unlock(&con->writequeue_lock);
917 }
918}
919
fdda387f 920/* Connect a new socket to its peer */
6ed7257b 921static void tcp_connect_to_sock(struct connection *con)
fdda387f
PC
922{
923 int result = -EHOSTUNREACH;
6bd8feda 924 struct sockaddr_storage saddr, src_addr;
fdda387f 925 int addr_len;
a89d63a1 926 struct socket *sock = NULL;
cb2d45da 927 int one = 1;
fdda387f
PC
928
929 if (con->nodeid == 0) {
930 log_print("attempt to connect sock 0 foiled");
ac33d071 931 return;
fdda387f
PC
932 }
933
f1f1c1cc 934 mutex_lock(&con->sock_mutex);
fdda387f
PC
935 if (con->retries++ > MAX_CONNECT_RETRIES)
936 goto out;
937
938 /* Some odd races can cause double-connects, ignore them */
939 if (con->sock) {
940 result = 0;
941 goto out;
942 }
943
944 /* Create a socket to communicate with */
6ed7257b 945 result = sock_create_kern(dlm_local_addr[0]->ss_family, SOCK_STREAM,
ac33d071 946 IPPROTO_TCP, &sock);
fdda387f
PC
947 if (result < 0)
948 goto out_err;
949
950 memset(&saddr, 0, sizeof(saddr));
b5711b8e 951 if (dlm_nodeid_to_addr(con->nodeid, &saddr))
ac33d071 952 goto out_err;
fdda387f
PC
953
954 sock->sk->sk_user_data = con;
955 con->rx_action = receive_from_sock;
6ed7257b
PC
956 con->connect_action = tcp_connect_to_sock;
957 add_sock(sock, con);
fdda387f 958
6bd8feda
LH
959 /* Bind to our cluster-known address connecting to avoid
960 routing problems */
961 memcpy(&src_addr, dlm_local_addr[0], sizeof(src_addr));
962 make_sockaddr(&src_addr, 0, &addr_len);
963 result = sock->ops->bind(sock, (struct sockaddr *) &src_addr,
964 addr_len);
965 if (result < 0) {
966 log_print("could not bind for connect: %d", result);
967 /* This *may* not indicate a critical error */
968 }
969
68c817a1 970 make_sockaddr(&saddr, dlm_config.ci_tcp_port, &addr_len);
fdda387f 971
fdda387f 972 log_print("connecting to %d", con->nodeid);
cb2d45da
DT
973
974 /* Turn off Nagle's algorithm */
975 kernel_setsockopt(sock, SOL_TCP, TCP_NODELAY, (char *)&one,
976 sizeof(one));
977
fdda387f
PC
978 result =
979 sock->ops->connect(sock, (struct sockaddr *)&saddr, addr_len,
ac33d071 980 O_NONBLOCK);
fdda387f
PC
981 if (result == -EINPROGRESS)
982 result = 0;
ac33d071
PC
983 if (result == 0)
984 goto out;
fdda387f 985
ac33d071 986out_err:
fdda387f
PC
987 if (con->sock) {
988 sock_release(con->sock);
989 con->sock = NULL;
a89d63a1
CD
990 } else if (sock) {
991 sock_release(sock);
fdda387f
PC
992 }
993 /*
994 * Some errors are fatal and this list might need adjusting. For other
995 * errors we try again until the max number of retries is reached.
996 */
997 if (result != -EHOSTUNREACH && result != -ENETUNREACH &&
0035a4b1 998 result != -ENETDOWN && result != -EINVAL
fdda387f
PC
999 && result != -EPROTONOSUPPORT) {
1000 lowcomms_connect_sock(con);
1001 result = 0;
1002 }
ac33d071 1003out:
f1f1c1cc 1004 mutex_unlock(&con->sock_mutex);
ac33d071 1005 return;
fdda387f
PC
1006}
1007
6ed7257b
PC
1008static struct socket *tcp_create_listen_sock(struct connection *con,
1009 struct sockaddr_storage *saddr)
fdda387f 1010{
ac33d071 1011 struct socket *sock = NULL;
fdda387f
PC
1012 int result = 0;
1013 int one = 1;
1014 int addr_len;
1015
6ed7257b 1016 if (dlm_local_addr[0]->ss_family == AF_INET)
fdda387f
PC
1017 addr_len = sizeof(struct sockaddr_in);
1018 else
1019 addr_len = sizeof(struct sockaddr_in6);
1020
1021 /* Create a socket to communicate with */
617e82e1
DT
1022 result = sock_create_kern(dlm_local_addr[0]->ss_family, SOCK_STREAM,
1023 IPPROTO_TCP, &sock);
fdda387f 1024 if (result < 0) {
617e82e1 1025 log_print("Can't create listening comms socket");
fdda387f
PC
1026 goto create_out;
1027 }
1028
cb2d45da
DT
1029 /* Turn off Nagle's algorithm */
1030 kernel_setsockopt(sock, SOL_TCP, TCP_NODELAY, (char *)&one,
1031 sizeof(one));
1032
6ed7257b
PC
1033 result = kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
1034 (char *)&one, sizeof(one));
1035
fdda387f 1036 if (result < 0) {
617e82e1 1037 log_print("Failed to set SO_REUSEADDR on socket: %d", result);
fdda387f
PC
1038 }
1039 sock->sk->sk_user_data = con;
6ed7257b
PC
1040 con->rx_action = tcp_accept_from_sock;
1041 con->connect_action = tcp_connect_to_sock;
fdda387f
PC
1042 con->sock = sock;
1043
1044 /* Bind to our port */
68c817a1 1045 make_sockaddr(saddr, dlm_config.ci_tcp_port, &addr_len);
fdda387f
PC
1046 result = sock->ops->bind(sock, (struct sockaddr *) saddr, addr_len);
1047 if (result < 0) {
617e82e1 1048 log_print("Can't bind to port %d", dlm_config.ci_tcp_port);
fdda387f
PC
1049 sock_release(sock);
1050 sock = NULL;
1051 con->sock = NULL;
1052 goto create_out;
1053 }
6ed7257b 1054 result = kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
ac33d071 1055 (char *)&one, sizeof(one));
fdda387f 1056 if (result < 0) {
617e82e1 1057 log_print("Set keepalive failed: %d", result);
fdda387f
PC
1058 }
1059
1060 result = sock->ops->listen(sock, 5);
1061 if (result < 0) {
617e82e1 1062 log_print("Can't listen on port %d", dlm_config.ci_tcp_port);
fdda387f
PC
1063 sock_release(sock);
1064 sock = NULL;
1065 goto create_out;
1066 }
1067
ac33d071 1068create_out:
fdda387f
PC
1069 return sock;
1070}
1071
6ed7257b
PC
1072/* Get local addresses */
1073static void init_local(void)
1074{
1075 struct sockaddr_storage sas, *addr;
1076 int i;
1077
30d3a237 1078 dlm_local_count = 0;
1b189b88 1079 for (i = 0; i < DLM_MAX_ADDR_COUNT; i++) {
6ed7257b
PC
1080 if (dlm_our_addr(&sas, i))
1081 break;
1082
573c24c4 1083 addr = kmalloc(sizeof(*addr), GFP_NOFS);
6ed7257b
PC
1084 if (!addr)
1085 break;
1086 memcpy(addr, &sas, sizeof(*addr));
1087 dlm_local_addr[dlm_local_count++] = addr;
1088 }
1089}
1090
617e82e1
DT
1091/* Bind to an IP address. SCTP allows multiple address so it can do
1092 multi-homing */
1093static int add_sctp_bind_addr(struct connection *sctp_con,
1094 struct sockaddr_storage *addr,
1095 int addr_len, int num)
6ed7257b
PC
1096{
1097 int result = 0;
1098
1099 if (num == 1)
1100 result = kernel_bind(sctp_con->sock,
1101 (struct sockaddr *) addr,
1102 addr_len);
1103 else
1104 result = kernel_setsockopt(sctp_con->sock, SOL_SCTP,
1105 SCTP_SOCKOPT_BINDX_ADD,
1106 (char *)addr, addr_len);
1107
1108 if (result < 0)
1109 log_print("Can't bind to port %d addr number %d",
1110 dlm_config.ci_tcp_port, num);
1111
1112 return result;
1113}
fdda387f 1114
6ed7257b
PC
1115/* Initialise SCTP socket and bind to all interfaces */
1116static int sctp_listen_for_all(void)
1117{
1118 struct socket *sock = NULL;
1119 struct sockaddr_storage localaddr;
1120 struct sctp_event_subscribe subscribe;
1121 int result = -EINVAL, num = 1, i, addr_len;
573c24c4 1122 struct connection *con = nodeid2con(0, GFP_NOFS);
6ed7257b
PC
1123 int bufsize = NEEDED_RMEM;
1124
1125 if (!con)
1126 return -ENOMEM;
1127
1128 log_print("Using SCTP for communications");
1129
1130 result = sock_create_kern(dlm_local_addr[0]->ss_family, SOCK_SEQPACKET,
1131 IPPROTO_SCTP, &sock);
1132 if (result < 0) {
1133 log_print("Can't create comms socket, check SCTP is loaded");
1134 goto out;
1135 }
1136
1137 /* Listen for events */
1138 memset(&subscribe, 0, sizeof(subscribe));
1139 subscribe.sctp_data_io_event = 1;
1140 subscribe.sctp_association_event = 1;
1141 subscribe.sctp_send_failure_event = 1;
1142 subscribe.sctp_shutdown_event = 1;
1143 subscribe.sctp_partial_delivery_event = 1;
1144
df61c952 1145 result = kernel_setsockopt(sock, SOL_SOCKET, SO_RCVBUFFORCE,
6ed7257b
PC
1146 (char *)&bufsize, sizeof(bufsize));
1147 if (result)
617e82e1 1148 log_print("Error increasing buffer space on socket %d", result);
6ed7257b
PC
1149
1150 result = kernel_setsockopt(sock, SOL_SCTP, SCTP_EVENTS,
617e82e1 1151 (char *)&subscribe, sizeof(subscribe));
6ed7257b
PC
1152 if (result < 0) {
1153 log_print("Failed to set SCTP_EVENTS on socket: result=%d",
1154 result);
1155 goto create_delsock;
1156 }
1157
1158 /* Init con struct */
1159 sock->sk->sk_user_data = con;
1160 con->sock = sock;
1161 con->sock->sk->sk_data_ready = lowcomms_data_ready;
1162 con->rx_action = receive_from_sock;
1163 con->connect_action = sctp_init_assoc;
1164
1165 /* Bind to all interfaces. */
1166 for (i = 0; i < dlm_local_count; i++) {
1167 memcpy(&localaddr, dlm_local_addr[i], sizeof(localaddr));
1168 make_sockaddr(&localaddr, dlm_config.ci_tcp_port, &addr_len);
1169
1170 result = add_sctp_bind_addr(con, &localaddr, addr_len, num);
1171 if (result)
1172 goto create_delsock;
1173 ++num;
1174 }
1175
1176 result = sock->ops->listen(sock, 5);
1177 if (result < 0) {
1178 log_print("Can't set socket listening");
1179 goto create_delsock;
1180 }
1181
1182 return 0;
1183
1184create_delsock:
1185 sock_release(sock);
1186 con->sock = NULL;
1187out:
1188 return result;
1189}
1190
1191static int tcp_listen_for_all(void)
fdda387f
PC
1192{
1193 struct socket *sock = NULL;
573c24c4 1194 struct connection *con = nodeid2con(0, GFP_NOFS);
fdda387f
PC
1195 int result = -EINVAL;
1196
6ed7257b
PC
1197 if (!con)
1198 return -ENOMEM;
1199
fdda387f 1200 /* We don't support multi-homed hosts */
6ed7257b 1201 if (dlm_local_addr[1] != NULL) {
617e82e1
DT
1202 log_print("TCP protocol can't handle multi-homed hosts, "
1203 "try SCTP");
6ed7257b
PC
1204 return -EINVAL;
1205 }
1206
1207 log_print("Using TCP for communications");
1208
6ed7257b 1209 sock = tcp_create_listen_sock(con, dlm_local_addr[0]);
fdda387f
PC
1210 if (sock) {
1211 add_sock(sock, con);
1212 result = 0;
1213 }
1214 else {
1215 result = -EADDRINUSE;
1216 }
1217
1218 return result;
1219}
1220
1221
1222
1223static struct writequeue_entry *new_writequeue_entry(struct connection *con,
1224 gfp_t allocation)
1225{
1226 struct writequeue_entry *entry;
1227
1228 entry = kmalloc(sizeof(struct writequeue_entry), allocation);
1229 if (!entry)
1230 return NULL;
1231
1232 entry->page = alloc_page(allocation);
1233 if (!entry->page) {
1234 kfree(entry);
1235 return NULL;
1236 }
1237
1238 entry->offset = 0;
1239 entry->len = 0;
1240 entry->end = 0;
1241 entry->users = 0;
1242 entry->con = con;
1243
1244 return entry;
1245}
1246
617e82e1 1247void *dlm_lowcomms_get_buffer(int nodeid, int len, gfp_t allocation, char **ppc)
fdda387f
PC
1248{
1249 struct connection *con;
1250 struct writequeue_entry *e;
1251 int offset = 0;
1252 int users = 0;
1253
fdda387f
PC
1254 con = nodeid2con(nodeid, allocation);
1255 if (!con)
1256 return NULL;
1257
4edde74e 1258 spin_lock(&con->writequeue_lock);
fdda387f 1259 e = list_entry(con->writequeue.prev, struct writequeue_entry, list);
ac33d071 1260 if ((&e->list == &con->writequeue) ||
fdda387f
PC
1261 (PAGE_CACHE_SIZE - e->end < len)) {
1262 e = NULL;
1263 } else {
1264 offset = e->end;
1265 e->end += len;
1266 users = e->users++;
1267 }
1268 spin_unlock(&con->writequeue_lock);
1269
1270 if (e) {
ac33d071 1271 got_one:
fdda387f
PC
1272 *ppc = page_address(e->page) + offset;
1273 return e;
1274 }
1275
1276 e = new_writequeue_entry(con, allocation);
1277 if (e) {
1278 spin_lock(&con->writequeue_lock);
1279 offset = e->end;
1280 e->end += len;
1281 users = e->users++;
1282 list_add_tail(&e->list, &con->writequeue);
1283 spin_unlock(&con->writequeue_lock);
1284 goto got_one;
1285 }
1286 return NULL;
1287}
1288
1289void dlm_lowcomms_commit_buffer(void *mh)
1290{
1291 struct writequeue_entry *e = (struct writequeue_entry *)mh;
1292 struct connection *con = e->con;
1293 int users;
1294
4edde74e 1295 spin_lock(&con->writequeue_lock);
fdda387f
PC
1296 users = --e->users;
1297 if (users)
1298 goto out;
1299 e->len = e->end - e->offset;
fdda387f
PC
1300 spin_unlock(&con->writequeue_lock);
1301
1d6e8131
PC
1302 if (!test_and_set_bit(CF_WRITE_PENDING, &con->flags)) {
1303 queue_work(send_workqueue, &con->swork);
fdda387f
PC
1304 }
1305 return;
1306
ac33d071 1307out:
fdda387f
PC
1308 spin_unlock(&con->writequeue_lock);
1309 return;
1310}
1311
fdda387f 1312/* Send a message */
ac33d071 1313static void send_to_sock(struct connection *con)
fdda387f
PC
1314{
1315 int ret = 0;
fdda387f
PC
1316 const int msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL;
1317 struct writequeue_entry *e;
1318 int len, offset;
f92c8dd7 1319 int count = 0;
fdda387f 1320
f1f1c1cc 1321 mutex_lock(&con->sock_mutex);
fdda387f
PC
1322 if (con->sock == NULL)
1323 goto out_connect;
1324
fdda387f
PC
1325 spin_lock(&con->writequeue_lock);
1326 for (;;) {
1327 e = list_entry(con->writequeue.next, struct writequeue_entry,
1328 list);
1329 if ((struct list_head *) e == &con->writequeue)
1330 break;
1331
1332 len = e->len;
1333 offset = e->offset;
1334 BUG_ON(len == 0 && e->users == 0);
1335 spin_unlock(&con->writequeue_lock);
1336
1337 ret = 0;
1338 if (len) {
1329e3f2
PB
1339 ret = kernel_sendpage(con->sock, e->page, offset, len,
1340 msg_flags);
d66f8277 1341 if (ret == -EAGAIN || ret == 0) {
b36930dd
DM
1342 if (ret == -EAGAIN &&
1343 test_bit(SOCK_ASYNC_NOSPACE, &con->sock->flags) &&
1344 !test_and_set_bit(CF_APP_LIMITED, &con->flags)) {
1345 /* Notify TCP that we're limited by the
1346 * application window size.
1347 */
1348 set_bit(SOCK_NOSPACE, &con->sock->flags);
1349 con->sock->sk->sk_write_pending++;
1350 }
d66f8277 1351 cond_resched();
fdda387f 1352 goto out;
d66f8277 1353 }
fdda387f
PC
1354 if (ret <= 0)
1355 goto send_error;
d66f8277 1356 }
f92c8dd7
BP
1357
1358 /* Don't starve people filling buffers */
1359 if (++count >= MAX_SEND_MSG_COUNT) {
ac33d071 1360 cond_resched();
f92c8dd7
BP
1361 count = 0;
1362 }
fdda387f
PC
1363
1364 spin_lock(&con->writequeue_lock);
1365 e->offset += ret;
1366 e->len -= ret;
1367
1368 if (e->len == 0 && e->users == 0) {
1369 list_del(&e->list);
1370 free_entry(e);
1371 continue;
1372 }
1373 }
1374 spin_unlock(&con->writequeue_lock);
ac33d071 1375out:
f1f1c1cc 1376 mutex_unlock(&con->sock_mutex);
ac33d071 1377 return;
fdda387f 1378
ac33d071 1379send_error:
f1f1c1cc 1380 mutex_unlock(&con->sock_mutex);
ac33d071 1381 close_connection(con, false);
fdda387f 1382 lowcomms_connect_sock(con);
ac33d071 1383 return;
fdda387f 1384
ac33d071 1385out_connect:
f1f1c1cc 1386 mutex_unlock(&con->sock_mutex);
6ed7257b
PC
1387 if (!test_bit(CF_INIT_PENDING, &con->flags))
1388 lowcomms_connect_sock(con);
ac33d071 1389 return;
fdda387f
PC
1390}
1391
1392static void clean_one_writequeue(struct connection *con)
1393{
5e9ccc37 1394 struct writequeue_entry *e, *safe;
fdda387f
PC
1395
1396 spin_lock(&con->writequeue_lock);
5e9ccc37 1397 list_for_each_entry_safe(e, safe, &con->writequeue, list) {
fdda387f
PC
1398 list_del(&e->list);
1399 free_entry(e);
1400 }
1401 spin_unlock(&con->writequeue_lock);
1402}
1403
1404/* Called from recovery when it knows that a node has
1405 left the cluster */
1406int dlm_lowcomms_close(int nodeid)
1407{
1408 struct connection *con;
1409
fdda387f
PC
1410 log_print("closing connection to node %d", nodeid);
1411 con = nodeid2con(nodeid, 0);
1412 if (con) {
063c4c99
LMB
1413 clear_bit(CF_CONNECT_PENDING, &con->flags);
1414 clear_bit(CF_WRITE_PENDING, &con->flags);
1415 set_bit(CF_CLOSE, &con->flags);
1416 if (cancel_work_sync(&con->swork))
1417 log_print("canceled swork for node %d", nodeid);
1418 if (cancel_work_sync(&con->rwork))
1419 log_print("canceled rwork for node %d", nodeid);
fdda387f 1420 clean_one_writequeue(con);
ac33d071 1421 close_connection(con, true);
fdda387f
PC
1422 }
1423 return 0;
fdda387f
PC
1424}
1425
6ed7257b 1426/* Receive workqueue function */
1d6e8131 1427static void process_recv_sockets(struct work_struct *work)
fdda387f 1428{
1d6e8131
PC
1429 struct connection *con = container_of(work, struct connection, rwork);
1430 int err;
fdda387f 1431
1d6e8131
PC
1432 clear_bit(CF_READ_PENDING, &con->flags);
1433 do {
1434 err = con->rx_action(con);
1435 } while (!err);
fdda387f
PC
1436}
1437
6ed7257b 1438/* Send workqueue function */
1d6e8131 1439static void process_send_sockets(struct work_struct *work)
fdda387f 1440{
1d6e8131 1441 struct connection *con = container_of(work, struct connection, swork);
fdda387f 1442
1d6e8131 1443 if (test_and_clear_bit(CF_CONNECT_PENDING, &con->flags)) {
6ed7257b 1444 con->connect_action(con);
063c4c99 1445 set_bit(CF_WRITE_PENDING, &con->flags);
fdda387f 1446 }
063c4c99
LMB
1447 if (test_and_clear_bit(CF_WRITE_PENDING, &con->flags))
1448 send_to_sock(con);
fdda387f
PC
1449}
1450
1451
1452/* Discard all entries on the write queues */
1453static void clean_writequeues(void)
1454{
5e9ccc37 1455 foreach_conn(clean_one_writequeue);
fdda387f
PC
1456}
1457
1d6e8131 1458static void work_stop(void)
fdda387f 1459{
1d6e8131
PC
1460 destroy_workqueue(recv_workqueue);
1461 destroy_workqueue(send_workqueue);
fdda387f
PC
1462}
1463
1d6e8131 1464static int work_start(void)
fdda387f 1465{
e43f055a
DT
1466 recv_workqueue = alloc_workqueue("dlm_recv",
1467 WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
b9d41052
NK
1468 if (!recv_workqueue) {
1469 log_print("can't start dlm_recv");
1470 return -ENOMEM;
fdda387f 1471 }
fdda387f 1472
e43f055a
DT
1473 send_workqueue = alloc_workqueue("dlm_send",
1474 WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
b9d41052
NK
1475 if (!send_workqueue) {
1476 log_print("can't start dlm_send");
1d6e8131 1477 destroy_workqueue(recv_workqueue);
b9d41052 1478 return -ENOMEM;
fdda387f 1479 }
fdda387f
PC
1480
1481 return 0;
1482}
1483
5e9ccc37 1484static void stop_conn(struct connection *con)
fdda387f 1485{
5e9ccc37 1486 con->flags |= 0x0F;
391fbdc5 1487 if (con->sock && con->sock->sk)
5e9ccc37
CC
1488 con->sock->sk->sk_user_data = NULL;
1489}
fdda387f 1490
5e9ccc37
CC
1491static void free_conn(struct connection *con)
1492{
1493 close_connection(con, true);
1494 if (con->othercon)
1495 kmem_cache_free(con_cache, con->othercon);
1496 hlist_del(&con->list);
1497 kmem_cache_free(con_cache, con);
1498}
1499
1500void dlm_lowcomms_stop(void)
1501{
ac33d071 1502 /* Set all the flags to prevent any
fdda387f
PC
1503 socket activity.
1504 */
7a936ce7 1505 mutex_lock(&connections_lock);
5e9ccc37 1506 foreach_conn(stop_conn);
7a936ce7 1507 mutex_unlock(&connections_lock);
ac33d071 1508
1d6e8131 1509 work_stop();
6ed7257b 1510
7a936ce7 1511 mutex_lock(&connections_lock);
fdda387f
PC
1512 clean_writequeues();
1513
5e9ccc37
CC
1514 foreach_conn(free_conn);
1515
7a936ce7 1516 mutex_unlock(&connections_lock);
fdda387f
PC
1517 kmem_cache_destroy(con_cache);
1518}
1519
fdda387f
PC
1520int dlm_lowcomms_start(void)
1521{
6ed7257b
PC
1522 int error = -EINVAL;
1523 struct connection *con;
5e9ccc37
CC
1524 int i;
1525
1526 for (i = 0; i < CONN_HASH_SIZE; i++)
1527 INIT_HLIST_HEAD(&connection_hash[i]);
fdda387f 1528
6ed7257b
PC
1529 init_local();
1530 if (!dlm_local_count) {
617e82e1 1531 error = -ENOTCONN;
fdda387f 1532 log_print("no local IP address has been set");
6ed7257b 1533 goto out;
fdda387f
PC
1534 }
1535
6ed7257b 1536 error = -ENOMEM;
fdda387f 1537 con_cache = kmem_cache_create("dlm_conn", sizeof(struct connection),
ac33d071 1538 __alignof__(struct connection), 0,
20c2df83 1539 NULL);
fdda387f 1540 if (!con_cache)
6ed7257b 1541 goto out;
fdda387f 1542
fdda387f 1543 /* Start listening */
6ed7257b
PC
1544 if (dlm_config.ci_protocol == 0)
1545 error = tcp_listen_for_all();
1546 else
1547 error = sctp_listen_for_all();
fdda387f
PC
1548 if (error)
1549 goto fail_unlisten;
1550
1d6e8131 1551 error = work_start();
fdda387f
PC
1552 if (error)
1553 goto fail_unlisten;
1554
fdda387f
PC
1555 return 0;
1556
ac33d071 1557fail_unlisten:
6ed7257b
PC
1558 con = nodeid2con(0,0);
1559 if (con) {
1560 close_connection(con, false);
1561 kmem_cache_free(con_cache, con);
1562 }
fdda387f
PC
1563 kmem_cache_destroy(con_cache);
1564
ac33d071 1565out:
fdda387f
PC
1566 return error;
1567}