]> andersk Git - moira.git/blob - server/qsupport.pc
Don't need to work around this Ingres bug from 15 years ago anymore.
[moira.git] / server / qsupport.pc
1 /* $Id$
2  *
3  * Special query routines
4  *
5  * Copyright (C) 1987-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 "mr_server.h"
12 #include "query.h"
13 #include "qrtn.h"
14
15 #include <ctype.h>
16 #include <stdlib.h>
17 #include <string.h>
18
19 EXEC SQL INCLUDE sqlca;
20
21 RCSID("$Header$");
22
23 extern char *whoami, *table_name[];
24 extern int dbms_errno, mr_errcode;
25
26 EXEC SQL BEGIN DECLARE SECTION;
27 extern char stmt_buf[];
28 EXEC SQL END DECLARE SECTION;
29
30 EXEC SQL WHENEVER SQLERROR DO dbmserr();
31
32 int get_ace_internal(char *atypex, int aid,
33                      int (*action)(int, char *[], void *), void *actarg);
34 int qualified_get(struct query *q, char *argv[],
35                   int (*action)(int, char *[], void *), void *actarg,
36                   char *start, char *range, char *field, char *flags[]);
37
38
39 /* set_pobox - this does all of the real work.
40  *       argv = user_id, type, box
41  * if type is POP, then box should be a machine, and its ID should be put in
42  * pop_id.  If type is IMAP, then box should be a filesys, and its ID should
43  * be put in pop_id.  If type is SMTP, then box should be a string and its
44  * ID should be put in box_id.  If type is NONE, then box doesn't matter.
45  */
46
47 int set_pobox(struct query *q, char **argv, client *cl)
48 {
49   EXEC SQL BEGIN DECLARE SECTION;
50   int user, id;
51   char *box, potype[USERS_POTYPE_SIZE];
52   EXEC SQL END DECLARE SECTION;
53   int status;
54
55   box = argv[2];
56   user = *(int *)argv[0];
57
58   EXEC SQL SELECT pop_id, potype INTO :id, :potype FROM users
59     WHERE users_id = :user;
60   if (dbms_errno)
61     return mr_errcode;
62   if (!strcmp(strtrim(potype), "POP") ||
63       (!strcmp(strtrim(potype), "SPLIT") && id))
64     set_pop_usage(id, -1);
65
66   if (!strcmp(argv[1], "POP"))
67     {
68       status = name_to_id(box, MACHINE_TABLE, &id);
69       if (status == MR_NO_MATCH)
70         return MR_MACHINE;
71       else if (status)
72         return status;
73       EXEC SQL UPDATE users SET potype = 'POP', pop_id = :id, imap_id = 0
74         WHERE users_id = :user;
75       set_pop_usage(id, 1);
76     }
77   else if (!strcmp(argv[1], "SMTP") || !strcmp(argv[1], "SPLIT"))
78     {
79       if (strchr(box, '/') || strchr(box, '|'))
80         return MR_BAD_CHAR;
81       status = name_to_id(box, STRINGS_TABLE, &id);
82       if (status == MR_NO_MATCH)
83         id = add_string(box);
84       else if (status)
85         return status;
86
87       /* If going from SMTP or NONE to SPLIT, make sure we have a valid
88        * POP or IMAP box.
89        */
90       if ((!strcmp(potype, "SMTP") || !strcmp(potype, "NONE")) && 
91            !strcmp(argv[1], "SPLIT"))
92         {
93           status = set_pobox_pop(q, argv, cl);
94           if (status)
95             return status;
96         }
97       strlcpy(potype, argv[1], sizeof(potype));
98       EXEC SQL UPDATE users SET potype = :potype, box_id = :id
99         WHERE users_id = :user;
100     }
101   else if (!strcmp(argv[1], "IMAP"))
102     {
103       EXEC SQL SELECT filsys_id INTO :id FROM filesys
104         WHERE label = :box AND type = 'IMAP';
105       if (sqlca.sqlcode)
106         return MR_FILESYS;
107       EXEC SQL UPDATE users SET potype = 'IMAP', imap_id = :id, pop_id = 0
108         WHERE users_id = :user;
109     }
110   else /* argv[1] == "NONE" */
111     {
112       EXEC SQL UPDATE users SET potype = 'NONE'
113         WHERE users_id = :user;
114     }
115
116   set_pobox_modtime(q, argv, cl);
117   EXEC SQL UPDATE tblstats SET updates = updates + 1, modtime = SYSDATE
118     WHERE table_name = 'users';
119   if (dbms_errno)
120     return mr_errcode;
121   return MR_SUCCESS;
122 }
123
124 /* set_pobox_pop: Revert to existing POP or IMAP pobox.
125  * Also take care of keeping track of the post office usage.
126  */
127 int set_pobox_pop(struct query *q, char **argv, client *cl)
128 {
129   EXEC SQL BEGIN DECLARE SECTION;
130   int id, pid, iid, mid;
131   char type[USERS_POTYPE_SIZE];
132   EXEC SQL END DECLARE SECTION;
133
134   id = *(int *)argv[0];
135   EXEC SQL SELECT potype, pop_id, imap_id INTO :type, :pid, :iid
136     FROM users WHERE users_id = :id;
137   if (sqlca.sqlerrd[2] == 0 || (pid == 0 && iid == 0))
138     return MR_MACHINE;
139
140   if (pid)
141     {
142       EXEC SQL SELECT mach_id INTO :mid FROM machine
143         WHERE mach_id = :pid;
144       if (sqlca.sqlerrd[2] == 0)
145         return MR_MACHINE;
146       EXEC SQL UPDATE users SET potype = 'POP' WHERE users_id = :id;
147       if (!strcmp(strtrim(type), "POP"))
148         set_pop_usage(mid, 1);
149     }
150   else
151     {
152       EXEC SQL SELECT filsys_id INTO :mid FROM filesys
153         WHERE filsys_id = :iid;
154       if (sqlca.sqlerrd[2] == 0)
155         return MR_MACHINE;
156       EXEC SQL UPDATE users SET potype = 'IMAP' WHERE users_id = :id;
157     }
158
159   set_pobox_modtime(q, argv, cl);
160   EXEC SQL UPDATE tblstats SET updates = updates + 1, modtime = SYSDATE
161     WHERE table_name = 'users';
162   if (dbms_errno)
163     return mr_errcode;
164   return MR_SUCCESS;
165 }
166
167
168 /* Add_member_to_list: do list flattening as we go!  MAXLISTDEPTH is
169  * how many different ancestors a member is allowed to have.
170  */
171
172 #define MAXLISTDEPTH    2048
173
174 int add_member_to_list(struct query *q, char **argv, client *cl)
175 {
176   EXEC SQL BEGIN DECLARE SECTION;
177   int id, lid, mid, tag, error, who, ref, rowcnt;
178   char *mtype, dtype[IMEMBERS_MEMBER_TYPE_SIZE], *entity;
179   EXEC SQL END DECLARE SECTION;
180   int ancestors[MAXLISTDEPTH], aref[MAXLISTDEPTH], acount, a;
181   int descendants[MAXLISTDEPTH], dref[MAXLISTDEPTH], dcount, d;
182   int status;
183   char *dtypes[MAXLISTDEPTH];
184   char *iargv[3], *buf;
185
186   lid = *(int *)argv[0];
187   mtype = argv[1];
188   mid = *(int *)argv[2];
189   tag = !strcmp(q->shortname, "atml") ? *(int *)argv[3] : 0;
190
191   if (acl_access_check(lid, cl))
192     return MR_PERM;
193
194   /* if the member is already a direct member of the list, punt */
195   EXEC SQL SELECT COUNT(list_id) INTO :rowcnt FROM imembers
196     WHERE list_id = :lid AND member_id = :mid
197     AND member_type = :mtype AND direct = 1;
198   if (rowcnt > 0)
199     return MR_EXISTS;
200   if (!strcasecmp(mtype, "STRING"))
201     {
202       buf = malloc(0);
203       status = id_to_name(mid, STRINGS_TABLE, &buf);
204       if (status)
205         return status;
206       if (strchr(buf, '/') || strchr(buf, '|') || strchr(buf, ','))
207         {
208           free(buf);
209           return MR_BAD_CHAR;
210         }
211       free(buf);
212     }
213
214   ancestors[0] = lid;
215   aref[0] = 1;
216   acount = 1;
217   EXEC SQL DECLARE csr103 CURSOR FOR
218     SELECT list_id, ref_count   FROM imembers
219     WHERE member_id = :lid AND member_type = 'LIST';
220   if (dbms_errno)
221     return mr_errcode;
222   EXEC SQL OPEN csr103;
223   if (dbms_errno)
224     return mr_errcode;
225   while (1)
226     {
227       EXEC SQL FETCH csr103 INTO :id, :ref;
228       if (sqlca.sqlcode)
229         break;
230       aref[acount] = ref;
231       ancestors[acount++] = id;
232       if (acount >= MAXLISTDEPTH)
233         break;
234     }
235   EXEC SQL CLOSE csr103;
236   if (dbms_errno)
237     return mr_errcode;
238   if (acount >= MAXLISTDEPTH)
239     return MR_INTERNAL;
240   descendants[0] = mid;
241   dtypes[0] = mtype;
242   dref[0] = 1;
243   dcount = 1;
244   error = 0;
245   if (!strcmp(mtype, "LIST"))
246     {
247       EXEC SQL DECLARE csr104 CURSOR FOR
248         SELECT member_id, member_type, ref_count
249         FROM imembers
250         WHERE list_id = :mid;
251       if (dbms_errno)
252         return mr_errcode;
253       EXEC SQL OPEN csr104;
254       if (dbms_errno)
255         return mr_errcode;
256       while (1)
257         {
258           EXEC SQL FETCH csr104 INTO :id, :dtype, :ref;
259           if (sqlca.sqlcode)
260             break;
261           switch (dtype[0])
262             {
263             case 'L':
264               dtypes[dcount] = "LIST";
265               break;
266             case 'U':
267               dtypes[dcount] = "USER";
268               break;
269             case 'S':
270               dtypes[dcount] = "STRING";
271               break;
272             case 'K':
273               dtypes[dcount] = "KERBEROS";
274               break;
275             case 'M':
276               dtypes[dcount] = "MACHINE";
277               break;
278             default:
279               error++;
280               break;
281             }
282           dref[dcount] = ref;
283           descendants[dcount++] = id;
284           if (dcount >= MAXLISTDEPTH)
285             {
286               error++;
287               break;
288             }
289         }
290       EXEC SQL CLOSE csr104;
291       if (dbms_errno)
292         return mr_errcode;
293       if (error)
294         return MR_INTERNAL;
295     }
296   for (a = 0; a < acount; a++)
297     {
298       lid = ancestors[a];
299       for (d = 0; d < dcount; d++)
300         {
301           mid = descendants[d];
302           mtype = dtypes[d];
303           if (mid == lid && !strcmp(mtype, "LIST"))
304             return MR_LISTLOOP;
305           EXEC SQL SELECT COUNT(ref_count) INTO :rowcnt
306             FROM imembers
307             WHERE list_id = :lid AND member_id = :mid
308             AND member_type = :mtype;
309           ref = aref[a] * dref[d];
310           if (rowcnt > 0)
311             {
312               if (a == 0 && d == 0)
313                 {
314                   EXEC SQL UPDATE imembers
315                     SET ref_count = ref_count + :ref, direct = 1, tag = :tag
316                     WHERE list_id = :lid AND member_id = :mid
317                     AND member_type = :mtype;
318                 }
319               else
320                 {
321                   EXEC SQL UPDATE imembers
322                     SET ref_count = ref_count + :ref
323                     WHERE list_id = :lid AND member_id = :mid
324                     AND member_type = :mtype;
325                 }
326             }
327           else
328             {
329               incremental_clear_before();
330               if (a == 0 && d == 0)
331                 {
332                   EXEC SQL INSERT INTO imembers
333                     (list_id, member_type, member_id, tag, direct, ref_count)
334                     VALUES (:lid, :mtype, :mid, :tag, 1, :ref);
335                 }
336               else
337                 {
338                   EXEC SQL INSERT INTO imembers
339                     (list_id, member_type, member_id, tag, direct, ref_count)
340                     VALUES (:lid, :mtype, :mid, :tag, 0, :ref);
341                 }
342               iargv[0] = (char *)lid;
343               iargv[1] = mtype;
344               iargv[2] = (char *)mid;
345               incremental_after(IMEMBERS_TABLE, 0, iargv);
346             }
347         }
348     }
349   lid = *(int *)argv[0];
350   entity = cl->entity;
351   who = cl->client_id;
352   EXEC SQL UPDATE list
353     SET modtime = SYSDATE, modby = :who, modwith = :entity
354     WHERE list_id = :lid;
355   if (dbms_errno)
356     return mr_errcode;
357   return MR_SUCCESS;
358 }
359
360
361 /* Delete_member_from_list: do list flattening as we go!
362  */
363
364 int delete_member_from_list(struct query *q, char **argv, client *cl)
365 {
366   EXEC SQL BEGIN DECLARE SECTION;
367   int id, lid, mid, cnt, error, who, ref;
368   char *mtype, dtype[IMEMBERS_MEMBER_TYPE_SIZE], *entity;
369   EXEC SQL END DECLARE SECTION;
370   int ancestors[MAXLISTDEPTH], aref[MAXLISTDEPTH], acount, a;
371   int descendants[MAXLISTDEPTH], dref[MAXLISTDEPTH], dcount, d;
372   char *dtypes[MAXLISTDEPTH];
373   char *iargv[3];
374
375   lid = *(int *)argv[0];
376   mtype = argv[1];
377   mid = *(int *)argv[2];
378
379   if (acl_access_check(lid, cl))
380     return MR_PERM;
381
382   /* if the member is not a direct member of the list, punt */
383   EXEC SQL SELECT COUNT(list_id) INTO :cnt FROM imembers
384     WHERE list_id = :lid AND member_id = :mid
385     AND member_type = :mtype AND direct = 1;
386   if (dbms_errno)
387     return mr_errcode;
388   if (cnt == 0)
389     return MR_NO_MATCH;
390   ancestors[0] = lid;
391   aref[0] = 1;
392   acount = 1;
393   EXEC SQL DECLARE csr105 CURSOR FOR
394     SELECT list_id, ref_count FROM imembers
395     WHERE member_id = :lid AND member_type = 'LIST';
396   if (dbms_errno)
397     return mr_errcode;
398   EXEC SQL OPEN csr105;
399   if (dbms_errno)
400     return mr_errcode;
401   while (1)
402     {
403       EXEC SQL FETCH csr105 INTO :id, :ref;
404       if (sqlca.sqlcode)
405         break;
406       aref[acount] = ref;
407       ancestors[acount++] = id;
408       if (acount >= MAXLISTDEPTH)
409         break;
410     }
411   EXEC SQL CLOSE csr105;
412   if (dbms_errno)
413     return mr_errcode;
414   if (acount >= MAXLISTDEPTH)
415     return MR_INTERNAL;
416   descendants[0] = mid;
417   dtypes[0] = mtype;
418   dref[0] = 1;
419   dcount = 1;
420   error = 0;
421   if (!strcmp(mtype, "LIST"))
422     {
423       EXEC SQL DECLARE csr106 CURSOR FOR
424         SELECT member_id, member_type, ref_count FROM imembers
425         WHERE list_id = :mid;
426       if (dbms_errno)
427         return mr_errcode;
428       EXEC SQL OPEN csr106;
429       if (dbms_errno)
430         return mr_errcode;
431       while (1)
432         {
433           EXEC SQL FETCH csr106 INTO :id, :dtype, :ref;
434           if (sqlca.sqlcode)
435             break;
436           switch (dtype[0])
437             {
438             case 'L':
439               dtypes[dcount] = "LIST";
440               break;
441             case 'U':
442               dtypes[dcount] = "USER";
443               break;
444             case 'S':
445               dtypes[dcount] = "STRING";
446               break;
447             case 'K':
448               dtypes[dcount] = "KERBEROS";
449               break;
450             case 'M':
451               dtypes[dcount] = "MACHINE";
452               break;
453             default:
454               error++;
455               break;
456             }
457           dref[dcount] = ref;
458           descendants[dcount++] = id;
459           if (dcount >= MAXLISTDEPTH)
460             break;
461         }
462       EXEC SQL CLOSE csr106;
463       if (dbms_errno)
464         return mr_errcode;
465       if (error)
466         return MR_INTERNAL;
467     }
468   for (a = 0; a < acount; a++)
469     {
470       lid = ancestors[a];
471       for (d = 0; d < dcount; d++)
472         {
473           mid = descendants[d];
474           mtype = dtypes[d];
475           if (mid == lid && !strcmp(mtype, "LIST"))
476             return MR_LISTLOOP;
477           EXEC SQL SELECT ref_count INTO :cnt FROM imembers
478             WHERE list_id = :lid AND member_id = :mid AND member_type = :mtype;
479           ref = aref[a] * dref[d];
480           if (cnt <= ref)
481             {
482               iargv[0] = (char *)lid;
483               iargv[1] = mtype;
484               iargv[2] = (char *)mid;
485               incremental_before(IMEMBERS_TABLE, 0, iargv);
486               EXEC SQL DELETE FROM imembers
487                 WHERE list_id = :lid AND member_id = :mid
488                 AND member_type= :mtype;
489               incremental_clear_after();
490             }
491           else if (a == 0 && d == 0)
492             {
493               EXEC SQL UPDATE imembers
494                 SET ref_count = ref_count - :ref, direct = 0
495                 WHERE list_id = :lid AND member_id = :mid
496                 AND member_type = :mtype;
497             }
498           else
499             {
500               EXEC SQL UPDATE imembers
501                 SET ref_count = ref_count - :ref
502                 WHERE list_id = :lid AND member_id = :mid
503                 AND member_type = :mtype;
504             }
505         }
506     }
507   lid = *(int *)argv[0];
508   entity = cl->entity;
509   who = cl->client_id;
510   EXEC SQL UPDATE list SET modtime = SYSDATE, modby = :who, modwith = :entity
511     WHERE list_id = :lid;
512   if (dbms_errno)
513     return mr_errcode;
514   return MR_SUCCESS;
515 }
516
517 int tag_member_of_list(struct query *q, char **argv, client *cl)
518 {
519   EXEC SQL BEGIN DECLARE SECTION;
520   int lid, mid, cnt, tag;
521   char *mtype;
522   EXEC SQL END DECLARE SECTION;
523   char *iargv[3];
524
525   lid = *(int *)argv[0];
526   mtype = argv[1];
527   mid = *(int *)argv[2];
528   tag = *(int *)argv[3];
529
530   EXEC SQL SELECT COUNT(member_id) INTO :cnt FROM imembers
531     WHERE member_id = :mid AND member_type = :mtype AND
532     list_id = :lid;
533   if (dbms_errno)
534     return mr_errcode;
535   if (cnt == 0)
536     return MR_NO_MATCH;
537
538   incremental_clear_before();
539   EXEC SQL UPDATE imembers SET tag = :tag WHERE list_id = :lid 
540     AND member_type = :mtype AND member_id = :mid;
541   if (dbms_errno)
542     return mr_errcode;
543   
544   iargv[0] = (char *)lid;
545   iargv[1] = mtype;
546   iargv[2] = (char *)mid;
547   incremental_after(IMEMBERS_TABLE, 0, iargv);
548
549   return MR_SUCCESS;
550 }
551
552 /* Don't allow someone to add someone to a list which is the acl of a
553  * query unless they're on the list acl, even if they're on the amtl
554  * query acl! Also, don't allow someone proxying to add someone to a
555  * capacl.
556  */
557 int acl_access_check(int list_id, client *cl)
558 {
559   EXEC SQL BEGIN DECLARE SECTION;
560   int c1, c2, lid = list_id, acl_id, memacl_id;
561   char acl_type[LIST_ACL_TYPE_SIZE], memacl_type[LIST_ACL_TYPE_SIZE];
562   EXEC SQL END DECLARE SECTION;
563
564   /* Check if the list is directly a capacl */
565   EXEC SQL SELECT COUNT(list_id) INTO :c1 FROM capacls WHERE list_id=:lid;
566
567   /* Check if the list is a member (direct or indirect) of a list that
568      is a capacl */
569   EXEC SQL SELECT COUNT(l1.list_id) INTO :c2 FROM list l1, list l2,
570     imembers im, capacls c WHERE c.list_id = l2.list_id AND
571     im.list_id = l2.list_id AND im.member_type = 'LIST' AND
572     im.member_id = l1.list_id AND l1.list_id = :lid;
573
574   if (c1 == 0 && c2 == 0)
575     return 0;
576
577   if (cl->proxy_id)
578     return 1;
579
580   EXEC SQL SELECT acl_type, acl_id, memacl_type, memacl_id
581     INTO :acl_type, :acl_id, :memacl_type, :memacl_id
582     FROM list WHERE list_id=:lid;
583
584   if (!find_member(acl_type, acl_id, cl))
585     {
586       if (!find_member(memacl_type, memacl_id, cl))
587         return 1;
588     }
589
590   return 0;
591 }
592
593
594 /* get_ace_use - given a type and a name, return a type and a name.
595  * The ace_type is one of "LIST", "USER", "RLIST", or "RUSER" in argv[0],
596  * and argv[1] will contain the ID of the entity in question.  The R*
597  * types mean to recursively look at every containing list, not just
598  * when the object in question is a direct member.  On return, the
599  * usage type will be one of LIST, SERVICE, FILESYS, QUOTA, QUERY, or ZEPHYR.
600  */
601
602 int get_ace_use(struct query *q, char *argv[], client *cl,
603                 int (*action)(int, char *[], void *), void *actarg)
604 {
605   int found = 0;
606   EXEC SQL BEGIN DECLARE SECTION;
607   char *atype;
608   int aid, listid, id;
609   EXEC SQL END DECLARE SECTION;
610   struct save_queue *sq;
611
612   atype = argv[0];
613   aid = *(int *)argv[1];
614   if (!strcmp(atype, "LIST") || !strcmp(atype, "USER") ||
615       !strcmp(atype, "KERBEROS"))
616     return get_ace_internal(atype, aid, action, actarg);
617
618   sq = sq_create();
619   if (!strcmp(atype, "RLIST"))
620     {
621       sq_save_data(sq, (void *)aid);
622       /* get all the list_id's of containing lists */
623       EXEC SQL DECLARE csr107 CURSOR FOR
624         SELECT list_id FROM imembers
625         WHERE member_type = 'LIST' AND member_id = :aid;
626       if (dbms_errno)
627         return mr_errcode;
628       EXEC SQL OPEN csr107;
629       if (dbms_errno)
630         return mr_errcode;
631       while (1)
632         {
633           EXEC SQL FETCH csr107 INTO :listid;
634           if (sqlca.sqlcode)
635             break;
636           sq_save_unique_data(sq, (void *)listid);
637         }
638       EXEC SQL CLOSE csr107;
639       /* now process each one */
640       while (sq_get_data(sq, &id))
641         {
642           if (get_ace_internal("LIST", id, action, actarg) == MR_SUCCESS)
643             found++;
644         }
645     }
646
647   if (!strcmp(atype, "RUSER"))
648     {
649       EXEC SQL DECLARE csr108 CURSOR FOR
650         SELECT list_id FROM imembers
651         WHERE member_type = 'USER' AND member_id = :aid;
652       if (dbms_errno)
653         return mr_errcode;
654       EXEC SQL OPEN csr108;
655       if (dbms_errno)
656         return mr_errcode;
657       while (1)
658         {
659           EXEC SQL FETCH csr108 INTO :listid;
660           if (sqlca.sqlcode)
661             break;
662           sq_save_data(sq, (void *)listid);
663         }
664       EXEC SQL CLOSE csr108;
665       /* now process each one */
666       while (sq_get_data(sq, &id))
667         {
668           if (get_ace_internal("LIST", id, action, actarg) == MR_SUCCESS)
669             found++;
670         }
671       if (get_ace_internal("USER", aid, action, actarg) == MR_SUCCESS)
672         found++;
673     }
674
675   if (!strcmp(atype, "RKERBEROS"))
676     {
677       EXEC SQL DECLARE csr109 CURSOR FOR
678         SELECT list_id FROM imembers
679         WHERE member_type = 'KERBEROS' AND member_id = :aid;
680       if (dbms_errno)
681         return mr_errcode;
682       EXEC SQL OPEN csr109;
683       if (dbms_errno)
684         return mr_errcode;
685       while (1)
686         {
687           EXEC SQL FETCH csr109 INTO :listid;
688           if (sqlca.sqlcode)
689             break;
690           sq_save_data(sq, (void *)listid);
691         }
692       EXEC SQL CLOSE csr109;
693       /* now process each one */
694       while (sq_get_data(sq, &id))
695         {
696           if (get_ace_internal("LIST", id, action, actarg) == MR_SUCCESS)
697             found++;
698         }
699       if (get_ace_internal("KERBEROS", aid, action, actarg) == MR_SUCCESS)
700         found++;
701     }
702
703   sq_destroy(sq);
704   if (dbms_errno)
705     return mr_errcode;
706   if (!found)
707     return MR_NO_MATCH;
708   return MR_SUCCESS;
709 }
710
711
712 /* This looks up a single list or user for ace use.  atype must be "USER"
713  * or "LIST", and aid is the ID of the corresponding object.  This is used
714  * by get_ace_use above.
715  */
716
717 int get_ace_internal(char *atype, int aid,
718                      int (*action)(int, char *[], void *), void *actarg)
719 {
720   char *rargv[2];
721   int found = 0;
722   EXEC SQL BEGIN DECLARE SECTION;
723   char name[MAX_FIELD_WIDTH], *type = atype;
724   int id = aid;
725   EXEC SQL END DECLARE SECTION;
726
727   rargv[1] = name;
728   if (!strcmp(atype, "LIST"))
729     {
730       rargv[0] = "FILESYS";
731       EXEC SQL DECLARE csr110 CURSOR FOR
732         SELECT label FROM filesys
733         WHERE owners = :id;
734       if (dbms_errno)
735         return mr_errcode;
736       EXEC SQL OPEN csr110;
737       if (dbms_errno)
738         return mr_errcode;
739       while (1)
740         {
741           EXEC SQL FETCH csr110 INTO :name;
742           if (sqlca.sqlcode)
743             break;
744           (*action)(2, rargv, actarg);
745           found++;
746         }
747       EXEC SQL CLOSE csr110;
748
749       rargv[0] = "QUERY";
750       EXEC SQL DECLARE csr111 CURSOR FOR
751         SELECT capability FROM capacls
752         WHERE list_id = :id;
753       if (dbms_errno)
754         return mr_errcode;
755       EXEC SQL OPEN csr111;
756       if (dbms_errno)
757         return mr_errcode;
758       while (1)
759         {
760           EXEC SQL FETCH csr111 INTO :name;
761           if (sqlca.sqlcode)
762             break;
763           (*action)(2, rargv, actarg);
764           found++;
765         }
766       EXEC SQL CLOSE csr111;
767     }
768   else if (!strcmp(atype, "USER"))
769     {
770       rargv[0] = "FILESYS";
771       EXEC SQL DECLARE csr112 CURSOR FOR
772         SELECT label FROM filesys
773         WHERE owner = :id;
774       if (dbms_errno)
775         return mr_errcode;
776       EXEC SQL OPEN csr112;
777       if (dbms_errno)
778         return mr_errcode;
779       while (1)
780         {
781           EXEC SQL FETCH csr112 INTO :name;
782           if (sqlca.sqlcode)
783             break;
784           (*action)(2, rargv, actarg);
785           found++;
786         }
787       EXEC SQL CLOSE csr112;
788     }
789
790   rargv[0] = "LIST";
791   EXEC SQL DECLARE csr113 CURSOR FOR
792     SELECT name FROM list
793     WHERE (acl_type = :type AND acl_id = :id)
794     OR (memacl_type = :type AND memacl_id = :id);
795   if (dbms_errno)
796     return mr_errcode;
797   EXEC SQL OPEN csr113;
798   if (dbms_errno)
799     return mr_errcode;
800   while (1)
801     {
802       EXEC SQL FETCH csr113 INTO :name;
803       if (sqlca.sqlcode)
804         break;
805       (*action)(2, rargv, actarg);
806       found++;
807     }
808   EXEC SQL CLOSE csr113;
809
810   rargv[0] = "SERVICE";
811   EXEC SQL DECLARE csr114 CURSOR FOR
812     SELECT name FROM servers
813     WHERE acl_type = :type AND acl_id = :id;
814   if (dbms_errno)
815     return mr_errcode;
816   EXEC SQL OPEN csr114;
817   if (dbms_errno)
818     return mr_errcode;
819   while (1)
820     {
821       EXEC SQL FETCH csr114 INTO :name;
822       if (sqlca.sqlcode)
823         break;
824       (*action)(2, rargv, actarg);
825       found++;
826     }
827   EXEC SQL CLOSE csr114;
828
829   rargv[0] = "HOSTACCESS";
830   EXEC SQL DECLARE csr115 CURSOR FOR
831     SELECT name FROM machine m, hostaccess ha
832     WHERE m.mach_id = ha.mach_id AND ha.acl_type = :type
833     AND ha.acl_id = :id;
834   if (dbms_errno)
835     return mr_errcode;
836   EXEC SQL OPEN csr115;
837   if (dbms_errno)
838     return mr_errcode;
839   while (1)
840     {
841       EXEC SQL FETCH csr115 INTO :name;
842       if (sqlca.sqlcode)
843         break;
844       (*action)(2, rargv, actarg);
845       found++;
846     }
847   EXEC SQL CLOSE csr115;
848
849   rargv[0] = "MACHINE";
850   EXEC SQL DECLARE csr115a CURSOR FOR
851     SELECT name FROM machine m
852     WHERE m.owner_type = :type
853     AND m.owner_id = :id;
854   if (dbms_errno)
855     return mr_errcode;
856   EXEC SQL OPEN csr115a;
857   if (dbms_errno)
858     return mr_errcode;
859   while (1)
860     {
861       EXEC SQL FETCH csr115a INTO :name;
862       if (sqlca.sqlcode)
863         break;
864       (*action)(2, rargv, actarg);
865       found++;
866     }
867   EXEC SQL CLOSE csr115a;
868
869   rargv[0] = "ZEPHYR";
870   EXEC SQL DECLARE csr116 CURSOR FOR
871     SELECT class FROM zephyr z
872     WHERE z.xmt_type = :type AND z.xmt_id = :id
873     OR z.sub_type = :type AND z.sub_id = :id
874     OR z.iws_type = :type AND z.iws_id = :id
875     OR z.iui_type = :type AND z.iui_id = :id
876     OR z.owner_type = :type AND z.owner_id = :id;
877   if (dbms_errno)
878     return mr_errcode;
879   EXEC SQL OPEN csr116;
880   if (dbms_errno)
881     return mr_errcode;
882   while (1)
883     {
884       EXEC SQL FETCH csr116 INTO :name;
885       if (sqlca.sqlcode)
886         break;
887       (*action)(2, rargv, actarg);
888       found++;
889     }
890   EXEC SQL CLOSE csr116;
891
892   rargv[0] = "CONTAINER";
893   EXEC SQL DECLARE csr117c CURSOR FOR
894     SELECT name FROM containers c
895     WHERE c.acl_type = :type AND c.acl_id = :id;
896   if (dbms_errno)
897     return mr_errcode;
898   EXEC SQL OPEN csr117c;
899   while (1)
900     {
901       EXEC SQL FETCH csr117c INTO :name;
902       if (sqlca.sqlcode)
903         break;
904       (*action)(2, rargv, actarg);
905       found++;
906     }
907   EXEC SQL CLOSE csr117c;
908
909   if (!found)
910     return MR_NO_MATCH;
911   return MR_SUCCESS;
912 }
913
914 /* ghbo_internal */
915 int ghbo_internal(char *atype, int aid,
916                   int (*action)(int, char *[], void *), void *actarg)
917 {
918   char *rargv[1];
919   int found = 0;
920   EXEC SQL BEGIN DECLARE SECTION;
921   char name[MACHINE_NAME_SIZE], *type = atype;
922   int id = aid;
923   EXEC SQL END DECLARE SECTION;
924
925   rargv[0] = name;
926   EXEC SQL DECLARE csr115b CURSOR FOR
927     SELECT name FROM machine m
928     WHERE m.owner_type = :type
929     AND m.owner_id = :id;
930   if (dbms_errno)
931     return mr_errcode;
932   EXEC SQL OPEN csr115b;
933   if (dbms_errno)
934     return mr_errcode;
935   while (1)
936     {
937       EXEC SQL FETCH csr115b INTO :name;
938       if (sqlca.sqlcode)
939         break;
940       (*action)(1, rargv, actarg);
941       found++;
942     }
943   EXEC SQL CLOSE csr115b;
944   
945   if (!found)
946     return MR_NO_MATCH;
947   return MR_SUCCESS;
948 }
949
950 /* get_host_by_owner - like gaus but limited to hosts */
951 int get_host_by_owner(struct query *q, char *argv[], client *cl,
952                       int (*action)(int, char *[], void *), void *actarg)
953 {
954   int found = 0;
955   EXEC SQL BEGIN DECLARE SECTION;
956   char *atype;
957   int aid, listid, id;
958   EXEC SQL END DECLARE SECTION;
959   struct save_queue *sq;
960
961   atype = argv[0];
962   aid = *(int *)argv[1];
963   if (!strcmp(atype, "LIST") || !strcmp(atype, "USER") ||
964       !strcmp(atype, "KERBEROS"))
965     return ghbo_internal(atype, aid, action, actarg);
966
967   sq = sq_create();
968   if (!strcmp(atype, "RLIST"))
969     {
970       sq_save_data(sq, (void *)aid);
971       /* get all the list_id's of containing lists */
972       EXEC SQL DECLARE csr107q CURSOR FOR
973         SELECT list_id FROM imembers
974         WHERE member_type = 'LIST' AND member_id = :aid;
975       if (dbms_errno)
976         return mr_errcode;
977       EXEC SQL OPEN csr107q;
978       if (dbms_errno)
979         return mr_errcode;
980       while (1)
981         {
982           EXEC SQL FETCH csr107q INTO :listid;
983           if (sqlca.sqlcode)
984             break;
985           sq_save_unique_data(sq, (void *)listid);
986         }
987       EXEC SQL CLOSE csr107q;
988       /* now process each one */
989       while (sq_get_data(sq, &id))
990         {
991           if (ghbo_internal("LIST", id, action, actarg) == MR_SUCCESS)
992             found++;
993         }
994     }
995
996   if (!strcmp(atype, "RUSER"))
997     {
998       EXEC SQL DECLARE csr108q CURSOR FOR
999         SELECT list_id FROM imembers
1000         WHERE member_type = 'USER' AND member_id = :aid;
1001       if (dbms_errno)
1002         return mr_errcode;
1003       EXEC SQL OPEN csr108q;
1004       if (dbms_errno)
1005         return mr_errcode;
1006       while (1)
1007         {
1008           EXEC SQL FETCH csr108q INTO :listid;
1009           if (sqlca.sqlcode)
1010             break;
1011           sq_save_data(sq, (void *)listid);
1012         }
1013       EXEC SQL CLOSE csr108q;
1014       /* now process each one */
1015       while (sq_get_data(sq, &id))
1016         {
1017           if (ghbo_internal("LIST", id, action, actarg) == MR_SUCCESS)
1018             found++;
1019         }
1020       if (ghbo_internal("USER", aid, action, actarg) == MR_SUCCESS)
1021         found++;
1022     }
1023
1024   if (!strcmp(atype, "RKERBEROS"))
1025     {
1026       EXEC SQL DECLARE csr109q CURSOR FOR
1027         SELECT list_id FROM imembers
1028         WHERE member_type = 'KERBEROS' AND member_id = :aid;
1029       if (dbms_errno)
1030         return mr_errcode;
1031       EXEC SQL OPEN csr109q;
1032       if (dbms_errno)
1033         return mr_errcode;
1034       while (1)
1035         {
1036           EXEC SQL FETCH csr109q INTO :listid;
1037           if (sqlca.sqlcode)
1038             break;
1039           sq_save_data(sq, (void *)listid);
1040         }
1041       EXEC SQL CLOSE csr109q;
1042       /* now process each one */
1043       while (sq_get_data(sq, &id))
1044         {
1045           if (ghbo_internal("LIST", id, action, actarg) == MR_SUCCESS)
1046             found++;
1047         }
1048       if (ghbo_internal("KERBEROS", aid, action, actarg) == MR_SUCCESS)
1049         found++;
1050     }
1051
1052   sq_destroy(sq);
1053   if (dbms_errno)
1054     return mr_errcode;
1055   if (!found)
1056     return MR_NO_MATCH;
1057   return MR_SUCCESS;
1058 }
1059
1060 /* get_lists_of_member - given a type and a name, return the name and flags
1061  * of all of the lists of the given member.  The member_type is one of
1062  * "LIST", "USER", "STRING", "KERBEROS", "MACHINE", "RLIST", "RUSER", 
1063  * "RSTRING", "RKERBEROS", or "RMACHINE" in argv[0], and argv[1] will contain 
1064  * the ID of the entity in question.  The R* types mean to recursively look 
1065  * at every containing list, not just when the object in question is a direct 
1066  * member.
1067  */
1068
1069 int get_lists_of_member(struct query *q, char *argv[], client *cl,
1070                         int (*action)(int, char *[], void *), void *actarg)
1071 {
1072   int found = 0, direct = 1;
1073   char *rargv[6];
1074   EXEC SQL BEGIN DECLARE SECTION;
1075   char *atype;
1076   int aid;
1077   char name[LIST_NAME_SIZE];
1078   char active[5], public[5], hidden[5], maillist[5], grouplist[5];
1079   EXEC SQL END DECLARE SECTION;
1080
1081   atype = argv[0];
1082   aid = *(int *)argv[1];
1083   if (!strcmp(atype, "RLIST"))
1084     {
1085       atype = "LIST";
1086       direct = 0;
1087     }
1088   if (!strcmp(atype, "RUSER"))
1089     {
1090       atype = "USER";
1091       direct = 0;
1092     }
1093   if (!strcmp(atype, "RSTRING"))
1094     {
1095       atype = "STRING";
1096       direct = 0;
1097     }
1098   if (!strcmp(atype, "RKERBEROS"))
1099     {
1100       atype = "KERBEROS";
1101       direct = 0;
1102     }
1103   if (!strcmp(atype, "RMACHINE"))
1104     {
1105       atype = "MACHINE";
1106       direct = 0;
1107     }
1108
1109   rargv[0] = name;
1110   rargv[1] = active;
1111   rargv[2] = public;
1112   rargv[3] = hidden;
1113   rargv[4] = maillist;
1114   rargv[5] = grouplist;
1115   if (direct)
1116     {
1117       EXEC SQL DECLARE csr117a CURSOR FOR
1118         SELECT l.name, l.active, l.publicflg, l.hidden, l.maillist, l.grouplist
1119         FROM list l, imembers im
1120         WHERE l.list_id = im.list_id AND im.direct = 1
1121         AND im.member_type = :atype AND im.member_id = :aid;
1122       if (dbms_errno)
1123         return mr_errcode;
1124       EXEC SQL OPEN csr117a;
1125       if (dbms_errno)
1126         return mr_errcode;
1127       while (1)
1128         {
1129           EXEC SQL FETCH csr117a
1130             INTO :name, :active, :public, :hidden, :maillist, :grouplist;
1131           if (sqlca.sqlcode)
1132             break;
1133           (*action)(6, rargv, actarg);
1134           found++;
1135         }
1136       EXEC SQL CLOSE csr117a;
1137     }
1138   else
1139     {
1140       EXEC SQL DECLARE csr117b CURSOR FOR
1141         SELECT l.name, l.active, l.publicflg, l.hidden, l.maillist, l.grouplist
1142         FROM list l, imembers im
1143         WHERE l.list_id = im.list_id
1144         AND im.member_type = :atype AND im.member_id = :aid;
1145       if (dbms_errno)
1146         return mr_errcode;
1147       EXEC SQL OPEN csr117b;
1148       if (dbms_errno)
1149         return mr_errcode;
1150       while (1)
1151         {
1152           EXEC SQL FETCH csr117b
1153             INTO :name, :active, :public, :hidden, :maillist, :grouplist;
1154           if (sqlca.sqlcode)
1155             break;
1156           (*action)(6, rargv, actarg);
1157           found++;
1158         }
1159       EXEC SQL CLOSE csr117b;
1160     }
1161
1162   if (dbms_errno)
1163     return mr_errcode;
1164   if (!found)
1165     return MR_NO_MATCH;
1166   return MR_SUCCESS;
1167 }
1168
1169
1170 /* qualified_get_lists: passed "TRUE", "FALSE", or "DONTCARE" for each of
1171  * the five flags associated with each list.  It will return the name of
1172  * each list that meets the quailifications.  It does this by building a
1173  * where clause based on the arguments, then doing a retrieve.
1174  */
1175
1176 static char *lflags[5] = { "active", "publicflg", "hidden", "maillist", "grouplist" };
1177
1178 int qualified_get_lists(struct query *q, char *argv[], client *cl,
1179                         int (*action)(int, char *[], void *), void *actarg)
1180 {
1181   return qualified_get(q, argv, action, actarg, "l.list_id != 0",
1182                        "l", "name", lflags);
1183 }
1184
1185
1186 int get_members_of_list(struct query *q, char *argv[], client *cl,
1187                         int (*action)(int, char *[], void *), void *actarg)
1188 {
1189   EXEC SQL BEGIN DECLARE SECTION;
1190   int list_id, direct;
1191   char member_name[MAX_FIELD_WIDTH], tag[STRINGS_STRING_SIZE];
1192   EXEC SQL END DECLARE SECTION;
1193   char *targv[3];
1194   int targc;
1195
1196   /* For gmol or gtml, only get direct members. For geml, get all. */
1197   if (!strcmp(q->shortname, "geml"))
1198     direct = -1;
1199   else
1200     direct = 0;
1201
1202   /* For gmol or geml, only return type and name. For gtml, return tag too. */
1203   if (!strcmp(q->shortname, "gtml"))
1204     targc = 3;
1205   else
1206     targc = 2;
1207
1208   list_id = *(int *)argv[0];
1209
1210   targv[1] = member_name;
1211   targv[2] = tag;
1212
1213   targv[0] = "USER";
1214   EXEC SQL DECLARE csr119 CURSOR FOR
1215     SELECT u.login, s.string FROM users u, imembers im, strings s
1216     WHERE im.list_id = :list_id AND im.member_type = 'USER'
1217     AND im.member_id = u.users_id AND im.direct > :direct
1218     AND s.string_id = im.tag ORDER BY 1;
1219   if (dbms_errno)
1220     return mr_errcode;
1221   EXEC SQL OPEN csr119;
1222   if (dbms_errno)
1223     return mr_errcode;
1224   while (1)
1225     {
1226       EXEC SQL FETCH csr119 INTO :member_name, :tag;
1227       if (sqlca.sqlcode)
1228         break;
1229       (*action)(targc, targv, actarg);
1230     }
1231   EXEC SQL CLOSE csr119;
1232   if (dbms_errno)
1233     return mr_errcode;
1234
1235   targv[0] = "LIST";
1236   EXEC SQL DECLARE csr120 CURSOR FOR
1237     SELECT l.name, s.string FROM list l, imembers im, strings s
1238     WHERE im.list_id = :list_id AND im.member_type = 'LIST'
1239     AND im.member_id = l.list_id AND im.direct > :direct
1240     AND s.string_id = im.tag ORDER BY 1;
1241   if (dbms_errno)
1242     return mr_errcode;
1243   EXEC SQL OPEN csr120;
1244   if (dbms_errno)
1245     return mr_errcode;
1246   while (1)
1247     {
1248       EXEC SQL FETCH csr120 INTO :member_name, :tag;
1249       if (sqlca.sqlcode)
1250         break;
1251       (*action)(targc, targv, actarg);
1252     }
1253   EXEC SQL CLOSE csr120;
1254   if (dbms_errno)
1255     return mr_errcode;
1256
1257   targv[0] = "STRING";
1258   EXEC SQL DECLARE csr121 CURSOR FOR
1259     SELECT str.string, s.string FROM strings str, imembers im, strings s
1260     WHERE im.list_id = :list_id AND im.member_type = 'STRING'
1261     AND im.member_id = str.string_id AND im.direct > :direct
1262     AND s.string_id = im.tag ORDER BY 1;
1263   if (dbms_errno)
1264     return mr_errcode;
1265   EXEC SQL OPEN csr121;
1266   if (dbms_errno)
1267     return mr_errcode;
1268   while (1)
1269     {
1270       EXEC SQL FETCH csr121 INTO :member_name, :tag;
1271       if (sqlca.sqlcode)
1272         break;
1273       (*action)(targc, targv, actarg);
1274     }
1275   EXEC SQL CLOSE csr121;
1276   if (dbms_errno)
1277     return mr_errcode;
1278
1279   targv[0] = "KERBEROS";
1280   EXEC SQL DECLARE csr122 CURSOR FOR
1281     SELECT str.string, s.string FROM strings str, imembers im, strings s
1282     WHERE im.list_id = :list_id AND im.member_type = 'KERBEROS'
1283     AND im.member_id = str.string_id AND im.direct > :direct
1284     AND s.string_id = im.tag ORDER BY 1;
1285   if (dbms_errno)
1286     return mr_errcode;
1287   EXEC SQL OPEN csr122;
1288   if (dbms_errno)
1289     return mr_errcode;
1290   while (1)
1291     {
1292       EXEC SQL FETCH csr122 INTO :member_name, :tag;
1293       if (sqlca.sqlcode)
1294         break;
1295       (*action)(targc, targv, actarg);
1296     }
1297   EXEC SQL CLOSE csr122;
1298   if (dbms_errno)
1299     return mr_errcode;
1300
1301   targv[0] = "MACHINE";
1302   EXEC SQL DECLARE csr123 CURSOR FOR
1303     SELECT m.name, s.string FROM machine m, imembers im, strings s
1304     WHERE im.list_id = :list_id AND im.member_type = 'MACHINE'
1305     AND im.member_id = m.mach_id AND im.direct > :direct
1306     AND s.string_id = im.tag ORDER BY 1;
1307   if (dbms_errno)
1308     return mr_errcode;
1309   EXEC SQL OPEN csr123;
1310   if (dbms_errno)
1311     return mr_errcode;
1312   while (1)
1313     {
1314       EXEC SQL FETCH csr123 INTO :member_name, :tag;
1315       if (sqlca.sqlcode)
1316         break;
1317       (*action)(targc, targv, actarg);
1318     }
1319   EXEC SQL CLOSE csr123;
1320   if (dbms_errno)
1321     return mr_errcode;
1322
1323   return MR_SUCCESS;
1324 }
1325
1326
1327 /* count_members_of_list: this is a simple query, but it cannot be done
1328  * through the dispatch table.
1329  */
1330
1331 int count_members_of_list(struct query *q, char *argv[], client *cl,
1332                           int (*action)(int, char *[], void *), void *actarg)
1333 {
1334   EXEC SQL BEGIN DECLARE SECTION;
1335   int  list, ct = 0;
1336   EXEC SQL END DECLARE SECTION;
1337   char *rargv[1], countbuf[5];
1338
1339   list = *(int *)argv[0];
1340   rargv[0] = countbuf;
1341   EXEC SQL SELECT count (*) INTO :ct FROM imembers
1342     WHERE list_id = :list AND direct = 1;
1343   if (dbms_errno)
1344     return mr_errcode;
1345   sprintf(countbuf, "%d", ct);
1346   (*action)(1, rargv, actarg);
1347   return MR_SUCCESS;
1348 }
1349
1350
1351 /* qualified_get_server: passed "TRUE", "FALSE", or "DONTCARE" for each of
1352  * the three flags associated with each service.  It will return the name of
1353  * each service that meets the quailifications.  It does this by building a
1354  * where clause based on the arguments, then doing a retrieve.
1355  */
1356
1357 static char *sflags[3] = { "enable", "inprogress", "harderror" };
1358
1359 int qualified_get_server(struct query *q, char *argv[], client *cl,
1360                          int (*action)(int, char *[], void *), void *actarg)
1361 {
1362   return qualified_get(q, argv, action, actarg, "s.name is not null",
1363                        "s", "name", sflags);
1364   /* of course, name will never be null, but we need something there
1365      to make qualified_get happy */
1366 }
1367
1368
1369 /* generic qualified get routine, used by qualified_get_lists,
1370  * qualified_get_server, and qualified_get_serverhost.
1371  *   Args:
1372  *      start - a simple where clause, must not be empty
1373  *      range - the name of the range variable
1374  *      field - the field to return
1375  *      flags - an array of strings, names of the flag variables
1376  */
1377
1378 int qualified_get(struct query *q, char *argv[],
1379                   int (*action)(int, char *[], void *), void *actarg,
1380                   char *start, char *range, char *field, char *flags[])
1381 {
1382   char qual[256];
1383   int i;
1384   char buf[32];
1385
1386   strcpy(qual, start);
1387   for (i = 0; i < q->argc; i++)
1388     {
1389       if (!strcmp(argv[i], "TRUE"))
1390         {
1391           sprintf(buf, " AND %s.%s != 0", range, flags[i]);
1392           strcat(qual, buf);
1393         }
1394       else if (!strcmp(argv[i], "FALSE"))
1395         {
1396           sprintf(buf, " AND %s.%s = 0", range, flags[i]);
1397           strcat(qual, buf);
1398         }
1399     }
1400
1401   sprintf(stmt_buf, "SELECT %s.%s FROM %s %s WHERE %s", range, field,
1402           table_name[q->rtable], range, qual);
1403   return do_for_all_rows(stmt_buf, 1, action, actarg);
1404 }
1405
1406
1407 /* qualified_get_serverhost: passed "TRUE", "FALSE", or "DONTCARE" for each of
1408  * the five flags associated with each serverhost.  It will return the name of
1409  * each service and host that meets the quailifications.  It does this by
1410  * building a where clause based on the arguments, then doing a retrieve.
1411  */
1412
1413 static char *shflags[6] = { "service", "enable", "override", "success",
1414                             "inprogress", "hosterror" };
1415
1416 int qualified_get_serverhost(struct query *q, char *argv[], client *cl,
1417                              int (*action)(int, char *[], void *),
1418                              void *actarg)
1419 {
1420   char qual[256], buf[32];
1421   int i;
1422
1423   sprintf(qual, "m.mach_id = sh.mach_id AND sh.service = UPPER('%s')",
1424           argv[0]);
1425   for (i = 1; i < q->argc; i++)
1426     {
1427       if (!strcmp(argv[i], "TRUE"))
1428         {
1429           sprintf(buf, " AND sh.%s != 0", shflags[i]);
1430           strcat(qual, buf);
1431         }
1432       else if (!strcmp(argv[i], "FALSE"))
1433         {
1434           sprintf(buf, " AND sh.%s = 0", shflags[i]);
1435           strcat(qual, buf);
1436         }
1437     }
1438
1439   sprintf(stmt_buf, "SELECT sh.service, m.name FROM serverhosts sh, "
1440           "machine m WHERE %s", qual);
1441   return do_for_all_rows(stmt_buf, 2, action, actarg);
1442 }
1443
1444
1445 /* register_user - change user's login name and allocate a pobox, group,
1446  * filesystem, and quota for them.  The user's status must start out as 0,
1447  * and is left as 2.  Arguments are: user's UID, new login name, and
1448  * pobox type ("POP" = POP, "IMAP" or numeric = IMAP)
1449  */
1450
1451 int register_user(struct query *q, char **argv, client *cl)
1452 {
1453   EXEC SQL BEGIN DECLARE SECTION;
1454   char *login, *entity;
1455   char directory[FILESYS_NAME_SIZE], machname[MACHINE_NAME_SIZE];
1456   char dir[NFSPHYS_DIR_SIZE], *potype;
1457   int who, rowcount, mid, uid, users_id;
1458   int ostatus, nstatus, fsidval, popid;
1459   int npid, tmp;
1460   int po_exists = 0;
1461   static int m_id, def_quota, def_imap_quota, list_id;
1462   EXEC SQL END DECLARE SECTION;
1463   char buffer[256], *aargv[3];
1464
1465   if (!m_id)
1466     {
1467       EXEC SQL SELECT list_id INTO :list_id FROM list
1468         WHERE name = 'wheel';
1469
1470       EXEC SQL SELECT mach_id INTO :m_id FROM machine
1471         WHERE name = 'ATHENA.MIT.EDU';
1472
1473       EXEC SQL SELECT value INTO :def_quota FROM numvalues
1474         WHERE name = 'def_quota';
1475       if (sqlca.sqlerrd[2] != 1)
1476         return MR_NO_QUOTA;
1477
1478       EXEC SQL SELECT value INTO :def_imap_quota FROM numvalues
1479         WHERE name = 'def_imap_quota';
1480       if (sqlca.sqlerrd[2] != 1)
1481         return MR_NO_QUOTA;
1482     }
1483
1484   entity = cl->entity;
1485   who = cl->client_id;
1486
1487   uid = atoi(argv[0]);
1488   login = argv[1];
1489   potype = argv[2];
1490
1491   /* find user */
1492   EXEC SQL SELECT users_id, status INTO :users_id, :ostatus
1493     FROM users
1494     WHERE unix_uid = :uid AND
1495     (status = 0 OR status = 5 OR status = 6 OR status = 9);
1496
1497   if (sqlca.sqlerrd[2] == 0)
1498     return MR_NO_MATCH;
1499   if (sqlca.sqlerrd[2] > 1)
1500     return MR_NOT_UNIQUE;
1501
1502   /* check new login name */
1503   EXEC SQL SELECT COUNT(login) INTO :rowcount FROM users
1504     WHERE login = :login AND users_id != :users_id;
1505   if (dbms_errno)
1506     return mr_errcode;
1507   if (rowcount > 0)
1508     return MR_IN_USE;
1509   EXEC SQL SELECT COUNT(name) INTO :rowcount FROM list
1510     WHERE LOWER(name) = :login;
1511   if (dbms_errno)
1512     return mr_errcode;
1513   if (rowcount > 0)
1514     return MR_IN_USE;
1515   EXEC SQL SELECT COUNT(label) INTO :rowcount FROM filesys
1516     WHERE label = :login;
1517   if (dbms_errno)
1518     return mr_errcode;
1519   if (rowcount > 0)
1520     return MR_IN_USE;
1521   EXEC SQL SELECT COUNT(label) INTO :rowcount  
1522     FROM filesys WHERE label = :login || '.po';
1523   if (dbms_errno)
1524     return mr_errcode;
1525   if (rowcount > 0)
1526     {
1527       EXEC SQL SELECT owner INTO :tmp FROM filesys 
1528         WHERE label = :login || '.po';
1529       if (dbms_errno)
1530         return mr_errcode;
1531       if ((ostatus == 0 || ostatus == 9) || (tmp != users_id))
1532         return MR_IN_USE;
1533       else
1534         po_exists = 1;
1535     }
1536   EXEC SQL SELECT COUNT(name) INTO :rowcount FROM alias
1537     WHERE ( name = :login OR name = :login || '.po' )
1538     AND type = 'FILESYS';
1539   if (dbms_errno)
1540     return mr_errcode;
1541   if (rowcount > 0)
1542     return MR_IN_USE;
1543   com_err(whoami, 0, "login name OK");
1544
1545   EXEC SQL SELECT COUNT(potype) INTO :rowcount FROM users WHERE
1546     login = :login AND potype = 'POP';
1547   if (dbms_errno)
1548     return mr_errcode;
1549   if (rowcount > 0)
1550     po_exists = 1;
1551
1552   /* choose type and location for pobox */
1553   if (!po_exists)
1554     {
1555       if (!strcmp(potype, "POP"))
1556         {
1557
1558           EXEC SQL DECLARE csr130 CURSOR FOR
1559             SELECT sh.mach_id, m.name FROM serverhosts sh, machine m
1560             WHERE sh.service = 'POP' AND sh.mach_id = m.mach_id
1561             AND sh.value2 - sh.value1 =
1562             (SELECT MAX(value2 - value1) FROM serverhosts WHERE service = 'POP');
1563           if (dbms_errno)
1564             return mr_errcode;
1565           EXEC SQL OPEN csr130;
1566           if (dbms_errno)
1567             return mr_errcode;
1568           EXEC SQL FETCH csr130 INTO :popid, :machname;
1569           if (sqlca.sqlerrd[2] == 0)
1570             {
1571               EXEC SQL CLOSE csr130;
1572               if (dbms_errno)
1573                 return mr_errcode;
1574               return MR_NO_POBOX;
1575             }
1576           else
1577             {
1578               EXEC SQL CLOSE csr130;
1579               if (dbms_errno)
1580                 return mr_errcode;
1581             }
1582       
1583           EXEC SQL UPDATE users SET potype = 'POP', pop_id = :popid
1584             WHERE users_id = :users_id;
1585           com_err(whoami, 0, "pobox set to POP:%s", strtrim(machname));
1586         }         
1587       else
1588         {
1589       /* Select all IMAP nfsphys entries in order of increasing
1590        * (allocated - partsize).  The partitions will almost always be 
1591        * overallocated, but we choose the one that is the least 
1592        * overallocated.
1593        */
1594           potype = "IMAP";
1595           
1596           EXEC SQL DECLARE csr_rusr_imap CURSOR FOR
1597             SELECT np.allocated - np.partsize, np.nfsphys_id, np.mach_id,
1598             np.dir, m.name FROM serverhosts sh, nfsphys np, machine m
1599             WHERE sh.service = 'POSTOFFICE' AND sh.mach_id = np.mach_id
1600             AND m.mach_id = np.mach_id
1601             ORDER BY 1;
1602           if (dbms_errno)
1603             return mr_errcode;
1604           EXEC SQL OPEN csr_rusr_imap;
1605           if (dbms_errno)
1606             return mr_errcode;
1607           EXEC SQL FETCH csr_rusr_imap INTO :tmp, :npid, :mid, :dir, :machname;
1608           if (sqlca.sqlerrd[2] == 0)
1609             {
1610               EXEC SQL CLOSE csr_rusr_imap;
1611               if (dbms_errno)
1612                 return mr_errcode;
1613               return MR_NO_POBOX;
1614             }
1615           else
1616             {
1617               EXEC SQL CLOSE csr_rusr_imap;
1618               if (dbms_errno)
1619                 return mr_errcode;
1620             }
1621
1622           /* create filesystem */
1623           if (set_next_object_id("filsys_id", FILESYS_TABLE, 0))
1624             return MR_NO_ID;
1625           incremental_clear_before();
1626
1627           EXEC SQL SELECT value INTO :popid FROM numvalues
1628             WHERE numvalues.name = 'filsys_id';
1629           EXEC SQL INSERT INTO filesys
1630             (filsys_id, phys_id, label, type, mach_id, name,
1631              mount, rwaccess, comments, owner, owners, createflg,
1632              lockertype, modtime, modby, modwith)
1633             VALUES
1634             (:popid, :npid, :login || '.po', 'IMAP', :mid, :dir,
1635              CHR(0), 'w', 'IMAP box', :users_id, :list_id, 1,
1636              'USER', SYSDATE, :who, :entity);
1637
1638           if (dbms_errno)
1639             return mr_errcode;
1640           if (sqlca.sqlerrd[2] != 1)
1641             return MR_INTERNAL;
1642           sprintf(buffer, "fs.filsys_id = %d", popid);
1643           incremental_after(FILESYS_TABLE, buffer, 0);
1644
1645           /* set quota */
1646           incremental_clear_before();
1647           EXEC SQL INSERT INTO quota
1648             (entity_id, filsys_id, type, quota, phys_id, modtime, modby, modwith)
1649             VALUES (:users_id, :popid, 'USER', :def_imap_quota, :npid,
1650                     SYSDATE, :who, :entity);
1651           if (dbms_errno)
1652             return mr_errcode;
1653           if (sqlca.sqlerrd[2] != 1)
1654             return MR_INTERNAL;
1655           aargv[0] = login;
1656           aargv[1] = "USER";
1657           aargv[2] = login;
1658           sprintf(buffer, "q.entity_id = %d and q.filsys_id = %d and "
1659                   "q.type = 'USER'", users_id, popid);
1660           incremental_after(QUOTA_TABLE, buffer, aargv);
1661           if (dbms_errno)
1662             return mr_errcode;
1663
1664           EXEC SQL UPDATE nfsphys SET allocated = allocated + :def_imap_quota
1665             WHERE nfsphys_id = :npid;
1666
1667           EXEC SQL UPDATE users SET potype = 'IMAP', imap_id = :popid
1668             WHERE users_id = :users_id;
1669           com_err(whoami, 0, "pobox set to IMAP:%s:%s", strtrim(machname),
1670                   strtrim(dir));
1671         }
1672     }
1673   
1674   /* change login name, set pobox */
1675   sprintf(buffer, "u.users_id = %d", users_id);
1676   incremental_before(USERS_TABLE, buffer, 0);
1677   nstatus = 2;
1678   if (ostatus == 5 || ostatus == 6 || ostatus == 9)
1679     nstatus = 1;
1680   EXEC SQL UPDATE users SET login = :login, status = :nstatus,
1681     modtime = SYSDATE, modby = :who, modwith = :entity,
1682     pmodtime = SYSDATE, pmodby = :who, pmodwith = :entity,
1683     created = SYSDATE, creator = :who
1684     WHERE users_id = :users_id;
1685
1686   if (dbms_errno)
1687     return mr_errcode;
1688   if (sqlca.sqlerrd[2] != 1)
1689     return MR_INTERNAL;
1690   
1691   /* Only update usage count if we created a POP pobox. */
1692   if (!strcmp(potype, "POP") && !po_exists)
1693     set_pop_usage(mid, 1);
1694   
1695   com_err(whoami, 0, "set login name to %s", login);
1696   incremental_after(USERS_TABLE, buffer, 0);
1697
1698   /* create filesystem */
1699   if (set_next_object_id("filsys_id", FILESYS_TABLE, 0))
1700     return MR_NO_ID;
1701   incremental_clear_before();
1702   if (islower(login[0]) && islower(login[1]))
1703     {
1704       sprintf(directory, "/afs/athena.mit.edu/user/%c/%c/%s",
1705               login[0], login[1], login);
1706     }
1707   else
1708     sprintf(directory, "/afs/athena.mit.edu/user/other/%s", login);
1709
1710   EXEC SQL SELECT value INTO :fsidval FROM numvalues
1711     WHERE numvalues.name = 'filsys_id';
1712   EXEC SQL INSERT INTO filesys
1713     (filsys_id, phys_id, label, type, mach_id, name,
1714      mount, rwaccess, comments, owner, owners, createflg,
1715      lockertype, modtime, modby, modwith)
1716     VALUES
1717     (:fsidval, 0, :login, 'AFS', :m_id, :directory,
1718      '/mit/' || :login, 'w', 'User Locker', :users_id, :list_id, 1,
1719      'HOMEDIR', SYSDATE, :who, :entity);
1720
1721   if (dbms_errno)
1722     return mr_errcode;
1723   if (sqlca.sqlerrd[2] != 1)
1724     return MR_INTERNAL;
1725   sprintf(buffer, "fs.filsys_id = %d", fsidval);
1726   incremental_after(FILESYS_TABLE, buffer, 0);
1727
1728   /* set quota */
1729   incremental_clear_before();
1730   EXEC SQL INSERT INTO quota
1731     (entity_id, filsys_id, type, quota, phys_id, modtime, modby, modwith)
1732     VALUES (0, :fsidval, 'ANY', :def_quota, 0, SYSDATE, :who, :entity);
1733   if (dbms_errno)
1734     return mr_errcode;
1735   if (sqlca.sqlerrd[2] != 1)
1736     return MR_INTERNAL;
1737   aargv[0] = login;
1738   aargv[1] = "ANY";
1739   aargv[2] = login;
1740   sprintf(buffer, "q.entity_id = 0 and q.filsys_id = %d and q.type = 'ANY'",
1741           fsidval);
1742   incremental_after(QUOTA_TABLE, buffer, aargv);
1743   com_err(whoami, 0, "quota of %d assigned", def_quota);
1744   if (dbms_errno)
1745     return mr_errcode;
1746
1747   EXEC SQL UPDATE tblstats SET updates = updates + 1, modtime = SYSDATE
1748     WHERE table_name = 'users';
1749   EXEC SQL UPDATE tblstats SET appends = appends + 1, modtime = SYSDATE
1750     WHERE table_name = 'filesys' OR table_name = 'quota';
1751   if (dbms_errno)
1752     return mr_errcode;
1753   return MR_SUCCESS;
1754 }
1755
1756 /** set_pop_usage - incr/decr usage count for pop server in serverhosts talbe
1757  **
1758  ** Inputs:
1759  **   id of machine
1760  **   delta (will be +/- 1)
1761  **
1762  ** Description:
1763  **   - incr/decr value field in serverhosts table for pop/mach_id
1764  **
1765  **/
1766
1767 int set_pop_usage(id, cnt)
1768     int id, cnt;
1769 {
1770   EXEC SQL BEGIN DECLARE SECTION;
1771   int iid = id, icnt = cnt;
1772   EXEC SQL END DECLARE SECTION;
1773
1774   EXEC SQL UPDATE serverhosts SET value1 = value1 + :icnt
1775     WHERE serverhosts.service = 'POP' AND serverhosts.mach_id = :iid;
1776
1777   if (dbms_errno)
1778     return mr_errcode;
1779   return MR_SUCCESS;
1780 }
1781
1782
1783 int do_user_reservation(struct query *q, char *argv[], client *cl)
1784 {
1785   EXEC SQL BEGIN DECLARE SECTION;
1786   char resv[USERS_RESERVATIONS_SIZE];
1787   char *trans, name[ALIAS_NAME_SIZE];
1788   int uid;
1789   EXEC SQL END DECLARE SECTION;
1790
1791   uid = *(int *)argv[0];
1792   trans = argv[1];
1793
1794   EXEC SQL SELECT UPPER(name) INTO :name FROM alias
1795     WHERE type = 'RESERVE' AND LOWER(trans) = LOWER(:trans);
1796   if (dbms_errno)
1797     return mr_errcode;
1798   if (sqlca.sqlerrd[2] != 1)
1799     return MR_STRING;
1800   name[1] = '\0';
1801
1802   EXEC SQL SELECT reservations INTO :resv FROM users
1803     WHERE users_id = :uid;
1804   if (dbms_errno)
1805     return mr_errcode;
1806   strtrim(resv);
1807
1808   if (!strcmp(q->shortname, "aurv"))
1809     {
1810       if (strchr(resv, *name))
1811         return MR_EXISTS;
1812       if (strlen(resv) == USERS_RESERVATIONS_SIZE - 1)
1813         return MR_ARG_TOO_LONG;
1814
1815       strcat(resv, name);
1816     }
1817   else
1818     {
1819       char *p = strchr(resv, *name);
1820       if (!p)
1821         return MR_NO_MATCH;
1822       memmove(p, p + 1, strlen(p));
1823     }
1824
1825   EXEC SQL UPDATE users SET reservations = NVL(:resv, CHR(0))
1826     WHERE users_id = :uid;
1827   if (dbms_errno)
1828     return mr_errcode;
1829
1830   EXEC SQL UPDATE tblstats SET updates = updates + 1, modtime = SYSDATE
1831     WHERE table_name = 'users';
1832   return set_modtime_by_id(q, argv, cl);
1833 }
1834
1835 int get_user_reservations(struct query *q, char **argv, client *cl,
1836                           int (*action)(int, char *[], void *), void *actarg)
1837 {
1838   EXEC SQL BEGIN DECLARE SECTION;
1839   char resv[USERS_RESERVATIONS_SIZE], *p;
1840   char trans[ALIAS_TRANS_SIZE], name[2] = { 0, 0 };
1841   int uid;
1842   EXEC SQL END DECLARE SECTION;
1843   char *targv[1];
1844
1845   uid = *(int *)argv[0];
1846
1847   EXEC SQL SELECT reservations INTO :resv FROM users
1848     WHERE users_id = :uid;
1849   if (dbms_errno)
1850     return mr_errcode;
1851
1852   targv[0] = trans;
1853   p = resv;
1854   while (*p && !isspace(*p))
1855     {
1856       name[0] = toupper(*p);
1857       EXEC SQL SELECT trans INTO :trans FROM alias
1858         WHERE type = 'RESERVE' AND UPPER(name) = :name;
1859       if (dbms_errno)
1860         return mr_errcode;
1861       if (sqlca.sqlerrd[2] != 1)
1862         sprintf(trans, "Unknown (%s)", name);
1863       (*action)(1, targv, actarg);
1864       p++;
1865     }
1866   return MR_SUCCESS;
1867 }
1868
1869 int get_user_by_reservation(struct query *q, char **argv, client *cl,
1870                             int (*action)(int, char *[], void *), void *actarg)
1871 {
1872   EXEC SQL BEGIN DECLARE SECTION;
1873   char resv[USERS_RESERVATIONS_SIZE], login[USERS_LOGIN_SIZE];
1874   char *trans, name[ALIAS_NAME_SIZE];
1875   int uid;
1876   EXEC SQL END DECLARE SECTION;
1877   char *targv[1];
1878
1879   trans = argv[0];
1880
1881   EXEC SQL SELECT UPPER(name) INTO :name FROM alias
1882     WHERE type = 'RESERVE' AND LOWER(trans) = LOWER(:trans);
1883   if (dbms_errno)
1884     return mr_errcode;
1885   if (sqlca.sqlerrd[2] != 1)
1886     return MR_STRING;
1887   name[1] = '\0';
1888
1889   EXEC SQL DECLARE csr_gubr CURSOR FOR
1890     SELECT login FROM users WHERE reservations LIKE '%' || :name || '%';
1891   EXEC SQL OPEN csr_gubr;
1892   if (dbms_errno)
1893     return mr_errcode;
1894
1895   targv[0] = login;
1896   while (1)
1897     {
1898       EXEC SQL FETCH csr_gubr INTO :login;
1899       if (sqlca.sqlcode)
1900         break;
1901       (*action)(1, targv, actarg);
1902     }
1903   EXEC SQL CLOSE csr_gubr;
1904
1905   return MR_SUCCESS;
1906 }
1907
1908 int update_container(struct query *q, char *argv[], client *cl)
1909 {
1910   EXEC SQL BEGIN DECLARE SECTION;
1911   int cnt_id, acl_id, memacl_id, who, flag;
1912   char name[CONTAINERS_NAME_SIZE], newchildname[CONTAINERS_NAME_SIZE];
1913   char* newname, *entity, *description, *location, *contact, *acl_type, *memacl_type;
1914   EXEC SQL END DECLARE SECTION;
1915   char* tmpchar;
1916   int cnt, childid;
1917   char childname[CONTAINERS_NAME_SIZE];
1918   char *qual;
1919   int index = 0;
1920
1921   cnt_id = *(int *)argv[index++];
1922   newname = argv[index++];
1923
1924   if (q->version >= 9)
1925     flag = atoi(argv[index++]);
1926
1927   description = argv[index++];
1928   location = argv[index++];
1929   contact = argv[index++];
1930   acl_type = argv[index++];
1931   acl_id = *(int *)argv[index++];
1932   memacl_type = argv[index++];
1933   memacl_id = *(int *)argv[index++];
1934   entity = cl->entity;
1935   who = cl->client_id;
1936
1937   EXEC SQL SELECT name INTO :name
1938     FROM containers
1939     WHERE cnt_id = :cnt_id; 
1940
1941   /* trim off the trailing spaces */
1942    strcpy(name, strtrim(name));
1943
1944    qual = xmalloc(MAX_FIELD_WIDTH);     
1945    sprintf(qual, "name = '%s'", name);
1946    incremental_before(CONTAINERS_TABLE, qual, argv);
1947
1948   /* if we are renaming the container */
1949   if (strcmp(name, newname))
1950   {
1951     /* make sure that only the name part of the name has been changed */
1952     tmpchar = strrchr(name, '/');
1953     /* not a top-level name */
1954     if (tmpchar)
1955     {
1956       cnt = tmpchar - name + 1;
1957       /* the parent part of the old and new name should be identical */
1958       if (strncmp(name, newname, cnt))
1959         return MR_NEW_CONTAINER_NAME;
1960     }
1961     /* top level name, new name should be a top level name too */
1962     else
1963     {
1964       if (strrchr(newname, '/'))
1965         return MR_NEW_CONTAINER_NAME;
1966     }
1967
1968     /* update the name for this container */
1969     EXEC SQL UPDATE containers
1970       SET name = :newname
1971     WHERE cnt_id = :cnt_id;
1972
1973     if (dbms_errno)
1974       return mr_errcode;
1975
1976     /* get names for its child containers */
1977     EXEC SQL DECLARE csr_ucon CURSOR FOR
1978       SELECT name, cnt_id FROM containers WHERE name LIKE :name || '/' || '%';
1979   
1980     EXEC SQL OPEN csr_ucon;
1981     if (dbms_errno)
1982       return mr_errcode;
1983
1984     while (1)
1985     {
1986       EXEC SQL FETCH csr_ucon INTO :childname, :childid;
1987       if (sqlca.sqlcode)
1988               break;
1989
1990       strcpy(childname, strtrim(childname));
1991       /* concatenate the new parent name with the existing sub-container name
1992        * we get the sub-containers new name */
1993       tmpchar = childname + strlen(name);
1994       strcpy(newchildname, newname);
1995       strcat(newchildname, tmpchar);
1996
1997       /* update the name */
1998       EXEC SQL UPDATE containers
1999         SET name = :newchildname, modtime = SYSDATE, modby = :who, modwith = :entity
2000       WHERE cnt_id = :childid;
2001
2002       if (sqlca.sqlcode)
2003         break;
2004     }
2005   
2006     EXEC SQL CLOSE csr_ucon; 
2007     if (dbms_errno)
2008       return mr_errcode;
2009   }
2010
2011   /* update the remaining fields */
2012   if (q->version >= 9)
2013   {
2014         EXEC SQL UPDATE containers
2015                 SET publicflg= :flag, description = NVL(:description, CHR(0)), location = NVL(:location, CHR(0)),
2016                         contact = NVL(:contact, CHR(0)), acl_type = :acl_type, acl_id = :acl_id,
2017                         memacl_type = :memacl_type, memacl_id = :memacl_id,
2018                         modtime = SYSDATE, modby = :who, modwith = :entity
2019                 WHERE cnt_id = :cnt_id;
2020   }
2021   else
2022   {
2023     EXEC SQL UPDATE containers
2024                 SET publicflg= :flag, description = NVL(:description, CHR(0)), location = NVL(:location, CHR(0)),
2025                         contact = NVL(:contact, CHR(0)), acl_type = :acl_type, acl_id = :acl_id,
2026                         memacl_type = :memacl_type, memacl_id = :memacl_id,
2027                         modtime = SYSDATE, modby = :who, modwith = :entity
2028                 WHERE cnt_id = :cnt_id;
2029   }
2030
2031   if (dbms_errno)
2032     return mr_errcode;
2033
2034   sprintf(qual, "name = '%s'", newname);
2035   incremental_after(CONTAINERS_TABLE, qual, argv);
2036     
2037   return MR_SUCCESS;
2038 }
2039
2040 int get_machines_of_container(struct query *q, char *argv[], client *cl,
2041                         int (*action)(int, char *[], void *), void *actarg)
2042 {
2043   EXEC SQL BEGIN DECLARE SECTION;
2044   int cnt_id, isrecursive;
2045   char machinename[MACHINE_NAME_SIZE], containername[CONTAINERS_NAME_SIZE];
2046   char *qs;
2047   EXEC SQL END DECLARE SECTION;
2048
2049   char querystring[512], tmp [256];
2050   char *rargv[2];
2051   int found = 0;
2052   
2053   rargv[0] = machinename;
2054   rargv[1] = containername;
2055
2056   cnt_id = *(int *)argv[0];
2057   isrecursive = atoi(argv[1]);
2058
2059   /* get the container name */
2060   
2061   EXEC SQL SELECT name INTO :containername
2062     FROM containers
2063     WHERE cnt_id = :cnt_id; 
2064
2065   /* trim off the trailing spaces */
2066   strcpy(containername, strtrim(containername));
2067
2068   strcpy(querystring, "SELECT a.name, b.name FROM machine a, containers b, mcntmap c ");
2069   strcat(querystring, "WHERE a.mach_id = c.mach_id AND b.cnt_id = c.cnt_id ");
2070   
2071   if (!isrecursive)
2072     sprintf(tmp, "AND b.cnt_id = %d ", cnt_id);
2073   else
2074     sprintf(tmp, "AND (b.cnt_id = %d OR LOWER(b.name) LIKE LOWER('%s/%%')) ", 
2075             cnt_id, containername);
2076
2077   strcat(querystring, tmp);
2078   strcat(querystring, "ORDER BY b.name, a.name");
2079
2080   qs = querystring;
2081
2082   EXEC SQL PREPARE stmt FROM :qs;
2083   if (sqlca.sqlcode)
2084     return MR_INTERNAL;
2085   EXEC SQL DECLARE curs_gmnm CURSOR FOR stmt;
2086   EXEC SQL OPEN curs_gmnm;
2087   
2088    while (1)
2089         {
2090           EXEC SQL FETCH curs_gmnm INTO :machinename, :containername;
2091           if (sqlca.sqlcode)
2092             break;
2093           (*action)(2, rargv, actarg);
2094           found++;
2095         }
2096
2097   EXEC SQL CLOSE curs_gmnm;
2098   if (!found)
2099     return MR_NO_MATCH;
2100   return MR_SUCCESS;
2101 }
2102
2103 int get_subcontainers_of_container(struct query *q, char *argv[], client *cl,
2104                         int (*action)(int, char *[], void *), void *actarg)
2105 {
2106   EXEC SQL BEGIN DECLARE SECTION;
2107   int cnt_id, isrecursive;
2108   char containername[CONTAINERS_NAME_SIZE], subcontainername[CONTAINERS_NAME_SIZE];
2109   char *qs;
2110   EXEC SQL END DECLARE SECTION;
2111
2112   char querystring[2048], tmp [1024];
2113   char *rargv[1];
2114   int found = 0;
2115   
2116   rargv[0] = subcontainername;
2117
2118   cnt_id = *(int *)argv[0];
2119   isrecursive = atoi(argv[1]);
2120
2121   /* get the container name */
2122   
2123   EXEC SQL SELECT name INTO :containername
2124     FROM containers
2125     WHERE cnt_id = :cnt_id; 
2126
2127   /* trim off the trailing spaces */
2128   strcpy(containername, strtrim(containername));
2129
2130   strcpy(querystring, "SELECT name FROM containers ");
2131   
2132   if (!isrecursive)
2133     sprintf(tmp, "WHERE LOWER(name) LIKE LOWER('%s/%%') and LOWER(name) NOT LIKE LOWER('%s/%%/%%') ",
2134             containername, containername);
2135   else
2136     sprintf(tmp, "WHERE LOWER(name) LIKE LOWER('%s/%%') ", containername);
2137
2138   strcat(querystring, tmp);
2139   strcat(querystring, "ORDER BY name");
2140
2141   qs = querystring;
2142
2143   EXEC SQL PREPARE stmt FROM :qs;
2144   if (sqlca.sqlcode)
2145     return MR_INTERNAL;
2146   EXEC SQL DECLARE curs_gsoc CURSOR FOR stmt;
2147   EXEC SQL OPEN curs_gsoc;
2148   
2149    while (1)
2150         {
2151           EXEC SQL FETCH curs_gsoc INTO :subcontainername;
2152           if (sqlca.sqlcode)
2153             break;
2154           (*action)(1, rargv, actarg);
2155           found++;
2156         }
2157
2158   EXEC SQL CLOSE curs_gsoc;
2159   if (!found)
2160     return MR_NO_MATCH;
2161   return MR_SUCCESS;
2162 }
2163
2164 int set_container_list(struct query *q, char *argv[], client *cl)
2165 {
2166   EXEC SQL BEGIN DECLARE SECTION;
2167   int cnt_id, list_id;
2168   EXEC SQL END DECLARE SECTION;
2169
2170   cnt_id = *(int *)argv[0];
2171   list_id = *(int *)argv[1];
2172
2173   EXEC SQL UPDATE containers SET list_id = :list_id WHERE cnt_id = :cnt_id;
2174   if (dbms_errno)
2175     return mr_errcode;
2176
2177   return MR_SUCCESS;
2178 }
This page took 0.269028 seconds and 5 git commands to generate.