xref: /freebsd/tests/sys/audit/open.c (revision b3e7694832e81d7a904a10f525f8797b753bf0d3)
1c41bbc0aSAlan Somers /*-
2c41bbc0aSAlan Somers  * Copyright (c) 2018 Aniket Pandey
3c41bbc0aSAlan Somers  *
4c41bbc0aSAlan Somers  * Redistribution and use in source and binary forms, with or without
5c41bbc0aSAlan Somers  * modification, are permitted provided that the following conditions
6c41bbc0aSAlan Somers  * are met:
7c41bbc0aSAlan Somers  * 1. Redistributions of source code must retain the above copyright
8c41bbc0aSAlan Somers  *    notice, this list of conditions and the following disclaimer.
9c41bbc0aSAlan Somers  * 2. Redistributions in binary form must reproduce the above copyright
10c41bbc0aSAlan Somers  *    notice, this list of conditions and the following disclaimer in the
11c41bbc0aSAlan Somers  *    documentation and/or other materials provided with the distribution.
12c41bbc0aSAlan Somers  *
13c41bbc0aSAlan Somers  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14c41bbc0aSAlan Somers  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15c41bbc0aSAlan Somers  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16c41bbc0aSAlan Somers  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17c41bbc0aSAlan Somers  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18c41bbc0aSAlan Somers  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19c41bbc0aSAlan Somers  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
20c41bbc0aSAlan Somers  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21c41bbc0aSAlan Somers  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22c41bbc0aSAlan Somers  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23c41bbc0aSAlan Somers  * SUCH DAMAGE.
24c41bbc0aSAlan Somers  */
25c41bbc0aSAlan Somers 
26c41bbc0aSAlan Somers /*
27c41bbc0aSAlan Somers  * Note: open(2) and openat(2) have 12 events each for various values of 'flag'
28c41bbc0aSAlan Somers  * Please see: contrib/openbsm/etc/audit_event#L261
29c41bbc0aSAlan Somers  *
30c41bbc0aSAlan Somers  * 270:AUE_OPENAT_R:openat(2) - read:fr
31c41bbc0aSAlan Somers  * 271:AUE_OPENAT_RC:openat(2) - read,creat:fc,fr,fa,fm
32c41bbc0aSAlan Somers  * 272:AUE_OPENAT_RT:openat(2) - read,trunc:fd,fr,fa,fm
33c41bbc0aSAlan Somers  * 273:AUE_OPENAT_RTC:openat(2) - read,creat,trunc:fc,fd,fr,fa,fm
34c41bbc0aSAlan Somers  * 274:AUE_OPENAT_W:openat(2) - write:fw
35c41bbc0aSAlan Somers  * 275:AUE_OPENAT_WC:openat(2) - write,creat:fc,fw,fa,fm
36c41bbc0aSAlan Somers  * 276:AUE_OPENAT_WT:openat(2) - write,trunc:fd,fw,fa,fm
37c41bbc0aSAlan Somers  * 277:AUE_OPENAT_WTC:openat(2) - write,creat,trunc:fc,fd,fw,fa,fm
38c41bbc0aSAlan Somers  * 278:AUE_OPENAT_RW:openat(2) - read,write:fr,fw
39c41bbc0aSAlan Somers  * 279:AUE_OPENAT_RWC:openat(2) - read,write,create:fc,fw,fr,fa,fm
40c41bbc0aSAlan Somers  * 280:AUE_OPENAT_RWT:openat(2) - read,write,trunc:fd,fw,fr,fa,fm
41c41bbc0aSAlan Somers  * 281:AUE_OPENAT_RWTC:openat(2) - read,write,creat,trunc:fc,fd,fw,fr,fa,fm
42c41bbc0aSAlan Somers  */
43c41bbc0aSAlan Somers 
44c41bbc0aSAlan Somers #include <sys/syscall.h>
45c41bbc0aSAlan Somers 
46c41bbc0aSAlan Somers #include <atf-c.h>
47c41bbc0aSAlan Somers #include <fcntl.h>
48c41bbc0aSAlan Somers 
49c41bbc0aSAlan Somers #include "utils.h"
50c41bbc0aSAlan Somers 
51c41bbc0aSAlan Somers static struct pollfd fds[1];
52c41bbc0aSAlan Somers static mode_t o_mode = 0777;
53*b13a70d5SAlan Somers static int filedesc;
54c41bbc0aSAlan Somers static char extregex[80];
55c41bbc0aSAlan Somers static const char *path = "fileforaudit";
56c41bbc0aSAlan Somers static const char *errpath = "adirhasnoname/fileforaudit";
57c41bbc0aSAlan Somers 
58c41bbc0aSAlan Somers /*
59c41bbc0aSAlan Somers  * Define test-cases for success and failure modes of both open(2) and openat(2)
60c41bbc0aSAlan Somers  */
61c41bbc0aSAlan Somers #define OPEN_AT_TC_DEFINE(mode, regex, flag, class) 			      \
62c41bbc0aSAlan Somers ATF_TC_WITH_CLEANUP(open_ ## mode ## _success);				      \
63c41bbc0aSAlan Somers ATF_TC_HEAD(open_ ## mode ## _success, tc) 				      \
64c41bbc0aSAlan Somers { 									      \
65c41bbc0aSAlan Somers 	atf_tc_set_md_var(tc, "descr", "Tests the audit of a successful "     \
66c41bbc0aSAlan Somers 				"open(2) call with flags = %s", #flag);       \
67c41bbc0aSAlan Somers } 									      \
68c41bbc0aSAlan Somers ATF_TC_BODY(open_ ## mode ## _success, tc) 				      \
69c41bbc0aSAlan Somers { 									      \
70c41bbc0aSAlan Somers 	snprintf(extregex, sizeof(extregex), 				      \
71c41bbc0aSAlan Somers 		"open.*%s.*fileforaudit.*return,success", regex); 	      \
72c41bbc0aSAlan Somers 	/* File needs to exist for successful open(2) invocation */ 	      \
73*b13a70d5SAlan Somers 	ATF_REQUIRE((filedesc = open(path, O_CREAT, o_mode)) != -1); 	      \
74c41bbc0aSAlan Somers 	FILE *pipefd = setup(fds, class); 				      \
75c41bbc0aSAlan Somers 	ATF_REQUIRE(syscall(SYS_open, path, flag) != -1); 		      \
76c41bbc0aSAlan Somers 	check_audit(fds, extregex, pipefd); 				      \
77*b13a70d5SAlan Somers 	close(filedesc); 						      \
78c41bbc0aSAlan Somers } 									      \
79c41bbc0aSAlan Somers ATF_TC_CLEANUP(open_ ## mode ## _success, tc) 				      \
80c41bbc0aSAlan Somers { 									      \
81c41bbc0aSAlan Somers 	cleanup(); 							      \
82c41bbc0aSAlan Somers } 									      \
83c41bbc0aSAlan Somers ATF_TC_WITH_CLEANUP(open_ ## mode ## _failure); 			      \
84c41bbc0aSAlan Somers ATF_TC_HEAD(open_ ## mode ## _failure, tc) 				      \
85c41bbc0aSAlan Somers { 									      \
86c41bbc0aSAlan Somers 	atf_tc_set_md_var(tc, "descr", "Tests the audit of an unsuccessful "  \
87c41bbc0aSAlan Somers 				"open(2) call with flags = %s", #flag);       \
88c41bbc0aSAlan Somers } 									      \
89c41bbc0aSAlan Somers ATF_TC_BODY(open_ ## mode ## _failure, tc) 				      \
90c41bbc0aSAlan Somers { 									      \
91c41bbc0aSAlan Somers 	snprintf(extregex, sizeof(extregex), 				      \
92c41bbc0aSAlan Somers 		"open.*%s.*fileforaudit.*return,failure", regex); 	      \
93c41bbc0aSAlan Somers 	FILE *pipefd = setup(fds, class); 				      \
94c41bbc0aSAlan Somers 	ATF_REQUIRE_EQ(-1, syscall(SYS_open, errpath, flag)); 		      \
95c41bbc0aSAlan Somers 	check_audit(fds, extregex, pipefd); 				      \
96c41bbc0aSAlan Somers } 									      \
97c41bbc0aSAlan Somers ATF_TC_CLEANUP(open_ ## mode ## _failure, tc) 				      \
98c41bbc0aSAlan Somers { 									      \
99c41bbc0aSAlan Somers 	cleanup(); 							      \
100c41bbc0aSAlan Somers } 									      \
101c41bbc0aSAlan Somers ATF_TC_WITH_CLEANUP(openat_ ## mode ## _success); 			      \
102c41bbc0aSAlan Somers ATF_TC_HEAD(openat_ ## mode ## _success, tc) 				      \
103c41bbc0aSAlan Somers { 									      \
104c41bbc0aSAlan Somers 	atf_tc_set_md_var(tc, "descr", "Tests the audit of a successful "     \
105c41bbc0aSAlan Somers 				"openat(2) call with flags = %s", #flag);     \
106c41bbc0aSAlan Somers } 									      \
107c41bbc0aSAlan Somers ATF_TC_BODY(openat_ ## mode ## _success, tc) 				      \
108c41bbc0aSAlan Somers { 									      \
109*b13a70d5SAlan Somers 	int filedesc2; 							      \
110c41bbc0aSAlan Somers 	snprintf(extregex, sizeof(extregex), 				      \
111c41bbc0aSAlan Somers 		"openat.*%s.*fileforaudit.*return,success", regex); 	      \
112c41bbc0aSAlan Somers 	/* File needs to exist for successful openat(2) invocation */ 	      \
113*b13a70d5SAlan Somers 	ATF_REQUIRE((filedesc = open(path, O_CREAT, o_mode)) != -1); 	      \
114c41bbc0aSAlan Somers 	FILE *pipefd = setup(fds, class); 				      \
115*b13a70d5SAlan Somers 	ATF_REQUIRE((filedesc2 = openat(AT_FDCWD, path, flag)) != -1); 	      \
116c41bbc0aSAlan Somers 	check_audit(fds, extregex, pipefd); 				      \
117*b13a70d5SAlan Somers 	close(filedesc2); 						      \
118*b13a70d5SAlan Somers 	close(filedesc); 						      \
119c41bbc0aSAlan Somers } 									      \
120c41bbc0aSAlan Somers ATF_TC_CLEANUP(openat_ ## mode ## _success, tc) 			      \
121c41bbc0aSAlan Somers { 									      \
122c41bbc0aSAlan Somers 	cleanup(); 							      \
123c41bbc0aSAlan Somers } 									      \
124c41bbc0aSAlan Somers ATF_TC_WITH_CLEANUP(openat_ ## mode ## _failure); 			      \
125c41bbc0aSAlan Somers ATF_TC_HEAD(openat_ ## mode ## _failure, tc) 				      \
126c41bbc0aSAlan Somers { 									      \
127c41bbc0aSAlan Somers 	atf_tc_set_md_var(tc, "descr", "Tests the audit of an unsuccessful "  \
128c41bbc0aSAlan Somers 				"openat(2) call with flags = %s", #flag);     \
129c41bbc0aSAlan Somers } 									      \
130c41bbc0aSAlan Somers ATF_TC_BODY(openat_ ## mode ## _failure, tc) 				      \
131c41bbc0aSAlan Somers { 									      \
132c41bbc0aSAlan Somers 	snprintf(extregex, sizeof(extregex), 				      \
133c41bbc0aSAlan Somers 		"openat.*%s.*fileforaudit.*return,failure", regex); 	      \
134c41bbc0aSAlan Somers 	FILE *pipefd = setup(fds, class); 				      \
135c41bbc0aSAlan Somers 	ATF_REQUIRE_EQ(-1, openat(AT_FDCWD, errpath, flag)); 		      \
136c41bbc0aSAlan Somers 	check_audit(fds, extregex, pipefd); 				      \
137c41bbc0aSAlan Somers } 									      \
138c41bbc0aSAlan Somers ATF_TC_CLEANUP(openat_ ## mode ## _failure, tc) 			      \
139c41bbc0aSAlan Somers { 									      \
140c41bbc0aSAlan Somers 	cleanup(); 							      \
141c41bbc0aSAlan Somers }
142c41bbc0aSAlan Somers 
143c41bbc0aSAlan Somers /*
144c41bbc0aSAlan Somers  * Add both success and failure modes of open(2) and openat(2)
145c41bbc0aSAlan Somers  */
146c41bbc0aSAlan Somers #define OPEN_AT_TC_ADD(tp, mode) 					      \
147c41bbc0aSAlan Somers do { 									      \
148c41bbc0aSAlan Somers 	ATF_TP_ADD_TC(tp, open_ ## mode ## _success); 			      \
149c41bbc0aSAlan Somers 	ATF_TP_ADD_TC(tp, open_ ## mode ## _failure); 			      \
150c41bbc0aSAlan Somers 	ATF_TP_ADD_TC(tp, openat_ ## mode ## _success); 		      \
151c41bbc0aSAlan Somers 	ATF_TP_ADD_TC(tp, openat_ ## mode ## _failure); 		      \
152c41bbc0aSAlan Somers } while (0)
153c41bbc0aSAlan Somers 
154c41bbc0aSAlan Somers 
155c41bbc0aSAlan Somers /*
156c41bbc0aSAlan Somers  * Each of the 12 OPEN_AT_TC_DEFINE statement is a group of 4 test-cases
157c41bbc0aSAlan Somers  * corresponding to separate audit events for open(2) and openat(2)
158c41bbc0aSAlan Somers  */
159c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(read, "read", O_RDONLY, "fr")
160c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(read_creat, "read,creat", O_RDONLY | O_CREAT, "fr")
161c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(read_trunc, "read,trunc", O_RDONLY | O_TRUNC, "fr")
162c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(read_creat_trunc, "read,creat,trunc", O_RDONLY | O_CREAT
163c41bbc0aSAlan Somers 	| O_TRUNC, "fr")
164c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(write, "write", O_WRONLY, "fw")
165c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(write_creat, "write,creat", O_WRONLY | O_CREAT, "fw")
166c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(write_trunc, "write,trunc", O_WRONLY | O_TRUNC, "fw")
167c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(write_creat_trunc, "write,creat,trunc", O_WRONLY | O_CREAT
168c41bbc0aSAlan Somers 	| O_TRUNC, "fw")
169c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(read_write, "read,write", O_RDWR, "fr")
170c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(read_write_creat, "read,write,creat", O_RDWR | O_CREAT, "fw")
171c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(read_write_trunc, "read,write,trunc", O_RDWR | O_TRUNC, "fr")
172c41bbc0aSAlan Somers OPEN_AT_TC_DEFINE(read_write_creat_trunc, "read,write,creat,trunc", O_RDWR |
173c41bbc0aSAlan Somers 	O_CREAT | O_TRUNC, "fw")
174c41bbc0aSAlan Somers 
175c41bbc0aSAlan Somers 
ATF_TP_ADD_TCS(tp)176c41bbc0aSAlan Somers ATF_TP_ADD_TCS(tp)
177c41bbc0aSAlan Somers {
178c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, read);
179c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, read_creat);
180c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, read_trunc);
181c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, read_creat_trunc);
182c41bbc0aSAlan Somers 
183c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, write);
184c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, write_creat);
185c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, write_trunc);
186c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, write_creat_trunc);
187c41bbc0aSAlan Somers 
188c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, read_write);
189c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, read_write_creat);
190c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, read_write_trunc);
191c41bbc0aSAlan Somers 	OPEN_AT_TC_ADD(tp, read_write_creat_trunc);
192c41bbc0aSAlan Somers 
193c41bbc0aSAlan Somers 	return (atf_no_error());
194c41bbc0aSAlan Somers }
195