]> andersk Git - moira.git/blob - gen/sis.dc
Diane Delgado's changes for a fixed table-locking order
[moira.git] / gen / sis.dc
1 /* $Header$
2  *
3  * This generates a list of users and their MIT ID numbers and the
4  * signatures which guarentee this mapping.
5  *
6  *  (c) Copyright 1992 by the Massachusetts Institute of Technology.
7  *  For copying and distribution information, please see the file
8  *  <mit-copyright.h>.
9  */
10
11 #include <mit-copyright.h>
12 #include <stdio.h>
13 #include <moira.h>
14 #include <moira_site.h>
15 #include <des.h>
16 #include <krb.h>
17 #include <gdss.h>
18 #include <sys/types.h>
19 #include <sys/stat.h>
20 #include <sys/time.h>
21 #include <sys/file.h>
22 #include <strings.h>
23 #include <ctype.h>
24 EXEC SQL INCLUDE sqlca;
25
26 extern int errno;
27 char *whoami = "sis.gen";
28
29
30 main(argc, argv)
31 int argc;
32 char **argv;
33 {
34     int out = 1 /* stdout */;
35     char *outf = NULL, outft[64];
36     struct stat sb;
37     int flag1;
38     SigInfo si;
39     struct timeval now;
40     EXEC SQL BEGIN DECLARE SECTION;
41     char login[9], sig[257], id[17], kname[257];
42     int timestamp, cutoff;
43     struct { char login[12];
44              char id[12];
45              char sig[256];
46          } outrec;
47     EXEC SQL END DECLARE SECTION;
48
49     initialize_sms_error_table ();
50
51 #ifsql INGRES
52     EXEC SQL CONNECT moira;
53     EXEC SQL SET LOCKMODE SESSION WHERE LEVEL=TABLE, READLOCK=SHARED;
54 #endsql
55 #ifsql INFORMIX
56     EXEC SQL DATABASE moira;
57 #endsql
58
59     if (argc == 2) {
60         if (stat(argv[1], &sb) == 0) {
61             if (ModDiff (&flag1, "users", sb.st_mtime) == 0 &&
62                 flag1 < 0) {
63                 fprintf(stderr, "File %s does not need to be rebuilt.\n",
64                         argv[1]);
65                 exit(MR_NO_CHANGE);
66             }
67         }
68         outf = argv[1];
69         sprintf(outft, "%s~", outf);
70         if ((out = open(outft, O_WRONLY|O_APPEND|O_CREAT|O_TRUNC, 0666)) < 0) {
71             fprintf(stderr, "unable to open %s for output\n", outf);
72             exit(MR_OCONFIG);
73         }
74     } else if (argc != 1) {
75         fprintf(stderr, "usage: %s [outfile]\n", argv[0]);
76         exit(MR_ARGS);
77     } else {
78         outf = NULL;
79     }
80
81     /* the cutoff time is 14 days before now */
82     gettimeofday(&now, NULL);
83     cutoff = now.tv_sec - 14 * 24 * 60 * 60;
84
85     /* The following is declarative, not executed,
86      * and so is dependent on where it is in the file,
87      * not in the order of execution of statements.
88      */
89     EXEC SQL WHENEVER SQLERROR GOTO sqlerr;
90
91     /* lock user table first */
92
93     EXEC SQL SELECT modtime INTO :id FROM users WHERE users_id = 0;
94
95     EXEC SQL DECLARE x CURSOR FOR
96       SELECT u.login, u.clearid, u.signature, u.sigdate, s.string
97       FROM users u, strings s
98         WHERE u.status = 1 and u.sigwho = s.string_id and u.sigwho != 0
99           and u.secure <= :cutoff and u.secure != 0;
100     EXEC SQL OPEN x;
101     while (1) {
102         EXEC SQL FETCH x INTO :login, :id, :sig, :timestamp, :kname;
103         if (sqlca.sqlcode != 0) break;
104         if (id == 0) continue;
105         if (!isdigit(id[1])) continue;
106         strtrim(login);
107         strtrim(id);
108         strtrim(kname);
109         strcpy(outrec.login, login);
110         strcpy(outrec.id, id);
111         si.timestamp = timestamp;
112         si.SigInfoVersion = 0; /* XXXXXX this isn't used */
113         kname_parse(si.pname, si.pinst, si.prealm, kname);
114         si.rawsig = (unsigned char *)sig;
115         GDSS_Recompose(&si, outrec.sig);
116         write(out, &outrec, sizeof(outrec));
117     }
118     EXEC SQL CLOSE x;
119
120 #ifsql INGRES
121     EXEC SQL DISCONNECT;
122 #endsql
123 #ifsql INFORMIX
124     EXEC SQL CLOSE DATABASE;
125 #endsql
126
127     if (close(out)) {
128         perror("close failed");
129         exit(MR_CCONFIG);
130     }
131     if (outf)
132       fix_file(outf);
133     exit(MR_SUCCESS);
134
135  sqlerr:
136     com_err(whoami, MR_INGRES_ERR, " code %d\n", sqlca.sqlcode);
137 #ifsql INGRES
138     if (sqlca.sqlcode == 17700 || sqlca.sqlcode == -37000)
139       exit(MR_DEADLOCK);
140 #endsql
141     critical_alert("DCM", "SIS build encountered INGRES ERROR %d",
142                    sqlca.sqlcode);
143     exit(MR_INGRES_ERR);
144 }
This page took 0.27944 seconds and 5 git commands to generate.