aboutsummaryrefslogtreecommitdiffstats
path: root/echld/parent.c
blob: 468291ec6067367fe0dbe47cb810c7b7a1af8137 (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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
/* parent.c
 *  epan working child API internals
 *  Parent process routines and definitions
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * Copyright (c) 2013 by Luis Ontanon <luis@ontanon.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "config.h"

#include "echld-int.h"

/**
 PARENT and API
 **/

#define MAX_PENDING_REQS 16;

typedef struct _req {
	int reqh_id;
	echld_msg_cb_t cb;
	void* cb_data;
	struct timeval tv;
} reqh_t;

typedef struct _hdlr {
	int id;
	echld_msg_type_t type;
	echld_msg_cb_t cb;
	void* cb_data;
} hdlr_t;

typedef struct _echld_child {
	int chld_id;
	void* data;
	echld_new_cb_t cb;
	child_state_t state;
	GArray* handlers;
	GArray* reqs;
} echld_t;

struct _echld_parent {
	echld_t* children;
	echld_reader_t reader;
	int dispatcher_fd;
	int dispatcher_pid;
	int reqh_id;
	GByteArray* snd;
	int closing;
	echld_parent_encoder_t* enc;
	parent_decoder_t* dec;
} parent  = {NULL,{NULL,0,NULL,-1,NULL,0},-1,-1,1,NULL,0,NULL,NULL};


static int reqh_ids = 1;


#ifdef DEBUG_PARENT

static int dbg_level = DEBUG_PARENT;

static void parent_dbg(int level, const char* fmt, ...) {
	va_list ap;
	char str[1024];

	if (level > dbg_level) return;

	va_start(ap,fmt);
	g_vsnprintf(str,1024,fmt,ap);
	va_end(ap);

	fprintf(stderr,"ParentDebug: level=%d msg='%s'\n",level,str);
	fflush(stderr);
}

#define PARENT_DBG(attrs) parent_dbg attrs
#define PARENT_SEND(BYTEARR,CHILDNUM,TYPE,R_ID) do {  long st = echld_write_frame(parent.dispatcher_fd, BYTEARR, CHILDNUM, TYPE, R_ID, NULL); PARENT_DBG((1,"SEND type='%s' chld_id=%d reqh_id=%d err_msg='%s'",TY(TYPE),CHILDNUM,R_ID, ( st >= 8 ? "ok" : ((st<0)?g_strerror(errno):"?") )  )); } while(0)

#else
#define PARENT_DBG(attrs)
#define PARENT_SEND(BYTEARR,CHILDNUM,TYPE,R_ID) echld_write_frame(parent.dispatcher_fd, BYTEARR, CHILDNUM, TYPE, R_ID, NULL)
#endif

extern void echld_set_parent_dbg_level(int lvl) {
	(dbg_level = lvl);
	if (lvl > 6) {
		echld_common_set_dbg(lvl,stderr,"parent");
	}
	PARENT_DBG((0,"Debug Level Set: %d",lvl));
}


#define PARENT_FATAL(attrs) parent_fatal attrs

static void parent_fatal(int exit_code, const char* fmt, ...) {
	va_list ap;
	char str[1024];

	va_start(ap,fmt);
	g_vsnprintf(str,1024,fmt,ap);
	va_end(ap);

#ifdef DEBUG_PARENT
	PARENT_DBG((0,"Fatal error: exit_code=%d str=%s",exit_code,str));
#else
	fprintf(stderr,"Fatal error: exit_code=%d str=%s",exit_code,str);
#endif

	kill(parent.dispatcher_pid,SIGTERM);
	exit(exit_code);
}

static void echld_cleanup(void) {
#if 0
	int i;
#endif

	PARENT_DBG((4,"echld_cleanup starting"));

#if 0
	for (i=0;i<ECHLD_MAX_CHILDREN;i++) {
		if ( parent.children[i].handlers ) g_array_free(parent.children[i].handlers,TRUE);
		if ( parent.children[i].reqs ) g_array_free(parent.children[i].reqs,TRUE);
	};

	g_free(parent.children);

	g_byte_array_free(parent.snd,TRUE);
#endif

	PARENT_DBG((3,"echld_cleanup done"));

}

static void parent_child_cleanup(echld_t* c) {

	PARENT_DBG((2,"cleanup chld_id=%d",c->chld_id));
	c->chld_id = -1;
	c->data = NULL;
	c->state = FREE;
	g_array_set_size(c->handlers,0);
	g_array_set_size(c->reqs,0);
}


void parent_reaper(int sig) {
	int pid;
	int status;

	if (sig == SIGCHLD) {
		PARENT_FATAL((3333,"Must be SIGCHLD!"));
	}

	pid =  waitpid(-1, &status, WNOHANG);
	PARENT_DBG((2,"SIGCHLD pid=%d",pid));

	if (pid == parent.dispatcher_pid) {

		if (! parent.closing) {
			/* crashed */
			sleep(120);
			PARENT_FATAL((DISPATCHER_DEAD,"Dispatcher process dead"));
		}

		return;
	} else {
		/* XXX: do we care? */
		return;
	}

	return;
}

static echld_bool_t hello_cb(echld_msg_type_t type, enc_msg_t* msg_buff, void* ud) {
	echld_init_t* init = (echld_init_t*)ud;
	char* err = NULL;
	int errnum = 0;

	if (init && init->dispatcher_hello_cb) {
		switch(type) {
			case ECHLD_ERROR:
				parent.dec->error(msg_buff, &errnum ,&err);
				break;
			case ECHLD_TIMED_OUT:
				err = g_strdup("timedout");
				break;
			default:
				err = g_strdup_printf("Wrong MSG 'HELLO' expected, got '%s",TY(type));
				break;
			case ECHLD_HELLO:
				break;
		}

		init->dispatcher_hello_cb(ud,err);
		if (err) g_free(err);
	}

	return TRUE;
}



/* will initialize epan registering protocols and taps */
void echld_initialize(echld_init_t* init) {
	int from_disp[2];
	int to_disp[2];
	PARENT_DBG((1,"Echld Starting"));

	if (!init) {
		PARENT_FATAL((NO_INITIALIZER,"Missing Initializer"));
	}

	if (init->encoding != ECHLD_ENCODING_JSON) {
		PARENT_FATAL((UNIMPLEMENTED,"Only JSON implemented"));
	}

	if ( pipe(to_disp) ) {
		PARENT_FATAL((DISPATCHER_PIPE_FAILED,"Failed to open pipe to dispatcher"));
	} else if( pipe(from_disp) )  {
		PARENT_FATAL((DISPATCHER_PIPE_FAILED,"Failed to open pipe from dispatcher"));
	} else {
		int pid;
		int i;

		PARENT_DBG((3,"Pipes Opened fr[0]=%d fr[1]=%d to[0]=%d to[1]=%d",from_disp[0],from_disp[1],to_disp[0],to_disp[1]));

		pid = fork();

		if ( pid < 0 ) {
			PARENT_FATAL((CANNOT_FORK,"Failed to fork() reason='%s'",g_strerror(errno)));
		} else if ( pid == 0) {
#ifdef PARENT_THREADS
			reader_realloc_buf =  child_realloc_buff;
#endif
			/* child code */
			echld_cleanup();

			if (init->after_fork_cb)
				init->after_fork_cb(init->after_fork_cb_data);

			echld_dispatcher_start(to_disp,from_disp,init->argv0,init->main);

			PARENT_FATAL((SHOULD_HAVE_EXITED_BEFORE,"This shouldn't happen"));
		} else {
			/* parent code */
	#ifdef PARENT_THREADS
			reader_realloc_buf =  parent_realloc_buff;
	#endif

			/* echld_common_set_dbg(9,stderr,"parent"); */

			PARENT_DBG((3,"Dispatcher forked"));

			echld_get_all_codecs(NULL, NULL, &parent.enc, &parent.dec);
			parent.children = g_new0(echld_t,ECHLD_MAX_CHILDREN);
			parent.snd = g_byte_array_new();
			parent.dispatcher_fd = to_disp[1];
			parent.dispatcher_pid = pid;

			echld_init_reader(&(parent.reader),from_disp[0],4096);


			for (i=0;i<ECHLD_MAX_CHILDREN;i++) {
				parent.children[i].chld_id = -1;
				parent.children[i].data = NULL;
				parent.children[i].state = FREE;
				parent.children[i].handlers = g_array_new(TRUE,TRUE,sizeof(hdlr_t));
				parent.children[i].reqs = g_array_new(TRUE,TRUE,sizeof(reqh_t));
			}

			parent.children[0].chld_id = 0;
			parent.children[0].state = IDLE;

			signal(SIGCHLD,parent_reaper);
#if 0
			close(to_disp[0]);
			close(from_disp[1]);
#endif
			if (init->dispatcher_hello_cb) echld_msgh(0, ECHLD_HELLO, hello_cb, init);

			PARENT_DBG((3,"Ready"));
		}
	}
}


extern echld_state_t echld_terminate(void) {

	parent.closing = TRUE;
	PARENT_SEND(NULL,0,ECHLD_CLOSE_CHILD,++reqh_ids);

	do {;} while(sleep(1)); /* wait a full sec without signals */

	echld_cleanup();
	close(parent.dispatcher_fd);
	kill(parent.dispatcher_pid,SIGTERM);
	return TRUE;
}




static echld_t* get_child(int id) {
	int i;
	for (i=0;i<ECHLD_MAX_CHILDREN;i++) {
		if (parent.children[i].chld_id == id) return &(parent.children[i]);
	};

	return NULL;
}


/* send a request */

int reqh_id_idx(echld_t* c, int reqh_id) {
	int i;
	int imax = c->reqs->len;
	reqh_t* rr = (reqh_t*)c->reqs->data;

	for(i=0; i < imax ; i++) {
		if (rr[i].reqh_id == reqh_id)
			return i;
	}

	return -1;
}


static echld_state_t reqh_snd(echld_t* c, echld_msg_type_t t, GByteArray* ba, echld_msg_cb_t resp_cb, void* cb_data) {
	int idx;
	reqh_t* r;
	int reqh_id = reqh_ids++;

	if (!c) {
		PARENT_DBG((1,"REQH_SND: No such child"));
		return 1;
	}

	idx = reqh_id_idx(c,-1);
	if (idx < 0) {
		reqh_t req;
		idx = c->reqs->len;
		g_array_append_val(c->reqs,req);
	}

	r = &(((reqh_t*)c->reqs->data)[idx]);

	r->reqh_id = reqh_id;
	r->cb = resp_cb;
	r->cb_data = cb_data;

	gettimeofday(&(r->tv),NULL);

	PARENT_DBG((4,"reqh_add: idx='%d'",idx));

	PARENT_DBG((3,"REQH_SND: type='%s' chld_id=%d reqh_id=%d",TY(t), c->chld_id,reqh_id));

	PARENT_SEND(ba,c->chld_id,t,reqh_id);

	if (ba) g_byte_array_free(ba,TRUE); /* do we? */

	return reqh_id;
}


extern echld_reqh_id_t echld_reqh(
		echld_chld_id_t child_id,
		echld_msg_type_t t,
		int usecs_timeout _U_,
		enc_msg_t* ba,
		echld_msg_cb_t resp_cb,
		void* cb_data) {
	return reqh_snd(get_child(child_id),t,ba,resp_cb,cb_data);
}

/* get callback data for a live request */
extern void* echld_reqh_get_data(int child_id, int reqh_id) {
	echld_t* c = get_child(child_id);
	int idx;

	if (!c) return NULL;

	idx = reqh_id_idx(c,reqh_id);

	if (idx >= 0)
		return g_array_index(c->reqs, reqh_t, idx).cb_data;
	else
		return NULL;
}

/* get the callback for a live request */
extern echld_msg_cb_t echld_reqh_get_cb(int child_id, int reqh_id) {
	echld_t* c = get_child(child_id);
	int idx;

	if (!c) return NULL;

	idx = reqh_id_idx(c,reqh_id);

	if (idx >= 0)
		return g_array_index(c->reqs, reqh_t, idx).cb;
	else
		return NULL;
}

/* set callback data for a live request */
extern gboolean echld_reqh_set_data(int child_id, int reqh_id, void* cb_data) {
	echld_t* c = get_child(child_id);
	int idx;

	if (!c) return FALSE;

	idx = reqh_id_idx(c,reqh_id);

	if (idx < 0) return FALSE;

	g_array_index(c->reqs, reqh_t, idx).cb_data = cb_data;

	return TRUE;
}

/* get the callback for a live request */
extern gboolean echld_reqh_set_cb(int child_id, int reqh_id, echld_msg_cb_t cb){
	echld_t* c = get_child(child_id);
	int idx;

	if (!c) return FALSE;

	idx = reqh_id_idx(c,reqh_id);

	if (idx < 0) return FALSE;

	g_array_index(c->reqs, reqh_t, idx).cb = cb;
	return TRUE;
}


/* stop receiving a live request */
extern gboolean echld_reqh_detach(int child_id, int reqh_id) {
	echld_t* c = get_child(child_id);
	int idx;

	if (!c) return FALSE;

	idx = reqh_id_idx(c,reqh_id);

	if (idx < 0) return FALSE;

	g_array_remove_index(c->reqs,idx);

	return TRUE;
}


static echld_bool_t parent_dead_child(echld_msg_type_t type, enc_msg_t* ba, void* data) {
	echld_t* c = (echld_t*)data;
	char* s;

	if (type !=  ECHLD_CHILD_DEAD) {
		PARENT_DBG((1, "Must Be ECHLD_CHILD_DEAD"));
		return 1;
	}

	if ( parent.dec->child_dead(ba,&s) ) {
		PARENT_DBG((1,"Dead Child[%d]: %s",c->chld_id,s));
		g_free(s);
	}

	parent_child_cleanup(c);
	return 0;
}

static echld_bool_t parent_get_hello(echld_msg_type_t type, enc_msg_t* ba, void* data) {
	echld_t* c = (echld_t*)data;
	int err_id;
	char* err = NULL;

	switch (type) {
		case  ECHLD_HELLO:
			PARENT_DBG((1,"Child[%d]: =>IDLE",c->chld_id));
			c->state = IDLE;
			break;
		case ECHLD_ERROR:
			parent.dec->error(ba,&err_id,&err);
			break;
		case ECHLD_TIMED_OUT:
			err = g_strdup("timedout");
			break;
		default:
			err = g_strdup_printf("Wrong MSG 'HELLO' expected, got '%s",TY(type));
			break;
	}

	if (c->cb)
		c->cb(c->data,err);

	if (err) g_free(err);

	return TRUE;
}





int chld_cmp(const void *a, const void *b) {
	return ((echld_t*)b)->chld_id - ((echld_t*)a)->chld_id;
}

static int msgh_attach(echld_t* c, echld_msg_type_t t, echld_msg_cb_t resp_cb, void* cb_data);

static int next_chld_id = 1;

extern int echld_new(enc_msg_t* new_child_em, echld_new_cb_t cb, void* child_data) {
	echld_t* c = get_child(-1);

	if (!c) return -1;

	c->chld_id = (next_chld_id++);
	c->data = child_data;
	c->state = CREATING;
	c->cb = cb;

	PARENT_DBG((1,"Child[%d]: =>CREATING",c->chld_id));

	msgh_attach(c,ECHLD_CHILD_DEAD, parent_dead_child , c);
    reqh_snd(c, ECHLD_NEW_CHILD, (GByteArray*)new_child_em, parent_get_hello, c);

	return c->chld_id;
}



/* XXX these fail silently */
extern void* echld_get_data(int child_id) {
	echld_t* c = get_child(child_id);
	return c ? c->data : NULL;
}

extern echld_state_t echld_set_data(echld_chld_id_t chld_id, void* data) {
	echld_t* c = get_child(chld_id);
	if (c) {
		c->data = data;
		return TRUE;
	}

	return FALSE;
}

static int msgh_idx(echld_t* c, int msgh_id) {
	int i  = 0;
	int imax = c->handlers->len;

	for (i=0;i<imax;i++) {
		if (((hdlr_t*)(c->handlers->data))[i].id == msgh_id) return i;
	}

	return -1;
}

/* start a message handler */
static int msgh_attach(echld_t* c, echld_msg_type_t t, echld_msg_cb_t resp_cb, void* cb_data) {
	hdlr_t h;
	static int msgh_id = 1;

	h.id = msgh_id++;
	h.type = t;
	h.cb = resp_cb;
	h.cb_data = cb_data;

	g_array_append_val(c->handlers,h);
	return 0;
}

extern int echld_msgh(int child_id, echld_msg_type_t t, echld_msg_cb_t resp_cb, void* cb_data) {
	echld_t* c = get_child(child_id);

	if (c) return msgh_attach(c,t,resp_cb,cb_data);
	else return -1;
}


/* stop it */
static echld_state_t msgh_detach(echld_t* c, int msgh_id) {
	int idx = msgh_idx(c,msgh_id);

	if (idx < 0) return -1;

	g_array_remove_index(c->handlers,idx);

	return 1;
}

extern echld_state_t echld_msgh_detach(int child_id, int msgh_id) {
	echld_t* c = get_child(child_id);
	return msgh_detach(c,msgh_id);
}

/* get a msgh's data */

static void* msgh_get_data(echld_t* c, int msgh_id) {
	int idx = msgh_idx(c,msgh_id);

	if (idx < 0) return NULL;

	return ((hdlr_t*)(c->handlers->data))[idx].cb_data;
}

extern void* echld_msgh_get_data(int child_id, int msgh_id) {
	echld_t* c = get_child(child_id);
	return msgh_get_data(c,msgh_id);
}

/* get a msgh's cb */
static echld_msg_cb_t msgh_get_cb(echld_t* c, int msgh_id) {
	int idx = msgh_idx(c,msgh_id);

	if (idx < 0) return NULL;

	return ((hdlr_t*)(c->handlers->data))[idx].cb;
}

extern echld_msg_cb_t echld_msgh_get_cb(int child_id, int msgh_id) {
	echld_t* c = get_child(child_id);
	return msgh_get_cb(c,msgh_id);
}

/* get a msgh's type */
static echld_msg_type_t msgh_get_type(echld_t* c, int msgh_id) {
	int idx = msgh_idx(c,msgh_id);

	if (idx < 0) return EC_ACTUAL_ERROR;

	return ((hdlr_t*)(c->handlers->data))[idx].type;
}

extern echld_msg_type_t echld_msgh_get_type(int child_id, int msgh_id) {
	echld_t* c = get_child(child_id);
	return c ? msgh_get_type(c,msgh_id) : EC_ACTUAL_ERROR;
}

/* get it all from a msgh */
static echld_state_t msgh_get_all(echld_t* c, int msgh_id, echld_msg_type_t* t, echld_msg_cb_t* cb, void** data) {
	int idx = msgh_idx(c,msgh_id);
	hdlr_t* h;

	if (idx < 0) return -1;

	h = &(((hdlr_t*)(c->handlers->data))[idx]);

	if (t) *t = h->type;
	if (cb) *cb = h->cb;
	if (data) *data = h->cb_data;

	return 0;
}

extern gboolean echld_msgh_get_all(int child_id, int msgh_id, echld_msg_type_t* t, echld_msg_cb_t* cb, void** data) {
	echld_t* c = get_child(child_id);
	return c && msgh_get_all(c,msgh_id,t,cb,data);
}

static echld_state_t msgh_set_all(echld_t* c, int msgh_id, echld_msg_type_t t, echld_msg_cb_t cb, void* data) {
	int idx = msgh_idx(c,msgh_id);
	hdlr_t* h;

	if (idx < 0) return -1;

	h = &(((hdlr_t*)(c->handlers->data))[idx]);

	h->type = t;
	h->cb = cb;
	h->cb_data = data;

	return 0;
}

extern gboolean echld_msgh_set_all(int child_id, int msgh_id, echld_msg_type_t t, echld_msg_cb_t cb, void* data) {
	echld_t* c = get_child(child_id);
	return c ? msgh_set_all(c,msgh_id,t,cb,data) : FALSE;
}

/* set a msgh's data */
static gboolean msgh_set_data(echld_t* c, int msgh_id, void* data) {
	int idx = msgh_idx(c,msgh_id);

	if (idx < 0) return FALSE;

	((hdlr_t*)(c->handlers->data))[idx].cb_data = data;

	return TRUE;

}

extern gboolean echld_msgh_set_data(int child_id, int msgh_id, void* data){
	echld_t* c = get_child(child_id);
	return c ? msgh_set_data(c,msgh_id,data) : FALSE;
}

/* set a msgh's cb */
extern gboolean msgh_set_cb(echld_t* c, int msgh_id, echld_msg_cb_t cb) {
	int idx = msgh_idx(c,msgh_id);

	if (idx < 0) return FALSE;

	((hdlr_t*)(c->handlers->data))[idx].cb = cb;

	return TRUE;
}

extern gboolean echld_msgh_set_cb(int child_id, int msgh_id, echld_msg_cb_t cb) {
	echld_t* c = get_child(child_id);
	return c ? msgh_set_cb(c,msgh_id,cb) : FALSE;
}

/* set a msgh's type */

static gboolean msgh_set_type(echld_t* c, int msgh_id, echld_msg_type_t t) {
	int idx = msgh_idx(c,msgh_id);

	if (idx < 0) return FALSE;

	((hdlr_t*)(c->handlers->data))[idx].type = t;

	return TRUE;
}

extern gboolean echld_msgh_set_type(int child_id, int msgh_id, echld_msg_type_t t) {
	echld_t* c = get_child(child_id);
	return c ? msgh_set_type(c,msgh_id,t) : FALSE;
}


/* call cb(id,child_data,cb_data) for each child*/
extern void echld_foreach_child(echld_iter_cb_t cb, void* cb_data) {
	int i;
	for(i=0;i<ECHLD_MAX_CHILDREN;i++) {
		echld_t* c = &(parent.children[i]);
		cb(c->chld_id,c->data,cb_data);
	}
}

static reqh_t* get_req(echld_t* c, int reqh_id) {
	int idx = reqh_id_idx(c,reqh_id);
	if(idx < 0) return NULL;

	return ((reqh_t*)(c->reqs->data))+idx;
}

static hdlr_t* get_next_hdlr_for_type(echld_t* c, echld_msg_type_t t, int* cookie) {
	int imax = c->handlers->len;
	hdlr_t* r = NULL;

	for (;(*cookie)<imax;(*cookie)++) {
		if (((hdlr_t*)(c->handlers->data))[*cookie].type == t) {
			r =  &( ((hdlr_t*)(c->handlers->data))[*cookie] );
			(*cookie)++;
			break;
		}
	}

	return r;
}

static long parent_read_frame(guint8* b, size_t len, echld_chld_id_t chld_id, echld_msg_type_t t, echld_reqh_id_t reqh_id, void* data _U_) {
	echld_t* c = get_child(chld_id);
	GByteArray* ba = g_byte_array_new();

	PARENT_DBG((1,"MSG_IN<- ch=%d t='%s' rh=%d",chld_id,TY(t),reqh_id));
	g_byte_array_append(ba,b, (guint)len);

	if (c) {
		reqh_t* r = get_req(c, reqh_id);
		int i;
		hdlr_t* h;
		gboolean go_ahead = TRUE;

		if (r) { /* got that reqh_id */
			if (r->cb)  {
				go_ahead = r->cb(t,ba,r->cb_data);
			}

			r->reqh_id = -1;
			r->cb = NULL;
			r->cb_data = 0;
			r->tv.tv_sec = 0;
			r->tv.tv_usec = 0;

			PARENT_DBG((2,"handled by reqh_id=%d msg='%s'",reqh_id,go_ahead?"retrying":"done"));
		}

		i=0;
		while(go_ahead && ( h = get_next_hdlr_for_type(c,t,&i))) {
				if (h->cb)
					go_ahead = h->cb(t,ba,h->cb_data);

				PARENT_DBG((2,"handled by t='%s' msgh_id=%d msg='%s'",TY(h->type), h->id,go_ahead?"retrying":"done"));
		}
	} else {
		PARENT_DBG((1,"parent_read_frame: No such child"));
	}

	g_byte_array_free(ba,TRUE);
	return 1;
}

extern int echld_fdset(fd_set* rfds, fd_set* efds) {
	FD_SET(parent.reader.fd, rfds);
	FD_SET(parent.reader.fd, efds);
	FD_SET(parent.dispatcher_fd, efds);
	return 2;
}

extern int echld_fd_read(fd_set* rfds, fd_set* efds) {
	int r_nfds=0;
	if (FD_ISSET(parent.reader.fd,efds) || FD_ISSET(parent.dispatcher_fd,efds) ) {
		/* Handle errored dispatcher */
		PARENT_DBG((1,"parent errored"));
		return -1;
	}

	if (FD_ISSET(parent.reader.fd,rfds)) {
		PARENT_DBG((3,"reading from dispatcher"));
		echld_read_frame(&(parent.reader),parent_read_frame,&(parent));
	}

	return r_nfds;
}

extern int echld_select(int nfds _U_, fd_set* rfds, fd_set* wfds, fd_set* efds, struct timeval* timeout) {
	fd_set my_rfds, my_wfds, my_efds;
	int r_nfds;


	if (rfds == NULL) { rfds = &my_rfds; FD_ZERO(rfds); }
	if (wfds == NULL) { wfds = &my_wfds; FD_ZERO(wfds); }
	if (efds == NULL) { efds = &my_efds; FD_ZERO(efds); }

	echld_fdset(rfds,efds);

	PARENT_DBG((5,"Select()"));
	r_nfds = select(FD_SETSIZE, rfds, wfds, efds, timeout);

	echld_fd_read(rfds,efds);

	return r_nfds ;
}

extern echld_state_t echld_wait(struct timeval* timeout) {
	if ( echld_select(0, NULL, NULL, NULL, timeout) < 0) {
		return -1;
	} else {
		return ECHLD_OK;
	}
}

enc_msg_t* echld_new_child_params(void) {
	return (enc_msg_t*)g_byte_array_new();
}

enc_msg_t* echld_new_child_params_merge(enc_msg_t* em1, enc_msg_t* em2) {
	GByteArray* ba = g_byte_array_new();
	GByteArray* b1 = (GByteArray*)em1;
	GByteArray* b2 = (GByteArray*)em2;

	g_byte_array_append(ba,b1->data,b1->len);
	g_byte_array_append(ba,b2->data,b2->len);

	return (enc_msg_t*)ba;
}

char* echld_new_child_params_str(enc_msg_t* em, const char* prefix, const char* postfix, int trunc_n, const char* fmt) {
	GByteArray* ba = (GByteArray*)em;
	GString* str = g_string_new(prefix);
	char* p = (char*) ba->data;
	int tot_len = ba->len;
	long rem = tot_len;
	p[rem-1] = '\0'; /* make sure last char is null */

	while(rem > 2) {
		char* param = p;
		long param_len = strlen(param)+1;
		char* value = p + param_len;
		long value_len;

		rem -= param_len;

		if (rem < 0) {
			g_string_free(str,TRUE);
			return NULL;
		}

		value_len = strlen(value)+1;

		rem -= value_len;
		p = value + value_len;

		if (rem < 0) {
			g_string_free(str,TRUE);
			return NULL;
		}

		g_string_append_printf(str,fmt,param,value);
	}
	g_string_truncate(str, str->len - trunc_n);
	g_string_append(str,postfix);
	return g_string_free(str,FALSE);
}

void echld_new_child_params_add_params(enc_msg_t* em, ...) {
	GByteArray* ba = (GByteArray*) em;
	va_list ap;

	va_start(ap,em);
	do {
		char* param_str = va_arg(ap, char*);

		if (param_str) {
			char* val_str = va_arg(ap, char*);

			g_byte_array_append(ba, (guint8*) param_str, (guint)strlen(param_str)+1);
			g_byte_array_append(ba, (guint8*) val_str, (guint)strlen(val_str)+1);
			continue;
		}

		break;
	} while(1);
	va_end(ap);

}