1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
#include <sys/types.h>
#include <sys/stat.h>
#include "substdio.h"
#include "stralloc.h"
#include "getln.h"
#include "readwrite.h"
#include "exit.h"
#include "error.h"
#include "strerr.h"
#include "byte.h"
stralloc target = {0};
char *to;
#define WARNING "instcheck: warning: "
#define FATAL "instcheck: fatal: "
void nomem() { strerr_die2x(111,FATAL,"out of memory"); }
void doit(line)
stralloc *line;
{
struct stat st;
char *x;
unsigned int xlen;
unsigned int i;
char *type;
char *uidstr;
char *gidstr;
char *modestr;
char *mid;
char *name;
unsigned long uid;
unsigned long gid;
unsigned long mode;
int ftype;
x = line->s; xlen = line->len;
type = x;
i = byte_chr(x,xlen,':'); if (i == xlen) return;
x[i++] = 0; x += i; xlen -= i;
uidstr = x;
i = byte_chr(x,xlen,':'); if (i == xlen) return;
x[i++] = 0; x += i; xlen -= i;
gidstr = x;
i = byte_chr(x,xlen,':'); if (i == xlen) return;
x[i++] = 0; x += i; xlen -= i;
modestr = x;
i = byte_chr(x,xlen,':'); if (i == xlen) return;
x[i++] = 0; x += i; xlen -= i;
mid = x;
i = byte_chr(x,xlen,':'); if (i == xlen) return;
x[i++] = 0; x += i; xlen -= i;
name = x;
i = byte_chr(x,xlen,':'); if (i == xlen) return;
x[i++] = 0; x += i; xlen -= i;
if (!stralloc_copys(&target,to)) nomem();
if (!stralloc_cats(&target,mid)) nomem();
if (!stralloc_cats(&target,name)) nomem();
if (!stralloc_0(&target)) nomem();
uid = -1; if (*uidstr) scan_ulong(uidstr,&uid);
gid = -1; if (*gidstr) scan_ulong(gidstr,&gid);
scan_8long(modestr,&mode);
switch(*type) {
case 'd': ftype = S_IFDIR; break;
case 'c': ftype = S_IFREG; break;
case 'z': ftype = S_IFREG; break;
case 'p': ftype = S_IFIFO; break;
default: return;
}
if (stat(target.s,&st) == -1) {
if (errno == error_noent)
strerr_warn3(WARNING,target.s," does not exist",0);
else
strerr_warn4(WARNING,"unable to stat ",target.s,": ",&strerr_sys);
return;
}
if ((uid != -1) && (st.st_uid != uid))
strerr_warn3(WARNING,target.s," has wrong owner",0);
if ((gid != -1) && (st.st_gid != gid))
strerr_warn3(WARNING,target.s," has wrong group",0);
if ((st.st_mode & 07777) != mode)
strerr_warn3(WARNING,target.s," has wrong permissions",0);
if ((st.st_mode & S_IFMT) != ftype)
strerr_warn3(WARNING,target.s," has wrong type",0);
}
char buf[256];
substdio in = SUBSTDIO_FDBUF(read,0,buf,sizeof(buf));
stralloc line = {0};
void main(argc,argv)
int argc;
char **argv;
{
int match;
umask(077);
to = argv[1];
if (!to) strerr_die2x(100,FATAL,"instcheck: usage: instcheck dir");
for (;;) {
if (getln(&in,&line,&match,'\n') == -1)
strerr_die2sys(111,FATAL,"unable to read input: ");
doit(&line);
if (!match)
_exit(0);
}
}
|