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