]> andersk Git - moira.git/blobdiff - server/qsupport.dc
Removed my setup_aftg, thanks to changes in queries2.c while I was
[moira.git] / server / qsupport.dc
index 6fca31de275acc15cc513e5348f918160dc9463f..a2b17f5e234ab9b5aedd317207e956b5f9ec40b9 100644 (file)
@@ -1,4 +1,3 @@
-/* #define GDSS */
 /*
  *     $Source$
  *     $Author$
@@ -28,11 +27,11 @@ EXEC SQL INCLUDE sqlda;
 extern char *whoami, *strsave();
 extern int ingres_errno, mr_errcode;
 
-EXEC SQL BEGIN DECLARE SECTION; 
-int idummy;                            
+EXEC SQL BEGIN DECLARE SECTION;
+int idummy;
 extern char cdummy[];
 extern char stmt_buf[];
-EXEC SQL END DECLARE SECTION; 
+EXEC SQL END DECLARE SECTION;
 
 /* Specialized Access Routines */
 
@@ -55,7 +54,7 @@ access_user(q, argv, cl)
        return(MR_SUCCESS);
 }
 
-    
+
 
 /* access_login - verify that client name equals specified login name
  *
@@ -67,10 +66,10 @@ access_login(q, argv, cl)
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id;
     char qual[256];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     build_qual(q->qual, q->argc, argv, qual);
     EXEC SQL SELECT users_id INTO :id FROM users WHERE :qual;
@@ -81,7 +80,7 @@ access_login(q, argv, cl)
        return(MR_SUCCESS);
 }
 
-    
+
 
 /* access_list - check access for most list operations
  *
@@ -94,22 +93,22 @@ access_login(q, argv, cl)
  * - check that client is a member of the access control list
  * - OR, if the query is add_member_to_list or delete_member_from_list
  *     and the list is public, allow access if client = member
- */ 
+ */
 
 access_list(q, argv, cl)
     struct query *q;
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int list_id, acl_id, flags, gid;
     char acl_type[9];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char *client_type;
     int client_id, status;
 
     list_id = *(int *)argv[0];
-    EXEC SQL SELECT acl_id, acl_type, gid, publicflg 
+    EXEC SQL SELECT acl_id, acl_type, gid, publicflg
       INTO :acl_id, :acl_type, :gid, :flags
       FROM list
       WHERE list_id = :list_id;
@@ -146,22 +145,22 @@ access_list(q, argv, cl)
  *
  * Inputs: argv[0] - list_id
  *         cl - client identifier
- */ 
+ */
 
 access_visible_list(q, argv, cl)
     struct query *q;
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int list_id, acl_id, flags ;
     char acl_type[9];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char *client_type;
     int client_id, status;
 
     list_id = *(int *)argv[0];
-    EXEC SQL SELECT hidden, acl_id, acl_type 
+    EXEC SQL SELECT hidden, acl_id, acl_type
       INTO :flags, :acl_id, :acl_type
       FROM list
       WHERE list_id = :list_id;
@@ -188,17 +187,17 @@ access_visible_list(q, argv, cl)
  *
  * Inputs: argv[0] - list name
  *         cl - client identifier
- */ 
+ */
 
 access_vis_list_by_name(q, argv, cl)
     struct query *q;
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int acl_id, flags, rowcount;
     char acl_type[9], *listname;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char *client_type;
     int client_id, status;
 
@@ -245,6 +244,11 @@ access_member(q, argv, cl)
          return(MR_SUCCESS);
     }
 
+    if (!strcmp(argv[0], "KERBEROS") || !strcmp(argv[0], "RKERBERO")) {
+        if (cl->client_id == *(int *)argv[1])
+         return(MR_SUCCESS);
+    }
+
     return(MR_PERM);
 }
 
@@ -273,14 +277,14 @@ access_service(q, argv, cl)
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int acl_id;
     char *name, acl_type[9];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int client_id, status;
     char *client_type, *c;
 
-    name = argv[0]; 
+    name = argv[0];
     for(c=name;*c;c++) if(islower(*c)) *c = toupper(*c);  /* uppercasify */
     EXEC SQL SELECT acl_id, acl_type INTO :acl_id, :acl_type FROM servers
       WHERE name = :name;
@@ -308,14 +312,14 @@ access_filesys(q, argv, cl)
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int users_id, list_id;
     char *name;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int status, client_id;
     char *client_type;
 
-    name = argv[0];   
+    name = argv[0];
     EXEC SQL SELECT owner, owners INTO :users_id, :list_id FROM filesys
       WHERE label = :name;
 
@@ -332,7 +336,7 @@ access_filesys(q, argv, cl)
       return(MR_PERM);
 }
 
-    
+
 \f
 /* Setup Routines */
 
@@ -353,9 +357,9 @@ setup_ausr(q, argv, cl)
     client *cl;
 {
     int row;
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int nuid;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     if (!strcmp(q->shortname, "uusr") || !strcmp(q->shortname, "uuac"))
       row = 2;
@@ -381,7 +385,7 @@ setup_ausr(q, argv, cl)
 }
 
 
-/* setup_dusr - verify that the user is no longer being referenced 
+/* setup_dusr - verify that the user is no longer being referenced
  * and may safely be deleted.
  */
 
@@ -389,14 +393,14 @@ int setup_dusr(q, argv)
     struct query *q;
     char **argv;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int flag, id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     id = *(int *)argv[0];
 
     /* For now, only allow users to be deleted if their status is 0 */
-    EXEC SQL REPEATED SELECT status INTO :flag FROM users 
+    EXEC SQL REPEATED SELECT status INTO :flag FROM users
       WHERE users_id = :id;
     if (flag != 0 && flag != 4)
       return(MR_IN_USE);
@@ -435,17 +439,17 @@ int setup_spop(q, argv)
 struct query *q;
 char **argv;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id, mid, flag;
     char type[9];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
-    id = *(int *)argv[0]; 
+    id = *(int *)argv[0];
     EXEC SQL REPEATED SELECT potype, pop_id INTO :type, :mid FROM users
       WHERE users_id = :id;
     if(sqlca.sqlerrd[2] = 0)
       return(MR_MACHINE);
-    EXEC SQL REPEATED SELECT mach_id INTO :mid FROM machine 
+    EXEC SQL REPEATED SELECT mach_id INTO :mid FROM machine
       WHERE mach_id = :mid;
     if (sqlca.sqlerrd[2] = 0)
       return(MR_MACHINE);
@@ -461,10 +465,10 @@ int setup_dpob(q, argv)
      struct query *q;
      char **argv;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id, user;
     char type[9];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     user = *(int *)argv[0];
     EXEC SQL REPEATED SELECT potype, pop_id INTO :type, :id FROM users
@@ -477,7 +481,7 @@ int setup_dpob(q, argv)
 }
 
 
-/* setup_dmac - verify that the machine is no longer being referenced 
+/* setup_dmac - verify that the machine is no longer being referenced
  * and may safely be deleted.
  */
 
@@ -485,7 +489,7 @@ int setup_dmac(q, argv)
     struct query *q;
     char **argv;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int flag, id;
     EXEC SQL END DECLARE SECTION;
 
@@ -502,7 +506,7 @@ int setup_dmac(q, argv)
       WHERE mach_id = :id;
     if (sqlca.sqlerrd[2] > 0)
        return(MR_IN_USE);
-    EXEC SQL REPEATED SELECT mach_id INTO :idummy FROM hostaccess 
+    EXEC SQL REPEATED SELECT mach_id INTO :idummy FROM hostaccess
       WHERE mach_id = :id;
     if (sqlca.sqlerrd[2] > 0)
        return(MR_IN_USE);
@@ -510,7 +514,7 @@ int setup_dmac(q, argv)
       WHERE mach_id = :id;
     if (sqlca.sqlerrd[2] > 0)
        return(MR_IN_USE);
-    EXEC SQL REPEATED SELECT quotaserver INTO :idummy FROM printcap 
+    EXEC SQL REPEATED SELECT quotaserver INTO :idummy FROM printcap
       WHERE quotaserver = :id;
     if (sqlca.sqlerrd[2] > 0)
        return(MR_IN_USE);
@@ -525,7 +529,7 @@ int setup_dmac(q, argv)
 }
 
 
-/* setup_dclu - verify that the cluster is no longer being referenced 
+/* setup_dclu - verify that the cluster is no longer being referenced
  * and may safely be deleted.
  */
 
@@ -533,9 +537,9 @@ int setup_dclu(q, argv)
     struct query *q;
     char **argv;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     id = *(int *)argv[0];
     EXEC SQL REPEATED SELECT mach_id INTO :idummy FROM mcmap
@@ -556,35 +560,60 @@ int setup_dclu(q, argv)
  * a new gid and put it in argv[6].  Otherwise if argv[6] is UNIQUE_ID but
  * argv[5] is not, then remember that UNIQUE_ID is being stored by putting
  * a -1 there.  Remember that this is also used for ulis, with the indexes
- * at 6 & 7.
+ * at 6 & 7.  Also check that the list name does not contain uppercase
+ * characters, control characters, @, or :.
  */
 
