]> andersk Git - moira.git/blame - dbck/phase1.pc
Enlarge magic constant. Fix this a better way at some point.
[moira.git] / dbck / phase1.pc
CommitLineData
7ac48069 1/* $Id$
68bbc9c3 2 *
7ac48069 3 * (c) Copyright 1988-1998 by the Massachusetts Institute of Technology.
4 * For copying and distribution information, please see the file
5 * <mit-copyright.h>.
68bbc9c3 6 */
7
8#include <mit-copyright.h>
9#include <moira.h>
7ac48069 10#include "dbck.h"
11
ab05f33a 12#include <stdio.h>
5eaef520 13#include <stdlib.h>
7ac48069 14#include <string.h>
208a4f4a 15EXEC SQL INCLUDE sqlca;
16
7ac48069 17RCSID("$Header$");
68bbc9c3 18
4b9e5c72 19EXEC SQL WHENEVER SQLERROR DO dbmserr();
7ac48069 20int show_user_id(void *user);
21void handle_duplicate_logins(struct save_queue *sq);
22void fix_user_id(void *user);
23void cant_fix(void *id);
24int show_mach_id(void *machine);
25int show_mach_name(void *machine);
26void fix_mach_id(void *machine);
27int show_snet_name(void *subnet);
28int show_clu_id(void *cluster);
29int show_clu_name(void *cluster);
30void fix_clu_id(void *cluster);
31int show_list_id(void *list);
32int show_list_name(void *list);
33void fix_list_id(void *list);
34int show_fs_id(void *filesys);
35void fix_fs_id(void *filesys);
36int show_fs_name(void *fs);
37int show_np_id(void *nfsphys);
38void fix_np_id(void *nfsphys);
39int show_str_id(void *string);
40int print_str_id(void *id);
41void print_dup_map(int key, void *data, void *hint);
cb884d06 42int show_cnt_name(void *cnt);
7ac48069 43
44int show_user_id(void *user)
68bbc9c3 45{
7ac48069 46 struct user *u = user;
5eaef520 47 printf("User %s (%s, status %d) has duplicate ID\n",
48 u->login, u->fullname, u->status);
49 return 0;
68bbc9c3 50}
51
7ac48069 52void handle_duplicate_logins(struct save_queue *sq)
68bbc9c3 53{
5eaef520 54 struct user *u, *uu, *tmp;
55
56 uu = NULL;
57 if (sq_get_data(sq, &uu))
58 {
59 while (sq_get_data(sq, &u))
60 {
61 if (!strcmp(u->login, uu->login))
62 {
63 if (uu->status == 1 || u->status == 0)
64 {
65 tmp = u;
66 u = uu;
67 uu = tmp;
68 }
69 printf("User %s (%s, status %d) and\n",
70 u->login, u->fullname, u->status);
71 printf("User %s (%s, status %d) have duplicate logins\n",
72 uu->login, uu->fullname, uu->status);
73 if (!strcmp(u->fullname, uu->fullname) &&
7ac48069 74 single_fix("Delete the second one", 0))
68bbc9c3 75 single_delete("users", "users_id", uu->users_id);
7ac48069 76 else if (single_fix("Unregister the second one", 0))
5eaef520 77 {
78 EXEC SQL BEGIN DECLARE SECTION;
79 int id = uu->users_id, rowcount;
80 EXEC SQL END DECLARE SECTION;
81
82 EXEC SQL UPDATE users
83 SET login = '#' || CHAR(users.unix_uid), status = 0
84 WHERE users_id = :id;
85 rowcount = sqlca.sqlerrd[2];
86 if (rowcount > 0)
87 {
88 printf("%d entr%s fixed\n", rowcount,
89 rowcount == 1 ? "y" : "ies");
90 }
91 else
92 printf("Not fixed\n");
93 modified("users");
94 }
95 }
96 else
68bbc9c3 97 uu = u;
98 }
99 }
100}
101
7ac48069 102void fix_user_id(void *user)
68bbc9c3 103{
7ac48069 104 struct user *u = user;
5eaef520 105 u->users_id = generic_fix_id("users", "users_id", "login",
106 u->users_id, u->login);
68bbc9c3 107}
108
109
7ac48069 110void cant_fix(void *id)
68bbc9c3 111{
5eaef520 112 printf("Sorry, don't know how to fix that\n");
68bbc9c3 113}
114
7ac48069 115int show_mach_id(void *machine)
68bbc9c3 116{
7ac48069 117 struct machine *m = machine;
5eaef520 118 printf("Machine %s has duplicate ID %d\n", m->name, m->mach_id);
119 return 0;
68bbc9c3 120}
121
7ac48069 122int show_mach_name(void *machine)
68bbc9c3 123{
7ac48069 124 struct machine *m = machine;
5eaef520 125 printf("Machine %s (%d) has duplicate name\n", m->name, m->mach_id);
126 return 0;
68bbc9c3 127}
128
7ac48069 129void fix_mach_id(void *machine)
68bbc9c3 130{
7ac48069 131 struct machine *m = machine;
5eaef520 132 m->mach_id = generic_fix_id("machine", "mach_id", "name",
133 m->mach_id, m->name);
68bbc9c3 134}
135
7ac48069 136int show_snet_name(void *subnet)
235fd664 137{
7ac48069 138 struct subnet *s = subnet;
5eaef520 139 printf("Subnet %s (%d) has duplicate name\n", s->name, s->snet_id);
140 return 0;
235fd664 141}
142
7ac48069 143int show_clu_id(void *cluster)
68bbc9c3 144{
7ac48069 145 struct cluster *c = cluster;
5eaef520 146 printf("Cluster %s has duplicate ID %d\n", c->name, c->clu_id);
147 return 0;
68bbc9c3 148}
149
7ac48069 150int show_clu_name(void *cluster)
68bbc9c3 151{
7ac48069 152 struct cluster *c = cluster;
5eaef520 153 printf("Cluster %s (%d) has duplicate name\n", c->name, c->clu_id);
154 return 0;
68bbc9c3 155}
156
7ac48069 157void fix_clu_id(void *cluster)
68bbc9c3 158{
7ac48069 159 struct cluster *c = cluster;
5eaef520 160 c->clu_id = generic_fix_id("cluster", "clu_id", "name", c->clu_id, c->name);
68bbc9c3 161}
162
7ac48069 163int show_list_id(void *list)
68bbc9c3 164{
7ac48069 165 struct list *l = list;
5eaef520 166 printf("List %s has duplicate ID %d\n", l->name, l->list_id);
167 return 0;
68bbc9c3 168}
169
7ac48069 170int show_list_name(void *list)
68bbc9c3 171{
7ac48069 172 struct list *l = list;
5eaef520 173 printf("List %s (%d) has duplicate name\n", l->name, l->list_id);
174 return 0;
68bbc9c3 175}
176
7ac48069 177void fix_list_id(void *list)
68bbc9c3 178{
7ac48069 179 struct list *l = list;
5eaef520 180 l->list_id = generic_fix_id("list", "list_id", "name", l->list_id, l->name);
68bbc9c3 181}
182
7ac48069 183int show_fs_id(void *filesys)
68bbc9c3 184{
7ac48069 185 struct filesys *f = filesys;
5eaef520 186 printf("Filesys %s has duplicate ID %d\n", f->name, f->filsys_id);
187 return 0;
68bbc9c3 188}
189
7ac48069 190void fix_fs_id(void *filesys)
68bbc9c3 191{
7ac48069 192 struct filesys *f = filesys;
5eaef520 193 f->filsys_id = generic_fix_id("filesys", "filsys_id", "label",
194 f->filsys_id, f->name);
68bbc9c3 195}
196
7ac48069 197int show_fs_name(void *filesys)
235fd664 198{
7ac48069 199 struct filesys *fs = filesys;
5eaef520 200 printf("Filesys %s (%d) has duplicate name\n", fs->name, fs->filsys_id);
201 return 0;
235fd664 202}
203
7ac48069 204int show_np_id(void *nfsphys)
68bbc9c3 205{
7ac48069 206 struct nfsphys *n = nfsphys;
5eaef520 207 printf("NfsPhys %s:%s has duplicate ID %d\n",
208 ((struct machine *)hash_lookup(machines, n->mach_id))->name,
209 n->dir, n->nfsphys_id);
210 return 0;
68bbc9c3 211}
212
7ac48069 213void fix_np_id(void *nfsphys)
68bbc9c3 214{
7ac48069 215 struct nfsphys *n = nfsphys;
5eaef520 216 n->nfsphys_id = generic_fix_id("nfsphys", "nfsphys_id", "dir",
217 n->nfsphys_id, n->dir);
68bbc9c3 218}
219
7ac48069 220int show_str_id(void *string)
68bbc9c3 221{
7ac48069 222 struct string *s = string;
5eaef520 223 printf("String %s has duplicate ID %d\n", s->name, s->string_id);
224 return 0;
68bbc9c3 225}
226
7ac48069 227int print_str_id(void *id)
ab05f33a 228{
7ac48069 229 printf("String %d is a duplicate\n", (int)id);
5eaef520 230 return 0;
ab05f33a 231}
232
7ac48069 233void print_dup_map(int key, void *data, void *hint)
ab05f33a 234{
7ac48069 235 printf("String %d is a duplicate of string %d\n", key, (int)data);
ab05f33a 236}
68bbc9c3 237
cb884d06 238int show_cnt_name(void *container)
239{
240 struct container *cnt = container;
241 printf("Container %s (%d) has duplicate name\n", cnt->name, cnt->cnt_id);
242 return 0;
243}
244
7ac48069 245void phase1(void)
208a4f4a 246{
5eaef520 247 EXEC SQL BEGIN DECLARE SECTION;
cfc4f91e 248 int id;
5eaef520 249 EXEC SQL END DECLARE SECTION;
250 int i, q, retval, tmp;
251 struct save_queue *sq;
252 struct user *u;
253 struct machine *m;
254 struct subnet *sn;
255 struct list *l;
256 struct cluster *c;
257 struct string *s;
258 struct filesys *f;
259 struct nfsphys *n;
fe0a844a 260 struct printserver *ps;
cb884d06 261 struct container *cnt;
5eaef520 262
263 printf("Phase 1 - Looking for duplicates\n");
264
265 /* self-join strings table on "string" to get duplicate strings, then
266 build a duplicates table to merge them. */
267
268 dprintf("Looking for duplicate strings...\n");
269 string_dups = create_hash(100);
270 if (!string_dups)
271 out_of_mem("storing duplicate strings");
272
273 EXEC SQL DECLARE csr116 CURSOR FOR
274 SELECT s1.string_id, s2.string_id FROM strings s1, strings s2
275 WHERE s1.string = s2.string and s1.string_id < s2.string_id;
276 EXEC SQL OPEN csr116;
277 /* The SELECT gives us two columns, both with non-negative integers.
278 * The number in the left column is always the smaller of the two,
279 * and each row includes string IDs for identical strings. We use
280 * them to make a mapping from id-to-delete to id-to-keep for all
281 * superflous IDs.
282 */
283 q = 0;
284 while (1)
285 {
cfc4f91e 286 EXEC SQL BEGIN DECLARE SECTION;
287 int id1, id2;
288 EXEC SQL END DECLARE SECTION;
289
5eaef520 290 EXEC SQL FETCH csr116 INTO :id1, :id2;
291 if (sqlca.sqlcode)
292 break;
293 q++;
294 /* If id2 is already stored, skip this row. */
7ac48069 295 i = (int)hash_lookup(string_dups, id2);
5eaef520 296 if (i > 0)
297 continue;
298 /* Follow the chain of id1 equivalent IDs back to the lowest one. */
299 id = id1;
7ac48069 300 while ((tmp = (int)hash_lookup(string_dups, id)) > 0)
5eaef520 301 id = tmp;
7ac48069 302 hash_store(string_dups, id2, (void *)id);
ab05f33a 303 }
5eaef520 304 EXEC SQL CLOSE csr116;
305 dprintf("found %d duplicates\n", q);
7ac48069 306 hash_step(string_dups, print_dup_map, NULL);
5eaef520 307 /* We don't want to delete the duplicates now because if the dbck
308 is cancelled, a LOT of state will be lost. So, we'll just let
309 them not get marked as used and then phase3 will clean them up */
310
311 dprintf("Loading strings...\n");
312 sq = sq_create();
313 strings = create_hash(75000);
314 if (!sq || !strings)
315 out_of_mem("loading strings");
316
317 EXEC SQL DECLARE csr101 CURSOR FOR
318 SELECT string_id, string FROM strings ORDER BY string_id;
319 EXEC SQL OPEN csr101;
320 q = 0;
321 while (1)
322 {
cfc4f91e 323 EXEC SQL BEGIN DECLARE SECTION;
324 int id;
325 char buf[STRINGS_STRING_SIZE];
326 EXEC SQL END DECLARE SECTION;
327
5eaef520 328 EXEC SQL FETCH csr101 INTO :id, :buf;
329 if (sqlca.sqlcode)
330 break;
331 q++;
332 s = malloc(sizeof(struct string));
333 if (!s)
334 out_of_mem("storing strings");
7ac48069 335 s->name = strdup(strtrim(buf));
5eaef520 336 s->string_id = id;
337 s->refc = 0;
338 retval = hash_store(strings, id, s);
339 if (retval == -1)
340 out_of_mem("storing strings in hash table");
341 else if (retval == 1) /* duplicate string_id */
342 {
ab05f33a 343 sq_save_data(sq, hash_lookup(strings, id));
344 sq_save_data(sq, s);
68bbc9c3 345 }
208a4f4a 346 }
5eaef520 347 EXEC SQL CLOSE csr101;
348 /* keep string id 0 (the empty string) even if unreferenced */
349 string_check(0);
350
351 printf("Loaded %d strings\n", q);
352
353 dprintf("Loading users...\n");
354 sq = sq_create();
cb884d06 355 users = create_hash(65000);
5eaef520 356 if (!sq || !users)
357 out_of_mem("loading users");
358
359 EXEC SQL DECLARE csr102 CURSOR FOR
360 SELECT users_id, login, last, first, status, potype, pop_id, box_id,
fc6165db 361 imap_id, modby, fmodby, pmodby, comments, sigwho FROM users
5eaef520 362 ORDER BY users_id;
363 EXEC SQL OPEN csr102;
364 while (1)
365 {
cfc4f91e 366 EXEC SQL BEGIN DECLARE SECTION;
367 char login[USERS_LOGIN_SIZE], nbuf[USERS_FIRST_SIZE + USERS_LAST_SIZE];
368 char last[USERS_LAST_SIZE], first[USERS_FIRST_SIZE];
369 char potype[USERS_POTYPE_SIZE];
fc6165db 370 int users_id, status, pop_id, box_id, imap_id, modby, fmodby, pmodby;
cfc4f91e 371 int comments, sigwho;
372 EXEC SQL END DECLARE SECTION;
373
374 EXEC SQL FETCH csr102 INTO :users_id, :login, :last, :first,
fc6165db 375 :status, :potype, :pop_id, :box_id, :imap_id, :modby, :fmodby,
376 :pmodby, :comments, :sigwho;
5eaef520 377 if (sqlca.sqlcode)
378 break;
379
380 u = malloc(sizeof(struct user));
381 if (!u)
382 out_of_mem("storing users");
cfc4f91e 383 strcpy(u->login, strtrim(login));
384 u->potype = potype[0];
385 sprintf(nbuf, "%s, %s", strtrim(last), strtrim(first));
386 u->fullname = strdup(nbuf);
5eaef520 387 u->status = status;
cfc4f91e 388 u->users_id = users_id;
389 u->modby = modby;
390 u->fmodby = fmodby;
391 u->pmodby = pmodby;
392 u->comment = comments;
393 u->sigwho = sigwho;
5eaef520 394 switch (u->potype)
395 {
68bbc9c3 396 case 'P':
cfc4f91e 397 u->pobox_id = pop_id;
5eaef520 398 break;
68bbc9c3 399 case 'S':
5eaef520 400 /* If potype is SMTP, box_id is a string_id for the strings tbl */
cfc4f91e 401 u->pobox_id = box_id;
5eaef520 402 break;
fc6165db 403 case 'I':
404 u->pobox_id = imap_id;
405 break;
68bbc9c3 406 default:
5eaef520 407 u->pobox_id = 0;
68bbc9c3 408 }
cfc4f91e 409 retval = hash_store(users, users_id, u);
5eaef520 410 if (retval == -1)
411 out_of_mem("storing users in hash table");
412 else if (retval == 1)
413 {
cfc4f91e 414 sq_save_data(sq, hash_lookup(users, users_id));
5eaef520 415 sq_save_data(sq, u);
68bbc9c3 416 }
208a4f4a 417 }
5eaef520 418 EXEC SQL CLOSE csr102;
419
420 generic_fix(sq, show_user_id, "Change ID", fix_user_id, 0);
421
422 if (!fast)
423 {
424 sq = sq_create();
425 if (!sq)
426 out_of_mem("finding duplicate logins");
427
428 EXEC SQL DECLARE csr103 CURSOR FOR
429 SELECT u1.users_id FROM users u1, users u2
430 WHERE u1.login = u2.login and u1.rowid != u2.rowid;
431 EXEC SQL OPEN csr103;
432 while (1)
433 {
434 EXEC SQL FETCH csr103 INTO :id;
435 if (sqlca.sqlcode)
436 break;
437 sq_save_data(sq, hash_lookup(users, id));
208a4f4a 438 }
5eaef520 439 EXEC SQL CLOSE csr103;
440 handle_duplicate_logins(sq);
68bbc9c3 441 }
442
5eaef520 443 if (!fast)
444 {
445 dprintf("Scanning krbmap...\n");
446
447 EXEC SQL DECLARE csr113 CURSOR FOR
448 SELECT k1.users_id FROM krbmap k1, krbmap k2
449 WHERE k1.users_id = k2.users_id AND k1.rowid != k2.rowid;
450 EXEC SQL OPEN csr113;
451 while (1)
452 {
453 EXEC SQL FETCH csr113 INTO :id;
454 if (sqlca.sqlcode)
455 break;
ab05f33a 456
5eaef520 457 printf("User %d is in the krbmap more than once!\n", id);
458 printf("Not fixing this error\n");
ab05f33a 459 }
5eaef520 460 EXEC SQL CLOSE csr113;
461
462 EXEC SQL DECLARE csr114 CURSOR FOR
463 SELECT k1.string_id FROM krbmap k1, krbmap k2
464 WHERE k1.string_id = k2.string_id AND k1.rowid != k2.rowid;
465 EXEC SQL OPEN csr114;
466 while (1)
467 {
468 EXEC SQL FETCH csr114 INTO :id;
469 if (sqlca.sqlcode)
470 break;
471
472 printf("Principal %d is in the krbmap more than once!\n", id);
473 printf("Not fixing this error\n");
ab05f33a 474 }
5eaef520 475 EXEC SQL CLOSE csr114;
ab05f33a 476 }
477
5eaef520 478 dprintf("Loading machines...\n");
479 sq = sq_create();
480 machines = create_hash(20000);
481 if (!sq || !machines)
482 out_of_mem("loading machines");
483
484 EXEC SQL DECLARE csr104 CURSOR FOR
485 SELECT mach_id, name, snet_id, owner_type, owner_id,
486 acomment, ocomment, creator, modby
487 FROM machine ORDER BY mach_id;
488 EXEC SQL OPEN csr104;
489 while (1)
490 {
cfc4f91e 491 EXEC SQL BEGIN DECLARE SECTION;
492 int mach_id, snet_id, owner_id, acomment, ocomment, creator, modby;
493 char name[MACHINE_NAME_SIZE], owner_type[MACHINE_OWNER_TYPE_SIZE];
494 EXEC SQL END DECLARE SECTION;
495
496 EXEC SQL FETCH csr104 INTO :mach_id, :name, :snet_id,
497 :owner_type, :owner_id, :acomment, :ocomment, :creator, :modby;
5eaef520 498 if (sqlca.sqlcode)
499 break;
500
501 m = malloc(sizeof(struct machine));
502 if (!m)
503 out_of_mem("storing machines");
504 strcpy(m->name, strtrim(name));
cfc4f91e 505 m->owner_type = owner_type[0];
506 m->owner_id = owner_id;
507 m->snet_id = snet_id;
508 m->mach_id = mach_id;
5eaef520 509 m->clucount = 0;
cfc4f91e 510 m->acomment = acomment;
511 m->ocomment = ocomment;
512 m->creator = creator;
513 m->modby = modby;
514 retval = hash_store(machines, mach_id, m);
5eaef520 515 if (retval == -1)
516 out_of_mem("storing machines in hash table");
517 else if (retval == 1)
518 {
cfc4f91e 519 sq_save_data(sq, hash_lookup(machines, mach_id));
5eaef520 520 sq_save_data(sq, m);
68bbc9c3 521 }
208a4f4a 522 }
5eaef520 523 EXEC SQL CLOSE csr104;
524 generic_fix(sq, show_mach_id, "Change ID", fix_mach_id, 0);
525
526 if (!fast)
527 {
cfc4f91e 528 EXEC SQL BEGIN DECLARE SECTION;
529 char name[HOSTALIAS_NAME_SIZE];
530 int id1, id2;
531 EXEC SQL END DECLARE SECTION;
532
5eaef520 533 sq = sq_create();
534 if (!sq)
535 out_of_mem("looking for duplicate machine names");
536
537 EXEC SQL DECLARE csr105 CURSOR FOR
538 SELECT m1.mach_id FROM machine m1, machine m2
539 WHERE m1.name = m2.name AND m1.rowid != m2.rowid;
540 EXEC SQL OPEN csr105;
541 while (1)
542 {
543 EXEC SQL FETCH csr105 INTO :id;
544 if (sqlca.sqlcode)
545 break;
546
547 sq_save_data(sq, hash_lookup(machines, id));
208a4f4a 548 }
5eaef520 549 EXEC SQL CLOSE csr105;
550 generic_fix(sq, show_mach_name, "Change name", cant_fix, 0);
551
552 EXEC SQL DECLARE csr_hal1 CURSOR FOR
553 SELECT h1.name, m1.mach_id, m2.mach_id
554 FROM hostalias h1, machine m1, hostalias h2, machine m2
555 WHERE h1.name = h2.name AND h1.mach_id != h2.mach_id
556 AND m1.mach_id = h1.mach_id AND m2.mach_id = h2.mach_id;
557 EXEC SQL OPEN csr_hal1;
558 while (1)
559 {
ab05f33a 560 EXEC SQL FETCH csr_hal1 INTO :name, :id1, :id2;
5eaef520 561 if (sqlca.sqlcode)
562 break;
ab05f33a 563 printf("Aliases for machines %d and %d have duplicate name %s\n",
564 id1, id2, strtrim(name));
a8e78b23 565 cant_fix(0);
ab05f33a 566 }
5eaef520 567 EXEC SQL CLOSE csr_hal1;
568
569 EXEC SQL DECLARE csr_hal2 CURSOR FOR
570 SELECT h1.name, m1.mach_id, m2.mach_id
571 FROM hostalias h1, machine m1, machine m2
572 WHERE h1.name = m1.name AND h1.mach_id = m2.mach_id;
573 EXEC SQL OPEN csr_hal2;
574 while (1)
575 {
576 EXEC SQL FETCH csr_hal2 INTO :name, :id1, :id2;
577 if (sqlca.sqlcode)
578 break;
579 printf("Machine %d has alias %s that conflicts with machine %d\n",
580 id2, strtrim(name), id1);
a8e78b23 581 cant_fix(0);
5eaef520 582 }
583 EXEC SQL CLOSE csr_hal2;
772b7afc 584 }
235fd664 585
5eaef520 586 dprintf("Loading subnets...\n");
587 subnets = create_hash(254);
588 if (!subnets)
589 out_of_mem("loading subnets");
590
591 EXEC SQL DECLARE csr115 CURSOR FOR
592 SELECT snet_id, name, owner_type, owner_id, modby from subnet;
593 EXEC SQL OPEN csr115;
594 while (1)
595 {
cfc4f91e 596 EXEC SQL BEGIN DECLARE SECTION;
597 char name[SUBNET_NAME_SIZE], owner_type[SUBNET_OWNER_TYPE_SIZE];
598 int snet_id, owner_id, modby;
599 EXEC SQL END DECLARE SECTION;
600
601 EXEC SQL FETCH csr115 INTO :snet_id, :name, :owner_type,
602 :owner_id, :modby;
5eaef520 603 if (sqlca.sqlcode)
604 break;
605
606 sn = malloc(sizeof(struct machine));
607 if (!sn)
608 out_of_mem("storing subnets");
609 strcpy(sn->name, strtrim(name));
cfc4f91e 610 sn->owner_type = owner_type[0];
611 sn->owner_id = owner_id;
612 sn->snet_id = snet_id;
613 sn->modby = modby;
614 retval = hash_store(subnets, snet_id, sn);
5eaef520 615 if (retval == -1)
616 out_of_mem("storing subnets in hash table");
617 else if (retval == 1)
618 {
619 printf("Duplicate subnet ID: %d (%s)\n", id, name);
620 /* should add code to delete */
621 cant_fix(0);
622 }
623 }
624 EXEC SQL CLOSE csr115;
625
626 if (!fast)
627 {
628 sq = sq_create();
629 if (!sq)
630 out_of_mem("looking for duplicate subnet names");
631
632 EXEC SQL DECLARE csr117 CURSOR FOR
633 SELECT s1.snet_id FROM subnet s1, subnet s2
634 WHERE s1.name = s2.name AND s1.rowid != s2.rowid;
635 EXEC SQL OPEN csr117;
636 while (1)
637 {
638 EXEC SQL FETCH csr117 INTO :id;
639 if (sqlca.sqlcode)
640 break;
235fd664 641
5eaef520 642 sq_save_data(sq, hash_lookup(subnets, id));
235fd664 643 }
5eaef520 644 EXEC SQL CLOSE csr117;
645 generic_fix(sq, show_snet_name, "Change name", cant_fix, 0);
235fd664 646 }
5eaef520 647
648 dprintf("Loading clusters...\n");
649 sq = sq_create();
650 clusters = create_hash(100);
651 if (!sq || !clusters)
652 out_of_mem("loading clusters");
653
654 EXEC SQL DECLARE csr106 CURSOR FOR
655 SELECT clu_id, name, modby FROM clusters;
656 EXEC SQL OPEN csr106;
657 while (1)
658 {
cfc4f91e 659 EXEC SQL BEGIN DECLARE SECTION;
660 int clu_id, modby;
661 char name[CLUSTERS_NAME_SIZE];
662 EXEC SQL END DECLARE SECTION;
663
664 EXEC SQL FETCH csr106 INTO :clu_id, :name, :modby;
5eaef520 665 if (sqlca.sqlcode)
666 break;
667
668 c = malloc(sizeof(struct cluster));
669 if (!c)
670 out_of_mem("storing clusters");
671 strcpy(c->name, strtrim(name));
cfc4f91e 672 c->clu_id = clu_id;
673 c->modby = modby;
674 retval = hash_store(clusters, clu_id, c);
5eaef520 675 if (retval == -1)
676 out_of_mem("storing clusters in hash table");
677 else if (retval == 1)
678 {
cfc4f91e 679 sq_save_data(sq, hash_lookup(clusters, clu_id));
5eaef520 680 sq_save_data(sq, c);
68bbc9c3 681 }
208a4f4a 682 }
5eaef520 683 EXEC SQL CLOSE csr106;
684 generic_fix(sq, show_clu_id, "Change ID", fix_clu_id, 0);
685
686 if (!fast)
687 {
688 sq = sq_create();
689 if (!sq)
690 out_of_mem("looking for duplicate cluster names");
691
692 EXEC SQL DECLARE csr107 CURSOR FOR
693 SELECT c1.clu_id FROM clusters c1, clusters c2
694 WHERE c1.name = c2.name AND c1.rowid != c2.rowid;
695 EXEC SQL OPEN csr107;
696 while (1)
697 {
698 EXEC SQL FETCH csr107 INTO :id;
699 if (sqlca.sqlcode)
700 break;
701
702 sq_save_data(sq, hash_lookup(clusters, id));
208a4f4a 703 }
5eaef520 704 EXEC SQL CLOSE csr107;
705 generic_fix(sq, show_clu_name, "Change name", cant_fix, 0);
68bbc9c3 706 }
707
5eaef520 708 dprintf("Loading lists...\n");
709 sq = sq_create();
710 lists = create_hash(50000);
711 if (!sq || !lists)
712 out_of_mem("loading lists");
713
714 EXEC SQL DECLARE csr108 CURSOR FOR
ad47bcbe 715 SELECT list_id, name, acl_id, acl_type, memacl_id, memacl_type, modby
716 FROM list
5eaef520 717 ORDER BY list_id;
718 EXEC SQL OPEN csr108;
719 while (1)
720 {
cfc4f91e 721 EXEC SQL BEGIN DECLARE SECTION;
ad47bcbe 722 int list_id, acl_id, memacl_id, modby;
cfc4f91e 723 char name[LIST_NAME_SIZE], acl_type[LIST_ACL_TYPE_SIZE];
ad47bcbe 724 char memacl_type[LIST_ACL_TYPE_SIZE];
cfc4f91e 725 EXEC SQL END DECLARE SECTION;
726
ad47bcbe 727 EXEC SQL FETCH csr108 INTO :list_id, :name, :acl_id, :acl_type,
728 :memacl_id, :memacl_type, :modby;
5eaef520 729 if (sqlca.sqlcode)
730 break;
731 l = malloc(sizeof(struct list));
732 if (!l)
733 out_of_mem("storing lists");
734 strcpy(l->name, strtrim(name));
cfc4f91e 735 l->acl_type = acl_type[0];
736 l->acl_id = acl_id;
ad47bcbe 737 l->memacl_type = memacl_type[0];
738 l->memacl_id = memacl_id;
cfc4f91e 739 l->list_id = list_id;
740 l->modby = modby;
5eaef520 741 l->members = 0;
cfc4f91e 742 retval = hash_store(lists, list_id, l);
5eaef520 743 if (retval == -1)
744 out_of_mem("storing lists in hash table");
745 else if (retval == 1)
746 {
cfc4f91e 747 sq_save_data(sq, hash_lookup(lists, list_id));
5eaef520 748 sq_save_data(sq, l);
68bbc9c3 749 }
208a4f4a 750 }
5eaef520 751 EXEC SQL CLOSE csr108;
752 generic_fix(sq, show_list_id, "Change ID", fix_list_id, 0);
753
754 if (!fast)
755 {
756 sq = sq_create();
757 if (!sq)
758 out_of_mem("looking for duplicate list names");
759
760 EXEC SQL DECLARE csr109 CURSOR FOR
761 SELECT l1.list_id FROM list l1, list l2
762 WHERE l1.name = l2.name AND l1.rowid != l2.rowid;
763 EXEC SQL OPEN csr109;
764 while (1)
765 {
766 EXEC SQL FETCH csr109 INTO :id;
767 if (sqlca.sqlcode)
768 break;
769
770 sq_save_data(sq, hash_lookup(lists, id));
208a4f4a 771 }
5eaef520 772 EXEC SQL CLOSE csr109;
773 generic_fix(sq, show_list_name, "Change name", cant_fix, 0);
68bbc9c3 774 }
775
5eaef520 776 dprintf("Loading filesys...\n");
777 sq = sq_create();
778 filesys = create_hash(30000);
779 if (!sq || !filesys)
780 out_of_mem("loading filesys");
781
782 EXEC SQL DECLARE csr110 CURSOR FOR
783 SELECT filsys_id, label, owner, owners, phys_id, mach_id,
784 type, name, modby FROM filesys ORDER BY filsys_id;
785 EXEC SQL OPEN csr110;
786 while (1)
787 {
cfc4f91e 788 EXEC SQL BEGIN DECLARE SECTION;
789 int filsys_id, owner, owners, phys_id, mach_id, modby;
790 char label[FILESYS_LABEL_SIZE], type[FILESYS_TYPE_SIZE];
791 char name[FILESYS_NAME_SIZE];
792 EXEC SQL END DECLARE SECTION;
793
794 EXEC SQL FETCH csr110 INTO :filsys_id, :label, :owner, :owners,
795 :phys_id, :mach_id, :type, :name, :modby;
5eaef520 796 if (sqlca.sqlcode)
797 break;
798
799 f = malloc(sizeof(struct filesys));
800 if (!f)
801 out_of_mem("storing filesystems");
cfc4f91e 802 strcpy(f->name, strtrim(label));
803 strcpy(f->dir, strtrim(name));
804 f->filsys_id = filsys_id;
805 f->owner = owner;
806 f->owners = owners;
807 f->phys_id = phys_id;
808 f->mach_id = mach_id;
809 f->type = type[0];
810 retval = hash_store(filesys, filsys_id, f);
5eaef520 811 if (retval == -1)
812 out_of_mem("storing filesys in hash table");
813 else if (retval == 1)
814 {
cfc4f91e 815 sq_save_data(sq, hash_lookup(filesys, filsys_id));
5eaef520 816 sq_save_data(sq, f);
68bbc9c3 817 }
208a4f4a 818 }
5eaef520 819 EXEC SQL CLOSE csr110;
820
821 generic_fix(sq, show_fs_id, "Change ID", fix_fs_id, 0);
822
823 if (!fast)
824 {
825 sq = sq_create();
826 if (!sq)
827 out_of_mem("looking for duplicate filesys names");
828
829 EXEC SQL DECLARE csr118 CURSOR FOR
830 SELECT fs1.filsys_id FROM filesys fs1, filesys fs2
831 WHERE fs1.label = fs2.label AND fs1.rowid != fs2.rowid;
832 EXEC SQL OPEN csr118;
833 while (1)
834 {
835 EXEC SQL FETCH csr118 INTO :id;
836 if (sqlca.sqlcode)
837 break;
838
839 sq_save_data(sq, hash_lookup(filesys, id));
235fd664 840 }
5eaef520 841 EXEC SQL CLOSE csr118;
842 generic_fix(sq, show_fs_name, "Change name", cant_fix, 0);
235fd664 843 }
844
5eaef520 845 dprintf("Loading nfsphys...\n");
846 sq = sq_create();
847 nfsphys = create_hash(500);
848 if (!sq || !nfsphys)
849 out_of_mem("loading nfsphs");
850
851 EXEC SQL DECLARE csr111 CURSOR FOR
05d03f93 852 SELECT nfsphys_id, dir, mach_id, TO_CHAR(allocated), modby FROM nfsphys;
5eaef520 853 EXEC SQL OPEN csr111;
854 while (1)
855 {
cfc4f91e 856 EXEC SQL BEGIN DECLARE SECTION;
05d03f93 857 int nfsphys_id, mach_id, modby;
cfc4f91e 858 char dir[NFSPHYS_DIR_SIZE];
05d03f93 859 char allocated[39];
cfc4f91e 860 EXEC SQL END DECLARE SECTION;
861
862 EXEC SQL FETCH csr111 INTO :nfsphys_id, :dir, :mach_id,
863 :allocated, :modby;
5eaef520 864 if (sqlca.sqlcode)
865 break;
866
867 n = malloc(sizeof(struct nfsphys));
868 if (!n)
869 out_of_mem("storing nfsphys");
cfc4f91e 870 strcpy(n->dir, strtrim(dir));
871 n->mach_id = mach_id;
872 n->nfsphys_id = nfsphys_id;
05d03f93 873 n->allocated = strtoull(allocated, NULL, 0);
cfc4f91e 874 n->modby = modby;
5eaef520 875 n->count = 0;
cfc4f91e 876 retval = hash_store(nfsphys, nfsphys_id, n);
5eaef520 877 if (retval == -1)
878 out_of_mem("storing nfsphys in hash table");
879 else if (retval == 1)
880 {
cfc4f91e 881 sq_save_data(sq, hash_lookup(nfsphys, nfsphys_id));
5eaef520 882 sq_save_data(sq, n);
68bbc9c3 883 }
208a4f4a 884 }
5eaef520 885 EXEC SQL CLOSE csr111;
208a4f4a 886
5eaef520 887 generic_fix(sq, show_np_id, "Change ID", fix_np_id, 0);
68bbc9c3 888
dabf20aa 889 if (!fast)
5eaef520 890 {
dabf20aa 891 dprintf("Checking printers...\n");
cfc4f91e 892
dabf20aa 893 EXEC SQL DECLARE csr119 CURSOR FOR
894 SELECT p1.name FROM printers p1, printers p2
895 WHERE ( p1.name = p2.name AND p1.rowid < p2.rowid )
896 OR ( p1.name = p2.duplexname );
897 EXEC SQL OPEN csr119;
898 while (1)
899 {
900 EXEC SQL BEGIN DECLARE SECTION;
901 char name[PRINTERS_NAME_SIZE];
902 EXEC SQL END DECLARE SECTION;
235fd664 903
dabf20aa 904 EXEC SQL FETCH csr119 INTO :name;
905 if (sqlca.sqlcode)
906 break;
907
908 printf("Printer %s has duplicate name\n", name);
909 cant_fix(0);
910 }
911 EXEC SQL CLOSE csr119;
235fd664 912 }
fe0a844a 913
914 dprintf("Loading printservers...\n");
915 printservers = create_hash(100);
916 if (!printservers)
917 out_of_mem("loading printservers");
918
919 EXEC SQL DECLARE csr_ps CURSOR FOR
920 SELECT mach_id, printer_types, owner_type, owner_id, lpc_acl, modby
921 FROM printservers;
922 EXEC SQL OPEN csr_ps;
923 while (1)
924 {
925 EXEC SQL BEGIN DECLARE SECTION;
926 int mach_id, printer_types, owner_id, lpc_acl, modby;
927 char owner_type[PRINTSERVERS_OWNER_TYPE_SIZE];
928 EXEC SQL END DECLARE SECTION;
929
930 EXEC SQL FETCH csr_ps INTO :mach_id, :printer_types, :owner_type,
931 :owner_id, :lpc_acl, :modby;
932 if (sqlca.sqlcode)
933 break;
934
935 ps = malloc(sizeof(struct printserver));
936 if (!ps)
937 out_of_mem("storing printserver");
938 ps->mach_id = mach_id;
61eec0b8 939 ps->printer_types = printer_types;
fe0a844a 940 ps->owner_type = owner_type[0];
941 ps->owner_id = owner_id;
942 ps->lpc_acl = lpc_acl;
943 ps->modby = modby;
944 retval = hash_store(printservers, mach_id, ps);
945 if (retval == -1)
946 out_of_mem("storing printserver in hash table");
947 else if (retval == 1)
948 {
949 printf("Duplicate printserver mach_id %d\n", mach_id);
950 cant_fix(0);
951 }
952 }
37ed4e84 953 EXEC SQL CLOSE csr_ps;
954
955 if (!fast)
956 {
957 dprintf("Checking zephyr...\n");
958
959 EXEC SQL DECLARE csr120 CURSOR FOR
960 SELECT z1.class FROM zephyr z1, zephyr z2
961 WHERE (z1.class = z2.class AND z1.rowid < z1.rowid);
962 EXEC SQL OPEN csr120;
963 while (1)
964 {
965 EXEC SQL BEGIN DECLARE SECTION;
966 char class[ZEPHYR_CLASS_SIZE];
967 EXEC SQL END DECLARE SECTION;
968
969 EXEC SQL FETCH csr120 INTO :class;
970 if (sqlca.sqlcode)
971 break;
972
973 printf("Zephyr class %s has duplicate name\n", class);
974 cant_fix(0);
975 }
976 EXEC SQL CLOSE csr120;
977 }
cb884d06 978
979 dprintf("Loading containers...\n");
980 containers = create_hash(1000);
981 if (!containers)
982 out_of_mem("loading containers");
983
984 EXEC SQL DECLARE csr_cnts CURSOR FOR
985 SELECT name, cnt_id, list_id, acl_type, acl_id, memacl_type, memacl_id,
986 modby FROM containers;
987 EXEC SQL OPEN csr_cnts;
988 while (1)
989 {
990 EXEC SQL BEGIN DECLARE SECTION;
991 int cnt_id, list_id, acl_id, memacl_id, modby;
992 char name[CONTAINERS_NAME_SIZE];
993 char acl_type[CONTAINERS_ACL_TYPE_SIZE];
994 char memacl_type[CONTAINERS_MEMACL_TYPE_SIZE];
995 EXEC SQL END DECLARE SECTION;
996
997 EXEC SQL FETCH csr_cnts INTO :name, :cnt_id, :list_id, :acl_type,
998 :acl_id, :memacl_type, :memacl_id, :modby;
999 if (sqlca.sqlcode)
1000 break;
1001
1002 cnt = malloc(sizeof(struct container));
1003 if (!cnt)
1004 out_of_mem("storing container");
1005 strcpy(cnt->name, strtrim(name));
1006 cnt->cnt_id = cnt_id;
1007 cnt->list_id = list_id;
1008 cnt->acl_type = acl_type[0];
1009 cnt->acl_id = acl_id;
1010 cnt->memacl_type = memacl_type[0];
1011 cnt->memacl_id = memacl_id;
1012 cnt->modby = modby;
1013 retval = hash_store(containers, cnt_id, cnt);
1014 if (retval == -1)
1015 out_of_mem("storing container in hash table");
1016 else if (retval == 1)
1017 {
1018 printf("Duplicate container cnt_id %d\n", cnt_id);
1019 cant_fix(0);
1020 }
1021 }
1022 EXEC SQL CLOSE csr_cnts;
1023
1024 if (!fast)
1025 {
1026 sq = sq_create();
1027 if (!sq)
1028 out_of_mem("looking for duplicate container names");
1029
1030 EXEC SQL DECLARE csr121 CURSOR FOR
1031 SELECT cnt1.cnt_id FROM containers cnt1, containers cnt2
1032 WHERE cnt1.name = cnt2.name AND cnt1.cnt_id != cnt2.cnt_id;
1033 EXEC SQL OPEN csr121;
1034 while (1)
1035 {
1036 EXEC SQL FETCH csr121 INTO :id;
1037 if (sqlca.sqlcode)
1038 break;
1039
1040 sq_save_data(sq, hash_lookup(containers, id));
1041 }
1042 EXEC SQL CLOSE csr121;
1043 generic_fix(sq, show_cnt_name, "Change name", cant_fix, 0);
1044 }
208a4f4a 1045}
This page took 0.239876 seconds and 5 git commands to generate.