]> andersk Git - moira.git/blobdiff - afssync/pt_util.c
Add containers table and mcntmp table.
[moira.git] / afssync / pt_util.c
index 99d8519c64d034a3f3e1da9c46303a2d89a9c1a3..83dc07311c4822ca74eb71d32e3f0839c6f829a5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *
- * ptdump: Program to dump the AFS protection server database
+ * pt_util: Program to dump the AFS protection server database
  *         into an ascii file.
  *
  *     Assumptions: We *cheat* here and read the datafile directly, ie.
@@ -13,7 +13,7 @@
 #include <sys/time.h>
 #include <stdio.h>
 #include <ctype.h>
-#include <strings.h>
+#include <string.h>
 #include <sys/file.h>
 
 #include <afs/param.h>
@@ -28,8 +28,8 @@
 #include "pterror.h"
 
 #define IDHash(x) (abs(x) % HASHSIZE)
-#define print_id(x) ( ((flags&DO_SYS)==0 && (abs(x)>32767)) || \
-                     ((flags&DO_OTR)==0 && (abs(x)<32768)))
+#define print_id(x) ( ((flags&DO_SYS)==0 && (x<-32767 || x>97536)) || \
+                     ((flags&DO_OTR)==0 && (x>-32768 && x<97537)))
 
 extern char *optarg;
 extern int optind;
@@ -132,7 +132,7 @@ char **argv;
            break;
        default:
            fprintf(stderr,
-                   "Usage: ptdump [options] [-d data] [-p prdb]\n");
+                   "Usage: pt_util [options] [-d data] [-p prdb]\n");
            fputs("  Options:\n", stderr);
            fputs("    -w  Update prdb with contents of data file\n", stderr);
            fputs("    -u  Display users\n", stderr);