+static int badlistchars[] = {
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* ^@ - ^O */
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* ^P - ^_ */
+    0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, /* SPACE - / */
+    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, /* 0 - ? */
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* @ - O */
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, /* P - _ */
+    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* ` - o */
+    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, /* p - ^? */
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+};
+
 int setup_alis(q, argv, cl)
     struct query *q;
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int ngid;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char *malloc();
+    unsigned char *p;
     int idx;
 
     if (!strcmp(q->shortname, "alis"))
-      idx = 6;
+      idx = 0;
     else if (!strcmp(q->shortname, "ulis"))
-      idx = 7;
-
-    if (!strcmp(argv[idx], UNIQUE_GID) || atoi(argv[idx]) == -1) {
-       if (atoi(argv[idx - 1])) {
+      idx = 1;
+
+    for (p = (unsigned char *) argv[idx]; *p; p++)
+      if (badlistchars[*p])
+        return(MR_BAD_CHAR);
+    if (!strcmp(argv[6 + idx], UNIQUE_GID) || atoi(argv[6 + idx]) == -1) {
+       if (atoi(argv[5 + idx])) {
            if (set_next_object_id("gid", "list", 1))
              return(MR_INGRES_ERR);
            EXEC SQL REPEATED SELECT value INTO :ngid FROM numvalues
              WHERE name = 'gid';
            if (ingres_errno) return(mr_errcode);
-           sprintf(argv[idx], "%d", ngid);
+           sprintf(argv[6 + idx], "%d", ngid);
        } else {
-           strcpy(argv[idx], "-1");
+           strcpy(argv[6 + idx], "-1");
        }
     }
 
@@ -595,7 +624,7 @@ int setup_alis(q, argv, cl)
 }
 
 
-/* setup_dlis - verify that the list is no longer being referenced 
+/* setup_dlis - verify that the list is no longer being referenced
  * and may safely be deleted.
  */
 
@@ -603,9 +632,9 @@ int setup_dlis(q, argv)
     struct query *q;
     char *argv[];
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int flag, id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     id = *(int *)argv[0];
     EXEC SQL REPEATED SELECT member_id INTO :idummy FROM imembers
@@ -641,10 +670,10 @@ int setup_dlis(q, argv)
     if (sqlca.sqlerrd[2] > 0)
        return(MR_IN_USE);
     EXEC SQL REPEATED SELECT class INTO :cdummy FROM zephyr z
-      WHERE zephyr.xmt_type = 'LIST' AND z.xmt_id = :id 
-       OR z.sub_type = 'LIST' AND z.sub_id = :id 
-       OR z.iws_type = 'LIST' AND z.iws_id = :id
-       OR z.iui_type = 'LIST' AND z.iui_id = :id;
+      WHERE z.xmt_type = 'LIST' AND z.xmt_id = :id
+        OR z.sub_type = 'LIST' AND z.sub_id = :id
+        OR z.iws_type = 'LIST' AND z.iws_id = :id
+        OR z.iui_type = 'LIST' AND z.iui_id = :id;
     if (sqlca.sqlerrd[2] > 0)
         return(MR_IN_USE);
     if (ingres_errno)
@@ -653,7 +682,7 @@ int setup_dlis(q, argv)
 }
 
 
-/* setup_dsin - verify that the service is no longer being referenced 
+/* setup_dsin - verify that the service is no longer being referenced
  * and may safely be deleted.
  */
 
@@ -661,13 +690,13 @@ int setup_dsin(q, argv)
     struct query *q;
     char **argv;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *name;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char *c;
 
     name = argv[0];
-    for(c=name;*c;c++) if(islower(*c)) *c = toupper(*c); 
+    for(c=name;*c;c++) if(islower(*c)) *c = toupper(*c);
     EXEC SQL REPEATED SELECT service INTO :cdummy FROM serverhosts
       WHERE service = :name;
     if (sqlca.sqlerrd[2] > 0)
@@ -682,7 +711,7 @@ int setup_dsin(q, argv)
 }
 
 
-/* setup_dshi - verify that the service-host is no longer being referenced 
+/* setup_dshi - verify that the service-host is no longer being referenced
  * and may safely be deleted.
  */
 
@@ -690,10 +719,10 @@ int setup_dshi(q, argv)
     struct query *q;
     char **argv;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id;
     char *name, *c;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     name = argv[0];
     for(c=name;*c;c++) if(islower(*c)) *c = toupper(*c);  /* to uppercase */
@@ -734,9 +763,9 @@ int setup_dshi(q, argv)
  **
  **/
 
-EXEC SQL BEGIN DECLARE SECTION; 
+EXEC SQL BEGIN DECLARE SECTION;
 static int var_phys_id;
-EXEC SQL END DECLARE SECTION; 
+EXEC SQL END DECLARE SECTION;
 
 setup_afil(q, argv, cl)
     struct query *q;
@@ -745,10 +774,10 @@ setup_afil(q, argv, cl)
 {
     char *type, *name;
     int mach_id;
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int ok;
     char ftype[32], *access;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     type = argv[1];
     mach_id = *(int *)argv[2];
@@ -757,14 +786,14 @@ setup_afil(q, argv, cl)
     var_phys_id = 0;
 
     sprintf(ftype, "fs_access_%s", type);
-    EXEC SQL SELECT trans INTO :cdummy FROM alias 
+    EXEC SQL SELECT trans INTO :cdummy FROM alias
       WHERE name = :ftype AND type = 'TYPE' and trans = :access;
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2] == 0) return(MR_FILESYS_ACCESS);
 
     if (!strcmp(type, "NFS"))
        return (check_nfs(mach_id, name, access));
-    
+
     if((mr_errcode=prefetch_value(q,argv,cl))!=MR_SUCCESS)
       return(mr_errcode);
 
@@ -783,12 +812,12 @@ setup_ufil(q, argv, cl)
     client *cl;
 {
     int mach_id, status;
-    char *type, *name;  
-    EXEC SQL BEGIN DECLARE SECTION; 
+    char *type, *name;
+    EXEC SQL BEGIN DECLARE SECTION;
     int fid, total, who;
     char *entity, ftype[32], *access;
     int var_phys_id = 0;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     type = argv[2];
     mach_id = *(int *)argv[3];
@@ -812,7 +841,7 @@ setup_ufil(q, argv, cl)
        return(status);
     } else if (!strcmp(type, "AFS")) {
        total = 0;
-       EXEC SQL REPEATED DELETE FROM quota 
+       EXEC SQL REPEATED DELETE FROM quota
          WHERE type = 'ANY' AND filsys_id = :fid;
        EXEC SQL SELECT SUM (quota) INTO :total FROM quota
          WHERE filsys_id = :fid AND phys_id != 0;
@@ -823,9 +852,9 @@ setup_ufil(q, argv, cl)
  *                          phys_id = 0, entity_id = 0, type = "ANY",
  *                          modtime = "now", modby = who, modwith = entity)
  */
-           EXEC SQL INSERT INTO quota (quota, filsys_id, phys_id, entity_id, 
+           EXEC SQL INSERT INTO quota (quota, filsys_id, phys_id, entity_id,
                                        type, modtime, modby, modwith)
-             VALUES (:total, :fid, 0, 0, 
+             VALUES (:total, :fid, 0, 0,
                      'ANY', 'now', :who, :entity) ;
            if (ingres_errno) return(mr_errcode);
        }
@@ -839,20 +868,20 @@ setup_ufil(q, argv, cl)
 
 /* Find the NFS physical partition that the named directory is on.
  * This is done by comparing the dir against the mount point of the
- * partition.  To make sure we get the correct match when there is 
+ * partition.  To make sure we get the correct match when there is
  * more than one, we sort the query in reverse order by dir name.
  */
 
 check_nfs(mach_id, name, access)
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int mach_id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char *name;
     char *access;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char dir[81];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char caccess;
     register int status;
     register char *cp1;
@@ -861,7 +890,7 @@ check_nfs(mach_id, name, access)
     status = MR_NFS;
     EXEC SQL DECLARE csr101 CURSOR FOR
       SELECT nfsphys_id, TRIM (dir) FROM nfsphys
-       WHERE mach_id = :mach_id 
+       WHERE mach_id = :mach_id
        ORDER BY 2 DESC;
     EXEC SQL OPEN csr101;
     while(1) {
@@ -876,7 +905,7 @@ check_nfs(mach_id, name, access)
        if (*cp2 == 0) {
            status = MR_SUCCESS;
            break;
-       }  
+       }
     }
     EXEC SQL CLOSE csr101;
     if (ingres_errno)
@@ -894,12 +923,12 @@ setup_dfil(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id, total;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     id = *(int *)argv[0];
-    EXEC SQL REPEATED SELECT SUM (quota) INTO :total FROM quota 
+    EXEC SQL REPEATED SELECT SUM (quota) INTO :total FROM quota
       WHERE filsys_id = :id;
     EXEC SQL REPEATED UPDATE nfsphys SET allocated = allocated - :total
       WHERE nfsphys_id = filesys.phys_id AND filesys.filsys_id = :id;
@@ -923,15 +952,15 @@ setup_dnfp(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id;
     char *dir;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     id = *(int *)argv[0];
     dir = argv[1];
     EXEC SQL REPEATED SELECT label INTO :cdummy FROM filesys fs, nfsphys np
-      WHERE fs.mach_id = :id AND fs.phys_id = np.nfsphys_id 
+      WHERE fs.mach_id = :id AND fs.phys_id = np.nfsphys_id
        AND np.mach_id = :id AND np.dir = :dir;
     if (sqlca.sqlerrd[2] > 0)
       return(MR_IN_USE);
@@ -952,10 +981,10 @@ setup_dqot(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int quota, fs, id;
     char *qtype;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     fs = *(int *)argv[0];
     if (!strcmp(q->name, "update_quota") || !strcmp(q->name, "delete_quota")) {
@@ -968,10 +997,10 @@ setup_dqot(q, argv, cl)
 
     EXEC SQL REPEATED SELECT quota INTO :quota FROM quota
       WHERE type = :qtype AND entity_id = :id AND filsys_id = :fs;
-    EXEC SQL REPEATED UPDATE nfsphys 
+    EXEC SQL REPEATED UPDATE nfsphys
       SET allocated = nfsphys.allocated - :quota
       WHERE nfsphys_id = filesys.physid AND filesys.filsys_id = :fs;
-    
+
     if (ingres_errno) return(mr_errcode);
     return(MR_SUCCESS);
 }
@@ -986,13 +1015,13 @@ setup_sshi(q, argv, cl)
     char **argv;
     client *cl;
 {
-#ifsql INGRES    
+#ifsql INGRES
     EXEC SQL set lockmode session where readlock = system;
 #endsql
 }
 
 
-/* setup add_kerberos_user_mapping: add the string to the string 
+/* setup add_kerberos_user_mapping: add the string to the string
  * table if necessary.
  */
 
@@ -1001,10 +1030,10 @@ struct query *q;
 char **argv;
 client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id, rowcount;
     char *name;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     name = argv[1];
     if (name_to_id(name, "STRING", &id) != MR_SUCCESS) {
@@ -1044,8 +1073,7 @@ set_modtime(q, argv, cl)
     table = q->rtable;
     name = argv[0];
 
-    sprintf(stmt_buf,"UPDATE %s SET modtime = 'now', modby = %d, \
-modwith = '%s' WHERE %s.name = '%s'",table,who,entity,table,name);
+    sprintf(stmt_buf,"UPDATE %s SET modtime = 'now', modby = %d, modwith = '%s' WHERE %s.name = LEFT('%s',SIZE(%s.name))",table,who,entity,table,name,table);
     EXEC SQL EXECUTE IMMEDIATE :stmt_buf;
 
     return(MR_SUCCESS);
@@ -1086,10 +1114,10 @@ set_finger_modtime(q, argv, cl)
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int users_id, who;
     char *entity;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     entity = cl->entity;
     who = cl->client_id;
@@ -1110,17 +1138,17 @@ set_pobox_modtime(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int users_id, who;
     char *entity;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     entity = cl->entity;
     who = cl->client_id;
     users_id = *(int *)argv[0];
 
-    EXEC SQL UPDATE users SET pmodtime='now', pmodby = :who, pmodwith = entity
-      WHERE users.users_id = users_id;
+    EXEC SQL UPDATE users SET pmodtime='now', pmodby = :who, pmodwith = :entity
+      WHERE users.users_id = :users_id;
 
     return(MR_SUCCESS);
 }
@@ -1134,19 +1162,17 @@ set_uppercase_modtime(q, argv, cl)
     char **argv;
     client *cl;
 {
-    char *name, *entity, *table, *c;
+    char *name, *entity, *table;
     int who;
 
     entity = cl->entity;
     who = cl->client_id;
     table = q->rtable;
     name = argv[0];
-    for(c=name;*c;c++) if(islower(*c)) *c = toupper(*c);  /** INGRES has an uppercase() functiuons, but it's not portable. */
 
-    sprintf(stmt_buf,"UPDATE %s SET modtime = 'now', modby = %d, \
-modwith = '%s' WHERE %s.name = '%s'",table,who,entity,table,name);
+    sprintf(stmt_buf,"UPDATE %s SET modtime = 'now', modby = %d, modwith = '%s' WHERE %s.name = UPPERCASE(LEFT('%s',SIZE(%s.name)))",table,who,entity,table,name,table);
     EXEC SQL EXECUTE IMMEDIATE :stmt_buf;
-    
+
     return(MR_SUCCESS);
 }
 
@@ -1161,17 +1187,17 @@ set_mach_modtime_by_id(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *entity;
     int who, id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     entity = cl->entity;
     who = cl->client_id;
     id = *(int *)argv[0];
     EXEC SQL UPDATE machine SET modtime='now', modby = :who, modwith = :entity
       WHERE machine.mach_id = :id;
-    
+
     return(MR_SUCCESS);
 }
 
@@ -1186,10 +1212,10 @@ set_cluster_modtime_by_id(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *entity;
     int who, id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     entity = cl->entity;
     who = cl->client_id;
@@ -1210,19 +1236,19 @@ set_serverhost_modtime(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *entity, *serv;
     int who, id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     entity = cl->entity;
     who = cl->client_id;
 
     serv = argv[0];
     id = *(int *)argv[1];
-    EXEC SQL UPDATE serverhosts 
+    EXEC SQL UPDATE serverhosts
       SET modtime = 'now', modby = :who, modwith = :entity
-      WHERE service = :serv AND mach_id = :id; 
+      WHERE service = :serv AND mach_id = :id;
     return(MR_SUCCESS);
 }
 
@@ -1236,10 +1262,10 @@ set_nfsphys_modtime(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *entity, *dir;
     int who, id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     entity = cl->entity;
     who = cl->client_id;
@@ -1261,10 +1287,10 @@ set_filesys_modtime(q, argv, cl)
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *label, *entity;
     int who;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     entity = cl->entity;
     who = cl->client_id;
@@ -1273,9 +1299,9 @@ set_filesys_modtime(q, argv, cl)
     if (!strcmp(q->shortname, "ufil"))
       label = argv[1];
 
-    EXEC SQL UPDATE filesys SET modtime = 'now', modby = :who, 
+    EXEC SQL UPDATE filesys SET modtime = 'now', modby = :who,
         modwith = :entity, phys_id = :var_phys_id
-      WHERE label = :label;
+      WHERE label = LEFT(:label,SIZE(label));
     return(MR_SUCCESS);
 }
 
@@ -1289,10 +1315,10 @@ set_zephyr_modtime(q, argv, cl)
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *class, *entity;
     int who;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     entity = cl->entity;
     who = cl->client_id;
@@ -1300,8 +1326,8 @@ set_zephyr_modtime(q, argv, cl)
     class = argv[0];
 
     EXEC SQL UPDATE zephyr SET modtime = 'now', modby = :who, modwith = :entity
-      WHERE class = :class;
-    
+      WHERE class = LEFT(:class,SIZE(class));
+
     return(MR_SUCCESS);
 }
 
@@ -1361,8 +1387,13 @@ followup_guax(q, sq, v, action, actarg, cl)
     register int i, j;
     char **argv, *malloc();
 #ifdef GDSS
-    char sigbuf[256], *rawsig, *kname;
+    unsigned char sigbuf[256];
+    char *kname;
     SigInfo  si;
+    EXEC SQL BEGIN DECLARE SECTION; 
+    int timestamp, who;
+    char *login;
+    EXEC SQL END DECLARE SECTION; 
 #endif /* GDSS */
     int id, status;
 
@@ -1376,17 +1407,20 @@ followup_guax(q, sq, v, action, actarg, cl)
        if (status && status != MR_NO_MATCH)
          return(status);
 #ifdef GDSS
-       if (q->vcnt == U_END) {
-           com_err(whoami, 0, "compressing signature");
-           rawsig = argv[U_SIGNATURE];
-           bcopy(&rawsig[0], &id, sizeof(int));
-           id = ntohl(id);
-           status = id_to_name(id, "STRING", &kname);
-           bcopy(&rawsig[4], &si.timestamp, sizeof(int));
-           si.timestamp = ntohl(si.timestamp);
+       if (q->vcnt == U_END && strlen(argv[U_SIGNATURE])) {
+           login = argv[U_NAME];
+           EXEC SQL REPEATED SELECT sigdate, sigwho 
+             INTO :timestamp, :who FROM users
+             WHERE login = :login;  /** Use LEFT(...,SIZE(...)) here? **/
+           /** What about (INGRES) error handling? **/
+           /** Is this guaranteed to be a singleton select? **/
+           kname = malloc(1);
+            status = id_to_name(who, "STRING", &kname);
+            si.timestamp = timestamp;
            si.SigInfoVersion = 0; /* XXXXX this isn't used */
            kname_parse(si.pname, si.pinst, si.prealm, kname);
-           si.rawsig = (unsigned char *)&rawsig[8];
+            free(kname);
+            si.rawsig = (unsigned char *)argv[U_SIGNATURE];
            GDSS_Recompose(&si, sigbuf);
            argv[U_SIGNATURE] = strsave(sigbuf);
        }
@@ -1417,16 +1451,17 @@ followup_ausr(q, argv, cl)
     char *argv[];
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
-    int who, status, sigwho, id;
+    EXEC SQL BEGIN DECLARE SECTION;
+    int who, status, id;
     char *login, *entity, *src, *dst, *name;
     char fullname[129];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 #ifdef GDSS
     char databuf[32], *kname_unparse();
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char rawsig[128];
-    EXEC SQL END DECLARE SECTION; 
+    int sigwho, timestamp;
+    EXEC SQL END DECLARE SECTION;
     SigInfo si;
 #endif /* GDSS */
 
@@ -1439,29 +1474,32 @@ followup_ausr(q, argv, cl)
        sprintf(fullname, "%s", argv[3]);
 
 #ifdef GDSS
-    sprintf(databuf, "%s:%s", argv[U_NAME], argv[U_MITID]);
-    /* skip bytes for timestamp & kname */
-    si.rawsig = (unsigned char *)&rawsig[8];
-    status = GDSS_Verify(databuf, strlen(databuf), argv[U_SIGNATURE], &si);
-    if (status == 0) {
-       name = kname_unparse(si.pname, si.pinst, si.prealm);
-       status = name_to_id(name, "STRING", &sigwho);
-       if (status == MR_NO_MATCH) {
-           EXEC SQL REPEATED SELECT value INTO :sigwho FROM numvalues
-             WHERE name = 'strings_id';
-           sigwho++;
-           EXEC SQL REPEATED UPDATE numvalues SET value = :sigwho
-             WHERE name = 'strings_id';
-           EXEC SQL INSERT INTO strings (string_id, string)
-             VALUES (:sigwho, :name);
-       } else if (status)
-         return(status);
-       sigwho = htonl(sigwho);
-       bcopy(&sigwho, &rawsig[0], sizeof(int));
-       si.timestamp = htonl(si.timestamp);
-       bcopy(&si.timestamp, &rawsig[4], sizeof(int));
-     } else
-       return(status);
+      if (q->vcnt == U_END && *argv[U_SIGNATURE]) {
+        sprintf(databuf, "%s:%s", argv[U_NAME], argv[U_MITID]);
+        /* skip bytes for timestamp & kname */
+        si.rawsig = (unsigned char *) rawsig;
+        status = GDSS_Verify(databuf, strlen(databuf), argv[U_SIGNATURE], &si);
+        if (status == 0) {
+            name = kname_unparse(si.pname, si.pinst, si.prealm);
+            status = name_to_id(name, "STRING", &sigwho);
+            if (status == MR_NO_MATCH) {
+                EXEC SQL REPEATED SELECT value INTO :sigwho FROM numvalues
+                 WHERE name='strings_id';
+                sigwho++;
+                EXEC SQL REPEATED UPDATE numvalues SET value = :sigwho
+                 WHERE name='strings_id';
+                INSERT INTO strings (string_id, string) 
+                 VALUES (:sigwho, :name);
+            } else if (status)
+              return(gdss2et(status));
+            timestamp = si.timestamp;
+        } else
+          return(gdss2et(status));
+      } else {
+        rawsig[0] = 0;
+        sigwho = 0;
+        timestamp = 0;
+      }
 #endif /* GDSS */
 
     login = argv[0];
@@ -1470,17 +1508,17 @@ followup_ausr(q, argv, cl)
 
     /* create finger entry, pobox & set modtime on user */
 #ifdef GDSS
-    EXEC SQL REPEATED UPDATE users 
-      SET modtime='now', modby=:who, modwith = :entity, 
-          fullname = :fullname, affiliation = type, 
-          signature = :rawsig, 
+    EXEC SQL REPEATED UPDATE users
+      SET modtime='now', modby=:who, modwith = :entity,
+          fullname = :fullname, affiliation = type,
+          signature = :rawsig, sigdate = :timestamp, sigwho = :sigwho,
           fmodtime='now', fmodby = :who, fmodwith = :entity,
           potype='NONE', pmodtime='now', pmodby = :who, pmodwith = :entity
       WHERE login = :login;
 #else /* GDSS */
     EXEC SQL REPEATED UPDATE users
-      SET modtime='now', modby=:who, modwith = :entity, 
-          fullname = :fullname, affiliation = type, 
+      SET modtime='now', modby=:who, modwith = :entity,
+          fullname = :fullname, affiliation = type,
           fmodtime='now', fmodby = :who, fmodwith = :entity,
           potype='NONE', pmodtime='now', pmodby = :who, pmodwith = :entity
       WHERE login = :login;
@@ -1490,6 +1528,84 @@ followup_ausr(q, argv, cl)
 }
 
 
+/**
+ ** followup_uusr - do signature, set_user_modtime
+ **
+ ** Inputs:
+ **   argv[0] - login (add_user)
+ **   argv[U_SIGNATURE] - sig
+ **
+ **/
+
+followup_uuac(q, argv, cl)
+    struct query *q;
+    char *argv[];
+    client *cl;
+{
+    EXEC SQL BEGIN DECLARE SECTION; 
+    int who, status, id;
+    char *entity, *name;
+    EXEC SQL END DECLARE SECTION; 
+#ifdef GDSS
+    char databuf[32], *kname_unparse();
+    EXEC SQL BEGIN DECLARE SECTION; 
+    char rawsig[128];
+    char *login;
+    int sigwho, timestamp;
+    EXEC SQL END DECLARE SECTION; 
+    SigInfo si;
+#endif /* GDSS */
+    
+    id = *(int *)argv[0];
+    who = cl->client_id;
+    entity = cl->entity;
+    
+#ifdef GDSS
+    if (q->vcnt == U_MODTIME && *argv[U_SIGNATURE + 1]) {
+        login = malloc(1);
+        status = id_to_name(id, "USER", &login);
+        sprintf(databuf, "%s:%s", login, argv[U_MITID+1]);
+        free(login);
+        /* skip bytes for timestamp & kname */
+        si.rawsig = (unsigned char *) rawsig;
+        status = GDSS_Verify(databuf, strlen(databuf), argv[U_SIGNATURE+1], &si);
+        if (status == 0) {
+            name = kname_unparse(si.pname, si.pinst, si.prealm);
+            status = name_to_id(name, "STRING", &sigwho);
+            if (status == MR_NO_MATCH) {
+                EXEC SQL REPEATED SELECT value INTO :sigwho FROM numvalues
+                 WHERE name='strings_id';
+                sigwho++;
+                EXEC SQL REPEATED UPDATE numvalues SET value = :sigwho
+                 WHERE name='strings_id';
+                INSERT INTO strings (string_id, string) 
+                 VALUES (:sigwho, :name);
+            } else if (status)
+              return(gdss2et(status));
+            timestamp = si.timestamp;
+        } else
+          return(gdss2et(status));
+    } else {
+        rawsig[0] = 0;
+        sigwho = 0;
+        timestamp = 0;
+    }
+#endif /* GDSS */
+    /* create finger entry, pobox & set modtime on user */
+
+#ifdef GDSS
+    EXEC SQL REPEATED UPDATE users SET modtime='now', modby = :who, modwith = :entity,
+        signature = :rawsig, sigdate = :timestamp, sigwho = :sigwho
+      WHERE users_id = :id;
+#else /* GDSS */
+    EXEC SQL REPEATED UPDATE users SET modtime='now', modby = :who, modwith = :entity
+      WHERE users_id = :id;
+#endif /* GDSS */
+    return(MR_SUCCESS);
+}
 /* followup_gpob: fixes argv[2] based on the IDs currently there and the
  * type in argv[1].  Then completes the upcall to the user.
  *
@@ -1509,7 +1625,7 @@ followup_gpob(q, sq, v, action, actarg, cl)
 {
     char **argv, *index();
     char *ptype, *p;
-    int mid, sid, status;
+    int mid, sid, status, i;
 
     /* for each row */
     while (sq_get_data(sq, &argv)) {
@@ -1545,9 +1661,8 @@ followup_gpob(q, sq, v, action, actarg, cl)
        (*action)(q->vcnt, argv, actarg);
     skip:
        /* free saved data */
-       free(argv[0]);
-       free(argv[1]);
-       free(argv[4]);
+       for (i = 0; i < q->vcnt; i++)
+           free(argv[i]);
        free(argv);
     }
 
@@ -1618,7 +1733,7 @@ followup_glin(q, sq, v, action, actarg, cl)
        (*action)(q->vcnt, argv, actarg);
 
        /* free saved data */
-       for (i = 0; i < q->vcnt; i++) 
+       for (i = 0; i < q->vcnt; i++)
            free(argv[i]);
        free(argv);
     }
@@ -1645,10 +1760,10 @@ followup_gqot(q, sq, v, action, actarg, cl)
 {
     register int j;
     char **argv, *malloc();
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id;
     char *name, *label;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int status, idx;
 
     if (!strcmp(q->name, "get_quota") ||
@@ -1682,10 +1797,10 @@ followup_gqot(q, sq, v, action, actarg, cl)
        name = argv[idx];
        if (id == 0) {
            label = argv[0];
-           EXEC SQL REPEATED SELECT name INTO :name FROM filesys 
+           EXEC SQL REPEATED SELECT name INTO :name FROM filesys
              WHERE label = :label;
        } else {
-           EXEC SQL REPEATED SELECT dir INTO :name FROM nfsphys 
+           EXEC SQL REPEATED SELECT dir INTO :name FROM nfsphys
              WHERE nfsphys_id = :id;
        }
        if (sqlca.sqlerrd[2] != 1) {
@@ -1721,10 +1836,10 @@ followup_aqot(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int quota, id, fs, who;
     char *entity, *qtype;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     fs = *(int *)argv[0];
     if (!strcmp(q->name, "add_quota") || !strcmp(q->name, "update_quota")) {
@@ -1834,7 +1949,7 @@ followup_gzcl(q, sq, v, action, actarg, cl)
        (*action)(q->vcnt, argv, actarg);
 
        /* free saved data */
-       for (i = 0; i < q->vcnt; i++) 
+       for (i = 0; i < q->vcnt; i++)
            free(argv[i]);
        free(argv);
     }
@@ -1891,7 +2006,7 @@ followup_gsha(q, sq, v, action, actarg, cl)
        (*action)(q->vcnt, argv, actarg);
 
        /* free saved data */
-       for (i = 0; i < q->vcnt; i++) 
+       for (i = 0; i < q->vcnt; i++)
            free(argv[i]);
        free(argv);
     }
@@ -1915,10 +2030,10 @@ int set_pobox(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int user, id;
     char *box, potype[9];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int status;
 
     box = argv[2];
@@ -1981,21 +2096,22 @@ get_list_info(q, aargv, cl, action, actarg)
     int actarg;
 {
     char *argv[13], *malloc(), *realloc();
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *name, acl_type[9], listname[33], active[5], public[5], hidden[5];
     char maillist[5], grouplist[5], gid_str[6], acl_name[256], desc[256];
     char modtime[27], modby[256], modwith[9];
     int id, rowcount, acl_id, hid, modby_id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int returned, status;
     struct save_queue *sq, *sq_create();
 
     returned = rowcount = 0;
     name = aargv[0];
+    convert_wildcards(name);
 
     sq = sq_create();
-    EXEC SQL DECLARE csr102 CURSOR FOR SELECT list_id FROM list 
-      WHERE name = :name;
+    EXEC SQL DECLARE csr102 CURSOR FOR SELECT list_id FROM list
+      WHERE name LIKE :name ESCAPE '*';
     EXEC SQL OPEN csr102;
     while(1)
     {
@@ -2011,29 +2127,18 @@ get_list_info(q, aargv, cl, action, actarg)
       return(MR_NO_MATCH);
 
     argv[0] = listname; argv[1] = active; argv[2] = public; argv[3] = hidden;
-    argv[4] = maillist; argv[5] = grouplist; argv[6] = gid_str; 
+    argv[4] = maillist; argv[5] = grouplist; argv[6] = gid_str;
     argv[7] = acl_type; argv[9] = desc; argv[10] = modtime; argv[12] = modwith;
 
     while (sq_get_data(sq, &id)) {
        if (id == 0)
          continue;
        argv[6] = gid_str;
-/*
- *     repeat retrieve (listname = l.#name, active = text(l.#active), 
- *             public = text(l.#public), hidden = text(l.#hidden),
- *             hid = l.#hidden, maillist = text(l.#maillist),
- *             group = text(l.#group), gid = text(l.#gid),
- *             acl_type = trim(l.#acl_type), acl_id = l.#acl_id,
- *             desc = l.#desc, modtime = l.#modtime, modby_id = l.#modby,
- *             modwith =l.#modwith)
- *         where l.list_id = :id
- */
-       /** Won't the TRIM() die a horrible INGRES death? **/
        EXEC SQL REPEATED SELECT name, CHAR(active), CHAR(publicflg),
            CHAR(hidden), hidden, CHAR(maillist), CHAR(grouplist), CHAR(gid),
-           TRIM(acl_type), acl_id, description, CHAR(modtime), modby, modwith 
+           TRIM(acl_type), acl_id, description, CHAR(modtime), modby, modwith
          INTO :listname, :active, :public, :hidden, :hid, :maillist,
-            :grouplist, :gid_str, :acl_type, :acl_id, :desc, 
+            :grouplist, :gid_str, :acl_type, :acl_id, :desc,
            :modtime, :modby_id, :modwith
           FROM list WHERE list_id = :id;
 
@@ -2091,10 +2196,10 @@ int add_member_to_list(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id, lid, mid, error, who, ref;
     char *mtype, dtype[9], *entity;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int ancestors[MAXLISTDEPTH], aref[MAXLISTDEPTH], acount, a;
     int descendants[MAXLISTDEPTH], dref[MAXLISTDEPTH], dcount, d;
     int status;
@@ -2105,13 +2210,8 @@ int add_member_to_list(q, argv, cl)
     mtype = argv[1];
     mid = *(int *)argv[2];
     /* if the member is already a direct member of the list, punt */
-/*
- *  repeat retrieve (exists = any(m.list_id where m.list_id=@lid and 
- *                        m.member_id = :mid and m.member_type = :mtype
- *                        and m.direct = 1))
- */
-    EXEC SQL REPEATED SELECT list_id INTO :idummy FROM imembers 
-      WHERE list_id = :lid AND member_id = :mid 
+    EXEC SQL REPEATED SELECT list_id INTO :idummy FROM imembers
+      WHERE list_id = :lid AND member_id = :mid
        AND member_type = :mtype AND direct = 1;
     if (sqlca.sqlerrd[2] > 0)
       return(MR_EXISTS);
@@ -2138,7 +2238,7 @@ int add_member_to_list(q, argv, cl)
        if(sqlca.sqlcode != 0) break;
        aref[acount] = ref;
        ancestors[acount++] = id;
-       if (acount >= MAXLISTDEPTH) break; 
+       if (acount >= MAXLISTDEPTH) break;
     }
     EXEC SQL CLOSE csr103;
     if (ingres_errno) return(mr_errcode);
@@ -2151,7 +2251,7 @@ int add_member_to_list(q, argv, cl)
     dcount = 1;
     error = 0;
     if (!strcmp(mtype, "LIST")) {
-       EXEC SQL DECLARE csr104 CURSOR FOR 
+       EXEC SQL DECLARE csr104 CURSOR FOR
          SELECT member_id, member_type, ref_count
          FROM imembers
          WHERE list_id = :mid;
@@ -2196,18 +2296,13 @@ int add_member_to_list(q, argv, cl)
            if (mid == lid && !strcmp(mtype, "LIST")) {
                return(MR_LISTLOOP);
            }
-/*
- *         repeat retrieve (exists = any(m.ref_count where m.list_id = :lid
- *                                      and m.member_id = :mid
- *                                      and m.member_type = :mtype))
- */
            EXEC SQL REPEATED SELECT ref_count INTO :idummy FROM imembers
-             WHERE list_id = :lid AND member_id = :mid 
-               AND m.member_type = :mtype;
+             WHERE list_id = :lid AND member_id = :mid
+               AND member_type = :mtype;
            ref = aref[a] * dref[d];
            if (sqlca.sqlerrd[2] > 0) {
                if (a == 0 && d == 0) {
-                   EXEC SQL UPDATE imembers 
+                   EXEC SQL UPDATE imembers
                      SET ref_count = ref_count+ref, direct=1
                      WHERE list_id = :lid AND member_id = :mid
                        AND member_type = :mtype;
@@ -2220,7 +2315,7 @@ int add_member_to_list(q, argv, cl)
            } else {
                incremental_clear_before();
                if (a == 0 && d == 0) {
-                   EXEC SQL INSERT INTO imembers 
+                   EXEC SQL INSERT INTO imembers
                      (list_id, member_id, direct, member_type, ref_count)
                      VALUES (:lid, :mid, 1, :mtype, 1);
                } else {
@@ -2238,7 +2333,7 @@ int add_member_to_list(q, argv, cl)
     lid = *(int *)argv[0];
     entity = cl->entity;
     who = cl->client_id;
-    EXEC SQL REPEATED UPDATE list 
+    EXEC SQL REPEATED UPDATE list
       SET modtime='now', modby = :who, modwith = :entity
       WHERE list_id = :lid;
     if (ingres_errno) return(mr_errcode);
@@ -2254,10 +2349,10 @@ int delete_member_from_list(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id, lid, mid, cnt, error, who, ref;
     char *mtype, dtype[9], *entity;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int ancestors[MAXLISTDEPTH], aref[MAXLISTDEPTH], acount, a;
     int descendants[MAXLISTDEPTH], dref[MAXLISTDEPTH], dcount, d;
     char *dtypes[MAXLISTDEPTH];
@@ -2267,13 +2362,8 @@ int delete_member_from_list(q, argv, cl)
     mtype = argv[1];
     mid = *(int *)argv[2];
     /* if the member is not a direct member of the list, punt */
-/*
- *  repeat retrieve (exists = any(m.list_id where m.list_id=@lid and 
- *                        m.member_id = :mid and m.member_type = :mtype
- *                        and m.direct = 1))
- */
     EXEC SQL REPEATED SELECT list_id INTO :idummy FROM imembers
-      WHERE list_id = :lid AND member_id = :mid 
+      WHERE list_id = :lid AND member_id = :mid
        AND member_type = :mtype AND direct = 1;
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlcode == 100)
@@ -2281,7 +2371,7 @@ int delete_member_from_list(q, argv, cl)
     ancestors[0] = lid;
     aref[0] = 1;
     acount = 1;
-    EXEC SQL DECLARE csr105 CURSOR FOR 
+    EXEC SQL DECLARE csr105 CURSOR FOR
       SELECT list_id, ref_count FROM imembers
        WHERE member_id = :lid AND member_type = 'LIST';
     EXEC SQL OPEN csr105;
@@ -2293,7 +2383,7 @@ int delete_member_from_list(q, argv, cl)
        if (acount >= MAXLISTDEPTH) break;
     }
     EXEC SQL CLOSE csr105;
-    if (ingres_errno) 
+    if (ingres_errno)
       return(mr_errcode);
     if (acount >= MAXLISTDEPTH)
       return(MR_INTERNAL);
@@ -2303,7 +2393,7 @@ int delete_member_from_list(q, argv, cl)
     dcount = 1;
     error = 0;
     if (!strcmp(mtype, "LIST")) {
-       EXEC SQL DECLARE csr106 CURSOR FOR 
+       EXEC SQL DECLARE csr106 CURSOR FOR
          SELECT member_id, member_type, ref_count FROM imembers
            WHERE list_id = :mid;
        EXEC SQL OPEN csr106;
@@ -2332,7 +2422,7 @@ int delete_member_from_list(q, argv, cl)
            if (dcount >= MAXLISTDEPTH) break;
        }
        EXEC SQL CLOSE csr106;
-       if (ingres_errno) 
+       if (ingres_errno)
          return(mr_errcode);
        if (error)
          return(MR_INTERNAL);
@@ -2353,19 +2443,19 @@ int delete_member_from_list(q, argv, cl)
                iargv[1] = mtype;
                iargv[2] = (char *)mid;
                incremental_before("members", 0, iargv);
-               EXEC SQL DELETE FROM imembers 
-                 WHERE list_id = :lid AND member_id = :mid 
+               EXEC SQL DELETE FROM imembers
+                 WHERE list_id = :lid AND member_id = :mid
                    AND member_type= :mtype;
                incremental_clear_after();
            } else if (a == 0 && d == 0) {
-               EXEC SQL UPDATE imembers 
+               EXEC SQL UPDATE imembers
                  SET ref_count = refcount - :ref, direct = 0
-                 WHERE list_id = :lid AND member_id = :mid 
+                 WHERE list_id = :lid AND member_id = :mid
                    AND member_type = :mtype;
            } else {
-               EXEC SQL UPDATE imembers 
+               EXEC SQL UPDATE imembers
                  SET ref_count=refcount-:ref
-                 WHERE list_id = :lid AND member_id = :mid 
+                 WHERE list_id = :lid AND member_id = :mid
                    AND member_type = :mtype;
            }
        }
@@ -2396,10 +2486,10 @@ int get_ace_use(q, argv, cl, action, actarg)
     int actarg;
 {
     int found = 0;
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *atype;
     int aid, listid, id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     struct save_queue *sq, *sq_create();
 
     atype = argv[0];
@@ -2413,7 +2503,7 @@ int get_ace_use(q, argv, cl, action, actarg)
     if (!strcmp(atype, "RLIST")) {
        sq_save_data(sq, aid);
        /* get all the list_id's of containing lists */
-       EXEC SQL DECLARE csr107 CURSOR FOR 
+       EXEC SQL DECLARE csr107 CURSOR FOR
          SELECT list_id FROM imembers
            WHERE member_type='LIST' AND member_id = :aid;
        EXEC SQL OPEN csr107;
@@ -2431,7 +2521,7 @@ int get_ace_use(q, argv, cl, action, actarg)
     }
 
     if (!strcmp(atype, "RUSER")) {
-       EXEC SQL DECLARE csr108 CURSOR FOR 
+       EXEC SQL DECLARE csr108 CURSOR FOR
          SELECT list_id FROM imembers
            WHERE member_type='USER' AND member_id = :aid;
        EXEC SQL OPEN csr108;
@@ -2451,7 +2541,7 @@ int get_ace_use(q, argv, cl, action, actarg)
     }
 
     if (!strcmp(atype, "RKERBERO")) {
-       EXEC SQL DECLARE csr109 CURSOR FOR 
+       EXEC SQL DECLARE csr109 CURSOR FOR
          SELECT list_id FROM imembers
            WHERE member_type='KERBEROS' AND member_id = :aid;
        EXEC SQL OPEN csr109;
@@ -2470,7 +2560,7 @@ int get_ace_use(q, argv, cl, action, actarg)
          found++;
     }
 
-    sq_destroy(sq);    
+    sq_destroy(sq);
     if (ingres_errno) return(mr_errcode);
     if (!found) return(MR_NO_MATCH);
     return(MR_SUCCESS);
@@ -2483,23 +2573,23 @@ int get_ace_use(q, argv, cl, action, actarg)
  */
 
 get_ace_internal(atype, aid, action, actarg)
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *atype;
     int aid;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int (*action)();
     int actarg;
 {
     char *rargv[2];
     int found = 0;
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char name[33];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     rargv[1] = name;
     if (!strcmp(atype, "LIST")) {
        rargv[0] = "FILESYS";
-       EXEC SQL DECLARE csr110 CURSOR FOR 
+       EXEC SQL DECLARE csr110 CURSOR FOR
          SELECT label FROM filesys
            WHERE owners = :aid;
        EXEC SQL OPEN csr110;
@@ -2512,12 +2602,12 @@ get_ace_internal(atype, aid, action, actarg)
        EXEC SQL CLOSE csr110;
 
        rargv[0] = "QUERY";
-       EXEC SQL DECLARE csr111 CURSOR FOR 
+       EXEC SQL DECLARE csr111 CURSOR FOR
          SELECT capability FROM capacls
            WHERE list_id = :aid ;
        EXEC SQL OPEN csr111;
        while(1) {
-           EXEC SQL FETCH csr111 INTO :name ; 
+           EXEC SQL FETCH csr111 INTO :name ;
            if(sqlca.sqlcode != 0) break;
            (*action)(2, rargv, actarg);
            found++;
@@ -2525,7 +2615,7 @@ get_ace_internal(atype, aid, action, actarg)
        EXEC SQL CLOSE csr111;
     } else if (!strcmp(atype, "USER")) {
        rargv[0] = "FILESYS";
-       EXEC SQL DECLARE csr112 CURSOR FOR 
+       EXEC SQL DECLARE csr112 CURSOR FOR
          SELECT label FROM filesys
            WHERE owner = :aid;
        EXEC SQL OPEN csr112;
@@ -2535,24 +2625,24 @@ get_ace_internal(atype, aid, action, actarg)
            (*action)(2, rargv, actarg);
            found++;
        }
-       EXEC SQL CLOSE csr112; 
+       EXEC SQL CLOSE csr112;
     }
-    
+
     rargv[0] = "LIST";
-    EXEC SQL DECLARE csr113 CURSOR FOR 
+    EXEC SQL DECLARE csr113 CURSOR FOR
       SELECT name FROM list
        WHERE acl_type = :atype AND acl_id = :aid;
     EXEC SQL OPEN csr113;
     while(1) {
-       EXEC SQL FETCH csr113 INTO :name; 
+       EXEC SQL FETCH csr113 INTO :name;
        if(sqlca.sqlcode != 0) break;
        (*action)(2, rargv, actarg);
        found++;
     }
     EXEC SQL CLOSE csr113;
-    
+
     rargv[0] = "SERVICE";
-    EXEC SQL DECLARE csr114 CURSOR FOR 
+    EXEC SQL DECLARE csr114 CURSOR FOR
       SELECT name FROM servers
        WHERE acl_type = :atype AND acl_id = :aid;
     EXEC SQL OPEN csr114;
@@ -2562,10 +2652,10 @@ get_ace_internal(atype, aid, action, actarg)
        (*action)(2, rargv, actarg);
        found++;
     }
-    EXEC SQL CLOSE csr114; 
+    EXEC SQL CLOSE csr114;
 
     rargv[0] = "HOSTACCESS";
-    EXEC SQL DECLARE csr115 CURSOR FOR 
+    EXEC SQL DECLARE csr115 CURSOR FOR
       SELECT name FROM machine, hostaccess
        WHERE mach_id = hostaccess.mach_id AND hostaccess.acl_type = :atype
          AND hostaccess.acl_id = :aid;
@@ -2579,15 +2669,15 @@ get_ace_internal(atype, aid, action, actarg)
     EXEC SQL CLOSE csr115;
 
     rargv[0] = "ZEPHYR";
-    EXEC SQL DECLARE csr116 CURSOR FOR 
+    EXEC SQL DECLARE csr116 CURSOR FOR
       SELECT class FROM zephyr
-       WHERE zephyr.xmt_type = :atype AND zephyr.xmt_id = :aid 
-         OR zephyr.sub_type = :atype AND zephyr.sub_id = :aid 
-         OR zephyr.iws_type = :atype AND zephyr.iws_id = :aid 
+       WHERE zephyr.xmt_type = :atype AND zephyr.xmt_id = :aid
+         OR zephyr.sub_type = :atype AND zephyr.sub_id = :aid
+         OR zephyr.iws_type = :atype AND zephyr.iws_id = :aid
           OR zephyr.iui_type = :atype AND zephyr.iui_id = :aid;
     EXEC SQL OPEN csr116;
     while(1) {
-       EXEC SQL FETCH csr116 INTO :name; 
+       EXEC SQL FETCH csr116 INTO :name;
        if(sqlca.sqlcode != 0) break;
        (*action)(2, rargv, actarg);
        found++;
@@ -2616,11 +2706,11 @@ int get_lists_of_member(q, argv, cl, action, actarg)
 {
     int found = 0, direct = 1;
     char *rargv[6];
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *atype;
     int aid, listid, id;
     char name[33], active[5], public[5], hidden[5], maillist[5], grouplist[5];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     atype = argv[0];
     aid = *(int *)argv[1];
@@ -2648,40 +2738,33 @@ int get_lists_of_member(q, argv, cl, action, actarg)
     rargv[4] = maillist;
     rargv[5] = grouplist;
     if (direct) {
-/*
- *    repeat retrieve (name = list.#name, active = text(list.#active), 
- *                  public = text(list.#public), hidden = text(list.#hidden),
- *                  maillist = text(list.#maillist), group = text(list.#group))
- *             where list.list_id = m.list_id and m.direct = 1 and
- *                   m.member_type = :atype and m.member_id = :aid 
- */
-       EXEC SQL DECLARE csr117a CURSOR FOR 
-         SELECT name, CHAR(active), CHAR(publicflg), CHAR(hidden), 
+       EXEC SQL DECLARE csr117a CURSOR FOR
+         SELECT name, CHAR(active), CHAR(publicflg), CHAR(hidden),
              CHAR(maillist), CHAR(grouplist)
            FROM list l, imembers m
-           WHERE l.list_id = m.list_id AND m.direct = 1 
+           WHERE l.list_id = m.list_id AND m.direct = 1
              AND m.member_type = :atype AND m.member_id = :aid;
        EXEC SQL OPEN csr117a;
        while(1) {
-           EXEC SQL FETCH csr117a 
+           EXEC SQL FETCH csr117a
              INTO :name, :active, :public, :hidden, :maillist, :grouplist;
-           if(sqlca.sqlcode != 0) break; 
+           if(sqlca.sqlcode != 0) break;
            (*action)(6, rargv, actarg);
            found++;
        }
        EXEC SQL CLOSE csr117a;
     } else {
-       EXEC SQL DECLARE csr117b CURSOR FOR 
-         SELECT name, CHAR(active), CHAR(publicflg), CHAR(hidden), 
+       EXEC SQL DECLARE csr117b CURSOR FOR
+         SELECT name, CHAR(active), CHAR(publicflg), CHAR(hidden),
              CHAR(maillist), CHAR(grouplist)
            FROM list l, imembers m
-           WHERE l.list_id = m.list_id 
+           WHERE l.list_id = m.list_id
              AND m.member_type = :atype AND m.member_id = :aid;
        EXEC SQL OPEN csr117b;
        while(1) {
-           EXEC SQL FETCH csr117b 
+           EXEC SQL FETCH csr117b
              INTO :name, :active, :public, :hidden, :maillist, :grouplist;
-           if(sqlca.sqlcode != 0) break; 
+           if(sqlca.sqlcode != 0) break;
            (*action)(6, rargv, actarg);
            found++;
        }
@@ -2714,7 +2797,32 @@ int qualified_get_lists(q, argv, cl, action, actarg)
 }
 
 
-/** get_members_of_list - optimized query for retrieval of list members
+/* get_members_of_list - this gets only direct members */
+get_members_of_list(q, argv, cl, action, actarg)
+    struct query *q;
+    char *argv[];
+    client *cl;
+    int (*action)();
+    int actarg;
+{
+    return(gmol_internal(q, argv, cl, action, actarg, 1));
+}
+/* get_end_members_of_list - this gets direct or indirect members */
+get_end_members_of_list(q, argv, cl, action, actarg)
+    struct query *q;
+    char *argv[];
+    client *cl;
+    int (*action)();
+    int actarg;
+{
+    return(gmol_internal(q, argv, cl, action, actarg, 0));
+}
+/** gmol_internal - optimized query for retrieval of list members
+ **   used by both get_members_of_list and get_end_members_of_list
  **
  ** Inputs:
  **   argv[0] - list_id
@@ -2723,33 +2831,40 @@ int qualified_get_lists(q, argv, cl, action, actarg)
  **   - retrieve USER members, then LIST members, then STRING members
  **/
 
-get_members_of_list(q, argv, cl, action, actarg)
+gmol_internal(q, argv, cl, action, actarg, flag)
     struct query *q;
     char *argv[];
     client *cl;
     int (*action)();
     int actarg;
+    int flag;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
-    int list_id, member_id;
+    EXEC SQL BEGIN DECLARE SECTION;
+    int list_id, member_id, direct;
     char member_name[129], member_type[9];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char *targv[2];
     int members;
     struct save_queue *sq;
 
+    /* true/false flag indicates whether to display only direct members. */
+    if (flag)
+      direct = 0;
+    else
+      direct = -1;
+
     list_id = *(int *)argv[0];
     members = 0;
     sq = sq_create();
 
-    EXEC SQL DECLARE csr118 CURSOR FOR 
+    EXEC SQL DECLARE csr118 CURSOR FOR
       SELECT member_type, member_id FROM imembers
-       WHERE list_id = :list_id AND direct=1;
+       WHERE list_id = :list_id AND direct > :direct;
     EXEC SQL OPEN csr118;
     while(1) {
-       EXEC SQL FETCH csr118 INTO :member_type, :member_id; 
+       EXEC SQL FETCH csr118 INTO :member_type, :member_id;
        if (sqlca.sqlcode != 0) break;
-       if (members++ > 49) 
+       if (members++ > 49)
          break;
        sq_save_data(sq, ((int)member_type[0] << 24) | (member_id & 0xffffff));
     }
@@ -2792,10 +2907,10 @@ get_members_of_list(q, argv, cl, action, actarg)
 
     targv[1] = member_name;
     targv[0] = "USER";
-    EXEC SQL DECLARE csr119 CURSOR FOR 
+    EXEC SQL DECLARE csr119 CURSOR FOR
       SELECT users.login FROM users, imembers
        WHERE imembers.list_id = :list_id AND imembers.member_type = 'USER'
-         AND imembers.member_id = users.users_id AND  imembers.direct=1
+         AND imembers.member_id = users.users_id AND imembers.direct > :direct
        ORDER BY 1;
     EXEC SQL OPEN csr119;
     while(1) {
@@ -2807,14 +2922,14 @@ get_members_of_list(q, argv, cl, action, actarg)
     if (ingres_errno) return(mr_errcode);
 
     targv[0] = "LIST";
-    EXEC SQL DECLARE csr120 CURSOR FOR 
+    EXEC SQL DECLARE csr120 CURSOR FOR
       SELECT list.name FROM list, imembers
        WHERE imembers.list_id = :list_id AND imembers.member_type='LIST'
-         AND imembers.member_id = list.list_id AND imembers.direct=1
+         AND imembers.member_id = list.list_id AND imembers.direct > :direct
         ORDER BY 1;
     EXEC SQL OPEN csr120;
     while(1) {
-       EXEC SQL FETCH csr120 INTO :member_name; 
+       EXEC SQL FETCH csr120 INTO :member_name;
        if(sqlca.sqlcode != 0) break;
        (*action)(2, targv, actarg);
     }
@@ -2822,14 +2937,15 @@ get_members_of_list(q, argv, cl, action, actarg)
     if (ingres_errno) return(mr_errcode);
 
     targv[0] = "STRING";
-    EXEC SQL DECLARE csr121 CURSOR FOR 
+    EXEC SQL DECLARE csr121 CURSOR FOR
       SELECT strings.string FROM strings, imembers
        WHERE imembers.list_id = :list_id AND imembers.member_type='STRING'
-         AND imembers.member_id = strings.string_id AND imembers.direct=1
+         AND imembers.member_id = strings.string_id 
+         AND imembers.direct > :direct
        ORDER BY 1;
     EXEC SQL OPEN csr121;
     while(1) {
-       EXEC SQL FETCH csr121 INTO :member_name; 
+       EXEC SQL FETCH csr121 INTO :member_name;
        if(sqlca.sqlcode != 0) break;
        (*action)(2, targv, actarg);
     }
@@ -2837,14 +2953,15 @@ get_members_of_list(q, argv, cl, action, actarg)
     if (ingres_errno) return(mr_errcode);
 
     targv[0] = "KERBEROS";
-    EXEC SQL DECLARE csr122 CURSOR FOR 
+    EXEC SQL DECLARE csr122 CURSOR FOR
       SELECT strings.string FROM strings, imembers
        WHERE imembers.list_id = :list_id AND imembers.member_type='KERBEROS'
-         AND imembers.member_id = strings.string_id AND imembers.direct=1
+         AND imembers.member_id = strings.string_id 
+         AND imembers.direct > :direct
        ORDER BY 1;
     EXEC SQL OPEN csr122;
     while(1) {
-       EXEC SQL FETCH csr122 INTO :member_name; 
+       EXEC SQL FETCH csr122 INTO :member_name;
        if(sqlca.sqlcode != 0) break;
        (*action)(2, targv, actarg);
     }
@@ -2866,9 +2983,9 @@ int count_members_of_list(q, argv, cl, action, actarg)
     int (*action)();
     int actarg;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int  list, ct = 0;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char *rargv[1], countbuf[5];
 
     list = *(int *)argv[0];
@@ -2935,12 +3052,12 @@ int qualified_get(q, argv, action, actarg, start, range, field, flags)
            (void) strcat(qual, buf);
        }
     }
-      
+
     rargv[0] = SQLDA->sqlvar[0].sqldata;
     sprintf(stmt_buf,"SELECT %s.%s FROM %s %s WHERE %s",q->rtable,field,q->rtable,q->rvar,qual);
-    EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf; 
-    if((mr_errcode=mr_check_SQLDA(SQLDA)) != MR_SUCCESS)
-      return(mr_errcode);
+    EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf;
+    if(sqlca.sqlcode)
+      return(MR_INTERNAL);
     EXEC SQL DECLARE csr123 CURSOR FOR stmt;
     EXEC SQL OPEN csr123;
     while(1) {
@@ -2959,7 +3076,7 @@ int qualified_get(q, argv, action, actarg, start, range, field, flags)
 
 /* qualified_get_serverhost: passed "TRUE", "FALSE", or "DONTCARE" for each of
  * the five flags associated with each serverhost.  It will return the name of
- * each service and host that meets the quailifications.  It does this by 
+ * each service and host that meets the quailifications.  It does this by
  * building a where clause based on the arguments, then doing a retrieve.
  */
 
@@ -2973,9 +3090,9 @@ int qualified_get_serverhost(q, argv, cl, action, actarg)
     int (*action)();
     int actarg;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char sname[33], mname[33], qual[256];
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     char *rargv[2], buf[32];
     int i, rowcount;
 
@@ -2992,12 +3109,12 @@ serverhosts.service = uppercase('%s')",
            strcat(qual, buf);
        }
     }
-      
+
     rargv[0] = sname;
     rargv[1] = mname;
-    EXEC SQL DECLARE csr124 CURSOR FOR 
-      SELECT serverhosts.service, machine.name FROM serverhosts, machine 
-       WHERE :qual; 
+    EXEC SQL DECLARE csr124 CURSOR FOR
+      SELECT serverhosts.service, machine.name FROM serverhosts, machine
+       WHERE :qual;
     EXEC SQL OPEN csr124;
     while(1) {
         EXEC SQL FETCH csr124 INTO :sname, :mname;
@@ -3017,7 +3134,7 @@ serverhosts.service = uppercase('%s')",
 /* register_user - change user's login name and allocate a pobox, group,
  * filesystem, and quota for them.  The user's status must start out as 0,
  * and is left as 2.  Arguments are: user's UID, new login name, and user's
- * type for filesystem allocation (MR_FS_STUDENT, MR_FS_FACULTY, 
+ * type for filesystem allocation (MR_FS_STUDENT, MR_FS_FACULTY,
  * MR_FS_STAFF, MR_FS_MISC).
  */
 
@@ -3026,13 +3143,13 @@ register_user(q, argv, cl)
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
-    char *login, dir[65], *entity, *directory, machname[33];
+    EXEC SQL BEGIN DECLARE SECTION;
+    char *login, dir[65], *entity, directory[129], machname[33];
     int who, rowcount, mid, uid, users_id, flag, utype, nid, list_id, quota;
-    int size, alloc, pid, m_id, ostatus, nstatus, gidval, fsidval;
-    EXEC SQL END DECLARE SECTION; 
+    int size, alloc, pid, ostatus, nstatus, gidval, fsidval, npidval;
+    static int m_id = 0, def_quota = 0;
+    EXEC SQL END DECLARE SECTION;
     char buffer[256], *aargv[3];
-    int maxsize;
 
     entity = cl->entity;
     who = cl->client_id;
@@ -3052,29 +3169,37 @@ register_user(q, argv, cl)
       return(MR_NOT_UNIQUE);
 
     /* check new login name */
-    EXEC SQL REPEATED SELECT login INTO :cdummy FROM users 
-      WHERE login = :login AND users_id != :users_id;
+    EXEC SQL REPEATED SELECT login INTO :cdummy FROM users
+      WHERE login = LEFT(:login,SIZE(login)) AND users_id != :users_id;
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2] > 0) return(MR_IN_USE);
     EXEC SQL REPEATED SELECT name INTO :cdummy FROM list
-      WHERE name = :login;
+      WHERE name = LEFT(:login,SIZE(name));
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2] > 0) return(MR_IN_USE);
     EXEC SQL REPEATED SELECT label INTO :cdummy FROM filesys
-      WHERE label = :login;
+      WHERE label = LEFT(:login,SIZE(label));
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2] > 0) return(MR_IN_USE);
     com_err(whoami, 0, "login name OK");
 
     /* choose place for pobox, put in mid */
-    EXEC SQL REPEATED SELECT sh.mach_id, m.name
-      INTO :mid, :machname FROM serverhosts sh, machine m
-      WHERE sh.service='POP'  AND sh.value2 - sh.value1 =
-       (SELECT MAX(value2 - value1) FROM serverhosts
-          WHERE service = 'POP');
-    if (ingres_errno) return(mr_errcode);
-    if (sqlca.sqlerrd[2] == 0)
-      return(MR_NO_POBOX);
+    EXEC SQL DECLARE csr130 CURSOR FOR
+      SELECT sh.mach_id, m.name FROM serverhosts sh, machine m
+      WHERE sh.service='POP' AND sh.mach_id=m.mach_id
+       AND sh.value2 - sh.value1 =
+         (SELECT MAX(value2 - value1) FROM serverhosts
+           WHERE service = 'POP');
+    EXEC SQL OPEN csr130;
+    EXEC SQL FETCH csr130 INTO :mid, :machname;
+    if (sqlca.sqlerrd[2] == 0) {
+       EXEC SQL CLOSE csr130;
+       if (ingres_errno) return(mr_errcode);
+       return(MR_NO_POBOX);
+    } else {
+       EXEC SQL CLOSE csr130;
+       if (ingres_errno) return(mr_errcode);
+    }
 
     /* change login name, set pobox */
     sprintf(buffer, "users.users_id = %d", users_id);
@@ -3100,7 +3225,7 @@ register_user(q, argv, cl)
       return(MR_NO_ID);
     if (set_next_object_id("list_id", "list", 0))
       return(MR_NO_ID);
-    EXEC SQL REPEATED SELECT value INTO :list_id FROM numvalues 
+    EXEC SQL REPEATED SELECT value INTO :list_id FROM numvalues
       WHERE name='list_id';
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2] != 1)
@@ -3109,7 +3234,7 @@ register_user(q, argv, cl)
     EXEC SQL SELECT value INTO :gidval FROM numvalues WHERE name = 'gid';
     EXEC SQL REPEATED INSERT INTO list
              (name, list_id, active, publicflg, hidden, maillist, grouplist,
-              gid, description, acl_type, acl_id, 
+              gid, description, acl_type, acl_id,
              modtime, modby, modwith)
       VALUES (:login, :list_id, 1, 0, 0, 0, 1,
              :gidval, 'User Group', 'USER', :users_id,
@@ -3117,13 +3242,13 @@ register_user(q, argv, cl)
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2] != 1)
       return(MR_INTERNAL);
-    sprintf(buffer, "l.list_id = %d", list_id);
+    sprintf(buffer, "list_id = %d", list_id);
     incremental_after("list", buffer, 0);
     aargv[0] = (char *) list_id;
     aargv[1] = "USER";
     aargv[2] = (char *) users_id;
     incremental_clear_before();
-    EXEC SQL REPEATED INSERT INTO imembers 
+    EXEC SQL REPEATED INSERT INTO imembers
              (list_id, member_type, member_id, ref_count, direct)
       VALUES (:list_id, 'USER', :users_id, 1, 1);
     if (ingres_errno) return(mr_errcode);
@@ -3131,82 +3256,63 @@ register_user(q, argv, cl)
       return(MR_INTERNAL);
     incremental_after("members", 0, aargv);
 
-    /* decide where to put filesystem */
-    maxsize = 0;
-    directory = NULL;
-    EXEC SQL DECLARE csr125 CURSOR FOR
-      SELECT mach_id, trim(nfsphys.dir), nfsphys_id, status, size, allocated
-       FROM nfsphys;
-    EXEC SQL OPEN csr125;
-    while(1) {
-       EXEC SQL FETCH csr125 INTO :mid, :dir, :nid, :flag, :size, :alloc;
-       if(sqlca.sqlcode != 0) break;
-       if ((flag & utype) && (size != 0) && (size - alloc > maxsize)) {
-           maxsize = size - alloc;
-           if (directory)
-             free(directory);
-           directory = strsave(dir);
-           pid = nid;
-           m_id = mid;
-       }
+    if (m_id == 0) {
+        /* Cell Name (I know, it shouldn't be hard coded...) */
+        strcpy(machname, "ATHENA.MIT.EDU");
+       EXEC SQL SELECT mach_id INTO :m_id FROM machine 
+         WHERE name = :machname;
     }
-    EXEC SQL CLOSE csr125;
-    if (ingres_errno) return(mr_errcode);
-    if (maxsize == 0)
-      return(MR_NO_FILESYS);
 
     /* create filesystem */
     if (set_next_object_id("filsys_id", "filesys", 0))
       return(MR_NO_ID);
-    incremental_clear_before();        
+    incremental_clear_before();
+    if (islower(login[0]) && islower(login[1])) {
+        sprintf(directory, "/afs/athena.mit.edu/user/%c/%c/%s",
+                login[0], login[1], login);
+    } else {
+        sprintf(directory, "/afs/athena.mit.edu/user/other/%s", login);
+    }
     EXEC SQL SELECT value INTO :fsidval FROM numvalues
       WHERE numvalues.name='filsys_id';
     EXEC SQL REPEATED INSERT INTO filesys
-        (filsys_id, phys_id, label, type, mach_id, name, 
-        mount, access, comments, owner, owners, createflg, 
+        (filsys_id, phys_id, label, type, mach_id, name,
+        mount, access, comments, owner, owners, createflg,
         lockertype, modtime, modby, modwith)
       VALUES
-       (:fsidval, :pid, :login, 'NFS', :m_id, :directory+'/'+:login,
+       (:fsidval, 0, :login, 'AFS', :m_id, :directory,
         '/mit/'+:login, 'w', 'User Locker', :users_id, :list_id, 1,
-        'HOMEDIR', 'now', :who, :entity)        ;
+        'HOMEDIR', 'now', :who, :entity);
+
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2]  != 1)
       return(MR_INTERNAL);
-    incremental_after("filesys", 
-        "fs.filsys_id = numvalues.value and numvalues.name = 'filsys_id'",
-                     0);
-    com_err(whoami, 0, "filesys on mach %d in %s/%s", m_id,
-           directory, login);
+    sprintf(buffer,"fs.filsys_id = %d",fsidval);
+    incremental_after("filesys", buffer, 0);
 
     /* set quota */
-    EXEC SQL REPEATED SELECT value INTO :quota FROM numvalues
-      WHERE name='def_quota';
-    if (ingres_errno) return(mr_errcode);
-    if (sqlca.sqlerrd[2] != 1)
-      return(MR_NO_QUOTA);
+    if (def_quota == 0) {
+       EXEC SQL REPEATED SELECT value INTO :quota FROM numvalues
+         WHERE name='def_quota';
+       if (ingres_errno) return(mr_errcode);
+       if (sqlca.sqlerrd[2] != 1)
+         return(MR_NO_QUOTA);
+    }
     incremental_clear_before();
-    EXEC SQL SELECT value INTO :fsidval FROM numvalues
-      WHERE numvalues.name = 'filsys_id';
-    EXEC SQL REPEATED INSERT INTO quota 
+    EXEC SQL REPEATED INSERT INTO quota
         (entity_id, filsys_id, type, quota, phys_id, modtime, modby, modwith)
       VALUES
-        (:users_id, :fsidval, 'USER', :quota, :pid, 'now', :who, :entity);
-    if (ingres_errno) return(mr_errcode);
-    if (sqlca.sqlerrd[2] != 1)
-      return(MR_INTERNAL);
-    EXEC SQL REPEATED UPDATE nfsphys SET allocated=allocated + :quota
-      WHERE nfsphys_id = filesys.phys_id 
-       AND filesys.filsys_id = numvalues.value
-       AND numvalues.name = 'filsys_id';
+        (0, :fsidval, 'ANY', :def_quota, 0, 'now', :who, :entity);
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2] != 1)
       return(MR_INTERNAL);
     aargv[0] = login;
-    aargv[1] = "USER";
+    aargv[1] = "ANY";
     aargv[2] = login;
-    sprintf(buffer, "q.entity_id = %d and q.filsys_id = numvalues.value and q.type = 'USER' and numvalues.name = 'filsys_id'", users_id);
+    sprintf(buffer, "q.entity_id = 0 and q.filsys_id = %d and q.type = 'ANY'", fsidval);
     incremental_after("quota", buffer, aargv);
-    com_err(whoami, 0, "quota of %d assigned", quota);
+    com_err(whoami, 0, "quota of %d assigned", def_quota);
     if (ingres_errno) return(mr_errcode);
 
     cache_entry(login, "USER", users_id);
@@ -3233,14 +3339,14 @@ register_user(q, argv, cl)
  **/
 
 static int set_pop_usage(id, cnt)
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     int id;
     int cnt;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 {
     EXEC SQL REPEATED UPDATE serverhosts SET value1 = value1 + :cnt
       WHERE serverhosts.service = 'POP' AND serverhosts.mach_id = :id;
-      
+
     if (ingres_errno) return(mr_errcode);
     return(MR_SUCCESS);
 }
@@ -3254,28 +3360,24 @@ validate_row(q, argv, v)
     char *argv[];
     register struct validate *v;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *name;
     char qual[128];
     int rowcount;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     /* build where clause */
     build_qual(v->qual, v->argc, argv, qual);
 
-#ifdef NEVER
-    /** I'm pretty sure we don't need this now */
-    /* setup ingres variables */
-    name = v->field;
-#endif
-
     if (log_flags & LOG_VALID)
        /* tell the logfile what we're doing */
        com_err(whoami, 0, "validating row: %s", qual);
-    
+
     /* look for the record */
     sprintf(stmt_buf,"SELECT COUNT (*) FROM %s WHERE %s",q->rtable,qual);
-    EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf; 
+    EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf;
+    if(sqlca.sqlcode)
+      return(MR_INTERNAL);
     EXEC SQL DECLARE csr126 CURSOR FOR stmt;
     EXEC SQL OPEN csr126;
     EXEC SQL FETCH csr126 USING DESCRIPTOR :SQLDA;
@@ -3300,14 +3402,14 @@ validate_fields(q, argv, vo, n)
        switch (vo->type) {
        case V_NAME:
            if (log_flags & LOG_VALID)
-               com_err(whoami, 0, "validating %s in %s: %s", 
+               com_err(whoami, 0, "validating %s in %s: %s",
                    vo->namefield, vo->table, argv[vo->index]);
            status = validate_name(argv, vo);
            break;
 
        case V_ID:
            if (log_flags & LOG_VALID)
-               com_err(whoami, 0, "validating %s in %s: %s", 
+               com_err(whoami, 0, "validating %s in %s: %s",
                    vo->idfield, vo->table, argv[vo->index]);
            status = validate_id(q, argv, vo);
            break;
@@ -3352,6 +3454,15 @@ validate_fields(q, argv, vo, n)
        case V_LOCK:
            status = lock_table(vo);
            break;
+
+       case V_WILD:
+           status = convert_wildcards(argv[vo->index]);
+           break;
+
+       case V_UPWILD:
+           status = convert_wildcards_uppercase(argv[vo->index]);
+           break;
+
        }
 
        if (status != MR_EXISTS) return(status);
@@ -3364,7 +3475,7 @@ validate_fields(q, argv, vo, n)
 
 
 /* validate_chars: verify that there are no illegal characters in
- * the string.  Legal characters are printing chars other than 
+ * the string.  Legal characters are printing chars other than
  * ", *, ?, \, [ and ].
  */
 static int illegalchars[] = {
@@ -3401,10 +3512,10 @@ validate_id(q, argv, vo)
     char *argv[];
     register struct valobj *vo;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *name, *tbl, *namefield, *idfield;
     int id, rowcount;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int status;
     register char *c;
 
@@ -3446,7 +3557,9 @@ validate_id(q, argv, vo)
     } else {
        sprintf(stmt_buf,"SELECT %s FROM %s WHERE %s = '%s'",idfield,tbl,namefield,name);
     }
-    EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf; 
+    EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf;
+    if(sqlca.sqlcode)
+      return(MR_INTERNAL);
     EXEC SQL DECLARE csr127 CURSOR FOR stmt;
     EXEC SQL OPEN csr127;
     rowcount=0;
@@ -3457,11 +3570,11 @@ validate_id(q, argv, vo)
        if(sqlca.sqlcode == 0) rowcount++;
     }
     EXEC SQL CLOSE csr127;
-    if (ingres_errno) 
+    if (ingres_errno)
       return(mr_errcode);
 
     if (rowcount != 1) return(vo->error);
-    *argv[vo->index] = *SQLDA->sqlvar[0].sqldata;
+    bcopy(SQLDA->sqlvar[0].sqldata,argv[vo->index],sizeof(int));
     return(MR_EXISTS);
 }
 
@@ -3469,10 +3582,10 @@ validate_name(argv, vo)
     char *argv[];
     register struct valobj *vo;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *name, *tbl, *namefield;
     int rowcount;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     register char *c;
 
     name = argv[vo->index];
@@ -3485,10 +3598,12 @@ validate_name(argv, vo)
     }
     sprintf(stmt_buf,"SELECT DISTINCT COUNT(*) FROM %s WHERE %s.%s = '%s'",
            tbl,tbl,namefield,name);
-    EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf; 
+    EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf;
+    if(sqlca.sqlcode)
+      return(MR_INTERNAL);
     EXEC SQL DECLARE csr128 CURSOR FOR stmt;
     EXEC SQL OPEN csr128;
-    EXEC SQL FETCH csr128 USING DESCRIPTOR :SQLDA; 
+    EXEC SQL FETCH csr128 USING DESCRIPTOR :SQLDA;
     rowcount = *(int *)SQLDA->sqlvar[0].sqldata;
     EXEC SQL CLOSE csr128;
 
@@ -3500,16 +3615,13 @@ validate_date(argv, vo)
     char *argv[];
     struct valobj *vo;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *idate;
     double dd;
     int errorno;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
 
     idate = argv[vo->index];
-/*
- *  retrieve (dd = interval("years", date(idate) - date("today")))
- */
     EXEC SQL SELECT interval('years',date(:idate)-date('today')) INTO :dd;
 
     if (sqlca.sqlcode != 0 || dd > 5.0) return(MR_DATE);
@@ -3521,10 +3633,10 @@ validate_rename(argv, vo)
 char *argv[];
 struct valobj *vo;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *name, *tbl, *namefield, *idfield;
     int id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int status;
     register char *c;
 
@@ -3542,18 +3654,17 @@ struct valobj *vo;
     if (idfield == 0) {
        if (!strcmp(argv[vo->index], argv[vo->index - 1]))
          return(MR_EXISTS);
-/*
- *     retrieve (id = any(table.namefield where table.namefield = name))
- */
-       sprintf(stmt_buf,"SELECT %s FROM %s WHERE %s.%s = '%s'",
-               namefield,tbl,tbl,namefield,name);
-       EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf; 
+       sprintf(stmt_buf,"SELECT %s FROM %s WHERE %s = LEFT('%s',SIZE(%s))",
+               namefield,tbl,namefield,name,namefield);
+       EXEC SQL PREPARE stmt INTO :SQLDA USING NAMES FROM :stmt_buf;
+       if(sqlca.sqlcode)
+         return(MR_INTERNAL);
         EXEC SQL DECLARE csr129 CURSOR FOR stmt;
        EXEC SQL OPEN csr129;
-        EXEC SQL FETCH csr129 USING DESCRIPTOR :SQLDA; 
+        EXEC SQL FETCH csr129 USING DESCRIPTOR :SQLDA;
        if(sqlca.sqlcode == 0) id=1; else id=0;
        EXEC SQL CLOSE csr129;
-       
+
        if (ingres_errno) return(mr_errcode);
        if (id)
          return(vo->error);
@@ -3572,10 +3683,10 @@ validate_type(argv, vo)
     char *argv[];
     register struct valobj *vo;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *typename;
     char *val;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     register char *c;
 
     typename = vo->table;
@@ -3601,12 +3712,12 @@ validate_typedata(q, argv, vo)
     register char *argv[];
     register struct valobj *vo;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *name;
     char *field_type;
     char data_type[129];
     int id;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int status;
     char *index();
     register char *c;
@@ -3618,7 +3729,7 @@ validate_typedata(q, argv, vo)
     field_type = argv[vo->index-1];
 
     /* get corresponding data type associated with field type name */
-    EXEC SQL SELECT trans INTO :data_type FROM alias 
+    EXEC SQL SELECT trans INTO :data_type FROM alias
       WHERE name = :field_type AND type='TYPEDATA';
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2] != 1) return(MR_TYPE);
@@ -3679,7 +3790,7 @@ validate_typedata(q, argv, vo)
 
     /* now set value in argv */
     *(int *)argv[vo->index] = id;
-    
+
     return (MR_EXISTS);
 }
 
@@ -3691,7 +3802,7 @@ struct valobj *vo;
 {
     sprintf(stmt_buf,"UPDATE %s SET modtime='now' WHERE %s.%s = 0",
            vo->table,vo->table,vo->idfield);
-    EXEC SQL EXECUTE IMMEDIATE :stmt_buf; 
+    EXEC SQL EXECUTE IMMEDIATE :stmt_buf;
     if (ingres_errno) return(mr_errcode);
     if (sqlca.sqlerrd[2] != 1)
       return(vo->error);
@@ -3740,23 +3851,13 @@ MR_SQLDA_T *mr_alloc_SQLDA()
 }
 
 
-/* Use mr_check_SQLDA before OPEN CURSOR or EXECUTE */
-mr_check_SQLDA(da)
-    MR_SQLDA_T *da;
-{
-    if(da->sqld > da->sqln) {
-       com_err(whoami, MR_INTERNAL,
-                "Internal arg count error preparing for dynamic query");
-        return(MR_INTERNAL);
-    }
-
-    return(MR_SUCCESS);
-}
-
-/* Use this after FETCH USING DESCRIPTOR one or more 
+/* Use this after FETCH USING DESCRIPTOR one or more
  * result columns may contain NULLs.  This routine is
  * not currently needed, since db/schema creates all
  * columns with a NOT NULL WITH DEFAULT clause.
+ *
+ * This is currently dead flesh, since no Moira columns
+ * allow null values; all use default values.
  */
 mr_fix_nulls_in_SQLDA(da)
     MR_SQLDA_T *da;
@@ -3777,7 +3878,7 @@ mr_fix_nulls_in_SQLDA(da)
                *intp=0;
            }
            break;
-       } 
+       }
     }
 }
 
@@ -3791,23 +3892,23 @@ mr_fix_nulls_in_SQLDA(da)
  *
  * Correct functioning of this routine may depend on the assumption
  * that this query is an APPEND.
- */ 
+ */
 
 prefetch_value(q,argv,cl)
     struct query *q;
     char **argv;
     client *cl;
 {
-    EXEC SQL BEGIN DECLARE SECTION; 
+    EXEC SQL BEGIN DECLARE SECTION;
     char *name = q->validate->object_id;
     int value;
-    EXEC SQL END DECLARE SECTION; 
+    EXEC SQL END DECLARE SECTION;
     int status, limit, argc;
 
     /* set next object id, limiting it if necessary */
-    if(!strcmp(name, "uid") || !strcmp(name, "gid"))  
+    if(!strcmp(name, "uid") || !strcmp(name, "gid"))
       limit = 1; /* So far as I know, this isn't needed.  Just CMA. */
-    else 
+    else
       limit = 0;
     if((status = set_next_object_id(name, q->rtable, limit)) != MR_SUCCESS)
       return(status);
@@ -3818,9 +3919,95 @@ prefetch_value(q,argv,cl)
     if(sqlca.sqlerrd[2] != 1) return(MR_INTERNAL);
 
     argc = q->argc + q->vcnt;   /* end of Argv for APPENDs */
-    sprintf(argv[argc],"%d",value);
+    sprintf(argv[argc],"%d",value);  /** Could save this step by changing tlist from %s to %d **/
+
+    return(MR_SUCCESS);
+}
+
+/* prefetch_filesys():
+ * Fetches the phys_id from filesys based on the filsys_id in argv[0].
+ * Appends the filsys_id and the phys_id to the argv so they can be
+ * referenced in an INSERT into a table other than filesys.  Also
+ * see comments at prefetch_value().
+ *
+ * Assumes the existence of a row where filsys_id = argv[0], since a
+ * filesys label has already been resolved to a filsys_id.
+ */
+prefetch_filesys(q,argv,cl)
+    struct query *q;
+    char **argv;
+    client *cl;
+{
+    EXEC SQL BEGIN DECLARE SECTION;
+    int fid,phid;
+    EXEC SQL END DECLARE SECTION;
+    int argc;
+
+    fid = *(int *)argv[0];
+    EXEC SQL SELECT phys_id INTO :phid FROM filesys WHERE filsys_id = :fid;
+    if(ingres_errno) return(mr_errcode);
+
+    argc=q->argc+q->vcnt;
+    sprintf(argv[argc++],"%d",fid);
+    sprintf(argv[argc],"%d",phid);
 
     return(MR_SUCCESS);
 }
 
+/* Convert normal Unix-style wildcards to SQL voodoo */
+convert_wildcards(arg)
+    char *arg;
+{
+    static char buffer[QMAXARGSIZE];
+    register char *s, *d;
+
+    for(d=buffer,s=arg;*s;s++) {
+       switch(*s) {
+         case '*': *d++='%'; *d++='%'; break;
+         case '?': *d++='_'; break;
+         case '_':
+         case '[':
+         case ']': *d++='*'; *d++ = *s; break;
+         case '%': *d++='*'; *d++='%'; *d++='%'; break;
+         default: *d++ = *s; break;
+       }
+    }
+    *d='\0';
+
+    /* Copy back into argv */
+    strcpy(arg,buffer);
+
+    return(MR_EXISTS);
+}
+
+/* This version includes uppercase conversion, for things like gmac.
+ * This is necessary because "LIKE" doesn't work with "uppercase()".
+ * Including it in a wildcard routine saves making two passes over
+ * the argument string.
+ */
+convert_wildcards_uppercase(arg)
+    char *arg;
+{
+    static char buffer[QMAXARGSIZE];
+    register char *s, *d;
+
+    for(d=buffer,s=arg;*s;s++) {
+       switch(*s) {
+         case '*': *d++='%'; *d++='%'; break;
+         case '?': *d++='_'; break;
+         case '_':
+         case '[':
+         case ']': *d++='*'; *d++ = *s; break;
+         case '%': *d++='*'; *d++='%'; *d++='%'; break;
+         default: *d++=toupper(*s); break;       /* This is the only diff. */
+       }
+    }
+    *d='\0';
+
+    /* Copy back into argv */
+    strcpy(arg,buffer);
+
+    return(MR_EXISTS);
+}
+
 /* eof:qsupport.dc */
This page took 0.154996 seconds and 4 git commands to generate.