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
|
/* $OpenBSD: tcfsflag.c,v 1.9 2000/06/20 08:28:02 fgsch Exp $ */
/*
* Transparent Cryptographic File System (TCFS) for NetBSD
* Author and mantainer: Luigi Catuogno [luicat@tcfs.unisa.it]
*
* references: http://tcfs.dia.unisa.it
* tcfs-bsd@tcfs.unisa.it
*/
/*
* Base utility set v0.1
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/wait.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <pwd.h>
#include <stdio.h>
#include <unistd.h>
#include <miscfs/tcfs/tcfs.h>
#include <miscfs/tcfs/tcfs_fileinfo.h>
#include "tcfsdefines.h"
tcfs_flags tcfs_getflags(int);
tcfs_flags tcfs_setflags(int, tcfs_flags);
int
flags_main(int argc, char *argv[])
{
int fd, flag;
tcfs_flags i;
char cmd;
seteuid(getuid());
setuid(getuid());
if (argc < 3) {
fprintf(stderr, "tcfsflags [op]{r,x,g} file\n"
"\t op can either be + or -.\n\n");
exit(1);
}
fd = open(argv[2], O_RDONLY);
if (!fd) {
fprintf(stderr, "open failed\n");
exit(1);
}
i = tcfs_getflags(fd);
if (i.flag == -1) {
fprintf(stderr, "getflags error\n");
close(fd);
exit(1);
}
if (argv[1][0] == '-' || argv[1][0] == '+') {
cmd = argv[1][1];
flag = argv[1][0] == '+' ? 1 : 0;
} else {
flag = -1;
cmd = argv[1][0];
}
switch(cmd) {
case 'r':
printf("%s x:%d g:%d\n", argv[2], FI_CFLAG(&i), FI_GSHAR(&i));
exit(0);
case 'x':
if (flag == -1)
flag = ~(FI_CFLAG(&i));;
FI_SET_CF(&i, flag);
break;
case 'g':
if (flag == -1)
flag = ~(FI_GSHAR(&i));
FI_SET_GS(&i, flag);
break;
default:
fprintf(stderr, "%s: unknown option: %c\n", argv[0], cmd);
exit(1);
}
i = tcfs_setflags(fd, i);
if (i.flag == -1) {
fprintf(stderr, "setflags error\n");
exit(1);
}
close(fd);
exit(0);
}
|