]> andersk Git - moira.git/blame - gen/hesiod.qc
Don't coredump on bad input streams (sanity check lengths of received
[moira.git] / gen / hesiod.qc
CommitLineData
dfb56d6b 1/* $Header$
2 *
3 * This generates the zone files necessary to load a hesiod server.
f575c498 4 * The following zones are generated: passwd, uid, pobox, group,
5 * grplist, gid, filsys, cluster, pcap, sloc, service.
0a5ff702 6 *
7 * (c) Copyright 1988 by the Massachusetts Institute of Technology.
8 * For copying and distribution information, please see the file
9 * <mit-copyright.h>.
dfb56d6b 10 */
11
0a5ff702 12#include <mit-copyright.h>
dfb56d6b 13#include <stdio.h>
14#include <sms.h>
15#include <sms_app.h>
16#include <sys/types.h>
17#include <sys/stat.h>
18#include <sys/time.h>
abeed590 19#include <ctype.h>
dfb56d6b 20
bd8a14a5 21
dfb56d6b 22#define HESIOD_DIR "/u1/sms/dcm/hesiod"
23
24#define min(x,y) ((x) < (y) ? (x) : (y))
bd8a14a5 25struct hash *machines = NULL;
26struct hash *users = NULL;
1991abf7 27char *whoami = "hesiod.gen";
bd8a14a5 28
29struct grp {
30 struct grp *next;
31 int id;
32};
33struct user {
34 char name[9];
35 struct grp *lists;
36};
dfb56d6b 37
38char *malloc(), *strsave();
39char *ingres_date_and_time(), *ingres_time(), *ingres_date();
40
41main(argc, argv)
42int argc;
43char **argv;
44{
45 char cmd[64];
46 struct stat sb;
47 int changed = 0;
1991abf7 48 int ingerr();
dfb56d6b 49
50 if (argc > 2) {
51 fprintf(stderr, "usage: %s [outfile]\n", argv[0]);
f575c498 52 exit(SMS_ARGS);
dfb56d6b 53 }
54
1991abf7 55 IIseterr(ingerr);
56
dfb56d6b 57## ingres sms
3b9c758d 58## set lockmode session where level = table
dfb56d6b 59
60 changed = do_passwd();
dfb56d6b 61 changed += do_filsys();
62 changed += do_cluster();
63 changed += do_printers();
f575c498 64 changed += do_sloc();
65 changed += do_service();
66 changed += do_groups();
dfb56d6b 67
68## exit
69
70 if (!changed) {
71 fprintf(stderr, "No files updated.\n");
72 if (argc == 2 && stat(argv[1], &sb) == 0)
f575c498 73 exit(SMS_NO_CHANGE);
dfb56d6b 74 }
75
76 if (argc == 2) {
bd8a14a5 77 fprintf(stderr, "Building tar file.\n");
dfb56d6b 78 sprintf(cmd, "cd %s; tar cf %s .", HESIOD_DIR, argv[1]);
f575c498 79 if (system(cmd))
80 exit(SMS_TAR_FAIL);
dfb56d6b 81 }
82
f575c498 83 exit(SMS_SUCCESS);
dfb56d6b 84}
85
86
1991abf7 87/*
88 * ingerr: (supposedly) called when Ingres indicates an error.
89 * I have not yet been able to get this to work to intercept a
90 * database open error.
91 */
92#define INGRES_DEADLOCK 4700
93
94static int ingerr(num)
95 int *num;
96{
97 char buf[256];
98 int ingres_errno;
99
100 switch (*num) {
101 case INGRES_DEADLOCK:
102 ingres_errno = SMS_DEADLOCK;
103 break;
104 default:
105 ingres_errno = SMS_INGRES_ERR;
106 }
107 com_err(whoami, SMS_INGRES_ERR, " code %d\n", *num);
108 critical_alert("DCM", "Hesiod build encountered INGRES ERROR %d", *num);
109 exit(ingres_errno);
110}
111
112
bd8a14a5 113get_mach()
114##{
115## int id;
116## char name[33];
117
118 if (machines)
119 return;
120
121 machines = create_hash(1000);
122## retrieve (name = machine.#name, id = machine.mach_id) {
123 hash_store(machines, id, strsave(strtrim(name)));
124## }
125##}
126
127
dfb56d6b 128do_passwd()
129##{
3b9c758d 130 FILE *pout, *uout, *bout;
131 char poutf[64], uoutf[64], poutft[64], uoutft[64], boutf[64], boutft[64];
132 struct stat psb, usb, bsb;
dfb56d6b 133 time_t ftime;
bd8a14a5 134 struct user *u;
3b9c758d 135 char *mach;
dfb56d6b 136## char login[9], shell[33], fullname[33], oa[17], op[13], hp[17], *filetime;
3b9c758d 137## char nn[17], ptype[9];
138## int uid, flag1, flag2, id, pid;
dfb56d6b 139
140 sprintf(poutf, "%s/passwd.db", HESIOD_DIR);
141 sprintf(uoutf, "%s/uid.db", HESIOD_DIR);
3b9c758d 142 sprintf(boutf, "%s/pobox.db", HESIOD_DIR);
dfb56d6b 143
3b9c758d 144 if (stat(poutf, &psb) == 0 && stat(uoutf, &usb) == 0 &&
145 stat(boutf, &bsb) == 0) {
146 ftime = min(min(psb.st_mtime, usb.st_mtime), bsb.st_mtime);
dfb56d6b 147 filetime = ingres_date_and_time(ftime);
3b9c758d 148## retrieve (flag1 = int4(interval("min", tblstats.modtime - filetime)))
dfb56d6b 149## where tblstats.table = "users"
3b9c758d 150## retrieve (flag2 = int4(interval("min", tblstats.modtime - filetime)))
151## where tblstats.table = "machine"
152 if (flag1 < 0 && flag2 < 0) {
153 fprintf(stderr, "Files passwd.db, uid.db, and pobox.db do not need to be rebuilt.\n");
dfb56d6b 154 return(0);
155 }
156 }
157
f575c498 158 sprintf(poutft, "%s~", poutf);
159 pout = fopen(poutft, "w");
dfb56d6b 160 if (!pout) {
f575c498 161 perror("cannot open passwd.db~ for write");
162 exit(SMS_OCONFIG);
dfb56d6b 163 }
f575c498 164 sprintf(uoutft, "%s~", uoutf);
165 uout = fopen(uoutft, "w");
dfb56d6b 166 if (!uout) {
f575c498 167 perror("cannot open uid.db~ for write");
168 exit(SMS_OCONFIG);
dfb56d6b 169 }
3b9c758d 170 sprintf(boutft, "%s~", boutf);
171 bout = fopen(boutft, "w");
172 if (!bout) {
173 perror("cannot open pobox.db for write");
174 exit(SMS_OCONFIG);
175 }
dfb56d6b 176
3b9c758d 177 fprintf(stderr, "Building passwd.db, uid.db, and pobox.db\n");
178 get_mach();
dfb56d6b 179
bd8a14a5 180 users = create_hash(10000);
dfb56d6b 181## range of u is users
182## retrieve (login = u.#login, uid = u.#uid, shell = u.#shell,
0a48a760 183## fullname = u.#fullname, nn = u.nickname, oa = u.office_addr,
3b9c758d 184## op = u.office_phone, hp = u.home_phone, id = u.users_id,
185## pid = u.pop_id, ptype = u.potype)
bd8a14a5 186## where u.status = 1 {
187 strtrim(login);
29904371 188 dequote(fullname);
0a48a760 189 dequote(nn);
29904371 190 dequote(oa);
191 dequote(op);
192 dequote(hp);
193 dequote(shell);
bd8a14a5 194 u = (struct user *) malloc(sizeof(struct user));
195 strcpy(u->name, login);
196 u->lists = NULL;
197 hash_store(users, id, u);
0a48a760 198 fprintf(pout, "%s.passwd\tHS UNSPECA \"%s:*:%d:101:%s,%s,%s,%s,%s:/mit/%s:%s\"\n",
199 login, login, uid, fullname, nn, oa, op, hp, login, shell);
dfb56d6b 200 fprintf(uout, "%d.uid\tHS CNAME %s.passwd\n", uid, login);
3b9c758d 201 if (ptype[0] == 'P' && (mach = hash_lookup(machines, pid))) {
202 fprintf(bout, "%s.pobox\tHS UNSPECA \"POP %s %s\"\n",
203 login, mach, login);
204 }
dfb56d6b 205## }
206
3b9c758d 207 if (fclose(pout) || fclose(uout) || fclose(bout)) {
208 fprintf(stderr, "Unsuccessful file close of passwd.db, uid.db, or pobox.db\n");
f575c498 209 exit(SMS_CCONFIG);
dfb56d6b 210 }
f575c498 211 fix_file(poutf);
212 fix_file(uoutf);
3b9c758d 213 fix_file(boutf);
dfb56d6b 214 return(1);
215##}
216
217
f575c498 218/************************************************************************
219 * WARNING: this routine mallocs a large amount of memory which it never frees.
220 * This is considered OK only because main has been arranged to call this
221 * last, so the process will exit shortly after we return.
222 */
223
dfb56d6b 224do_groups()
225##{
226 FILE *iout, *gout, *lout;
1991abf7 227 char ioutf[64], goutf[64], loutf[64], buf[512], *l;
bd8a14a5 228 struct hash *groups;
229 register struct bucket *b, **p;
230 struct grp *g;
231 struct user *u;
dfb56d6b 232 struct stat isb, gsb, lsb;
233 time_t ftime;
f575c498 234 register struct save_queue *sq;
235 struct save_queue *sq_create();
bd8a14a5 236 register int i;
dfb56d6b 237## char name[33], *filetime;
238## int gid, id, lid, flag1, flag2, flag3, maxid;
239
240 /* open files */
241 sprintf(ioutf, "%s/gid.db", HESIOD_DIR);
242 sprintf(goutf, "%s/group.db", HESIOD_DIR);
243 sprintf(loutf, "%s/grplist.db", HESIOD_DIR);
244
245 if (stat(ioutf, &isb) == 0 && stat(goutf, &gsb) == 0 && stat(loutf, &lsb) == 0) {
246 ftime = min(isb.st_mtime, min(gsb.st_mtime, lsb.st_mtime));
247 filetime = ingres_date_and_time(ftime);
248## retrieve (flag1 = int4(interval("min", tblstats.modtime - filetime)))
249## where tblstats.table = "users"
250## retrieve (flag2 = int4(interval("min", tblstats.modtime - filetime)))
251## where tblstats.table = "list"
252## retrieve (flag3 = int4(interval("min", tblstats.modtime - filetime)))
253## where tblstats.table = "members"
254 if (flag1 < 0 && flag2 < 0 && flag3 < 0) {
255 fprintf(stderr, "Files gid.db, group.db and grplist.db do not need to be rebuilt.\n");
256 return(0);
257 }
258 }
259
f575c498 260 sprintf(buf, "%s~", ioutf);
261 iout = fopen(buf, "w");
dfb56d6b 262 if (!iout) {
263 perror("cannot open gid.db for write");
f575c498 264 exit(SMS_OCONFIG);
dfb56d6b 265 }
f575c498 266 sprintf(buf, "%s~", goutf);
267 gout = fopen(buf, "w");
dfb56d6b 268 if (!gout) {
269 perror("cannot open group.db for write");
f575c498 270 exit(SMS_OCONFIG);
dfb56d6b 271 }
f575c498 272 sprintf(buf, "%s~", loutf);
273 lout = fopen(buf, "w");
dfb56d6b 274 if (!lout) {
275 perror("cannot open grplist.db for write");
f575c498 276 exit(SMS_OCONFIG);
dfb56d6b 277 }
278
279 fprintf(stderr, "Building gid.db, group.db, and grplist.db\n");
280
281 /* make space for group list */
bd8a14a5 282 groups = create_hash(15000);
dfb56d6b 283
284 /* retrieve simple groups */
bd8a14a5 285## range of l is list
29904371 286## begin transaction
3b9c758d 287 /* get lock records */
288## retrieve (name = l.modtime) where l.list_id = 0
289## retrieve (name = users.modtime) where users.users_id = 0
290
dfb56d6b 291## retrieve (name = l.#name, gid = l.#gid, lid = l.list_id)
f575c498 292## where l.group != 0 and l.active != 0 {
bd8a14a5 293 strtrim(name);
dfb56d6b 294 sprintf(buf, "%s:%d", name, gid);
bd8a14a5 295 hash_store(groups, lid, strsave(buf));
dfb56d6b 296 fprintf(iout, "%d.gid\tHS CNAME %s.group\n", gid, name);
297 fprintf(gout, "%s.group\tHS UNSPECA \"%s:*:%d:\"\n",
298 name, name, gid);
299## }
300
f575c498 301 fflush(iout);
302 fflush(gout);
303
dfb56d6b 304 /* get special cases: lists that aren't groups themselves but are
305 * members of groups. */
306 sq = sq_create();
307## range of m is members
f575c498 308## retrieve (name = list.#name, gid = list.#gid, lid = l.list_id)
1991abf7 309## where l.active != 0 and list.active != 0 and m.member_type = "LIST" and
dfb56d6b 310## m.member_id = l.list_id and m.list_id = list.list_id and
311## list.group != 0 {
bd8a14a5 312 strtrim(name);
313 if (l = hash_lookup(groups, lid)) {
314 sprintf(buf, "%s:%s:%d", l, name, gid);
315 free(l);
f575c498 316 } else {
317 sprintf(buf, "%s:%d", name, gid);
318 }
bd8a14a5 319 hash_store(groups, lid, strsave(buf));
1991abf7 320 sq_save_unique_data(sq, lid);
dfb56d6b 321## }
f575c498 322
dfb56d6b 323 while (sq_get_data(sq, &id)) {
1991abf7 324## repeat retrieve (lid = l.list_id) where m.member_type = "LIST" and
325## m.list_id = @id and m.member_id = l.list_id and l.active != 0 {
bd8a14a5 326 if (l = hash_lookup(groups, lid)) {
1991abf7 327 sprintf(buf, "%s:%s", l, hash_lookup(groups, id));
bd8a14a5 328 free(l);
1991abf7 329 l = strsave(buf);
bd8a14a5 330 } else {
1991abf7 331 l = hash_lookup(groups, id);
bd8a14a5 332 }
1991abf7 333 hash_store(groups, lid, l);
dfb56d6b 334 sq_save_unique_data(sq, lid);
335## }
336 }
337 sq_destroy(sq);
338
339 /* now do grplists */
bd8a14a5 340 if (users == NULL) {
341 users = create_hash(10000);
342## range of u is users
343## retrieve (id = u.users_id, name = u.login) where u.status = 1 {
344 u = (struct user *) malloc(sizeof(struct user));
345 strcpy(u->name, strtrim(name));
346 u->lists = NULL;
347 hash_store(users, id, u);
dfb56d6b 348## }
dfb56d6b 349 }
bd8a14a5 350
351## repeat retrieve (lid = m.list_id, id = m.member_id)
352## where m.member_type = "USER" {
1991abf7 353 if ((u = (struct user *) hash_lookup(users, id)) &&
354 (hash_lookup(groups, lid) != NULL)) {
bd8a14a5 355 g = (struct grp *) malloc(sizeof(struct grp));
356 g->next = u->lists;
357 u->lists = g;
358 g->id = lid;
359 }
360## }
29904371 361## end transaction
bd8a14a5 362
363 for (p = &(users->data[users->size - 1]); p >= users->data; p--) {
364 for (b = *p; b; b = b->next) {
1991abf7 365 i = 0;
366 sprintf(buf, "%s.grplist\tHS UNSPECA \"",
bd8a14a5 367 ((struct user *)b->data)->name);
368 for (g = ((struct user *)b->data)->lists; g; g = g->next)
1991abf7 369 if (l = hash_lookup(groups, g->id)) {
370 i++;
371 strcat(buf, l);
372 if (g->next)
373 strcat(buf, ":");
374 }
375 strcat(buf, "\"\n");
376 /* Do duplicate detection here */
377 if (i > 1) {
378 remove_duplicate_groups(buf);
379 }
00483154 380 if (i > 0)
381 fputs(buf, lout);
bd8a14a5 382 }
383 }
384
f575c498 385#ifdef notdef
386/* This is commented out because it takes on the order of 30 minutes to
387 * run. Instead, we never free the memory, but the program will exit
388 * shortly anyway.
389 */
dfb56d6b 390 sq_destroy(sq);
bd8a14a5 391 {
392 register char **p;
393 for (p = &groups[maxid-1]; p >= groups; p--)
394 if (*p)
395 free(*p);
396 }
dfb56d6b 397 free(groups);
f575c498 398#endif
dfb56d6b 399
400 if (fclose(iout) || fclose(gout) || fclose(lout)) {
401 fprintf(stderr, "Unsuccessful close of gid.db, group.db, or grplist.db\n");
f575c498 402 exit(SMS_CCONFIG);
dfb56d6b 403 }
f575c498 404 fix_file(ioutf);
405 fix_file(goutf);
406 fix_file(loutf);
dfb56d6b 407 return(1);
408##}
409
410
1991abf7 411#define MAXGROUPS 256
412
413remove_duplicate_groups(p)
414register char *p;
415{
416 register char *pp;
417 char *index();
418 register int *mp;
419 int memory[MAXGROUPS], i, *mg = &memory[MAXGROUPS-1];
420
421 bzero(memory, MAXGROUPS * sizeof(int));
422 while (p = index(p, ':')) {
423 i = atoi(++p);
424 for (mp = memory; *mp && mp < mg; mp++)
425 if (*mp == i) {
426 if (p = index(p, ':'))
427 strcpy(pp, ++p);
428 else {
429 strcpy(--pp, "\"\n");
430 }
431 p = pp;
432 break;
433 }
434 if (*mp == i)
435 continue;
436 *mp = i;
437 if (!(p = index(p, ':')))
438 return;
439 pp = ++p;
440 }
441}
442
443
dfb56d6b 444do_filsys()
445##{
446 FILE *out;
90647001 447 char outf[64], outft[64], *mach, machbuf[128], *group;
abeed590 448 register char *p;
dfb56d6b 449 struct stat sb;
450 time_t ftime;
90647001 451 struct save_queue *sq, *sq_create();
bd8a14a5 452## char name[33], type[9], loc[33], access[2], mount[33], trans[257];
f575c498 453## char *filetime, comments[65];
90647001 454## int flag1, flag2, flag3, flag4, id, fid;
dfb56d6b 455
456 sprintf(outf, "%s/filsys.db", HESIOD_DIR);
457
458 if (stat(outf, &sb) == 0) {
459 ftime = sb.st_mtime;
460 filetime = ingres_date_and_time(ftime);
461## retrieve (flag1 = int4(interval("min", tblstats.modtime - filetime)))
462## where tblstats.table = "filesys"
463## retrieve (flag2 = int4(interval("min", tblstats.modtime - filetime)))
464## where tblstats.table = "machine"
465## retrieve (flag3 = int4(interval("min", tblstats.modtime - filetime)))
466## where tblstats.table = "alias"
90647001 467## retrieve (flag4 = int4(interval("min", tblstats.modtime - filetime)))
468## where tblstats.table = "fsgroup"
469 if (flag1 < 0 && flag2 < 0 && flag3 < 0 && flag4 < 0) {
dfb56d6b 470 fprintf(stderr, "File filsys.db does not need to be rebuilt.\n");
471 return(0);
472 }
473 }
474
f575c498 475 sprintf(outft, "%s~", outf);
476 out = fopen(outft, "w");
dfb56d6b 477 if (!out) {
478 perror("cannot open filsys.db for write");
f575c498 479 exit(SMS_OCONFIG);
dfb56d6b 480 }
481
482 fprintf(stderr, "Building filsys.db\n");
bd8a14a5 483 get_mach();
90647001 484 sq = sq_create();
dfb56d6b 485
486## range of f is filesys
bd8a14a5 487## retrieve (name = f.label, type = f.#type, loc = f.#name, id = f.mach_id,
90647001 488## access = f.#access, mount = f.#mount, comments = f.#comments,
489## fid = f.filsys_id) {
bd8a14a5 490 strtrim(name);
491 strtrim(type);
90647001 492 if (!strcmp(type, "NFS") || !strcmp(type, "RVD")) {
bd8a14a5 493 strtrim(loc);
494 strtrim(access);
495 strtrim(mount);
abeed590 496 if (mach = hash_lookup(machines, id)) {
497 for (p = machbuf; *mach && *mach != '.'; mach++) {
498 if (isupper(*mach))
499 *p++ = tolower(*mach);
500 else
501 *p++ = *mach;
502 *p = 0;
503 }
504 fprintf(out, "%s.filsys\tHS UNSPECA \"%s %s %s %s %s\"\n",
505 name, type, loc, machbuf, access, mount);
506 }
333f7a7f 507 } else if (!strcmp(type, "AFS")) {
508 strtrim(loc);
509 strtrim(access);
510 strtrim(mount);
511 fprintf(out, "%s.filsys\tHS UNSPECA \"AFS %s %s %s\"\n",
512 name, loc, access, mount);
90647001 513 } else if (!strcmp(type, "ERR")) {
bd8a14a5 514 strtrim(comments);
515 fprintf(out, "%s.filsys\tHS UNSPECA \"ERR %s\"\n",
516 name, comments);
90647001 517 } else if (!strcmp(type, "FSGROUP")) {
518 sprintf(trans, "%s:%d", name, fid);
519 sq_save_data(sq, strsave(trans));
f575c498 520 }
dfb56d6b 521## }
522
90647001 523## range of g is fsgroup
524 while (sq_get_data(sq, &group)) {
525 fid = atoi(index(group, ':')+1);
526 *index(group, ':') = 0;
527## retrieve (type = f.#type, loc = f.#name, id = f.mach_id,
528## access = f.#access, mount = f.#mount, comments = f.#comments,
529## name = f.#label, trans = g.#key)
530## where f.filsys_id = g.filsys_id and g.group_id = fid
531## sort by #trans, #name {
532 strtrim(type);
533 if (!strcmp(type, "NFS") || !strcmp(type, "RVD")) {
534 strtrim(loc);
535 strtrim(access);
536 strtrim(mount);
537 if (mach = hash_lookup(machines, id)) {
538 for (p = machbuf; *mach && *mach != '.'; mach++) {
539 if (isupper(*mach))
540 *p++ = tolower(*mach);
541 else
542 *p++ = *mach;
543 *p = 0;
544 }
545 fprintf(out, "%s.filsys\tHS UNSPECA \"%s %s %s %s %s\"\n",
546 group, type, loc, machbuf, access, mount);
547 }
333f7a7f 548 } else if (!strcmp(type, "AFS")) {
549 strtrim(loc);
550 strtrim(access);
551 strtrim(mount);
552 fprintf(out, "%s.filsys\tHS UNSPECA \"AFS %s %s %s\"\n",
553 group, loc, access, mount);
90647001 554 } else if (!strcmp(type, "ERR")) {
555 strtrim(comments);
556 fprintf(out, "%s.filsys\tHS UNSPECA \"ERR %s\"\n",
557 group, comments);
558 }
559## }
560 free(group);
561 }
562 sq_destroy(sq);
29904371 563
dfb56d6b 564## range of a is alias
565## retrieve (name = a.#name, trans = a.#trans) where a.#type = "FILESYS" {
bd8a14a5 566 strtrim(name);
567 strtrim(trans);
dfb56d6b 568 fprintf(out, "%s.filsys\tHS CNAME %s.filsys\n", name, trans);
569## }
570
571 if (fclose(out)) {
572 fprintf(stderr, "Unsuccessful close of filsys.db\n");
f575c498 573 exit(SMS_CCONFIG);
dfb56d6b 574 }
f575c498 575 fix_file(outf);
dfb56d6b 576 return(1);
577##}
578
579
580/*
581 * Modified from sys/types.h:
582 */
583int setsize; /* = howmany(setbits, NSETBITS) */
584
585typedef long set_mask;
586#define NSETBITS (sizeof(set_mask) * NBBY) /* bits per mask */
587#ifndef howmany
588#define howmany(x, y) (((x)+((y)-1))/(y))
589#endif
590
591#define SET_SET(n, p) ((p)[(n)/NSETBITS] |= (1 << ((n) % NSETBITS)))
592#define SET_CLR(n, p) ((p)[(n)/NSETBITS] &= ~(1 << ((n) % NSETBITS)))
593#define SET_ISSET(n, p) ((p)[(n)/NSETBITS] & (1 << ((n) % NSETBITS)))
594#define SET_CREATE() ((set_mask *)malloc(setsize * sizeof(set_mask)))
595#define SET_ZERO(p) bzero((char *)(p), setsize * sizeof(set_mask))
596#define SET_CMP(p1, p2) (bcmp((p1), (p2), setsize * sizeof(set_mask)))
597
598
599do_cluster()
600##{
601 FILE *out;
29904371 602 char outf[64], outft[64], *mach, machbuf[33], *p;
dfb56d6b 603 struct stat sb;
604 time_t ftime;
605## int flag1, flag2, flag3, flag4, maxmach, maxclu, mid, cid, id;
bd8a14a5 606## char name[33], label[17], data[33], *filetime;
dfb56d6b 607 set_mask **machs, *ms, *ps;
608
609 sprintf(outf, "%s/cluster.db", HESIOD_DIR);
610
611 if (stat(outf, &sb) == 0) {
612 ftime = sb.st_mtime;
613 filetime = ingres_date_and_time(ftime);
614## retrieve (flag1 = int4(interval("min", tblstats.modtime - filetime)))
615## where tblstats.table = "cluster"
616## retrieve (flag2 = int4(interval("min", tblstats.modtime - filetime)))
617## where tblstats.table = "machine"
618## retrieve (flag3 = int4(interval("min", tblstats.modtime - filetime)))
619## where tblstats.table = "mcmap"
620## retrieve (flag4 = int4(interval("min", tblstats.modtime - filetime)))
621## where tblstats.table = "svc"
622 if (flag1 < 0 && flag2 < 0 && flag3 < 0 && flag4 < 0) {
623 fprintf(stderr, "File cluster.db does not need to be rebuilt.\n");
624 return(0);
625 }
626 }
627
f575c498 628 sprintf(outft, "%s~", outf);
629 out = fopen(outft, "w");
dfb56d6b 630 if (!out) {
631 perror("cannot open cluster.db for write");
f575c498 632 exit(SMS_OCONFIG);
dfb56d6b 633 }
634
635 fprintf(stderr, "Building cluster.db\n");
bd8a14a5 636 get_mach();
dfb56d6b 637
638## range of c is cluster
29904371 639## begin transaction
dfb56d6b 640## retrieve (maxclu = max(c.clu_id))
3604fe12 641 maxclu++;
dfb56d6b 642 setsize = howmany(maxclu, NSETBITS);
643## range of m is machine
644## retrieve (maxmach = max(m.mach_id))
3604fe12 645 maxmach++;
dfb56d6b 646 machs = (set_mask **)malloc((maxmach + 1) * sizeof(set_mask **));
647 bzero(machs, (maxmach + 1) * sizeof(int));
648
649## range of p is mcmap
650## retrieve (mid = p.mach_id, cid = p.clu_id) {
651 if (!(ms = machs[mid])) {
652 ms = machs[mid] = SET_CREATE();
653 SET_ZERO(ms);
654 }
655 SET_SET(cid, ms);
656## }
657
658## range of d is svc
659 for (mid = 1; mid < maxmach; mid++) {
660 if (!machs[mid])
661 continue;
662 ms = machs[mid];
dfb56d6b 663 for (cid = 1; cid < maxclu; cid++) {
664 if (SET_ISSET(cid, ms)) {
665## repeat retrieve (label = d.serv_label, data = d.serv_cluster)
666## where d.clu_id = @cid {
bd8a14a5 667 strtrim(label);
668 strtrim(data);
f575c498 669 fprintf(out,
670 "smsinternal-%d.cluster\tHS UNSPECA \"%s %s\"\n",
671 mid, label, data);
dfb56d6b 672## }
673 }
674 }
675
29904371 676 if (mach = hash_lookup(machines, mid)) {
677 for (p = machbuf; *mach && *mach != '.'; mach++)
678 *p++ = *mach;
679 *p = 0;
680 fprintf(out, "%s.cluster\tHS CNAME smsinternal-%d.cluster\n",
681 machbuf, mid);
682 }
dfb56d6b 683 for (id = mid + 1; id < maxmach; id++) {
684 if ((ps = machs[id]) && !SET_CMP(ms, ps)) {
685 free(ps);
686 machs[id] = NULL;
29904371 687 if (mach = hash_lookup(machines, id)) {
688 for (p = machbuf; *mach && *mach != '.'; mach++)
689 *p++ = *mach;
690 *p = 0;
691 fprintf(out,"%s.cluster\tHS CNAME smsinternal-%d.cluster\n",
692 machbuf, mid);
693 }
dfb56d6b 694 }
695 }
696 free(ms);
697 machs[mid] = NULL;
698 }
dfb56d6b 699
700## retrieve (name = c.#name, label = d.serv_label, data = d.serv_cluster)
701## where c.clu_id = d.clu_id {
bd8a14a5 702 strtrim(name);
703 strtrim(label);
704 strtrim(data);
dfb56d6b 705 fprintf(out, "%s.cluster\tHS UNSPECA \"%s %s\"\n",
706 name, label, data);
707## }
29904371 708## end transaction
709 free(machs);
dfb56d6b 710
711 if (fclose(out)) {
712 fprintf(stderr, "Unsuccessful close of cluster.db\n");
f575c498 713 exit(SMS_CCONFIG);
dfb56d6b 714 }
f575c498 715 fix_file(outf);
dfb56d6b 716 return(1);
717##}
718
719
720do_printers()
721##{
722 FILE *out;
f575c498 723 char outf[64], outft[64];
dfb56d6b 724 struct stat sb;
725 time_t ftime;
29904371 726## char name[17], rp[17], sd[33], rm[33], *filetime;
dfb56d6b 727## int flag;
728
729 sprintf(outf, "%s/printcap.db", HESIOD_DIR);
730
731 if (stat(outf, &sb) == 0) {
732 ftime = sb.st_mtime;
733 filetime = ingres_date_and_time(ftime);
734## retrieve (flag = int4(interval("min", tblstats.modtime - filetime)))
735## where tblstats.table = "printcap"
736 if (flag < 0) {
737 fprintf(stderr, "File printcap.db does not need to be rebuilt.\n");
738 return(0);
739 }
740 }
741
f575c498 742 sprintf(outft, "%s~", outf);
743 out = fopen(outft, "w");
dfb56d6b 744 if (!out) {
745 perror("cannot open printcap.db for write");
f575c498 746 exit(SMS_OCONFIG);
dfb56d6b 747 }
748
749 fprintf(stderr, "Building printcap.db\n");
750
751## range of p is printcap
29904371 752## retrieve (name = p.#name, rp = p.#rp, sd = p.dir, rm = machine.#name)
753## where machine.mach_id = p.mach_id {
bd8a14a5 754 strtrim(name);
29904371 755 strtrim(rp);
756 strtrim(sd);
757 strtrim(rm);
758 fprintf(out, "%s.pcap\tHS UNSPECA \"%s:rp=%s:rm=%s:sd=%s\"\n",
759 name, name, rp, rm, sd);
dfb56d6b 760## }
761
762 if (fclose(out)) {
763 fprintf(stderr, "Unsuccessful close of pcap.db\n");
f575c498 764 exit(SMS_CCONFIG);
dfb56d6b 765 }
f575c498 766 fix_file(outf);
dfb56d6b 767 return(1);
768##}
769
770
f575c498 771do_sloc()
dfb56d6b 772##{
f575c498 773 FILE *out, *old, *new;
bd8a14a5 774 char outf[64], outft[64], *mach;
dfb56d6b 775 struct stat sb;
776 time_t ftime;
f575c498 777 register int c;
bd8a14a5 778## char service[17], *filetime;
779## int port, flag1, flag2, id;
dfb56d6b 780
781 sprintf(outf, "%s/sloc.db", HESIOD_DIR);
782
783 if (stat(outf, &sb) == 0) {
784 ftime = sb.st_mtime;
785 filetime = ingres_date_and_time(ftime);
786## retrieve (flag1 = int4(interval("min", tblstats.modtime - filetime)))
787## where tblstats.table = "serverhosts"
788## retrieve (flag2 = int4(interval("min", tblstats.modtime - filetime)))
789## where tblstats.table = "machine"
790 if (flag1 < 0 && flag2 < 0) {
791 fprintf(stderr, "File sloc.db does not need to be rebuilt.\n");
f575c498 792 return(0);
dfb56d6b 793 }
794 }
795
f575c498 796 sprintf(outft, "%s~", outf);
797 out = fopen(outft, "w");
dfb56d6b 798 if (!out) {
799 perror("cannot open sloc.db for write");
f575c498 800 exit(SMS_OCONFIG);
dfb56d6b 801 }
802
803 fprintf(stderr, "Building sloc.db\n");
bd8a14a5 804 get_mach();
dfb56d6b 805
806## range of s is serverhosts
bd8a14a5 807## retrieve (service = s.#service, id = s.mach_id)
808## sort by #service {
809 strtrim(service);
810 if (mach = hash_lookup(machines, id))
811 fprintf(out, "%s.sloc\tHS UNSPECA %s\n", service, mach);
dfb56d6b 812## }
813
814 if (fclose(out)) {
815 fprintf(stderr, "Unsuccessful close of sloc.db\n");
f575c498 816 exit(SMS_CCONFIG);
817 }
818
bd8a14a5 819 fix_file(outf);
820 return(1);
f575c498 821##}
822
823do_service()
824##{
825 FILE *out;
826 char outf[64], outft[64];
827 struct stat sb;
828 time_t ftime;
829## char mach[33], service[33], protocol[9], altserv[129], *filetime;
830## int port, flag1, flag2;
dfb56d6b 831
dfb56d6b 832 sprintf(outf, "%s/service.db", HESIOD_DIR);
833
834 if (stat(outf, &sb) == 0) {
835 ftime = sb.st_mtime;
836 filetime = ingres_date_and_time(ftime);
837## retrieve (flag1 = int4(interval("min", tblstats.modtime - filetime)))
838## where tblstats.table = "services"
839 if (flag1 < 0) {
840 fprintf(stderr, "File service.db does not need to be rebuilt.\n");
841 return(0);
842 }
843 }
844
f575c498 845 sprintf(outft, "%s~", outf);
846 out = fopen(outft, "w");
dfb56d6b 847 if (!out) {
848 perror("cannot open service.db for write");
f575c498 849 exit(SMS_OCONFIG);
dfb56d6b 850 }
851
852 fprintf(stderr, "Building service.db\n");
853
854## range of s is services
855## retrieve (service = s.name, protocol = lowercase(s.#protocol),
856## port = s.#port) {
bd8a14a5 857 strtrim(service);
858 strtrim(protocol);
dfb56d6b 859 fprintf(out, "%s.service\tHS UNSPECA \"%s %s %d\"\n",
860 service, service, protocol, port);
861## }
862
f575c498 863## range of a is alias
864## retrieve (service = a.name, altserv = a.trans) where a.type = "SERVICE" {
bd8a14a5 865 strtrim(service);
866 strtrim(altserv);
f575c498 867 fprintf(out, "%s.service\tHS CNAME %s.service\n", service, altserv);
868## }
869
dfb56d6b 870 if (fclose(out)) {
871 fprintf(stderr, "Unsuccessful close of service.db\n");
f575c498 872 exit(SMS_CCONFIG);
dfb56d6b 873 }
f575c498 874 fix_file(outf);
dfb56d6b 875 return(1);
876##}
This page took 0.196775 seconds and 5 git commands to generate.