blob: dddb3f16a6980f7547b98cfd93c764caec7a7610 [file] [log] [blame]
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00001/*
2 * Copyright (c) 2015 Dmitry V. Levin <ldv@altlinux.org>
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
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +030028#include "defs.h"
29
Dmitry V. Levinba40d852015-09-17 16:10:53 +000030#include DEF_MPERS_TYPE(time_t)
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +030031#include DEF_MPERS_TYPE(timespec_t)
32#include DEF_MPERS_TYPE(timeval_t)
33
34typedef struct timespec timespec_t;
35typedef struct timeval timeval_t;
36
37#include MPERS_DEFS
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
45
Dmitry V. Levin207ba112015-09-17 16:47:03 +000046static const char time_fmt[] = "{%jd, %jd}";
47
48static void
49print_timespec_t(const timespec_t *t)
50{
51 tprintf(time_fmt, (intmax_t) t->tv_sec, (intmax_t) t->tv_nsec);
52}
53
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +030054static void
Dmitry V. Levin5eb23622015-09-17 15:12:42 +000055print_timespec_t_utime(const timespec_t *t)
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +030056{
57 switch (t->tv_nsec) {
58 case UTIME_NOW:
59 tprints("UTIME_NOW");
60 break;
61 case UTIME_OMIT:
62 tprints("UTIME_OMIT");
63 break;
64 default:
Dmitry V. Levin207ba112015-09-17 16:47:03 +000065 print_timespec_t(t);
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +030066 break;
67 }
68}
69
70static void
Dmitry V. Levin5eb23622015-09-17 15:12:42 +000071print_timeval_t(const timeval_t *t)
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +030072{
Dmitry V. Levin207ba112015-09-17 16:47:03 +000073 tprintf(time_fmt, (intmax_t) t->tv_sec, (intmax_t) t->tv_usec);
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +030074}
75
Dmitry V. Levin59385262015-09-18 15:16:11 +000076MPERS_PRINTER_DECL(void, print_timespec)(struct tcb *tcp, const long addr)
77{
78 timespec_t t;
79
80 if (umove_or_printaddr(tcp, addr, &t))
81 return;
82
83 print_timespec_t(&t);
84}
85
Dmitry V. Levin2950de32015-09-18 17:44:16 +000086MPERS_PRINTER_DECL(const char *, sprint_timespec)(struct tcb *tcp, const long addr)
87{
88 timespec_t t;
89 static char buf[sizeof(time_fmt) + 3 * sizeof(t)];
90
91 if (!addr) {
92 strcpy(buf, "NULL");
93 } else if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
94 umove(tcp, addr, &t)) {
95 snprintf(buf, sizeof(buf), "%#lx", addr);
96 } else {
97 snprintf(buf, sizeof(buf), time_fmt,
98 (intmax_t) t.tv_sec, (intmax_t) t.tv_nsec);
99 }
100
101 return buf;
102}
103
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +0300104MPERS_PRINTER_DECL(void, print_timespec_utime_pair)(struct tcb *tcp, const long addr)
105{
106 timespec_t t[2];
107
108 if (umove_or_printaddr(tcp, addr, &t))
109 return;
110
111 tprints("[");
Dmitry V. Levin5eb23622015-09-17 15:12:42 +0000112 print_timespec_t_utime(&t[0]);
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +0300113 tprints(", ");
Dmitry V. Levin5eb23622015-09-17 15:12:42 +0000114 print_timespec_t_utime(&t[1]);
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +0300115 tprints("]");
116}
117
Dmitry V. Levin22060852015-09-17 16:47:03 +0000118MPERS_PRINTER_DECL(void, print_itimerspec)(struct tcb *tcp, const long addr)
119{
120 timespec_t t[2];
121
122 if (umove_or_printaddr(tcp, addr, &t))
123 return;
124
125 tprints("{it_interval=");
126 print_timespec_t(&t[0]);
127 tprints(", it_value=");
128 print_timespec_t(&t[1]);
129 tprints("}");
130}
131
Dmitry V. Levinf1e3a322015-09-18 15:16:11 +0000132MPERS_PRINTER_DECL(void, print_timeval)(struct tcb *tcp, const long addr)
133{
134 timeval_t t;
135
136 if (umove_or_printaddr(tcp, addr, &t))
137 return;
138
139 print_timeval_t(&t);
140}
141
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +0300142MPERS_PRINTER_DECL(void, print_timeval_pair)(struct tcb *tcp, const long addr)
143{
144 timeval_t t[2];
145
146 if (umove_or_printaddr(tcp, addr, &t))
147 return;
148
149 tprints("[");
Dmitry V. Levin5eb23622015-09-17 15:12:42 +0000150 print_timeval_t(&t[0]);
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +0300151 tprints(", ");
Dmitry V. Levin5eb23622015-09-17 15:12:42 +0000152 print_timeval_t(&t[1]);
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +0300153 tprints("]");
154}
Dmitry V. Levinba40d852015-09-17 16:10:53 +0000155
Dmitry V. Levin4cb5ccc2015-09-18 18:02:50 +0000156MPERS_PRINTER_DECL(const char *, sprint_timeval)(struct tcb *tcp, const long addr)
157{
158 timeval_t t;
159 static char buf[sizeof(time_fmt) + 3 * sizeof(t)];
160
161 if (!addr) {
162 strcpy(buf, "NULL");
163 } else if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
164 umove(tcp, addr, &t)) {
165 snprintf(buf, sizeof(buf), "%#lx", addr);
166 } else {
167 snprintf(buf, sizeof(buf), time_fmt,
168 (intmax_t) t.tv_sec, (intmax_t) t.tv_usec);
169 }
170
171 return buf;
172}
173
Dmitry V. Levin322be802015-09-17 20:23:31 +0000174MPERS_PRINTER_DECL(void, print_itimerval)(struct tcb *tcp, const long addr)
175{
176 timeval_t t[2];
177
178 if (umove_or_printaddr(tcp, addr, &t))
179 return;
180
181 tprints("{it_interval=");
182 print_timeval_t(&t[0]);
183 tprints(", it_value=");
184 print_timeval_t(&t[1]);
185 tprints("}");
186}
187
Dmitry V. Levinba40d852015-09-17 16:10:53 +0000188SYS_FUNC(time)
189{
190 if (exiting(tcp)) {
191 time_t t;
192
193 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &t))
194 tprintf("[%jd]", (intmax_t) t);
195 }
196
197 return 0;
198}
Dmitry V. Levin322be802015-09-17 20:23:31 +0000199
200#ifdef ALPHA
201
202typedef struct {
203 int tv_sec, tv_usec;
204} timeval32_t;
205
206static void
207print_timeval32_t(const timeval32_t *t)
208{
209 tprintf(time_fmt, (intmax_t) t->tv_sec, (intmax_t) t->tv_usec);
210}
211
212void
Dmitry V. Levinf1e3a322015-09-18 15:16:11 +0000213print_timeval32(struct tcb *tcp, const long addr)
214{
215 timeval32_t t;
216
217 if (umove_or_printaddr(tcp, addr, &t))
218 return;
219
220 print_timeval32_t(&t);
221}
222
223void
224print_timeval32_pair(struct tcb *tcp, const long addr)
225{
226 timeval32_t t[2];
227
228 if (umove_or_printaddr(tcp, addr, &t))
229 return;
230
231 tprints("[");
232 print_timeval32_t(&t[0]);
233 tprints(", ");
234 print_timeval32_t(&t[1]);
235 tprints("]");
236}
237
238void
Dmitry V. Levin322be802015-09-17 20:23:31 +0000239print_itimerval32(struct tcb *tcp, const long addr)
240{
241 timeval32_t t[2];
242
243 if (umove_or_printaddr(tcp, addr, &t))
244 return;
245
246 tprints("{it_interval=");
247 print_timeval32_t(&t[0]);
248 tprints(", it_value=");
249 print_timeval32_t(&t[1]);
250 tprints("}");
251}
252
Dmitry V. Levin4cb5ccc2015-09-18 18:02:50 +0000253const char *
254sprint_timeval32(struct tcb *tcp, const long addr)
255{
256 timeval32_t t;
257 static char buf[sizeof(time_fmt) + 3 * sizeof(t)];
258
259 if (!addr) {
260 strcpy(buf, "NULL");
261 } else if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
262 umove(tcp, addr, &t)) {
263 snprintf(buf, sizeof(buf), "%#lx", addr);
264 } else {
265 snprintf(buf, sizeof(buf), time_fmt,
266 (intmax_t) t.tv_sec, (intmax_t) t.tv_usec);
267 }
268
269 return buf;
270}
271
Dmitry V. Levin322be802015-09-17 20:23:31 +0000272#endif /* ALPHA */