version 1.5.20.4, 2017/10/08 22:31:25
|
version 1.5.20.7, 2018/01/01 23:52:54
|
Line 12 terms:
|
Line 12 terms:
|
All of the documentation and software included in the ELWIX and AITNET |
All of the documentation and software included in the ELWIX and AITNET |
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
|
|
Copyright 2004 - 2017 | Copyright 2004 - 2018 |
by Michael Pounov <misho@elwix.org>. All rights reserved. |
by Michael Pounov <misho@elwix.org>. All rights reserved. |
|
|
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
Line 48 SUCH DAMAGE.
|
Line 48 SUCH DAMAGE.
|
|
|
cfg_root_t cfg; |
cfg_root_t cfg; |
int Verbose, Timeout, kq; |
int Verbose, Timeout, kq; |
ait_val_t User, Mount, Dev, Chroot; | ait_val_t User, Mount, Chroot; |
char szSess[MAXPATHLEN], szSLCK[MAXPATHLEN], szConfig[MAXPATHLEN]; |
char szSess[MAXPATHLEN], szSLCK[MAXPATHLEN], szConfig[MAXPATHLEN]; |
extern char compiled[], compiledby[], compilehost[]; |
extern char compiled[], compiledby[], compilehost[]; |
|
|
Line 63 Usage()
|
Line 63 Usage()
|
"\t-v\t\tVerbose ...\n" |
"\t-v\t\tVerbose ...\n" |
"\t-c <dir>\tAfter execute chroot to dir [default=/]\n" |
"\t-c <dir>\tAfter execute chroot to dir [default=/]\n" |
"\t-u <user>\tAfter execute suid to user [default=root]\n" |
"\t-u <user>\tAfter execute suid to user [default=root]\n" |
"\t-d <dev>\tOther device [default=/dev/ufs/elwix]\n" |
|
"\t-m <mnt>\tOther mount dir [default=/]\n" |
"\t-m <mnt>\tOther mount dir [default=/]\n" |
"\t-t <sec>\tTimeout for autolock mount dir after seconds [default=300]\n" |
"\t-t <sec>\tTimeout for autolock mount dir after seconds [default=300]\n" |
"\t-L <reason>\tService lock and set RW state of device with reason\n" |
"\t-L <reason>\tService lock and set RW state of device with reason\n" |
Line 71 Usage()
|
Line 70 Usage()
|
"\n", compiled, compiledby, compilehost); |
"\n", compiled, compiledby, compilehost); |
} |
} |
|
|
|
struct statfs * |
|
getmntpt(const char *name) |
|
{ |
|
struct statfs *mntbuf; |
|
int i, mntsize; |
|
|
|
mntsize = getmntinfo(&mntbuf, MNT_NOWAIT); |
|
for (i = mntsize - 1; i >= 0; i--) { |
|
if (!strcmp(mntbuf[i].f_mntfromname, name) || |
|
!strcmp(mntbuf[i].f_mntonname, name)) |
|
return &mntbuf[i]; |
|
} |
|
|
|
return NULL; |
|
} |
|
|
static int |
static int |
update(int flags) |
update(int flags) |
{ |
{ |
struct ufs_args mnt; |
struct ufs_args mnt; |
|
struct statfs *mntfs = getmntpt(AIT_GET_STR(&Mount)); |
|
|
memset(&mnt, 0, sizeof mnt); |
memset(&mnt, 0, sizeof mnt); |
mnt.fspec = AIT_GET_STR(&Dev); | mnt.fspec = mntfs->f_mntfromname; |
#ifdef __NetBSD__ |
#ifdef __NetBSD__ |
if (mount("ufs", AIT_GET_STR(&Mount), flags, &mnt, sizeof mnt) == -1) { | if (mount(mntfs->f_fstypename, mntfs->f_mntonname, flags, &mnt, sizeof mnt) == -1) { |
#else |
#else |
if (mount("ufs", AIT_GET_STR(&Mount), flags, &mnt) == -1) { | if (mount(mntfs->f_fstypename, mntfs->f_mntonname, flags, &mnt) == -1) { |
#endif |
#endif |
printf("Error:: can`t update mount %s #%d - %s\n", AIT_GET_STR(&Mount), |
printf("Error:: can`t update mount %s #%d - %s\n", AIT_GET_STR(&Mount), |
errno, strerror(errno)); |
errno, strerror(errno)); |
return -1; |
return -1; |
} |
} |
|
|
VERB(5) printf("Info(5):: safe mount for device %s to %s operation (%s)\n", | VERB(5) printf("Info(5):: safe mount %s for device %s to %s operation (%s)\n", |
AIT_GET_STR(&Dev), AIT_GET_STR(&Mount), (flags & MNT_RDONLY) ? "ro" : "rw"); | mntfs->f_fstypename, mntfs->f_mntfromname, mntfs->f_mntonname, |
| (flags & MNT_RDONLY) ? "ro" : "rw"); |
return 0; |
return 0; |
} |
} |
|
|
Line 149 static void
|
Line 166 static void
|
cleanexit() |
cleanexit() |
{ |
{ |
AIT_FREE_VAL(&User); |
AIT_FREE_VAL(&User); |
AIT_FREE_VAL(&Dev); |
|
AIT_FREE_VAL(&Mount); |
AIT_FREE_VAL(&Mount); |
AIT_FREE_VAL(&Chroot); |
AIT_FREE_VAL(&Chroot); |
|
|
Line 160 static int
|
Line 176 static int
|
s_unlck() |
s_unlck() |
{ |
{ |
if (access(szSLCK, F_OK)) |
if (access(szSLCK, F_OK)) |
return 1; | return 2; |
|
|
if (access(szSess, F_OK) && update(MNT_UPDATE | MNT_RDONLY) == -1) |
if (access(szSess, F_OK) && update(MNT_UPDATE | MNT_RDONLY) == -1) |
return 8; |
return 8; |
Line 184 s_lck(const char *reason)
|
Line 200 s_lck(const char *reason)
|
f = open(szSLCK, O_CREAT | O_WRONLY | O_TRUNC, 0644); |
f = open(szSLCK, O_CREAT | O_WRONLY | O_TRUNC, 0644); |
if (f == -1) { |
if (f == -1) { |
printf("Error:: can`t service lock session #%d - %s\n", errno, strerror(errno)); |
printf("Error:: can`t service lock session #%d - %s\n", errno, strerror(errno)); |
return 5; | return 4; |
} else { |
} else { |
memset(szStr, 0, sizeof szStr); |
memset(szStr, 0, sizeof szStr); |
snprintf(szStr, sizeof szStr, "[%d] - %s", getpid(), reason); |
snprintf(szStr, sizeof szStr, "[%d] - %s", getpid(), reason); |
Line 194 s_lck(const char *reason)
|
Line 210 s_lck(const char *reason)
|
|
|
if (update(MNT_UPDATE) == -1) { |
if (update(MNT_UPDATE) == -1) { |
unlink(szSLCK); |
unlink(szSLCK); |
return 4; | return 5; |
} |
} |
|
|
VERB(3) printf("Lock & created service lock file %s\n", szSLCK); |
VERB(3) printf("Lock & created service lock file %s\n", szSLCK); |
Line 229 main(int argc, char **argv)
|
Line 245 main(int argc, char **argv)
|
} |
} |
cfg_loadAttribute(&cfg, "cfexec", "suid", &User, DEFAULT_USER); |
cfg_loadAttribute(&cfg, "cfexec", "suid", &User, DEFAULT_USER); |
cfg_loadAttribute(&cfg, "cfexec", "mount", &Mount, DEFAULT_MOUNT); |
cfg_loadAttribute(&cfg, "cfexec", "mount", &Mount, DEFAULT_MOUNT); |
cfg_loadAttribute(&cfg, "cfexec", "device", &Dev, DEFAULT_DEVICE); |
|
cfg_loadAttribute(&cfg, "cfexec", "chroot", &Chroot, DEFAULT_CHROOT); |
cfg_loadAttribute(&cfg, "cfexec", "chroot", &Chroot, DEFAULT_CHROOT); |
|
|
cfgUnloadConfig(&cfg); |
cfgUnloadConfig(&cfg); |
Line 237 main(int argc, char **argv)
|
Line 252 main(int argc, char **argv)
|
Timeout = atoi(DEFAULT_TIMEOUT); |
Timeout = atoi(DEFAULT_TIMEOUT); |
AIT_SET_STR(&User, DEFAULT_USER); |
AIT_SET_STR(&User, DEFAULT_USER); |
AIT_SET_STR(&Mount, DEFAULT_MOUNT); |
AIT_SET_STR(&Mount, DEFAULT_MOUNT); |
AIT_SET_STR(&Dev, DEFAULT_DEVICE); |
|
AIT_SET_STR(&Chroot, DEFAULT_CHROOT); |
AIT_SET_STR(&Chroot, DEFAULT_CHROOT); |
} |
} |
|
|
atexit(cleanexit); |
atexit(cleanexit); |
|
|
/* Load variables from arguments if exists */ |
/* Load variables from arguments if exists */ |
while ((ch = getopt(argc, argv, "hvUu:c:d:m:t:L:")) != -1) | while ((ch = getopt(argc, argv, "hvUu:c:m:t:L:")) != -1) |
switch (ch) { |
switch (ch) { |
case 'v': |
case 'v': |
Verbose++; |
Verbose++; |
Line 255 main(int argc, char **argv)
|
Line 269 main(int argc, char **argv)
|
case 'c': |
case 'c': |
AIT_SET_STR(&Chroot, optarg); |
AIT_SET_STR(&Chroot, optarg); |
break; |
break; |
case 'd': |
|
AIT_SET_STR(&Dev, optarg); |
|
break; |
|
case 'm': |
case 'm': |
AIT_SET_STR(&Mount, optarg); |
AIT_SET_STR(&Mount, optarg); |
break; |
break; |
Line 303 main(int argc, char **argv)
|
Line 314 main(int argc, char **argv)
|
return ret; |
return ret; |
} |
} |
|
|
VERB(3) printf("Info(3):: Chroot=%s SUID=%s Device=%s Mount=%s Timeout=%d Session=%s\n", | VERB(3) printf("Info(3):: Chroot=%s SUID=%s Mount=%s Timeout=%d Session=%s\n", |
AIT_GET_STR(&Chroot), AIT_GET_STR(&User), AIT_GET_STR(&Dev), | AIT_GET_STR(&Chroot), AIT_GET_STR(&User), |
AIT_GET_STR(&Mount), Timeout, szSess); |
AIT_GET_STR(&Mount), Timeout, szSess); |
|
|
if (!access(szSess, F_OK)) { |
if (!access(szSess, F_OK)) { |
Line 325 main(int argc, char **argv)
|
Line 336 main(int argc, char **argv)
|
if ((f = mkevent(&chg, &evt)) == -1) |
if ((f = mkevent(&chg, &evt)) == -1) |
return 4; |
return 4; |
|
|
if (update(MNT_UPDATE) == -1) | if (update(MNT_UPDATE) == -1) { |
return 5; | stat = 5; |
| goto skip; |
| } |
|
|
if (Timeout) { |
if (Timeout) { |
memset(&ts, 0, sizeof ts); |
memset(&ts, 0, sizeof ts); |
Line 349 main(int argc, char **argv)
|
Line 362 main(int argc, char **argv)
|
if (access(szSLCK, F_OK) && update(MNT_UPDATE | MNT_RDONLY) == -1) |
if (access(szSLCK, F_OK) && update(MNT_UPDATE | MNT_RDONLY) == -1) |
stat = 8; |
stat = 8; |
} |
} |
| skip: |
close(kq); |
close(kq); |
close(f); |
close(f); |
unlink(szSess); |
unlink(szSess); |
Line 368 main(int argc, char **argv)
|
Line 381 main(int argc, char **argv)
|
else |
else |
close(f); |
close(f); |
|
|
if (update(MNT_UPDATE) == -1) | if (update(MNT_UPDATE) == -1) { |
| unlink(szSess); |
return 5; |
return 5; |
|
} |
|
|
switch ((pid = vfork())) { |
switch ((pid = vfork())) { |
case -1: |
case -1: |