From b88a6f877eb08e6d45130374fc1a1867371db703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20S=C3=B8rensen?= Date: Fri, 31 Jan 2014 12:01:01 +0100 Subject: Decode ptp ioctls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * defs.h (ptp_ioctl): New prototype. * ioctl.c (ioctl_decode): Call ptp_ioctl when code is '='. * Makefile.am (strace_SOURCES): Add ptp.c. (EXTRA_DIST): Add linux/ptp_clock.h. * ptp.c: New file. * linux/ptp_clock.h: New file. Signed-off-by: Stefan Sørensen Signed-off-by: Dmitry V. Levin --- ptp.c | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 ptp.c (limited to 'ptp.c') diff --git a/ptp.c b/ptp.c new file mode 100644 index 0000000..119b167 --- /dev/null +++ b/ptp.c @@ -0,0 +1,103 @@ +#include "defs.h" +#include +#include + +static const struct xlat ptp_flags_options[] = { + { PTP_ENABLE_FEATURE, "PTP_ENABLE_FEATURE" }, + { PTP_RISING_EDGE, "PTP_RISING_EDGE" }, + { PTP_FALLING_EDGE, "PTP_FALLING_EDGE" }, + { 0, NULL } +}; + + +int ptp_ioctl(struct tcb *tcp, long code, long arg) +{ + if (!verbose(tcp)) + return 0; + + switch (code) { + case PTP_CLOCK_GETCAPS: /* decode on exit */ + { + struct ptp_clock_caps caps; + + if (entering(tcp) || syserror(tcp) || + umove(tcp, arg, &caps) < 0) + return 0; + + tprintf(", {max_adj=%d, n_alarm=%d, n_ext_ts=%d, n_per_out=%d, pps=%d}", + caps.max_adj, caps.n_alarm, caps.n_ext_ts, + caps.n_per_out, caps.pps); + return 1; + } + + case PTP_EXTTS_REQUEST: /* decode on enter */ + { + struct ptp_extts_request extts; + + if (exiting(tcp)) + return 1; + if (umove(tcp, arg, &extts) < 0) { + tprintf(", %#lx", arg); + return 0; + } + tprintf(", {index=%d, flags=", extts.index); + printflags(ptp_flags_options, extts.flags, "PTP_???"); + tprints("}"); + return 1; + } + + case PTP_PEROUT_REQUEST: /* decode on enter */ + { + struct ptp_perout_request perout; + + if (exiting(tcp)) + return 1; + if (umove(tcp, arg, &perout) < 0) { + tprintf(", %#lx", arg); + return 0; + } + + tprintf(", {start={%" PRId64 ", %" PRIu32 "}" + ", period={%" PRId64 ", %" PRIu32 "}" + ", index=%d, flags=", + (int64_t)perout.start.sec, perout.start.nsec, + (int64_t)perout.period.sec, perout.period.nsec, + perout.index); + printflags(ptp_flags_options, perout.flags, "PTP_???"); + tprints("}"); + return 1; + } + + case PTP_ENABLE_PPS: /* decode on enter */ + if (entering(tcp)) + tprintf(", %ld", arg); + return 1; + + case PTP_SYS_OFFSET: /* decode on exit */ + { + struct ptp_sys_offset sysoff; + unsigned int i; + + if (entering(tcp) || umove(tcp, arg, &sysoff) < 0) + return 0; + + tprintf(", {n_samples=%u, ts={", sysoff.n_samples); + if (syserror(tcp)) { + tprints("...}}"); + return 1; + } + if (sysoff.n_samples > PTP_MAX_SAMPLES) + sysoff.n_samples = PTP_MAX_SAMPLES; + tprintf("{%" PRId64 ", %" PRIu32 "}", + (int64_t)sysoff.ts[0].sec, sysoff.ts[0].nsec); + for (i = 1; i < 2*sysoff.n_samples+1; ++i) + tprintf(", {%" PRId64 ", %" PRIu32 "}", + (int64_t)sysoff.ts[i].sec, sysoff.ts[i].nsec); + tprints("}}"); + return 1; + } + + default: /* decode on exit */ + return 0; + } +} -- cgit v1.2.3