]> andersk Git - moira.git/blob - gen/passwd.dc
added copyright message
[moira.git] / gen / passwd.dc
1 /* $Header$
2  *
3  * This generates a master /etc/passwd containing all active (status != 0)
4  * accounts.
5  *
6  *  (c) Copyright 1988 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 <sms.h>
14 #include <sys/types.h>
15 #include <sys/stat.h>
16 #include <sys/time.h>
17
18 extern int errno;
19 char *ingres_date_and_time();
20 char *whoami = "passwd.gen";
21
22
23 main(argc, argv)
24 int argc;
25 char **argv;
26 {
27     FILE *out = stdout;
28     char *outf, outft[64];
29     struct stat sb;
30 ##  char login[9], shell[33], fullname[33], oa[17], op[13], hp[17], *filetime;
31 ##  int uid, error, flag;
32     int ingerr();
33
34     IIseterr(ingerr);
35 ##  ingres sms
36
37     if (argc == 2) {
38         if (stat(argv[1], &sb) == 0) {
39             filetime = ingres_date_and_time(sb.st_mtime);
40 ##          retrieve (flag = int4(interval("min", tblstats.modtime - filetime)))
41 ##              where tblstats.table = "users"
42             if (flag < 0) {
43                 fprintf(stderr, "File %s does not need to be rebuilt.\n",
44                         argv[1]);
45                 exit(SMS_NO_CHANGE);
46             }
47         }
48         outf = argv[1];
49         sprintf(outft, "%s~", outf);
50         if ((out = fopen(outft, "w")) == NULL) {
51             fprintf(stderr, "unable to open %s for output\n", outf);
52             exit(SMS_OCONFIG);
53         }
54     } else if (argc != 1) {
55         fprintf(stderr, "usage: %s [outfile]\n", argv[0]);
56         exit(SMS_ARGS);
57     } else {
58         outf = NULL;
59     }
60
61 ##  set lockmode on users where readlock = nolock
62
63 ##  range of u is users
64 ##  retrieve (login = u.#login, uid = u.#uid, shell = u.#shell,
65 ##            fullname = u.#fullname, oa = u.office_addr,
66 ##            op = u.office_phone, hp = u.home_phone)
67 ##      where u.status = 1 {
68             strtrim(login);
69             strtrim(fullname);
70             strtrim(oa);
71             strtrim(op);
72             strtrim(hp);
73             strtrim(shell);
74             fprintf(out, "%s:*:%d:101:%s,%s,%s,%s:/mit/%s:%s\n",
75                     login, uid, fullname, oa, op, hp, login, shell);
76 ##  }
77 ##  inquire_equel(error = "errorno")
78     if (error)  {
79         fprintf(out, "Ingres error %d\n", error);
80         exit(SMS_INGRES_ERR);
81     }
82
83 ##  exit
84
85     if (fclose(out)) {
86         perror("close failed");
87         exit(SMS_CCONFIG);
88     }
89     if (outf)
90       fix_file(outf);
91     exit(SMS_SUCCESS);
92 }
93
94
95 /*
96  * ingerr: (supposedly) called when Ingres indicates an error.
97  * I have not yet been able to get this to work to intercept a
98  * database open error.
99  */
100 #define INGRES_DEADLOCK 4700
101
102 static int ingerr(num)
103     int *num;
104 {
105     char buf[256];
106     int ingres_errno;
107
108     switch (*num) {
109     case INGRES_DEADLOCK:
110         ingres_errno = SMS_DEADLOCK;
111         break;
112     default:
113         ingres_errno = SMS_INGRES_ERR;
114     }
115     com_err(whoami, SMS_INGRES_ERR, " code %d\n", *num);
116     critical_alert("DCM", "Passwd build encountered INGRES ERROR %d", *num);
117     exit(ingres_errno);
118 }
This page took 0.112655 seconds and 5 git commands to generate.