Skip to content

Commit cb9eff0

Browse files
pohlydavem330
authored andcommitted
net: new user space API for time stamping of incoming and outgoing packets
User space can request hardware and/or software time stamping. Reporting of the result(s) via a new control message is enabled separately for each field in the message because some of the fields may require additional computation and thus cause overhead. User space can tell the different kinds of time stamps apart and choose what suits its needs. When a TX timestamp operation is requested, the TX skb will be cloned and the clone will be time stamped (in hardware or software) and added to the socket error queue of the skb, if the skb has a socket associated with it. The actual TX timestamp will reach userspace as a RX timestamp on the cloned packet. If timestamping is requested and no timestamping is done in the device driver (potentially this may use hardware timestamping), it will be done in software after the device's start_hard_xmit routine. Signed-off-by: Patrick Ohly <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent a75244c commit cb9eff0

File tree

26 files changed

+883
-0
lines changed

26 files changed

+883
-0
lines changed
Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
The existing interfaces for getting network packages time stamped are:
2+
3+
* SO_TIMESTAMP
4+
Generate time stamp for each incoming packet using the (not necessarily
5+
monotonous!) system time. Result is returned via recv_msg() in a
6+
control message as timeval (usec resolution).
7+
8+
* SO_TIMESTAMPNS
9+
Same time stamping mechanism as SO_TIMESTAMP, but returns result as
10+
timespec (nsec resolution).
11+
12+
* IP_MULTICAST_LOOP + SO_TIMESTAMP[NS]
13+
Only for multicasts: approximate send time stamp by receiving the looped
14+
packet and using its receive time stamp.
15+
16+
The following interface complements the existing ones: receive time
17+
stamps can be generated and returned for arbitrary packets and much
18+
closer to the point where the packet is really sent. Time stamps can
19+
be generated in software (as before) or in hardware (if the hardware
20+
has such a feature).
21+
22+
SO_TIMESTAMPING:
23+
24+
Instructs the socket layer which kind of information is wanted. The
25+
parameter is an integer with some of the following bits set. Setting
26+
other bits is an error and doesn't change the current state.
27+
28+
SOF_TIMESTAMPING_TX_HARDWARE: try to obtain send time stamp in hardware
29+
SOF_TIMESTAMPING_TX_SOFTWARE: if SOF_TIMESTAMPING_TX_HARDWARE is off or
30+
fails, then do it in software
31+
SOF_TIMESTAMPING_RX_HARDWARE: return the original, unmodified time stamp
32+
as generated by the hardware
33+
SOF_TIMESTAMPING_RX_SOFTWARE: if SOF_TIMESTAMPING_RX_HARDWARE is off or
34+
fails, then do it in software
35+
SOF_TIMESTAMPING_RAW_HARDWARE: return original raw hardware time stamp
36+
SOF_TIMESTAMPING_SYS_HARDWARE: return hardware time stamp transformed to
37+
the system time base
38+
SOF_TIMESTAMPING_SOFTWARE: return system time stamp generated in
39+
software
40+
41+
SOF_TIMESTAMPING_TX/RX determine how time stamps are generated.
42+
SOF_TIMESTAMPING_RAW/SYS determine how they are reported in the
43+
following control message:
44+
struct scm_timestamping {
45+
struct timespec systime;
46+
struct timespec hwtimetrans;
47+
struct timespec hwtimeraw;
48+
};
49+
50+
recvmsg() can be used to get this control message for regular incoming
51+
packets. For send time stamps the outgoing packet is looped back to
52+
the socket's error queue with the send time stamp(s) attached. It can
53+
be received with recvmsg(flags=MSG_ERRQUEUE). The call returns the
54+
original outgoing packet data including all headers preprended down to
55+
and including the link layer, the scm_timestamping control message and
56+
a sock_extended_err control message with ee_errno==ENOMSG and
57+
ee_origin==SO_EE_ORIGIN_TIMESTAMPING. A socket with such a pending
58+
bounced packet is ready for reading as far as select() is concerned.
59+
60+
All three values correspond to the same event in time, but were
61+
generated in different ways. Each of these values may be empty (= all
62+
zero), in which case no such value was available. If the application
63+
is not interested in some of these values, they can be left blank to
64+
avoid the potential overhead of calculating them.
65+
66+
systime is the value of the system time at that moment. This
67+
corresponds to the value also returned via SO_TIMESTAMP[NS]. If the
68+
time stamp was generated by hardware, then this field is
69+
empty. Otherwise it is filled in if SOF_TIMESTAMPING_SOFTWARE is
70+
set.
71+
72+
hwtimeraw is the original hardware time stamp. Filled in if
73+
SOF_TIMESTAMPING_RAW_HARDWARE is set. No assumptions about its
74+
relation to system time should be made.
75+
76+
hwtimetrans is the hardware time stamp transformed so that it
77+
corresponds as good as possible to system time. This correlation is
78+
not perfect; as a consequence, sorting packets received via different
79+
NICs by their hwtimetrans may differ from the order in which they were
80+
received. hwtimetrans may be non-monotonic even for the same NIC.
81+
Filled in if SOF_TIMESTAMPING_SYS_HARDWARE is set. Requires support
82+
by the network device and will be empty without that support.
83+
84+
85+
SIOCSHWTSTAMP:
86+
87+
Hardware time stamping must also be initialized for each device driver
88+
that is expected to do hardware time stamping. The parameter is:
89+
90+
struct hwtstamp_config {
91+
int flags; /* no flags defined right now, must be zero */
92+
int tx_type; /* HWTSTAMP_TX_* */
93+
int rx_filter; /* HWTSTAMP_FILTER_* */
94+
};
95+
96+
Desired behavior is passed into the kernel and to a specific device by
97+
calling ioctl(SIOCSHWTSTAMP) with a pointer to a struct ifreq whose
98+
ifr_data points to a struct hwtstamp_config. The tx_type and
99+
rx_filter are hints to the driver what it is expected to do. If
100+
the requested fine-grained filtering for incoming packets is not
101+
supported, the driver may time stamp more than just the requested types
102+
of packets.
103+
104+
A driver which supports hardware time stamping shall update the struct
105+
with the actual, possibly more permissive configuration. If the
106+
requested packets cannot be time stamped, then nothing should be
107+
changed and ERANGE shall be returned (in contrast to EINVAL, which
108+
indicates that SIOCSHWTSTAMP is not supported at all).
109+
110+
Only a processes with admin rights may change the configuration. User
111+
space is responsible to ensure that multiple processes don't interfere
112+
with each other and that the settings are reset.
113+
114+
/* possible values for hwtstamp_config->tx_type */
115+
enum {
116+
/*
117+
* no outgoing packet will need hardware time stamping;
118+
* should a packet arrive which asks for it, no hardware
119+
* time stamping will be done
120+
*/
121+
HWTSTAMP_TX_OFF,
122+
123+
/*
124+
* enables hardware time stamping for outgoing packets;
125+
* the sender of the packet decides which are to be
126+
* time stamped by setting SOF_TIMESTAMPING_TX_SOFTWARE
127+
* before sending the packet
128+
*/
129+
HWTSTAMP_TX_ON,
130+
};
131+
132+
/* possible values for hwtstamp_config->rx_filter */
133+
enum {
134+
/* time stamp no incoming packet at all */
135+
HWTSTAMP_FILTER_NONE,
136+
137+
/* time stamp any incoming packet */
138+
HWTSTAMP_FILTER_ALL,
139+
140+
/* return value: time stamp all packets requested plus some others */
141+
HWTSTAMP_FILTER_SOME,
142+
143+
/* PTP v1, UDP, any kind of event packet */
144+
HWTSTAMP_FILTER_PTP_V1_L4_EVENT,
145+
146+
...
147+
};
148+
149+
150+
DEVICE IMPLEMENTATION
151+
152+
A driver which supports hardware time stamping must support the
153+
SIOCSHWTSTAMP ioctl. Time stamps for received packets must be stored
154+
in the skb with skb_hwtstamp_set().
155+
156+
Time stamps for outgoing packets are to be generated as follows:
157+
- In hard_start_xmit(), check if skb_hwtstamp_check_tx_hardware()
158+
returns non-zero. If yes, then the driver is expected
159+
to do hardware time stamping.
160+
- If this is possible for the skb and requested, then declare
161+
that the driver is doing the time stamping by calling
162+
skb_hwtstamp_tx_in_progress(). A driver not supporting
163+
hardware time stamping doesn't do that. A driver must never
164+
touch sk_buff::tstamp! It is used to store how time stamping
165+
for an outgoing packets is to be done.
166+
- As soon as the driver has sent the packet and/or obtained a
167+
hardware time stamp for it, it passes the time stamp back by
168+
calling skb_hwtstamp_tx() with the original skb, the raw
169+
hardware time stamp and a handle to the device (necessary
170+
to convert the hardware time stamp to system time). If obtaining
171+
the hardware time stamp somehow fails, then the driver should
172+
not fall back to software time stamping. The rationale is that
173+
this would occur at a later time in the processing pipeline
174+
than other software time stamping and therefore could lead
175+
to unexpected deltas between time stamps.
176+
- If the driver did not call skb_hwtstamp_tx_in_progress(), then
177+
dev_hard_start_xmit() checks whether software time stamping
178+
is wanted as fallback and potentially generates the time stamp.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
timestamping
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
CPPFLAGS = -I../../../include
2+
3+
timestamping: timestamping.c
4+
5+
clean:
6+
rm -f timestamping

0 commit comments

Comments
 (0)