Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl> |
| 3 | * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl> |
| 4 | * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com> |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * Redistribution and use in source and binary forms, with or without |
| 8 | * modification, are permitted provided that the following conditions |
| 9 | * are met: |
| 10 | * 1. Redistributions of source code must retain the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer. |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer in the |
| 14 | * documentation and/or other materials provided with the distribution. |
| 15 | * 3. The name of the author may not be used to endorse or promote products |
| 16 | * derived from this software without specific prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | * |
| 29 | * $Id$ |
| 30 | */ |
| 31 | |
| 32 | #include "defs.h" |
| 33 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 34 | #include <linux/version.h> |
Wichert Akkerman | d856b99 | 2000-10-13 12:47:12 +0000 | [diff] [blame] | 35 | #include <sys/timex.h> |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 36 | #include <linux/ioctl.h> |
| 37 | #include <linux/rtc.h> |
Roland McGrath | 6afc565 | 2007-07-24 01:57:11 +0000 | [diff] [blame] | 38 | |
| 39 | #ifndef UTIME_NOW |
| 40 | #define UTIME_NOW ((1l << 30) - 1l) |
| 41 | #endif |
| 42 | #ifndef UTIME_OMIT |
| 43 | #define UTIME_OMIT ((1l << 30) - 2l) |
| 44 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 45 | |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 46 | struct timeval32 |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 47 | { |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 48 | u_int32_t tv_sec, tv_usec; |
| 49 | }; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 50 | |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 51 | static void |
| 52 | tprint_timeval32(struct tcb *tcp, const struct timeval32 *tv) |
| 53 | { |
| 54 | tprintf("{%u, %u}", tv->tv_sec, tv->tv_usec); |
| 55 | } |
| 56 | |
| 57 | static void |
| 58 | tprint_timeval(struct tcb *tcp, const struct timeval *tv) |
| 59 | { |
| 60 | tprintf("{%lu, %lu}", |
| 61 | (unsigned long) tv->tv_sec, (unsigned long) tv->tv_usec); |
| 62 | } |
| 63 | |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 64 | void |
Roland McGrath | 6afc565 | 2007-07-24 01:57:11 +0000 | [diff] [blame] | 65 | printtv_bitness(struct tcb *tcp, long addr, enum bitness_t bitness, int special) |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 66 | { |
Denys Vlasenko | a1d541e | 2012-01-20 11:04:04 +0100 | [diff] [blame] | 67 | char buf[TIMEVAL_TEXT_BUFSIZE]; |
| 68 | sprinttv(buf, tcp, addr, bitness, special); |
| 69 | tprints(buf); |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 70 | } |
Wichert Akkerman | 221f54f | 1999-11-18 17:26:45 +0000 | [diff] [blame] | 71 | |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 72 | char * |
Denys Vlasenko | a1d541e | 2012-01-20 11:04:04 +0100 | [diff] [blame] | 73 | sprinttv(char *buf, struct tcb *tcp, long addr, enum bitness_t bitness, int special) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 74 | { |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 75 | int rc; |
| 76 | |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 77 | if (addr == 0) |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 78 | return stpcpy(buf, "NULL"); |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 79 | |
Denys Vlasenko | b9c7ae6 | 2011-09-01 11:40:40 +0200 | [diff] [blame] | 80 | if (!verbose(tcp)) |
| 81 | return buf + sprintf(buf, "%#lx", addr); |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 82 | |
| 83 | if (bitness == BITNESS_32 |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame^] | 84 | #if SUPPORTED_PERSONALITIES > 1 |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 85 | || personality_wordsize[current_personality] == 4 |
| 86 | #endif |
| 87 | ) |
| 88 | { |
| 89 | struct timeval32 tv; |
| 90 | |
| 91 | rc = umove(tcp, addr, &tv); |
Denys Vlasenko | a1d541e | 2012-01-20 11:04:04 +0100 | [diff] [blame] | 92 | if (rc >= 0) { |
| 93 | if (special && tv.tv_sec == 0) { |
| 94 | if (tv.tv_usec == UTIME_NOW) |
| 95 | return stpcpy(buf, "UTIME_NOW"); |
| 96 | if (tv.tv_usec == UTIME_OMIT) |
| 97 | return stpcpy(buf, "UTIME_OMIT"); |
| 98 | } |
Denys Vlasenko | b9c7ae6 | 2011-09-01 11:40:40 +0200 | [diff] [blame] | 99 | return buf + sprintf(buf, "{%u, %u}", |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 100 | tv.tv_sec, tv.tv_usec); |
Denys Vlasenko | a1d541e | 2012-01-20 11:04:04 +0100 | [diff] [blame] | 101 | } |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 102 | } else { |
| 103 | struct timeval tv; |
| 104 | |
| 105 | rc = umove(tcp, addr, &tv); |
Denys Vlasenko | a1d541e | 2012-01-20 11:04:04 +0100 | [diff] [blame] | 106 | if (rc >= 0) { |
| 107 | if (special && tv.tv_sec == 0) { |
| 108 | if (tv.tv_usec == UTIME_NOW) |
| 109 | return stpcpy(buf, "UTIME_NOW"); |
| 110 | if (tv.tv_usec == UTIME_OMIT) |
| 111 | return stpcpy(buf, "UTIME_OMIT"); |
| 112 | } |
Denys Vlasenko | b9c7ae6 | 2011-09-01 11:40:40 +0200 | [diff] [blame] | 113 | return buf + sprintf(buf, "{%lu, %lu}", |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 114 | (unsigned long) tv.tv_sec, |
| 115 | (unsigned long) tv.tv_usec); |
Denys Vlasenko | a1d541e | 2012-01-20 11:04:04 +0100 | [diff] [blame] | 116 | } |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 117 | } |
Denys Vlasenko | 2fb4db3 | 2011-08-31 12:26:03 +0200 | [diff] [blame] | 118 | |
Denys Vlasenko | b9c7ae6 | 2011-09-01 11:40:40 +0200 | [diff] [blame] | 119 | return stpcpy(buf, "{...}"); |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 120 | } |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 121 | |
Denys Vlasenko | a1d541e | 2012-01-20 11:04:04 +0100 | [diff] [blame] | 122 | void |
| 123 | print_timespec(struct tcb *tcp, long addr) |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 124 | { |
Denys Vlasenko | a1d541e | 2012-01-20 11:04:04 +0100 | [diff] [blame] | 125 | char buf[TIMESPEC_TEXT_BUFSIZE]; |
| 126 | sprint_timespec(buf, tcp, addr); |
| 127 | tprints(buf); |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Denys Vlasenko | a1d541e | 2012-01-20 11:04:04 +0100 | [diff] [blame] | 130 | void |
| 131 | sprint_timespec(char *buf, struct tcb *tcp, long addr) |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 132 | { |
| 133 | if (addr == 0) |
| 134 | strcpy(buf, "NULL"); |
| 135 | else if (!verbose(tcp)) |
| 136 | sprintf(buf, "%#lx", addr); |
| 137 | else { |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 138 | int rc; |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 139 | |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame^] | 140 | #if SUPPORTED_PERSONALITIES > 1 |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 141 | if (personality_wordsize[current_personality] == 4) { |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 142 | struct timeval32 tv; |
| 143 | |
Denys Vlasenko | 5d64581 | 2011-08-20 12:48:18 +0200 | [diff] [blame] | 144 | rc = umove(tcp, addr, &tv); |
| 145 | if (rc >= 0) |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 146 | sprintf(buf, "{%u, %u}", |
| 147 | tv.tv_sec, tv.tv_usec); |
| 148 | } else |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 149 | #endif |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 150 | { |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 151 | struct timespec ts; |
| 152 | |
Denys Vlasenko | 5d64581 | 2011-08-20 12:48:18 +0200 | [diff] [blame] | 153 | rc = umove(tcp, addr, &ts); |
| 154 | if (rc >= 0) |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 155 | sprintf(buf, "{%lu, %lu}", |
| 156 | (unsigned long) ts.tv_sec, |
| 157 | (unsigned long) ts.tv_nsec); |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 158 | } |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 159 | if (rc < 0) |
| 160 | strcpy(buf, "{...}"); |
| 161 | } |
| 162 | } |
| 163 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 164 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 165 | sys_time(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 166 | { |
| 167 | if (exiting(tcp)) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 168 | printnum(tcp, tcp->u_arg[0], "%ld"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 169 | } |
| 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 174 | sys_stime(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 175 | { |
| 176 | if (exiting(tcp)) { |
| 177 | printnum(tcp, tcp->u_arg[0], "%ld"); |
| 178 | } |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 183 | sys_gettimeofday(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 184 | { |
| 185 | if (exiting(tcp)) { |
| 186 | if (syserror(tcp)) { |
| 187 | tprintf("%#lx, %#lx", |
| 188 | tcp->u_arg[0], tcp->u_arg[1]); |
| 189 | return 0; |
| 190 | } |
| 191 | printtv(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 192 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 193 | printtv(tcp, tcp->u_arg[1]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 194 | } |
| 195 | return 0; |
| 196 | } |
| 197 | |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 198 | |
| 199 | #ifdef ALPHA |
| 200 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 201 | sys_osf_gettimeofday(struct tcb *tcp) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 202 | { |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 203 | if (exiting(tcp)) { |
| 204 | if (syserror(tcp)) { |
| 205 | tprintf("%#lx, %#lx", tcp->u_arg[0], tcp->u_arg[1]); |
| 206 | return 0; |
| 207 | } |
| 208 | printtv_bitness(tcp, tcp->u_arg[0], BITNESS_32, 0); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 209 | tprints(", "); |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 210 | printtv_bitness(tcp, tcp->u_arg[1], BITNESS_32, 0); |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 211 | } |
| 212 | return 0; |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 213 | } |
| 214 | #endif |
| 215 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 216 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 217 | sys_settimeofday(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 218 | { |
| 219 | if (entering(tcp)) { |
| 220 | printtv(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 221 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 222 | printtv(tcp, tcp->u_arg[1]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 223 | } |
| 224 | return 0; |
| 225 | } |
| 226 | |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 227 | #ifdef ALPHA |
| 228 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 229 | sys_osf_settimeofday(struct tcb *tcp) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 230 | { |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 231 | if (entering(tcp)) { |
| 232 | printtv_bitness(tcp, tcp->u_arg[0], BITNESS_32, 0); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 233 | tprints(", "); |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 234 | printtv_bitness(tcp, tcp->u_arg[1], BITNESS_32, 0); |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 235 | } |
| 236 | return 0; |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 237 | } |
| 238 | #endif |
| 239 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 240 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 241 | sys_adjtime(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 242 | { |
| 243 | if (entering(tcp)) { |
| 244 | printtv(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 245 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 246 | } else { |
| 247 | if (syserror(tcp)) |
| 248 | tprintf("%#lx", tcp->u_arg[1]); |
| 249 | else |
| 250 | printtv(tcp, tcp->u_arg[1]); |
| 251 | } |
| 252 | return 0; |
| 253 | } |
| 254 | |
Dmitry V. Levin | 2e55ff4 | 2008-09-03 01:02:46 +0000 | [diff] [blame] | 255 | int |
| 256 | sys_nanosleep(struct tcb *tcp) |
| 257 | { |
| 258 | if (entering(tcp)) { |
| 259 | print_timespec(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 260 | tprints(", "); |
Dmitry V. Levin | 2e55ff4 | 2008-09-03 01:02:46 +0000 | [diff] [blame] | 261 | } else { |
Denys Vlasenko | 64acaa1 | 2012-01-28 02:29:36 +0100 | [diff] [blame] | 262 | /* Second (returned) timespec is only significant |
| 263 | * if syscall was interrupted. We print only its address |
| 264 | * on _success_, since kernel doesn't modify its value. |
| 265 | */ |
| 266 | if (is_restart_error(tcp) || !tcp->u_arg[1]) |
| 267 | /* Interrupted (or NULL) */ |
Dmitry V. Levin | 2e55ff4 | 2008-09-03 01:02:46 +0000 | [diff] [blame] | 268 | print_timespec(tcp, tcp->u_arg[1]); |
| 269 | else |
Denys Vlasenko | 64acaa1 | 2012-01-28 02:29:36 +0100 | [diff] [blame] | 270 | /* Success */ |
Dmitry V. Levin | 2e55ff4 | 2008-09-03 01:02:46 +0000 | [diff] [blame] | 271 | tprintf("%#lx", tcp->u_arg[1]); |
| 272 | } |
| 273 | return 0; |
| 274 | } |
| 275 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 276 | static const struct xlat which[] = { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 277 | { ITIMER_REAL, "ITIMER_REAL" }, |
| 278 | { ITIMER_VIRTUAL,"ITIMER_VIRTUAL"}, |
| 279 | { ITIMER_PROF, "ITIMER_PROF" }, |
| 280 | { 0, NULL }, |
| 281 | }; |
| 282 | |
| 283 | static void |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 284 | printitv_bitness(struct tcb *tcp, long addr, enum bitness_t bitness) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 285 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 286 | if (addr == 0) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 287 | tprints("NULL"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 288 | else if (!verbose(tcp)) |
| 289 | tprintf("%#lx", addr); |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 290 | else { |
| 291 | int rc; |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 292 | |
| 293 | if (bitness == BITNESS_32 |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame^] | 294 | #if SUPPORTED_PERSONALITIES > 1 |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 295 | || personality_wordsize[current_personality] == 4 |
| 296 | #endif |
| 297 | ) |
| 298 | { |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 299 | struct { |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 300 | struct timeval32 it_interval, it_value; |
| 301 | } itv; |
| 302 | |
Denys Vlasenko | 5d64581 | 2011-08-20 12:48:18 +0200 | [diff] [blame] | 303 | rc = umove(tcp, addr, &itv); |
| 304 | if (rc >= 0) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 305 | tprints("{it_interval="); |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 306 | tprint_timeval32(tcp, &itv.it_interval); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 307 | tprints(", it_value="); |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 308 | tprint_timeval32(tcp, &itv.it_value); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 309 | tprints("}"); |
Roland McGrath | e466234 | 2007-08-02 01:25:34 +0000 | [diff] [blame] | 310 | } |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 311 | } else { |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 312 | struct itimerval itv; |
| 313 | |
Denys Vlasenko | 5d64581 | 2011-08-20 12:48:18 +0200 | [diff] [blame] | 314 | rc = umove(tcp, addr, &itv); |
| 315 | if (rc >= 0) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 316 | tprints("{it_interval="); |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 317 | tprint_timeval(tcp, &itv.it_interval); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 318 | tprints(", it_value="); |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 319 | tprint_timeval(tcp, &itv.it_value); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 320 | tprints("}"); |
Roland McGrath | e466234 | 2007-08-02 01:25:34 +0000 | [diff] [blame] | 321 | } |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 322 | } |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 323 | if (rc < 0) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 324 | tprints("{...}"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 325 | } |
| 326 | } |
| 327 | |
Dmitry V. Levin | 1cad25d | 2006-12-13 17:14:36 +0000 | [diff] [blame] | 328 | #define printitv(tcp, addr) \ |
| 329 | printitv_bitness((tcp), (addr), BITNESS_CURRENT) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 330 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 331 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 332 | sys_getitimer(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 333 | { |
| 334 | if (entering(tcp)) { |
| 335 | printxval(which, tcp->u_arg[0], "ITIMER_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 336 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 337 | } else { |
| 338 | if (syserror(tcp)) |
| 339 | tprintf("%#lx", tcp->u_arg[1]); |
| 340 | else |
| 341 | printitv(tcp, tcp->u_arg[1]); |
| 342 | } |
| 343 | return 0; |
| 344 | } |
| 345 | |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 346 | |
| 347 | #ifdef ALPHA |
| 348 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 349 | sys_osf_getitimer(struct tcb *tcp) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 350 | { |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 351 | if (entering(tcp)) { |
| 352 | printxval(which, tcp->u_arg[0], "ITIMER_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 353 | tprints(", "); |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 354 | } else { |
| 355 | if (syserror(tcp)) |
| 356 | tprintf("%#lx", tcp->u_arg[1]); |
| 357 | else |
| 358 | printitv_bitness(tcp, tcp->u_arg[1], BITNESS_32); |
| 359 | } |
| 360 | return 0; |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 361 | } |
| 362 | #endif |
| 363 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 364 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 365 | sys_setitimer(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 366 | { |
| 367 | if (entering(tcp)) { |
| 368 | printxval(which, tcp->u_arg[0], "ITIMER_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 369 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 370 | printitv(tcp, tcp->u_arg[1]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 371 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 372 | } else { |
| 373 | if (syserror(tcp)) |
| 374 | tprintf("%#lx", tcp->u_arg[2]); |
| 375 | else |
| 376 | printitv(tcp, tcp->u_arg[2]); |
| 377 | } |
| 378 | return 0; |
| 379 | } |
| 380 | |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 381 | #ifdef ALPHA |
| 382 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 383 | sys_osf_setitimer(struct tcb *tcp) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 384 | { |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 385 | if (entering(tcp)) { |
| 386 | printxval(which, tcp->u_arg[0], "ITIMER_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 387 | tprints(", "); |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 388 | printitv_bitness(tcp, tcp->u_arg[1], BITNESS_32); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 389 | tprints(", "); |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 390 | } else { |
| 391 | if (syserror(tcp)) |
| 392 | tprintf("%#lx", tcp->u_arg[2]); |
| 393 | else |
| 394 | printitv_bitness(tcp, tcp->u_arg[2], BITNESS_32); |
| 395 | } |
| 396 | return 0; |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 397 | } |
| 398 | #endif |
| 399 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 400 | |
Dmitry V. Levin | 1a684d6 | 2006-12-13 17:42:32 +0000 | [diff] [blame] | 401 | static const struct xlat adjtimex_modes[] = { |
| 402 | { 0, "0" }, |
| 403 | #ifdef ADJ_OFFSET |
| 404 | { ADJ_OFFSET, "ADJ_OFFSET" }, |
| 405 | #endif |
| 406 | #ifdef ADJ_FREQUENCY |
| 407 | { ADJ_FREQUENCY, "ADJ_FREQUENCY" }, |
| 408 | #endif |
| 409 | #ifdef ADJ_MAXERROR |
| 410 | { ADJ_MAXERROR, "ADJ_MAXERROR" }, |
| 411 | #endif |
| 412 | #ifdef ADJ_ESTERROR |
| 413 | { ADJ_ESTERROR, "ADJ_ESTERROR" }, |
| 414 | #endif |
| 415 | #ifdef ADJ_STATUS |
| 416 | { ADJ_STATUS, "ADJ_STATUS" }, |
| 417 | #endif |
| 418 | #ifdef ADJ_TIMECONST |
| 419 | { ADJ_TIMECONST, "ADJ_TIMECONST" }, |
| 420 | #endif |
| 421 | #ifdef ADJ_TICK |
| 422 | { ADJ_TICK, "ADJ_TICK" }, |
| 423 | #endif |
| 424 | #ifdef ADJ_OFFSET_SINGLESHOT |
| 425 | { ADJ_OFFSET_SINGLESHOT, "ADJ_OFFSET_SINGLESHOT" }, |
| 426 | #endif |
| 427 | { 0, NULL } |
| 428 | }; |
| 429 | |
| 430 | static const struct xlat adjtimex_status[] = { |
| 431 | #ifdef STA_PLL |
| 432 | { STA_PLL, "STA_PLL" }, |
| 433 | #endif |
| 434 | #ifdef STA_PPSFREQ |
| 435 | { STA_PPSFREQ, "STA_PPSFREQ" }, |
| 436 | #endif |
| 437 | #ifdef STA_PPSTIME |
| 438 | { STA_PPSTIME, "STA_PPSTIME" }, |
| 439 | #endif |
| 440 | #ifdef STA_FLL |
| 441 | { STA_FLL, "STA_FLL" }, |
| 442 | #endif |
| 443 | #ifdef STA_INS |
| 444 | { STA_INS, "STA_INS" }, |
| 445 | #endif |
| 446 | #ifdef STA_DEL |
| 447 | { STA_DEL, "STA_DEL" }, |
| 448 | #endif |
| 449 | #ifdef STA_UNSYNC |
| 450 | { STA_UNSYNC, "STA_UNSYNC" }, |
| 451 | #endif |
| 452 | #ifdef STA_FREQHOLD |
| 453 | { STA_FREQHOLD, "STA_FREQHOLD" }, |
| 454 | #endif |
| 455 | #ifdef STA_PPSSIGNAL |
| 456 | { STA_PPSSIGNAL, "STA_PPSSIGNAL" }, |
| 457 | #endif |
| 458 | #ifdef STA_PPSJITTER |
| 459 | { STA_PPSJITTER, "STA_PPSJITTER" }, |
| 460 | #endif |
| 461 | #ifdef STA_PPSWANDER |
| 462 | { STA_PPSWANDER, "STA_PPSWANDER" }, |
| 463 | #endif |
| 464 | #ifdef STA_PPSERROR |
| 465 | { STA_PPSERROR, "STA_PPSERROR" }, |
| 466 | #endif |
| 467 | #ifdef STA_CLOCKERR |
| 468 | { STA_CLOCKERR, "STA_CLOCKERR" }, |
| 469 | #endif |
| 470 | { 0, NULL } |
| 471 | }; |
| 472 | |
| 473 | static const struct xlat adjtimex_state[] = { |
| 474 | #ifdef TIME_OK |
| 475 | { TIME_OK, "TIME_OK" }, |
| 476 | #endif |
| 477 | #ifdef TIME_INS |
| 478 | { TIME_INS, "TIME_INS" }, |
| 479 | #endif |
| 480 | #ifdef TIME_DEL |
| 481 | { TIME_DEL, "TIME_DEL" }, |
| 482 | #endif |
| 483 | #ifdef TIME_OOP |
| 484 | { TIME_OOP, "TIME_OOP" }, |
| 485 | #endif |
| 486 | #ifdef TIME_WAIT |
| 487 | { TIME_WAIT, "TIME_WAIT" }, |
| 488 | #endif |
| 489 | #ifdef TIME_ERROR |
| 490 | { TIME_ERROR, "TIME_ERROR" }, |
| 491 | #endif |
| 492 | { 0, NULL } |
| 493 | }; |
| 494 | |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 495 | #if SUPPORTED_PERSONALITIES > 1 |
| 496 | static int |
| 497 | tprint_timex32(struct tcb *tcp, long addr) |
| 498 | { |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 499 | struct { |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 500 | unsigned int modes; |
| 501 | int offset; |
| 502 | int freq; |
| 503 | int maxerror; |
| 504 | int esterror; |
| 505 | int status; |
| 506 | int constant; |
| 507 | int precision; |
| 508 | int tolerance; |
| 509 | struct timeval32 time; |
| 510 | int tick; |
| 511 | int ppsfreq; |
| 512 | int jitter; |
| 513 | int shift; |
| 514 | int stabil; |
| 515 | int jitcnt; |
| 516 | int calcnt; |
| 517 | int errcnt; |
| 518 | int stbcnt; |
| 519 | } tx; |
| 520 | |
| 521 | if (umove(tcp, addr, &tx) < 0) |
| 522 | return -1; |
| 523 | |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 524 | tprints("{modes="); |
Dmitry V. Levin | 71d7089 | 2007-01-13 11:17:38 +0000 | [diff] [blame] | 525 | printflags(adjtimex_modes, tx.modes, "ADJ_???"); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 526 | tprintf(", offset=%d, freq=%d, maxerror=%d, ", |
| 527 | tx.offset, tx.freq, tx.maxerror); |
| 528 | tprintf("esterror=%u, status=", tx.esterror); |
| 529 | printflags(adjtimex_status, tx.status, "STA_???"); |
| 530 | tprintf(", constant=%d, precision=%u, ", |
| 531 | tx.constant, tx.precision); |
| 532 | tprintf("tolerance=%d, time=", tx.tolerance); |
| 533 | tprint_timeval32(tcp, &tx.time); |
| 534 | tprintf(", tick=%d, ppsfreq=%d, jitter=%d", |
| 535 | tx.tick, tx.ppsfreq, tx.jitter); |
| 536 | tprintf(", shift=%d, stabil=%d, jitcnt=%d", |
| 537 | tx.shift, tx.stabil, tx.jitcnt); |
| 538 | tprintf(", calcnt=%d, errcnt=%d, stbcnt=%d", |
| 539 | tx.calcnt, tx.errcnt, tx.stbcnt); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 540 | tprints("}"); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 541 | return 0; |
| 542 | } |
| 543 | #endif /* SUPPORTED_PERSONALITIES > 1 */ |
| 544 | |
| 545 | static int |
| 546 | tprint_timex(struct tcb *tcp, long addr) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 547 | { |
Dmitry V. Levin | 1a684d6 | 2006-12-13 17:42:32 +0000 | [diff] [blame] | 548 | struct timex tx; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 549 | |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 550 | #if SUPPORTED_PERSONALITIES > 1 |
| 551 | if (personality_wordsize[current_personality] == 4) |
| 552 | return tprint_timex32(tcp, addr); |
| 553 | #endif |
| 554 | if (umove(tcp, addr, &tx) < 0) |
| 555 | return -1; |
| 556 | |
| 557 | #if LINUX_VERSION_CODE < 66332 |
| 558 | tprintf("{mode=%d, offset=%ld, frequency=%ld, ", |
| 559 | tx.mode, tx.offset, tx.frequency); |
| 560 | tprintf("maxerror=%ld, esterror=%lu, status=%u, ", |
| 561 | tx.maxerror, tx.esterror, tx.status); |
| 562 | tprintf("time_constant=%ld, precision=%lu, ", |
| 563 | tx.time_constant, tx.precision); |
| 564 | tprintf("tolerance=%ld, time=", tx.tolerance); |
| 565 | tprint_timeval(tcp, &tx.time); |
| 566 | #else |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 567 | tprints("{modes="); |
Dmitry V. Levin | 71d7089 | 2007-01-13 11:17:38 +0000 | [diff] [blame] | 568 | printflags(adjtimex_modes, tx.modes, "ADJ_???"); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 569 | tprintf(", offset=%ld, freq=%ld, maxerror=%ld, ", |
H.J. Lu | 0b315b6 | 2012-02-03 10:16:03 -0800 | [diff] [blame] | 570 | (long) tx.offset, (long) tx.freq, (long) tx.maxerror); |
| 571 | tprintf("esterror=%lu, status=", (long) tx.esterror); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 572 | printflags(adjtimex_status, tx.status, "STA_???"); |
| 573 | tprintf(", constant=%ld, precision=%lu, ", |
H.J. Lu | 0b315b6 | 2012-02-03 10:16:03 -0800 | [diff] [blame] | 574 | (long) tx.constant, (long) tx.precision); |
| 575 | tprintf("tolerance=%ld, time=", (long) tx.tolerance); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 576 | tprint_timeval(tcp, &tx.time); |
| 577 | tprintf(", tick=%ld, ppsfreq=%ld, jitter=%ld", |
H.J. Lu | 0b315b6 | 2012-02-03 10:16:03 -0800 | [diff] [blame] | 578 | (long) tx.tick, (long) tx.ppsfreq, (long) tx.jitter); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 579 | tprintf(", shift=%d, stabil=%ld, jitcnt=%ld", |
H.J. Lu | 0b315b6 | 2012-02-03 10:16:03 -0800 | [diff] [blame] | 580 | tx.shift, (long) tx.stabil, (long) tx.jitcnt); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 581 | tprintf(", calcnt=%ld, errcnt=%ld, stbcnt=%ld", |
H.J. Lu | 0b315b6 | 2012-02-03 10:16:03 -0800 | [diff] [blame] | 582 | (long) tx.calcnt, (long) tx.errcnt, (long) tx.stbcnt); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 583 | #endif |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 584 | tprints("}"); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | int |
| 589 | sys_adjtimex(struct tcb *tcp) |
| 590 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 591 | if (exiting(tcp)) { |
| 592 | if (tcp->u_arg[0] == 0) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 593 | tprints("NULL"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 594 | else if (syserror(tcp) || !verbose(tcp)) |
| 595 | tprintf("%#lx", tcp->u_arg[0]); |
Dmitry V. Levin | 165b15d | 2006-12-13 17:43:45 +0000 | [diff] [blame] | 596 | else if (tprint_timex(tcp, tcp->u_arg[0]) < 0) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 597 | tprints("{...}"); |
Dmitry V. Levin | 21a7534 | 2008-09-03 01:22:18 +0000 | [diff] [blame] | 598 | if (syserror(tcp)) |
| 599 | return 0; |
Dmitry V. Levin | 1a684d6 | 2006-12-13 17:42:32 +0000 | [diff] [blame] | 600 | tcp->auxstr = xlookup(adjtimex_state, tcp->u_rval); |
| 601 | if (tcp->auxstr) |
| 602 | return RVAL_STR; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 603 | } |
| 604 | return 0; |
| 605 | } |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 606 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 607 | static const struct xlat clockflags[] = { |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 608 | { TIMER_ABSTIME, "TIMER_ABSTIME" }, |
| 609 | { 0, NULL } |
| 610 | }; |
| 611 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 612 | static const struct xlat clocknames[] = { |
Roland McGrath | 55a00f8 | 2004-08-31 08:26:39 +0000 | [diff] [blame] | 613 | #ifdef CLOCK_REALTIME |
Roland McGrath | 54a4edd | 2004-08-31 06:52:45 +0000 | [diff] [blame] | 614 | { CLOCK_REALTIME, "CLOCK_REALTIME" }, |
Roland McGrath | 55a00f8 | 2004-08-31 08:26:39 +0000 | [diff] [blame] | 615 | #endif |
| 616 | #ifdef CLOCK_MONOTONIC |
Roland McGrath | 54a4edd | 2004-08-31 06:52:45 +0000 | [diff] [blame] | 617 | { CLOCK_MONOTONIC, "CLOCK_MONOTONIC" }, |
Roland McGrath | 55a00f8 | 2004-08-31 08:26:39 +0000 | [diff] [blame] | 618 | #endif |
Dmitry V. Levin | cbaaf79 | 2010-09-17 09:19:49 +0000 | [diff] [blame] | 619 | #ifdef CLOCK_PROCESS_CPUTIME_ID |
| 620 | { CLOCK_PROCESS_CPUTIME_ID, "CLOCK_PROCESS_CPUTIME_ID" }, |
| 621 | #endif |
| 622 | #ifdef CLOCK_THREAD_CPUTIME_ID |
| 623 | { CLOCK_THREAD_CPUTIME_ID, "CLOCK_THREAD_CPUTIME_ID" }, |
| 624 | #endif |
| 625 | #ifdef CLOCK_MONOTONIC_RAW |
| 626 | { CLOCK_MONOTONIC_RAW, "CLOCK_MONOTONIC_RAW" }, |
| 627 | #endif |
| 628 | #ifdef CLOCK_REALTIME_COARSE |
| 629 | { CLOCK_REALTIME_COARSE, "CLOCK_REALTIME_COARSE" }, |
| 630 | #endif |
| 631 | #ifdef CLOCK_MONOTONIC_COARSE |
| 632 | { CLOCK_MONOTONIC_COARSE, "CLOCK_MONOTONIC_COARSE" }, |
| 633 | #endif |
| 634 | { 0, NULL } |
Roland McGrath | 54a4edd | 2004-08-31 06:52:45 +0000 | [diff] [blame] | 635 | }; |
| 636 | |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 637 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 638 | sys_clock_settime(struct tcb *tcp) |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 639 | { |
| 640 | if (entering(tcp)) { |
Roland McGrath | 54a4edd | 2004-08-31 06:52:45 +0000 | [diff] [blame] | 641 | printxval(clocknames, tcp->u_arg[0], "CLOCK_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 642 | tprints(", "); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 643 | printtv(tcp, tcp->u_arg[1]); |
| 644 | } |
| 645 | return 0; |
| 646 | } |
| 647 | |
| 648 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 649 | sys_clock_gettime(struct tcb *tcp) |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 650 | { |
| 651 | if (entering(tcp)) { |
Roland McGrath | 54a4edd | 2004-08-31 06:52:45 +0000 | [diff] [blame] | 652 | printxval(clocknames, tcp->u_arg[0], "CLOCK_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 653 | tprints(", "); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 654 | } else { |
| 655 | if (syserror(tcp)) |
| 656 | tprintf("%#lx", tcp->u_arg[1]); |
| 657 | else |
| 658 | printtv(tcp, tcp->u_arg[1]); |
| 659 | } |
| 660 | return 0; |
| 661 | } |
| 662 | |
| 663 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 664 | sys_clock_nanosleep(struct tcb *tcp) |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 665 | { |
| 666 | if (entering(tcp)) { |
Roland McGrath | 54a4edd | 2004-08-31 06:52:45 +0000 | [diff] [blame] | 667 | printxval(clocknames, tcp->u_arg[0], "CLOCK_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 668 | tprints(", "); |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 669 | printflags(clockflags, tcp->u_arg[1], "TIMER_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 670 | tprints(", "); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 671 | printtv(tcp, tcp->u_arg[2]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 672 | tprints(", "); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 673 | } else { |
| 674 | if (syserror(tcp)) |
| 675 | tprintf("%#lx", tcp->u_arg[3]); |
| 676 | else |
| 677 | printtv(tcp, tcp->u_arg[3]); |
| 678 | } |
| 679 | return 0; |
| 680 | } |
| 681 | |
| 682 | #ifndef SIGEV_THREAD_ID |
| 683 | # define SIGEV_THREAD_ID 4 |
| 684 | #endif |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 685 | static const struct xlat sigev_value[] = { |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 686 | { SIGEV_SIGNAL+1, "SIGEV_SIGNAL" }, |
| 687 | { SIGEV_NONE+1, "SIGEV_NONE" }, |
| 688 | { SIGEV_THREAD+1, "SIGEV_THREAD" }, |
| 689 | { SIGEV_THREAD_ID+1, "SIGEV_THREAD_ID" }, |
| 690 | { 0, NULL } |
| 691 | }; |
| 692 | |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 693 | #if SUPPORTED_PERSONALITIES > 1 |
| 694 | static void |
| 695 | printsigevent32(struct tcb *tcp, long arg) |
| 696 | { |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 697 | struct { |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 698 | int sigev_value; |
| 699 | int sigev_signo; |
| 700 | int sigev_notify; |
| 701 | |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 702 | union { |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 703 | int tid; |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 704 | struct { |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 705 | int function, attribute; |
| 706 | } thread; |
| 707 | } un; |
| 708 | } sev; |
| 709 | |
| 710 | if (umove(tcp, arg, &sev) < 0) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 711 | tprints("{...}"); |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 712 | else { |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 713 | tprintf("{%#x, ", sev.sigev_value); |
| 714 | if (sev.sigev_notify == SIGEV_SIGNAL) |
| 715 | tprintf("%s, ", signame(sev.sigev_signo)); |
| 716 | else |
| 717 | tprintf("%u, ", sev.sigev_signo); |
| 718 | printxval(sigev_value, sev.sigev_notify + 1, "SIGEV_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 719 | tprints(", "); |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 720 | if (sev.sigev_notify == SIGEV_THREAD_ID) |
| 721 | tprintf("{%d}", sev.un.tid); |
| 722 | else if (sev.sigev_notify == SIGEV_THREAD) |
| 723 | tprintf("{%#x, %#x}", |
| 724 | sev.un.thread.function, |
| 725 | sev.un.thread.attribute); |
| 726 | else |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 727 | tprints("{...}"); |
| 728 | tprints("}"); |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 729 | } |
| 730 | } |
| 731 | #endif |
| 732 | |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 733 | void |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 734 | printsigevent(struct tcb *tcp, long arg) |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 735 | { |
| 736 | struct sigevent sev; |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 737 | |
| 738 | #if SUPPORTED_PERSONALITIES > 1 |
Denys Vlasenko | 7b609d5 | 2011-06-22 14:32:43 +0200 | [diff] [blame] | 739 | if (personality_wordsize[current_personality] == 4) { |
Dmitry V. Levin | d3cb392 | 2006-12-13 17:45:02 +0000 | [diff] [blame] | 740 | printsigevent32(tcp, arg); |
| 741 | return; |
| 742 | } |
| 743 | #endif |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 744 | if (umove(tcp, arg, &sev) < 0) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 745 | tprints("{...}"); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 746 | else { |
Roland McGrath | 675d4a6 | 2004-09-11 08:12:45 +0000 | [diff] [blame] | 747 | tprintf("{%p, ", sev.sigev_value.sival_ptr); |
| 748 | if (sev.sigev_notify == SIGEV_SIGNAL) |
| 749 | tprintf("%s, ", signame(sev.sigev_signo)); |
| 750 | else |
| 751 | tprintf("%u, ", sev.sigev_signo); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 752 | printxval(sigev_value, sev.sigev_notify+1, "SIGEV_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 753 | tprints(", "); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 754 | if (sev.sigev_notify == SIGEV_THREAD_ID) |
| 755 | /* _pad[0] is the _tid field which might not be |
| 756 | present in the userlevel definition of the |
| 757 | struct. */ |
| 758 | tprintf("{%d}", sev._sigev_un._pad[0]); |
Roland McGrath | d4c85eb | 2004-04-16 21:48:44 +0000 | [diff] [blame] | 759 | else if (sev.sigev_notify == SIGEV_THREAD) |
| 760 | tprintf("{%p, %p}", sev.sigev_notify_function, |
| 761 | sev.sigev_notify_attributes); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 762 | else |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 763 | tprints("{...}"); |
| 764 | tprints("}"); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 765 | } |
| 766 | } |
| 767 | |
| 768 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 769 | sys_timer_create(struct tcb *tcp) |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 770 | { |
| 771 | if (entering(tcp)) { |
Roland McGrath | 675d4a6 | 2004-09-11 08:12:45 +0000 | [diff] [blame] | 772 | printxval(clocknames, tcp->u_arg[0], "CLOCK_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 773 | tprints(", "); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 774 | printsigevent(tcp, tcp->u_arg[1]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 775 | tprints(", "); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 776 | } else { |
Andi Kleen | 732f396 | 2011-06-13 21:37:40 +0000 | [diff] [blame] | 777 | int timer_id; |
Dmitry V. Levin | ac518d1 | 2006-12-13 17:03:02 +0000 | [diff] [blame] | 778 | |
Andi Kleen | 732f396 | 2011-06-13 21:37:40 +0000 | [diff] [blame] | 779 | if (syserror(tcp) || umove(tcp, tcp->u_arg[2], &timer_id) < 0) |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 780 | tprintf("%#lx", tcp->u_arg[2]); |
Dmitry V. Levin | ac518d1 | 2006-12-13 17:03:02 +0000 | [diff] [blame] | 781 | else |
Andi Kleen | 732f396 | 2011-06-13 21:37:40 +0000 | [diff] [blame] | 782 | tprintf("{%d}", timer_id); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 783 | } |
| 784 | return 0; |
| 785 | } |
| 786 | |
| 787 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 788 | sys_timer_settime(struct tcb *tcp) |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 789 | { |
| 790 | if (entering(tcp)) { |
| 791 | tprintf("%#lx, ", tcp->u_arg[0]); |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 792 | printflags(clockflags, tcp->u_arg[1], "TIMER_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 793 | tprints(", "); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 794 | printitv(tcp, tcp->u_arg[2]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 795 | tprints(", "); |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 796 | } else { |
| 797 | if (syserror(tcp)) |
| 798 | tprintf("%#lx", tcp->u_arg[3]); |
| 799 | else |
| 800 | printitv(tcp, tcp->u_arg[3]); |
| 801 | } |
| 802 | return 0; |
| 803 | } |
| 804 | |
| 805 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 806 | sys_timer_gettime(struct tcb *tcp) |
Roland McGrath | 1e35679 | 2003-03-30 23:52:28 +0000 | [diff] [blame] | 807 | { |
| 808 | if (entering(tcp)) { |
| 809 | tprintf("%#lx, ", tcp->u_arg[0]); |
| 810 | } else { |
| 811 | if (syserror(tcp)) |
| 812 | tprintf("%#lx", tcp->u_arg[1]); |
| 813 | else |
| 814 | printitv(tcp, tcp->u_arg[1]); |
| 815 | } |
| 816 | return 0; |
| 817 | } |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 818 | |
| 819 | static void |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 820 | print_rtc(struct tcb *tcp, const struct rtc_time *rt) |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 821 | { |
| 822 | tprintf("{tm_sec=%d, tm_min=%d, tm_hour=%d, " |
| 823 | "tm_mday=%d, tm_mon=%d, tm_year=%d, ", |
| 824 | rt->tm_sec, rt->tm_min, rt->tm_hour, |
| 825 | rt->tm_mday, rt->tm_mon, rt->tm_year); |
| 826 | if (!abbrev(tcp)) |
| 827 | tprintf("tm_wday=%d, tm_yday=%d, tm_isdst=%d}", |
| 828 | rt->tm_wday, rt->tm_yday, rt->tm_isdst); |
| 829 | else |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 830 | tprints("...}"); |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 831 | } |
| 832 | |
| 833 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 834 | rtc_ioctl(struct tcb *tcp, long code, long arg) |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 835 | { |
| 836 | switch (code) { |
| 837 | case RTC_ALM_SET: |
| 838 | case RTC_SET_TIME: |
| 839 | if (entering(tcp)) { |
| 840 | struct rtc_time rt; |
| 841 | if (umove(tcp, arg, &rt) < 0) |
| 842 | tprintf(", %#lx", arg); |
| 843 | else { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 844 | tprints(", "); |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 845 | print_rtc(tcp, &rt); |
| 846 | } |
| 847 | } |
| 848 | break; |
| 849 | case RTC_ALM_READ: |
| 850 | case RTC_RD_TIME: |
| 851 | if (exiting(tcp)) { |
| 852 | struct rtc_time rt; |
| 853 | if (syserror(tcp) || umove(tcp, arg, &rt) < 0) |
| 854 | tprintf(", %#lx", arg); |
| 855 | else { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 856 | tprints(", "); |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 857 | print_rtc(tcp, &rt); |
| 858 | } |
| 859 | } |
| 860 | break; |
| 861 | case RTC_IRQP_SET: |
| 862 | case RTC_EPOCH_SET: |
| 863 | if (entering(tcp)) |
| 864 | tprintf(", %lu", arg); |
| 865 | break; |
| 866 | case RTC_IRQP_READ: |
| 867 | case RTC_EPOCH_READ: |
| 868 | if (exiting(tcp)) |
| 869 | tprintf(", %lu", arg); |
| 870 | break; |
| 871 | case RTC_WKALM_SET: |
| 872 | if (entering(tcp)) { |
| 873 | struct rtc_wkalrm wk; |
| 874 | if (umove(tcp, arg, &wk) < 0) |
| 875 | tprintf(", %#lx", arg); |
| 876 | else { |
| 877 | tprintf(", {enabled=%d, pending=%d, ", |
| 878 | wk.enabled, wk.pending); |
| 879 | print_rtc(tcp, &wk.time); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 880 | tprints("}"); |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 881 | } |
| 882 | } |
| 883 | break; |
| 884 | case RTC_WKALM_RD: |
| 885 | if (exiting(tcp)) { |
| 886 | struct rtc_wkalrm wk; |
| 887 | if (syserror(tcp) || umove(tcp, arg, &wk) < 0) |
| 888 | tprintf(", %#lx", arg); |
| 889 | else { |
| 890 | tprintf(", {enabled=%d, pending=%d, ", |
| 891 | wk.enabled, wk.pending); |
| 892 | print_rtc(tcp, &wk.time); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 893 | tprints("}"); |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 894 | } |
| 895 | } |
| 896 | break; |
| 897 | default: |
| 898 | if (entering(tcp)) |
| 899 | tprintf(", %#lx", arg); |
| 900 | break; |
| 901 | } |
| 902 | return 1; |
| 903 | } |
Roland McGrath | e466234 | 2007-08-02 01:25:34 +0000 | [diff] [blame] | 904 | |
| 905 | #ifndef TFD_TIMER_ABSTIME |
| 906 | #define TFD_TIMER_ABSTIME (1 << 0) |
| 907 | #endif |
| 908 | |
| 909 | static const struct xlat timerfdflags[] = { |
| 910 | { TFD_TIMER_ABSTIME, "TFD_TIMER_ABSTIME" }, |
| 911 | { 0, NULL } |
| 912 | }; |
| 913 | |
| 914 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 915 | sys_timerfd(struct tcb *tcp) |
Roland McGrath | e466234 | 2007-08-02 01:25:34 +0000 | [diff] [blame] | 916 | { |
| 917 | if (entering(tcp)) { |
| 918 | /* It does not matter that the kernel uses itimerspec. */ |
| 919 | tprintf("%ld, ", tcp->u_arg[0]); |
| 920 | printxval(clocknames, tcp->u_arg[1], "CLOCK_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 921 | tprints(", "); |
Roland McGrath | e466234 | 2007-08-02 01:25:34 +0000 | [diff] [blame] | 922 | printflags(timerfdflags, tcp->u_arg[2], "TFD_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 923 | tprints(", "); |
Roland McGrath | e466234 | 2007-08-02 01:25:34 +0000 | [diff] [blame] | 924 | printitv(tcp, tcp->u_arg[3]); |
| 925 | } |
| 926 | return 0; |
| 927 | } |
Roland McGrath | de328e6 | 2008-05-20 04:56:13 +0000 | [diff] [blame] | 928 | |
| 929 | int |
| 930 | sys_timerfd_create(struct tcb *tcp) |
| 931 | { |
| 932 | if (entering(tcp)) { |
| 933 | printxval(clocknames, tcp->u_arg[0], "CLOCK_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 934 | tprints(", "); |
Roland McGrath | de328e6 | 2008-05-20 04:56:13 +0000 | [diff] [blame] | 935 | printflags(timerfdflags, tcp->u_arg[1], "TFD_???"); |
| 936 | } |
| 937 | return 0; |
| 938 | } |
| 939 | |
| 940 | int |
| 941 | sys_timerfd_settime(struct tcb *tcp) |
| 942 | { |
| 943 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 944 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 945 | tprints(", "); |
Roland McGrath | de328e6 | 2008-05-20 04:56:13 +0000 | [diff] [blame] | 946 | printflags(timerfdflags, tcp->u_arg[1], "TFD_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 947 | tprints(", "); |
Roland McGrath | de328e6 | 2008-05-20 04:56:13 +0000 | [diff] [blame] | 948 | printitv(tcp, tcp->u_arg[2]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 949 | tprints(", "); |
Roland McGrath | de328e6 | 2008-05-20 04:56:13 +0000 | [diff] [blame] | 950 | printitv(tcp, tcp->u_arg[3]); |
| 951 | } |
| 952 | return 0; |
| 953 | } |
| 954 | |
| 955 | int |
| 956 | sys_timerfd_gettime(struct tcb *tcp) |
| 957 | { |
| 958 | if (entering(tcp)) { |
Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 959 | printfd(tcp, tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 960 | tprints(", "); |
Roland McGrath | de328e6 | 2008-05-20 04:56:13 +0000 | [diff] [blame] | 961 | printitv(tcp, tcp->u_arg[1]); |
| 962 | } |
| 963 | return 0; |
| 964 | } |
| 965 | |