blob: 50eb0e5547787ca5eb78ed8245f4546bf8265876 [file] [log] [blame]
Willem de Bruijn8fe2f762014-08-31 21:27:47 -04001
21. Control Interfaces
3
4The interfaces for receiving network packages timestamps are:
Patrick Ohlycb9eff02009-02-12 05:03:36 +00005
6* SO_TIMESTAMP
Willem de Bruijn8fe2f762014-08-31 21:27:47 -04007 Generates a timestamp for each incoming packet in (not necessarily
8 monotonic) system time. Reports the timestamp via recvmsg() in a
9 control message as struct timeval (usec resolution).
Patrick Ohlycb9eff02009-02-12 05:03:36 +000010
11* SO_TIMESTAMPNS
Willem de Bruijn8fe2f762014-08-31 21:27:47 -040012 Same timestamping mechanism as SO_TIMESTAMP, but reports the
13 timestamp as struct timespec (nsec resolution).
Patrick Ohlycb9eff02009-02-12 05:03:36 +000014
15* IP_MULTICAST_LOOP + SO_TIMESTAMP[NS]
Willem de Bruijn8fe2f762014-08-31 21:27:47 -040016 Only for multicast:approximate transmit timestamp obtained by
17 reading the looped packet receive timestamp.
Patrick Ohlycb9eff02009-02-12 05:03:36 +000018
Willem de Bruijn8fe2f762014-08-31 21:27:47 -040019* SO_TIMESTAMPING
20 Generates timestamps on reception, transmission or both. Supports
21 multiple timestamp sources, including hardware. Supports generating
22 timestamps for stream sockets.
Patrick Ohlycb9eff02009-02-12 05:03:36 +000023
Patrick Ohlycb9eff02009-02-12 05:03:36 +000024
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400251.1 SO_TIMESTAMP:
Patrick Ohlycb9eff02009-02-12 05:03:36 +000026
Willem de Bruijn8fe2f762014-08-31 21:27:47 -040027This socket option enables timestamping of datagrams on the reception
28path. Because the destination socket, if any, is not known early in
29the network stack, the feature has to be enabled for all packets. The
30same is true for all early receive timestamp options.
Patrick Ohlycb9eff02009-02-12 05:03:36 +000031
Willem de Bruijn8fe2f762014-08-31 21:27:47 -040032For interface details, see `man 7 socket`.
33
34
351.2 SO_TIMESTAMPNS:
36
37This option is identical to SO_TIMESTAMP except for the returned data type.
38Its struct timespec allows for higher resolution (ns) timestamps than the
39timeval of SO_TIMESTAMP (ms).
40
41
421.3 SO_TIMESTAMPING:
43
44Supports multiple types of timestamp requests. As a result, this
45socket option takes a bitmap of flags, not a boolean. In
46
Soheil Hassas Yeganehfd91e122016-04-02 23:08:13 -040047 err = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, (void *) val,
48 sizeof(val));
Willem de Bruijn8fe2f762014-08-31 21:27:47 -040049
50val is an integer with any of the following bits set. Setting other
51bit returns EINVAL and does not change the current state.
52
Soheil Hassas Yeganehfd91e122016-04-02 23:08:13 -040053The socket option configures timestamp generation for individual
54sk_buffs (1.3.1), timestamp reporting to the socket's error
55queue (1.3.2) and options (1.3.3). Timestamp generation can also
56be enabled for individual sendmsg calls using cmsg (1.3.4).
57
Willem de Bruijn8fe2f762014-08-31 21:27:47 -040058
591.3.1 Timestamp Generation
60
61Some bits are requests to the stack to try to generate timestamps. Any
62combination of them is valid. Changes to these bits apply to newly
63created packets, not to packets already in the stack. As a result, it
64is possible to selectively request timestamps for a subset of packets
65(e.g., for sampling) by embedding an send() call within two setsockopt
66calls, one to enable timestamp generation and one to disable it.
67Timestamps may also be generated for reasons other than being
68requested by a particular socket, such as when receive timestamping is
69enabled system wide, as explained earlier.
70
71SOF_TIMESTAMPING_RX_HARDWARE:
72 Request rx timestamps generated by the network adapter.
73
74SOF_TIMESTAMPING_RX_SOFTWARE:
75 Request rx timestamps when data enters the kernel. These timestamps
76 are generated just after a device driver hands a packet to the
77 kernel receive stack.
78
79SOF_TIMESTAMPING_TX_HARDWARE:
Soheil Hassas Yeganehfd91e122016-04-02 23:08:13 -040080 Request tx timestamps generated by the network adapter. This flag
81 can be enabled via both socket options and control messages.
Willem de Bruijn8fe2f762014-08-31 21:27:47 -040082
83SOF_TIMESTAMPING_TX_SOFTWARE:
84 Request tx timestamps when data leaves the kernel. These timestamps
85 are generated in the device driver as close as possible, but always
86 prior to, passing the packet to the network interface. Hence, they
87 require driver support and may not be available for all devices.
Soheil Hassas Yeganehfd91e122016-04-02 23:08:13 -040088 This flag can be enabled via both socket options and control messages.
89
Willem de Bruijn8fe2f762014-08-31 21:27:47 -040090
91SOF_TIMESTAMPING_TX_SCHED:
92 Request tx timestamps prior to entering the packet scheduler. Kernel
93 transmit latency is, if long, often dominated by queuing delay. The
94 difference between this timestamp and one taken at
95 SOF_TIMESTAMPING_TX_SOFTWARE will expose this latency independent
96 of protocol processing. The latency incurred in protocol
97 processing, if any, can be computed by subtracting a userspace
98 timestamp taken immediately before send() from this timestamp. On
99 machines with virtual devices where a transmitted packet travels
100 through multiple devices and, hence, multiple packet schedulers,
101 a timestamp is generated at each layer. This allows for fine
Soheil Hassas Yeganehfd91e122016-04-02 23:08:13 -0400102 grained measurement of queuing delay. This flag can be enabled
103 via both socket options and control messages.
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400104
105SOF_TIMESTAMPING_TX_ACK:
106 Request tx timestamps when all data in the send buffer has been
107 acknowledged. This only makes sense for reliable protocols. It is
108 currently only implemented for TCP. For that protocol, it may
109 over-report measurement, because the timestamp is generated when all
110 data up to and including the buffer at send() was acknowledged: the
111 cumulative acknowledgment. The mechanism ignores SACK and FACK.
Soheil Hassas Yeganehfd91e122016-04-02 23:08:13 -0400112 This flag can be enabled via both socket options and control messages.
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400113
114
1151.3.2 Timestamp Reporting
Andrew Lutomirskiadca4762014-03-04 17:24:10 -0800116
117The other three bits control which timestamps will be reported in a
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400118generated control message. Changes to the bits take immediate
119effect at the timestamp reporting locations in the stack. Timestamps
120are only reported for packets that also have the relevant timestamp
121generation request set.
Andrew Lutomirskiadca4762014-03-04 17:24:10 -0800122
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400123SOF_TIMESTAMPING_SOFTWARE:
124 Report any software timestamps when available.
Andrew Lutomirskiadca4762014-03-04 17:24:10 -0800125
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400126SOF_TIMESTAMPING_SYS_HARDWARE:
127 This option is deprecated and ignored.
Andrew Lutomirskiadca4762014-03-04 17:24:10 -0800128
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400129SOF_TIMESTAMPING_RAW_HARDWARE:
130 Report hardware timestamps as generated by
131 SOF_TIMESTAMPING_TX_HARDWARE when available.
132
133
1341.3.3 Timestamp Options
135
Willem de Bruijn829ae9d2014-11-30 22:22:34 -0500136The interface supports the options
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400137
138SOF_TIMESTAMPING_OPT_ID:
139
140 Generate a unique identifier along with each packet. A process can
141 have multiple concurrent timestamping requests outstanding. Packets
142 can be reordered in the transmit path, for instance in the packet
143 scheduler. In that case timestamps will be queued onto the error
Willem de Bruijncbd3aad2014-11-30 22:22:35 -0500144 queue out of order from the original send() calls. It is not always
145 possible to uniquely match timestamps to the original send() calls
146 based on timestamp order or payload inspection alone, then.
147
148 This option associates each packet at send() with a unique
149 identifier and returns that along with the timestamp. The identifier
150 is derived from a per-socket u32 counter (that wraps). For datagram
151 sockets, the counter increments with each sent packet. For stream
152 sockets, it increments with every byte.
153
154 The counter starts at zero. It is initialized the first time that
155 the socket option is enabled. It is reset each time the option is
156 enabled after having been disabled. Resetting the counter does not
157 change the identifiers of existing packets in the system.
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400158
159 This option is implemented only for transmit timestamps. There, the
160 timestamp is always looped along with a struct sock_extended_err.
Andrew Lutomirski138a7f42014-11-24 12:02:29 -0800161 The option modifies field ee_data to pass an id that is unique
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400162 among all possibly concurrently outstanding timestamp requests for
Willem de Bruijncbd3aad2014-11-30 22:22:35 -0500163 that socket.
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400164
165
Willem de Bruijn829ae9d2014-11-30 22:22:34 -0500166SOF_TIMESTAMPING_OPT_CMSG:
167
168 Support recv() cmsg for all timestamped packets. Control messages
169 are already supported unconditionally on all packets with receive
170 timestamps and on IPv6 packets with transmit timestamp. This option
171 extends them to IPv4 packets with transmit timestamp. One use case
172 is to correlate packets with their egress device, by enabling socket
173 option IP_PKTINFO simultaneously.
174
175
Willem de Bruijn49ca0d82015-01-30 13:29:31 -0500176SOF_TIMESTAMPING_OPT_TSONLY:
177
178 Applies to transmit timestamps only. Makes the kernel return the
179 timestamp as a cmsg alongside an empty packet, as opposed to
180 alongside the original packet. This reduces the amount of memory
181 charged to the socket's receive budget (SO_RCVBUF) and delivers
182 the timestamp even if sysctl net.core.tstamp_allow_data is 0.
183 This option disables SOF_TIMESTAMPING_OPT_CMSG.
184
Francis Yan1c885802016-11-27 23:07:18 -0800185SOF_TIMESTAMPING_OPT_STATS:
186
187 Optional stats that are obtained along with the transmit timestamps.
188 It must be used together with SOF_TIMESTAMPING_OPT_TSONLY. When the
189 transmit timestamp is available, the stats are available in a
190 separate control message of type SCM_TIMESTAMPING_OPT_STATS, as a
191 list of TLVs (struct nlattr) of types. These stats allow the
192 application to associate various transport layer stats with
193 the transmit timestamps, such as how long a certain block of
194 data was limited by peer's receiver window.
Willem de Bruijn49ca0d82015-01-30 13:29:31 -0500195
Miroslav Lichvaraad9c8c2017-05-19 17:52:38 +0200196SOF_TIMESTAMPING_OPT_PKTINFO:
197
198 Enable the SCM_TIMESTAMPING_PKTINFO control message for incoming
199 packets with hardware timestamps. The message contains struct
200 scm_ts_pktinfo, which supplies the index of the real interface which
201 received the packet and its length at layer 2. A valid (non-zero)
202 interface index will be returned only if CONFIG_NET_RX_BUSY_POLL is
203 enabled and the driver is using NAPI. The struct contains also two
204 other fields, but they are reserved and undefined.
205
Willem de Bruijn49ca0d82015-01-30 13:29:31 -0500206New applications are encouraged to pass SOF_TIMESTAMPING_OPT_ID to
207disambiguate timestamps and SOF_TIMESTAMPING_OPT_TSONLY to operate
208regardless of the setting of sysctl net.core.tstamp_allow_data.
209
210An exception is when a process needs additional cmsg data, for
211instance SOL_IP/IP_PKTINFO to detect the egress network interface.
212Then pass option SOF_TIMESTAMPING_OPT_CMSG. This option depends on
213having access to the contents of the original packet, so cannot be
214combined with SOF_TIMESTAMPING_OPT_TSONLY.
215
216
Soheil Hassas Yeganehfd91e122016-04-02 23:08:13 -04002171.3.4. Enabling timestamps via control messages
218
219In addition to socket options, timestamp generation can be requested
220per write via cmsg, only for SOF_TIMESTAMPING_TX_* (see Section 1.3.1).
221Using this feature, applications can sample timestamps per sendmsg()
222without paying the overhead of enabling and disabling timestamps via
223setsockopt:
224
225 struct msghdr *msg;
226 ...
227 cmsg = CMSG_FIRSTHDR(msg);
228 cmsg->cmsg_level = SOL_SOCKET;
229 cmsg->cmsg_type = SO_TIMESTAMPING;
230 cmsg->cmsg_len = CMSG_LEN(sizeof(__u32));
231 *((__u32 *) CMSG_DATA(cmsg)) = SOF_TIMESTAMPING_TX_SCHED |
232 SOF_TIMESTAMPING_TX_SOFTWARE |
233 SOF_TIMESTAMPING_TX_ACK;
234 err = sendmsg(fd, msg, 0);
235
236The SOF_TIMESTAMPING_TX_* flags set via cmsg will override
237the SOF_TIMESTAMPING_TX_* flags set via setsockopt.
238
239Moreover, applications must still enable timestamp reporting via
240setsockopt to receive timestamps:
241
242 __u32 val = SOF_TIMESTAMPING_SOFTWARE |
243 SOF_TIMESTAMPING_OPT_ID /* or any other flag */;
244 err = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, (void *) val,
245 sizeof(val));
246
247
Willem de Bruijn8fe2f762014-08-31 21:27:47 -04002481.4 Bytestream Timestamps
249
250The SO_TIMESTAMPING interface supports timestamping of bytes in a
251bytestream. Each request is interpreted as a request for when the
252entire contents of the buffer has passed a timestamping point. That
253is, for streams option SOF_TIMESTAMPING_TX_SOFTWARE will record
254when all bytes have reached the device driver, regardless of how
255many packets the data has been converted into.
256
257In general, bytestreams have no natural delimiters and therefore
258correlating a timestamp with data is non-trivial. A range of bytes
259may be split across segments, any segments may be merged (possibly
260coalescing sections of previously segmented buffers associated with
261independent send() calls). Segments can be reordered and the same
262byte range can coexist in multiple segments for protocols that
263implement retransmissions.
264
265It is essential that all timestamps implement the same semantics,
266regardless of these possible transformations, as otherwise they are
267incomparable. Handling "rare" corner cases differently from the
268simple case (a 1:1 mapping from buffer to skb) is insufficient
269because performance debugging often needs to focus on such outliers.
270
271In practice, timestamps can be correlated with segments of a
272bytestream consistently, if both semantics of the timestamp and the
273timing of measurement are chosen correctly. This challenge is no
274different from deciding on a strategy for IP fragmentation. There, the
275definition is that only the first fragment is timestamped. For
276bytestreams, we chose that a timestamp is generated only when all
277bytes have passed a point. SOF_TIMESTAMPING_TX_ACK as defined is easy to
278implement and reason about. An implementation that has to take into
279account SACK would be more complex due to possible transmission holes
280and out of order arrival.
281
282On the host, TCP can also break the simple 1:1 mapping from buffer to
283skbuff as a result of Nagle, cork, autocork, segmentation and GSO. The
284implementation ensures correctness in all cases by tracking the
285individual last byte passed to send(), even if it is no longer the
286last byte after an skbuff extend or merge operation. It stores the
287relevant sequence number in skb_shinfo(skb)->tskey. Because an skbuff
288has only one such field, only one timestamp can be generated.
289
290In rare cases, a timestamp request can be missed if two requests are
291collapsed onto the same skb. A process can detect this situation by
292enabling SOF_TIMESTAMPING_OPT_ID and comparing the byte offset at
293send time with the value returned for each timestamp. It can prevent
294the situation by always flushing the TCP stack in between requests,
295for instance by enabling TCP_NODELAY and disabling TCP_CORK and
296autocork.
297
298These precautions ensure that the timestamp is generated only when all
299bytes have passed a timestamp point, assuming that the network stack
300itself does not reorder the segments. The stack indeed tries to avoid
301reordering. The one exception is under administrator control: it is
302possible to construct a packet scheduler configuration that delays
303segments from the same stream differently. Such a setup would be
304unusual.
305
306
3072 Data Interfaces
308
309Timestamps are read using the ancillary data feature of recvmsg().
310See `man 3 cmsg` for details of this interface. The socket manual
311page (`man 7 socket`) describes how timestamps generated with
312SO_TIMESTAMP and SO_TIMESTAMPNS records can be retrieved.
313
314
3152.1 SCM_TIMESTAMPING records
316
317These timestamps are returned in a control message with cmsg_level
318SOL_SOCKET, cmsg_type SCM_TIMESTAMPING, and payload of type
Patrick Loschmidt69298692010-04-07 21:52:07 -0700319
320struct scm_timestamping {
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400321 struct timespec ts[3];
Patrick Loschmidt69298692010-04-07 21:52:07 -0700322};
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000323
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400324The structure can return up to three timestamps. This is a legacy
Miroslav Lichvar67953d42017-05-19 17:52:39 +0200325feature. At least one field is non-zero at any time. Most timestamps
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400326are passed in ts[0]. Hardware timestamps are passed in ts[2].
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000327
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400328ts[1] used to hold hardware timestamps converted to system time.
329Instead, expose the hardware clock device on the NIC directly as
330a HW PTP clock source, to allow time conversion in userspace and
331optionally synchronize system time with a userspace PTP stack such
332as linuxptp. For the PTP clock API, see Documentation/ptp/ptp.txt.
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000333
Miroslav Lichvar67953d42017-05-19 17:52:39 +0200334Note that if the SO_TIMESTAMP or SO_TIMESTAMPNS option is enabled
335together with SO_TIMESTAMPING using SOF_TIMESTAMPING_SOFTWARE, a false
336software timestamp will be generated in the recvmsg() call and passed
337in ts[0] when a real software timestamp is missing. This happens also
338on hardware transmit timestamps.
339
Willem de Bruijn8fe2f762014-08-31 21:27:47 -04003402.1.1 Transmit timestamps with MSG_ERRQUEUE
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000341
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400342For transmit timestamps the outgoing packet is looped back to the
343socket's error queue with the send timestamp(s) attached. A process
344receives the timestamps by calling recvmsg() with flag MSG_ERRQUEUE
345set and with a msg_control buffer sufficiently large to receive the
346relevant metadata structures. The recvmsg call returns the original
347outgoing data packet with two ancillary messages attached.
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000348
Willem de Bruijn8fe2f762014-08-31 21:27:47 -0400349A message of cm_level SOL_IP(V6) and cm_type IP(V6)_RECVERR
350embeds a struct sock_extended_err. This defines the error type. For
351timestamps, the ee_errno field is ENOMSG. The other ancillary message
352will have cm_level SOL_SOCKET and cm_type SCM_TIMESTAMPING. This
353embeds the struct scm_timestamping.
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000354
355
Willem de Bruijn8fe2f762014-08-31 21:27:47 -04003562.1.1.2 Timestamp types
357
358The semantics of the three struct timespec are defined by field
359ee_info in the extended error structure. It contains a value of
360type SCM_TSTAMP_* to define the actual timestamp passed in
361scm_timestamping.
362
363The SCM_TSTAMP_* types are 1:1 matches to the SOF_TIMESTAMPING_*
364control fields discussed previously, with one exception. For legacy
365reasons, SCM_TSTAMP_SND is equal to zero and can be set for both
366SOF_TIMESTAMPING_TX_HARDWARE and SOF_TIMESTAMPING_TX_SOFTWARE. It
367is the first if ts[2] is non-zero, the second otherwise, in which
368case the timestamp is stored in ts[0].
369
370
3712.1.1.3 Fragmentation
372
373Fragmentation of outgoing datagrams is rare, but is possible, e.g., by
374explicitly disabling PMTU discovery. If an outgoing packet is fragmented,
375then only the first fragment is timestamped and returned to the sending
376socket.
377
378
3792.1.1.4 Packet Payload
380
381The calling application is often not interested in receiving the whole
382packet payload that it passed to the stack originally: the socket
383error queue mechanism is just a method to piggyback the timestamp on.
384In this case, the application can choose to read datagrams with a
385smaller buffer, possibly even of length 0. The payload is truncated
386accordingly. Until the process calls recvmsg() on the error queue,
387however, the full packet is queued, taking up budget from SO_RCVBUF.
388
389
3902.1.1.5 Blocking Read
391
392Reading from the error queue is always a non-blocking operation. To
393block waiting on a timestamp, use poll or select. poll() will return
394POLLERR in pollfd.revents if any data is ready on the error queue.
395There is no need to pass this flag in pollfd.events. This flag is
396ignored on request. See also `man 2 poll`.
397
398
3992.1.2 Receive timestamps
400
401On reception, there is no reason to read from the socket error queue.
402The SCM_TIMESTAMPING ancillary data is sent along with the packet data
403on a normal recvmsg(). Since this is not a socket error, it is not
404accompanied by a message SOL_IP(V6)/IP(V6)_RECVERROR. In this case,
405the meaning of the three fields in struct scm_timestamping is
406implicitly defined. ts[0] holds a software timestamp if set, ts[1]
407is again deprecated and ts[2] holds a hardware timestamp if set.
408
409
4103. Hardware Timestamping configuration: SIOCSHWTSTAMP and SIOCGHWTSTAMP
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000411
412Hardware time stamping must also be initialized for each device driver
Patrick Loschmidt69298692010-04-07 21:52:07 -0700413that is expected to do hardware time stamping. The parameter is defined in
414/include/linux/net_tstamp.h as:
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000415
416struct hwtstamp_config {
Patrick Loschmidt69298692010-04-07 21:52:07 -0700417 int flags; /* no flags defined right now, must be zero */
418 int tx_type; /* HWTSTAMP_TX_* */
419 int rx_filter; /* HWTSTAMP_FILTER_* */
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000420};
421
422Desired behavior is passed into the kernel and to a specific device by
423calling ioctl(SIOCSHWTSTAMP) with a pointer to a struct ifreq whose
424ifr_data points to a struct hwtstamp_config. The tx_type and
425rx_filter are hints to the driver what it is expected to do. If
426the requested fine-grained filtering for incoming packets is not
427supported, the driver may time stamp more than just the requested types
428of packets.
429
Jacob Kellereff3cdd2015-04-22 14:40:30 -0700430Drivers are free to use a more permissive configuration than the requested
431configuration. It is expected that drivers should only implement directly the
432most generic mode that can be supported. For example if the hardware can
433support HWTSTAMP_FILTER_V2_EVENT, then it should generally always upscale
434HWTSTAMP_FILTER_V2_L2_SYNC_MESSAGE, and so forth, as HWTSTAMP_FILTER_V2_EVENT
435is more generic (and more useful to applications).
436
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000437A driver which supports hardware time stamping shall update the struct
438with the actual, possibly more permissive configuration. If the
439requested packets cannot be time stamped, then nothing should be
440changed and ERANGE shall be returned (in contrast to EINVAL, which
441indicates that SIOCSHWTSTAMP is not supported at all).
442
443Only a processes with admin rights may change the configuration. User
444space is responsible to ensure that multiple processes don't interfere
445with each other and that the settings are reset.
446
Ben Hutchingsfd468c72013-11-14 01:19:29 +0000447Any process can read the actual configuration by passing this
448structure to ioctl(SIOCGHWTSTAMP) in the same way. However, this has
449not been implemented in all drivers.
450
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000451/* possible values for hwtstamp_config->tx_type */
452enum {
453 /*
454 * no outgoing packet will need hardware time stamping;
455 * should a packet arrive which asks for it, no hardware
456 * time stamping will be done
457 */
458 HWTSTAMP_TX_OFF,
459
460 /*
461 * enables hardware time stamping for outgoing packets;
462 * the sender of the packet decides which are to be
463 * time stamped by setting SOF_TIMESTAMPING_TX_SOFTWARE
464 * before sending the packet
465 */
466 HWTSTAMP_TX_ON,
467};
468
469/* possible values for hwtstamp_config->rx_filter */
470enum {
471 /* time stamp no incoming packet at all */
472 HWTSTAMP_FILTER_NONE,
473
474 /* time stamp any incoming packet */
475 HWTSTAMP_FILTER_ALL,
476
Patrick Loschmidt69298692010-04-07 21:52:07 -0700477 /* return value: time stamp all packets requested plus some others */
478 HWTSTAMP_FILTER_SOME,
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000479
480 /* PTP v1, UDP, any kind of event packet */
481 HWTSTAMP_FILTER_PTP_V1_L4_EVENT,
482
Patrick Loschmidt69298692010-04-07 21:52:07 -0700483 /* for the complete list of values, please check
484 * the include file /include/linux/net_tstamp.h
485 */
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000486};
487
Willem de Bruijn8fe2f762014-08-31 21:27:47 -04004883.1 Hardware Timestamping Implementation: Device Drivers
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000489
490A driver which supports hardware time stamping must support the
Patrick Loschmidt69298692010-04-07 21:52:07 -0700491SIOCSHWTSTAMP ioctl and update the supplied struct hwtstamp_config with
Ben Hutchingsfd468c72013-11-14 01:19:29 +0000492the actual values as described in the section on SIOCSHWTSTAMP. It
493should also support SIOCGHWTSTAMP.
Patrick Loschmidt69298692010-04-07 21:52:07 -0700494
495Time stamps for received packets must be stored in the skb. To get a pointer
496to the shared time stamp structure of the skb call skb_hwtstamps(). Then
497set the time stamps in the structure:
498
499struct skb_shared_hwtstamps {
500 /* hardware time stamp transformed into duration
501 * since arbitrary point in time
502 */
503 ktime_t hwtstamp;
Patrick Loschmidt69298692010-04-07 21:52:07 -0700504};
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000505
506Time stamps for outgoing packets are to be generated as follows:
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000507- In hard_start_xmit(), check if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
508 is set no-zero. If yes, then the driver is expected to do hardware time
509 stamping.
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000510- If this is possible for the skb and requested, then declare
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000511 that the driver is doing the time stamping by setting the flag
512 SKBTX_IN_PROGRESS in skb_shinfo(skb)->tx_flags , e.g. with
513
514 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
515
516 You might want to keep a pointer to the associated skb for the next step
517 and not free the skb. A driver not supporting hardware time stamping doesn't
518 do that. A driver must never touch sk_buff::tstamp! It is used to store
519 software generated time stamps by the network subsystem.
Jakub Kicinski59cb89e2014-03-16 20:32:48 +0100520- Driver should call skb_tx_timestamp() as close to passing sk_buff to hardware
521 as possible. skb_tx_timestamp() provides a software time stamp if requested
522 and hardware timestamping is not possible (SKBTX_IN_PROGRESS not set).
Patrick Ohlycb9eff02009-02-12 05:03:36 +0000523- As soon as the driver has sent the packet and/or obtained a
524 hardware time stamp for it, it passes the time stamp back by
525 calling skb_hwtstamp_tx() with the original skb, the raw
Patrick Loschmidt69298692010-04-07 21:52:07 -0700526 hardware time stamp. skb_hwtstamp_tx() clones the original skb and
527 adds the timestamps, therefore the original skb has to be freed now.
528 If obtaining the hardware time stamp somehow fails, then the driver
529 should not fall back to software time stamping. The rationale is that
530 this would occur at a later time in the processing pipeline than other
531 software time stamping and therefore could lead to unexpected deltas
532 between time stamps.