6e79042b85559cb7aee85f2367071e7b039b751e
[vlendec/samba-autobuild/.git] / ctdb / common / ctdb_message.c
1 /* 
2    ctdb_message protocol code
3
4    Copyright (C) Andrew Tridgell  2007
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   see http://wiki.samba.org/index.php/Samba_%26_Clustering for
22   protocol design and packet details
23 */
24 #include "includes.h"
25 #include "lib/events/events.h"
26 #include "lib/tdb/include/tdb.h"
27 #include "system/network.h"
28 #include "system/filesys.h"
29 #include "../include/ctdb_private.h"
30
31
32 /*
33   called when a CTDB_REQ_MESSAGE packet comes in
34
35   this dispatches the messages to the registered ctdb message handler
36 */
37 void ctdb_request_message(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
38 {
39         struct ctdb_req_message *c = (struct ctdb_req_message *)hdr;
40         TDB_DATA data;
41         if (ctdb->message_handler == NULL) {
42                 printf("no msg handler\n");
43                 /* no registered message handler */
44                 talloc_free(hdr);
45                 return;
46         }
47         data.dptr = &c->data[0];
48         data.dsize = c->datalen;
49         ctdb->message_handler(ctdb, c->srvid, data, ctdb->message_private);
50         talloc_free(hdr);
51 }
52
53
54 /*
55   send a ctdb message
56 */
57 int ctdb_send_message(struct ctdb_context *ctdb, uint32_t vnn,
58                       uint32_t srvid, TDB_DATA data)
59 {
60         struct ctdb_req_message *r;
61         int len;
62
63         len = offsetof(struct ctdb_req_message, data) + data.dsize;
64         r = ctdb->methods->allocate_pkt(ctdb, len);
65         CTDB_NO_MEMORY(ctdb, r);
66
67         r->hdr.length    = len;
68         r->hdr.operation = CTDB_REQ_MESSAGE;
69         r->hdr.destnode  = vnn;
70         r->hdr.srcnode   = ctdb->vnn;
71         r->hdr.reqid     = 0;
72         r->srvid         = srvid;
73         r->datalen       = data.dsize;
74         memcpy(&r->data[0], data.dptr, data.dsize);
75         
76         ctdb_queue_packet(ctdb, &r->hdr);
77
78         talloc_free(r);
79         return 0;
80 }
81
82 /*
83   setup handler for receipt of ctdb messages from ctdb_send_message()
84 */
85 int ctdb_set_message_handler(struct ctdb_context *ctdb, ctdb_message_fn_t handler,
86                              void *private)
87 {
88         ctdb->message_handler = handler;
89         ctdb->message_private = private;
90         return 0;
91 }
92