aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fdso.c
blob: fb8a5bde3fd319d129569f9b79f569f5d915379a (plain) (blame)
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
#include <fcntl.h>
#include <unistd.h>

#include <stdio.h>


#include "tests.h"

#include "litmus.h"


TESTCASE(fmlp_not_active, C_EDF | PFAIR | LINUX,
	 "don't open FMLP semaphores if FMLP is not supported")
{
	int fd;

	SYSCALL( fd = open(".fmlp_locks", O_RDONLY | O_CREAT) );

	ASSERT(fd != -1);

	SYSCALL_FAILS(EBUSY, open_fmlp_sem(fd, 0) );

	SYSCALL( close(fd) );

	SYSCALL( remove(".fmlp_locks") );
}


TESTCASE(invalid_od, ALL,
	 "reject invalid object descriptors")
{
	SYSCALL_FAILS( EINVAL, fmlp_down(3) );

	SYSCALL_FAILS( EINVAL, fmlp_up(3) );

	SYSCALL_FAILS( EINVAL, od_close(3) );


	SYSCALL_FAILS( EINVAL, fmlp_down(-1) );

	SYSCALL_FAILS( EINVAL, fmlp_up(-1) );

	SYSCALL_FAILS( EINVAL, od_close(-1) );
}

TESTCASE(not_inherit_od, GSN_EDF | PSN_EDF,
	 "don't inherit FDSO handles across fork")
{
	int fd, od, pid, status;

	SYSCALL( fd = open(".fmlp_locks", O_RDONLY | O_CREAT) );

	SYSCALL( od = open_fmlp_sem(fd, 0) );

	SYSCALL( fmlp_down(od) );

	SYSCALL( fmlp_up(od) );

	pid = fork();

	ASSERT( pid != -1 );

	if (pid == 0) {
		/* child */
		SYSCALL_FAILS(EINVAL, fmlp_down(od) );
	        SYSCALL_FAILS(EINVAL, fmlp_up(od) );
		exit(0);
	} else {
		SYSCALL( fmlp_down(od) );
		SYSCALL( fmlp_up(od) );
		SYSCALL( waitpid(pid, &status, 0) );
		ASSERT(WEXITSTATUS(status) == 0);
	}

	SYSCALL( od_close(od) );

	SYSCALL( close(fd) );

	SYSCALL( remove(".fmlp_locks") );
}