Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 1 | /* |
| 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" |
| 30 | |
Dmitry V. Levin | b038a43 | 2011-08-30 16:05:26 +0000 | [diff] [blame] | 31 | #include <sys/param.h> |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 32 | |
| 33 | #ifdef HAVE_POLL_H |
| 34 | #include <poll.h> |
| 35 | #endif |
| 36 | #ifdef HAVE_SYS_POLL_H |
| 37 | #include <sys/poll.h> |
| 38 | #endif |
| 39 | |
| 40 | #include "syscall.h" |
| 41 | |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 42 | #define MAXSELECTED 256 /* max number of "selected" paths */ |
| 43 | static const char *selected[MAXSELECTED]; /* paths selected for tracing */ |
| 44 | |
| 45 | /* |
| 46 | * Return true if specified path matches one that we're tracing. |
| 47 | */ |
| 48 | static int |
| 49 | pathmatch(const char *path) |
| 50 | { |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 51 | unsigned int i; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 52 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 53 | for (i = 0; i < ARRAY_SIZE(selected); ++i) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 54 | if (selected[i] == NULL) |
| 55 | return 0; |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame^] | 56 | if (strcmp(path, selected[i]) == 0) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 57 | return 1; |
| 58 | } |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Return true if specified path (in user-space) matches. |
| 64 | */ |
| 65 | static int |
| 66 | upathmatch(struct tcb *tcp, unsigned long upath) |
| 67 | { |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 68 | char path[PATH_MAX + 1]; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 69 | |
Denys Vlasenko | 6cecba5 | 2012-01-20 11:56:00 +0100 | [diff] [blame] | 70 | return umovestr(tcp, upath, sizeof path, path) >= 0 && |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 71 | pathmatch(path); |
| 72 | } |
| 73 | |
| 74 | /* |
| 75 | * Return true if specified fd maps to a path we're tracing. |
| 76 | */ |
| 77 | static int |
| 78 | fdmatch(struct tcb *tcp, int fd) |
| 79 | { |
| 80 | const char *path = getfdpath(tcp, fd); |
| 81 | |
| 82 | return path && pathmatch(path); |
| 83 | } |
| 84 | |
| 85 | /* |
| 86 | * Add a path to the set we're tracing. |
| 87 | * Secifying NULL will delete all paths. |
| 88 | */ |
| 89 | static int |
| 90 | storepath(const char *path) |
| 91 | { |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 92 | unsigned int i; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 93 | |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame^] | 94 | for (i = 0; i < ARRAY_SIZE(selected); ++i) { |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 95 | if (!selected[i]) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 96 | selected[i] = path; |
| 97 | return 0; |
| 98 | } |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame^] | 99 | } |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 100 | |
Dmitry V. Levin | fcda7a5 | 2011-06-13 21:58:43 +0000 | [diff] [blame] | 101 | fprintf(stderr, "Max trace paths exceeded, only using first %u\n", |
| 102 | (unsigned int) ARRAY_SIZE(selected)); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 103 | return -1; |
| 104 | } |
| 105 | |
| 106 | /* |
| 107 | * Get path associated with fd. |
| 108 | */ |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame^] | 109 | const char * |
| 110 | getfdpath(struct tcb *tcp, int fd) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 111 | { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 112 | static char path[PATH_MAX+1]; |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame^] | 113 | char linkpath[sizeof("/proc/%u/fd/%u") + 2 * sizeof(int)]; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 114 | ssize_t n; |
| 115 | |
| 116 | if (fd < 0) |
| 117 | return NULL; |
| 118 | |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame^] | 119 | sprintf(linkpath, "/proc/%u/fd/%u", tcp->pid, fd); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 120 | n = readlink(linkpath, path, (sizeof path) - 1); |
| 121 | if (n <= 0) |
| 122 | return NULL; |
| 123 | path[n] = '\0'; |
| 124 | return path; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | /* |
| 128 | * Add a path to the set we're tracing. Also add the canonicalized |
| 129 | * version of the path. Secifying NULL will delete all paths. |
| 130 | */ |
| 131 | int |
| 132 | pathtrace_select(const char *path) |
| 133 | { |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame^] | 134 | char *rpath; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 135 | |
| 136 | if (storepath(path)) |
| 137 | return -1; |
| 138 | |
| 139 | rpath = realpath(path, NULL); |
| 140 | |
| 141 | if (rpath == NULL) |
| 142 | return 0; |
| 143 | |
| 144 | /* if realpath and specified path are same, we're done */ |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame^] | 145 | if (strcmp(path, rpath) == 0) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 146 | free(rpath); |
| 147 | return 0; |
| 148 | } |
| 149 | |
| 150 | fprintf(stderr, "Requested path '%s' resolved into '%s'\n", |
| 151 | path, rpath); |
| 152 | return storepath(rpath); |
| 153 | } |
| 154 | |
| 155 | /* |
| 156 | * Return true if syscall accesses a selected path |
| 157 | * (or if no paths have been specified for tracing). |
| 158 | */ |
| 159 | int |
| 160 | pathtrace_match(struct tcb *tcp) |
| 161 | { |
| 162 | const struct sysent *s; |
| 163 | |
| 164 | if (selected[0] == NULL) |
| 165 | return 1; |
| 166 | |
Dmitry V. Levin | bdec9cb | 2012-02-06 17:13:59 +0000 | [diff] [blame] | 167 | if (!SCNO_IN_RANGE(tcp->scno)) |
| 168 | return 0; |
| 169 | |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 170 | s = &sysent[tcp->scno]; |
| 171 | |
| 172 | if (!(s->sys_flags & (TRACE_FILE | TRACE_DESC))) |
| 173 | return 0; |
| 174 | |
| 175 | /* |
| 176 | * Check for special cases where we need to do something |
| 177 | * other than test arg[0]. |
| 178 | */ |
| 179 | |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 180 | if (s->sys_func == sys_dup2 || |
| 181 | s->sys_func == sys_dup3 || |
| 182 | s->sys_func == sys_sendfile || |
| 183 | s->sys_func == sys_sendfile64 || |
Dmitry V. Levin | ad178c0 | 2011-11-28 22:48:53 +0000 | [diff] [blame] | 184 | s->sys_func == sys_tee) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 185 | { |
| 186 | /* fd, fd */ |
| 187 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 188 | fdmatch(tcp, tcp->u_arg[1]); |
| 189 | } |
| 190 | |
| 191 | if (s->sys_func == sys_inotify_add_watch || |
| 192 | s->sys_func == sys_faccessat || |
| 193 | s->sys_func == sys_fchmodat || |
| 194 | s->sys_func == sys_futimesat || |
| 195 | s->sys_func == sys_mkdirat || |
| 196 | s->sys_func == sys_unlinkat || |
| 197 | s->sys_func == sys_newfstatat || |
| 198 | s->sys_func == sys_mknodat || |
| 199 | s->sys_func == sys_openat || |
| 200 | s->sys_func == sys_readlinkat || |
| 201 | s->sys_func == sys_utimensat || |
| 202 | s->sys_func == sys_fchownat || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 203 | s->sys_func == sys_pipe2) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 204 | { |
| 205 | /* fd, path */ |
| 206 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 207 | upathmatch(tcp, tcp->u_arg[1]); |
| 208 | } |
| 209 | |
| 210 | if (s->sys_func == sys_link || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 211 | s->sys_func == sys_mount) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 212 | { |
| 213 | /* path, path */ |
| 214 | return upathmatch(tcp, tcp->u_arg[0]) || |
| 215 | upathmatch(tcp, tcp->u_arg[1]); |
| 216 | } |
| 217 | |
| 218 | if (s->sys_func == sys_renameat || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 219 | s->sys_func == sys_linkat) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 220 | { |
| 221 | /* fd, path, fd, path */ |
| 222 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 223 | fdmatch(tcp, tcp->u_arg[2]) || |
| 224 | upathmatch(tcp, tcp->u_arg[1]) || |
| 225 | upathmatch(tcp, tcp->u_arg[3]); |
| 226 | } |
| 227 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 228 | if (s->sys_func == sys_old_mmap || s->sys_func == sys_mmap) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 229 | /* x, x, x, x, fd */ |
| 230 | return fdmatch(tcp, tcp->u_arg[4]); |
| 231 | } |
| 232 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 233 | if (s->sys_func == sys_symlinkat) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 234 | /* path, fd, path */ |
| 235 | return fdmatch(tcp, tcp->u_arg[1]) || |
| 236 | upathmatch(tcp, tcp->u_arg[0]) || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 237 | upathmatch(tcp, tcp->u_arg[2]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 238 | } |
| 239 | |
Dmitry V. Levin | ad178c0 | 2011-11-28 22:48:53 +0000 | [diff] [blame] | 240 | if (s->sys_func == sys_splice) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 241 | /* fd, x, fd, x, x */ |
| 242 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 243 | fdmatch(tcp, tcp->u_arg[2]); |
| 244 | } |
| 245 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 246 | if (s->sys_func == sys_epoll_ctl) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 247 | /* x, x, fd, x */ |
| 248 | return fdmatch(tcp, tcp->u_arg[2]); |
| 249 | } |
| 250 | |
| 251 | if (s->sys_func == sys_select || |
| 252 | s->sys_func == sys_oldselect || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 253 | s->sys_func == sys_pselect6) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 254 | { |
Denys Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 255 | int i, j; |
| 256 | unsigned nfds; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 257 | long *args, oldargs[5]; |
| 258 | unsigned fdsize; |
| 259 | fd_set *fds; |
| 260 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 261 | if (s->sys_func == sys_oldselect) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 262 | if (umoven(tcp, tcp->u_arg[0], sizeof oldargs, |
| 263 | (char*) oldargs) < 0) |
| 264 | { |
| 265 | fprintf(stderr, "umoven() failed\n"); |
| 266 | return 0; |
| 267 | } |
| 268 | args = oldargs; |
| 269 | } else |
| 270 | args = tcp->u_arg; |
| 271 | |
| 272 | nfds = args[0]; |
Denys Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 273 | /* Beware of select(2^31-1, NULL, NULL, NULL) and similar... */ |
| 274 | if (args[0] > 1024*1024) |
| 275 | nfds = 1024*1024; |
| 276 | if (args[0] < 0) |
| 277 | nfds = 0; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 278 | fdsize = ((((nfds + 7) / 8) + sizeof(long) - 1) |
| 279 | & -sizeof(long)); |
| 280 | fds = malloc(fdsize); |
Denys Vlasenko | 1d46ba5 | 2011-08-31 14:00:02 +0200 | [diff] [blame] | 281 | if (!fds) |
| 282 | die_out_of_memory(); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 283 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 284 | for (i = 1; i <= 3; ++i) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 285 | if (args[i] == 0) |
| 286 | continue; |
| 287 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 288 | if (umoven(tcp, args[i], fdsize, (char *) fds) < 0) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 289 | fprintf(stderr, "umoven() failed\n"); |
| 290 | continue; |
| 291 | } |
| 292 | |
| 293 | for (j = 0; j < nfds; ++j) |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 294 | if (FD_ISSET(j, fds) && fdmatch(tcp, j)) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 295 | free(fds); |
| 296 | return 1; |
| 297 | } |
| 298 | } |
| 299 | free(fds); |
| 300 | return 0; |
| 301 | } |
| 302 | |
| 303 | if (s->sys_func == sys_poll || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 304 | s->sys_func == sys_ppoll) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 305 | { |
| 306 | struct pollfd fds; |
| 307 | unsigned nfds; |
| 308 | unsigned long start, cur, end; |
| 309 | |
| 310 | start = tcp->u_arg[0]; |
| 311 | nfds = tcp->u_arg[1]; |
| 312 | |
| 313 | end = start + sizeof(fds) * nfds; |
| 314 | |
| 315 | if (nfds == 0 || end < start) |
| 316 | return 0; |
| 317 | |
| 318 | for (cur = start; cur < end; cur += sizeof(fds)) |
| 319 | if ((umoven(tcp, cur, sizeof fds, (char *) &fds) == 0) |
| 320 | && fdmatch(tcp, fds.fd)) |
| 321 | return 1; |
| 322 | |
| 323 | return 0; |
| 324 | } |
| 325 | |
| 326 | if (s->sys_func == printargs || |
| 327 | s->sys_func == sys_pipe || |
| 328 | s->sys_func == sys_pipe2 || |
| 329 | s->sys_func == sys_eventfd2 || |
| 330 | s->sys_func == sys_eventfd || |
| 331 | s->sys_func == sys_inotify_init1 || |
| 332 | s->sys_func == sys_timerfd_create || |
| 333 | s->sys_func == sys_timerfd_settime || |
| 334 | s->sys_func == sys_timerfd_gettime || |
| 335 | s->sys_func == sys_epoll_create || |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame^] | 336 | strcmp(s->sys_name, "fanotify_init") == 0) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 337 | { |
| 338 | /* |
| 339 | * These have TRACE_FILE or TRACE_DESCRIPTOR set, but they |
| 340 | * don't have any file descriptor or path args to test. |
| 341 | */ |
| 342 | return 0; |
| 343 | } |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 344 | |
| 345 | /* |
| 346 | * Our fallback position for calls that haven't already |
| 347 | * been handled is to just check arg[0]. |
| 348 | */ |
| 349 | |
| 350 | if (s->sys_flags & TRACE_FILE) |
| 351 | return upathmatch(tcp, tcp->u_arg[0]); |
| 352 | |
| 353 | if (s->sys_flags & TRACE_DESC) |
| 354 | return fdmatch(tcp, tcp->u_arg[0]); |
| 355 | |
| 356 | return 0; |
| 357 | } |