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
|
/* This file is part of the Project Athena Zephyr Notification System.
* It contains functions for dispatching a notice.
*
* Created by: John T. Kohl
*
* $Source$
* $Author$
*
* Copyright (c) 1987 by the Massachusetts Institute of Technology.
* For copying and distribution information, see the file
* "mit-copyright.h".
*/
#include <zephyr/mit-copyright.h>
#ifndef lint
#ifndef SABER
static char rcsid_dispatch_c[] = "$Header$";
#endif SABER
#endif lint
#include "zserver.h"
#include <sys/socket.h>
#ifdef lint
#include <sys/uio.h> /* so it shuts up */
#endif lint
/*
*
* External Routines:
*
* void dispatch(notice, auth)
* ZNotice_t *notice;
* int auth;
*
* void clt_ack(notice, who, sent)
* ZNotice_t *notice;
* struct sockaddr_in *who;
* ZSentType sent;
*
* void nack_release(client)
* ZClient_t *client;
*
* void sendit(notice, auth, who)
* ZNotice_t *notice;
* int auth;
* struct sockaddr_in *who;
*/
static void xmit(), rexmit(), nack_cancel();
/* patchable magic numbers controlling the retransmission rate and count */
int num_rexmits = NUM_REXMITS;
long rexmit_secs = REXMIT_SECS;
long abs_timo = REXMIT_SECS*NUM_REXMITS + 10;
#ifdef DEBUG
char *pktypes[] = {
"UNSAFE",
"UNACKED",
"ACKED",
"HMACK",
"HMCTL",
"SERVACK",
"SERVNAK",
"CLIENTACK"
};
#endif DEBUG
/*
* Handle an input packet.
* Warning: this function may be called from within a brain dump.
*/
void
handle_packet()
{
Code_t status;
ZPacket_t input_packet; /* from the network */
ZNotice_t new_notice; /* parsed from input_packet */
int input_len; /* len of packet */
struct sockaddr_in input_sin; /* constructed for authent */
struct sockaddr_in whoisit; /* for holding peer's address */
int authentic; /* authentic flag */
ZSrvPending_t *pending; /* pending packet */
ZHostList_t *host; /* host ptr */
/* handle traffic */
if (otherservers[me_server_idx].zs_update_queue) {
/* something here for me; take care of it */
if (zdebug)
syslog(LOG_DEBUG, "internal queue process");
pending = otherservers[me_server_idx].zs_update_queue->q_forw;
host = hostm_find_host(&(pending->pend_who.sin_addr));
if (host && host->zh_locked) {
/* can't deal with it now. to preserve ordering,
we can't process other packets, esp. since we
may block since we don't really know if there
are things in the real queue. */
zdbug((LOG_DEBUG,"host %s is locked",
inet_ntoa(host->zh_addr.sin_addr)));
return;
}
pending = server_dequeue(me_server); /* we can do it, remove */
if (status = ZParseNotice(pending->pend_packet,
pending->pend_len,
&new_notice)) {
syslog(LOG_ERR,
"bad notice parse (%s): %s",
inet_ntoa(pending->pend_who.sin_addr),
error_message(status));
} else
dispatch(&new_notice, pending->pend_auth,
&pending->pend_who);
server_pending_free(pending);
return;
}
/*
* nothing in internal queue, go to the external library
* queue/socket
*/
if (status = ZReceivePacket(input_packet,
sizeof(input_packet),
&input_len,
&whoisit)) {
syslog(LOG_ERR,
"bad packet receive: %s",
error_message(status));
return;
}
npackets++;
if (status = ZParseNotice(input_packet,
input_len,
&new_notice)) {
syslog(LOG_ERR,
"bad notice parse (%s): %s",
inet_ntoa(whoisit.sin_addr),
error_message(status));
return;
}
if (server_which_server(&whoisit)) {
/* we need to parse twice--once to get
the source addr, second to check
authentication */
bzero((caddr_t) &input_sin,
sizeof(input_sin));
input_sin.sin_addr.s_addr = new_notice.z_sender_addr.s_addr;
input_sin.sin_port = new_notice.z_port;
input_sin.sin_family = AF_INET;
authentic = ZCheckAuthentication(&new_notice,
input_packet,
&input_sin);
}
else
authentic = ZCheckAuthentication(&new_notice,
input_packet,
&whoisit);
if (whoisit.sin_port != hm_port &&
strcmp(new_notice.z_class,ZEPHYR_ADMIN_CLASS) &&
whoisit.sin_port != sock_sin.sin_port &&
new_notice.z_kind != CLIENTACK) {
syslog(LOG_ERR,
"bad port %s/%d",
inet_ntoa(whoisit.sin_addr),
ntohs(whoisit.sin_port));
return;
}
dispatch(&new_notice, authentic, &whoisit);
return;
}
/*
* Dispatch a notice.
*/
void
dispatch(notice, auth, who)
register ZNotice_t *notice;
int auth;
struct sockaddr_in *who;
{
Code_t status;
int dispatched = 0;
if ((int) notice->z_kind < (int) UNSAFE ||
(int) notice->z_kind > (int) CLIENTACK) {
syslog(LOG_INFO, "bad notice kind 0x%x from %s",
(int) notice->z_kind,
inet_ntoa(who->sin_addr));
return;
}
#ifdef DEBUG
if (zdebug) {
char buf[4096];
(void) sprintf(buf, "disp:%s '%s' '%s' '%s' '%s' '%s' %s/%d/%d",
pktypes[(int) notice->z_kind],
notice->z_class,
notice->z_class_inst,
notice->z_opcode,
notice->z_sender,
notice->z_recipient,
inet_ntoa(who->sin_addr),
ntohs(who->sin_port),
ntohs(notice->z_port));
syslog(LOG_DEBUG, buf);
}
#endif DEBUG
if (notice->z_kind == CLIENTACK) {
nack_cancel(notice, who);
return;
}
if (server_which_server(who)) {
status = server_dispatch(notice, auth, who);
dispatched = 1;
} else if (class_is_hm(notice)) {
status = hostm_dispatch(notice, auth, who, me_server);
dispatched = 1;
} else if (class_is_control(notice)) {
status = control_dispatch(notice, auth, who, me_server);
dispatched = 1;
} else if (class_is_ulogin(notice)) {
status = ulogin_dispatch(notice, auth, who, me_server);
dispatched = 1;
} else if (class_is_ulocate(notice)) {
status = ulocate_dispatch(notice, auth, who, me_server);
dispatched = 1;
} else if (class_is_admin(notice)) {
status = server_adispatch(notice, auth, who, me_server);
dispatched = 1;
}
if (dispatched) {
if (status == ZSRV_REQUEUE) {
#ifdef CONCURRENT
server_self_queue(notice, auth, who);
#else
syslog(LOG_ERR, "requeue while not concurr");
abort();
#endif CONCURRENT
}
return;
}
/* oh well, do the dirty work */
sendit(notice, auth, who);
}
/*
* Send a notice off to those clients who have subscribed to it.
*/
void
sendit(notice, auth, who)
register ZNotice_t *notice;
int auth;
struct sockaddr_in *who;
{
int acked = 0;
ZAcl_t *acl;
register ZClientList_t *clientlist, *ptr;
if ((acl = class_get_acl(notice->z_class)) &&
(!auth || !access_check(notice, acl, TRANSMIT) ||
strcmp(notice->z_class_inst, notice->z_sender))) {
syslog(LOG_WARNING, "sendit unauthorized %s", notice->z_class);
clt_ack(notice, who, AUTH_FAILED);
return;
}
if ((clientlist = subscr_match_list(notice))) {
for (ptr = clientlist->q_forw;
ptr != clientlist;
ptr = ptr->q_forw) {
/* for each client who gets this notice,
send it along */
xmit(notice, ptr->zclt_client, auth);
if (!acked) {
acked = 1;
ack(notice, who);
}
}
subscr_free_list(clientlist);
}
if (!acked)
nack(notice, who);
}
/*
* Clean up the not-yet-acked queue and release anything destined
* for the client.
*/
void
nack_release(client)
ZClient_t *client;
{
register ZNotAcked_t *nacked, *nack2;
/* search the not-yet-acked list for anything destined to him, and
flush it. */
for (nacked = nacklist->q_forw;
nacked != nacklist;)
if (nacked->na_client == client) {
/* go back, since remque will change things */
nack2 = nacked->q_back;
timer_reset(nacked->na_timer);
xremque(nacked);
xfree(nacked->na_packet);
xfree(nacked);
/* now that the remque adjusted the linked list,
we go forward again */
nacked = nack2->q_forw;
} else
nacked = nacked->q_forw;
return;
}
/*
* Send the notice to the client. After transmitting, put it onto the
* not ack'ed list.
*/
static void
xmit(notice, client, auth)
register ZNotice_t *notice;
ZClient_t *client;
int auth;
{
caddr_t noticepack;
register ZNotAcked_t *nacked;
int packlen;
Code_t retval;
zdbug((LOG_DEBUG,"xmit"));
if (!(noticepack = (caddr_t) xmalloc(sizeof(ZPacket_t)))) {
syslog(LOG_ERR, "xmit malloc");
return; /* DON'T put on nack list */
}
packlen = sizeof(ZPacket_t);
if (auth) { /* we are distributing authentic */
if ((retval = ZFormatAuthenticNotice(notice,
noticepack,
packlen,
&packlen,
client->zct_cblock))
!= ZERR_NONE) {
syslog(LOG_ERR, "xmit auth format: %s",
error_message(retval));
xfree(noticepack);
return;
}
} else {
notice->z_auth = 0;
notice->z_authent_len = 0;
notice->z_ascii_authent = (char *)"";
if ((retval = ZFormatRawNotice(notice,
noticepack,
packlen,
&packlen)) != ZERR_NONE) {
syslog(LOG_ERR, "xmit format: %s",
error_message(retval));
xfree(noticepack);
return; /* DON'T put on nack list */
}
}
zdbug((LOG_DEBUG," to %s/%d",inet_ntoa(client->zct_sin.sin_addr),
ntohs(client->zct_sin.sin_port)));
if ((retval = ZSetDestAddr(&client->zct_sin)) != ZERR_NONE) {
syslog(LOG_WARNING, "xmit set addr: %s",
error_message(retval));
xfree(noticepack);
return;
}
if ((retval = ZSendPacket(noticepack, packlen)) != ZERR_NONE) {
syslog(LOG_WARNING, "xmit xmit: %s", error_message(retval));
xfree(noticepack);
return;
}
/* now we've sent it, mark it as not ack'ed */
if (!(nacked = (ZNotAcked_t *)xmalloc(sizeof(ZNotAcked_t)))) {
/* no space: just punt */
syslog(LOG_WARNING, "xmit nack malloc");
xfree(noticepack);
return;
}
nacked->na_rexmits = 0;
nacked->na_packet = noticepack;
nacked->na_client = client;
nacked->na_packsz = packlen;
nacked->na_uid = notice->z_uid;
nacked->q_forw = nacked->q_back = nacked;
nacked->na_abstimo = NOW + abs_timo;
/* set a timer to retransmit when done */
nacked->na_timer = timer_set_rel(rexmit_secs,
rexmit,
(caddr_t) nacked);
/* chain in */
xinsque(nacked, nacklist);
}
/*
* Retransmit the packet specified. If we have timed out or retransmitted
* too many times, punt the packet and initiate the host recovery algorithm
* Else, increment the count and re-send the notice packet.
*/
static void
rexmit(nackpacket)
register ZNotAcked_t *nackpacket;
{
int retval;
register ZClient_t *client;
zdbug((LOG_DEBUG,"rexmit"));
if (++(nackpacket->na_rexmits) > num_rexmits ||
NOW > nackpacket->na_abstimo) {
/* possibly dead client */
client = nackpacket->na_client;
/* unlink & free packet */
xremque(nackpacket);
xfree(nackpacket->na_packet);
xfree(nackpacket);
/* initiate recovery */
server_recover(client);
return;
}
/* retransmit the packet */
zdbug((LOG_DEBUG," to %s/%d",
inet_ntoa(nackpacket->na_client->zct_sin.sin_addr),
ntohs(nackpacket->na_client->zct_sin.sin_port)));
if ((retval = ZSetDestAddr(&nackpacket->na_client->zct_sin))
!= ZERR_NONE) {
syslog(LOG_WARNING, "rexmit set addr: %s",
error_message(retval));
goto requeue;
}
if ((retval = ZSendPacket(nackpacket->na_packet,
nackpacket->na_packsz)) != ZERR_NONE)
syslog(LOG_WARNING, "rexmit xmit: %s", error_message(retval));
requeue:
/* reset the timer */
nackpacket->na_timer = timer_set_rel(rexmit_secs,
rexmit,
(caddr_t) nackpacket);
return;
}
/*
* Send an acknowledgement to the sending client, by sending back the
* header from the original notice with the z_kind field changed to either
* SERVACK or SERVNAK, and the contents of the message either SENT or
* NOT_SENT, depending on the value of the sent argument.
*/
void
clt_ack(notice, who, sent)
ZNotice_t *notice;
struct sockaddr_in *who;
ZSentType sent;
{
ZNotice_t acknotice;
ZPacket_t ackpack;
int packlen;
int notme = 0;
Code_t retval;
if (bdumping) { /* don't ack while dumping */
zdbug((LOG_DEBUG,"bdumping, no ack"));
return;
}
zdbug((LOG_DEBUG,"clt_ack type %d for %d to %s/%d",
(int) sent,
ntohs(notice->z_port),
inet_ntoa(who->sin_addr),
ntohs(who->sin_port)));
if (!server_which_server(who) &&
(hostm_find_server(&who->sin_addr) != me_server)) {
zdbug((LOG_DEBUG,"not me"));
notme = 1;
}
acknotice = *notice;
acknotice.z_kind = SERVACK;
switch (sent) {
case SENT:
acknotice.z_message = ZSRVACK_SENT;
break;
case NOT_FOUND:
acknotice.z_message = ZSRVACK_FAIL;
acknotice.z_kind = SERVNAK;
break;
case AUTH_FAILED:
acknotice.z_kind = SERVNAK;
/* fall thru */
case NOT_SENT:
acknotice.z_message = ZSRVACK_NOTSENT;
break;
}
/* leave room for the trailing null */
acknotice.z_message_len = strlen(acknotice.z_message) + 1;
packlen = sizeof(ackpack);
if ((retval = ZFormatRawNotice(&acknotice,
ackpack,
packlen,
&packlen)) != ZERR_NONE) {
syslog(LOG_ERR, "clt_ack format: %s",error_message(retval));
return;
}
if ((retval = ZSetDestAddr(who)) != ZERR_NONE) {
syslog(LOG_WARNING, "clt_ack set addr: %s",
error_message(retval));
return;
}
if ((retval = ZSendPacket(ackpack, packlen)) != ZERR_NONE) {
syslog(LOG_WARNING, "clt_ack xmit: %s", error_message(retval));
return;
}
if (notme)
hostm_deathgram(who, me_server);
return;
}
/*
* An ack has arrived.
* remove the packet matching this notice from the not-yet-acked queue
*/
static void
nack_cancel(notice, who)
register ZNotice_t *notice;
struct sockaddr_in *who;
{
register ZNotAcked_t *nacked;
ZClient_t *client;
/* set the origin of the ack to the client who is responding,
since client_which_client matches on the z_port field */
notice->z_port = who->sin_port;
if (!(client = client_which_client(who, notice))) {
zdbug((LOG_DEBUG,"nack clt not found"));
return;
}
/* search the not-yet-acked list for this packet, and
flush it. */
for (nacked = nacklist->q_forw;
nacked != nacklist;
nacked = nacked->q_forw)
if ((nacked->na_client == client))
if (ZCompareUID(&nacked->na_uid, ¬ice->z_uid)) {
timer_reset(nacked->na_timer);
xfree(nacked->na_packet);
xremque(nacked);
xfree(nacked);
return;
}
zdbug((LOG_DEBUG,"nack not found"));
return;
}
|