timestamping.txt 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. 1. Control Interfaces
  2. The interfaces for receiving network packages timestamps are:
  3. * SO_TIMESTAMP
  4. Generates a timestamp for each incoming packet in (not necessarily
  5. monotonic) system time. Reports the timestamp via recvmsg() in a
  6. control message as struct timeval (usec resolution).
  7. * SO_TIMESTAMPNS
  8. Same timestamping mechanism as SO_TIMESTAMP, but reports the
  9. timestamp as struct timespec (nsec resolution).
  10. * IP_MULTICAST_LOOP + SO_TIMESTAMP[NS]
  11. Only for multicast:approximate transmit timestamp obtained by
  12. reading the looped packet receive timestamp.
  13. * SO_TIMESTAMPING
  14. Generates timestamps on reception, transmission or both. Supports
  15. multiple timestamp sources, including hardware. Supports generating
  16. timestamps for stream sockets.
  17. 1.1 SO_TIMESTAMP:
  18. This socket option enables timestamping of datagrams on the reception
  19. path. Because the destination socket, if any, is not known early in
  20. the network stack, the feature has to be enabled for all packets. The
  21. same is true for all early receive timestamp options.
  22. For interface details, see `man 7 socket`.
  23. 1.2 SO_TIMESTAMPNS:
  24. This option is identical to SO_TIMESTAMP except for the returned data type.
  25. Its struct timespec allows for higher resolution (ns) timestamps than the
  26. timeval of SO_TIMESTAMP (ms).
  27. 1.3 SO_TIMESTAMPING:
  28. Supports multiple types of timestamp requests. As a result, this
  29. socket option takes a bitmap of flags, not a boolean. In
  30. err = setsockopt(fd, SOL_SOCKET, SO_TIMESTAMPING, (void *) val, &val);
  31. val is an integer with any of the following bits set. Setting other
  32. bit returns EINVAL and does not change the current state.
  33. 1.3.1 Timestamp Generation
  34. Some bits are requests to the stack to try to generate timestamps. Any
  35. combination of them is valid. Changes to these bits apply to newly
  36. created packets, not to packets already in the stack. As a result, it
  37. is possible to selectively request timestamps for a subset of packets
  38. (e.g., for sampling) by embedding an send() call within two setsockopt
  39. calls, one to enable timestamp generation and one to disable it.
  40. Timestamps may also be generated for reasons other than being
  41. requested by a particular socket, such as when receive timestamping is
  42. enabled system wide, as explained earlier.
  43. SOF_TIMESTAMPING_RX_HARDWARE:
  44. Request rx timestamps generated by the network adapter.
  45. SOF_TIMESTAMPING_RX_SOFTWARE:
  46. Request rx timestamps when data enters the kernel. These timestamps
  47. are generated just after a device driver hands a packet to the
  48. kernel receive stack.
  49. SOF_TIMESTAMPING_TX_HARDWARE:
  50. Request tx timestamps generated by the network adapter.
  51. SOF_TIMESTAMPING_TX_SOFTWARE:
  52. Request tx timestamps when data leaves the kernel. These timestamps
  53. are generated in the device driver as close as possible, but always
  54. prior to, passing the packet to the network interface. Hence, they
  55. require driver support and may not be available for all devices.
  56. SOF_TIMESTAMPING_TX_SCHED:
  57. Request tx timestamps prior to entering the packet scheduler. Kernel
  58. transmit latency is, if long, often dominated by queuing delay. The
  59. difference between this timestamp and one taken at
  60. SOF_TIMESTAMPING_TX_SOFTWARE will expose this latency independent
  61. of protocol processing. The latency incurred in protocol
  62. processing, if any, can be computed by subtracting a userspace
  63. timestamp taken immediately before send() from this timestamp. On
  64. machines with virtual devices where a transmitted packet travels
  65. through multiple devices and, hence, multiple packet schedulers,
  66. a timestamp is generated at each layer. This allows for fine
  67. grained measurement of queuing delay.
  68. SOF_TIMESTAMPING_TX_ACK:
  69. Request tx timestamps when all data in the send buffer has been
  70. acknowledged. This only makes sense for reliable protocols. It is
  71. currently only implemented for TCP. For that protocol, it may
  72. over-report measurement, because the timestamp is generated when all
  73. data up to and including the buffer at send() was acknowledged: the
  74. cumulative acknowledgment. The mechanism ignores SACK and FACK.
  75. 1.3.2 Timestamp Reporting
  76. The other three bits control which timestamps will be reported in a
  77. generated control message. Changes to the bits take immediate
  78. effect at the timestamp reporting locations in the stack. Timestamps
  79. are only reported for packets that also have the relevant timestamp
  80. generation request set.
  81. SOF_TIMESTAMPING_SOFTWARE:
  82. Report any software timestamps when available.
  83. SOF_TIMESTAMPING_SYS_HARDWARE:
  84. This option is deprecated and ignored.
  85. SOF_TIMESTAMPING_RAW_HARDWARE:
  86. Report hardware timestamps as generated by
  87. SOF_TIMESTAMPING_TX_HARDWARE when available.
  88. 1.3.3 Timestamp Options
  89. The interface supports one option
  90. SOF_TIMESTAMPING_OPT_ID:
  91. Generate a unique identifier along with each packet. A process can
  92. have multiple concurrent timestamping requests outstanding. Packets
  93. can be reordered in the transmit path, for instance in the packet
  94. scheduler. In that case timestamps will be queued onto the error
  95. queue out of order from the original send() calls. This option
  96. embeds a counter that is incremented at send() time, to order
  97. timestamps within a flow.
  98. This option is implemented only for transmit timestamps. There, the
  99. timestamp is always looped along with a struct sock_extended_err.
  100. The option modifies field ee_data to pass an id that is unique
  101. among all possibly concurrently outstanding timestamp requests for
  102. that socket. In practice, it is a monotonically increasing u32
  103. (that wraps).
  104. In datagram sockets, the counter increments on each send call. In
  105. stream sockets, it increments with every byte.
  106. 1.4 Bytestream Timestamps
  107. The SO_TIMESTAMPING interface supports timestamping of bytes in a
  108. bytestream. Each request is interpreted as a request for when the
  109. entire contents of the buffer has passed a timestamping point. That
  110. is, for streams option SOF_TIMESTAMPING_TX_SOFTWARE will record
  111. when all bytes have reached the device driver, regardless of how
  112. many packets the data has been converted into.
  113. In general, bytestreams have no natural delimiters and therefore
  114. correlating a timestamp with data is non-trivial. A range of bytes
  115. may be split across segments, any segments may be merged (possibly
  116. coalescing sections of previously segmented buffers associated with
  117. independent send() calls). Segments can be reordered and the same
  118. byte range can coexist in multiple segments for protocols that
  119. implement retransmissions.
  120. It is essential that all timestamps implement the same semantics,
  121. regardless of these possible transformations, as otherwise they are
  122. incomparable. Handling "rare" corner cases differently from the
  123. simple case (a 1:1 mapping from buffer to skb) is insufficient
  124. because performance debugging often needs to focus on such outliers.
  125. In practice, timestamps can be correlated with segments of a
  126. bytestream consistently, if both semantics of the timestamp and the
  127. timing of measurement are chosen correctly. This challenge is no
  128. different from deciding on a strategy for IP fragmentation. There, the
  129. definition is that only the first fragment is timestamped. For
  130. bytestreams, we chose that a timestamp is generated only when all
  131. bytes have passed a point. SOF_TIMESTAMPING_TX_ACK as defined is easy to
  132. implement and reason about. An implementation that has to take into
  133. account SACK would be more complex due to possible transmission holes
  134. and out of order arrival.
  135. On the host, TCP can also break the simple 1:1 mapping from buffer to
  136. skbuff as a result of Nagle, cork, autocork, segmentation and GSO. The
  137. implementation ensures correctness in all cases by tracking the
  138. individual last byte passed to send(), even if it is no longer the
  139. last byte after an skbuff extend or merge operation. It stores the
  140. relevant sequence number in skb_shinfo(skb)->tskey. Because an skbuff
  141. has only one such field, only one timestamp can be generated.
  142. In rare cases, a timestamp request can be missed if two requests are
  143. collapsed onto the same skb. A process can detect this situation by
  144. enabling SOF_TIMESTAMPING_OPT_ID and comparing the byte offset at
  145. send time with the value returned for each timestamp. It can prevent
  146. the situation by always flushing the TCP stack in between requests,
  147. for instance by enabling TCP_NODELAY and disabling TCP_CORK and
  148. autocork.
  149. These precautions ensure that the timestamp is generated only when all
  150. bytes have passed a timestamp point, assuming that the network stack
  151. itself does not reorder the segments. The stack indeed tries to avoid
  152. reordering. The one exception is under administrator control: it is
  153. possible to construct a packet scheduler configuration that delays
  154. segments from the same stream differently. Such a setup would be
  155. unusual.
  156. 2 Data Interfaces
  157. Timestamps are read using the ancillary data feature of recvmsg().
  158. See `man 3 cmsg` for details of this interface. The socket manual
  159. page (`man 7 socket`) describes how timestamps generated with
  160. SO_TIMESTAMP and SO_TIMESTAMPNS records can be retrieved.
  161. 2.1 SCM_TIMESTAMPING records
  162. These timestamps are returned in a control message with cmsg_level
  163. SOL_SOCKET, cmsg_type SCM_TIMESTAMPING, and payload of type
  164. struct scm_timestamping {
  165. struct timespec ts[3];
  166. };
  167. The structure can return up to three timestamps. This is a legacy
  168. feature. Only one field is non-zero at any time. Most timestamps
  169. are passed in ts[0]. Hardware timestamps are passed in ts[2].
  170. ts[1] used to hold hardware timestamps converted to system time.
  171. Instead, expose the hardware clock device on the NIC directly as
  172. a HW PTP clock source, to allow time conversion in userspace and
  173. optionally synchronize system time with a userspace PTP stack such
  174. as linuxptp. For the PTP clock API, see Documentation/ptp/ptp.txt.
  175. 2.1.1 Transmit timestamps with MSG_ERRQUEUE
  176. For transmit timestamps the outgoing packet is looped back to the
  177. socket's error queue with the send timestamp(s) attached. A process
  178. receives the timestamps by calling recvmsg() with flag MSG_ERRQUEUE
  179. set and with a msg_control buffer sufficiently large to receive the
  180. relevant metadata structures. The recvmsg call returns the original
  181. outgoing data packet with two ancillary messages attached.
  182. A message of cm_level SOL_IP(V6) and cm_type IP(V6)_RECVERR
  183. embeds a struct sock_extended_err. This defines the error type. For
  184. timestamps, the ee_errno field is ENOMSG. The other ancillary message
  185. will have cm_level SOL_SOCKET and cm_type SCM_TIMESTAMPING. This
  186. embeds the struct scm_timestamping.
  187. 2.1.1.2 Timestamp types
  188. The semantics of the three struct timespec are defined by field
  189. ee_info in the extended error structure. It contains a value of
  190. type SCM_TSTAMP_* to define the actual timestamp passed in
  191. scm_timestamping.
  192. The SCM_TSTAMP_* types are 1:1 matches to the SOF_TIMESTAMPING_*
  193. control fields discussed previously, with one exception. For legacy
  194. reasons, SCM_TSTAMP_SND is equal to zero and can be set for both
  195. SOF_TIMESTAMPING_TX_HARDWARE and SOF_TIMESTAMPING_TX_SOFTWARE. It
  196. is the first if ts[2] is non-zero, the second otherwise, in which
  197. case the timestamp is stored in ts[0].
  198. 2.1.1.3 Fragmentation
  199. Fragmentation of outgoing datagrams is rare, but is possible, e.g., by
  200. explicitly disabling PMTU discovery. If an outgoing packet is fragmented,
  201. then only the first fragment is timestamped and returned to the sending
  202. socket.
  203. 2.1.1.4 Packet Payload
  204. The calling application is often not interested in receiving the whole
  205. packet payload that it passed to the stack originally: the socket
  206. error queue mechanism is just a method to piggyback the timestamp on.
  207. In this case, the application can choose to read datagrams with a
  208. smaller buffer, possibly even of length 0. The payload is truncated
  209. accordingly. Until the process calls recvmsg() on the error queue,
  210. however, the full packet is queued, taking up budget from SO_RCVBUF.
  211. 2.1.1.5 Blocking Read
  212. Reading from the error queue is always a non-blocking operation. To
  213. block waiting on a timestamp, use poll or select. poll() will return
  214. POLLERR in pollfd.revents if any data is ready on the error queue.
  215. There is no need to pass this flag in pollfd.events. This flag is
  216. ignored on request. See also `man 2 poll`.
  217. 2.1.2 Receive timestamps
  218. On reception, there is no reason to read from the socket error queue.
  219. The SCM_TIMESTAMPING ancillary data is sent along with the packet data
  220. on a normal recvmsg(). Since this is not a socket error, it is not
  221. accompanied by a message SOL_IP(V6)/IP(V6)_RECVERROR. In this case,
  222. the meaning of the three fields in struct scm_timestamping is
  223. implicitly defined. ts[0] holds a software timestamp if set, ts[1]
  224. is again deprecated and ts[2] holds a hardware timestamp if set.
  225. 3. Hardware Timestamping configuration: SIOCSHWTSTAMP and SIOCGHWTSTAMP
  226. Hardware time stamping must also be initialized for each device driver
  227. that is expected to do hardware time stamping. The parameter is defined in
  228. /include/linux/net_tstamp.h as:
  229. struct hwtstamp_config {
  230. int flags; /* no flags defined right now, must be zero */
  231. int tx_type; /* HWTSTAMP_TX_* */
  232. int rx_filter; /* HWTSTAMP_FILTER_* */
  233. };
  234. Desired behavior is passed into the kernel and to a specific device by
  235. calling ioctl(SIOCSHWTSTAMP) with a pointer to a struct ifreq whose
  236. ifr_data points to a struct hwtstamp_config. The tx_type and
  237. rx_filter are hints to the driver what it is expected to do. If
  238. the requested fine-grained filtering for incoming packets is not
  239. supported, the driver may time stamp more than just the requested types
  240. of packets.
  241. A driver which supports hardware time stamping shall update the struct
  242. with the actual, possibly more permissive configuration. If the
  243. requested packets cannot be time stamped, then nothing should be
  244. changed and ERANGE shall be returned (in contrast to EINVAL, which
  245. indicates that SIOCSHWTSTAMP is not supported at all).
  246. Only a processes with admin rights may change the configuration. User
  247. space is responsible to ensure that multiple processes don't interfere
  248. with each other and that the settings are reset.
  249. Any process can read the actual configuration by passing this
  250. structure to ioctl(SIOCGHWTSTAMP) in the same way. However, this has
  251. not been implemented in all drivers.
  252. /* possible values for hwtstamp_config->tx_type */
  253. enum {
  254. /*
  255. * no outgoing packet will need hardware time stamping;
  256. * should a packet arrive which asks for it, no hardware
  257. * time stamping will be done
  258. */
  259. HWTSTAMP_TX_OFF,
  260. /*
  261. * enables hardware time stamping for outgoing packets;
  262. * the sender of the packet decides which are to be
  263. * time stamped by setting SOF_TIMESTAMPING_TX_SOFTWARE
  264. * before sending the packet
  265. */
  266. HWTSTAMP_TX_ON,
  267. };
  268. /* possible values for hwtstamp_config->rx_filter */
  269. enum {
  270. /* time stamp no incoming packet at all */
  271. HWTSTAMP_FILTER_NONE,
  272. /* time stamp any incoming packet */
  273. HWTSTAMP_FILTER_ALL,
  274. /* return value: time stamp all packets requested plus some others */
  275. HWTSTAMP_FILTER_SOME,
  276. /* PTP v1, UDP, any kind of event packet */
  277. HWTSTAMP_FILTER_PTP_V1_L4_EVENT,
  278. /* for the complete list of values, please check
  279. * the include file /include/linux/net_tstamp.h
  280. */
  281. };
  282. 3.1 Hardware Timestamping Implementation: Device Drivers
  283. A driver which supports hardware time stamping must support the
  284. SIOCSHWTSTAMP ioctl and update the supplied struct hwtstamp_config with
  285. the actual values as described in the section on SIOCSHWTSTAMP. It
  286. should also support SIOCGHWTSTAMP.
  287. Time stamps for received packets must be stored in the skb. To get a pointer
  288. to the shared time stamp structure of the skb call skb_hwtstamps(). Then
  289. set the time stamps in the structure:
  290. struct skb_shared_hwtstamps {
  291. /* hardware time stamp transformed into duration
  292. * since arbitrary point in time
  293. */
  294. ktime_t hwtstamp;
  295. };
  296. Time stamps for outgoing packets are to be generated as follows:
  297. - In hard_start_xmit(), check if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)
  298. is set no-zero. If yes, then the driver is expected to do hardware time
  299. stamping.
  300. - If this is possible for the skb and requested, then declare
  301. that the driver is doing the time stamping by setting the flag
  302. SKBTX_IN_PROGRESS in skb_shinfo(skb)->tx_flags , e.g. with
  303. skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
  304. You might want to keep a pointer to the associated skb for the next step
  305. and not free the skb. A driver not supporting hardware time stamping doesn't
  306. do that. A driver must never touch sk_buff::tstamp! It is used to store
  307. software generated time stamps by the network subsystem.
  308. - Driver should call skb_tx_timestamp() as close to passing sk_buff to hardware
  309. as possible. skb_tx_timestamp() provides a software time stamp if requested
  310. and hardware timestamping is not possible (SKBTX_IN_PROGRESS not set).
  311. - As soon as the driver has sent the packet and/or obtained a
  312. hardware time stamp for it, it passes the time stamp back by
  313. calling skb_hwtstamp_tx() with the original skb, the raw
  314. hardware time stamp. skb_hwtstamp_tx() clones the original skb and
  315. adds the timestamps, therefore the original skb has to be freed now.
  316. If obtaining the hardware time stamp somehow fails, then the driver
  317. should not fall back to software time stamping. The rationale is that
  318. this would occur at a later time in the processing pipeline than other
  319. software time stamping and therefore could lead to unexpected deltas
  320. between time stamps.