summaryrefslogtreecommitdiff
path: root/source4/cluster/ctdb/tcp/tcp_io.c
blob: e59f6167ff8a15798b9eb53ed3c9a08571e51f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/* 
   ctdb over TCP

   Copyright (C) Andrew Tridgell  2006

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

#include "includes.h"
#include "lib/events/events.h"
#include "lib/util/dlinklist.h"
#include "lib/tdb/include/tdb.h"
#include "system/network.h"
#include "system/filesys.h"
#include "../include/ctdb_private.h"
#include "ctdb_tcp.h"


/*
  called when we fail to send a message to a node
*/
static void ctdb_tcp_node_dead(struct event_context *ev, struct timed_event *te, 
			       struct timeval t, void *private)
{
	struct ctdb_node *node = talloc_get_type(private, struct ctdb_node);
	struct ctdb_tcp_node *tnode = talloc_get_type(node->private, 
						      struct ctdb_tcp_node);

	/* start a new connect cycle to try to re-establish the
	   link */
	talloc_free(tnode->fde);
	close(tnode->fd);
	tnode->fd = -1;
	event_add_timed(node->ctdb->ev, node, timeval_zero(), 
			ctdb_tcp_node_connect, node);
}

/*
  called when socket becomes readable
*/
void ctdb_tcp_node_write(struct event_context *ev, struct fd_event *fde, 
			 uint16_t flags, void *private)
{
	struct ctdb_node *node = talloc_get_type(private, struct ctdb_node);
	struct ctdb_tcp_node *tnode = talloc_get_type(node->private, 
						      struct ctdb_tcp_node);
	if (flags & EVENT_FD_READ) {
		/* getting a read event on this fd in the current tcp model is
		   always an error, as we have separate read and write
		   sockets. In future we may combine them, but for now it must
		   mean that the socket is dead, so we try to reconnect */
		node->ctdb->upcalls->node_dead(node);
		talloc_free(tnode->fde);
		close(tnode->fd);
		tnode->fd = -1;
		event_add_timed(node->ctdb->ev, node, timeval_zero(), 
				ctdb_tcp_node_connect, node);
		return;
	}

	while (tnode->queue) {
		struct ctdb_tcp_packet *pkt = tnode->queue;
		ssize_t n;

		n = write(tnode->fd, pkt->data, pkt->length);

		if (n == -1 && errno != EAGAIN && errno != EWOULDBLOCK) {
			event_add_timed(node->ctdb->ev, node, timeval_zero(), 
					ctdb_tcp_node_dead, node);
			EVENT_FD_NOT_WRITEABLE(tnode->fde);
			return;
		}
		if (n <= 0) return;
		
		if (n != pkt->length) {
			pkt->length -= n;
			pkt->data += n;
			return;
		}

		DLIST_REMOVE(tnode->queue, pkt);
		talloc_free(pkt);
	}

	EVENT_FD_NOT_WRITEABLE(tnode->fde);
}


/*
  called when an incoming connection is readable
*/
void ctdb_tcp_incoming_read(struct event_context *ev, struct fd_event *fde, 
			    uint16_t flags, void *private)
{
	struct ctdb_incoming *in = talloc_get_type(private, struct ctdb_incoming);
	int num_ready = 0;
	ssize_t nread;
	uint8_t *data, *data_base;

	if (ioctl(in->fd, FIONREAD, &num_ready) != 0 ||
	    num_ready == 0) {
		/* we've lost the link from another node. We don't
		   notify the upper layers, as we only want to trigger
		   a full node reorganisation when a send fails - that
		   allows nodes to restart without penalty as long as
		   the network is idle */
		talloc_free(in);
		return;
	}

	in->partial.data = talloc_realloc_size(in, in->partial.data, 
					       num_ready + in->partial.length);
	if (in->partial.data == NULL) {
		/* not much we can do except drop the socket */
		talloc_free(in);
		return;
	}

	nread = read(in->fd, in->partial.data+in->partial.length, num_ready);
	if (nread <= 0) {
		/* the connection must be dead */
		talloc_free(in);
		return;
	}

	data = in->partial.data;
	nread += in->partial.length;

	in->partial.data = NULL;
	in->partial.length = 0;

	if (nread >= 4 && *(uint32_t *)data == nread) {
		/* most common case - we got a whole packet in one go
		   tell the ctdb layer above that we have a packet */
		in->ctdb->upcalls->recv_pkt(in->ctdb, data, nread);
		return;
	}

	data_base = data;

	while (nread >= 4 && *(uint32_t *)data <= nread) {
		/* we have at least one packet */
		uint8_t *d2;
		uint32_t len;
		len = *(uint32_t *)data;
		d2 = talloc_memdup(in, data, len);
		if (d2 == NULL) {
			/* sigh */
			talloc_free(in);
			return;
		}
		in->ctdb->upcalls->recv_pkt(in->ctdb, d2, len);
		data += len;
		nread -= len;		
	}

	if (nread > 0) {
		/* we have only part of a packet */
		if (data_base == data) {
			in->partial.data = data;
			in->partial.length = nread;
		} else {
			in->partial.data = talloc_memdup(in, data, nread);
			if (in->partial.data == NULL) {
				talloc_free(in);
				return;
			}
			in->partial.length = nread;
			talloc_free(data_base);
		}
		return;
	}

	talloc_free(data_base);
}

/*
  queue a packet for sending
*/
int ctdb_tcp_queue_pkt(struct ctdb_node *node, uint8_t *data, uint32_t length)
{
	struct ctdb_tcp_node *tnode = talloc_get_type(node->private, 
						      struct ctdb_tcp_node);
	struct ctdb_tcp_packet *pkt;
	uint32_t length2;

	/* enforce the length and alignment rules from the tcp packet allocator */
	length2 = (length+(CTDB_TCP_ALIGNMENT-1)) & ~(CTDB_TCP_ALIGNMENT-1);
	*(uint32_t *)data = length2;

	if (length2 != length) {
		memset(data+length, 0, length2-length);
	}
	
	/* if the queue is empty then try an immediate write, avoiding
	   queue overhead. This relies on non-blocking sockets */
	if (tnode->queue == NULL && tnode->fd != -1) {
		ssize_t n = write(tnode->fd, data, length2);
		if (n == -1 && errno != EAGAIN && errno != EWOULDBLOCK) {
			event_add_timed(node->ctdb->ev, node, timeval_zero(), 
					ctdb_tcp_node_dead, node);
			/* yes, we report success, as the dead node is 
			   handled via a separate event */
			return 0;
		}
		if (n > 0) {
			data += n;
			length2 -= n;
		}
		if (length2 == 0) return 0;
	}

	pkt = talloc(tnode, struct ctdb_tcp_packet);
	CTDB_NO_MEMORY(node->ctdb, pkt);

	pkt->data = talloc_memdup(pkt, data, length2);
	CTDB_NO_MEMORY(node->ctdb, pkt->data);

	pkt->length = length2;

	if (tnode->queue == NULL && tnode->fd != -1) {
		EVENT_FD_WRITEABLE(tnode->fde);
	}

	DLIST_ADD_END(tnode->queue, pkt, struct ctdb_tcp_packet *);

	return 0;
}