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
|
/* This file is part of the Project Athena Zephyr Notification System.
* It contains functions for managing subscription lists.
*
* 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_subscr_s_c[] = "$Header$";
#endif SABER
#endif lint
/*
* The subscription manager.
*
* External functions:
*
* Code_t subscr_subscribe(sin, notice)
* struct sockaddr_in *sin;
* ZNotice_t *notice;
*
* Code_t subscr_cancel(sin, notice)
* struct sockaddr_in *sin;
* ZNotice_t *notice;
*
* Code_t subscr_cancel_client(client)
* ZClient_t *client;
*
* Code_t subscr_cancel_host(addr)
* struct in_addr *addr;
*
* ZClientList_t *subscr_match_list(notice, acl)
* ZNotice_t *notice;
* ZAcl_t *acl;
*
* void subscr_list_free(list)
* ZClientList_t *list;
*
* void subscr_sendlist(notice, who)
* ZNotice_t *notice;
* struct sockaddr_in *who;
*
* void subscr_send_subs(client)
* ZClient_t *client;
*/
#include "zserver.h"
#include <ctype.h>
extern char *re_comp(), *re_conv(), *rindex(), *index();
static ZSubscr_t *extract_subscriptions();
static int subscr_equiv(), clt_unique();
static void free_subscriptions(), free_sub();
/* WARNING: make sure this is the same as the number of strings you */
/* plan to hand back to the user in response to a subscription check, */
/* else you will lose. See subscr_sendlist() */
#define NUM_FIELDS 3
/*
* subscribe the client to types described in notice.
*/
Code_t
subscr_subscribe(who, notice)
ZClient_t *who;
ZNotice_t *notice;
{
register ZSubscr_t *subs, *subs2, *newsubs, *subs3;
ZAcl_t *acl;
Code_t retval;
if (!who->zct_subs) {
/* allocate a subscription head */
if (!(subs = (ZSubscr_t *) xmalloc(sizeof(ZSubscr_t))))
return(ENOMEM);
subs->q_forw = subs->q_back = subs;
who->zct_subs = subs;
}
if (!(newsubs = extract_subscriptions(notice)))
return(ZERR_NONE); /* no subscr -> no error */
for (subs = newsubs->q_forw;
subs != newsubs;
subs = subs->q_forw) {
/* for each new subscription */
if ((acl = class_get_acl(subs->zst_class)) &&
!access_check(notice, acl, SUBSCRIBE)) {
syslog(LOG_WARNING, "subscr unauth %s %s",
notice->z_sender, subs->zst_class);
continue;
}
for (subs2 = who->zct_subs->q_forw;
subs2 != who->zct_subs;
subs2 = subs2->q_forw) {
/* for each existing subscription */
if (subscr_equiv(subs, subs2)) /* duplicate? */
goto duplicate;
}
/* ok, we are a new subscription. register and chain on. */
if (!(subs3 = (ZSubscr_t *) xmalloc(sizeof(ZSubscr_t)))) {
free_subscriptions(newsubs);
return(ENOMEM);
}
if ((retval = class_register(who, subs->zst_class)) != ZERR_NONE) {
xfree(subs3);
free_subscriptions(newsubs);
return(retval);
}
subs3->zst_class = strsave(subs->zst_class);
subs3->zst_classinst = strsave(subs->zst_classinst);
subs3->zst_recipient = strsave(subs->zst_recipient);
subs3->q_forw = subs3->q_back = subs3;
xinsque(subs3, who->zct_subs);
duplicate: ; /* just go on to the next */
}
free_subscriptions(newsubs);
return(ZERR_NONE);
}
/*
* Cancel one subscription.
*/
Code_t
subscr_cancel(sin, notice)
struct sockaddr_in *sin;
ZNotice_t *notice;
{
ZClient_t *who;
register ZSubscr_t *subs, *subs2, *subs3, *subs4;
Code_t retval;
int found = 0;
zdbug((LOG_DEBUG,"subscr_cancel"));
if (!(who = client_which_client(sin, notice)))
return(ZSRV_NOCLT);
if (!who->zct_subs)
return(ZSRV_NOSUB);
if (!(subs = extract_subscriptions(notice)))
return(ZERR_NONE); /* no subscr -> no error */
for (subs4 = subs->q_forw;
subs4 != subs;
subs4 = subs4->q_forw)
for (subs2 = who->zct_subs->q_forw;
subs2 != who->zct_subs;)
/* for each existing subscription */
/* is this what we are canceling? */
if (subscr_equiv(subs4, subs2)) {
/* go back, since remque will change things */
subs3 = subs2->q_back;
xremque(subs2);
(void) class_deregister(who, subs2->zst_class);
free_sub(subs2);
found = 1;
/* now that the remque adjusted the linked
list, we go forward again */
subs2 = subs3->q_forw;
} else
subs2 = subs2->q_forw;
/* make sure we are still registered for all the
classes */
if (found)
for (subs2 = who->zct_subs->q_forw;
subs2 != who->zct_subs;
subs2 = subs2->q_forw)
if ((retval = class_register(who, subs2->zst_class)) != ZERR_NONE) {
free_subscriptions(subs);
return(retval);
}
free_subscriptions(subs);
if (found)
return(ZERR_NONE);
else
return(ZSRV_NOSUB);
}
/*
* Cancel all the subscriptions for this client.
*/
void
subscr_cancel_client(client)
register ZClient_t *client;
{
register ZSubscr_t *subs;
zdbug((LOG_DEBUG,"subscr_cancel_client"));
if (!client->zct_subs)
return;
for (subs = client->zct_subs->q_forw;
subs != client->zct_subs;
subs = client->zct_subs->q_forw) {
zdbug((LOG_DEBUG,"sub_can %s",subs->zst_class));
if (class_deregister(client, subs->zst_class) != ZERR_NONE) {
zdbug((LOG_DEBUG,"sub_can_clt: not registered!"));
}
xremque(subs);
free_sub(subs);
}
/* also flush the head of the queue */
/* subs is now client->zct_subs */
xfree(subs);
client->zct_subs = NULLZST;
return;
}
/*
* Cancel all the subscriptions for clients at this addr.
*/
Code_t
subscr_cancel_host(addr)
struct in_addr *addr;
{
register ZHostList_t *hosts;
register ZClientList_t *clist = NULLZCLT, *clt;
/* find the host */
if (!(hosts = hostm_find_host(addr)))
return(ZSRV_HNOTFOUND);
clist = hosts->zh_clients;
/* flush each one */
for (clt = clist->q_forw; clt != clist; clt = clt->q_forw)
(void) subscr_cancel_client(clt->zclt_client);
return(ZERR_NONE);
}
/*
* Here is the bulk of the work in the subscription manager.
* We grovel over the list of clients possibly interested in this
* notice, and copy into a list on a match. Make sure we only add any given
* client once.
*/
ZClientList_t *
subscr_match_list(notice, acl)
ZNotice_t *notice;
ZAcl_t *acl;
{
register ZClientList_t *hits, *clients, *majik, *clients2, *hit2;
register char *cp;
char *newclass, *saveclass, *newclinst, *saveclinst;
if (!(hits = (ZClientList_t *) xmalloc(sizeof(ZClientList_t))))
return(NULLZCLT);
hits->q_forw = hits->q_back = hits;
saveclass = notice->z_class;
cp = newclass = strsave(notice->z_class);
while (*cp) {
if (isupper(*cp))
*cp = tolower(*cp);
cp++;
}
saveclinst = notice->z_class_inst;
cp = newclinst = strsave(notice->z_class_inst);
while (*cp) {
if (isupper(*cp))
*cp = tolower(*cp);
cp++;
}
if (!(clients = class_lookup(newclass))) {
if (!(majik = class_lookup(MATCHALL_CLASS))) {
notice->z_class = saveclass;
notice->z_class_inst = saveclinst;
xfree(newclass);
xfree(newclinst);
xfree(hits);
return(NULLZCLT);
}
} else
majik = class_lookup(MATCHALL_CLASS);
notice->z_class = newclass;
notice->z_class_inst = newclinst;
if (clients)
for (clients2 = clients->q_forw;
clients2 != clients;
clients2 = clients2->q_forw)
if (cl_match(notice, clients2->zclt_client, acl)) {
if (!clt_unique(clients2->zclt_client, hits))
continue;
/* we hit */
if (!(hit2 = (ZClientList_t *) xmalloc(sizeof(ZClientList_t)))) {
syslog(LOG_WARNING,
"subscr_match: punting/no mem");
notice->z_class = saveclass;
xfree(newclass);
notice->z_class_inst = saveclinst;
xfree(newclinst);
return(hits);
}
hit2->zclt_client = clients2->zclt_client;
hit2->q_forw = hit2->q_back = hit2;
xinsque(hit2, hits);
}
if (majik)
for (clients2 = majik->q_forw;
clients2 != majik;
clients2 = clients2->q_forw) {
if (!clt_unique(clients2->zclt_client, hits))
continue;
/* we hit */
if (!(hit2 = (ZClientList_t *) xmalloc(sizeof(ZClientList_t)))) {
syslog(LOG_WARNING,
"subscr_match(majik): punting/no mem");
notice->z_class = saveclass;
xfree(newclass);
notice->z_class_inst = saveclinst;
xfree(newclinst);
return(hits);
}
hit2->zclt_client = clients2->zclt_client;
hit2->q_forw = hit2->q_back = hit2;
xinsque(hit2, hits);
}
notice->z_class = saveclass;
xfree(newclass);
notice->z_class_inst = saveclinst;
xfree(newclinst);
if (hits->q_forw == hits) {
xfree(hits);
return(NULLZCLT);
}
return(hits);
}
/*
* Free memory used by a list we allocated.
*/
void
subscr_list_free(list)
ZClientList_t *list;
{
register ZClientList_t *lyst;
for (lyst = list->q_forw; lyst != list; lyst = list->q_forw) {
xremque(lyst);
xfree(lyst);
}
xfree(list);
return;
}
/*
* Send the requester a list of his current subscriptions
*/
void
subscr_sendlist(notice, who)
ZNotice_t *notice;
struct sockaddr_in *who;
{
ZClient_t *client = client_which_client(who, notice);
register ZSubscr_t *subs;
Code_t retval;
ZNotice_t reply;
ZPacket_t reppacket;
int packlen, i, found = 0;
char **answer;
if (!client || !client->zct_subs) {
clt_ack(notice, who, NOT_FOUND);
return;
}
for (subs = client->zct_subs->q_forw;
subs != client->zct_subs;
subs = subs->q_forw, found++);
/* found is now the number of subscriptions */
reply = *notice;
reply.z_kind = SERVACK;
reply.z_authent_len = 0; /* save some space */
reply.z_auth = 0;
packlen = sizeof(reppacket);
/* coalesce the location information into a list of char *'s */
if ((answer = (char **) xmalloc(found * NUM_FIELDS * sizeof(char *))) == (char **) 0) {
syslog(LOG_ERR, "subscr no mem(answer)");
found = 0;
} else
for (i = 0, subs = client->zct_subs->q_forw;
i < found ;
i++, subs = subs->q_forw) {
answer[i*NUM_FIELDS] = subs->zst_class;
answer[i*NUM_FIELDS + 1] = subs->zst_classinst;
answer[i*NUM_FIELDS + 2] = subs->zst_recipient;
}
/* if it's too long, chop off one at a time till it fits */
while ((retval = ZFormatRawNoticeList(&reply,
answer,
found * NUM_FIELDS,
reppacket,
packlen,
&packlen)) == ZERR_PKTLEN) {
found--;
reply.z_opcode = CLIENT_INCOMPSUBS;
}
if (retval != ZERR_NONE) {
syslog(LOG_ERR, "subscr_sendlist format: %s",
error_message(retval));
xfree(answer);
return;
}
if ((retval = ZSetDestAddr(who)) != ZERR_NONE) {
syslog(LOG_WARNING, "subscr_sendlist set addr: %s",
error_message(retval));
xfree(answer);
return;
}
if ((retval = ZSendPacket(reppacket, packlen)) != ZERR_NONE) {
syslog(LOG_WARNING, "subscr_sendlist xmit: %s",
error_message(retval));
xfree(answer);
return;
}
zdbug((LOG_DEBUG,"subscr_sendlist acked"));
xfree(answer);
return;
}
/*
* Send the client's subscriptions
*/
void
subscr_send_subs(client)
ZClient_t *client;
{
register int i = 0;
register ZSubscr_t *sub;
char buf[512], buf2[512], *lyst[7 * NUM_FIELDS];
int num = 1;
Code_t retval;
zdbug((LOG_DEBUG, "send_subs"));
(void) sprintf(buf2, "%d",ntohs(client->zct_sin.sin_port));
lyst[0] = buf2;
if (ZMakeAscii(buf, sizeof(buf), client->zct_cblock,
sizeof(C_Block)) != ZERR_NONE)
lyst[++num] = buf;
if ((retval = bdump_send_list_tcp(SERVACK, bdump_sin.sin_port,
ZEPHYR_ADMIN_CLASS,
num > 1 ? "CBLOCK" : "",
ADMIN_NEWCLT, myname, "",
lyst, num)) != ZERR_NONE ) {
syslog(LOG_ERR, "subscr_send_subs newclt: %s",
error_message(retval));
return;
}
if (!client->zct_subs)
return;
for (sub = client->zct_subs->q_forw;
sub != client->zct_subs;
sub = sub->q_forw) {
/* for each subscription */
lyst[i * NUM_FIELDS] = sub->zst_class;
lyst[i * NUM_FIELDS + 1] = sub->zst_classinst;
lyst[i * NUM_FIELDS + 2] = sub->zst_recipient;
i++;
if (i > 7) {
/* we only put 7 in each packet, so we don't
run out of room */
if ((retval = bdump_send_list_tcp(ACKED,
bdump_sin.sin_port,
ZEPHYR_CTL_CLASS, "",
CLIENT_SUBSCRIBE, "",
"", lyst,
i * NUM_FIELDS))
!= ZERR_NONE) {
syslog(LOG_ERR, "subscr_send_subs subs: %s",
error_message(retval));
return;
}
i = 0;
}
}
if (i) {
if ((retval = bdump_send_list_tcp(ACKED, bdump_sin.sin_port,
ZEPHYR_CTL_CLASS, "",
CLIENT_SUBSCRIBE, "", "",
lyst, i * NUM_FIELDS))
!= ZERR_NONE) {
syslog(LOG_ERR, "subscr_send_subs subs: %s",
error_message(retval));
return;
}
}
return;
}
/*
* is this client unique to this list? 0 = no, 1 = yes
*/
static int
clt_unique(clt, clist)
ZClient_t *clt;
ZClientList_t *clist;
{
register ZClientList_t *client;
for (client = clist->q_forw;
client != clist;
client = client->q_forw)
if (client->zclt_client == clt)
return(0);
return(1);
}
/*
* is this client listening to this notice? 1=yes, 0=no
*/
static int
cl_match(notice, client, acl)
register ZNotice_t *notice;
register ZClient_t *client;
ZAcl_t *acl;
{
register ZSubscr_t *subs;
if (client->zct_subs == NULLZST) {
syslog(LOG_WARNING, "cl_match w/ no subs");
return(0);
}
for (subs = client->zct_subs->q_forw;
subs != client->zct_subs;
subs = subs->q_forw) {
/* for each subscription, do regex matching */
/* we don't regex the class, since wildcard
matching on the class is disallowed. */
if (strcmp(notice->z_class, subs->zst_class))
continue; /* no match */
/* an ACL on this class means we don't do any wildcarding. */
if (acl) {
if (strcmp(notice->z_class_inst, subs->zst_classinst))
continue;
} else {
if (strcmp(subs->zst_classinst, "*") &&
strcmp(subs->zst_classinst, notice->z_class_inst))
continue;
}
if (strcmp(notice->z_recipient, subs->zst_recipient))
continue;
return(1);
}
/* fall through */
return(0);
}
/*
* Free up a subscription
*/
static void
free_sub(sub)
ZSubscr_t *sub;
{
xfree(sub->zst_class);
xfree(sub->zst_classinst);
xfree(sub->zst_recipient);
xfree(sub);
return;
}
/*
* free the memory allocated for the list of subscriptions.
*/
static void
free_subscriptions(subs)
register ZSubscr_t *subs;
{
register ZSubscr_t *sub;
for (sub = subs->q_forw; sub != subs; sub = subs->q_forw) {
xremque(sub);
xfree(sub);
}
xfree(subs);
return;
}
/*
* are the subscriptions the same? 1=yes, 0=no
* The notice's z_sender field is used as the recipient field for the first
* subscription
*/
static int
subscr_equiv(s1, s2)
register ZSubscr_t *s1, *s2;
{
if (strcmp(s1->zst_class,s2->zst_class))
return(0);
if (strcmp(s1->zst_classinst,s2->zst_classinst))
return(0);
if (strcmp(s1->zst_recipient,s2->zst_recipient))
return(0);
return(1);
}
#define ADVANCE(xx) { cp += (strlen(cp) + 1); \
if (cp >= notice->z_message + notice->z_message_len) { \
syslog(LOG_WARNING, "malformed subscription %d", xx); \
return(subs); \
}}
/*
* Parse the message body, returning a linked list of subscriptions, or
* NULLZST if there are no subscriptions there.
*/
static ZSubscr_t *
extract_subscriptions(notice)
register ZNotice_t *notice;
{
register ZSubscr_t *subs = NULLZST, *subs2;
register char *recip, *class, *classinst;
register char *cp = notice->z_message;
char *buf;
/* parse the data area for the subscriptions */
while (cp < notice->z_message + notice->z_message_len) {
class = buf = cp;
if (*buf == '\0')
/* we've exhausted the subscriptions */
return(subs);
/* we lowercase the class and class instance
so we can be case insensitive on comparisons */
while (*cp) {
if (isupper(*cp))
*cp = tolower(*cp);
cp++;
}
cp = class;
zdbug((LOG_DEBUG,"class %s",cp));
ADVANCE(1);
classinst = buf = cp;
while (*cp) {
if (isupper(*cp))
*cp = tolower(*cp);
cp++;
}
cp = classinst;
zdbug((LOG_DEBUG,"clinst %s",cp));
ADVANCE(2);
recip = cp;
zdbug((LOG_DEBUG,"recip %s",cp));
cp += (strlen(cp) + 1);
if (cp > notice->z_message + notice->z_message_len) {
syslog(LOG_WARNING, "malformed sub 3");
return(subs);
}
if (!subs) {
if (!(subs = (ZSubscr_t *) xmalloc(sizeof(ZSubscr_t)))) {
syslog(LOG_WARNING, "ex_subs: no mem");
return(NULLZST);
}
subs->q_forw = subs->q_back = subs;
subs->zst_class = subs->zst_classinst = subs->zst_recipient = NULL;
}
if (!(subs2 = (ZSubscr_t *) xmalloc(sizeof(ZSubscr_t)))) {
syslog(LOG_WARNING, "ex_subs: no mem 2");
return(subs);
}
subs2->zst_class = class;
subs2->zst_classinst = classinst;
subs2->zst_recipient = recip;
subs2->q_forw = subs2->q_back = subs2;
xinsque(subs2, subs);
}
return(subs);
}
|