]> andersk Git - moira.git/blob - dbck/phase1.pc
e49fbcf1c8e44c749171bd726606bc13abb2dff2
[moira.git] / dbck / phase1.pc
1 /* $Id$
2  *
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>.
6  */
7
8 #include <mit-copyright.h>
9 #include <moira.h>
10 #include "dbck.h"
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 EXEC SQL INCLUDE sqlca;
16
17 RCSID("$Header$");
18
19 EXEC SQL WHENEVER SQLERROR DO dbmserr();
20 int show_user_id(void *user);
21 void handle_duplicate_logins(struct save_queue *sq);
22 void fix_user_id(void *user);
23 void cant_fix(void *id);
24 int show_mach_id(void *machine);
25 int show_mach_name(void *machine);
26 void fix_mach_id(void *machine);
27 int show_snet_name(void *subnet);
28 int show_clu_id(void *cluster);
29 int show_clu_name(void *cluster);
30 void fix_clu_id(void *cluster);
31 int show_list_id(void *list);
32 int show_list_name(void *list);
33 void fix_list_id(void *list);
34 int show_fs_id(void *filesys);
35 void fix_fs_id(void *filesys);
36 int show_fs_name(void *fs);
37 int show_np_id(void *nfsphys);
38 void fix_np_id(void *nfsphys);
39 int show_str_id(void *string);
40 int print_str_id(void *id);
41 void print_dup_map(int key, void *data, void *hint);
42 int show_cnt_name(void *cnt);
43
44 int show_user_id(void *user)
45 {
46   struct user *u = user;
47   printf("User %s (%s, status %d) has duplicate ID\n",
48          u->login, u->fullname, u->status);
49   return 0;
50 }
51
52 void handle_duplicate_logins(struct save_queue *sq)
53 {
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) &&
74                   single_fix("Delete the second one", 0))
75                 single_delete("users", "users_id", uu->users_id);
76               else if (single_fix("Unregister the second one", 0))
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
97             uu = u;
98         }
99     }
100 }
101
102 void fix_user_id(void *user)
103 {
104   struct user *u = user;
105   u->users_id = generic_fix_id("users", "users_id", "login",
106                                u->users_id, u->login);
107 }
108
109
110 void cant_fix(void *id)
111 {
112   printf("Sorry, don't know how to fix that\n");
113 }
114
115 int show_mach_id(void *machine)
116 {
117   struct machine *m = machine;
118   printf("Machine %s has duplicate ID %d\n", m->name, m->mach_id);
119   return 0;
120 }
121
122 int show_mach_name(void *machine)
123 {
124   struct machine *m = machine;
125   printf("Machine %s (%d) has duplicate name\n", m->name, m->mach_id);
126   return 0;
127 }
128
129 void fix_mach_id(void *machine)
130 {
131   struct machine *m = machine;
132   m->mach_id = generic_fix_id("machine", "mach_id", "name",
133                               m->mach_id, m->name);
134 }
135
136 int show_snet_name(void *subnet)
137 {
138   struct subnet *s = subnet;
139   printf("Subnet %s (%d) has duplicate name\n", s->name, s->snet_id);
140   return 0;
141 }
142
143 int show_clu_id(void *cluster)
144 {
145   struct cluster *c = cluster;
146   printf("Cluster %s has duplicate ID %d\n", c->name, c->clu_id);
147   return 0;
148 }
149
150 int show_clu_name(void *cluster)
151 {
152   struct cluster *c = cluster;
153   printf("Cluster %s (%d) has duplicate name\n", c->name, c->clu_id);
154   return 0;
155 }
156
157 void fix_clu_id(void *cluster)
158 {
159   struct cluster *c = cluster;
160   c->clu_id = generic_fix_id("cluster", "clu_id", "name", c->clu_id, c->name);
161 }
162
163 int show_list_id(void *list)
164 {
165   struct list *l = list;
166   printf("List %s has duplicate ID %d\n", l->name, l->list_id);
167   return 0;
168 }
169
170 int show_list_name(void *list)
171 {
172   struct list *l = list;
173   printf("List %s (%d) has duplicate name\n", l->name, l->list_id);
174   return 0;
175 }
176
177 void fix_list_id(void *list)
178 {
179   struct list *l = list;
180   l->list_id = generic_fix_id("list", "list_id", "name", l->list_id, l->name);
181 }
182
183 int show_fs_id(void *filesys)
184 {
185   struct filesys *f = filesys;
186   printf("Filesys %s has duplicate ID %d\n", f->name, f->filsys_id);
187   return 0;
188 }
189
190 void fix_fs_id(void *filesys)
191 {
192   struct filesys *f = filesys;
193   f->filsys_id = generic_fix_id("filesys", "filsys_id", "label",
194                                 f->filsys_id, f->name);
195 }
196
197 int show_fs_name(void *filesys)
198 {
199   struct filesys *fs = filesys;
200   printf("Filesys %s (%d) has duplicate name\n", fs->name, fs->filsys_id);
201   return 0;
202 }
203
204 int show_np_id(void *nfsphys)
205 {
206   struct nfsphys *n = nfsphys;
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;
211 }
212
213 void fix_np_id(void *nfsphys)
214 {
215   struct nfsphys *n = nfsphys;
216   n->nfsphys_id = generic_fix_id("nfsphys", "nfsphys_id", "dir",
217                                  n->nfsphys_id, n->dir);
218 }
219
220 int show_str_id(void *string)
221 {
222   struct string *s = string;
223   printf("String %s has duplicate ID %d\n", s->name, s->string_id);
224   return 0;
225 }
226
227 int print_str_id(void *id)
228 {
229   printf("String %d is a duplicate\n", (int)id);
230   return 0;
231 }
232
233 void print_dup_map(int key, void *data, void *hint)
234 {
235   printf("String %d is a duplicate of string %d\n", key, (int)data);
236 }
237
238 int 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
245 void phase1(void)
246 {
247   EXEC SQL BEGIN DECLARE SECTION;
248   int id;
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;
260   struct printserver *ps;
261   struct container *cnt;
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     {
286       EXEC SQL BEGIN DECLARE SECTION;
287       int id1, id2;
288       EXEC SQL END DECLARE SECTION;
289
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. */
295       i = (int)hash_lookup(string_dups, id2);
296       if (i > 0)
297         continue;
298       /*  Follow the chain of id1 equivalent IDs back to the lowest one. */
299       id = id1;
300       while ((tmp = (int)hash_lookup(string_dups, id)) > 0)
301         id = tmp;
302       hash_store(string_dups, id2, (void *)id);
303     }
304   EXEC SQL CLOSE csr116;
305   dprintf("found %d duplicates\n", q);
306   hash_step(string_dups, print_dup_map, NULL);
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     {
323       EXEC SQL BEGIN DECLARE SECTION;
324       int id;
325       char buf[STRINGS_STRING_SIZE];
326       EXEC SQL END DECLARE SECTION;
327
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");
335       s->name = strdup(strtrim(buf));
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         {
343           sq_save_data(sq, hash_lookup(strings, id));
344           sq_save_data(sq, s);
345         }
346     }
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();
355   users = create_hash(65000);
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,
361     imap_id, modby, fmodby, pmodby, comments, sigwho FROM users
362     ORDER BY users_id;
363   EXEC SQL OPEN csr102;
364   while (1)
365     {
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];
370       int users_id, status, pop_id, box_id, imap_id, modby, fmodby, pmodby;
371       int comments, sigwho;
372       EXEC SQL END DECLARE SECTION;
373
374       EXEC SQL FETCH csr102 INTO :users_id, :login, :last, :first,
375         :status, :potype, :pop_id, :box_id, :imap_id, :modby, :fmodby,
376         :pmodby, :comments, :sigwho;
377       if (sqlca.sqlcode)
378         break;
379
380       u = malloc(sizeof(struct user));
381       if (!u)
382         out_of_mem("storing users");
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);
387       u->status = status;
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;
394       switch (u->potype)
395         {
396         case 'P':
397           u->pobox_id = pop_id;
398           break;
399         case 'S':
400           /*  If potype is SMTP, box_id is a string_id for the strings tbl */
401           u->pobox_id = box_id;
402           break;
403         case 'I':
404           u->pobox_id = imap_id;
405           break;
406         default:
407           u->pobox_id = 0;
408         }
409       retval = hash_store(users, users_id, u);
410       if (retval == -1)
411         out_of_mem("storing users in hash table");
412       else if (retval == 1)
413         {
414           sq_save_data(sq, hash_lookup(users, users_id));
415           sq_save_data(sq, u);
416         }
417     }
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));
438         }
439       EXEC SQL CLOSE csr103;
440       handle_duplicate_logins(sq);
441     }
442
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;
456
457           printf("User %d is in the krbmap more than once!\n", id);
458           printf("Not fixing this error\n");
459         }
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");
474         }
475       EXEC SQL CLOSE csr114;
476     }
477
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     {
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;
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));
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;
509       m->clucount = 0;
510       m->acomment = acomment;
511       m->ocomment = ocomment;
512       m->creator = creator;
513       m->modby = modby;
514       retval = hash_store(machines, mach_id, m);
515       if (retval == -1)
516         out_of_mem("storing machines in hash table");
517       else if (retval == 1)
518         {
519           sq_save_data(sq, hash_lookup(machines, mach_id));
520           sq_save_data(sq, m);
521         }
522     }
523   EXEC SQL CLOSE csr104;
524   generic_fix(sq, show_mach_id, "Change ID", fix_mach_id, 0);
525
526   if (!fast)
527     {
528       EXEC SQL BEGIN DECLARE SECTION;
529       char name[HOSTALIAS_NAME_SIZE];
530       int id1, id2;
531       EXEC SQL END DECLARE SECTION;
532
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));
548         }
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         {
560           EXEC SQL FETCH csr_hal1 INTO :name, :id1, :id2;
561           if (sqlca.sqlcode)
562             break;
563           printf("Aliases for machines %d and %d have duplicate name %s\n",
564                  id1, id2, strtrim(name));
565           cant_fix(0);
566         }
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);
581             cant_fix(0);
582           }
583         EXEC SQL CLOSE csr_hal2;
584     }
585
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     {
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;
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));
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);
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;
641
642           sq_save_data(sq, hash_lookup(subnets, id));
643         }
644       EXEC SQL CLOSE csr117;
645       generic_fix(sq, show_snet_name, "Change name", cant_fix, 0);
646     }
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     {
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;
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));
672       c->clu_id = clu_id;
673       c->modby = modby;
674       retval = hash_store(clusters, clu_id, c);
675       if (retval == -1)
676         out_of_mem("storing clusters in hash table");
677       else if (retval == 1)
678         {
679           sq_save_data(sq, hash_lookup(clusters, clu_id));
680           sq_save_data(sq, c);
681         }
682     }
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));
703         }
704       EXEC SQL CLOSE csr107;
705       generic_fix(sq, show_clu_name, "Change name", cant_fix, 0);
706     }
707
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
715     SELECT list_id, name, acl_id, acl_type, memacl_id, memacl_type, modby
716     FROM list
717     ORDER BY list_id;
718   EXEC SQL OPEN csr108;
719   while (1)
720     {
721       EXEC SQL BEGIN DECLARE SECTION;
722       int list_id, acl_id, memacl_id, modby;
723       char name[LIST_NAME_SIZE], acl_type[LIST_ACL_TYPE_SIZE];
724       char memacl_type[LIST_ACL_TYPE_SIZE];
725       EXEC SQL END DECLARE SECTION;
726
727       EXEC SQL FETCH csr108 INTO :list_id, :name, :acl_id, :acl_type, 
728         :memacl_id, :memacl_type, :modby;
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));
735       l->acl_type = acl_type[0];
736       l->acl_id = acl_id;
737       l->memacl_type = memacl_type[0];
738       l->memacl_id = memacl_id;
739       l->list_id = list_id;
740       l->modby = modby;
741       l->members = 0;
742       retval = hash_store(lists, list_id, l);
743       if (retval == -1)
744         out_of_mem("storing lists in hash table");
745       else if (retval == 1)
746         {
747           sq_save_data(sq, hash_lookup(lists, list_id));
748           sq_save_data(sq, l);
749         }
750     }
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));
771         }
772       EXEC SQL CLOSE csr109;
773       generic_fix(sq, show_list_name, "Change name", cant_fix, 0);
774     }
775
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     {
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;
796       if (sqlca.sqlcode)
797         break;
798
799       f = malloc(sizeof(struct filesys));
800       if (!f)
801         out_of_mem("storing filesystems");
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);
811       if (retval == -1)
812         out_of_mem("storing filesys in hash table");
813       else if (retval == 1)
814         {
815           sq_save_data(sq, hash_lookup(filesys, filsys_id));
816           sq_save_data(sq, f);
817         }
818     }
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));
840         }
841       EXEC SQL CLOSE csr118;
842       generic_fix(sq, show_fs_name, "Change name", cant_fix, 0);
843     }
844
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
852     SELECT nfsphys_id, dir, mach_id, allocated, modby FROM nfsphys;
853   EXEC SQL OPEN csr111;
854   while (1)
855     {
856       EXEC SQL BEGIN DECLARE SECTION;
857       int nfsphys_id, mach_id, allocated, modby;
858       char dir[NFSPHYS_DIR_SIZE];
859       EXEC SQL END DECLARE SECTION;
860
861       EXEC SQL FETCH csr111 INTO :nfsphys_id, :dir, :mach_id,
862         :allocated, :modby;
863       if (sqlca.sqlcode)
864         break;
865
866       n = malloc(sizeof(struct nfsphys));
867       if (!n)
868         out_of_mem("storing nfsphys");
869       strcpy(n->dir, strtrim(dir));
870       n->mach_id = mach_id;
871       n->nfsphys_id = nfsphys_id;
872       n->allocated = allocated;
873       n->modby = modby;
874       n->count = 0;
875       retval = hash_store(nfsphys, nfsphys_id, n);
876       if (retval == -1)
877         out_of_mem("storing nfsphys in hash table");
878       else if (retval == 1)
879         {
880           sq_save_data(sq, hash_lookup(nfsphys, nfsphys_id));
881           sq_save_data(sq, n);
882         }
883     }
884   EXEC SQL CLOSE csr111;
885
886   generic_fix(sq, show_np_id, "Change ID", fix_np_id, 0);
887
888   if (!fast)
889     {
890       dprintf("Checking printers...\n");
891
892       EXEC SQL DECLARE csr119 CURSOR FOR
893         SELECT p1.name FROM printers p1, printers p2
894         WHERE ( p1.name = p2.name AND p1.rowid < p2.rowid )
895         OR ( p1.name = p2.duplexname );
896       EXEC SQL OPEN csr119;
897       while (1)
898         {
899           EXEC SQL BEGIN DECLARE SECTION;
900           char name[PRINTERS_NAME_SIZE];
901           EXEC SQL END DECLARE SECTION;
902
903           EXEC SQL FETCH csr119 INTO :name;
904           if (sqlca.sqlcode)
905             break;
906
907           printf("Printer %s has duplicate name\n", name);
908           cant_fix(0);
909         }
910       EXEC SQL CLOSE csr119;
911     }
912
913   dprintf("Loading printservers...\n");
914   printservers = create_hash(100);
915   if (!printservers)
916     out_of_mem("loading printservers");
917
918   EXEC SQL DECLARE csr_ps CURSOR FOR
919     SELECT mach_id, printer_types, owner_type, owner_id, lpc_acl, modby
920     FROM printservers;
921   EXEC SQL OPEN csr_ps;
922   while (1)
923     {
924       EXEC SQL BEGIN DECLARE SECTION;
925       int mach_id, printer_types, owner_id, lpc_acl, modby;
926       char owner_type[PRINTSERVERS_OWNER_TYPE_SIZE];
927       EXEC SQL END DECLARE SECTION;
928
929       EXEC SQL FETCH csr_ps INTO :mach_id, :printer_types, :owner_type,
930         :owner_id, :lpc_acl, :modby;
931       if (sqlca.sqlcode)
932         break;
933
934       ps = malloc(sizeof(struct printserver));
935       if (!ps)
936         out_of_mem("storing printserver");
937       ps->mach_id = mach_id;
938       ps->printer_types = printer_types;
939       ps->owner_type = owner_type[0];
940       ps->owner_id = owner_id;
941       ps->lpc_acl = lpc_acl;
942       ps->modby = modby;
943       retval = hash_store(printservers, mach_id, ps);
944       if (retval == -1)
945         out_of_mem("storing printserver in hash table");
946       else if (retval == 1)
947         {
948           printf("Duplicate printserver mach_id %d\n", mach_id);
949           cant_fix(0);
950         }
951     }
952   EXEC SQL CLOSE csr_ps;
953
954   if (!fast)
955     {
956       dprintf("Checking zephyr...\n");
957       
958       EXEC SQL DECLARE csr120 CURSOR FOR
959         SELECT z1.class FROM zephyr z1, zephyr z2
960         WHERE (z1.class = z2.class AND z1.rowid < z1.rowid);
961       EXEC SQL OPEN csr120;
962       while (1)
963         {
964           EXEC SQL BEGIN DECLARE SECTION;
965           char class[ZEPHYR_CLASS_SIZE];
966           EXEC SQL END DECLARE SECTION;
967
968           EXEC SQL FETCH csr120 INTO :class;
969           if (sqlca.sqlcode)
970             break;
971
972           printf("Zephyr class %s has duplicate name\n", class);
973           cant_fix(0);
974         }
975       EXEC SQL CLOSE csr120;
976     }
977
978   dprintf("Loading containers...\n");
979   containers = create_hash(1000);
980   if (!containers)
981     out_of_mem("loading containers");
982
983   EXEC SQL DECLARE csr_cnts CURSOR FOR
984     SELECT name, cnt_id, list_id, acl_type, acl_id, memacl_type, memacl_id,
985     modby FROM containers;
986   EXEC SQL OPEN csr_cnts;
987   while (1)
988     {
989       EXEC SQL BEGIN DECLARE SECTION;
990       int cnt_id, list_id, acl_id, memacl_id, modby;
991       char name[CONTAINERS_NAME_SIZE];
992       char acl_type[CONTAINERS_ACL_TYPE_SIZE];
993       char memacl_type[CONTAINERS_MEMACL_TYPE_SIZE];
994       EXEC SQL END DECLARE SECTION;
995
996       EXEC SQL FETCH csr_cnts INTO :name, :cnt_id, :list_id, :acl_type,
997         :acl_id, :memacl_type, :memacl_id, :modby;
998       if (sqlca.sqlcode)
999         break;
1000
1001       cnt = malloc(sizeof(struct container));
1002       if (!cnt)
1003         out_of_mem("storing container");
1004       strcpy(cnt->name, strtrim(name));
1005       cnt->cnt_id = cnt_id;
1006       cnt->list_id = list_id;
1007       cnt->acl_type = acl_type[0];
1008       cnt->acl_id = acl_id;
1009       cnt->memacl_type = memacl_type[0];
1010       cnt->memacl_id = memacl_id;
1011       cnt->modby = modby;
1012       retval = hash_store(containers, cnt_id, cnt);
1013       if (retval == -1)
1014         out_of_mem("storing container in hash table");
1015       else if (retval == 1)
1016         {
1017           printf("Duplicate container cnt_id %d\n", cnt_id);
1018           cant_fix(0);
1019         }
1020     }
1021   EXEC SQL CLOSE csr_cnts;
1022
1023   if (!fast)
1024     {
1025       sq = sq_create();
1026       if (!sq)
1027         out_of_mem("looking for duplicate container names");
1028
1029       EXEC SQL DECLARE csr121 CURSOR FOR
1030         SELECT cnt1.cnt_id FROM containers cnt1, containers cnt2
1031         WHERE cnt1.name = cnt2.name AND cnt1.cnt_id != cnt2.cnt_id;
1032       EXEC SQL OPEN csr121;
1033       while (1)
1034         {
1035           EXEC SQL FETCH csr121 INTO :id;
1036           if (sqlca.sqlcode)
1037             break;
1038
1039           sq_save_data(sq, hash_lookup(containers, id));
1040         }
1041       EXEC SQL CLOSE csr121;
1042       generic_fix(sq, show_cnt_name, "Change name", cant_fix, 0);
1043     }
1044 }
This page took 1.657068 seconds and 3 git commands to generate.