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
|
#include <assert.h>
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <utime.h>
#include <sys/stat.h>
void setup() {
mkdir("writeable", 0777);
mkdir("unwriteable", 0111);
}
void cleanup() {
rmdir("writeable");
rmdir("unwriteable");
}
void test() {
struct stat s;
// currently, the most recent timestamp is shared for atime,
// ctime and mtime. using unique values for each in the test
// will fail
struct utimbuf t = {1000000000, 1000000000};
utime("writeable", &t);
assert(!errno);
memset(&s, 0, sizeof s);
stat("writeable", &s);
assert(s.st_atime == t.actime);
assert(s.st_mtime == t.modtime);
// write permissions aren't checked when setting node
// attributes unless the user uid isn't the owner (so
// therefor, this should work fine)
utime("unwriteable", &t);
assert(!errno);
memset(&s, 0, sizeof s);
stat("unwriteable", &s);
assert(s.st_atime == t.actime);
assert(s.st_mtime == t.modtime);
puts("success");
}
int main() {
atexit(cleanup);
signal(SIGABRT, cleanup);
setup();
test();
return EXIT_SUCCESS;
}
|