]> andersk Git - moira.git/blob - gen/boot.pc
sort bootptab entries by hwaddr and in the process avoid duplicates.
[moira.git] / gen / boot.pc
1 /* $Id$
2  *
3  * This generates the bootptab and associated files.
4  *
5  * Copyright (C) 1992-1998 by the Massachusetts Institute of Technology.
6  * For copying and distribution information, please see the file
7  * <mit-copyright.h>.
8  */
9
10 #include <mit-copyright.h>
11 #include <moira.h>
12 #include <moira_site.h>
13
14 #include <sys/types.h>
15
16 #include <ctype.h>
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
20
21 #include "util.h"
22
23 EXEC SQL INCLUDE sqlca;
24
25 RCSID("$Header$");
26
27 char *whoami = "boot.gen";
28 char *db = "moira/moira";
29
30 void sqlerr(void);
31
32 int main(int argc, char **argv)
33 {
34   EXEC SQL BEGIN DECLARE SECTION;
35   char name[MACHINE_NAME_SIZE], hwaddr[MACHINE_HWADDR_SIZE];
36   char ohwaddr[MACHINE_HWADDR_SIZE];
37   char addr[MACHINE_ADDRESS_SIZE], location[PRINTERS_LOCATION_SIZE];
38   char contact[PRINTERS_CONTACT_SIZE], logaddr[MACHINE_ADDRESS_SIZE];
39   char modtime[PRINTERS_MODTIME_SIZE], type[PRINTERS_TYPE_SIZE];
40   char *unixtime_fmt = UNIXTIME_FMT;
41   char host[MACHINE_ADDRESS_SIZE], types[SERVERHOSTS_VALUE3_SIZE];
42   int mid, alcount;
43   EXEC SQL END DECLARE SECTION;
44   char shortname[MACHINE_NAME_SIZE], net[MACHINE_ADDRESS_SIZE];
45   char filename[MAXPATHLEN];
46   struct {
47     char types[SERVERHOSTS_VALUE3_SIZE];
48     char host[MACHINE_ADDRESS_SIZE];
49   } *allowlist;
50   char *p, *q;
51   int i, allows, typelen;
52   TARFILE *tf;
53   FILE *out;
54   time_t now = time(NULL);
55
56   EXEC SQL CONNECT :db;
57
58   EXEC SQL WHENEVER SQLERROR DO sqlerr();
59
60   /* Get print spoolers for allow lists. */
61   EXEC SQL SELECT COUNT(service) INTO :alcount FROM serverhosts
62     WHERE service = 'PRINT';
63   allowlist = malloc(alcount * sizeof(*allowlist));
64
65   EXEC SQL DECLARE csr_spool CURSOR FOR
66     SELECT m.address, sh.value3 FROM machine m, serverhosts sh
67     WHERE m.mach_id = sh.mach_id AND sh.service = 'PRINT';
68   EXEC SQL OPEN csr_spool;
69   for (i = 0; i < alcount; i++)
70     {
71       EXEC SQL FETCH csr_spool INTO :host, :types;
72       if (sqlca.sqlcode)
73         sqlerr();
74       strcpy(allowlist[i].host, strtrim(host));
75       strcpy(allowlist[i].types, strtrim(types));
76     }
77   EXEC SQL CLOSE csr_spool;
78
79   /* Now build the tar file. */
80   sprintf(filename, "%s/boot.out", DCM_DIR);
81   tf = tarfile_open(filename);
82
83   /* Build bootptab.print */
84
85   out = tarfile_start(tf, "/var/boot/bootptab.print", 0755, 0, 0,
86                       "root", "root", now);
87   ohwaddr[0] = '\0';
88   EXEC SQL DECLARE csr_boot CURSOR FOR
89     SELECT LOWER(m.name), m.hwaddr, m.address, m2.address,
90     pr.location, pr.contact
91     FROM printers pr, machine m, machine m2
92     WHERE pr.hwtype = 'HP' AND pr.mach_id != 0
93     AND pr.mach_id = m.mach_id AND pr.loghost = m2.mach_id
94     AND pr.type != 'ALIAS'
95     ORDER BY m.hwaddr;
96   EXEC SQL OPEN csr_boot;
97   while (1)
98     {
99       EXEC SQL FETCH csr_boot INTO :name, :hwaddr, :addr, :logaddr,
100         :location, :contact;
101       if (sqlca.sqlcode)
102         break;
103
104       strtrim(hwaddr);
105       if (!*hwaddr || !strcasecmp(hwaddr, "unknown"))
106         continue;
107       if (!strcmp(hwaddr, ohwaddr))
108         {
109           fprintf(stderr, "Ignoring duplicate hwaddr %s\n", hwaddr);
110           continue;
111         }
112       strcpy(ohwaddr, hwaddr);
113
114       strtrim(name);
115       strtrim(addr);
116       strtrim(logaddr);
117       strtrim(location);
118       strtrim(contact);
119       strcpy(shortname, name);
120       if ((p = strchr(shortname, '.')))
121         *p = '\0';
122
123       if ((p = strchr(addr, '.')) && (q = strchr(++p, '.')))
124         {
125           strncpy(net, p, q - p);
126           net[q - p] = '\0';
127         }
128       else
129         continue;
130
131       fprintf(out, "# %s: %s\n# contact: %s\n%s:\\\n\t:tc=net%s.global:\\\n"
132               "\t:ht=ethernet:\\\n\t:ha=%s:\\\n\t:ip=%s:\\\n"
133               "\t:lg=%s:\\\n\t:T144=\"/hp/%s\":\\\n\t:vm=rfc1048:\n\n",
134               shortname, location, contact, name, net, hwaddr, addr, logaddr,
135               shortname);
136     }
137   EXEC SQL CLOSE csr_boot;
138   tarfile_end(tf);
139
140   /* Now generate /var/boot/hp/ files */
141   EXEC SQL DECLARE csr_boot2 CURSOR FOR
142     SELECT LOWER(m.name), m.hwaddr, m2.address, m3.address, pr.type,
143     pr.location, pr.contact, TO_CHAR(pr.modtime, :unixtime_fmt)
144     FROM printers pr, machine m, machine m2, machine m3
145     WHERE pr.hwtype = 'HP' AND pr.mach_id != 0
146     AND pr.mach_id = m.mach_id AND pr.rm = m2.mach_id
147     AND pr.loghost = m3.mach_id AND pr.type != 'ALIAS';
148   EXEC SQL OPEN csr_boot2;
149   while (1)
150     {
151       EXEC SQL FETCH csr_boot2 INTO :name, :hwaddr, :addr, :logaddr,
152         :type, :location, :contact, :modtime;
153       if (sqlca.sqlcode)
154         break;
155
156       strtrim(hwaddr);
157       if (!*hwaddr || !strcasecmp(hwaddr, "unknown"))
158         continue;
159
160       strtrim(name);
161       strtrim(addr);
162       strtrim(logaddr);
163       strtrim(type);
164       strtrim(location);
165       strtrim(contact);
166       strcpy(shortname, name);
167       if ((p = strchr(shortname, '.')))
168         *p = '\0';
169
170       sprintf(filename, "/var/boot/hp/%s", shortname);
171       out = tarfile_start(tf, filename, 0755, 0, 0, "root", "root",
172                           unixtime(modtime));
173
174       fprintf(out, "name: %s\nlocation: %s\ncontact: %s\n\n", shortname,
175               *location ? location : "unknown",
176               *contact ? contact : "unknown");
177       if (*logaddr)
178         fprintf(out, "trap-dest: %s\nallow: %s\n", logaddr, logaddr);
179       fprintf(out, "allow: %s\n", addr);
180       typelen = strlen(type);
181       for (i = allows = 0; i < alcount && allows < 9; i++)
182         {
183           char *p;
184
185           /* Don't list the spoolhost twice. */
186           if (!strcmp(allowlist[i].host, addr))
187             continue;
188
189           p = strstr(allowlist[i].types, type);
190           if (!p)
191             continue;
192
193           /* Make sure the match was real, and not just because one type
194            * is a substring of another type.
195            */
196           if (p != allowlist[i].types && *(p - 1) != ',' && *(p - 1) != ' ')
197             continue;
198           p += typelen;
199           if (*p && *p != ',' && *p != ' ')
200             continue;
201
202           fprintf(out, "allow: %s\n", allowlist[i].host);
203           allows++;
204         }
205       /* Rest of data is same for all printers and is appended from a
206        * a file on the boot server.
207        */
208
209       tarfile_end(tf);
210     }
211
212   tarfile_close(tf);
213
214   exit(MR_SUCCESS);
215 }
216
217 void sqlerr(void)
218 {
219   db_error(sqlca.sqlcode);
220 }
This page took 0.111789 seconds and 5 git commands to generate.