blob: 894dd5c963eb30c8162c956c40e3add1f0fad01e [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. Levind64a7e42013-11-06 01:17:05 +000031#if defined HAVE_POLL_H
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010032# include <poll.h>
Dmitry V. Levind64a7e42013-11-06 01:17:05 +000033#elif defined HAVE_SYS_POLL_H
Denys Vlasenkoa6d91de2012-03-16 12:02:22 +010034# include <sys/poll.h>
Grant Edwards8a082772011-04-07 20:25:40 +000035#endif
36
37#include "syscall.h"
38
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +010039const char **paths_selected = NULL;
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010040static unsigned num_selected = 0;
Grant Edwards8a082772011-04-07 20:25:40 +000041
42/*
43 * Return true if specified path matches one that we're tracing.
44 */
45static int
46pathmatch(const char *path)
47{
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010048 unsigned i;
Grant Edwards8a082772011-04-07 20:25:40 +000049
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010050 for (i = 0; i < num_selected; ++i) {
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +010051 if (strcmp(path, paths_selected[i]) == 0)
Grant Edwards8a082772011-04-07 20:25:40 +000052 return 1;
53 }
54 return 0;
55}
56
57/*
58 * Return true if specified path (in user-space) matches.
59 */
60static int
61upathmatch(struct tcb *tcp, unsigned long upath)
62{
Denys Vlasenko7b609d52011-06-22 14:32:43 +020063 char path[PATH_MAX + 1];
Grant Edwards8a082772011-04-07 20:25:40 +000064
Dmitry V. Levin1a880cf2013-02-26 19:23:27 +000065 return umovestr(tcp, upath, sizeof path, path) > 0 &&
Grant Edwards8a082772011-04-07 20:25:40 +000066 pathmatch(path);
67}
68
69/*
70 * Return true if specified fd maps to a path we're tracing.
71 */
72static int
73fdmatch(struct tcb *tcp, int fd)
74{
Denys Vlasenko61ad0a42013-03-06 18:24:34 +010075 char path[PATH_MAX + 1];
76 int n = getfdpath(tcp, fd, path, sizeof(path));
Grant Edwards8a082772011-04-07 20:25:40 +000077
Denys Vlasenko61ad0a42013-03-06 18:24:34 +010078 return n >= 0 && pathmatch(path);
Grant Edwards8a082772011-04-07 20:25:40 +000079}
80
81/*
82 * Add a path to the set we're tracing.
Philippe Ombredanne894c7e32014-02-01 09:57:45 -080083 * Specifying NULL will delete all paths.
Grant Edwards8a082772011-04-07 20:25:40 +000084 */
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010085static void
Grant Edwards8a082772011-04-07 20:25:40 +000086storepath(const char *path)
87{
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010088 unsigned i;
Grant Edwards8a082772011-04-07 20:25:40 +000089
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010090 if (pathmatch(path))
91 return; /* already in table */
Grant Edwards8a082772011-04-07 20:25:40 +000092
Denys Vlasenko7239dbc2013-03-05 15:46:34 +010093 i = num_selected++;
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +000094 paths_selected = xreallocarray(paths_selected, num_selected,
95 sizeof(paths_selected[0]));
Denys Vlasenko38cfe7c2013-03-05 16:01:53 +010096 paths_selected[i] = path;
Grant Edwards8a082772011-04-07 20:25:40 +000097}
98
99/*
100 * Get path associated with fd.
101 */
Denys Vlasenko61ad0a42013-03-06 18:24:34 +0100102int
103getfdpath(struct tcb *tcp, int fd, char *buf, unsigned bufsize)
Grant Edwards8a082772011-04-07 20:25:40 +0000104{
Denys Vlasenko384b0ad2012-03-15 18:11:51 +0100105 char linkpath[sizeof("/proc/%u/fd/%u") + 2 * sizeof(int)*3];
Grant Edwards8a082772011-04-07 20:25:40 +0000106 ssize_t n;
107
108 if (fd < 0)
Denys Vlasenko61ad0a42013-03-06 18:24:34 +0100109 return -1;
Grant Edwards8a082772011-04-07 20:25:40 +0000110
Denys Vlasenko29865e72012-03-15 18:03:56 +0100111 sprintf(linkpath, "/proc/%u/fd/%u", tcp->pid, fd);
Denys Vlasenko61ad0a42013-03-06 18:24:34 +0100112 n = readlink(linkpath, buf, bufsize - 1);
113 /*
114 * NB: if buf is too small, readlink doesn't fail,
115 * it returns truncated result (IOW: n == bufsize - 1).
116 */
117 if (n >= 0)
118 buf[n] = '\0';
119 return n;
Grant Edwards8a082772011-04-07 20:25:40 +0000120}
121
122/*
123 * Add a path to the set we're tracing. Also add the canonicalized
124 * version of the path. Secifying NULL will delete all paths.
125 */
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100126void
Grant Edwards8a082772011-04-07 20:25:40 +0000127pathtrace_select(const char *path)
128{
Denys Vlasenko29865e72012-03-15 18:03:56 +0100129 char *rpath;
Grant Edwards8a082772011-04-07 20:25:40 +0000130
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100131 storepath(path);
Grant Edwards8a082772011-04-07 20:25:40 +0000132
133 rpath = realpath(path, NULL);
134
135 if (rpath == NULL)
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100136 return;
Grant Edwards8a082772011-04-07 20:25:40 +0000137
138 /* if realpath and specified path are same, we're done */
Denys Vlasenko29865e72012-03-15 18:03:56 +0100139 if (strcmp(path, rpath) == 0) {
Grant Edwards8a082772011-04-07 20:25:40 +0000140 free(rpath);
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100141 return;
Grant Edwards8a082772011-04-07 20:25:40 +0000142 }
143
144 fprintf(stderr, "Requested path '%s' resolved into '%s'\n",
145 path, rpath);
Denys Vlasenko7239dbc2013-03-05 15:46:34 +0100146 storepath(rpath);
Grant Edwards8a082772011-04-07 20:25:40 +0000147}
148
149/*
150 * Return true if syscall accesses a selected path
151 * (or if no paths have been specified for tracing).
152 */
153int
154pathtrace_match(struct tcb *tcp)
155{
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100156 const struct_sysent *s;
Grant Edwards8a082772011-04-07 20:25:40 +0000157
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100158 s = tcp->s_ent;
Grant Edwards8a082772011-04-07 20:25:40 +0000159
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800160 if (!(s->sys_flags & (TRACE_FILE | TRACE_DESC | TRACE_NETWORK)))
Grant Edwards8a082772011-04-07 20:25:40 +0000161 return 0;
162
163 /*
164 * Check for special cases where we need to do something
165 * other than test arg[0].
166 */
167
Grant Edwards8a082772011-04-07 20:25:40 +0000168 if (s->sys_func == sys_dup2 ||
169 s->sys_func == sys_dup3 ||
170 s->sys_func == sys_sendfile ||
171 s->sys_func == sys_sendfile64 ||
Dmitry V. Levinad178c02011-11-28 22:48:53 +0000172 s->sys_func == sys_tee)
Grant Edwards8a082772011-04-07 20:25:40 +0000173 {
174 /* fd, fd */
175 return fdmatch(tcp, tcp->u_arg[0]) ||
176 fdmatch(tcp, tcp->u_arg[1]);
177 }
178
179 if (s->sys_func == sys_inotify_add_watch ||
180 s->sys_func == sys_faccessat ||
181 s->sys_func == sys_fchmodat ||
182 s->sys_func == sys_futimesat ||
Grant Edwards8a082772011-04-07 20:25:40 +0000183 s->sys_func == sys_unlinkat ||
184 s->sys_func == sys_newfstatat ||
185 s->sys_func == sys_mknodat ||
186 s->sys_func == sys_openat ||
187 s->sys_func == sys_readlinkat ||
188 s->sys_func == sys_utimensat ||
189 s->sys_func == sys_fchownat ||
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200190 s->sys_func == sys_pipe2)
Grant Edwards8a082772011-04-07 20:25:40 +0000191 {
192 /* fd, path */
193 return fdmatch(tcp, tcp->u_arg[0]) ||
194 upathmatch(tcp, tcp->u_arg[1]);
195 }
196
197 if (s->sys_func == sys_link ||
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200198 s->sys_func == sys_mount)
Grant Edwards8a082772011-04-07 20:25:40 +0000199 {
200 /* path, path */
201 return upathmatch(tcp, tcp->u_arg[0]) ||
202 upathmatch(tcp, tcp->u_arg[1]);
203 }
204
Dmitry V. Levin79439662012-10-26 23:43:13 +0000205 if (s->sys_func == sys_quotactl)
206 {
207 /* x, path */
208 return upathmatch(tcp, tcp->u_arg[1]);
209 }
210
Grant Edwards8a082772011-04-07 20:25:40 +0000211 if (s->sys_func == sys_renameat ||
Mike Frysinger5b677ab2014-08-14 04:05:41 -0400212 s->sys_func == sys_renameat2 ||
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200213 s->sys_func == sys_linkat)
Grant Edwards8a082772011-04-07 20:25:40 +0000214 {
215 /* fd, path, fd, path */
216 return fdmatch(tcp, tcp->u_arg[0]) ||
217 fdmatch(tcp, tcp->u_arg[2]) ||
218 upathmatch(tcp, tcp->u_arg[1]) ||
219 upathmatch(tcp, tcp->u_arg[3]);
220 }
221
H.J. Lu35be5812012-04-16 13:00:01 +0200222 if (
H.J. Lu35be5812012-04-16 13:00:01 +0200223 s->sys_func == sys_old_mmap ||
Denys Vlasenko1ba85432013-02-19 11:28:20 +0100224#if defined(S390)
225 s->sys_func == sys_old_mmap_pgoff ||
226#endif
227 s->sys_func == sys_mmap ||
228 s->sys_func == sys_mmap_pgoff ||
229 s->sys_func == sys_mmap_4koff
230 ) {
Grant Edwards8a082772011-04-07 20:25:40 +0000231 /* x, x, x, x, fd */
232 return fdmatch(tcp, tcp->u_arg[4]);
233 }
234
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200235 if (s->sys_func == sys_symlinkat) {
Grant Edwards8a082772011-04-07 20:25:40 +0000236 /* path, fd, path */
237 return fdmatch(tcp, tcp->u_arg[1]) ||
238 upathmatch(tcp, tcp->u_arg[0]) ||
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200239 upathmatch(tcp, tcp->u_arg[2]);
Grant Edwards8a082772011-04-07 20:25:40 +0000240 }
241
Dmitry V. Levinad178c02011-11-28 22:48:53 +0000242 if (s->sys_func == sys_splice) {
Grant Edwards8a082772011-04-07 20:25:40 +0000243 /* fd, x, fd, x, x */
244 return fdmatch(tcp, tcp->u_arg[0]) ||
245 fdmatch(tcp, tcp->u_arg[2]);
246 }
247
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200248 if (s->sys_func == sys_epoll_ctl) {
Grant Edwards8a082772011-04-07 20:25:40 +0000249 /* x, x, fd, x */
250 return fdmatch(tcp, tcp->u_arg[2]);
251 }
252
Dmitry V. Levin99db95d2014-02-05 04:13:18 +0000253 if (s->sys_func == sys_fanotify_mark) {
254 /* x, x, x, fd, path */
255 return fdmatch(tcp, tcp->u_arg[3]) ||
256 upathmatch(tcp, tcp->u_arg[4]);
257 }
258
Grant Edwards8a082772011-04-07 20:25:40 +0000259 if (s->sys_func == sys_select ||
260 s->sys_func == sys_oldselect ||
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200261 s->sys_func == sys_pselect6)
Grant Edwards8a082772011-04-07 20:25:40 +0000262 {
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200263 int i, j;
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100264 int nfds;
Grant Edwards8a082772011-04-07 20:25:40 +0000265 long *args, oldargs[5];
266 unsigned fdsize;
267 fd_set *fds;
268
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100269 args = tcp->u_arg;
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200270 if (s->sys_func == sys_oldselect) {
Grant Edwards8a082772011-04-07 20:25:40 +0000271 if (umoven(tcp, tcp->u_arg[0], sizeof oldargs,
Denys Vlasenko7e69ed92015-03-21 19:50:53 +0100272 oldargs) < 0)
Grant Edwards8a082772011-04-07 20:25:40 +0000273 {
274 fprintf(stderr, "umoven() failed\n");
275 return 0;
276 }
277 args = oldargs;
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100278 }
Grant Edwards8a082772011-04-07 20:25:40 +0000279
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100280 /* Kernel truncates arg[0] to int, we do the same. */
281 nfds = (int) args[0];
282 /* Kernel rejects negative nfds, so we don't parse it either. */
283 if (nfds <= 0)
284 return 0;
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200285 /* Beware of select(2^31-1, NULL, NULL, NULL) and similar... */
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100286 if (nfds > 1024*1024)
Denys Vlasenko79a79ea2011-09-01 16:35:44 +0200287 nfds = 1024*1024;
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100288 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize;
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +0000289 fds = xmalloc(fdsize);
Grant Edwards8a082772011-04-07 20:25:40 +0000290
Denys Vlasenko7b609d52011-06-22 14:32:43 +0200291 for (i = 1; i <= 3; ++i) {
Grant Edwards8a082772011-04-07 20:25:40 +0000292 if (args[i] == 0)
293 continue;
Denys Vlasenko7e69ed92015-03-21 19:50:53 +0100294 if (umoven(tcp, args[i], fdsize, fds) < 0) {
Grant Edwards8a082772011-04-07 20:25:40 +0000295 fprintf(stderr, "umoven() failed\n");
296 continue;
297 }
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100298 for (j = 0;; j++) {
299 j = next_set_bit(fds, j, nfds);
300 if (j < 0)
301 break;
302 if (fdmatch(tcp, j)) {
Grant Edwards8a082772011-04-07 20:25:40 +0000303 free(fds);
304 return 1;
305 }
Denys Vlasenko64778cb2013-11-09 20:46:55 +0100306 }
Grant Edwards8a082772011-04-07 20:25:40 +0000307 }
308 free(fds);
309 return 0;
310 }
311
312 if (s->sys_func == sys_poll ||
Denys Vlasenkob63256e2011-06-07 12:13:24 +0200313 s->sys_func == sys_ppoll)
Grant Edwards8a082772011-04-07 20:25:40 +0000314 {
315 struct pollfd fds;
316 unsigned nfds;
317 unsigned long start, cur, end;
318
319 start = tcp->u_arg[0];
320 nfds = tcp->u_arg[1];
321
322 end = start + sizeof(fds) * nfds;
323
324 if (nfds == 0 || end < start)
325 return 0;
326
327 for (cur = start; cur < end; cur += sizeof(fds))
Denys Vlasenko7e69ed92015-03-21 19:50:53 +0100328 if ((umoven(tcp, cur, sizeof fds, &fds) == 0)
Grant Edwards8a082772011-04-07 20:25:40 +0000329 && fdmatch(tcp, fds.fd))
330 return 1;
331
332 return 0;
333 }
334
335 if (s->sys_func == printargs ||
336 s->sys_func == sys_pipe ||
337 s->sys_func == sys_pipe2 ||
338 s->sys_func == sys_eventfd2 ||
339 s->sys_func == sys_eventfd ||
340 s->sys_func == sys_inotify_init1 ||
341 s->sys_func == sys_timerfd_create ||
342 s->sys_func == sys_timerfd_settime ||
343 s->sys_func == sys_timerfd_gettime ||
344 s->sys_func == sys_epoll_create ||
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800345 s->sys_func == sys_socket ||
346 s->sys_func == sys_socketpair ||
Dmitry V. Levin99db95d2014-02-05 04:13:18 +0000347 s->sys_func == sys_fanotify_init)
Grant Edwards8a082772011-04-07 20:25:40 +0000348 {
349 /*
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800350 * These have TRACE_FILE or TRACE_DESCRIPTOR or TRACE_NETWORK set,
351 * but they don't have any file descriptor or path args to test.
Grant Edwards8a082772011-04-07 20:25:40 +0000352 */
353 return 0;
354 }
Grant Edwards8a082772011-04-07 20:25:40 +0000355
356 /*
357 * Our fallback position for calls that haven't already
358 * been handled is to just check arg[0].
359 */
360
361 if (s->sys_flags & TRACE_FILE)
362 return upathmatch(tcp, tcp->u_arg[0]);
363
Philippe Ombredanne894c7e32014-02-01 09:57:45 -0800364 if (s->sys_flags & (TRACE_DESC | TRACE_NETWORK))
Grant Edwards8a082772011-04-07 20:25:40 +0000365 return fdmatch(tcp, tcp->u_arg[0]);
366
367 return 0;
368}