]> andersk Git - moira.git/blame - gen/boot.pc
Include CUPS-PRINT servers in generated tftp config files, too.
[moira.git] / gen / boot.pc
CommitLineData
a428372f 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
23EXEC SQL INCLUDE sqlca;
24
25RCSID("$Header$");
26
27char *whoami = "boot.gen";
28char *db = "moira/moira";
29
30void sqlerr(void);
31
32int main(int argc, char **argv)
33{
34 EXEC SQL BEGIN DECLARE SECTION;
35 char name[MACHINE_NAME_SIZE], hwaddr[MACHINE_HWADDR_SIZE];
d49d3ba8 36 char ohwaddr[MACHINE_HWADDR_SIZE], hwtype[PRINTERS_HWTYPE_SIZE];
a428372f 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. */
646eea80 61 EXEC SQL SELECT COUNT(service) INTO :alcount FROM serverhosts sh
62 WHERE sh.service = 'PRINT' or sh.service = 'CUPS-PRINT';
a428372f 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
646eea80 67 WHERE m.mach_id = sh.mach_id AND
68 (sh.service = 'PRINT' OR sh.service = 'CUPS-PRINT');
a428372f 69 EXEC SQL OPEN csr_spool;
70 for (i = 0; i < alcount; i++)
71 {
72 EXEC SQL FETCH csr_spool INTO :host, :types;
73 if (sqlca.sqlcode)
74 sqlerr();
75 strcpy(allowlist[i].host, strtrim(host));
76 strcpy(allowlist[i].types, strtrim(types));
77 }
78 EXEC SQL CLOSE csr_spool;
79
80 /* Now build the tar file. */
81 sprintf(filename, "%s/boot.out", DCM_DIR);
82 tf = tarfile_open(filename);
83
84 /* Build bootptab.print */
85
86 out = tarfile_start(tf, "/var/boot/bootptab.print", 0755, 0, 0,
87 "root", "root", now);
a8ef8740 88 ohwaddr[0] = '\0';
a428372f 89 EXEC SQL DECLARE csr_boot CURSOR FOR
90 SELECT LOWER(m.name), m.hwaddr, m.address, m2.address,
d49d3ba8 91 pr.location, pr.contact, pr.hwtype
a428372f 92 FROM printers pr, machine m, machine m2
d49d3ba8 93 WHERE pr.type != 'ALIAS' AND pr.mach_id != 0
a428372f 94 AND pr.mach_id = m.mach_id AND pr.loghost = m2.mach_id
a8ef8740 95 ORDER BY m.hwaddr;
a428372f 96 EXEC SQL OPEN csr_boot;
97 while (1)
98 {
99 EXEC SQL FETCH csr_boot INTO :name, :hwaddr, :addr, :logaddr,
d49d3ba8 100 :location, :contact, :hwtype;
a428372f 101 if (sqlca.sqlcode)
102 break;
103
104 strtrim(hwaddr);
105 if (!*hwaddr || !strcasecmp(hwaddr, "unknown"))
106 continue;
a8ef8740 107 if (!strcmp(hwaddr, ohwaddr))
108 {
109 fprintf(stderr, "Ignoring duplicate hwaddr %s\n", hwaddr);
110 continue;
111 }
112 strcpy(ohwaddr, hwaddr);
a428372f 113
114 strtrim(name);
115 strtrim(addr);
116 strtrim(logaddr);
117 strtrim(location);
118 strtrim(contact);
d49d3ba8 119 strtrim(hwtype);
a428372f 120 strcpy(shortname, name);
121 if ((p = strchr(shortname, '.')))
122 *p = '\0';
123
124 if ((p = strchr(addr, '.')) && (q = strchr(++p, '.')))
125 {
126 strncpy(net, p, q - p);
127 net[q - p] = '\0';
128 }
129 else
130 continue;
131
132 fprintf(out, "# %s: %s\n# contact: %s\n%s:\\\n\t:tc=net%s.global:\\\n"
133 "\t:ht=ethernet:\\\n\t:ha=%s:\\\n\t:ip=%s:\\\n"
065f22a3 134 "\t:lg=%s:\\\n\t:vm=rfc1048:",
d49d3ba8 135 shortname, location, contact, name, net, hwaddr, addr, logaddr);
0dfbdbd5 136 if (!strncmp(hwtype, "HP", 2))
065f22a3 137 fprintf(out, "\\\n\t:T144=\"/hp/%s\":", shortname);
138 fprintf(out, "\n\n");
a428372f 139 }
140 EXEC SQL CLOSE csr_boot;
141 tarfile_end(tf);
142
143 /* Now generate /var/boot/hp/ files */
144 EXEC SQL DECLARE csr_boot2 CURSOR FOR
1712cf93 145 SELECT LOWER(m.name), m.hwaddr, m2.address, m3.address, pr.type,
a428372f 146 pr.location, pr.contact, TO_CHAR(pr.modtime, :unixtime_fmt)
147 FROM printers pr, machine m, machine m2, machine m3
0dfbdbd5 148 WHERE pr.hwtype LIKE 'HP%' AND pr.mach_id != 0
a428372f 149 AND pr.mach_id = m.mach_id AND pr.rm = m2.mach_id
2a5c1709 150 AND pr.loghost = m3.mach_id AND pr.type != 'ALIAS';
a428372f 151 EXEC SQL OPEN csr_boot2;
152 while (1)
153 {
1712cf93 154 EXEC SQL FETCH csr_boot2 INTO :name, :hwaddr, :addr, :logaddr,
155 :type, :location, :contact, :modtime;
a428372f 156 if (sqlca.sqlcode)
157 break;
158
1712cf93 159 strtrim(hwaddr);
160 if (!*hwaddr || !strcasecmp(hwaddr, "unknown"))
161 continue;
162
a428372f 163 strtrim(name);
164 strtrim(addr);
165 strtrim(logaddr);
166 strtrim(type);
167 strtrim(location);
168 strtrim(contact);
169 strcpy(shortname, name);
170 if ((p = strchr(shortname, '.')))
171 *p = '\0';
172
d49d3ba8 173 /* We create it as foo.new so boot.sh can append the passwords
174 * and other data and rename it.
175 */
176 sprintf(filename, "/var/boot/hp/%s.new", shortname);
a428372f 177 out = tarfile_start(tf, filename, 0755, 0, 0, "root", "root",
178 unixtime(modtime));
179
2a5c1709 180 fprintf(out, "name: %s\nlocation: %s\ncontact: %s\n\n", shortname,
181 *location ? location : "unknown",
182 *contact ? contact : "unknown");
183 if (*logaddr)
184 fprintf(out, "trap-dest: %s\nallow: %s\n", logaddr, logaddr);
185 fprintf(out, "allow: %s\n", addr);
a428372f 186 typelen = strlen(type);
187 for (i = allows = 0; i < alcount && allows < 9; i++)
188 {
189 char *p;
190
191 /* Don't list the spoolhost twice. */
192 if (!strcmp(allowlist[i].host, addr))
193 continue;
194
195 p = strstr(allowlist[i].types, type);
196 if (!p)
197 continue;
198
199 /* Make sure the match was real, and not just because one type
200 * is a substring of another type.
201 */
202 if (p != allowlist[i].types && *(p - 1) != ',' && *(p - 1) != ' ')
203 continue;
204 p += typelen;
205 if (*p && *p != ',' && *p != ' ')
206 continue;
207
208 fprintf(out, "allow: %s\n", allowlist[i].host);
209 allows++;
210 }
a428372f 211 /* Rest of data is same for all printers and is appended from a
212 * a file on the boot server.
213 */
214
215 tarfile_end(tf);
216 }
217
218 tarfile_close(tf);
219
220 exit(MR_SUCCESS);
221}
222
223void sqlerr(void)
224{
225 db_error(sqlca.sqlcode);
226}
This page took 0.088888 seconds and 5 git commands to generate.