You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
4.0 KiB
149 lines
4.0 KiB
#include "buffer.h"
|
|
#include "strerr.h"
|
|
#include "error.h"
|
|
#include "open.h"
|
|
#include "readwrite.h"
|
|
#include "exit.h"
|
|
|
|
extern void hier();
|
|
|
|
#define FATAL "install: fatal: "
|
|
|
|
int fdsourcedir = -1;
|
|
|
|
void h(home,uid,gid,mode)
|
|
char *home;
|
|
int uid;
|
|
int gid;
|
|
int mode;
|
|
{
|
|
if (mkdir(home,0700) == -1)
|
|
if (errno != error_exist)
|
|
strerr_die4sys(111,FATAL,"unable to mkdir ",home,": ");
|
|
if (chown(home,uid,gid) == -1)
|
|
strerr_die4sys(111,FATAL,"unable to chown ",home,": ");
|
|
if (chmod(home,mode) == -1)
|
|
strerr_die4sys(111,FATAL,"unable to chmod ",home,": ");
|
|
}
|
|
|
|
void d(home,subdir,uid,gid,mode)
|
|
char *home;
|
|
char *subdir;
|
|
int uid;
|
|
int gid;
|
|
int mode;
|
|
{
|
|
if (chdir(home) == -1)
|
|
strerr_die4sys(111,FATAL,"unable to switch to ",home,": ");
|
|
if (mkdir(subdir,0700) == -1)
|
|
if (errno != error_exist)
|
|
strerr_die6sys(111,FATAL,"unable to mkdir ",home,"/",subdir,": ");
|
|
if (chown(subdir,uid,gid) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to chown ",home,"/",subdir,": ");
|
|
if (chmod(subdir,mode) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to chmod ",home,"/",subdir,": ");
|
|
}
|
|
|
|
char inbuf[BUFFER_INSIZE];
|
|
char outbuf[BUFFER_OUTSIZE];
|
|
buffer ssin;
|
|
buffer ssout;
|
|
|
|
void c(home,subdir,file,uid,gid,mode)
|
|
char *home;
|
|
char *subdir;
|
|
char *file;
|
|
int uid;
|
|
int gid;
|
|
int mode;
|
|
{
|
|
int fdin;
|
|
int fdout;
|
|
|
|
if (fchdir(fdsourcedir) == -1)
|
|
strerr_die2sys(111,FATAL,"unable to switch back to source directory: ");
|
|
|
|
fdin = open_read(file);
|
|
if (fdin == -1)
|
|
strerr_die4sys(111,FATAL,"unable to read ",file,": ");
|
|
buffer_init(&ssin,read,fdin,inbuf,sizeof inbuf);
|
|
|
|
if (chdir(home) == -1)
|
|
strerr_die4sys(111,FATAL,"unable to switch to ",home,": ");
|
|
if (chdir(subdir) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to switch to ",home,"/",subdir,": ");
|
|
|
|
fdout = open_trunc(file);
|
|
if (fdout == -1)
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
buffer_init(&ssout,write,fdout,outbuf,sizeof outbuf);
|
|
|
|
switch(buffer_copy(&ssout,&ssin)) {
|
|
case -2:
|
|
strerr_die4sys(111,FATAL,"unable to read ",file,": ");
|
|
case -3:
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
}
|
|
|
|
close(fdin);
|
|
if (buffer_flush(&ssout) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
if (fsync(fdout) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
if (close(fdout) == -1) /* NFS silliness */
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
|
|
if (chown(file,uid,gid) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to chown .../",subdir,"/",file,": ");
|
|
if (chmod(file,mode) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to chmod .../",subdir,"/",file,": ");
|
|
}
|
|
|
|
void z(home,subdir,file,len,uid,gid,mode)
|
|
char *home;
|
|
char *subdir;
|
|
char *file;
|
|
int len;
|
|
int uid;
|
|
int gid;
|
|
int mode;
|
|
{
|
|
int fdout;
|
|
|
|
if (chdir(home) == -1)
|
|
strerr_die4sys(111,FATAL,"unable to switch to ",home,": ");
|
|
if (chdir(subdir) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to switch to ",home,"/",subdir,": ");
|
|
|
|
fdout = open_trunc(file);
|
|
if (fdout == -1)
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
buffer_init(&ssout,write,fdout,outbuf,sizeof outbuf);
|
|
|
|
while (len-- > 0)
|
|
if (buffer_put(&ssout,"",1) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
|
|
if (buffer_flush(&ssout) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
if (fsync(fdout) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
if (close(fdout) == -1) /* NFS silliness */
|
|
strerr_die6sys(111,FATAL,"unable to write .../",subdir,"/",file,": ");
|
|
|
|
if (chown(file,uid,gid) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to chown .../",subdir,"/",file,": ");
|
|
if (chmod(file,mode) == -1)
|
|
strerr_die6sys(111,FATAL,"unable to chmod .../",subdir,"/",file,": ");
|
|
}
|
|
|
|
int32_t main()
|
|
{
|
|
fdsourcedir = open_read(".");
|
|
if (fdsourcedir == -1)
|
|
strerr_die2sys(111,FATAL,"unable to open current directory: ");
|
|
|
|
umask(077);
|
|
hier();
|
|
_exit(0);
|
|
}
|
|
|