merge from volker
[vlendec/samba-autobuild/.git] / ctdb / tcp / tcp_io.c
1 /* 
2    ctdb over TCP
3
4    Copyright (C) Andrew Tridgell  2006
5
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2 of the License, or (at your option) any later version.
10
11    This library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with this library; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "includes.h"
22 #include "lib/events/events.h"
23 #include "lib/util/dlinklist.h"
24 #include "lib/tdb/include/tdb.h"
25 #include "system/network.h"
26 #include "system/filesys.h"
27 #include "../include/ctdb_private.h"
28 #include "ctdb_tcp.h"
29
30
31 /*
32   called when a complete packet has come in
33  */
34 void ctdb_tcp_read_cb(uint8_t *data, size_t cnt, void *args)
35 {
36         struct ctdb_incoming *in = talloc_get_type(args, struct ctdb_incoming);
37         struct ctdb_req_header *hdr;
38
39         if (data == NULL) {
40                 /* incoming socket has died */
41                 talloc_free(in);
42                 return;
43         }
44
45         if (cnt < sizeof(*hdr)) {
46                 ctdb_set_error(in->ctdb, "Bad packet length %d\n", cnt);
47                 return;
48         }
49         hdr = (struct ctdb_req_header *)data;
50         if (cnt != hdr->length) {
51                 ctdb_set_error(in->ctdb, "Bad header length %d expected %d\n", 
52                                hdr->length, cnt);
53                 return;
54         }
55
56         if (hdr->ctdb_magic != CTDB_MAGIC) {
57                 ctdb_set_error(in->ctdb, "Non CTDB packet rejected\n");
58                 return;
59         }
60
61         if (hdr->ctdb_version != CTDB_VERSION) {
62                 ctdb_set_error(in->ctdb, "Bad CTDB version 0x%x rejected\n", hdr->ctdb_version);
63                 return;
64         }
65
66         /* most common case - we got a whole packet in one go
67            tell the ctdb layer above that we have a packet */
68         in->ctdb->upcalls->recv_pkt(in->ctdb, data, cnt);
69 }
70
71 /*
72   queue a packet for sending
73 */
74 int ctdb_tcp_queue_pkt(struct ctdb_node *node, uint8_t *data, uint32_t length)
75 {
76         struct ctdb_tcp_node *tnode = talloc_get_type(node->private_data,
77                                                       struct ctdb_tcp_node);
78         return ctdb_queue_send(tnode->queue, data, length);
79 }