timestamping.rst 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821
  1. .. SPDX-License-Identifier: GPL-2.0
  2. ============
  3. Timestamping
  4. ============
  5. 1. Control Interfaces
  6. =====================
  7. The interfaces for receiving network packages timestamps are:
  8. SO_TIMESTAMP
  9. Generates a timestamp for each incoming packet in (not necessarily
  10. monotonic) system time. Reports the timestamp via recvmsg() in a
  11. control message in usec resolution.
  12. SO_TIMESTAMP is defined as SO_TIMESTAMP_NEW or SO_TIMESTAMP_OLD
  13. based on the architecture type and time_t representation of libc.
  14. Control message format is in struct __kernel_old_timeval for
  15. SO_TIMESTAMP_OLD and in struct __kernel_sock_timeval for
  16. SO_TIMESTAMP_NEW options respectively.
  17. SO_TIMESTAMPNS
  18. Same timestamping mechanism as SO_TIMESTAMP, but reports the
  19. timestamp as struct timespec in nsec resolution.
  20. SO_TIMESTAMPNS is defined as SO_TIMESTAMPNS_NEW or SO_TIMESTAMPNS_OLD
  21. based on the architecture type and time_t representation of libc.
  22. Control message format is in struct timespec for SO_TIMESTAMPNS_OLD
  23. and in struct __kernel_timespec for SO_TIMESTAMPNS_NEW options
  24. respectively.
  25. IP_MULTICAST_LOOP + SO_TIMESTAMP[NS]
  26. Only for multicast:approximate transmit timestamp obtained by
  27. reading the looped packet receive timestamp.
  28. SO_TIMESTAMPING
  29. Generates timestamps on reception, transmission or both. Supports
  30. multiple timestamp sources, including hardware. Supports generating
  31. timestamps for stream sockets.
  32. 1.1 SO_TIMESTAMP (also SO_TIMESTAMP_OLD and SO_TIMESTAMP_NEW)
  33. -------------------------------------------------------------
  34. This socket option enables timestamping of datagrams on the reception
  35. path. Because the destination socket, if any, is not known early in
  36. the network stack, the feature has to be enabled for all packets. The
  37. same is true for all early receive timestamp options.
  38. For interface details, see `man 7 socket`.
  39. Always use SO_TIMESTAMP_NEW timestamp to always get timestamp in
  40. struct __kernel_sock_timeval format.
  41. SO_TIMESTAMP_OLD returns incorrect timestamps after the year 2038
  42. on 32 bit machines.
  43. 1.2 SO_TIMESTAMPNS (also SO_TIMESTAMPNS_OLD and SO_TIMESTAMPNS_NEW)
  44. -------------------------------------------------------------------
  45. This option is identical to SO_TIMESTAMP except for the returned data type.
  46. Its struct timespec allows for higher resolution (ns) timestamps than the
  47. timeval of SO_TIMESTAMP (ms).
  48. Always use SO_TIMESTAMPNS_NEW timestamp to always get timestamp in
  49. struct __kernel_timespec format.
  50. SO_TIMESTAMPNS_OLD returns incorrect timestamps after the year 2038
  51. on 32 bit machines.
  52. 1.3 SO_TIMESTAMPING (also SO_TIMESTAMPING_OLD and SO_TIMESTAMPING_NEW)
  53. ----------------------------------------------------------------------
  54. Supports multiple types of timestamp requests. As a result, this
  55. socket option takes a bitmap of flags, not a boolean. In::
  56. err = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, &val, sizeof(val));
  57. val is an integer with any of the following bits set. Setting other
  58. bit returns EINVAL and does not change the current state.
  59. The socket option configures timestamp generation for individual
  60. sk_buffs (1.3.1), timestamp reporting to the socket's error
  61. queue (1.3.2) and options (1.3.3). Timestamp generation can also
  62. be enabled for individual sendmsg calls using cmsg (1.3.4).
  63. 1.3.1 Timestamp Generation
  64. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  65. Some bits are requests to the stack to try to generate timestamps. Any
  66. combination of them is valid. Changes to these bits apply to newly
  67. created packets, not to packets already in the stack. As a result, it
  68. is possible to selectively request timestamps for a subset of packets
  69. (e.g., for sampling) by embedding an send() call within two setsockopt
  70. calls, one to enable timestamp generation and one to disable it.
  71. Timestamps may also be generated for reasons other than being
  72. requested by a particular socket, such as when receive timestamping is
  73. enabled system wide, as explained earlier.
  74. SOF_TIMESTAMPING_RX_HARDWARE:
  75. Request rx timestamps generated by the network adapter.
  76. SOF_TIMESTAMPING_RX_SOFTWARE:
  77. Request rx timestamps when data enters the kernel. These timestamps
  78. are generated just after a device driver hands a packet to the
  79. kernel receive stack.
  80. SOF_TIMESTAMPING_TX_HARDWARE:
  81. Request tx timestamps generated by the network adapter. This flag
  82. can be enabled via both socket options and control messages.
  83. SOF_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.
  88. This flag can be enabled via both socket options and control messages.
  89. SOF_TIMESTAMPING_TX_SCHED:
  90. Request tx timestamps prior to entering the packet scheduler. Kernel
  91. transmit latency is, if long, often dominated by queuing delay. The
  92. difference between this timestamp and one taken at
  93. SOF_TIMESTAMPING_TX_SOFTWARE will expose this latency independent
  94. of protocol processing. The latency incurred in protocol
  95. processing, if any, can be computed by subtracting a userspace
  96. timestamp taken immediately before send() from this timestamp. On
  97. machines with virtual devices where a transmitted packet travels
  98. through multiple devices and, hence, multiple packet schedulers,
  99. a timestamp is generated at each layer. This allows for fine
  100. grained measurement of queuing delay. This flag can be enabled
  101. via both socket options and control messages.
  102. SOF_TIMESTAMPING_TX_ACK:
  103. Request tx timestamps when all data in the send buffer has been
  104. acknowledged. This only makes sense for reliable protocols. It is
  105. currently only implemented for TCP. For that protocol, it may
  106. over-report measurement, because the timestamp is generated when all
  107. data up to and including the buffer at send() was acknowledged: the
  108. cumulative acknowledgment. The mechanism ignores SACK and FACK.
  109. This flag can be enabled via both socket options and control messages.
  110. 1.3.2 Timestamp Reporting
  111. ^^^^^^^^^^^^^^^^^^^^^^^^^
  112. The other three bits control which timestamps will be reported in a
  113. generated control message. Changes to the bits take immediate
  114. effect at the timestamp reporting locations in the stack. Timestamps
  115. are only reported for packets that also have the relevant timestamp
  116. generation request set.
  117. SOF_TIMESTAMPING_SOFTWARE:
  118. Report any software timestamps when available.
  119. SOF_TIMESTAMPING_SYS_HARDWARE:
  120. This option is deprecated and ignored.
  121. SOF_TIMESTAMPING_RAW_HARDWARE:
  122. Report hardware timestamps as generated by
  123. SOF_TIMESTAMPING_TX_HARDWARE or SOF_TIMESTAMPING_RX_HARDWARE
  124. when available.
  125. 1.3.3 Timestamp Options
  126. ^^^^^^^^^^^^^^^^^^^^^^^
  127. The interface supports the options
  128. SOF_TIMESTAMPING_OPT_ID:
  129. Generate a unique identifier along with each packet. A process can
  130. have multiple concurrent timestamping requests outstanding. Packets
  131. can be reordered in the transmit path, for instance in the packet
  132. scheduler. In that case timestamps will be queued onto the error
  133. queue out of order from the original send() calls. It is not always
  134. possible to uniquely match timestamps to the original send() calls
  135. based on timestamp order or payload inspection alone, then.
  136. This option associates each packet at send() with a unique
  137. identifier and returns that along with the timestamp. The identifier
  138. is derived from a per-socket u32 counter (that wraps). For datagram
  139. sockets, the counter increments with each sent packet. For stream
  140. sockets, it increments with every byte. For stream sockets, also set
  141. SOF_TIMESTAMPING_OPT_ID_TCP, see the section below.
  142. The counter starts at zero. It is initialized the first time that
  143. the socket option is enabled. It is reset each time the option is
  144. enabled after having been disabled. Resetting the counter does not
  145. change the identifiers of existing packets in the system.
  146. This option is implemented only for transmit timestamps. There, the
  147. timestamp is always looped along with a struct sock_extended_err.
  148. The option modifies field ee_data to pass an id that is unique
  149. among all possibly concurrently outstanding timestamp requests for
  150. that socket.
  151. SOF_TIMESTAMPING_OPT_ID_TCP:
  152. Pass this modifier along with SOF_TIMESTAMPING_OPT_ID for new TCP
  153. timestamping applications. SOF_TIMESTAMPING_OPT_ID defines how the
  154. counter increments for stream sockets, but its starting point is
  155. not entirely trivial. This option fixes that.
  156. For stream sockets, if SOF_TIMESTAMPING_OPT_ID is set, this should
  157. always be set too. On datagram sockets the option has no effect.
  158. A reasonable expectation is that the counter is reset to zero with
  159. the system call, so that a subsequent write() of N bytes generates
  160. a timestamp with counter N-1. SOF_TIMESTAMPING_OPT_ID_TCP
  161. implements this behavior under all conditions.
  162. SOF_TIMESTAMPING_OPT_ID without modifier often reports the same,
  163. especially when the socket option is set when no data is in
  164. transmission. If data is being transmitted, it may be off by the
  165. length of the output queue (SIOCOUTQ).
  166. The difference is due to being based on snd_una versus write_seq.
  167. snd_una is the offset in the stream acknowledged by the peer. This
  168. depends on factors outside of process control, such as network RTT.
  169. write_seq is the last byte written by the process. This offset is
  170. not affected by external inputs.
  171. The difference is subtle and unlikely to be noticed when configured
  172. at initial socket creation, when no data is queued or sent. But
  173. SOF_TIMESTAMPING_OPT_ID_TCP behavior is more robust regardless of
  174. when the socket option is set.
  175. SOF_TIMESTAMPING_OPT_CMSG:
  176. Support recv() cmsg for all timestamped packets. Control messages
  177. are already supported unconditionally on all packets with receive
  178. timestamps and on IPv6 packets with transmit timestamp. This option
  179. extends them to IPv4 packets with transmit timestamp. One use case
  180. is to correlate packets with their egress device, by enabling socket
  181. option IP_PKTINFO simultaneously.
  182. SOF_TIMESTAMPING_OPT_TSONLY:
  183. Applies to transmit timestamps only. Makes the kernel return the
  184. timestamp as a cmsg alongside an empty packet, as opposed to
  185. alongside the original packet. This reduces the amount of memory
  186. charged to the socket's receive budget (SO_RCVBUF) and delivers
  187. the timestamp even if sysctl net.core.tstamp_allow_data is 0.
  188. This option disables SOF_TIMESTAMPING_OPT_CMSG.
  189. SOF_TIMESTAMPING_OPT_STATS:
  190. Optional stats that are obtained along with the transmit timestamps.
  191. It must be used together with SOF_TIMESTAMPING_OPT_TSONLY. When the
  192. transmit timestamp is available, the stats are available in a
  193. separate control message of type SCM_TIMESTAMPING_OPT_STATS, as a
  194. list of TLVs (struct nlattr) of types. These stats allow the
  195. application to associate various transport layer stats with
  196. the transmit timestamps, such as how long a certain block of
  197. data was limited by peer's receiver window.
  198. SOF_TIMESTAMPING_OPT_PKTINFO:
  199. Enable the SCM_TIMESTAMPING_PKTINFO control message for incoming
  200. packets with hardware timestamps. The message contains struct
  201. scm_ts_pktinfo, which supplies the index of the real interface which
  202. received the packet and its length at layer 2. A valid (non-zero)
  203. interface index will be returned only if CONFIG_NET_RX_BUSY_POLL is
  204. enabled and the driver is using NAPI. The struct contains also two
  205. other fields, but they are reserved and undefined.
  206. SOF_TIMESTAMPING_OPT_TX_SWHW:
  207. Request both hardware and software timestamps for outgoing packets
  208. when SOF_TIMESTAMPING_TX_HARDWARE and SOF_TIMESTAMPING_TX_SOFTWARE
  209. are enabled at the same time. If both timestamps are generated,
  210. two separate messages will be looped to the socket's error queue,
  211. each containing just one timestamp.
  212. SOF_TIMESTAMPING_OPT_RX_FILTER:
  213. Filter out spurious receive timestamps: report a receive timestamp
  214. only if the matching timestamp generation flag is enabled.
  215. Receive timestamps are generated early in the ingress path, before a
  216. packet's destination socket is known. If any socket enables receive
  217. timestamps, packets for all socket will receive timestamped packets.
  218. Including those that request timestamp reporting with
  219. SOF_TIMESTAMPING_SOFTWARE and/or SOF_TIMESTAMPING_RAW_HARDWARE, but
  220. do not request receive timestamp generation. This can happen when
  221. requesting transmit timestamps only.
  222. Receiving spurious timestamps is generally benign. A process can
  223. ignore the unexpected non-zero value. But it makes behavior subtly
  224. dependent on other sockets. This flag isolates the socket for more
  225. deterministic behavior.
  226. New applications are encouraged to pass SOF_TIMESTAMPING_OPT_ID to
  227. disambiguate timestamps and SOF_TIMESTAMPING_OPT_TSONLY to operate
  228. regardless of the setting of sysctl net.core.tstamp_allow_data.
  229. An exception is when a process needs additional cmsg data, for
  230. instance SOL_IP/IP_PKTINFO to detect the egress network interface.
  231. Then pass option SOF_TIMESTAMPING_OPT_CMSG. This option depends on
  232. having access to the contents of the original packet, so cannot be
  233. combined with SOF_TIMESTAMPING_OPT_TSONLY.
  234. 1.3.4. Enabling timestamps via control messages
  235. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  236. In addition to socket options, timestamp generation can be requested
  237. per write via cmsg, only for SOF_TIMESTAMPING_TX_* (see Section 1.3.1).
  238. Using this feature, applications can sample timestamps per sendmsg()
  239. without paying the overhead of enabling and disabling timestamps via
  240. setsockopt::
  241. struct msghdr *msg;
  242. ...
  243. cmsg = CMSG_FIRSTHDR(msg);
  244. cmsg->cmsg_level = SOL_SOCKET;
  245. cmsg->cmsg_type = SO_TIMESTAMPING;
  246. cmsg->cmsg_len = CMSG_LEN(sizeof(__u32));
  247. *((__u32 *) CMSG_DATA(cmsg)) = SOF_TIMESTAMPING_TX_SCHED |
  248. SOF_TIMESTAMPING_TX_SOFTWARE |
  249. SOF_TIMESTAMPING_TX_ACK;
  250. err = sendmsg(fd, msg, 0);
  251. The SOF_TIMESTAMPING_TX_* flags set via cmsg will override
  252. the SOF_TIMESTAMPING_TX_* flags set via setsockopt.
  253. Moreover, applications must still enable timestamp reporting via
  254. setsockopt to receive timestamps::
  255. __u32 val = SOF_TIMESTAMPING_SOFTWARE |
  256. SOF_TIMESTAMPING_OPT_ID /* or any other flag */;
  257. err = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, &val, sizeof(val));
  258. 1.4 Bytestream Timestamps
  259. -------------------------
  260. The SO_TIMESTAMPING interface supports timestamping of bytes in a
  261. bytestream. Each request is interpreted as a request for when the
  262. entire contents of the buffer has passed a timestamping point. That
  263. is, for streams option SOF_TIMESTAMPING_TX_SOFTWARE will record
  264. when all bytes have reached the device driver, regardless of how
  265. many packets the data has been converted into.
  266. In general, bytestreams have no natural delimiters and therefore
  267. correlating a timestamp with data is non-trivial. A range of bytes
  268. may be split across segments, any segments may be merged (possibly
  269. coalescing sections of previously segmented buffers associated with
  270. independent send() calls). Segments can be reordered and the same
  271. byte range can coexist in multiple segments for protocols that
  272. implement retransmissions.
  273. It is essential that all timestamps implement the same semantics,
  274. regardless of these possible transformations, as otherwise they are
  275. incomparable. Handling "rare" corner cases differently from the
  276. simple case (a 1:1 mapping from buffer to skb) is insufficient
  277. because performance debugging often needs to focus on such outliers.
  278. In practice, timestamps can be correlated with segments of a
  279. bytestream consistently, if both semantics of the timestamp and the
  280. timing of measurement are chosen correctly. This challenge is no
  281. different from deciding on a strategy for IP fragmentation. There, the
  282. definition is that only the first fragment is timestamped. For
  283. bytestreams, we chose that a timestamp is generated only when all
  284. bytes have passed a point. SOF_TIMESTAMPING_TX_ACK as defined is easy to
  285. implement and reason about. An implementation that has to take into
  286. account SACK would be more complex due to possible transmission holes
  287. and out of order arrival.
  288. On the host, TCP can also break the simple 1:1 mapping from buffer to
  289. skbuff as a result of Nagle, cork, autocork, segmentation and GSO. The
  290. implementation ensures correctness in all cases by tracking the
  291. individual last byte passed to send(), even if it is no longer the
  292. last byte after an skbuff extend or merge operation. It stores the
  293. relevant sequence number in skb_shinfo(skb)->tskey. Because an skbuff
  294. has only one such field, only one timestamp can be generated.
  295. In rare cases, a timestamp request can be missed if two requests are
  296. collapsed onto the same skb. A process can detect this situation by
  297. enabling SOF_TIMESTAMPING_OPT_ID and comparing the byte offset at
  298. send time with the value returned for each timestamp. It can prevent
  299. the situation by always flushing the TCP stack in between requests,
  300. for instance by enabling TCP_NODELAY and disabling TCP_CORK and
  301. autocork. After linux-4.7, a better way to prevent coalescing is
  302. to use MSG_EOR flag at sendmsg() time.
  303. These precautions ensure that the timestamp is generated only when all
  304. bytes have passed a timestamp point, assuming that the network stack
  305. itself does not reorder the segments. The stack indeed tries to avoid
  306. reordering. The one exception is under administrator control: it is
  307. possible to construct a packet scheduler configuration that delays
  308. segments from the same stream differently. Such a setup would be
  309. unusual.
  310. 2 Data Interfaces
  311. ==================
  312. Timestamps are read using the ancillary data feature of recvmsg().
  313. See `man 3 cmsg` for details of this interface. The socket manual
  314. page (`man 7 socket`) describes how timestamps generated with
  315. SO_TIMESTAMP and SO_TIMESTAMPNS records can be retrieved.
  316. 2.1 SCM_TIMESTAMPING records
  317. ----------------------------
  318. These timestamps are returned in a control message with cmsg_level
  319. SOL_SOCKET, cmsg_type SCM_TIMESTAMPING, and payload of type
  320. For SO_TIMESTAMPING_OLD::
  321. struct scm_timestamping {
  322. struct timespec ts[3];
  323. };
  324. For SO_TIMESTAMPING_NEW::
  325. struct scm_timestamping64 {
  326. struct __kernel_timespec ts[3];
  327. Always use SO_TIMESTAMPING_NEW timestamp to always get timestamp in
  328. struct scm_timestamping64 format.
  329. SO_TIMESTAMPING_OLD returns incorrect timestamps after the year 2038
  330. on 32 bit machines.
  331. The structure can return up to three timestamps. This is a legacy
  332. feature. At least one field is non-zero at any time. Most timestamps
  333. are passed in ts[0]. Hardware timestamps are passed in ts[2].
  334. ts[1] used to hold hardware timestamps converted to system time.
  335. Instead, expose the hardware clock device on the NIC directly as
  336. a HW PTP clock source, to allow time conversion in userspace and
  337. optionally synchronize system time with a userspace PTP stack such
  338. as linuxptp. For the PTP clock API, see Documentation/driver-api/ptp.rst.
  339. Note that if the SO_TIMESTAMP or SO_TIMESTAMPNS option is enabled
  340. together with SO_TIMESTAMPING using SOF_TIMESTAMPING_SOFTWARE, a false
  341. software timestamp will be generated in the recvmsg() call and passed
  342. in ts[0] when a real software timestamp is missing. This happens also
  343. on hardware transmit timestamps.
  344. 2.1.1 Transmit timestamps with MSG_ERRQUEUE
  345. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  346. For transmit timestamps the outgoing packet is looped back to the
  347. socket's error queue with the send timestamp(s) attached. A process
  348. receives the timestamps by calling recvmsg() with flag MSG_ERRQUEUE
  349. set and with a msg_control buffer sufficiently large to receive the
  350. relevant metadata structures. The recvmsg call returns the original
  351. outgoing data packet with two ancillary messages attached.
  352. A message of cm_level SOL_IP(V6) and cm_type IP(V6)_RECVERR
  353. embeds a struct sock_extended_err. This defines the error type. For
  354. timestamps, the ee_errno field is ENOMSG. The other ancillary message
  355. will have cm_level SOL_SOCKET and cm_type SCM_TIMESTAMPING. This
  356. embeds the struct scm_timestamping.
  357. 2.1.1.2 Timestamp types
  358. ~~~~~~~~~~~~~~~~~~~~~~~
  359. The semantics of the three struct timespec are defined by field
  360. ee_info in the extended error structure. It contains a value of
  361. type SCM_TSTAMP_* to define the actual timestamp passed in
  362. scm_timestamping.
  363. The SCM_TSTAMP_* types are 1:1 matches to the SOF_TIMESTAMPING_*
  364. control fields discussed previously, with one exception. For legacy
  365. reasons, SCM_TSTAMP_SND is equal to zero and can be set for both
  366. SOF_TIMESTAMPING_TX_HARDWARE and SOF_TIMESTAMPING_TX_SOFTWARE. It
  367. is the first if ts[2] is non-zero, the second otherwise, in which
  368. case the timestamp is stored in ts[0].
  369. 2.1.1.3 Fragmentation
  370. ~~~~~~~~~~~~~~~~~~~~~
  371. Fragmentation of outgoing datagrams is rare, but is possible, e.g., by
  372. explicitly disabling PMTU discovery. If an outgoing packet is fragmented,
  373. then only the first fragment is timestamped and returned to the sending
  374. socket.
  375. 2.1.1.4 Packet Payload
  376. ~~~~~~~~~~~~~~~~~~~~~~
  377. The calling application is often not interested in receiving the whole
  378. packet payload that it passed to the stack originally: the socket
  379. error queue mechanism is just a method to piggyback the timestamp on.
  380. In this case, the application can choose to read datagrams with a
  381. smaller buffer, possibly even of length 0. The payload is truncated
  382. accordingly. Until the process calls recvmsg() on the error queue,
  383. however, the full packet is queued, taking up budget from SO_RCVBUF.
  384. 2.1.1.5 Blocking Read
  385. ~~~~~~~~~~~~~~~~~~~~~
  386. Reading from the error queue is always a non-blocking operation. To
  387. block waiting on a timestamp, use poll or select. poll() will return
  388. POLLERR in pollfd.revents if any data is ready on the error queue.
  389. There is no need to pass this flag in pollfd.events. This flag is
  390. ignored on request. See also `man 2 poll`.
  391. 2.1.2 Receive timestamps
  392. ^^^^^^^^^^^^^^^^^^^^^^^^
  393. On reception, there is no reason to read from the socket error queue.
  394. The SCM_TIMESTAMPING ancillary data is sent along with the packet data
  395. on a normal recvmsg(). Since this is not a socket error, it is not
  396. accompanied by a message SOL_IP(V6)/IP(V6)_RECVERROR. In this case,
  397. the meaning of the three fields in struct scm_timestamping is
  398. implicitly defined. ts[0] holds a software timestamp if set, ts[1]
  399. is again deprecated and ts[2] holds a hardware timestamp if set.
  400. 3. Hardware Timestamping configuration: SIOCSHWTSTAMP and SIOCGHWTSTAMP
  401. =======================================================================
  402. Hardware time stamping must also be initialized for each device driver
  403. that is expected to do hardware time stamping. The parameter is defined in
  404. include/uapi/linux/net_tstamp.h as::
  405. struct hwtstamp_config {
  406. int flags; /* no flags defined right now, must be zero */
  407. int tx_type; /* HWTSTAMP_TX_* */
  408. int rx_filter; /* HWTSTAMP_FILTER_* */
  409. };
  410. Desired behavior is passed into the kernel and to a specific device by
  411. calling ioctl(SIOCSHWTSTAMP) with a pointer to a struct ifreq whose
  412. ifr_data points to a struct hwtstamp_config. The tx_type and
  413. rx_filter are hints to the driver what it is expected to do. If
  414. the requested fine-grained filtering for incoming packets is not
  415. supported, the driver may time stamp more than just the requested types
  416. of packets.
  417. Drivers are free to use a more permissive configuration than the requested
  418. configuration. It is expected that drivers should only implement directly the
  419. most generic mode that can be supported. For example if the hardware can
  420. support HWTSTAMP_FILTER_PTP_V2_EVENT, then it should generally always upscale
  421. HWTSTAMP_FILTER_PTP_V2_L2_SYNC, and so forth, as HWTSTAMP_FILTER_PTP_V2_EVENT
  422. is more generic (and more useful to applications).
  423. A driver which supports hardware time stamping shall update the struct
  424. with the actual, possibly more permissive configuration. If the
  425. requested packets cannot be time stamped, then nothing should be
  426. changed and ERANGE shall be returned (in contrast to EINVAL, which
  427. indicates that SIOCSHWTSTAMP is not supported at all).
  428. Only a processes with admin rights may change the configuration. User
  429. space is responsible to ensure that multiple processes don't interfere
  430. with each other and that the settings are reset.
  431. Any process can read the actual configuration by passing this
  432. structure to ioctl(SIOCGHWTSTAMP) in the same way. However, this has
  433. not been implemented in all drivers.
  434. ::
  435. /* possible values for hwtstamp_config->tx_type */
  436. enum {
  437. /*
  438. * no outgoing packet will need hardware time stamping;
  439. * should a packet arrive which asks for it, no hardware
  440. * time stamping will be done
  441. */
  442. HWTSTAMP_TX_OFF,
  443. /*
  444. * enables hardware time stamping for outgoing packets;
  445. * the sender of the packet decides which are to be
  446. * time stamped by setting SOF_TIMESTAMPING_TX_SOFTWARE
  447. * before sending the packet
  448. */
  449. HWTSTAMP_TX_ON,
  450. };
  451. /* possible values for hwtstamp_config->rx_filter */
  452. enum {
  453. /* time stamp no incoming packet at all */
  454. HWTSTAMP_FILTER_NONE,
  455. /* time stamp any incoming packet */
  456. HWTSTAMP_FILTER_ALL,
  457. /* return value: time stamp all packets requested plus some others */
  458. HWTSTAMP_FILTER_SOME,
  459. /* PTP v1, UDP, any kind of event packet */
  460. HWTSTAMP_FILTER_PTP_V1_L4_EVENT,
  461. /* for the complete list of values, please check
  462. * the include file include/uapi/linux/net_tstamp.h
  463. */
  464. };
  465. 3.1 Hardware Timestamping Implementation: Device Drivers
  466. --------------------------------------------------------
  467. A driver which supports hardware time stamping must support the
  468. SIOCSHWTSTAMP ioctl and update the supplied struct hwtstamp_config with
  469. the actual values as described in the section on SIOCSHWTSTAMP. It
  470. should also support SIOCGHWTSTAMP.
  471. Time stamps for received packets must be stored in the skb. To get a pointer
  472. to the shared time stamp structure of the skb call skb_hwtstamps(). Then
  473. set the time stamps in the structure::
  474. struct skb_shared_hwtstamps {
  475. /* hardware time stamp transformed into duration
  476. * since arbitrary point in time
  477. */
  478. ktime_t hwtstamp;
  479. };
  480. Time stamps for outgoing packets are to be generated as follows:
  481. - In hard_start_xmit(), check if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
  482. is set no-zero. If yes, then the driver is expected to do hardware time
  483. stamping.
  484. - If this is possible for the skb and requested, then declare
  485. that the driver is doing the time stamping by setting the flag
  486. SKBTX_IN_PROGRESS in skb_shinfo(skb)->tx_flags , e.g. with::
  487. skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
  488. You might want to keep a pointer to the associated skb for the next step
  489. and not free the skb. A driver not supporting hardware time stamping doesn't
  490. do that. A driver must never touch sk_buff::tstamp! It is used to store
  491. software generated time stamps by the network subsystem.
  492. - Driver should call skb_tx_timestamp() as close to passing sk_buff to hardware
  493. as possible. skb_tx_timestamp() provides a software time stamp if requested
  494. and hardware timestamping is not possible (SKBTX_IN_PROGRESS not set).
  495. - As soon as the driver has sent the packet and/or obtained a
  496. hardware time stamp for it, it passes the time stamp back by
  497. calling skb_tstamp_tx() with the original skb, the raw
  498. hardware time stamp. skb_tstamp_tx() clones the original skb and
  499. adds the timestamps, therefore the original skb has to be freed now.
  500. If obtaining the hardware time stamp somehow fails, then the driver
  501. should not fall back to software time stamping. The rationale is that
  502. this would occur at a later time in the processing pipeline than other
  503. software time stamping and therefore could lead to unexpected deltas
  504. between time stamps.
  505. 3.2 Special considerations for stacked PTP Hardware Clocks
  506. ----------------------------------------------------------
  507. There are situations when there may be more than one PHC (PTP Hardware Clock)
  508. in the data path of a packet. The kernel has no explicit mechanism to allow the
  509. user to select which PHC to use for timestamping Ethernet frames. Instead, the
  510. assumption is that the outermost PHC is always the most preferable, and that
  511. kernel drivers collaborate towards achieving that goal. Currently there are 3
  512. cases of stacked PHCs, detailed below:
  513. 3.2.1 DSA (Distributed Switch Architecture) switches
  514. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  515. These are Ethernet switches which have one of their ports connected to an
  516. (otherwise completely unaware) host Ethernet interface, and perform the role of
  517. a port multiplier with optional forwarding acceleration features. Each DSA
  518. switch port is visible to the user as a standalone (virtual) network interface,
  519. and its network I/O is performed, under the hood, indirectly through the host
  520. interface (redirecting to the host port on TX, and intercepting frames on RX).
  521. When a DSA switch is attached to a host port, PTP synchronization has to
  522. suffer, since the switch's variable queuing delay introduces a path delay
  523. jitter between the host port and its PTP partner. For this reason, some DSA
  524. switches include a timestamping clock of their own, and have the ability to
  525. perform network timestamping on their own MAC, such that path delays only
  526. measure wire and PHY propagation latencies. Timestamping DSA switches are
  527. supported in Linux and expose the same ABI as any other network interface (save
  528. for the fact that the DSA interfaces are in fact virtual in terms of network
  529. I/O, they do have their own PHC). It is typical, but not mandatory, for all
  530. interfaces of a DSA switch to share the same PHC.
  531. By design, PTP timestamping with a DSA switch does not need any special
  532. handling in the driver for the host port it is attached to. However, when the
  533. host port also supports PTP timestamping, DSA will take care of intercepting
  534. the ``.ndo_eth_ioctl`` calls towards the host port, and block attempts to enable
  535. hardware timestamping on it. This is because the SO_TIMESTAMPING API does not
  536. allow the delivery of multiple hardware timestamps for the same packet, so
  537. anybody else except for the DSA switch port must be prevented from doing so.
  538. In the generic layer, DSA provides the following infrastructure for PTP
  539. timestamping:
  540. - ``.port_txtstamp()``: a hook called prior to the transmission of
  541. packets with a hardware TX timestamping request from user space.
  542. This is required for two-step timestamping, since the hardware
  543. timestamp becomes available after the actual MAC transmission, so the
  544. driver must be prepared to correlate the timestamp with the original
  545. packet so that it can re-enqueue the packet back into the socket's
  546. error queue. To save the packet for when the timestamp becomes
  547. available, the driver can call ``skb_clone_sk`` , save the clone pointer
  548. in skb->cb and enqueue a tx skb queue. Typically, a switch will have a
  549. PTP TX timestamp register (or sometimes a FIFO) where the timestamp
  550. becomes available. In case of a FIFO, the hardware might store
  551. key-value pairs of PTP sequence ID/message type/domain number and the
  552. actual timestamp. To perform the correlation correctly between the
  553. packets in a queue waiting for timestamping and the actual timestamps,
  554. drivers can use a BPF classifier (``ptp_classify_raw``) to identify
  555. the PTP transport type, and ``ptp_parse_header`` to interpret the PTP
  556. header fields. There may be an IRQ that is raised upon this
  557. timestamp's availability, or the driver might have to poll after
  558. invoking ``dev_queue_xmit()`` towards the host interface.
  559. One-step TX timestamping do not require packet cloning, since there is
  560. no follow-up message required by the PTP protocol (because the
  561. TX timestamp is embedded into the packet by the MAC), and therefore
  562. user space does not expect the packet annotated with the TX timestamp
  563. to be re-enqueued into its socket's error queue.
  564. - ``.port_rxtstamp()``: On RX, the BPF classifier is run by DSA to
  565. identify PTP event messages (any other packets, including PTP general
  566. messages, are not timestamped). The original (and only) timestampable
  567. skb is provided to the driver, for it to annotate it with a timestamp,
  568. if that is immediately available, or defer to later. On reception,
  569. timestamps might either be available in-band (through metadata in the
  570. DSA header, or attached in other ways to the packet), or out-of-band
  571. (through another RX timestamping FIFO). Deferral on RX is typically
  572. necessary when retrieving the timestamp needs a sleepable context. In
  573. that case, it is the responsibility of the DSA driver to call
  574. ``netif_rx()`` on the freshly timestamped skb.
  575. 3.2.2 Ethernet PHYs
  576. ^^^^^^^^^^^^^^^^^^^
  577. These are devices that typically fulfill a Layer 1 role in the network stack,
  578. hence they do not have a representation in terms of a network interface as DSA
  579. switches do. However, PHYs may be able to detect and timestamp PTP packets, for
  580. performance reasons: timestamps taken as close as possible to the wire have the
  581. potential to yield a more stable and precise synchronization.
  582. A PHY driver that supports PTP timestamping must create a ``struct
  583. mii_timestamper`` and add a pointer to it in ``phydev->mii_ts``. The presence
  584. of this pointer will be checked by the networking stack.
  585. Since PHYs do not have network interface representations, the timestamping and
  586. ethtool ioctl operations for them need to be mediated by their respective MAC
  587. driver. Therefore, as opposed to DSA switches, modifications need to be done
  588. to each individual MAC driver for PHY timestamping support. This entails:
  589. - Checking, in ``.ndo_eth_ioctl``, whether ``phy_has_hwtstamp(netdev->phydev)``
  590. is true or not. If it is, then the MAC driver should not process this request
  591. but instead pass it on to the PHY using ``phy_mii_ioctl()``.
  592. - On RX, special intervention may or may not be needed, depending on the
  593. function used to deliver skb's up the network stack. In the case of plain
  594. ``netif_rx()`` and similar, MAC drivers must check whether
  595. ``skb_defer_rx_timestamp(skb)`` is necessary or not - and if it is, don't
  596. call ``netif_rx()`` at all. If ``CONFIG_NETWORK_PHY_TIMESTAMPING`` is
  597. enabled, and ``skb->dev->phydev->mii_ts`` exists, its ``.rxtstamp()`` hook
  598. will be called now, to determine, using logic very similar to DSA, whether
  599. deferral for RX timestamping is necessary. Again like DSA, it becomes the
  600. responsibility of the PHY driver to send the packet up the stack when the
  601. timestamp is available.
  602. For other skb receive functions, such as ``napi_gro_receive`` and
  603. ``netif_receive_skb``, the stack automatically checks whether
  604. ``skb_defer_rx_timestamp()`` is necessary, so this check is not needed inside
  605. the driver.
  606. - On TX, again, special intervention might or might not be needed. The
  607. function that calls the ``mii_ts->txtstamp()`` hook is named
  608. ``skb_clone_tx_timestamp()``. This function can either be called directly
  609. (case in which explicit MAC driver support is indeed needed), but the
  610. function also piggybacks from the ``skb_tx_timestamp()`` call, which many MAC
  611. drivers already perform for software timestamping purposes. Therefore, if a
  612. MAC supports software timestamping, it does not need to do anything further
  613. at this stage.
  614. 3.2.3 MII bus snooping devices
  615. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  616. These perform the same role as timestamping Ethernet PHYs, save for the fact
  617. that they are discrete devices and can therefore be used in conjunction with
  618. any PHY even if it doesn't support timestamping. In Linux, they are
  619. discoverable and attachable to a ``struct phy_device`` through Device Tree, and
  620. for the rest, they use the same mii_ts infrastructure as those. See
  621. Documentation/devicetree/bindings/ptp/timestamper.txt for more details.
  622. 3.2.4 Other caveats for MAC drivers
  623. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  624. Stacked PHCs, especially DSA (but not only) - since that doesn't require any
  625. modification to MAC drivers, so it is more difficult to ensure correctness of
  626. all possible code paths - is that they uncover bugs which were impossible to
  627. trigger before the existence of stacked PTP clocks. One example has to do with
  628. this line of code, already presented earlier::
  629. skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
  630. Any TX timestamping logic, be it a plain MAC driver, a DSA switch driver, a PHY
  631. driver or a MII bus snooping device driver, should set this flag.
  632. But a MAC driver that is unaware of PHC stacking might get tripped up by
  633. somebody other than itself setting this flag, and deliver a duplicate
  634. timestamp.
  635. For example, a typical driver design for TX timestamping might be to split the
  636. transmission part into 2 portions:
  637. 1. "TX": checks whether PTP timestamping has been previously enabled through
  638. the ``.ndo_eth_ioctl`` ("``priv->hwtstamp_tx_enabled == true``") and the
  639. current skb requires a TX timestamp ("``skb_shinfo(skb)->tx_flags &
  640. SKBTX_HW_TSTAMP``"). If this is true, it sets the
  641. "``skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS``" flag. Note: as
  642. described above, in the case of a stacked PHC system, this condition should
  643. never trigger, as this MAC is certainly not the outermost PHC. But this is
  644. not where the typical issue is. Transmission proceeds with this packet.
  645. 2. "TX confirmation": Transmission has finished. The driver checks whether it
  646. is necessary to collect any TX timestamp for it. Here is where the typical
  647. issues are: the MAC driver takes a shortcut and only checks whether
  648. "``skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS``" was set. With a stacked
  649. PHC system, this is incorrect because this MAC driver is not the only entity
  650. in the TX data path who could have enabled SKBTX_IN_PROGRESS in the first
  651. place.
  652. The correct solution for this problem is for MAC drivers to have a compound
  653. check in their "TX confirmation" portion, not only for
  654. "``skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS``", but also for
  655. "``priv->hwtstamp_tx_enabled == true``". Because the rest of the system ensures
  656. that PTP timestamping is not enabled for anything other than the outermost PHC,
  657. this enhanced check will avoid delivering a duplicated TX timestamp to user
  658. space.