]> andersk Git - moira.git/blob - gen/hesiod.qc
f8347dd69e09e60841b0276c53dbbcd850d36779
[moira.git] / gen / hesiod.qc
1 /* $Header$
2  *
3  * This generates the zone files necessary to load a hesiod server.
4  * The following zones are generated: passwd, uid, pobox, group,
5  * grplist, gid, filsys, cluster, pcap, sloc, service.
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>.
10  */
11
12 #include <mit-copyright.h>
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>
19 #include <ctype.h>
20
21
22 #define HESIOD_DIR      "/u1/sms/dcm/hesiod"
23
24 #define min(x,y)        ((x) < (y) ? (x) : (y))
25 struct hash *machines = NULL;
26 struct hash *users = NULL;
27 char *whoami = "hesiod.gen";
28
29 struct grp {
30     struct grp *next;
31     int id;
32 };
33 struct user {
34     char name[9];
35     struct grp *lists;
36 };
37
38 char *malloc(), *strsave();
39 char *ingres_date_and_time(), *ingres_time(), *ingres_date();
40
41 main(argc, argv)
42 int argc;
43 char **argv;
44 {
45     char cmd[64];
46     struct stat sb;
47     int changed = 0;
48     int ingerr();
49
50     if (argc > 2) {
51         fprintf(stderr, "usage: %s [outfile]\n", argv[0]);
52         exit(SMS_ARGS);
53     }
54
55     IIseterr(ingerr);
56
57 ##  ingres sms
58 ##  set lockmode session where level = table
59
60     changed = do_passwd();
61     changed += do_filsys();
62     changed += do_cluster();
63     changed += do_printers();
64     changed += do_sloc();
65     changed += do_service();
66     changed += do_groups();
67
68 ##  exit
69
70     if (!changed) {
71         fprintf(stderr, "No files updated.\n");
72         if (argc == 2 && stat(argv[1], &sb) == 0)
73           exit(SMS_NO_CHANGE);
74     }
75
76     if (argc == 2) {
77         fprintf(stderr, "Building tar file.\n");
78         sprintf(cmd, "cd %s; tar cf %s .", HESIOD_DIR, argv[1]);
79         if (system(cmd))
80           exit(SMS_TAR_FAIL);
81     }
82
83     exit(SMS_SUCCESS);
84 }
85
86
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
94 static 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
113 get_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
128 do_passwd()
129 ##{
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;
133     time_t ftime;
134     struct user *u;
135     char *mach;
136 ##  char login[9], shell[33], fullname[33], oa[17], op[13], hp[17], *filetime;
137 ##  char nn[17], ptype[9];
138 ##  int uid, flag1, flag2, id, pid;
139
140     sprintf(poutf, "%s/passwd.db", HESIOD_DIR);
141     sprintf(uoutf, "%s/uid.db", HESIOD_DIR);
142     sprintf(boutf, "%s/pobox.db", HESIOD_DIR);
143
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);
147         filetime = ingres_date_and_time(ftime);
148 ##      retrieve (flag1 = int4(interval("min", tblstats.modtime - filetime)))
149 ##          where tblstats.table = "users"
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");
154             return(0);
155       }
156     }
157
158     sprintf(poutft, "%s~", poutf);
159     pout = fopen(poutft, "w");
160     if (!pout) {
161         perror("cannot open passwd.db~ for write");
162         exit(SMS_OCONFIG);
163     }
164     sprintf(uoutft, "%s~", uoutf);
165     uout = fopen(uoutft, "w");
166     if (!uout) {
167         perror("cannot open uid.db~ for write");
168         exit(SMS_OCONFIG);
169     }
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     }
176
177     fprintf(stderr, "Building passwd.db, uid.db, and pobox.db\n");
178     get_mach();
179
180     users = create_hash(10000);
181 ##  range of u is users
182 ##  retrieve (login = u.#login, uid = u.#uid, shell = u.#shell,
183 ##            fullname = u.#fullname, nn = u.nickname, oa = u.office_addr,
184 ##            op = u.office_phone, hp = u.home_phone, id = u.users_id,
185 ##            pid = u.pop_id, ptype = u.potype)
186 ##      where u.status = 1 {
187             strtrim(login);
188             dequote(fullname);
189             dequote(nn);
190             dequote(oa);
191             dequote(op);
192             dequote(hp);
193             dequote(shell);
194             u = (struct user *) malloc(sizeof(struct user));
195             strcpy(u->name, login);
196             u->lists = NULL;
197             hash_store(users, id, u);
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);
200             fprintf(uout, "%d.uid\tHS CNAME %s.passwd\n", uid, login);
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             }
205 ##  }
206
207     if (fclose(pout) || fclose(uout) || fclose(bout)) {
208         fprintf(stderr, "Unsuccessful file close of passwd.db, uid.db, or pobox.db\n");
209         exit(SMS_CCONFIG);
210     }
211     fix_file(poutf);
212     fix_file(uoutf);
213     fix_file(boutf);
214     return(1);
215 ##}
216
217
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
224 do_groups()
225 ##{
226     FILE *iout, *gout, *lout;
227     char ioutf[64], goutf[64], loutf[64], buf[512], *l;
228     struct hash *groups;
229     register struct bucket *b, **p;
230     struct grp *g;
231     struct user *u;
232     struct stat isb, gsb, lsb;
233     time_t ftime;
234     register struct save_queue *sq;
235     struct save_queue *sq_create();
236     register int i;
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
260     sprintf(buf, "%s~", ioutf);
261     iout = fopen(buf, "w");
262     if (!iout) {
263         perror("cannot open gid.db for write");
264         exit(SMS_OCONFIG);
265     }
266     sprintf(buf, "%s~", goutf);
267     gout = fopen(buf, "w");
268     if (!gout) {
269         perror("cannot open group.db for write");
270         exit(SMS_OCONFIG);
271     }
272     sprintf(buf, "%s~", loutf);
273     lout = fopen(buf, "w");
274     if (!lout) {
275         perror("cannot open grplist.db for write");
276         exit(SMS_OCONFIG);
277     }
278
279     fprintf(stderr, "Building gid.db, group.db, and grplist.db\n");
280
281     /* make space for group list */
282     groups = create_hash(15000);
283
284     /* retrieve simple groups */
285 ##  range of l is list
286 ##  begin transaction
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
291 ##  retrieve (name = l.#name, gid = l.#gid, lid = l.list_id)
292 ##      where l.group != 0 and l.active != 0 {
293             strtrim(name);
294             sprintf(buf, "%s:%d", name, gid);
295             hash_store(groups, lid, strsave(buf));
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
301     fflush(iout);
302     fflush(gout);
303
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
308 ##  retrieve (name = list.#name, gid = list.#gid, lid = l.list_id)
309 ##      where l.active != 0 and list.active != 0 and m.member_type = "LIST" and
310 ##              m.member_id = l.list_id and m.list_id = list.list_id and
311 ##              list.group != 0 {
312         strtrim(name);
313         if (l = hash_lookup(groups, lid)) {
314             sprintf(buf, "%s:%s:%d", l, name, gid);
315             free(l);
316         } else {
317             sprintf(buf, "%s:%d", name, gid);
318         }
319         hash_store(groups, lid, strsave(buf));
320         sq_save_unique_data(sq, lid);
321 ##  }
322
323     while (sq_get_data(sq, &id)) {
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 {
326             if (l = hash_lookup(groups, lid)) {
327                 sprintf(buf, "%s:%s", l, hash_lookup(groups, id));
328                 free(l);
329                 l = strsave(buf);
330             } else {
331                 l = hash_lookup(groups, id);
332             }
333             hash_store(groups, lid, l);
334             sq_save_unique_data(sq, lid);
335 ##      }
336     }
337     sq_destroy(sq);
338
339     /* now do grplists */
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);
348 ##      }
349     }
350
351 ##  repeat retrieve (lid = m.list_id, id = m.member_id)
352 ##      where m.member_type = "USER" {
353       if ((u = (struct user *) hash_lookup(users, id)) &&
354           (hash_lookup(groups, lid) != NULL)) {
355           g = (struct grp *) malloc(sizeof(struct grp));
356           g->next = u->lists;
357           u->lists = g;
358           g->id = lid;
359       }
360 ##  }
361 ##  end transaction
362
363     for (p = &(users->data[users->size - 1]); p >= users->data; p--) {
364         for (b = *p; b; b = b->next) {
365             i = 0;
366             sprintf(buf, "%s.grplist\tHS UNSPECA \"",
367                     ((struct user *)b->data)->name);
368             for (g = ((struct user *)b->data)->lists; g; g = g->next)
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             }
380             if (i > 0)
381                 fputs(buf, lout);
382         }
383     }
384
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  */
390     sq_destroy(sq);
391     {
392         register char **p;
393         for (p = &groups[maxid-1]; p >= groups; p--)
394           if (*p)
395             free(*p);
396     }
397     free(groups);
398 #endif
399
400     if (fclose(iout) || fclose(gout) || fclose(lout)) {
401         fprintf(stderr, "Unsuccessful close of gid.db, group.db, or grplist.db\n");
402         exit(SMS_CCONFIG);
403     }
404     fix_file(ioutf);
405     fix_file(goutf);
406     fix_file(loutf);
407     return(1);
408 ##}
409
410
411 #define MAXGROUPS 256
412
413 remove_duplicate_groups(p)
414 register 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
444 do_filsys()
445 ##{
446     FILE *out;
447     char outf[64], outft[64], *mach, machbuf[128], *group;
448     register char *p;
449     struct stat sb;
450     time_t ftime;
451     struct save_queue *sq, *sq_create();
452 ##  char name[33], type[9], loc[33], access[2], mount[33], trans[257];
453 ##  char *filetime, comments[65];
454 ##  int flag1, flag2, flag3, flag4, id, fid;
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"
467 ##      retrieve (flag4 = int4(interval("min", tblstats.modtime - filetime)))
468 ##          where tblstats.table = "fsgroup"
469         if (flag1 < 0 && flag2 < 0 && flag3 < 0 && flag4 < 0) {
470             fprintf(stderr, "File filsys.db does not need to be rebuilt.\n");
471             return(0);
472       }
473     }
474
475     sprintf(outft, "%s~", outf);
476     out = fopen(outft, "w");
477     if (!out) {
478         perror("cannot open filsys.db for write");
479         exit(SMS_OCONFIG);
480     }
481
482     fprintf(stderr, "Building filsys.db\n");
483     get_mach();
484     sq = sq_create();
485
486 ##  range of f is filesys
487 ##  retrieve (name = f.label, type = f.#type, loc = f.#name, id = f.mach_id,
488 ##            access = f.#access, mount = f.#mount, comments = f.#comments,
489 ##            fid = f.filsys_id) {
490             strtrim(name);
491             strtrim(type);
492             if (!strcmp(type, "NFS") || !strcmp(type, "RVD")) {
493                 strtrim(loc);
494                 strtrim(access);
495                 strtrim(mount);
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                 }
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);
513             } else if (!strcmp(type, "ERR")) {
514                 strtrim(comments);
515                 fprintf(out, "%s.filsys\tHS UNSPECA \"ERR %s\"\n",
516                         name, comments);
517             } else if (!strcmp(type, "FSGROUP")) {
518                 sprintf(trans, "%s:%d", name, fid);
519                 sq_save_data(sq, strsave(trans));
520             }
521 ##  }
522
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                 }
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);
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);
563
564 ##  range of a is alias
565 ##  retrieve (name = a.#name, trans = a.#trans) where a.#type = "FILESYS" {
566         strtrim(name);
567         strtrim(trans);
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");
573         exit(SMS_CCONFIG);
574     }
575     fix_file(outf);
576     return(1);
577 ##}
578
579
580 /*
581  * Modified from sys/types.h:
582  */
583 int setsize;    /* = howmany(setbits, NSETBITS) */
584
585 typedef 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
599 do_cluster()
600 ##{
601     FILE *out;
602     char outf[64], outft[64], *mach, machbuf[33], *p;
603     struct stat sb;
604     time_t ftime;
605 ##  int flag1, flag2, flag3, flag4, maxmach, maxclu, mid, cid, id;
606 ##  char name[33], label[17], data[33], *filetime;
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
628     sprintf(outft, "%s~", outf);
629     out = fopen(outft, "w");
630     if (!out) {
631         perror("cannot open cluster.db for write");
632         exit(SMS_OCONFIG);
633     }
634
635     fprintf(stderr, "Building cluster.db\n");
636     get_mach();
637
638 ##  range of c is cluster
639 ##  begin transaction
640 ##  retrieve (maxclu = max(c.clu_id))
641     maxclu++;
642     setsize = howmany(maxclu, NSETBITS);
643 ##  range of m is machine
644 ##  retrieve (maxmach = max(m.mach_id))
645     maxmach++;
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];
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 {
667                     strtrim(label);
668                     strtrim(data);
669                     fprintf(out,
670                             "smsinternal-%d.cluster\tHS UNSPECA \"%s %s\"\n",
671                             mid, label, data);
672 ##              }
673             }
674         }
675
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         }
683         for (id = mid + 1; id < maxmach; id++) {
684             if ((ps = machs[id]) && !SET_CMP(ms, ps)) {
685                 free(ps);
686                 machs[id] = NULL;
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                 }
694             }
695         }
696         free(ms);
697         machs[mid] = NULL;
698     }
699
700 ##  retrieve (name = c.#name, label = d.serv_label, data = d.serv_cluster)
701 ##      where c.clu_id = d.clu_id {
702             strtrim(name);
703             strtrim(label);
704             strtrim(data);
705             fprintf(out, "%s.cluster\tHS UNSPECA \"%s %s\"\n",
706                     name, label, data);
707 ##  }
708 ##  end transaction
709     free(machs);
710
711     if (fclose(out)) {
712         fprintf(stderr, "Unsuccessful close of cluster.db\n");
713         exit(SMS_CCONFIG);
714     }
715     fix_file(outf);
716     return(1);
717 ##}
718
719
720 do_printers()
721 ##{
722     FILE *out;
723     char outf[64], outft[64];
724     struct stat sb;
725     time_t ftime;
726 ##  char name[17], rp[17], sd[33], rm[33], *filetime;
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
742     sprintf(outft, "%s~", outf);
743     out = fopen(outft, "w");
744     if (!out) {
745         perror("cannot open printcap.db for write");
746         exit(SMS_OCONFIG);
747     }
748
749     fprintf(stderr, "Building printcap.db\n");
750
751 ##  range of p is printcap
752 ##  retrieve (name = p.#name, rp = p.#rp, sd = p.dir, rm = machine.#name)
753 ##    where machine.mach_id = p.mach_id {
754         strtrim(name);
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);
760 ##  }
761
762     if (fclose(out)) {
763         fprintf(stderr, "Unsuccessful close of pcap.db\n");
764         exit(SMS_CCONFIG);
765     }
766     fix_file(outf);
767     return(1);
768 ##}
769
770
771 do_sloc()
772 ##{
773     FILE *out, *old, *new;
774     char outf[64], outft[64], *mach;
775     struct stat sb;
776     time_t ftime;
777     register int c;
778 ##  char service[17], *filetime;
779 ##  int port, flag1, flag2, id;
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");
792             return(0);
793       }
794     }
795
796     sprintf(outft, "%s~", outf);
797     out = fopen(outft, "w");
798     if (!out) {
799         perror("cannot open sloc.db for write");
800         exit(SMS_OCONFIG);
801     }
802
803     fprintf(stderr, "Building sloc.db\n");
804     get_mach();
805
806 ##  range of s is serverhosts
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);
812 ##  }
813
814     if (fclose(out)) {
815         fprintf(stderr, "Unsuccessful close of sloc.db\n");
816         exit(SMS_CCONFIG);
817     }
818
819     fix_file(outf);
820     return(1);
821 ##}
822
823 do_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;
831
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
845     sprintf(outft, "%s~", outf);
846     out = fopen(outft, "w");
847     if (!out) {
848         perror("cannot open service.db for write");
849         exit(SMS_OCONFIG);
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) {
857         strtrim(service);
858         strtrim(protocol);
859         fprintf(out, "%s.service\tHS UNSPECA \"%s %s %d\"\n",
860                 service, service, protocol, port);
861 ##  }
862
863 ##  range of a is alias
864 ##  retrieve (service = a.name, altserv = a.trans) where a.type = "SERVICE" {
865         strtrim(service);
866         strtrim(altserv);
867         fprintf(out, "%s.service\tHS CNAME %s.service\n", service, altserv);
868 ##    }
869
870     if (fclose(out)) {
871         fprintf(stderr, "Unsuccessful close of service.db\n");
872         exit(SMS_CCONFIG);
873     }
874     fix_file(outf);
875     return(1);
876 ##}
This page took 0.097865 seconds and 3 git commands to generate.