blob: d991aeda4072466ecff0155615879ca330198d5e [file] [log] [blame]
Grant Edwards8a082772011-04-07 20:25:40 +00001/*
2 * Copyright (c) 2011, Comtrol Corp.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *
27 */
28
29#include "defs.h"
Dmitry V. Levinb038a432011-08-30 16:05:26 +000030#include <sys/param.h>
Dmitry V. Levin80d5e012015-07-30 16:23:58 +000031#include <poll.h>
Grant Edwards8a082772011-04-07 20:25:40 +000032
33#include "syscall.h"
34
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +010035const char **paths_selected = NULL;
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010036static unsigned num_selected = 0;
Grant Edwards8a082772011-04-07 20:25:40 +000037
38/*
39 * Return true if specified path matches one that we're tracing.
40 */
41static int
42pathmatch(const char *path)
43{
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010044 unsigned i;
Grant Edwards8a082772011-04-07 20:25:40 +000045
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010046 for (i = 0; i < num_selected; ++i) {
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +010047 if (strcmp(path, paths_selected[i]) == 0)
Grant Edwards8a082772011-04-07 20:25:40 +000048 return 1;
49 }
50 return 0;
51}
52
53/*
54 * Return true if specified path (in user-space) matches.
55 */
56static int
Elliott Hughesd35df492017-02-15 15:19:05 -080057upathmatch(struct tcb *const tcp, const kernel_ulong_t upath)
Grant Edwards8a082772011-04-07 20:25:40 +000058{
Denys Vlasenko7b609d52011-06-22 14:32:43 +020059 char path[PATH_MAX + 1];
Grant Edwards8a082772011-04-07 20:25:40 +000060
Dmitry V. Levin1a880cf2013-02-26 19:23:27 +000061 return umovestr(tcp, upath, sizeof path, path) > 0 &&
Grant Edwards8a082772011-04-07 20:25:40 +000062 pathmatch(path);
63}
64
65/*
66 * Return true if specified fd maps to a path we're tracing.
67 */
68static int
69fdmatch(struct tcb *tcp, int fd)
70{
Denys Vlasenko61ad0a42013-03-06 18:24:34 +010071 char path[PATH_MAX + 1];
72 int n = getfdpath(tcp, fd, path, sizeof(path));
Grant Edwards8a082772011-04-07 20:25:40 +000073
Denys Vlasenko61ad0a42013-03-06 18:24:34 +010074 return n >= 0 && pathmatch(path);
Grant Edwards8a082772011-04-07 20:25:40 +000075}
76
77/*
78 * Add a path to the set we're tracing.
Philippe Ombredanne894c7e32014-02-01 09:57:45 -080079 * Specifying NULL will delete all paths.
Grant Edwards8a082772011-04-07 20:25:40 +000080 */
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010081static void
Grant Edwards8a082772011-04-07 20:25:40 +000082storepath(const char *path)
83{
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010084 unsigned i;
Grant Edwards8a082772011-04-07 20:25:40 +000085
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010086 if (pathmatch(path))
87 return; /* already in table */
Grant Edwards8a082772011-04-07 20:25:40 +000088
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010089 i = num_selected++;
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +000090 paths_selected = xreallocarray(paths_selected, num_selected,
91 sizeof(paths_selected[0]));
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +010092 paths_selected[i] = path;
Grant Edwards8a082772011-04-07 20:25:40 +000093}
94
95/*
96 * Get path associated with fd.
97 */
Denys Vlasenko61ad0a42013-03-06 18:24:34 +010098int
99getfdpath(struct tcb *tcp, int fd, char *buf, unsigned bufsize)
Grant Edwards8a082772011-04-07 20:25:40 +0000100{
Denys Vlasenko384b0ad2012-03-15 18:11:51 +0100101 char linkpath[sizeof("/proc/%u/fd/%u") + 2 * sizeof(int)*3];
Grant Edwards8a082772011-04-07 20:25:40 +0000102 ssize_t n;
103
104 if (fd < 0)
Denys Vlasenko61ad0a42013-03-06 18:24:34 +0100105 return -1;
Grant Edwards8a082772011-04-07 20:25:40 +0000106
Denys Vlasenko29865e72012-03-15 18:03:56 +0100107 sprintf(linkpath, "/proc/%u/fd/%u", tcp->pid, fd);
Denys Vlasenko61ad0a42013-03-06 18:24:34 +0100108 n = readlink(linkpath, buf, bufsize - 1);
109 /*
110 * NB: if buf is too small, readlink doesn't fail,
111 * it returns truncated result (IOW: n == bufsize - 1).
112 */
113 if (n >= 0)
114 buf[n] = '\0';
115 return n;
Grant Edwards8a082772011-04-07 20:25:40 +0000116}
117
118/*
119 * Add a path to the set we're tracing. Also add the canonicalized
120 * version of the path. Secifying NULL will delete all paths.
121 */
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100122void
Grant Edwards8a082772011-04-07 20:25:40 +0000123pathtrace_select(const char *path)
124{
Denys Vlasenko29865e72012-03-15 18:03:56 +0100125 char *rpath;
Grant Edwards8a082772011-04-07 20:25:40 +0000126
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100127 storepath(path);
Grant Edwards8a082772011-04-07 20:25:40 +0000128
129 rpath = realpath(path, NULL);
130
131 if (rpath == NULL)
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100132 return;
Grant Edwards8a082772011-04-07 20:25:40 +0000133
134 /* if realpath and specified path are same, we're done */
Denys Vlasenko29865e72012-03-15 18:03:56 +0100135 if (strcmp(path, rpath) == 0) {
Grant Edwards8a082772011-04-07 20:25:40 +0000136 free(rpath);
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100137 return;
Grant Edwards8a082772011-04-07 20:25:40 +0000138 }
139
Dmitry V. Levin6c8ef052015-05-25 22:51:19 +0000140 error_msg("Requested path '%s' resolved into '%s'", path, rpath);
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100141 storepath(rpath);
Grant Edwards8a082772011-04-07 20:25:40 +0000142}
143
144/*
145 * Return true if syscall accesses a selected path
146 * (or if no paths have been specified for tracing).
147 */
148int
149pathtrace_match(struct tcb *tcp)
150{
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100151 const struct_sysent *s;
Grant Edwards8a082772011-04-07 20:25:40 +0000152
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100153 s = tcp->s_ent;
Grant Edwards8a082772011-04-07 20:25:40 +0000154
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800155 if (!(s->sys_flags & (TRACE_FILE | TRACE_DESC | TRACE_NETWORK)))
Grant Edwards8a082772011-04-07 20:25:40 +0000156 return 0;
157
158 /*
159 * Check for special cases where we need to do something
160 * other than test arg[0].
161 */
162
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300163 switch (s->sen) {
164 case SEN_dup2:
165 case SEN_dup3:
Dmitry V. Levinea197052015-11-22 18:51:05 +0000166 case SEN_kexec_file_load:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300167 case SEN_sendfile:
168 case SEN_sendfile64:
169 case SEN_tee:
Grant Edwards8a082772011-04-07 20:25:40 +0000170 /* fd, fd */
171 return fdmatch(tcp, tcp->u_arg[0]) ||
172 fdmatch(tcp, tcp->u_arg[1]);
Grant Edwards8a082772011-04-07 20:25:40 +0000173
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300174 case SEN_faccessat:
175 case SEN_fchmodat:
176 case SEN_fchownat:
Dmitry V. Levinc4da4892016-08-23 14:27:49 +0000177 case SEN_fstatat64:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300178 case SEN_futimesat:
179 case SEN_inotify_add_watch:
180 case SEN_mkdirat:
181 case SEN_mknodat:
Dmitry V. Levin4b3a1702015-11-22 21:29:32 +0000182 case SEN_name_to_handle_at:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300183 case SEN_newfstatat:
184 case SEN_openat:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300185 case SEN_readlinkat:
186 case SEN_unlinkat:
187 case SEN_utimensat:
Grant Edwards8a082772011-04-07 20:25:40 +0000188 /* fd, path */
189 return fdmatch(tcp, tcp->u_arg[0]) ||
190 upathmatch(tcp, tcp->u_arg[1]);
Grant Edwards8a082772011-04-07 20:25:40 +0000191
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300192 case SEN_link:
193 case SEN_mount:
194 case SEN_pivotroot:
Grant Edwards8a082772011-04-07 20:25:40 +0000195 /* path, path */
196 return upathmatch(tcp, tcp->u_arg[0]) ||
197 upathmatch(tcp, tcp->u_arg[1]);
Grant Edwards8a082772011-04-07 20:25:40 +0000198
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300199 case SEN_quotactl:
Dmitry V. Levin79439662012-10-26 23:43:13 +0000200 /* x, path */
201 return upathmatch(tcp, tcp->u_arg[1]);
Dmitry V. Levin79439662012-10-26 23:43:13 +0000202
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300203 case SEN_linkat:
204 case SEN_renameat2:
205 case SEN_renameat:
Grant Edwards8a082772011-04-07 20:25:40 +0000206 /* fd, path, fd, path */
207 return fdmatch(tcp, tcp->u_arg[0]) ||
208 fdmatch(tcp, tcp->u_arg[2]) ||
209 upathmatch(tcp, tcp->u_arg[1]) ||
210 upathmatch(tcp, tcp->u_arg[3]);
Grant Edwards8a082772011-04-07 20:25:40 +0000211
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300212 case SEN_old_mmap:
Denys Vlasenko1ba85432013-02-19 11:28:20 +0100213#if defined(S390)
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300214 case SEN_old_mmap_pgoff:
Denys Vlasenko1ba85432013-02-19 11:28:20 +0100215#endif
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300216 case SEN_mmap:
217 case SEN_mmap_4koff:
218 case SEN_mmap_pgoff:
Dmitry V. Levindd1a80c2015-12-24 15:40:55 +0000219 case SEN_ARCH_mmap:
Grant Edwards8a082772011-04-07 20:25:40 +0000220 /* x, x, x, x, fd */
221 return fdmatch(tcp, tcp->u_arg[4]);
Grant Edwards8a082772011-04-07 20:25:40 +0000222
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300223 case SEN_symlinkat:
Grant Edwards8a082772011-04-07 20:25:40 +0000224 /* path, fd, path */
225 return fdmatch(tcp, tcp->u_arg[1]) ||
226 upathmatch(tcp, tcp->u_arg[0]) ||
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200227 upathmatch(tcp, tcp->u_arg[2]);
Grant Edwards8a082772011-04-07 20:25:40 +0000228
Dmitry V. Levinc1f99f52016-02-13 03:45:32 +0000229 case SEN_copy_file_range:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300230 case SEN_splice:
Dmitry V. Levinc1f99f52016-02-13 03:45:32 +0000231 /* fd, x, fd, x, x, x */
Grant Edwards8a082772011-04-07 20:25:40 +0000232 return fdmatch(tcp, tcp->u_arg[0]) ||
233 fdmatch(tcp, tcp->u_arg[2]);
Grant Edwards8a082772011-04-07 20:25:40 +0000234
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300235 case SEN_epoll_ctl:
Grant Edwards8a082772011-04-07 20:25:40 +0000236 /* x, x, fd, x */
237 return fdmatch(tcp, tcp->u_arg[2]);
Grant Edwards8a082772011-04-07 20:25:40 +0000238
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300239
240 case SEN_fanotify_mark:
Dmitry V. Levin99db95d2014-02-05 04:13:18 +0000241 /* x, x, x, fd, path */
242 return fdmatch(tcp, tcp->u_arg[3]) ||
243 upathmatch(tcp, tcp->u_arg[4]);
Dmitry V. Levin99db95d2014-02-05 04:13:18 +0000244
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300245 case SEN_oldselect:
246 case SEN_pselect6:
247 case SEN_select:
Grant Edwards8a082772011-04-07 20:25:40 +0000248 {
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200249 int i, j;
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100250 int nfds;
Elliott Hughesd35df492017-02-15 15:19:05 -0800251 kernel_ulong_t *args;
252 kernel_ulong_t select_args[5];
253 unsigned int oldselect_args[5];
254 unsigned int fdsize;
Grant Edwards8a082772011-04-07 20:25:40 +0000255 fd_set *fds;
256
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300257 if (SEN_oldselect == s->sen) {
Elliott Hughesd35df492017-02-15 15:19:05 -0800258 if (sizeof(*select_args) == sizeof(*oldselect_args)) {
259 if (umove(tcp, tcp->u_arg[0], &select_args)) {
260 return 0;
261 }
262 } else {
263 unsigned int n;
264
265 if (umove(tcp, tcp->u_arg[0], &oldselect_args)) {
266 return 0;
267 }
268
269 for (n = 0; n < 5; ++n) {
270 select_args[n] = oldselect_args[n];
271 }
Grant Edwards8a082772011-04-07 20:25:40 +0000272 }
Elliott Hughesd35df492017-02-15 15:19:05 -0800273 args = select_args;
274 } else {
275 args = tcp->u_arg;
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100276 }
Grant Edwards8a082772011-04-07 20:25:40 +0000277
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100278 /* Kernel truncates arg[0] to int, we do the same. */
279 nfds = (int) args[0];
280 /* Kernel rejects negative nfds, so we don't parse it either. */
281 if (nfds <= 0)
282 return 0;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200283 /* Beware of select(2^31-1, NULL, NULL, NULL) and similar... */
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100284 if (nfds > 1024*1024)
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200285 nfds = 1024*1024;
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100286 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize;
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +0000287 fds = xmalloc(fdsize);
Grant Edwards8a082772011-04-07 20:25:40 +0000288
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200289 for (i = 1; i <= 3; ++i) {
Grant Edwards8a082772011-04-07 20:25:40 +0000290 if (args[i] == 0)
291 continue;
Denys Vlasenko7e69ed92015-03-21 19:50:53 +0100292 if (umoven(tcp, args[i], fdsize, fds) < 0) {
Grant Edwards8a082772011-04-07 20:25:40 +0000293 continue;
294 }
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100295 for (j = 0;; j++) {
296 j = next_set_bit(fds, j, nfds);
297 if (j < 0)
298 break;
299 if (fdmatch(tcp, j)) {
Grant Edwards8a082772011-04-07 20:25:40 +0000300 free(fds);
301 return 1;
302 }
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100303 }
Grant Edwards8a082772011-04-07 20:25:40 +0000304 }
305 free(fds);
306 return 0;
307 }
308
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300309 case SEN_poll:
310 case SEN_ppoll:
Grant Edwards8a082772011-04-07 20:25:40 +0000311 {
312 struct pollfd fds;
313 unsigned nfds;
Elliott Hughesd35df492017-02-15 15:19:05 -0800314 kernel_ulong_t start, cur, end;
Grant Edwards8a082772011-04-07 20:25:40 +0000315
316 start = tcp->u_arg[0];
317 nfds = tcp->u_arg[1];
318
319 end = start + sizeof(fds) * nfds;
320
321 if (nfds == 0 || end < start)
322 return 0;
323
324 for (cur = start; cur < end; cur += sizeof(fds))
Elliott Hughesd35df492017-02-15 15:19:05 -0800325 if ((umove(tcp, cur, &fds) == 0)
Grant Edwards8a082772011-04-07 20:25:40 +0000326 && fdmatch(tcp, fds.fd))
327 return 1;
328
329 return 0;
330 }
331
Dmitry V. Levinddb53dd2015-07-25 23:55:51 +0000332 case SEN_bpf:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300333 case SEN_epoll_create:
Dmitry V. Levin27163462015-08-01 23:07:19 +0000334 case SEN_epoll_create1:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300335 case SEN_eventfd2:
336 case SEN_eventfd:
337 case SEN_fanotify_init:
338 case SEN_inotify_init1:
Dmitry V. Levin95b84ea2015-07-28 23:03:41 +0000339 case SEN_memfd_create:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300340 case SEN_perf_event_open:
341 case SEN_pipe:
Dmitry V. Levinf9f04f72016-02-12 16:15:23 +0000342 case SEN_pipe2:
Elvira Khabirova483c15f2015-07-10 22:24:58 +0300343 case SEN_printargs:
344 case SEN_socket:
345 case SEN_socketpair:
346 case SEN_timerfd_create:
347 case SEN_timerfd_gettime:
348 case SEN_timerfd_settime:
Dmitry V. Levin87d64ed2015-11-22 19:56:00 +0000349 case SEN_userfaultfd:
Grant Edwards8a082772011-04-07 20:25:40 +0000350 /*
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800351 * These have TRACE_FILE or TRACE_DESCRIPTOR or TRACE_NETWORK set,
352 * but they don't have any file descriptor or path args to test.
Grant Edwards8a082772011-04-07 20:25:40 +0000353 */
354 return 0;
355 }
Grant Edwards8a082772011-04-07 20:25:40 +0000356
357 /*
358 * Our fallback position for calls that haven't already
359 * been handled is to just check arg[0].
360 */
361
362 if (s->sys_flags & TRACE_FILE)
363 return upathmatch(tcp, tcp->u_arg[0]);
364
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800365 if (s->sys_flags & (TRACE_DESC | TRACE_NETWORK))
Grant Edwards8a082772011-04-07 20:25:40 +0000366 return fdmatch(tcp, tcp->u_arg[0]);
367
368 return 0;
369}