[DLM] fs/dlm/lowcomms-tcp.c: remove 2 functions
[deliverable/linux.git] / fs / dlm / lowcomms-tcp.c
CommitLineData
fdda387f
PC
1/******************************************************************************
2*******************************************************************************
3**
4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
5** Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
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
24 * be expanded for the cluster infrastructure then that is it's
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 *
39 * I don't see any problem with the recv thread executing the locking
40 * code on behalf of remote processes as the locking code is
41 * short, efficient and never waits.
42 *
43 */
44
45
46#include <asm/ioctls.h>
47#include <net/sock.h>
48#include <net/tcp.h>
49#include <linux/pagemap.h>
50
51#include "dlm_internal.h"
52#include "lowcomms.h"
53#include "midcomms.h"
54#include "config.h"
55
56struct cbuf {
ac33d071
PC
57 unsigned int base;
58 unsigned int len;
59 unsigned int mask;
fdda387f
PC
60};
61
fdda387f 62#define NODE_INCREMENT 32
ac33d071
PC
63static void cbuf_add(struct cbuf *cb, int n)
64{
65 cb->len += n;
66}
fdda387f 67
ac33d071
PC
68static int cbuf_data(struct cbuf *cb)
69{
70 return ((cb->base + cb->len) & cb->mask);
71}
72
73static void cbuf_init(struct cbuf *cb, int size)
74{
75 cb->base = cb->len = 0;
76 cb->mask = size-1;
77}
78
79static void cbuf_eat(struct cbuf *cb, int n)
80{
81 cb->len -= n;
82 cb->base += n;
83 cb->base &= cb->mask;
84}
85
86static bool cbuf_empty(struct cbuf *cb)
87{
88 return cb->len == 0;
89}
fdda387f
PC
90
91/* Maximum number of incoming messages to process before
ac33d071 92 doing a cond_resched()
fdda387f
PC
93*/
94#define MAX_RX_MSG_COUNT 25
95
96struct connection {
97 struct socket *sock; /* NULL if not connected */
98 uint32_t nodeid; /* So we know who we are in the list */
ac33d071
PC
99 struct rw_semaphore sock_sem; /* Stop connect races */
100 struct list_head read_list; /* On this list when ready for reading */
101 struct list_head write_list; /* On this list when ready for writing */
102 struct list_head state_list; /* On this list when ready to connect */
fdda387f
PC
103 unsigned long flags; /* bit 1,2 = We are on the read/write lists */
104#define CF_READ_PENDING 1
105#define CF_WRITE_PENDING 2
106#define CF_CONNECT_PENDING 3
107#define CF_IS_OTHERCON 4
ac33d071
PC
108 struct list_head writequeue; /* List of outgoing writequeue_entries */
109 struct list_head listenlist; /* List of allocated listening sockets */
fdda387f
PC
110 spinlock_t writequeue_lock;
111 int (*rx_action) (struct connection *); /* What to do when active */
112 struct page *rx_page;
113 struct cbuf cb;
114 int retries;
115 atomic_t waiting_requests;
116#define MAX_CONNECT_RETRIES 3
117 struct connection *othercon;
118};
119#define sock2con(x) ((struct connection *)(x)->sk_user_data)
120
121/* An entry waiting to be sent */
122struct writequeue_entry {
123 struct list_head list;
124 struct page *page;
125 int offset;
126 int len;
127 int end;
128 int users;
129 struct connection *con;
130};
131
132static struct sockaddr_storage dlm_local_addr;
133
134/* Manage daemons */
135static struct task_struct *recv_task;
136static struct task_struct *send_task;
137
138static wait_queue_t lowcomms_send_waitq_head;
ac33d071 139static DECLARE_WAIT_QUEUE_HEAD(lowcomms_send_waitq);
fdda387f 140static wait_queue_t lowcomms_recv_waitq_head;
ac33d071 141static DECLARE_WAIT_QUEUE_HEAD(lowcomms_recv_waitq);
fdda387f
PC
142
143/* An array of pointers to connections, indexed by NODEID */
144static struct connection **connections;
ac33d071 145static DECLARE_MUTEX(connections_lock);
c80e7c83 146static struct kmem_cache *con_cache;
fdda387f 147static int conn_array_size;
fdda387f
PC
148
149/* List of sockets that have reads pending */
ac33d071
PC
150static LIST_HEAD(read_sockets);
151static DEFINE_SPINLOCK(read_sockets_lock);
fdda387f
PC
152
153/* List of sockets which have writes pending */
ac33d071
PC
154static LIST_HEAD(write_sockets);
155static DEFINE_SPINLOCK(write_sockets_lock);
fdda387f
PC
156
157/* List of sockets which have connects pending */
ac33d071
PC
158static LIST_HEAD(state_sockets);
159static DEFINE_SPINLOCK(state_sockets_lock);
fdda387f
PC
160
161static struct connection *nodeid2con(int nodeid, gfp_t allocation)
162{
163 struct connection *con = NULL;
164
165 down(&connections_lock);
166 if (nodeid >= conn_array_size) {
167 int new_size = nodeid + NODE_INCREMENT;
168 struct connection **new_conns;
169
ac33d071 170 new_conns = kzalloc(sizeof(struct connection *) *
fdda387f
PC
171 new_size, allocation);
172 if (!new_conns)
173 goto finish;
174
fdda387f
PC
175 memcpy(new_conns, connections, sizeof(struct connection *) * conn_array_size);
176 conn_array_size = new_size;
177 kfree(connections);
178 connections = new_conns;
179
180 }
181
182 con = connections[nodeid];
183 if (con == NULL && allocation) {
ac33d071 184 con = kmem_cache_zalloc(con_cache, allocation);
fdda387f
PC
185 if (!con)
186 goto finish;
187
fdda387f
PC
188 con->nodeid = nodeid;
189 init_rwsem(&con->sock_sem);
190 INIT_LIST_HEAD(&con->writequeue);
191 spin_lock_init(&con->writequeue_lock);
192
193 connections[nodeid] = con;
194 }
195
ac33d071 196finish:
fdda387f
PC
197 up(&connections_lock);
198 return con;
199}
200
201/* Data available on socket or listen socket received a connect */
202static void lowcomms_data_ready(struct sock *sk, int count_unused)
203{
204 struct connection *con = sock2con(sk);
205
206 atomic_inc(&con->waiting_requests);
207 if (test_and_set_bit(CF_READ_PENDING, &con->flags))
208 return;
209
210 spin_lock_bh(&read_sockets_lock);
211 list_add_tail(&con->read_list, &read_sockets);
212 spin_unlock_bh(&read_sockets_lock);
213
214 wake_up_interruptible(&lowcomms_recv_waitq);
215}
216
217static void lowcomms_write_space(struct sock *sk)
218{
219 struct connection *con = sock2con(sk);
220
221 if (test_and_set_bit(CF_WRITE_PENDING, &con->flags))
222 return;
223
224 spin_lock_bh(&write_sockets_lock);
225 list_add_tail(&con->write_list, &write_sockets);
226 spin_unlock_bh(&write_sockets_lock);
227
228 wake_up_interruptible(&lowcomms_send_waitq);
229}
230
231static inline void lowcomms_connect_sock(struct connection *con)
232{
233 if (test_and_set_bit(CF_CONNECT_PENDING, &con->flags))
234 return;
fdda387f
PC
235
236 spin_lock_bh(&state_sockets_lock);
237 list_add_tail(&con->state_list, &state_sockets);
238 spin_unlock_bh(&state_sockets_lock);
239
240 wake_up_interruptible(&lowcomms_send_waitq);
241}
242
243static void lowcomms_state_change(struct sock *sk)
244{
ac33d071 245 if (sk->sk_state == TCP_ESTABLISHED)
fdda387f 246 lowcomms_write_space(sk);
fdda387f
PC
247}
248
249/* Make a socket active */
250static int add_sock(struct socket *sock, struct connection *con)
251{
252 con->sock = sock;
253
254 /* Install a data_ready callback */
255 con->sock->sk->sk_data_ready = lowcomms_data_ready;
256 con->sock->sk->sk_write_space = lowcomms_write_space;
257 con->sock->sk->sk_state_change = lowcomms_state_change;
258
259 return 0;
260}
261
262/* Add the port number to an IP6 or 4 sockaddr and return the address
263 length */
264static void make_sockaddr(struct sockaddr_storage *saddr, uint16_t port,
265 int *addr_len)
266{
ac33d071
PC
267 saddr->ss_family = dlm_local_addr.ss_family;
268 if (saddr->ss_family == AF_INET) {
fdda387f
PC
269 struct sockaddr_in *in4_addr = (struct sockaddr_in *)saddr;
270 in4_addr->sin_port = cpu_to_be16(port);
271 *addr_len = sizeof(struct sockaddr_in);
ac33d071 272 } else {
fdda387f
PC
273 struct sockaddr_in6 *in6_addr = (struct sockaddr_in6 *)saddr;
274 in6_addr->sin6_port = cpu_to_be16(port);
275 *addr_len = sizeof(struct sockaddr_in6);
276 }
277}
278
279/* Close a remote connection and tidy up */
ac33d071 280static void close_connection(struct connection *con, bool and_other)
fdda387f
PC
281{
282 down_write(&con->sock_sem);
283
284 if (con->sock) {
285 sock_release(con->sock);
286 con->sock = NULL;
287 }
288 if (con->othercon && and_other) {
ac33d071
PC
289 /* Will only re-enter once. */
290 close_connection(con->othercon, false);
fdda387f
PC
291 }
292 if (con->rx_page) {
293 __free_page(con->rx_page);
294 con->rx_page = NULL;
295 }
296 con->retries = 0;
297 up_write(&con->sock_sem);
298}
299
300/* Data received from remote end */
301static int receive_from_sock(struct connection *con)
302{
303 int ret = 0;
304 struct msghdr msg;
305 struct iovec iov[2];
306 mm_segment_t fs;
307 unsigned len;
308 int r;
309 int call_again_soon = 0;
310
311 down_read(&con->sock_sem);
312
313 if (con->sock == NULL)
314 goto out;
315 if (con->rx_page == NULL) {
316 /*
317 * This doesn't need to be atomic, but I think it should
318 * improve performance if it is.
319 */
320 con->rx_page = alloc_page(GFP_ATOMIC);
321 if (con->rx_page == NULL)
322 goto out_resched;
ac33d071 323 cbuf_init(&con->cb, PAGE_CACHE_SIZE);
fdda387f
PC
324 }
325
326 msg.msg_control = NULL;
327 msg.msg_controllen = 0;
328 msg.msg_iovlen = 1;
329 msg.msg_iov = iov;
330 msg.msg_name = NULL;
331 msg.msg_namelen = 0;
332 msg.msg_flags = 0;
333
334 /*
335 * iov[0] is the bit of the circular buffer between the current end
336 * point (cb.base + cb.len) and the end of the buffer.
337 */
ac33d071
PC
338 iov[0].iov_len = con->cb.base - cbuf_data(&con->cb);
339 iov[0].iov_base = page_address(con->rx_page) + cbuf_data(&con->cb);
fdda387f
PC
340 iov[1].iov_len = 0;
341
342 /*
343 * iov[1] is the bit of the circular buffer between the start of the
344 * buffer and the start of the currently used section (cb.base)
345 */
ac33d071
PC
346 if (cbuf_data(&con->cb) >= con->cb.base) {
347 iov[0].iov_len = PAGE_CACHE_SIZE - cbuf_data(&con->cb);
fdda387f
PC
348 iov[1].iov_len = con->cb.base;
349 iov[1].iov_base = page_address(con->rx_page);
350 msg.msg_iovlen = 2;
351 }
352 len = iov[0].iov_len + iov[1].iov_len;
353
354 fs = get_fs();
355 set_fs(get_ds());
356 r = ret = sock_recvmsg(con->sock, &msg, len,
357 MSG_DONTWAIT | MSG_NOSIGNAL);
358 set_fs(fs);
359
360 if (ret <= 0)
361 goto out_close;
362 if (ret == len)
363 call_again_soon = 1;
ac33d071 364 cbuf_add(&con->cb, ret);
fdda387f
PC
365 ret = dlm_process_incoming_buffer(con->nodeid,
366 page_address(con->rx_page),
367 con->cb.base, con->cb.len,
368 PAGE_CACHE_SIZE);
369 if (ret == -EBADMSG) {
370 printk(KERN_INFO "dlm: lowcomms: addr=%p, base=%u, len=%u, "
371 "iov_len=%u, iov_base[0]=%p, read=%d\n",
372 page_address(con->rx_page), con->cb.base, con->cb.len,
373 len, iov[0].iov_base, r);
374 }
375 if (ret < 0)
376 goto out_close;
ac33d071 377 cbuf_eat(&con->cb, ret);
fdda387f 378
ac33d071 379 if (cbuf_empty(&con->cb) && !call_again_soon) {
fdda387f
PC
380 __free_page(con->rx_page);
381 con->rx_page = NULL;
382 }
383
ac33d071 384out:
fdda387f
PC
385 if (call_again_soon)
386 goto out_resched;
387 up_read(&con->sock_sem);
ac33d071 388 return 0;
fdda387f 389
ac33d071 390out_resched:
fdda387f
PC
391 lowcomms_data_ready(con->sock->sk, 0);
392 up_read(&con->sock_sem);
ac33d071
PC
393 cond_resched();
394 return 0;
fdda387f 395
ac33d071 396out_close:
fdda387f
PC
397 up_read(&con->sock_sem);
398 if (ret != -EAGAIN && !test_bit(CF_IS_OTHERCON, &con->flags)) {
ac33d071 399 close_connection(con, false);
fdda387f
PC
400 /* Reconnect when there is something to send */
401 }
402
fdda387f
PC
403 return ret;
404}
405
406/* Listening socket is busy, accept a connection */
407static int accept_from_sock(struct connection *con)
408{
409 int result;
410 struct sockaddr_storage peeraddr;
411 struct socket *newsock;
412 int len;
413 int nodeid;
414 struct connection *newcon;
415
416 memset(&peeraddr, 0, sizeof(peeraddr));
ac33d071
PC
417 result = sock_create_kern(dlm_local_addr.ss_family, SOCK_STREAM,
418 IPPROTO_TCP, &newsock);
fdda387f
PC
419 if (result < 0)
420 return -ENOMEM;
421
422 down_read(&con->sock_sem);
423
424 result = -ENOTCONN;
425 if (con->sock == NULL)
426 goto accept_err;
427
428 newsock->type = con->sock->type;
429 newsock->ops = con->sock->ops;
430
431 result = con->sock->ops->accept(con->sock, newsock, O_NONBLOCK);
432 if (result < 0)
433 goto accept_err;
434
435 /* Get the connected socket's peer */
436 memset(&peeraddr, 0, sizeof(peeraddr));
437 if (newsock->ops->getname(newsock, (struct sockaddr *)&peeraddr,
438 &len, 2)) {
439 result = -ECONNABORTED;
440 goto accept_err;
441 }
442
443 /* Get the new node's NODEID */
444 make_sockaddr(&peeraddr, 0, &len);
445 if (dlm_addr_to_nodeid(&peeraddr, &nodeid)) {
ac33d071 446 printk("dlm: connect from non cluster node\n");
fdda387f
PC
447 sock_release(newsock);
448 up_read(&con->sock_sem);
449 return -1;
450 }
451
452 log_print("got connection from %d", nodeid);
453
454 /* Check to see if we already have a connection to this node. This
455 * could happen if the two nodes initiate a connection at roughly
456 * the same time and the connections cross on the wire.
457 * TEMPORARY FIX:
458 * In this case we store the incoming one in "othercon"
459 */
460 newcon = nodeid2con(nodeid, GFP_KERNEL);
461 if (!newcon) {
462 result = -ENOMEM;
463 goto accept_err;
464 }
465 down_write(&newcon->sock_sem);
466 if (newcon->sock) {
ac33d071 467 struct connection *othercon = newcon->othercon;
fdda387f
PC
468
469 if (!othercon) {
ac33d071 470 othercon = kmem_cache_zalloc(con_cache, GFP_KERNEL);
fdda387f
PC
471 if (!othercon) {
472 printk("dlm: failed to allocate incoming socket\n");
473 up_write(&newcon->sock_sem);
474 result = -ENOMEM;
475 goto accept_err;
476 }
fdda387f
PC
477 othercon->nodeid = nodeid;
478 othercon->rx_action = receive_from_sock;
479 init_rwsem(&othercon->sock_sem);
480 set_bit(CF_IS_OTHERCON, &othercon->flags);
481 newcon->othercon = othercon;
482 }
483 othercon->sock = newsock;
484 newsock->sk->sk_user_data = othercon;
485 add_sock(newsock, othercon);
486 }
487 else {
488 newsock->sk->sk_user_data = newcon;
489 newcon->rx_action = receive_from_sock;
490 add_sock(newsock, newcon);
491
492 }
493
494 up_write(&newcon->sock_sem);
495
496 /*
497 * Add it to the active queue in case we got data
498 * beween processing the accept adding the socket
499 * to the read_sockets list
500 */
501 lowcomms_data_ready(newsock->sk, 0);
502 up_read(&con->sock_sem);
503
504 return 0;
505
ac33d071 506accept_err:
fdda387f
PC
507 up_read(&con->sock_sem);
508 sock_release(newsock);
509
510 if (result != -EAGAIN)
511 printk("dlm: error accepting connection from node: %d\n", result);
512 return result;
513}
514
515/* Connect a new socket to its peer */
ac33d071 516static void connect_to_sock(struct connection *con)
fdda387f
PC
517{
518 int result = -EHOSTUNREACH;
519 struct sockaddr_storage saddr;
520 int addr_len;
521 struct socket *sock;
522
523 if (con->nodeid == 0) {
524 log_print("attempt to connect sock 0 foiled");
ac33d071 525 return;
fdda387f
PC
526 }
527
528 down_write(&con->sock_sem);
529 if (con->retries++ > MAX_CONNECT_RETRIES)
530 goto out;
531
532 /* Some odd races can cause double-connects, ignore them */
533 if (con->sock) {
534 result = 0;
535 goto out;
536 }
537
538 /* Create a socket to communicate with */
ac33d071
PC
539 result = sock_create_kern(dlm_local_addr.ss_family, SOCK_STREAM,
540 IPPROTO_TCP, &sock);
fdda387f
PC
541 if (result < 0)
542 goto out_err;
543
544 memset(&saddr, 0, sizeof(saddr));
545 if (dlm_nodeid_to_addr(con->nodeid, &saddr))
ac33d071 546 goto out_err;
fdda387f
PC
547
548 sock->sk->sk_user_data = con;
549 con->rx_action = receive_from_sock;
550
551 make_sockaddr(&saddr, dlm_config.tcp_port, &addr_len);
552
553 add_sock(sock, con);
554
555 log_print("connecting to %d", con->nodeid);
556 result =
557 sock->ops->connect(sock, (struct sockaddr *)&saddr, addr_len,
ac33d071 558 O_NONBLOCK);
fdda387f
PC
559 if (result == -EINPROGRESS)
560 result = 0;
ac33d071
PC
561 if (result == 0)
562 goto out;
fdda387f 563
ac33d071 564out_err:
fdda387f
PC
565 if (con->sock) {
566 sock_release(con->sock);
567 con->sock = NULL;
568 }
569 /*
570 * Some errors are fatal and this list might need adjusting. For other
571 * errors we try again until the max number of retries is reached.
572 */
573 if (result != -EHOSTUNREACH && result != -ENETUNREACH &&
574 result != -ENETDOWN && result != EINVAL
575 && result != -EPROTONOSUPPORT) {
576 lowcomms_connect_sock(con);
577 result = 0;
578 }
ac33d071
PC
579out:
580 up_write(&con->sock_sem);
581 return;
fdda387f
PC
582}
583
ac33d071
PC
584static struct socket *create_listen_sock(struct connection *con,
585 struct sockaddr_storage *saddr)
fdda387f 586{
ac33d071 587 struct socket *sock = NULL;
fdda387f
PC
588 mm_segment_t fs;
589 int result = 0;
590 int one = 1;
591 int addr_len;
592
593 if (dlm_local_addr.ss_family == AF_INET)
594 addr_len = sizeof(struct sockaddr_in);
595 else
596 addr_len = sizeof(struct sockaddr_in6);
597
598 /* Create a socket to communicate with */
599 result = sock_create_kern(dlm_local_addr.ss_family, SOCK_STREAM, IPPROTO_TCP, &sock);
600 if (result < 0) {
601 printk("dlm: Can't create listening comms socket\n");
602 goto create_out;
603 }
604
605 fs = get_fs();
606 set_fs(get_ds());
ac33d071
PC
607 result = sock_setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
608 (char *)&one, sizeof(one));
fdda387f
PC
609 set_fs(fs);
610 if (result < 0) {
ac33d071
PC
611 printk("dlm: Failed to set SO_REUSEADDR on socket: result=%d\n",
612 result);
fdda387f
PC
613 }
614 sock->sk->sk_user_data = con;
615 con->rx_action = accept_from_sock;
616 con->sock = sock;
617
618 /* Bind to our port */
619 make_sockaddr(saddr, dlm_config.tcp_port, &addr_len);
620 result = sock->ops->bind(sock, (struct sockaddr *) saddr, addr_len);
621 if (result < 0) {
622 printk("dlm: Can't bind to port %d\n", dlm_config.tcp_port);
623 sock_release(sock);
624 sock = NULL;
625 con->sock = NULL;
626 goto create_out;
627 }
628
629 fs = get_fs();
630 set_fs(get_ds());
631
ac33d071
PC
632 result = sock_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
633 (char *)&one, sizeof(one));
fdda387f
PC
634 set_fs(fs);
635 if (result < 0) {
636 printk("dlm: Set keepalive failed: %d\n", result);
637 }
638
639 result = sock->ops->listen(sock, 5);
640 if (result < 0) {
641 printk("dlm: Can't listen on port %d\n", dlm_config.tcp_port);
642 sock_release(sock);
643 sock = NULL;
644 goto create_out;
645 }
646
ac33d071 647create_out:
fdda387f
PC
648 return sock;
649}
650
651
652/* Listen on all interfaces */
653static int listen_for_all(void)
654{
655 struct socket *sock = NULL;
656 struct connection *con = nodeid2con(0, GFP_KERNEL);
657 int result = -EINVAL;
658
659 /* We don't support multi-homed hosts */
fdda387f
PC
660 set_bit(CF_IS_OTHERCON, &con->flags);
661
662 sock = create_listen_sock(con, &dlm_local_addr);
663 if (sock) {
664 add_sock(sock, con);
665 result = 0;
666 }
667 else {
668 result = -EADDRINUSE;
669 }
670
671 return result;
672}
673
674
675
676static struct writequeue_entry *new_writequeue_entry(struct connection *con,
677 gfp_t allocation)
678{
679 struct writequeue_entry *entry;
680
681 entry = kmalloc(sizeof(struct writequeue_entry), allocation);
682 if (!entry)
683 return NULL;
684
685 entry->page = alloc_page(allocation);
686 if (!entry->page) {
687 kfree(entry);
688 return NULL;
689 }
690
691 entry->offset = 0;
692 entry->len = 0;
693 entry->end = 0;
694 entry->users = 0;
695 entry->con = con;
696
697 return entry;
698}
699
700void *dlm_lowcomms_get_buffer(int nodeid, int len,
701 gfp_t allocation, char **ppc)
702{
703 struct connection *con;
704 struct writequeue_entry *e;
705 int offset = 0;
706 int users = 0;
707
fdda387f
PC
708 con = nodeid2con(nodeid, allocation);
709 if (!con)
710 return NULL;
711
fdda387f 712 e = list_entry(con->writequeue.prev, struct writequeue_entry, list);
ac33d071 713 if ((&e->list == &con->writequeue) ||
fdda387f
PC
714 (PAGE_CACHE_SIZE - e->end < len)) {
715 e = NULL;
716 } else {
717 offset = e->end;
718 e->end += len;
719 users = e->users++;
720 }
721 spin_unlock(&con->writequeue_lock);
722
723 if (e) {
ac33d071 724 got_one:
fdda387f
PC
725 if (users == 0)
726 kmap(e->page);
727 *ppc = page_address(e->page) + offset;
728 return e;
729 }
730
731 e = new_writequeue_entry(con, allocation);
732 if (e) {
733 spin_lock(&con->writequeue_lock);
734 offset = e->end;
735 e->end += len;
736 users = e->users++;
737 list_add_tail(&e->list, &con->writequeue);
738 spin_unlock(&con->writequeue_lock);
739 goto got_one;
740 }
741 return NULL;
742}
743
744void dlm_lowcomms_commit_buffer(void *mh)
745{
746 struct writequeue_entry *e = (struct writequeue_entry *)mh;
747 struct connection *con = e->con;
748 int users;
749
fdda387f
PC
750 users = --e->users;
751 if (users)
752 goto out;
753 e->len = e->end - e->offset;
754 kunmap(e->page);
755 spin_unlock(&con->writequeue_lock);
756
757 if (test_and_set_bit(CF_WRITE_PENDING, &con->flags) == 0) {
758 spin_lock_bh(&write_sockets_lock);
759 list_add_tail(&con->write_list, &write_sockets);
760 spin_unlock_bh(&write_sockets_lock);
761
762 wake_up_interruptible(&lowcomms_send_waitq);
763 }
764 return;
765
ac33d071 766out:
fdda387f
PC
767 spin_unlock(&con->writequeue_lock);
768 return;
769}
770
771static void free_entry(struct writequeue_entry *e)
772{
773 __free_page(e->page);
774 kfree(e);
775}
776
777/* Send a message */
ac33d071 778static void send_to_sock(struct connection *con)
fdda387f
PC
779{
780 int ret = 0;
781 ssize_t(*sendpage) (struct socket *, struct page *, int, size_t, int);
782 const int msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL;
783 struct writequeue_entry *e;
784 int len, offset;
785
786 down_read(&con->sock_sem);
787 if (con->sock == NULL)
788 goto out_connect;
789
790 sendpage = con->sock->ops->sendpage;
791
792 spin_lock(&con->writequeue_lock);
793 for (;;) {
794 e = list_entry(con->writequeue.next, struct writequeue_entry,
795 list);
796 if ((struct list_head *) e == &con->writequeue)
797 break;
798
799 len = e->len;
800 offset = e->offset;
801 BUG_ON(len == 0 && e->users == 0);
802 spin_unlock(&con->writequeue_lock);
803
804 ret = 0;
805 if (len) {
806 ret = sendpage(con->sock, e->page, offset, len,
807 msg_flags);
808 if (ret == -EAGAIN || ret == 0)
809 goto out;
810 if (ret <= 0)
811 goto send_error;
812 }
813 else {
814 /* Don't starve people filling buffers */
ac33d071 815 cond_resched();
fdda387f
PC
816 }
817
818 spin_lock(&con->writequeue_lock);
819 e->offset += ret;
820 e->len -= ret;
821
822 if (e->len == 0 && e->users == 0) {
823 list_del(&e->list);
ac33d071 824 kunmap(e->page);
fdda387f
PC
825 free_entry(e);
826 continue;
827 }
828 }
829 spin_unlock(&con->writequeue_lock);
ac33d071 830out:
fdda387f 831 up_read(&con->sock_sem);
ac33d071 832 return;
fdda387f 833
ac33d071 834send_error:
fdda387f 835 up_read(&con->sock_sem);
ac33d071 836 close_connection(con, false);
fdda387f 837 lowcomms_connect_sock(con);
ac33d071 838 return;
fdda387f 839
ac33d071 840out_connect:
fdda387f
PC
841 up_read(&con->sock_sem);
842 lowcomms_connect_sock(con);
ac33d071 843 return;
fdda387f
PC
844}
845
846static void clean_one_writequeue(struct connection *con)
847{
848 struct list_head *list;
849 struct list_head *temp;
850
851 spin_lock(&con->writequeue_lock);
852 list_for_each_safe(list, temp, &con->writequeue) {
853 struct writequeue_entry *e =
854 list_entry(list, struct writequeue_entry, list);
855 list_del(&e->list);
856 free_entry(e);
857 }
858 spin_unlock(&con->writequeue_lock);
859}
860
861/* Called from recovery when it knows that a node has
862 left the cluster */
863int dlm_lowcomms_close(int nodeid)
864{
865 struct connection *con;
866
867 if (!connections)
868 goto out;
869
870 log_print("closing connection to node %d", nodeid);
871 con = nodeid2con(nodeid, 0);
872 if (con) {
873 clean_one_writequeue(con);
ac33d071 874 close_connection(con, true);
fdda387f
PC
875 atomic_set(&con->waiting_requests, 0);
876 }
877 return 0;
878
ac33d071 879out:
fdda387f
PC
880 return -1;
881}
882
fdda387f
PC
883/* Look for activity on active sockets */
884static void process_sockets(void)
885{
886 struct list_head *list;
887 struct list_head *temp;
888 int count = 0;
889
890 spin_lock_bh(&read_sockets_lock);
891 list_for_each_safe(list, temp, &read_sockets) {
892
893 struct connection *con =
ac33d071 894 list_entry(list, struct connection, read_list);
fdda387f
PC
895 list_del(&con->read_list);
896 clear_bit(CF_READ_PENDING, &con->flags);
897
898 spin_unlock_bh(&read_sockets_lock);
899
900 /* This can reach zero if we are processing requests
901 * as they come in.
902 */
903 if (atomic_read(&con->waiting_requests) == 0) {
904 spin_lock_bh(&read_sockets_lock);
905 continue;
906 }
907
908 do {
909 con->rx_action(con);
910
911 /* Don't starve out everyone else */
912 if (++count >= MAX_RX_MSG_COUNT) {
ac33d071 913 cond_resched();
fdda387f
PC
914 count = 0;
915 }
916
917 } while (!atomic_dec_and_test(&con->waiting_requests) &&
918 !kthread_should_stop());
919
920 spin_lock_bh(&read_sockets_lock);
921 }
922 spin_unlock_bh(&read_sockets_lock);
923}
924
925/* Try to send any messages that are pending
926 */
927static void process_output_queue(void)
928{
929 struct list_head *list;
930 struct list_head *temp;
fdda387f
PC
931
932 spin_lock_bh(&write_sockets_lock);
933 list_for_each_safe(list, temp, &write_sockets) {
934 struct connection *con =
ac33d071 935 list_entry(list, struct connection, write_list);
fdda387f
PC
936 clear_bit(CF_WRITE_PENDING, &con->flags);
937 list_del(&con->write_list);
938
939 spin_unlock_bh(&write_sockets_lock);
ac33d071 940 send_to_sock(con);
fdda387f
PC
941 spin_lock_bh(&write_sockets_lock);
942 }
943 spin_unlock_bh(&write_sockets_lock);
944}
945
946static void process_state_queue(void)
947{
948 struct list_head *list;
949 struct list_head *temp;
fdda387f
PC
950
951 spin_lock_bh(&state_sockets_lock);
952 list_for_each_safe(list, temp, &state_sockets) {
953 struct connection *con =
ac33d071 954 list_entry(list, struct connection, state_list);
fdda387f
PC
955 list_del(&con->state_list);
956 clear_bit(CF_CONNECT_PENDING, &con->flags);
957 spin_unlock_bh(&state_sockets_lock);
958
ac33d071 959 connect_to_sock(con);
fdda387f
PC
960 spin_lock_bh(&state_sockets_lock);
961 }
962 spin_unlock_bh(&state_sockets_lock);
963}
964
965
966/* Discard all entries on the write queues */
967static void clean_writequeues(void)
968{
969 int nodeid;
970
971 for (nodeid = 1; nodeid < conn_array_size; nodeid++) {
972 struct connection *con = nodeid2con(nodeid, 0);
973
974 if (con)
975 clean_one_writequeue(con);
976 }
977}
978
979static int read_list_empty(void)
980{
981 int status;
982
983 spin_lock_bh(&read_sockets_lock);
984 status = list_empty(&read_sockets);
985 spin_unlock_bh(&read_sockets_lock);
986
987 return status;
988}
989
990/* DLM Transport comms receive daemon */
991static int dlm_recvd(void *data)
992{
fdda387f
PC
993 init_waitqueue_entry(&lowcomms_recv_waitq_head, current);
994 add_wait_queue(&lowcomms_recv_waitq, &lowcomms_recv_waitq_head);
995
996 while (!kthread_should_stop()) {
997 set_current_state(TASK_INTERRUPTIBLE);
998 if (read_list_empty())
ac33d071 999 cond_resched();
fdda387f
PC
1000 set_current_state(TASK_RUNNING);
1001
1002 process_sockets();
1003 }
1004
1005 return 0;
1006}
1007
1008static int write_and_state_lists_empty(void)
1009{
1010 int status;
1011
1012 spin_lock_bh(&write_sockets_lock);
1013 status = list_empty(&write_sockets);
1014 spin_unlock_bh(&write_sockets_lock);
1015
1016 spin_lock_bh(&state_sockets_lock);
1017 if (list_empty(&state_sockets) == 0)
1018 status = 0;
1019 spin_unlock_bh(&state_sockets_lock);
1020
1021 return status;
1022}
1023
1024/* DLM Transport send daemon */
1025static int dlm_sendd(void *data)
1026{
fdda387f
PC
1027 init_waitqueue_entry(&lowcomms_send_waitq_head, current);
1028 add_wait_queue(&lowcomms_send_waitq, &lowcomms_send_waitq_head);
1029
1030 while (!kthread_should_stop()) {
1031 set_current_state(TASK_INTERRUPTIBLE);
1032 if (write_and_state_lists_empty())
ac33d071 1033 cond_resched();
fdda387f
PC
1034 set_current_state(TASK_RUNNING);
1035
1036 process_state_queue();
1037 process_output_queue();
1038 }
1039
1040 return 0;
1041}
1042
1043static void daemons_stop(void)
1044{
1045 kthread_stop(recv_task);
1046 kthread_stop(send_task);
1047}
1048
1049static int daemons_start(void)
1050{
1051 struct task_struct *p;
1052 int error;
1053
1054 p = kthread_run(dlm_recvd, NULL, "dlm_recvd");
1055 error = IS_ERR(p);
ac33d071 1056 if (error) {
fdda387f
PC
1057 log_print("can't start dlm_recvd %d", error);
1058 return error;
1059 }
1060 recv_task = p;
1061
1062 p = kthread_run(dlm_sendd, NULL, "dlm_sendd");
1063 error = IS_ERR(p);
ac33d071 1064 if (error) {
fdda387f
PC
1065 log_print("can't start dlm_sendd %d", error);
1066 kthread_stop(recv_task);
1067 return error;
1068 }
1069 send_task = p;
1070
1071 return 0;
1072}
1073
fdda387f
PC
1074void dlm_lowcomms_stop(void)
1075{
1076 int i;
1077
ac33d071 1078 /* Set all the flags to prevent any
fdda387f
PC
1079 socket activity.
1080 */
1081 for (i = 0; i < conn_array_size; i++) {
1082 if (connections[i])
ac33d071 1083 connections[i]->flags |= 0xFF;
fdda387f 1084 }
ac33d071 1085
fdda387f
PC
1086 daemons_stop();
1087 clean_writequeues();
1088
1089 for (i = 0; i < conn_array_size; i++) {
1090 if (connections[i]) {
ac33d071 1091 close_connection(connections[i], true);
fdda387f
PC
1092 if (connections[i]->othercon)
1093 kmem_cache_free(con_cache, connections[i]->othercon);
1094 kmem_cache_free(con_cache, connections[i]);
1095 }
1096 }
1097
1098 kfree(connections);
1099 connections = NULL;
1100
1101 kmem_cache_destroy(con_cache);
1102}
1103
1104/* This is quite likely to sleep... */
1105int dlm_lowcomms_start(void)
1106{
1107 int error = 0;
1108
fdda387f 1109 error = -ENOMEM;
ac33d071 1110 connections = kzalloc(sizeof(struct connection *) *
fdda387f
PC
1111 NODE_INCREMENT, GFP_KERNEL);
1112 if (!connections)
1113 goto out;
1114
fdda387f
PC
1115 conn_array_size = NODE_INCREMENT;
1116
1117 if (dlm_our_addr(&dlm_local_addr, 0)) {
1118 log_print("no local IP address has been set");
1119 goto fail_free_conn;
1120 }
1121 if (!dlm_our_addr(&dlm_local_addr, 1)) {
1122 log_print("This dlm comms module does not support multi-homed clustering");
1123 goto fail_free_conn;
1124 }
1125
1126 con_cache = kmem_cache_create("dlm_conn", sizeof(struct connection),
ac33d071
PC
1127 __alignof__(struct connection), 0,
1128 NULL, NULL);
fdda387f
PC
1129 if (!con_cache)
1130 goto fail_free_conn;
1131
1132
1133 /* Start listening */
1134 error = listen_for_all();
1135 if (error)
1136 goto fail_unlisten;
1137
1138 error = daemons_start();
1139 if (error)
1140 goto fail_unlisten;
1141
fdda387f
PC
1142 return 0;
1143
ac33d071
PC
1144fail_unlisten:
1145 close_connection(connections[0], false);
fdda387f
PC
1146 kmem_cache_free(con_cache, connections[0]);
1147 kmem_cache_destroy(con_cache);
1148
ac33d071 1149fail_free_conn:
fdda387f
PC
1150 kfree(connections);
1151
ac33d071 1152out:
fdda387f
PC
1153 return error;
1154}
1155
fdda387f
PC
1156/*
1157 * Overrides for Emacs so that we follow Linus's tabbing style.
1158 * Emacs will notice this stuff at the end of the file and automatically
1159 * adjust the settings for this buffer only. This must remain at the end
1160 * of the file.
1161 * ---------------------------------------------------------------------------
1162 * Local variables:
1163 * c-file-style: "linux"
1164 * End:
1165 */
This page took 0.092276 seconds and 5 git commands to generate.