blob: 730cca92e426cdc503ae547e181048be3326295f (
plain)
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
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
void usage (void)
{
printf ("Usage: testlock <filepath> [R|W]\n");
return;
}
int main (int argc, char *argv[])
{
char *file_path = NULL;
int fd = -1;
struct flock lock = {0};
int ret = -1;
int c = 0;
if (argc != 3) {
usage ();
exit (1);
}
file_path = argv[1];
fd = open (file_path, O_RDWR);
if (-1 == fd) {
printf ("Failed to open file %s. %m\n", file_path);
exit (1);
}
/* TODO: Check for invalid input*/
if (!strcmp (argv[2], "W")) {
lock.l_type = F_WRLCK;
printf("Taking write lock\n");
} else {
lock.l_type = F_RDLCK;
printf("Taking read lock\n");
}
lock.l_whence = SEEK_SET;
lock.l_start = 0;
lock.l_len = 0;
lock.l_pid = getpid ();
printf ("Acquiring lock on %s\n", file_path);
ret = fcntl (fd, F_SETLK, &lock);
if (ret) {
printf ("Failed to acquire lock on %s (%m)\n", file_path);
close (fd);
exit (1);
}
sleep(10);
/*Unlock*/
printf ("Releasing lock on %s\n", file_path);
lock.l_type = F_UNLCK;
ret = fcntl (fd, F_SETLK, &lock);
if (ret) {
printf ("Failed to release lock on %s (%m)\n", file_path);
}
close (fd);
return ret;
}
|