@@ -145,19 +145,19 @@ char **argv;
        }
     }
     if ((dbase_fd = open(pfile, wflag ? O_RDWR : O_RDONLY, 0600)) < 0) {
-       fprintf(stderr, "ptdump: cannot open %s: %s\n",
+       fprintf(stderr, "pt_util: cannot open %s: %s\n",
                pfile, sys_errlist[errno]);
        exit (1);
     }
     if (read(dbase_fd, buffer, HDRSIZE) < 0) {
-       fprintf(stderr, "ptdump: error reading %s: %s\n",
+       fprintf(stderr, "pt_util: error reading %s: %s\n",
                pfile, sys_errlist[errno]);
        exit (1);
     }
 
     if (dfile) {
        if ((dfp = fopen(dfile, wflag ? "r" : "w")) == 0) {
-           fprintf(stderr, "ptdump: error opening %s: %s\n",
+           fprintf(stderr, "pt_util: error opening %s: %s\n",
                    dfile, sys_errlist[errno]);
            exit(1);
        }
@@ -166,13 +166,23 @@ char **argv;
 
     uh = (struct ubik_hdr *)buffer;
     if (ntohl(uh->magic) != UBIK_MAGIC)
-       fprintf(stderr, "ptdump: %s: Bad UBIK_MAGIC. Is %x should be %x\n",
+       fprintf(stderr, "pt_util: %s: Bad UBIK_MAGIC. Is %x should be %x\n",
                pfile, ntohl(uh->magic), UBIK_MAGIC);
-    bcopy(&uh->version, &uv, sizeof(struct ubik_version));
+    memcpy(&uv, &uh->version, sizeof(struct ubik_version));
+    if (wflag && uv.epoch==0 && uv.counter==0) {
+       uv.epoch=2; /* a ubik version of 0 or 1 has special meaning */
+       memcpy(&uh->version, &uv, sizeof(struct ubik_version));
+       lseek(dbase_fd, 0, SEEK_SET);
+       if (write(dbase_fd, buffer, HDRSIZE) < 0) {
+           fprintf(stderr, "pt_util: error writing ubik version to %s: %s\n",
+                   pfile, sys_errlist[errno]);
+           exit (1);
+       }
+    }
     fprintf(stderr, "Ubik Version is: %d.%d\n",
            uv.epoch, uv.counter);
     if (read(dbase_fd, &prh, sizeof(struct prheader)) < 0) {
-       fprintf(stderr, "ptdump: error reading %s: %s\n",
+       fprintf(stderr, "pt_util: error reading %s: %s\n",
                pfile, sys_errlist[errno]);
        exit (1);
     }
@@ -189,8 +199,7 @@ char **argv;
 
            if (isspace(*buffer)) {
                sscanf(buffer, "%s %d", mem, &uid);
-#if 0
-               /* CROSS-CELL SUPPORT - NYI */
+
                for (u=usr_head; u; u=u->next)
                    if (u->uid && u->uid==uid) break;
                if (u) {
@@ -198,15 +207,23 @@ char **argv;
                    u->uid = 0;
                    if (FindByID(0, uid))
                        code = PRIDEXIST;
-                   else
+                   else {
+                       if (!code && (flags&(PRGRP|PRQUOTA))==(PRGRP|PRQUOTA)){
+                           gentry.ngroups++;
+                           code = pr_WriteEntry(0,0,gpos,&gentry);
+                           if (code)
+                               fprintf(stderr, "Error setting group count on %s: %s\n",
+                                       name, error_message(code));
+                       }
                        code = CreateEntry
                            (0, u->name, &uid, 1/*idflag*/, 1/*gflag*/,
                             SYSADMINID/*oid*/, SYSADMINID/*cid*/);
+                   }
                    if (code)
                        fprintf(stderr, "Error while creating %s: %s\n",
                                u->name, error_message(code));
+                   continue;
                }
-#endif
                /* Add user to group */
                if (id==ANYUSERID || id==AUTHUSERID || uid==ANONYMOUSID) {
                    code = PRPERM;
@@ -230,7 +247,6 @@ char **argv;
                else
                    code = CreateEntry(0, name, &id, 1/*idflag*/,
                                       flags&PRGRP, oid, cid);
-#if 0
                if (code == PRBADNAM) {
                    u = (struct usr_list *)malloc(sizeof(struct usr_list));
                    u->next = usr_head;
@@ -238,7 +254,6 @@ char **argv;
                    strcpy(u->name, name);
                    usr_head = u;
                } else
-#endif
                if (code) {
                    fprintf(stderr, "Error while creating %s: %s\n",
                            name, error_message(code));
@@ -248,8 +263,7 @@ char **argv;
                    code = pr_ReadEntry(0,0,gpos,&gentry);
                    if (!code) {
                        gentry.flags = flags;
-                       if ((flags&(PRGRP|PRQUOTA))==(PRGRP|PRQUOTA))
-                           gentry.ngroups = quota + gentry.count;
+                       gentry.ngroups = quota;
                        code = pr_WriteEntry(0,0,gpos,&gentry);
                    }
                    if (code)
@@ -258,12 +272,10 @@ char **argv;
                }
            }
        }
-#if 0
        for (u=usr_head; u; u=u->next)
            if (u->uid)
                fprintf(stderr, "Error while creating %s: %s\n",
                        u->name, error_message(PRBADNAM));
-#endif
     } else {
        for (i = 0; i < HASHSIZE; i++) {
            upos = nflag ? ntohl(prh.nameHash[i]) : ntohl(prh.idHash[i]);
@@ -276,14 +288,14 @@ char **argv;
 
     lseek (dbase_fd, 0, L_SET);                /* rewind to beginning of file */
     if (read(dbase_fd, buffer, HDRSIZE) < 0) {
-       fprintf(stderr, "ptdump: error reading %s: %s\n",
+       fprintf(stderr, "pt_util: error reading %s: %s\n",
                pfile, sys_errlist[errno]);
        exit (1);
     }
     uh = (struct ubik_hdr *)buffer;
     if ((uh->version.epoch != uv.epoch) ||
        (uh->version.counter != uv.counter)) {
-       fprintf(stderr, "ptdump: Ubik Version number changed during execution.\n");
+       fprintf(stderr, "pt_util: Ubik Version number changed during execution.\n");
        fprintf(stderr, "Old Version = %d.%d, new version = %d.%d\n",
                uv.epoch, uv.counter, uh->version.epoch,
                uh->version.counter);
@@ -361,7 +373,7 @@ void display_group(id)
     while (offset) {
        lseek(dbase_fd, offset+HDRSIZE, L_SET);
        if (read(dbase_fd, &pre, sizeof(struct prentry)) < 0) {
-           fprintf(stderr, "ptdump: read i/o error: %s\n",
+           fprintf(stderr, "pt_util: read i/o error: %s\n",
                    strerror(errno));
            exit (1);
        }
@@ -463,7 +475,7 @@ int id;
     while (offset) {
        lseek(dbase_fd, offset+HDRSIZE, L_SET);
        if (read(dbase_fd, &pre, sizeof(struct prentry)) < 0) {
-           fprintf(stderr, "ptdump: read i/o error: %s\n",
+           fprintf(stderr, "pt_util: read i/o error: %s\n",
                    sys_errlist[errno]);
            exit (1);
        }
@@ -493,7 +505,7 @@ struct prentry *pre;
     }
     he = (struct hash_entry *)malloc(sizeof(struct hash_entry));
     if (he == 0) {
-       fprintf(stderr, "ptdump: No Memory for internal hash table.\n");
+       fprintf(stderr, "pt_util: No Memory for internal hash table.\n");
        exit (1);
     }
     he->h_id = id;
This page took 2.781764 seconds and 4 git commands to generate.