merge from tridge
[sahlberg/ctdb.git] / server / ctdb_call.c
1 /* 
2    ctdb_call protocol code
3
4    Copyright (C) Andrew Tridgell  2006
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program 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
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19 /*
20   see http://wiki.samba.org/index.php/Samba_%26_Clustering for
21   protocol design and packet details
22 */
23 #include "includes.h"
24 #include "lib/events/events.h"
25 #include "lib/tdb/include/tdb.h"
26 #include "lib/util/dlinklist.h"
27 #include "system/network.h"
28 #include "system/filesys.h"
29 #include "../include/ctdb_private.h"
30
31 /*
32   find the ctdb_db from a db index
33  */
34  struct ctdb_db_context *find_ctdb_db(struct ctdb_context *ctdb, uint32_t id)
35 {
36         struct ctdb_db_context *ctdb_db;
37
38         for (ctdb_db=ctdb->db_list; ctdb_db; ctdb_db=ctdb_db->next) {
39                 if (ctdb_db->db_id == id) {
40                         break;
41                 }
42         }
43         return ctdb_db;
44 }
45
46
47 /*
48   a varient of input packet that can be used in lock requeue
49 */
50 static void ctdb_call_input_pkt(void *p, struct ctdb_req_header *hdr)
51 {
52         struct ctdb_context *ctdb = talloc_get_type(p, struct ctdb_context);
53         ctdb_input_pkt(ctdb, hdr);
54 }
55
56
57 /*
58   send an error reply
59 */
60 static void ctdb_send_error(struct ctdb_context *ctdb, 
61                             struct ctdb_req_header *hdr, uint32_t status,
62                             const char *fmt, ...) PRINTF_ATTRIBUTE(4,5);
63 static void ctdb_send_error(struct ctdb_context *ctdb, 
64                             struct ctdb_req_header *hdr, uint32_t status,
65                             const char *fmt, ...)
66 {
67         va_list ap;
68         struct ctdb_reply_error *r;
69         char *msg;
70         int msglen, len;
71
72         va_start(ap, fmt);
73         msg = talloc_vasprintf(ctdb, fmt, ap);
74         if (msg == NULL) {
75                 ctdb_fatal(ctdb, "Unable to allocate error in ctdb_send_error\n");
76         }
77         va_end(ap);
78
79         msglen = strlen(msg)+1;
80         len = offsetof(struct ctdb_reply_error, msg);
81         r = ctdb_transport_allocate(ctdb, msg, CTDB_REPLY_ERROR, len + msglen, 
82                                     struct ctdb_reply_error);
83         CTDB_NO_MEMORY_FATAL(ctdb, r);
84
85         r->hdr.destnode  = hdr->srcnode;
86         r->hdr.reqid     = hdr->reqid;
87         r->status        = status;
88         r->msglen        = msglen;
89         memcpy(&r->msg[0], msg, msglen);
90
91         ctdb_queue_packet(ctdb, &r->hdr);
92
93         talloc_free(msg);
94 }
95
96
97 /*
98   send a redirect reply
99 */
100 static void ctdb_call_send_redirect(struct ctdb_context *ctdb, 
101                                     TDB_DATA key,
102                                     struct ctdb_req_call *c, 
103                                     struct ctdb_ltdb_header *header)
104 {
105         
106         uint32_t lmaster = ctdb_lmaster(ctdb, &key);
107         if (ctdb->vnn == lmaster) {
108                 c->hdr.destnode = header->dmaster;
109         } else if ((c->hopcount % ctdb->tunable.max_redirect_count) == 0) {
110                 c->hdr.destnode = lmaster;
111         } else {
112                 c->hdr.destnode = header->dmaster;
113         }
114         c->hopcount++;
115         ctdb_queue_packet(ctdb, &c->hdr);
116 }
117
118
119 /*
120   send a dmaster reply
121
122   caller must have the chainlock before calling this routine. Caller must be
123   the lmaster
124 */
125 static void ctdb_send_dmaster_reply(struct ctdb_db_context *ctdb_db,
126                                     struct ctdb_ltdb_header *header,
127                                     TDB_DATA key, TDB_DATA data,
128                                     uint32_t new_dmaster,
129                                     uint32_t reqid)
130 {
131         struct ctdb_context *ctdb = ctdb_db->ctdb;
132         struct ctdb_reply_dmaster *r;
133         int ret, len;
134         TALLOC_CTX *tmp_ctx;
135
136         if (ctdb->vnn != ctdb_lmaster(ctdb, &key)) {
137                 DEBUG(0,(__location__ " Caller is not lmaster!\n"));
138                 return;
139         }
140
141         header->dmaster = new_dmaster;
142         ret = ctdb_ltdb_store(ctdb_db, key, header, data);
143         if (ret != 0) {
144                 ctdb_fatal(ctdb, "ctdb_req_dmaster unable to update dmaster");
145                 return;
146         }
147
148         /* put the packet on a temporary context, allowing us to safely free
149            it below even if ctdb_reply_dmaster() has freed it already */
150         tmp_ctx = talloc_new(ctdb);
151
152         /* send the CTDB_REPLY_DMASTER */
153         len = offsetof(struct ctdb_reply_dmaster, data) + key.dsize + data.dsize;
154         r = ctdb_transport_allocate(ctdb, tmp_ctx, CTDB_REPLY_DMASTER, len,
155                                     struct ctdb_reply_dmaster);
156         CTDB_NO_MEMORY_FATAL(ctdb, r);
157
158         r->hdr.destnode  = new_dmaster;
159         r->hdr.reqid     = reqid;
160         r->rsn           = header->rsn;
161         r->keylen        = key.dsize;
162         r->datalen       = data.dsize;
163         r->db_id         = ctdb_db->db_id;
164         memcpy(&r->data[0], key.dptr, key.dsize);
165         memcpy(&r->data[key.dsize], data.dptr, data.dsize);
166
167         ctdb_queue_packet(ctdb, &r->hdr);
168
169         talloc_free(tmp_ctx);
170 }
171
172 /*
173   send a dmaster request (give another node the dmaster for a record)
174
175   This is always sent to the lmaster, which ensures that the lmaster
176   always knows who the dmaster is. The lmaster will then send a
177   CTDB_REPLY_DMASTER to the new dmaster
178 */
179 static void ctdb_call_send_dmaster(struct ctdb_db_context *ctdb_db, 
180                                    struct ctdb_req_call *c, 
181                                    struct ctdb_ltdb_header *header,
182                                    TDB_DATA *key, TDB_DATA *data)
183 {
184         struct ctdb_req_dmaster *r;
185         struct ctdb_context *ctdb = ctdb_db->ctdb;
186         int len;
187         uint32_t lmaster = ctdb_lmaster(ctdb, key);
188
189         if (lmaster == ctdb->vnn) {
190                 ctdb_send_dmaster_reply(ctdb_db, header, *key, *data, 
191                                         c->hdr.srcnode, c->hdr.reqid);
192                 return;
193         }
194         
195         len = offsetof(struct ctdb_req_dmaster, data) + key->dsize + data->dsize;
196         r = ctdb_transport_allocate(ctdb, ctdb, CTDB_REQ_DMASTER, len, 
197                                     struct ctdb_req_dmaster);
198         CTDB_NO_MEMORY_FATAL(ctdb, r);
199         r->hdr.destnode  = lmaster;
200         r->hdr.reqid     = c->hdr.reqid;
201         r->db_id         = c->db_id;
202         r->rsn           = header->rsn;
203         r->dmaster       = c->hdr.srcnode;
204         r->keylen        = key->dsize;
205         r->datalen       = data->dsize;
206         memcpy(&r->data[0], key->dptr, key->dsize);
207         memcpy(&r->data[key->dsize], data->dptr, data->dsize);
208
209         header->dmaster = c->hdr.srcnode;
210         if (ctdb_ltdb_store(ctdb_db, *key, header, *data) != 0) {
211                 ctdb_fatal(ctdb, "Failed to store record in ctdb_call_send_dmaster");
212         }
213         
214         ctdb_queue_packet(ctdb, &r->hdr);
215
216         talloc_free(r);
217 }
218
219 /*
220   called when a CTDB_REPLY_DMASTER packet comes in, or when the lmaster
221   gets a CTDB_REQUEST_DMASTER for itself. We become the dmaster.
222
223   must be called with the chainlock held. This function releases the chainlock
224 */
225 static void ctdb_become_dmaster(struct ctdb_db_context *ctdb_db, 
226                                 uint32_t reqid, TDB_DATA key, TDB_DATA data,
227                                 uint64_t rsn)
228 {
229         struct ctdb_call_state *state;
230         struct ctdb_context *ctdb = ctdb_db->ctdb;
231         struct ctdb_ltdb_header header;
232
233         DEBUG(2,("vnn %u dmaster response %08x\n", ctdb->vnn, ctdb_hash(&key)));
234
235         ZERO_STRUCT(header);
236         header.rsn = rsn + 1;
237         header.dmaster = ctdb->vnn;
238
239         if (ctdb_ltdb_store(ctdb_db, key, &header, data) != 0) {
240                 ctdb_fatal(ctdb, "ctdb_reply_dmaster store failed\n");
241                 ctdb_ltdb_unlock(ctdb_db, key);
242                 return;
243         }
244
245         state = ctdb_reqid_find(ctdb, reqid, struct ctdb_call_state);
246
247         if (state == NULL) {
248                 DEBUG(0,("vnn %u Invalid reqid %u in ctdb_become_dmaster\n",
249                          ctdb->vnn, reqid));
250                 ctdb_ltdb_unlock(ctdb_db, key);
251                 return;
252         }
253
254         if (reqid != state->reqid) {
255                 /* we found a record  but it was the wrong one */
256                 DEBUG(0, ("Dropped orphan in ctdb_become_dmaster with reqid:%u\n",reqid));
257                 ctdb_ltdb_unlock(ctdb_db, key);
258                 return;
259         }
260
261         ctdb_call_local(ctdb_db, &state->call, &header, state, &data, ctdb->vnn);
262
263         ctdb_ltdb_unlock(ctdb_db, state->call.key);
264
265         state->state = CTDB_CALL_DONE;
266         if (state->async.fn) {
267                 state->async.fn(state);
268         }
269 }
270
271
272
273 /*
274   called when a CTDB_REQ_DMASTER packet comes in
275
276   this comes into the lmaster for a record when the current dmaster
277   wants to give up the dmaster role and give it to someone else
278 */
279 void ctdb_request_dmaster(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
280 {
281         struct ctdb_req_dmaster *c = (struct ctdb_req_dmaster *)hdr;
282         TDB_DATA key, data, data2;
283         struct ctdb_ltdb_header header;
284         struct ctdb_db_context *ctdb_db;
285         int ret;
286
287         key.dptr = c->data;
288         key.dsize = c->keylen;
289         data.dptr = c->data + c->keylen;
290         data.dsize = c->datalen;
291
292         ctdb_db = find_ctdb_db(ctdb, c->db_id);
293         if (!ctdb_db) {
294                 ctdb_send_error(ctdb, hdr, -1,
295                                 "Unknown database in request. db_id==0x%08x",
296                                 c->db_id);
297                 return;
298         }
299         
300         /* fetch the current record */
301         ret = ctdb_ltdb_lock_fetch_requeue(ctdb_db, key, &header, hdr, &data2,
302                                            ctdb_call_input_pkt, ctdb, False);
303         if (ret == -1) {
304                 ctdb_fatal(ctdb, "ctdb_req_dmaster failed to fetch record");
305                 return;
306         }
307         if (ret == -2) {
308                 DEBUG(2,(__location__ " deferring ctdb_request_dmaster\n"));
309                 return;
310         }
311
312         if (ctdb_lmaster(ctdb, &key) != ctdb->vnn) {
313                 DEBUG(0,("vnn %u dmaster request to non-lmaster lmaster=%u gen=%u curgen=%u\n",
314                          ctdb->vnn, ctdb_lmaster(ctdb, &key), 
315                          hdr->generation, ctdb->vnn_map->generation));
316                 ctdb_fatal(ctdb, "ctdb_req_dmaster to non-lmaster");
317         }
318
319         DEBUG(2,("vnn %u dmaster request on %08x for %u from %u\n", 
320                  ctdb->vnn, ctdb_hash(&key), c->dmaster, c->hdr.srcnode));
321
322         /* its a protocol error if the sending node is not the current dmaster */
323         if (header.dmaster != hdr->srcnode) {
324                 DEBUG(0,("vnn %u dmaster request non-master %u dmaster=%u key %08x dbid 0x%08x gen=%u curgen=%u\n",
325                          ctdb->vnn, hdr->srcnode, header.dmaster, ctdb_hash(&key),
326                          ctdb_db->db_id, hdr->generation, ctdb->vnn_map->generation));
327                 ctdb_fatal(ctdb, "ctdb_req_dmaster from non-master");
328                 return;
329         }
330
331         /* use the rsn from the sending node */
332         header.rsn = c->rsn;
333
334         /* check if the new dmaster is the lmaster, in which case we
335            skip the dmaster reply */
336         if (c->dmaster == ctdb->vnn) {
337                 ctdb_become_dmaster(ctdb_db, hdr->reqid, key, data, c->rsn);
338         } else {
339                 ctdb_send_dmaster_reply(ctdb_db, &header, key, data, c->dmaster, hdr->reqid);
340                 ctdb_ltdb_unlock(ctdb_db, key);
341         }
342 }
343
344
345 /*
346   called when a CTDB_REQ_CALL packet comes in
347 */
348 void ctdb_request_call(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
349 {
350         struct ctdb_req_call *c = (struct ctdb_req_call *)hdr;
351         TDB_DATA data;
352         struct ctdb_reply_call *r;
353         int ret, len;
354         struct ctdb_ltdb_header header;
355         struct ctdb_call call;
356         struct ctdb_db_context *ctdb_db;
357
358         ctdb_db = find_ctdb_db(ctdb, c->db_id);
359         if (!ctdb_db) {
360                 ctdb_send_error(ctdb, hdr, -1,
361                                 "Unknown database in request. db_id==0x%08x",
362                                 c->db_id);
363                 return;
364         }
365
366         call.call_id  = c->callid;
367         call.key.dptr = c->data;
368         call.key.dsize = c->keylen;
369         call.call_data.dptr = c->data + c->keylen;
370         call.call_data.dsize = c->calldatalen;
371
372         /* determine if we are the dmaster for this key. This also
373            fetches the record data (if any), thus avoiding a 2nd fetch of the data 
374            if the call will be answered locally */
375
376         ret = ctdb_ltdb_lock_fetch_requeue(ctdb_db, call.key, &header, hdr, &data,
377                                            ctdb_call_input_pkt, ctdb, False);
378         if (ret == -1) {
379                 ctdb_send_error(ctdb, hdr, ret, "ltdb fetch failed in ctdb_request_call");
380                 return;
381         }
382         if (ret == -2) {
383                 DEBUG(2,(__location__ " deferred ctdb_request_call\n"));
384                 return;
385         }
386
387         /* if we are not the dmaster, then send a redirect to the
388            requesting node */
389         if (header.dmaster != ctdb->vnn) {
390                 talloc_free(data.dptr);
391                 ctdb_call_send_redirect(ctdb, call.key, c, &header);
392                 ctdb_ltdb_unlock(ctdb_db, call.key);
393                 return;
394         }
395
396         if (c->hopcount > ctdb->statistics.max_hop_count) {
397                 ctdb->statistics.max_hop_count = c->hopcount;
398         }
399
400         /* if this nodes has done enough consecutive calls on the same record
401            then give them the record
402            or if the node requested an immediate migration
403         */
404         if ( c->hdr.srcnode != ctdb->vnn &&
405              ((header.laccessor == c->hdr.srcnode
406                && header.lacount >= ctdb->tunable.max_lacount)
407               || (c->flags & CTDB_IMMEDIATE_MIGRATION)) ) {
408                 DEBUG(2,("vnn %u starting migration of %08x to %u\n", 
409                          ctdb->vnn, ctdb_hash(&call.key), c->hdr.srcnode));
410                 ctdb_call_send_dmaster(ctdb_db, c, &header, &call.key, &data);
411                 talloc_free(data.dptr);
412                 ctdb_ltdb_unlock(ctdb_db, call.key);
413                 return;
414         }
415
416         ctdb_call_local(ctdb_db, &call, &header, hdr, &data, c->hdr.srcnode);
417
418         ctdb_ltdb_unlock(ctdb_db, call.key);
419
420         len = offsetof(struct ctdb_reply_call, data) + call.reply_data.dsize;
421         r = ctdb_transport_allocate(ctdb, ctdb, CTDB_REPLY_CALL, len, 
422                                     struct ctdb_reply_call);
423         CTDB_NO_MEMORY_FATAL(ctdb, r);
424         r->hdr.destnode  = hdr->srcnode;
425         r->hdr.reqid     = hdr->reqid;
426         r->status        = call.status;
427         r->datalen       = call.reply_data.dsize;
428         if (call.reply_data.dsize) {
429                 memcpy(&r->data[0], call.reply_data.dptr, call.reply_data.dsize);
430         }
431
432         ctdb_queue_packet(ctdb, &r->hdr);
433
434         talloc_free(r);
435 }
436
437 /*
438   called when a CTDB_REPLY_CALL packet comes in
439
440   This packet comes in response to a CTDB_REQ_CALL request packet. It
441   contains any reply data from the call
442 */
443 void ctdb_reply_call(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
444 {
445         struct ctdb_reply_call *c = (struct ctdb_reply_call *)hdr;
446         struct ctdb_call_state *state;
447
448         state = ctdb_reqid_find(ctdb, hdr->reqid, struct ctdb_call_state);
449         if (state == NULL) {
450                 DEBUG(0, (__location__ " reqid %u not found\n", hdr->reqid));
451                 return;
452         }
453
454         if (hdr->reqid != state->reqid) {
455                 /* we found a record  but it was the wrong one */
456                 DEBUG(0, ("Dropped orphaned call reply with reqid:%u\n",hdr->reqid));
457                 return;
458         }
459
460         state->call.reply_data.dptr = c->data;
461         state->call.reply_data.dsize = c->datalen;
462         state->call.status = c->status;
463
464         talloc_steal(state, c);
465
466         state->state = CTDB_CALL_DONE;
467         if (state->async.fn) {
468                 state->async.fn(state);
469         }
470 }
471
472
473 /*
474   called when a CTDB_REPLY_DMASTER packet comes in
475
476   This packet comes in from the lmaster response to a CTDB_REQ_CALL
477   request packet. It means that the current dmaster wants to give us
478   the dmaster role
479 */
480 void ctdb_reply_dmaster(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
481 {
482         struct ctdb_reply_dmaster *c = (struct ctdb_reply_dmaster *)hdr;
483         struct ctdb_db_context *ctdb_db;
484         TDB_DATA key, data;
485         int ret;
486
487         ctdb_db = find_ctdb_db(ctdb, c->db_id);
488         if (ctdb_db == NULL) {
489                 DEBUG(0,("Unknown db_id 0x%x in ctdb_reply_dmaster\n", c->db_id));
490                 return;
491         }
492         
493         key.dptr = c->data;
494         key.dsize = c->keylen;
495         data.dptr = &c->data[key.dsize];
496         data.dsize = c->datalen;
497
498         ret = ctdb_ltdb_lock_requeue(ctdb_db, key, hdr,
499                                      ctdb_call_input_pkt, ctdb, False);
500         if (ret == -2) {
501                 return;
502         }
503         if (ret != 0) {
504                 DEBUG(0,(__location__ " Failed to get lock in ctdb_reply_dmaster\n"));
505                 return;
506         }
507
508         ctdb_become_dmaster(ctdb_db, hdr->reqid, key, data, c->rsn);
509 }
510
511
512 /*
513   called when a CTDB_REPLY_ERROR packet comes in
514 */
515 void ctdb_reply_error(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
516 {
517         struct ctdb_reply_error *c = (struct ctdb_reply_error *)hdr;
518         struct ctdb_call_state *state;
519
520         state = ctdb_reqid_find(ctdb, hdr->reqid, struct ctdb_call_state);
521         if (state == NULL) {
522                 DEBUG(0,("vnn %u Invalid reqid %u in ctdb_reply_error\n",
523                          ctdb->vnn, hdr->reqid));
524                 return;
525         }
526
527         if (hdr->reqid != state->reqid) {
528                 /* we found a record  but it was the wrong one */
529                 DEBUG(0, ("Dropped orphaned error reply with reqid:%u\n",hdr->reqid));
530                 return;
531         }
532
533         talloc_steal(state, c);
534
535         state->state  = CTDB_CALL_ERROR;
536         state->errmsg = (char *)c->msg;
537         if (state->async.fn) {
538                 state->async.fn(state);
539         }
540 }
541
542
543 /*
544   destroy a ctdb_call
545 */
546 static int ctdb_call_destructor(struct ctdb_call_state *state)
547 {
548         DLIST_REMOVE(state->ctdb_db->ctdb->pending_calls, state);
549         ctdb_reqid_remove(state->ctdb_db->ctdb, state->reqid);
550         return 0;
551 }
552
553
554 /*
555   called when a ctdb_call needs to be resent after a reconfigure event
556 */
557 static void ctdb_call_resend(struct ctdb_call_state *state)
558 {
559         struct ctdb_context *ctdb = state->ctdb_db->ctdb;
560
561         state->generation = ctdb->vnn_map->generation;
562
563         /* use a new reqid, in case the old reply does eventually come in */
564         ctdb_reqid_remove(ctdb, state->reqid);
565         state->reqid = ctdb_reqid_new(ctdb, state);
566         state->c->hdr.reqid = state->reqid;
567
568         /* update the generation count for this request, so its valid with the new vnn_map */
569         state->c->hdr.generation = state->generation;
570
571         /* send the packet to ourselves, it will be redirected appropriately */
572         state->c->hdr.destnode = ctdb->vnn;
573
574         ctdb_queue_packet(ctdb, &state->c->hdr);
575         DEBUG(0,("resent ctdb_call\n"));
576 }
577
578 /*
579   resend all pending calls on recovery
580  */
581 void ctdb_call_resend_all(struct ctdb_context *ctdb)
582 {
583         struct ctdb_call_state *state, *next;
584         for (state=ctdb->pending_calls;state;state=next) {
585                 next = state->next;
586                 ctdb_call_resend(state);
587         }
588 }
589
590 /*
591   this allows the caller to setup a async.fn 
592 */
593 static void call_local_trigger(struct event_context *ev, struct timed_event *te, 
594                        struct timeval t, void *private_data)
595 {
596         struct ctdb_call_state *state = talloc_get_type(private_data, struct ctdb_call_state);
597         if (state->async.fn) {
598                 state->async.fn(state);
599         }
600 }       
601
602
603 /*
604   construct an event driven local ctdb_call
605
606   this is used so that locally processed ctdb_call requests are processed
607   in an event driven manner
608 */
609 struct ctdb_call_state *ctdb_call_local_send(struct ctdb_db_context *ctdb_db, 
610                                              struct ctdb_call *call,
611                                              struct ctdb_ltdb_header *header,
612                                              TDB_DATA *data)
613 {
614         struct ctdb_call_state *state;
615         struct ctdb_context *ctdb = ctdb_db->ctdb;
616         int ret;
617
618         state = talloc_zero(ctdb_db, struct ctdb_call_state);
619         CTDB_NO_MEMORY_NULL(ctdb, state);
620
621         talloc_steal(state, data->dptr);
622
623         state->state = CTDB_CALL_DONE;
624         state->call = *call;
625         state->ctdb_db = ctdb_db;
626
627         ret = ctdb_call_local(ctdb_db, &state->call, header, state, data, ctdb->vnn);
628
629         event_add_timed(ctdb->ev, state, timeval_zero(), call_local_trigger, state);
630
631         return state;
632 }
633
634
635 /*
636   make a remote ctdb call - async send. Called in daemon context.
637
638   This constructs a ctdb_call request and queues it for processing. 
639   This call never blocks.
640 */
641 struct ctdb_call_state *ctdb_daemon_call_send_remote(struct ctdb_db_context *ctdb_db, 
642                                                      struct ctdb_call *call, 
643                                                      struct ctdb_ltdb_header *header)
644 {
645         uint32_t len;
646         struct ctdb_call_state *state;
647         struct ctdb_context *ctdb = ctdb_db->ctdb;
648
649         state = talloc_zero(ctdb_db, struct ctdb_call_state);
650         CTDB_NO_MEMORY_NULL(ctdb, state);
651         state->reqid = ctdb_reqid_new(ctdb, state);
652         state->ctdb_db = ctdb_db;
653         talloc_set_destructor(state, ctdb_call_destructor);
654
655         len = offsetof(struct ctdb_req_call, data) + call->key.dsize + call->call_data.dsize;
656         state->c = ctdb_transport_allocate(ctdb, state, CTDB_REQ_CALL, len, 
657                                            struct ctdb_req_call);
658         CTDB_NO_MEMORY_NULL(ctdb, state->c);
659         state->c->hdr.destnode  = header->dmaster;
660
661         /* this limits us to 16k outstanding messages - not unreasonable */
662         state->c->hdr.reqid     = state->reqid;
663         state->c->flags         = call->flags;
664         state->c->db_id         = ctdb_db->db_id;
665         state->c->callid        = call->call_id;
666         state->c->hopcount      = 0;
667         state->c->keylen        = call->key.dsize;
668         state->c->calldatalen   = call->call_data.dsize;
669         memcpy(&state->c->data[0], call->key.dptr, call->key.dsize);
670         memcpy(&state->c->data[call->key.dsize], 
671                call->call_data.dptr, call->call_data.dsize);
672         state->call                = *call;
673         state->call.call_data.dptr = &state->c->data[call->key.dsize];
674         state->call.key.dptr       = &state->c->data[0];
675
676         state->state  = CTDB_CALL_WAIT;
677         state->generation = ctdb->vnn_map->generation;
678
679         DLIST_ADD(ctdb->pending_calls, state);
680
681         ctdb_queue_packet(ctdb, &state->c->hdr);
682
683         return state;
684 }
685
686 /*
687   make a remote ctdb call - async recv - called in daemon context
688
689   This is called when the program wants to wait for a ctdb_call to complete and get the 
690   results. This call will block unless the call has already completed.
691 */
692 int ctdb_daemon_call_recv(struct ctdb_call_state *state, struct ctdb_call *call)
693 {
694         while (state->state < CTDB_CALL_DONE) {
695                 event_loop_once(state->ctdb_db->ctdb->ev);
696         }
697         if (state->state != CTDB_CALL_DONE) {
698                 ctdb_set_error(state->ctdb_db->ctdb, "%s", state->errmsg);
699                 talloc_free(state);
700                 return -1;
701         }
702
703         if (state->call.reply_data.dsize) {
704                 call->reply_data.dptr = talloc_memdup(state->ctdb_db->ctdb,
705                                                       state->call.reply_data.dptr,
706                                                       state->call.reply_data.dsize);
707                 call->reply_data.dsize = state->call.reply_data.dsize;
708         } else {
709                 call->reply_data.dptr = NULL;
710                 call->reply_data.dsize = 0;
711         }
712         call->status = state->call.status;
713         talloc_free(state);
714         return 0;
715 }
716
717
718 /* 
719    send a keepalive packet to the other node
720 */
721 void ctdb_send_keepalive(struct ctdb_context *ctdb, uint32_t destnode)
722 {
723         struct ctdb_req_keepalive *r;
724         
725         r = ctdb_transport_allocate(ctdb, ctdb, CTDB_REQ_KEEPALIVE,
726                                     sizeof(struct ctdb_req_keepalive), 
727                                     struct ctdb_req_keepalive);
728         CTDB_NO_MEMORY_FATAL(ctdb, r);
729         r->hdr.destnode  = destnode;
730         r->hdr.reqid     = 0;
731         
732         ctdb->statistics.keepalive_packets_sent++;
733
734         ctdb_queue_packet(ctdb, &r->hdr);
735
736         talloc_free(r);
737 }