-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
ipc.c
636 lines (598 loc) · 17.2 KB
/
ipc.c
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
/*
* ipc.c - Interprocess communication routines. Handlers read and write.
*
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved.
*
* See LICENSE for the license.
*
*/
#include "config.h"
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include "ipc.h"
#include "buffer.h"
#include "xfrd-tcp.h"
#include "nsd.h"
#include "namedb.h"
#include "xfrd.h"
#include "xfrd-notify.h"
#include "difffile.h"
#include "rrl.h"
/* attempt to send NSD_STATS command to child fd */
static void send_stat_to_child(struct main_ipc_handler_data* data, int fd);
/* send reload request over the IPC channel */
static void xfrd_send_reload_req(xfrd_state_type* xfrd);
/* send quit request over the IPC channel */
static void xfrd_send_quit_req(xfrd_state_type* xfrd);
/* perform read part of handle ipc for xfrd */
static void xfrd_handle_ipc_read(struct event* handler, xfrd_state_type* xfrd);
static void ipc_child_quit(struct nsd* nsd) ATTR_NORETURN;
static void
ipc_child_quit(struct nsd* nsd)
{
/* call shutdown and quit routines */
nsd->mode = NSD_QUIT;
service_remaining_tcp(nsd);
#ifdef BIND8_STATS
bind8_stats(nsd);
#endif /* BIND8_STATS */
#ifdef MEMCLEAN /* OS collects memory pages */
#ifdef RATELIMIT
rrl_deinit(nsd->this_child->child_num);
#endif
event_base_free(nsd->event_base);
region_destroy(nsd->server_region);
#endif
server_shutdown(nsd);
/* ENOTREACH */
exit(0);
}
void
child_handle_parent_command(int fd, short event, void* arg)
{
sig_atomic_t mode;
int len;
struct ipc_handler_conn_data *data =
(struct ipc_handler_conn_data *) arg;
if (!(event & EV_READ)) {
return;
}
if ((len = read(fd, &mode, sizeof(mode))) == -1) {
log_msg(LOG_ERR, "handle_parent_command: read: %s",
strerror(errno));
return;
}
if (len == 0)
{
/* parent closed the connection. Quit */
ipc_child_quit(data->nsd);
return;
}
switch (mode) {
case NSD_STATS:
data->nsd->mode = mode;
break;
case NSD_QUIT:
ipc_child_quit(data->nsd);
break;
case NSD_QUIT_CHILD:
/* close our listening sockets and ack */
server_close_all_sockets(data->nsd->udp, data->nsd->ifs);
server_close_all_sockets(data->nsd->tcp, data->nsd->ifs);
/* mode == NSD_QUIT_CHILD */
if(write(fd, &mode, sizeof(mode)) == -1) {
VERBOSITY(3, (LOG_INFO, "quit child write: %s",
strerror(errno)));
}
ipc_child_quit(data->nsd);
break;
default:
log_msg(LOG_ERR, "handle_parent_command: bad mode %d",
(int) mode);
break;
}
}
void
parent_handle_xfrd_command(netio_type *ATTR_UNUSED(netio),
netio_handler_type *handler,
netio_event_types_type event_types)
{
sig_atomic_t mode;
int len;
struct ipc_handler_conn_data *data =
(struct ipc_handler_conn_data *) handler->user_data;
if (!(event_types & NETIO_EVENT_READ)) {
return;
}
if ((len = read(handler->fd, &mode, sizeof(mode))) == -1) {
log_msg(LOG_ERR, "handle_xfrd_command: read: %s",
strerror(errno));
return;
}
if (len == 0)
{
/* xfrd closed, we must quit */
DEBUG(DEBUG_IPC,1, (LOG_INFO, "handle_xfrd_command: xfrd closed channel."));
close(handler->fd);
handler->fd = -1;
data->nsd->mode = NSD_SHUTDOWN;
return;
}
switch (mode) {
case NSD_RELOAD:
DEBUG(DEBUG_IPC,1, (LOG_INFO, "parent handle xfrd command RELOAD"));
data->nsd->signal_hint_reload = 1;
break;
case NSD_QUIT:
case NSD_SHUTDOWN:
data->nsd->mode = mode;
break;
case NSD_STATS:
data->nsd->signal_hint_stats = 1;
break;
case NSD_REAP_CHILDREN:
data->nsd->signal_hint_child = 1;
break;
default:
log_msg(LOG_ERR, "handle_xfrd_command: bad mode %d",
(int) mode);
break;
}
}
static void
send_stat_to_child(struct main_ipc_handler_data* data, int fd)
{
sig_atomic_t cmd = NSD_STATS;
if(write(fd, &cmd, sizeof(cmd)) == -1) {
if(errno == EAGAIN || errno == EINTR)
return; /* try again later */
log_msg(LOG_ERR, "svrmain: problems sending stats to child %d command: %s",
(int)data->child->pid, strerror(errno));
return;
}
data->child->need_to_send_STATS = 0;
}
static void
send_quit_to_child(struct main_ipc_handler_data* data, int fd)
{
sig_atomic_t cmd = NSD_QUIT;
if(write(fd, &cmd, sizeof(cmd)) == -1) {
if(errno == EAGAIN || errno == EINTR)
return; /* try again later */
log_msg(LOG_ERR, "svrmain: problems sending quit to child %d command: %s",
(int)data->child->pid, strerror(errno));
return;
}
data->child->need_to_send_QUIT = 0;
DEBUG(DEBUG_IPC,2, (LOG_INFO, "main: sent quit to child %d",
(int)data->child->pid));
}
/** the child is done, mark it as exited */
static void
child_is_done(struct nsd* nsd, int fd)
{
size_t i;
if(fd != -1) close(fd);
for(i=0; i<nsd->child_count; ++i)
if(nsd->children[i].child_fd == fd) {
nsd->children[i].child_fd = -1;
nsd->children[i].handler->fd = -1;
if(nsd->children[i].need_to_exit) {
DEBUG(DEBUG_IPC,1, (LOG_INFO, "server %d is done",
(int)nsd->children[i].pid));
nsd->children[i].has_exited = 1;
} else {
log_msg(LOG_WARNING,
"server %d died unexpectedly, restarting",
(int)nsd->children[i].pid);
/* this child is now going to be re-forked as
* a subprocess of this server-main, and if a
* reload is in progress the other children
* are subprocesses of reload. Until the
* reload is done and they are all reforked. */
nsd->children[i].pid = -1;
nsd->restart_children = 1;
}
}
parent_check_all_children_exited(nsd);
}
#ifdef BIND8_STATS
/** add stats to total */
void
stats_add(struct nsdst* total, struct nsdst* s)
{
unsigned i;
for(i=0; i<sizeof(total->qtype)/sizeof(stc_type); i++)
total->qtype[i] += s->qtype[i];
for(i=0; i<sizeof(total->qclass)/sizeof(stc_type); i++)
total->qclass[i] += s->qclass[i];
total->qudp += s->qudp;
total->qudp6 += s->qudp6;
total->ctcp += s->ctcp;
total->ctcp6 += s->ctcp6;
total->ctls += s->ctls;
total->ctls6 += s->ctls6;
for(i=0; i<sizeof(total->rcode)/sizeof(stc_type); i++)
total->rcode[i] += s->rcode[i];
for(i=0; i<sizeof(total->opcode)/sizeof(stc_type); i++)
total->opcode[i] += s->opcode[i];
total->dropped += s->dropped;
total->truncated += s->truncated;
total->wrongzone += s->wrongzone;
total->txerr += s->txerr;
total->rxerr += s->rxerr;
total->edns += s->edns;
total->ednserr += s->ednserr;
total->raxfr += s->raxfr;
total->nona += s->nona;
total->rixfr += s->rixfr;
total->db_disk = s->db_disk;
total->db_mem = s->db_mem;
}
/** subtract stats from total */
void
stats_subtract(struct nsdst* total, struct nsdst* s)
{
unsigned i;
for(i=0; i<sizeof(total->qtype)/sizeof(stc_type); i++)
total->qtype[i] -= s->qtype[i];
for(i=0; i<sizeof(total->qclass)/sizeof(stc_type); i++)
total->qclass[i] -= s->qclass[i];
total->qudp -= s->qudp;
total->qudp6 -= s->qudp6;
total->ctcp -= s->ctcp;
total->ctcp6 -= s->ctcp6;
total->ctls -= s->ctls;
total->ctls6 -= s->ctls6;
for(i=0; i<sizeof(total->rcode)/sizeof(stc_type); i++)
total->rcode[i] -= s->rcode[i];
for(i=0; i<sizeof(total->opcode)/sizeof(stc_type); i++)
total->opcode[i] -= s->opcode[i];
total->dropped -= s->dropped;
total->truncated -= s->truncated;
total->wrongzone -= s->wrongzone;
total->txerr -= s->txerr;
total->rxerr -= s->rxerr;
total->edns -= s->edns;
total->ednserr -= s->ednserr;
total->raxfr -= s->raxfr;
total->nona -= s->nona;
total->rixfr -= s->rixfr;
}
#endif /* BIND8_STATS */
void
parent_handle_child_command(netio_type *ATTR_UNUSED(netio),
netio_handler_type *handler,
netio_event_types_type event_types)
{
sig_atomic_t mode;
int len;
struct main_ipc_handler_data *data =
(struct main_ipc_handler_data*)handler->user_data;
/* do a nonblocking write to the child if it is ready. */
if (event_types & NETIO_EVENT_WRITE) {
if(data->child->need_to_send_STATS &&
!data->child->need_to_exit) {
send_stat_to_child(data, handler->fd);
} else if(data->child->need_to_send_QUIT) {
send_quit_to_child(data, handler->fd);
if(!data->child->need_to_send_QUIT)
handler->event_types = NETIO_EVENT_READ;
} else {
handler->event_types = NETIO_EVENT_READ;
}
}
if (!(event_types & NETIO_EVENT_READ)) {
return;
}
/* read command from ipc */
if ((len = read(handler->fd, &mode, sizeof(mode))) == -1) {
log_msg(LOG_ERR, "handle_child_command: read: %s",
strerror(errno));
return;
}
if (len == 0)
{
child_is_done(data->nsd, handler->fd);
return;
}
switch (mode) {
case NSD_QUIT:
data->nsd->mode = mode;
break;
case NSD_STATS:
data->nsd->signal_hint_stats = 1;
break;
case NSD_REAP_CHILDREN:
data->nsd->signal_hint_child = 1;
break;
default:
log_msg(LOG_ERR, "handle_child_command: bad mode %d",
(int) mode);
break;
}
}
void
parent_check_all_children_exited(struct nsd* nsd)
{
size_t i;
for(i=0; i < nsd->child_count; i++) {
if(!nsd->children[i].need_to_exit)
return;
if(!nsd->children[i].has_exited)
return;
}
nsd->mode = NSD_QUIT_SYNC;
DEBUG(DEBUG_IPC,2, (LOG_INFO, "main: all children exited. quit sync."));
}
void
parent_handle_reload_command(netio_type *ATTR_UNUSED(netio),
netio_handler_type *handler,
netio_event_types_type event_types)
{
sig_atomic_t mode;
int len;
size_t i;
struct nsd *nsd = (struct nsd*) handler->user_data;
if (!(event_types & NETIO_EVENT_READ)) {
return;
}
/* read command from ipc */
if ((len = read(handler->fd, &mode, sizeof(mode))) == -1) {
log_msg(LOG_ERR, "handle_reload_command: read: %s",
strerror(errno));
return;
}
if (len == 0)
{
assert(handler->fd != -1); /* or read() would have failed */
close(handler->fd);
handler->fd = -1;
log_msg(LOG_ERR, "handle_reload_cmd: reload closed cmd channel");
nsd->reload_failed = 1;
return;
}
switch (mode) {
case NSD_QUIT_SYNC:
/* set all children to exit, only then notify xfrd. */
/* so that buffered packets to pass to xfrd can arrive. */
for(i=0; i < nsd->child_count; i++) {
nsd->children[i].need_to_exit = 1;
if(nsd->children[i].pid > 0 &&
nsd->children[i].child_fd != -1) {
nsd->children[i].need_to_send_QUIT = 1;
nsd->children[i].handler->event_types
|= NETIO_EVENT_WRITE;
} else {
if(nsd->children[i].child_fd == -1)
nsd->children[i].has_exited = 1;
}
}
parent_check_all_children_exited(nsd);
break;
default:
log_msg(LOG_ERR, "handle_reload_command: bad mode %d",
(int) mode);
break;
}
}
static void
xfrd_send_reload_req(xfrd_state_type* xfrd)
{
sig_atomic_t req = NSD_RELOAD;
uint64_t p = xfrd->last_task->data;
udb_ptr_unlink(xfrd->last_task, xfrd->nsd->task[xfrd->nsd->mytask]);
task_process_sync(xfrd->nsd->task[xfrd->nsd->mytask]);
/* ask server_main for a reload */
if(write(xfrd->ipc_handler.ev_fd, &req, sizeof(req)) == -1) {
udb_ptr_init(xfrd->last_task, xfrd->nsd->task[xfrd->nsd->mytask]);
udb_ptr_set(xfrd->last_task, xfrd->nsd->task[xfrd->nsd->mytask], p);
if(errno == EAGAIN || errno == EINTR)
return; /* try again later */
log_msg(LOG_ERR, "xfrd: problems sending reload command: %s",
strerror(errno));
return;
}
DEBUG(DEBUG_IPC,1, (LOG_INFO, "xfrd: asked nsd to reload new updates"));
/* swapped task to other side, start to use other task udb. */
xfrd->nsd->mytask = 1 - xfrd->nsd->mytask;
task_remap(xfrd->nsd->task[xfrd->nsd->mytask]);
udb_ptr_init(xfrd->last_task, xfrd->nsd->task[xfrd->nsd->mytask]);
assert(udb_base_get_userdata(xfrd->nsd->task[xfrd->nsd->mytask])->data == 0);
if(!xfrd->reload_cmd_first_sent)
xfrd->reload_cmd_first_sent = xfrd_time();
xfrd->reload_cmd_last_sent = xfrd_time();
xfrd->need_to_send_reload = 0;
xfrd->can_send_reload = 0;
}
void
ipc_xfrd_set_listening(struct xfrd_state* xfrd, short mode)
{
int fd = xfrd->ipc_handler.ev_fd;
struct event_base* base = xfrd->event_base;
event_del(&xfrd->ipc_handler);
memset(&xfrd->ipc_handler, 0, sizeof(xfrd->ipc_handler));
event_set(&xfrd->ipc_handler, fd, mode, xfrd_handle_ipc, xfrd);
if(event_base_set(base, &xfrd->ipc_handler) != 0)
log_msg(LOG_ERR, "ipc: cannot set event_base");
/* no timeout for IPC events */
if(event_add(&xfrd->ipc_handler, NULL) != 0)
log_msg(LOG_ERR, "ipc: cannot add event");
xfrd->ipc_handler_flags = mode;
}
static void
xfrd_send_shutdown_req(xfrd_state_type* xfrd)
{
sig_atomic_t cmd = NSD_SHUTDOWN;
xfrd->ipc_send_blocked = 1;
ipc_xfrd_set_listening(xfrd, EV_PERSIST|EV_READ);
DEBUG(DEBUG_IPC,1, (LOG_INFO, "xfrd: ipc send shutdown"));
if(!write_socket(xfrd->ipc_handler.ev_fd, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "xfrd: error writing shutdown to main: %s",
strerror(errno));
}
xfrd->need_to_send_shutdown = 0;
}
static void
xfrd_send_quit_req(xfrd_state_type* xfrd)
{
sig_atomic_t cmd = NSD_QUIT;
xfrd->ipc_send_blocked = 1;
ipc_xfrd_set_listening(xfrd, EV_PERSIST|EV_READ);
DEBUG(DEBUG_IPC,1, (LOG_INFO, "xfrd: ipc send ackreload(quit)"));
if(!write_socket(xfrd->ipc_handler.ev_fd, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "xfrd: error writing ack to main: %s",
strerror(errno));
}
xfrd->need_to_send_quit = 0;
}
static void
xfrd_send_stats(xfrd_state_type* xfrd)
{
sig_atomic_t cmd = NSD_STATS;
DEBUG(DEBUG_IPC,1, (LOG_INFO, "xfrd: ipc send stats"));
if(!write_socket(xfrd->ipc_handler.ev_fd, &cmd, sizeof(cmd))) {
log_msg(LOG_ERR, "xfrd: error writing stats to main: %s",
strerror(errno));
}
xfrd->need_to_send_stats = 0;
}
void
xfrd_handle_ipc(int ATTR_UNUSED(fd), short event, void* arg)
{
xfrd_state_type* xfrd = (xfrd_state_type*)arg;
if ((event & EV_READ))
{
/* first attempt to read as a signal from main
* could block further send operations */
xfrd_handle_ipc_read(&xfrd->ipc_handler, xfrd);
}
if ((event & EV_WRITE))
{
if(xfrd->ipc_send_blocked) { /* wait for RELOAD_DONE */
ipc_xfrd_set_listening(xfrd, EV_PERSIST|EV_READ);
return;
}
if(xfrd->need_to_send_shutdown) {
xfrd_send_shutdown_req(xfrd);
} else if(xfrd->need_to_send_quit) {
xfrd_send_quit_req(xfrd);
} else if(xfrd->can_send_reload && xfrd->need_to_send_reload) {
xfrd_send_reload_req(xfrd);
} else if(xfrd->need_to_send_stats) {
xfrd_send_stats(xfrd);
}
if(!(xfrd->can_send_reload && xfrd->need_to_send_reload) &&
!xfrd->need_to_send_shutdown &&
!xfrd->need_to_send_quit &&
!xfrd->need_to_send_stats) {
/* disable writing for now */
ipc_xfrd_set_listening(xfrd, EV_PERSIST|EV_READ);
}
}
}
static void
xfrd_handle_ipc_read(struct event* handler, xfrd_state_type* xfrd)
{
sig_atomic_t cmd;
int len;
if((len = read(handler->ev_fd, &cmd, sizeof(cmd))) == -1) {
if(errno != EINTR && errno != EAGAIN)
log_msg(LOG_ERR, "xfrd_handle_ipc: read: %s",
strerror(errno));
return;
}
if(len == 0)
{
/* parent closed the connection. Quit */
DEBUG(DEBUG_IPC,1, (LOG_INFO, "xfrd: main closed connection."));
xfrd->shutdown = 1;
return;
}
switch(cmd) {
case NSD_QUIT:
case NSD_SHUTDOWN:
DEBUG(DEBUG_IPC,1, (LOG_INFO, "xfrd: main sent shutdown cmd."));
xfrd->shutdown = 1;
break;
case NSD_RELOAD_FAILED:
xfrd->reload_failed = 1;
/* fall through */
case NSD_RELOAD_DONE:
/* reload has finished */
DEBUG(DEBUG_IPC,1, (LOG_INFO, "xfrd: ipc recv %s",
xfrd->reload_failed ? "RELOAD FAILED" : "RELOAD DONE"));
if(block_read(NULL, handler->ev_fd, &xfrd->reload_pid,
sizeof(pid_t), -1) != sizeof(pid_t)) {
log_msg(LOG_ERR, "xfrd cannot get reload_pid");
}
/* read the not-mytask for the results and soainfo */
xfrd_process_task_result(xfrd,
xfrd->nsd->task[1-xfrd->nsd->mytask]);
/* reset the IPC, (and the nonblocking ipc write;
the new parent does not want half a packet) */
xfrd->can_send_reload = 1;
xfrd->ipc_send_blocked = 0;
ipc_xfrd_set_listening(xfrd, EV_PERSIST|EV_READ|EV_WRITE);
xfrd_reopen_logfile();
if(!xfrd->reload_failed) {
xfrd_check_failed_updates();
xfrd->reload_cmd_first_sent = 0;
} else {
/* make reload happen again, right away */
xfrd_set_reload_now(xfrd);
}
xfrd_prepare_zones_for_reload();
xfrd->reload_failed = 0;
break;
case NSD_RELOAD_REQ:
DEBUG(DEBUG_IPC,1, (LOG_INFO, "xfrd: ipc recv RELOAD_REQ"));
/* make reload happen, right away, and schedule file check */
task_new_check_zonefiles(xfrd->nsd->task[xfrd->nsd->mytask],
xfrd->last_task, NULL);
xfrd_set_reload_now(xfrd);
break;
case NSD_RELOAD:
/* main tells us that reload is done, stop ipc send to main */
DEBUG(DEBUG_IPC,1, (LOG_INFO, "xfrd: ipc recv RELOAD"));
ipc_xfrd_set_listening(xfrd, EV_PERSIST|EV_READ|EV_WRITE);
xfrd->need_to_send_quit = 1;
break;
default:
log_msg(LOG_ERR, "xfrd_handle_ipc: bad mode %d (%d)", (int)cmd,
(int)ntohl(cmd));
break;
}
}
void
xfrd_handle_notify(int ATTR_UNUSED(fd), short event, void* arg)
{
struct xfrd_tcp* notify_pipe = (struct xfrd_tcp*)arg;
uint32_t acl_num;
int32_t acl_xfr;
if(!(event & EV_READ))
return;
switch(conn_read(notify_pipe)){
case -1: /* TODO: What to do here? */
return;
case 0: return; /* call back later */
default: break;
}
if(buffer_limit(notify_pipe->packet) < sizeof(acl_xfr)+sizeof(acl_num))
log_msg(LOG_ERR, "xfrd_handle_notify invalid message size");
else {
size_t eop = buffer_position(notify_pipe->packet)
- sizeof(acl_xfr) - sizeof(acl_num);
buffer_set_position(notify_pipe->packet, eop);
acl_num = buffer_read_u32(notify_pipe->packet);
acl_xfr = (int32_t)buffer_read_u32(notify_pipe->packet);
buffer_set_position(notify_pipe->packet, eop);
buffer_flip(notify_pipe->packet);
xfrd_handle_passed_packet(notify_pipe->packet,acl_num,acl_xfr);
}
notify_pipe->total_bytes = 0;
notify_pipe->msglen = 0;
buffer_clear(notify_pipe->packet);
}