Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 1 | /* |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 2 | * Copyright (c) 2011 Comtrol Corp. |
| 3 | * Copyright (c) 2011-2017 The strace developers. |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 4 | * All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions |
| 8 | * are met: |
| 9 | * 1. Redistributions of source code must retain the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer. |
| 11 | * 2. Redistributions in binary form must reproduce the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer in the |
| 13 | * documentation and/or other materials provided with the distribution. |
| 14 | * 3. The name of the author may not be used to endorse or promote products |
| 15 | * derived from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | * |
| 28 | */ |
| 29 | |
| 30 | #include "defs.h" |
Dmitry V. Levin | b038a43 | 2011-08-30 16:05:26 +0000 | [diff] [blame] | 31 | #include <sys/param.h> |
Dmitry V. Levin | 80d5e01 | 2015-07-30 16:23:58 +0000 | [diff] [blame] | 32 | #include <poll.h> |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 33 | |
| 34 | #include "syscall.h" |
| 35 | |
Elliott Hughes | dc75b01 | 2017-07-05 13:54:44 -0700 | [diff] [blame^] | 36 | const char **paths_selected; |
| 37 | static unsigned int num_selected; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 38 | |
| 39 | /* |
| 40 | * Return true if specified path matches one that we're tracing. |
| 41 | */ |
| 42 | static int |
| 43 | pathmatch(const char *path) |
| 44 | { |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 45 | unsigned i; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 46 | |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 47 | for (i = 0; i < num_selected; ++i) { |
Denys Vlasenko | 38cfe7c | 2013-03-05 16:01:53 +0100 | [diff] [blame] | 48 | if (strcmp(path, paths_selected[i]) == 0) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 49 | return 1; |
| 50 | } |
| 51 | return 0; |
| 52 | } |
| 53 | |
| 54 | /* |
| 55 | * Return true if specified path (in user-space) matches. |
| 56 | */ |
| 57 | static int |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 58 | upathmatch(struct tcb *const tcp, const kernel_ulong_t upath) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 59 | { |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 60 | char path[PATH_MAX + 1]; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 61 | |
Elliott Hughes | dc75b01 | 2017-07-05 13:54:44 -0700 | [diff] [blame^] | 62 | return umovestr(tcp, upath, sizeof(path), path) > 0 && |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 63 | pathmatch(path); |
| 64 | } |
| 65 | |
| 66 | /* |
| 67 | * Return true if specified fd maps to a path we're tracing. |
| 68 | */ |
| 69 | static int |
| 70 | fdmatch(struct tcb *tcp, int fd) |
| 71 | { |
Denys Vlasenko | 61ad0a4 | 2013-03-06 18:24:34 +0100 | [diff] [blame] | 72 | char path[PATH_MAX + 1]; |
| 73 | int n = getfdpath(tcp, fd, path, sizeof(path)); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 74 | |
Denys Vlasenko | 61ad0a4 | 2013-03-06 18:24:34 +0100 | [diff] [blame] | 75 | return n >= 0 && pathmatch(path); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | /* |
| 79 | * Add a path to the set we're tracing. |
Philippe Ombredanne | 894c7e3 | 2014-02-01 09:57:45 -0800 | [diff] [blame] | 80 | * Specifying NULL will delete all paths. |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 81 | */ |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 82 | static void |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 83 | storepath(const char *path) |
| 84 | { |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 85 | unsigned i; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 86 | |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 87 | if (pathmatch(path)) |
| 88 | return; /* already in table */ |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 89 | |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 90 | i = num_selected++; |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 91 | paths_selected = xreallocarray(paths_selected, num_selected, |
| 92 | sizeof(paths_selected[0])); |
Denys Vlasenko | 38cfe7c | 2013-03-05 16:01:53 +0100 | [diff] [blame] | 93 | paths_selected[i] = path; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Get path associated with fd. |
| 98 | */ |
Denys Vlasenko | 61ad0a4 | 2013-03-06 18:24:34 +0100 | [diff] [blame] | 99 | int |
| 100 | getfdpath(struct tcb *tcp, int fd, char *buf, unsigned bufsize) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 101 | { |
Denys Vlasenko | 384b0ad | 2012-03-15 18:11:51 +0100 | [diff] [blame] | 102 | char linkpath[sizeof("/proc/%u/fd/%u") + 2 * sizeof(int)*3]; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 103 | ssize_t n; |
| 104 | |
| 105 | if (fd < 0) |
Denys Vlasenko | 61ad0a4 | 2013-03-06 18:24:34 +0100 | [diff] [blame] | 106 | return -1; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 107 | |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame] | 108 | sprintf(linkpath, "/proc/%u/fd/%u", tcp->pid, fd); |
Denys Vlasenko | 61ad0a4 | 2013-03-06 18:24:34 +0100 | [diff] [blame] | 109 | n = readlink(linkpath, buf, bufsize - 1); |
| 110 | /* |
| 111 | * NB: if buf is too small, readlink doesn't fail, |
| 112 | * it returns truncated result (IOW: n == bufsize - 1). |
| 113 | */ |
| 114 | if (n >= 0) |
| 115 | buf[n] = '\0'; |
| 116 | return n; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | /* |
| 120 | * Add a path to the set we're tracing. Also add the canonicalized |
| 121 | * version of the path. Secifying NULL will delete all paths. |
| 122 | */ |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 123 | void |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 124 | pathtrace_select(const char *path) |
| 125 | { |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame] | 126 | char *rpath; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 127 | |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 128 | storepath(path); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 129 | |
| 130 | rpath = realpath(path, NULL); |
| 131 | |
| 132 | if (rpath == NULL) |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 133 | return; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 134 | |
| 135 | /* if realpath and specified path are same, we're done */ |
Denys Vlasenko | 29865e7 | 2012-03-15 18:03:56 +0100 | [diff] [blame] | 136 | if (strcmp(path, rpath) == 0) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 137 | free(rpath); |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 138 | return; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Dmitry V. Levin | 6c8ef05 | 2015-05-25 22:51:19 +0000 | [diff] [blame] | 141 | error_msg("Requested path '%s' resolved into '%s'", path, rpath); |
Denys Vlasenko | 7239dbc | 2013-03-05 15:46:34 +0100 | [diff] [blame] | 142 | storepath(rpath); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | /* |
| 146 | * Return true if syscall accesses a selected path |
| 147 | * (or if no paths have been specified for tracing). |
| 148 | */ |
| 149 | int |
| 150 | pathtrace_match(struct tcb *tcp) |
| 151 | { |
Denys Vlasenko | a9fe13c | 2013-02-22 13:26:10 +0100 | [diff] [blame] | 152 | const struct_sysent *s; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 153 | |
Denys Vlasenko | 74ec14f | 2013-02-21 16:13:47 +0100 | [diff] [blame] | 154 | s = tcp->s_ent; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 155 | |
Philippe Ombredanne | 894c7e3 | 2014-02-01 09:57:45 -0800 | [diff] [blame] | 156 | if (!(s->sys_flags & (TRACE_FILE | TRACE_DESC | TRACE_NETWORK))) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 157 | return 0; |
| 158 | |
| 159 | /* |
| 160 | * Check for special cases where we need to do something |
| 161 | * other than test arg[0]. |
| 162 | */ |
| 163 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 164 | switch (s->sen) { |
| 165 | case SEN_dup2: |
| 166 | case SEN_dup3: |
Dmitry V. Levin | ea19705 | 2015-11-22 18:51:05 +0000 | [diff] [blame] | 167 | case SEN_kexec_file_load: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 168 | case SEN_sendfile: |
| 169 | case SEN_sendfile64: |
| 170 | case SEN_tee: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 171 | /* fd, fd */ |
| 172 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 173 | fdmatch(tcp, tcp->u_arg[1]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 174 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 175 | case SEN_faccessat: |
| 176 | case SEN_fchmodat: |
| 177 | case SEN_fchownat: |
Dmitry V. Levin | c4da489 | 2016-08-23 14:27:49 +0000 | [diff] [blame] | 178 | case SEN_fstatat64: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 179 | case SEN_futimesat: |
| 180 | case SEN_inotify_add_watch: |
| 181 | case SEN_mkdirat: |
| 182 | case SEN_mknodat: |
Dmitry V. Levin | 4b3a170 | 2015-11-22 21:29:32 +0000 | [diff] [blame] | 183 | case SEN_name_to_handle_at: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 184 | case SEN_newfstatat: |
| 185 | case SEN_openat: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 186 | case SEN_readlinkat: |
Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 187 | case SEN_statx: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 188 | case SEN_unlinkat: |
| 189 | case SEN_utimensat: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 190 | /* fd, path */ |
| 191 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 192 | upathmatch(tcp, tcp->u_arg[1]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 193 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 194 | case SEN_link: |
| 195 | case SEN_mount: |
| 196 | case SEN_pivotroot: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 197 | /* path, path */ |
| 198 | return upathmatch(tcp, tcp->u_arg[0]) || |
| 199 | upathmatch(tcp, tcp->u_arg[1]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 200 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 201 | case SEN_quotactl: |
Dmitry V. Levin | 7943966 | 2012-10-26 23:43:13 +0000 | [diff] [blame] | 202 | /* x, path */ |
| 203 | return upathmatch(tcp, tcp->u_arg[1]); |
Dmitry V. Levin | 7943966 | 2012-10-26 23:43:13 +0000 | [diff] [blame] | 204 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 205 | case SEN_linkat: |
| 206 | case SEN_renameat2: |
| 207 | case SEN_renameat: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 208 | /* fd, path, fd, path */ |
| 209 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 210 | fdmatch(tcp, tcp->u_arg[2]) || |
| 211 | upathmatch(tcp, tcp->u_arg[1]) || |
| 212 | upathmatch(tcp, tcp->u_arg[3]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 213 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 214 | case SEN_old_mmap: |
Denys Vlasenko | 1ba8543 | 2013-02-19 11:28:20 +0100 | [diff] [blame] | 215 | #if defined(S390) |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 216 | case SEN_old_mmap_pgoff: |
Denys Vlasenko | 1ba8543 | 2013-02-19 11:28:20 +0100 | [diff] [blame] | 217 | #endif |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 218 | case SEN_mmap: |
| 219 | case SEN_mmap_4koff: |
| 220 | case SEN_mmap_pgoff: |
Dmitry V. Levin | dd1a80c | 2015-12-24 15:40:55 +0000 | [diff] [blame] | 221 | case SEN_ARCH_mmap: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 222 | /* x, x, x, x, fd */ |
| 223 | return fdmatch(tcp, tcp->u_arg[4]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 224 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 225 | case SEN_symlinkat: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 226 | /* path, fd, path */ |
| 227 | return fdmatch(tcp, tcp->u_arg[1]) || |
| 228 | upathmatch(tcp, tcp->u_arg[0]) || |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 229 | upathmatch(tcp, tcp->u_arg[2]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 230 | |
Dmitry V. Levin | c1f99f5 | 2016-02-13 03:45:32 +0000 | [diff] [blame] | 231 | case SEN_copy_file_range: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 232 | case SEN_splice: |
Dmitry V. Levin | c1f99f5 | 2016-02-13 03:45:32 +0000 | [diff] [blame] | 233 | /* fd, x, fd, x, x, x */ |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 234 | return fdmatch(tcp, tcp->u_arg[0]) || |
| 235 | fdmatch(tcp, tcp->u_arg[2]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 236 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 237 | case SEN_epoll_ctl: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 238 | /* x, x, fd, x */ |
| 239 | return fdmatch(tcp, tcp->u_arg[2]); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 240 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 241 | |
| 242 | case SEN_fanotify_mark: |
Dmitry V. Levin | 99db95d | 2014-02-05 04:13:18 +0000 | [diff] [blame] | 243 | /* x, x, x, fd, path */ |
| 244 | return fdmatch(tcp, tcp->u_arg[3]) || |
| 245 | upathmatch(tcp, tcp->u_arg[4]); |
Dmitry V. Levin | 99db95d | 2014-02-05 04:13:18 +0000 | [diff] [blame] | 246 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 247 | case SEN_oldselect: |
| 248 | case SEN_pselect6: |
| 249 | case SEN_select: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 250 | { |
Denys Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 251 | int i, j; |
Denys Vlasenko | 64778cb | 2013-11-09 20:46:55 +0100 | [diff] [blame] | 252 | int nfds; |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 253 | kernel_ulong_t *args; |
| 254 | kernel_ulong_t select_args[5]; |
| 255 | unsigned int oldselect_args[5]; |
| 256 | unsigned int fdsize; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 257 | fd_set *fds; |
| 258 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 259 | if (SEN_oldselect == s->sen) { |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 260 | if (sizeof(*select_args) == sizeof(*oldselect_args)) { |
| 261 | if (umove(tcp, tcp->u_arg[0], &select_args)) { |
| 262 | return 0; |
| 263 | } |
| 264 | } else { |
| 265 | unsigned int n; |
| 266 | |
| 267 | if (umove(tcp, tcp->u_arg[0], &oldselect_args)) { |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | for (n = 0; n < 5; ++n) { |
| 272 | select_args[n] = oldselect_args[n]; |
| 273 | } |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 274 | } |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 275 | args = select_args; |
| 276 | } else { |
| 277 | args = tcp->u_arg; |
Denys Vlasenko | 64778cb | 2013-11-09 20:46:55 +0100 | [diff] [blame] | 278 | } |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 279 | |
Denys Vlasenko | 64778cb | 2013-11-09 20:46:55 +0100 | [diff] [blame] | 280 | /* 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 Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 285 | /* Beware of select(2^31-1, NULL, NULL, NULL) and similar... */ |
Denys Vlasenko | 64778cb | 2013-11-09 20:46:55 +0100 | [diff] [blame] | 286 | if (nfds > 1024*1024) |
Denys Vlasenko | 79a79ea | 2011-09-01 16:35:44 +0200 | [diff] [blame] | 287 | nfds = 1024*1024; |
Denys Vlasenko | 64778cb | 2013-11-09 20:46:55 +0100 | [diff] [blame] | 288 | fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize; |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 289 | fds = xmalloc(fdsize); |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 290 | |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 291 | for (i = 1; i <= 3; ++i) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 292 | if (args[i] == 0) |
| 293 | continue; |
Denys Vlasenko | 7e69ed9 | 2015-03-21 19:50:53 +0100 | [diff] [blame] | 294 | if (umoven(tcp, args[i], fdsize, fds) < 0) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 295 | continue; |
| 296 | } |
Denys Vlasenko | 64778cb | 2013-11-09 20:46:55 +0100 | [diff] [blame] | 297 | for (j = 0;; j++) { |
| 298 | j = next_set_bit(fds, j, nfds); |
| 299 | if (j < 0) |
| 300 | break; |
| 301 | if (fdmatch(tcp, j)) { |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 302 | free(fds); |
| 303 | return 1; |
| 304 | } |
Denys Vlasenko | 64778cb | 2013-11-09 20:46:55 +0100 | [diff] [blame] | 305 | } |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 306 | } |
| 307 | free(fds); |
| 308 | return 0; |
| 309 | } |
| 310 | |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 311 | case SEN_poll: |
| 312 | case SEN_ppoll: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 313 | { |
| 314 | struct pollfd fds; |
| 315 | unsigned nfds; |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 316 | kernel_ulong_t start, cur, end; |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 317 | |
| 318 | start = tcp->u_arg[0]; |
| 319 | nfds = tcp->u_arg[1]; |
| 320 | |
| 321 | end = start + sizeof(fds) * nfds; |
| 322 | |
| 323 | if (nfds == 0 || end < start) |
| 324 | return 0; |
| 325 | |
| 326 | for (cur = start; cur < end; cur += sizeof(fds)) |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 327 | if ((umove(tcp, cur, &fds) == 0) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 328 | && fdmatch(tcp, fds.fd)) |
| 329 | return 1; |
| 330 | |
| 331 | return 0; |
| 332 | } |
| 333 | |
Dmitry V. Levin | ddb53dd | 2015-07-25 23:55:51 +0000 | [diff] [blame] | 334 | case SEN_bpf: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 335 | case SEN_epoll_create: |
Dmitry V. Levin | 2716346 | 2015-08-01 23:07:19 +0000 | [diff] [blame] | 336 | case SEN_epoll_create1: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 337 | case SEN_eventfd2: |
| 338 | case SEN_eventfd: |
| 339 | case SEN_fanotify_init: |
| 340 | case SEN_inotify_init1: |
Dmitry V. Levin | 95b84ea | 2015-07-28 23:03:41 +0000 | [diff] [blame] | 341 | case SEN_memfd_create: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 342 | case SEN_perf_event_open: |
| 343 | case SEN_pipe: |
Dmitry V. Levin | f9f04f7 | 2016-02-12 16:15:23 +0000 | [diff] [blame] | 344 | case SEN_pipe2: |
Elvira Khabirova | 483c15f | 2015-07-10 22:24:58 +0300 | [diff] [blame] | 345 | case SEN_printargs: |
| 346 | case SEN_socket: |
| 347 | case SEN_socketpair: |
| 348 | case SEN_timerfd_create: |
| 349 | case SEN_timerfd_gettime: |
| 350 | case SEN_timerfd_settime: |
Dmitry V. Levin | 87d64ed | 2015-11-22 19:56:00 +0000 | [diff] [blame] | 351 | case SEN_userfaultfd: |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 352 | /* |
Philippe Ombredanne | 894c7e3 | 2014-02-01 09:57:45 -0800 | [diff] [blame] | 353 | * These have TRACE_FILE or TRACE_DESCRIPTOR or TRACE_NETWORK set, |
| 354 | * but they don't have any file descriptor or path args to test. |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 355 | */ |
| 356 | return 0; |
| 357 | } |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 358 | |
| 359 | /* |
| 360 | * Our fallback position for calls that haven't already |
| 361 | * been handled is to just check arg[0]. |
| 362 | */ |
| 363 | |
| 364 | if (s->sys_flags & TRACE_FILE) |
| 365 | return upathmatch(tcp, tcp->u_arg[0]); |
| 366 | |
Philippe Ombredanne | 894c7e3 | 2014-02-01 09:57:45 -0800 | [diff] [blame] | 367 | if (s->sys_flags & (TRACE_DESC | TRACE_NETWORK)) |
Grant Edwards | 8a08277 | 2011-04-07 20:25:40 +0000 | [diff] [blame] | 368 | return fdmatch(tcp, tcp->u_arg[0]); |
| 369 | |
| 370 | return 0; |
| 371 | } |