blob: 0987111f084a4d8415627ad416af3a91a37763c1 [file] [log] [blame]
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00001/*
2 * Copyright (c) 2014 Stefan Sørensen <stefan.sorensen@spectralink.com>
3 * Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org>
Elliott Hughes28e98bc2018-06-14 16:59:04 -07004 * Copyright (c) 2014-2018 The strace developers.
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00005 * 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
Stefan Sørensenb88a6f82014-01-31 12:01:01 +010030#include "defs.h"
Stefan Sørensenb88a6f82014-01-31 12:01:01 +010031
Elliott Hughesb7556142018-02-20 17:03:16 -080032#ifdef HAVE_STRUCT_PTP_SYS_OFFSET
33
34# include <linux/ioctl.h>
35# include <linux/ptp_clock.h>
36
Elliott Hughes28e98bc2018-06-14 16:59:04 -070037# include "print_fields.h"
Elliott Hughesb7556142018-02-20 17:03:16 -080038# include "xlat/ptp_flags_options.h"
Stefan Sørensenb88a6f82014-01-31 12:01:01 +010039
Dmitry V. Levinc7afb482015-01-19 18:44:21 +000040int
Elliott Hughesd35df492017-02-15 15:19:05 -080041ptp_ioctl(struct tcb *const tcp, const unsigned int code,
42 const kernel_ulong_t arg)
Stefan Sørensenb88a6f82014-01-31 12:01:01 +010043{
44 if (!verbose(tcp))
Dmitry V. Levin317d19e2015-07-07 12:47:18 +030045 return RVAL_DECODED;
Stefan Sørensenb88a6f82014-01-31 12:01:01 +010046
47 switch (code) {
Dmitry V. Levin317d19e2015-07-07 12:47:18 +030048 case PTP_EXTTS_REQUEST: {
49 struct ptp_extts_request extts;
Stefan Sørensenb88a6f82014-01-31 12:01:01 +010050
Dmitry V. Levin317d19e2015-07-07 12:47:18 +030051 tprints(", ");
52 if (umove_or_printaddr(tcp, arg, &extts))
53 break;
Stefan Sørensenb88a6f82014-01-31 12:01:01 +010054
Elliott Hughes28e98bc2018-06-14 16:59:04 -070055 PRINT_FIELD_D("{", extts, index);
56 PRINT_FIELD_FLAGS(", ", extts, flags, ptp_flags_options, "PTP_???");
Dmitry V. Levin317d19e2015-07-07 12:47:18 +030057 tprints("}");
58 break;
59 }
60
61 case PTP_PEROUT_REQUEST: {
62 struct ptp_perout_request perout;
63
64 tprints(", ");
65 if (umove_or_printaddr(tcp, arg, &perout))
66 break;
67
Elliott Hughes28e98bc2018-06-14 16:59:04 -070068 PRINT_FIELD_D("{start={", perout.start, sec);
69 PRINT_FIELD_U(", ", perout.start, nsec);
70 PRINT_FIELD_D("}, period={", perout.period, sec);
71 PRINT_FIELD_U(", ", perout.period, nsec);
72 PRINT_FIELD_D("}, ", perout, index);
73 PRINT_FIELD_FLAGS(", ", perout, flags, ptp_flags_options, "PTP_???");
Dmitry V. Levin317d19e2015-07-07 12:47:18 +030074 tprints("}");
75 break;
76 }
77
78 case PTP_ENABLE_PPS:
Elliott Hughesd35df492017-02-15 15:19:05 -080079 tprintf(", %" PRI_kld, arg);
Dmitry V. Levin317d19e2015-07-07 12:47:18 +030080 break;
81
82 case PTP_SYS_OFFSET: {
83 struct ptp_sys_offset sysoff;
84
85 if (entering(tcp)) {
86 tprints(", ");
87 if (umove_or_printaddr(tcp, arg, &sysoff))
88 break;
89
Elliott Hughes28e98bc2018-06-14 16:59:04 -070090 PRINT_FIELD_U("{", sysoff, n_samples);
Elliott Hughes77c3ff82017-09-08 17:11:00 -070091 return 0;
Dmitry V. Levin317d19e2015-07-07 12:47:18 +030092 } else {
93 unsigned int n_samples, i;
Stefan Sørensenb88a6f82014-01-31 12:01:01 +010094
Stefan Sørensenb88a6f82014-01-31 12:01:01 +010095 if (syserror(tcp)) {
Dmitry V. Levin317d19e2015-07-07 12:47:18 +030096 tprints("}");
97 break;
98 }
99
100 tprints(", ");
101 if (umove(tcp, arg, &sysoff) < 0) {
102 tprints("???}");
103 break;
104 }
105
106 tprints("ts=[");
107 n_samples = sysoff.n_samples > PTP_MAX_SAMPLES ?
108 PTP_MAX_SAMPLES : sysoff.n_samples;
109 for (i = 0; i < 2 * n_samples + 1; ++i) {
110 if (i > 0)
111 tprints(", ");
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700112 PRINT_FIELD_D("{", sysoff.ts[i], sec);
113 PRINT_FIELD_U(", ", sysoff.ts[i], nsec);
114 tprints("}");
Stefan Sørensenb88a6f82014-01-31 12:01:01 +0100115 }
116 if (sysoff.n_samples > PTP_MAX_SAMPLES)
Dmitry V. Levin317d19e2015-07-07 12:47:18 +0300117 tprints(", ...");
118 tprints("]}");
119 break;
Stefan Sørensenb88a6f82014-01-31 12:01:01 +0100120 }
Stefan Sørensenb88a6f82014-01-31 12:01:01 +0100121 }
Dmitry V. Levin317d19e2015-07-07 12:47:18 +0300122 case PTP_CLOCK_GETCAPS: {
123 struct ptp_clock_caps caps;
124
125 if (entering(tcp))
126 return 0;
127
128 tprints(", ");
129 if (umove_or_printaddr(tcp, arg, &caps))
130 break;
131
Elliott Hughes28e98bc2018-06-14 16:59:04 -0700132 PRINT_FIELD_D("{", caps, max_adj);
133 PRINT_FIELD_D(", ", caps, n_alarm);
134 PRINT_FIELD_D(", ", caps, n_ext_ts);
135 PRINT_FIELD_D(", ", caps, n_per_out);
136 PRINT_FIELD_D(", ", caps, pps);
137 tprints("}");
Dmitry V. Levin317d19e2015-07-07 12:47:18 +0300138 break;
139 }
140
141 default:
142 return RVAL_DECODED;
143 }
144
Elliott Hughes77c3ff82017-09-08 17:11:00 -0700145 return RVAL_IOCTL_DECODED;
Stefan Sørensenb88a6f82014-01-31 12:01:01 +0100146}
Elliott Hughesb7556142018-02-20 17:03:16 -0800147
148#endif /* HAVE_STRUCT_PTP_SYS_OFFSET */