iPXE
ntp.c File Reference

Network Time Protocol. More...

#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <ipxe/malloc.h>
#include <ipxe/refcnt.h>
#include <ipxe/iobuf.h>
#include <ipxe/xfer.h>
#include <ipxe/open.h>
#include <ipxe/retry.h>
#include <ipxe/timer.h>
#include <ipxe/time.h>
#include <ipxe/tcpip.h>
#include <ipxe/dhcp.h>
#include <ipxe/settings.h>
#include <ipxe/ntp.h>

Go to the source code of this file.

Data Structures

struct  ntp_client
 An NTP client. More...

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 FILE_SECBOOT (PERMITTED)
static void ntp_close (struct ntp_client *ntp, int rc)
 Close NTP client.
static int ntp_request (struct ntp_client *ntp)
 Send NTP request.
static int ntp_deliver (struct ntp_client *ntp, struct io_buffer *iobuf, struct xfer_metadata *meta)
 Handle NTP response.
static void ntp_window_changed (struct ntp_client *ntp)
 Handle data transfer window change.
static void ntp_expired (struct retry_timer *timer, int fail)
 Handle NTP timer expiry.
int start_ntp (struct interface *job, const char *hostname)
 Start NTP client.
const struct setting ntp_setting __setting (SETTING_IP4_EXTRA, ntp)
 IPv4 NTP server setting.

Variables

static struct interface_operation ntp_xfer_op []
 Data transfer interface operations.
static struct interface_descriptor ntp_xfer_desc
 Data transfer interface descriptor.
static struct interface_operation ntp_job_op []
 Job control interface operations.
static struct interface_descriptor ntp_job_desc
 Job control interface descriptor.

Detailed Description

Network Time Protocol.

Definition in file ntp.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

◆ ntp_close()

void ntp_close ( struct ntp_client * ntp,
int rc )
static

Close NTP client.

Parameters
ntpNTP client
rcReason for close

Definition at line 68 of file ntp.c.

68 {
69
70 /* Stop timer */
71 stop_timer ( &ntp->timer );
72
73 /* Shut down interfaces */
74 intf_shutdown ( &ntp->xfer, rc );
75 intf_shutdown ( &ntp->job, rc );
76}
struct arbelprm_rc_send_wqe rc
Definition arbel.h:3
void intf_shutdown(struct interface *intf, int rc)
Shut down an object interface.
Definition interface.c:279
int ntp(const char *hostname)
Get time and date via NTP.
Definition ntpmgmt.c:46
void stop_timer(struct retry_timer *timer)
Stop timer.
Definition retry.c:118

References intf_shutdown(), ntp(), rc, and stop_timer().

Referenced by ntp_deliver(), ntp_expired(), and start_ntp().

◆ ntp_request()

int ntp_request ( struct ntp_client * ntp)
static

Send NTP request.

Parameters
ntpNTP client
Return values
rcReturn status code

Definition at line 84 of file ntp.c.

84 {
85 struct ntp_header hdr;
86 int rc;
87
88 DBGC ( ntp, "NTP %p sending request\n", ntp );
89
90 /* Construct header */
91 memset ( &hdr, 0, sizeof ( hdr ) );
93 hdr.transmit.seconds = htonl ( time ( NULL ) + NTP_EPOCH );
94 hdr.transmit.fraction = htonl ( NTP_FRACTION_MAGIC );
95
96 /* Send request */
97 if ( ( rc = xfer_deliver_raw ( &ntp->xfer, &hdr,
98 sizeof ( hdr ) ) ) != 0 ) {
99 DBGC ( ntp, "NTP %p could not send request: %s\n",
100 ntp, strerror ( rc ) );
101 return rc;
102 }
103
104 return 0;
105}
#define NULL
NULL pointer (VOID *)
Definition Base.h:322
struct golan_inbox_hdr hdr
Message header.
Definition CIB_PRM.h:0
#define DBGC(...)
Definition compiler.h:505
#define htonl(value)
Definition byteswap.h:134
void * memset(void *dest, int character, size_t len) __nonnull
#define NTP_FL_LI_UNKNOWN
Leap second indicator: unknown.
Definition ntp.h:73
#define NTP_FL_VN_1
NTP version: 1.
Definition ntp.h:76
#define NTP_FRACTION_MAGIC
NTP fraction of a second magic value.
Definition ntp.h:94
#define NTP_EPOCH
NTP timestamp for start of Unix epoch.
Definition ntp.h:88
#define NTP_FL_MODE_CLIENT
NTP mode: client.
Definition ntp.h:79
char * strerror(int errno)
Retrieve string representation of error number.
Definition strerror.c:79
An NTP header.
Definition ntp.h:47
int xfer_deliver_raw(struct interface *intf, const void *data, size_t len)
Deliver datagram as raw data without metadata.
Definition xfer.c:289

References DBGC, hdr, htonl, memset(), ntp(), NTP_EPOCH, NTP_FL_LI_UNKNOWN, NTP_FL_MODE_CLIENT, NTP_FL_VN_1, NTP_FRACTION_MAGIC, NULL, rc, strerror(), and xfer_deliver_raw().

Referenced by ntp_expired().

◆ ntp_deliver()

int ntp_deliver ( struct ntp_client * ntp,
struct io_buffer * iobuf,
struct xfer_metadata * meta )
static

Handle NTP response.

Parameters
ntpNTP client
iobufI/O buffer
metaData transfer metadata
Return values
rcReturn status code

Definition at line 115 of file ntp.c.

116 {
117 struct ntp_header *hdr;
118 struct sockaddr_tcpip *st_src;
119 int32_t delta;
120 int rc;
121
122 /* Check source port */
123 st_src = ( ( struct sockaddr_tcpip * ) meta->src );
124 if ( st_src->st_port != htons ( NTP_PORT ) ) {
125 DBGC ( ntp, "NTP %p received non-NTP packet:\n", ntp );
126 DBGC_HDA ( ntp, 0, iobuf->data, iob_len ( iobuf ) );
127 goto ignore;
128 }
129
130 /* Check packet length */
131 if ( iob_len ( iobuf ) < sizeof ( *hdr ) ) {
132 DBGC ( ntp, "NTP %p received malformed packet:\n", ntp );
133 DBGC_HDA ( ntp, 0, iobuf->data, iob_len ( iobuf ) );
134 goto ignore;
135 }
136 hdr = iobuf->data;
137
138 /* Check mode */
139 if ( ( hdr->flags & NTP_FL_MODE_MASK ) != NTP_FL_MODE_SERVER ) {
140 DBGC ( ntp, "NTP %p received non-server packet:\n", ntp );
141 DBGC_HDA ( ntp, 0, iobuf->data, iob_len ( iobuf ) );
142 goto ignore;
143 }
144
145 /* Check magic value */
146 if ( hdr->originate.fraction != htonl ( NTP_FRACTION_MAGIC ) ) {
147 DBGC ( ntp, "NTP %p received unrecognised packet:\n", ntp );
148 DBGC_HDA ( ntp, 0, iobuf->data, iob_len ( iobuf ) );
149 goto ignore;
150 }
151
152 /* Check for Kiss-o'-Death packets */
153 if ( ! hdr->stratum ) {
154 DBGC ( ntp, "NTP %p received kiss-o'-death:\n", ntp );
155 DBGC_HDA ( ntp, 0, iobuf->data, iob_len ( iobuf ) );
156 rc = -EPROTO;
157 goto close;
158 }
159
160 /* Calculate clock delta */
161 delta = ( ntohl ( hdr->receive.seconds ) -
162 ntohl ( hdr->originate.seconds ) );
163 DBGC ( ntp, "NTP %p delta %d seconds\n", ntp, delta );
164
165 /* Adjust system clock */
166 time_adjust ( delta );
167
168 /* Success */
169 rc = 0;
170
171 close:
172 ntp_close ( ntp, rc );
173 ignore:
174 free_iob ( iobuf );
175 return 0;
176}
signed int int32_t
Definition stdint.h:17
uint8_t meta
Metadata flags.
Definition ena.h:3
#define DBGC_HDA(...)
Definition compiler.h:506
#define EPROTO
Protocol error.
Definition errno.h:625
#define ntohl(value)
Definition byteswap.h:135
#define htons(value)
Definition byteswap.h:136
void free_iob(struct io_buffer *iobuf)
Free I/O buffer.
Definition iobuf.c:153
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition iobuf.h:160
static void ntp_close(struct ntp_client *ntp, int rc)
Close NTP client.
Definition ntp.c:68
#define NTP_PORT
NTP port.
Definition ntp.h:18
#define NTP_FL_MODE_SERVER
NTP mode: server.
Definition ntp.h:82
#define NTP_FL_MODE_MASK
NTP mode mask.
Definition ntp.h:85
void * data
Start of data.
Definition iobuf.h:53
TCP/IP socket address.
Definition tcpip.h:76
uint16_t st_port
TCP/IP port.
Definition tcpip.h:82
static struct evtchn_close * close
Definition xenevent.h:24

References close, io_buffer::data, DBGC, DBGC_HDA, EPROTO, free_iob(), hdr, htonl, htons, iob_len(), meta, ntohl, ntp(), ntp_close(), NTP_FL_MODE_MASK, NTP_FL_MODE_SERVER, NTP_FRACTION_MAGIC, NTP_PORT, rc, and sockaddr_tcpip::st_port.

◆ ntp_window_changed()

void ntp_window_changed ( struct ntp_client * ntp)
static

Handle data transfer window change.

Parameters
ntpNTP client

Definition at line 183 of file ntp.c.

183 {
184
185 /* Start timer to send initial request */
186 start_timer_nodelay ( &ntp->timer );
187}
static void start_timer_nodelay(struct retry_timer *timer)
Start timer with no delay.
Definition retry.h:100

References ntp(), and start_timer_nodelay().

◆ ntp_expired()

void ntp_expired ( struct retry_timer * timer,
int fail )
static

Handle NTP timer expiry.

Parameters
timerRetransmission timer
failFailure indicator

Definition at line 216 of file ntp.c.

216 {
217 struct ntp_client *ntp =
218 container_of ( timer, struct ntp_client, timer );
219
220 /* Shut down client if we have failed */
221 if ( fail ) {
222 ntp_close ( ntp, -ETIMEDOUT );
223 return;
224 }
225
226 /* Otherwise, restart timer and (re)transmit request */
227 start_timer ( &ntp->timer );
228 ntp_request ( ntp );
229}
#define ETIMEDOUT
Connection timed out.
Definition errno.h:670
static int ntp_request(struct ntp_client *ntp)
Send NTP request.
Definition ntp.c:84
void start_timer(struct retry_timer *timer)
Start timer.
Definition retry.c:94
#define container_of(ptr, type, field)
Get containing structure.
Definition stddef.h:36
An NTP client.
Definition ntp.c:51
A timer.
Definition timer.h:29

References container_of, ETIMEDOUT, ntp(), ntp_close(), ntp_request(), and start_timer().

Referenced by start_ntp().

◆ start_ntp()

int start_ntp ( struct interface * job,
const char * hostname )

Start NTP client.

Parameters
jobJob control interface
hostnameNTP server
Return values
rcReturn status code

Definition at line 238 of file ntp.c.

238 {
239 struct ntp_client *ntp;
240 union {
241 struct sockaddr_tcpip st;
242 struct sockaddr sa;
243 } server;
244 int rc;
245
246 /* Allocate and initialise structure*/
247 ntp = zalloc ( sizeof ( *ntp ) );
248 if ( ! ntp ) {
249 rc = -ENOMEM;
250 goto err_alloc;
251 }
252 ref_init ( &ntp->refcnt, NULL );
253 intf_init ( &ntp->job, &ntp_job_desc, &ntp->refcnt );
254 intf_init ( &ntp->xfer, &ntp_xfer_desc, &ntp->refcnt );
255 timer_init ( &ntp->timer, ntp_expired, &ntp->refcnt );
256 set_timer_limits ( &ntp->timer, NTP_MIN_TIMEOUT, NTP_MAX_TIMEOUT );
257
258 /* Open socket */
259 memset ( &server, 0, sizeof ( server ) );
260 server.st.st_port = htons ( NTP_PORT );
261 if ( ( rc = xfer_open_named_socket ( &ntp->xfer, SOCK_DGRAM, &server.sa,
262 hostname, NULL ) ) != 0 ) {
263 DBGC ( ntp, "NTP %p could not open socket: %s\n",
264 ntp, strerror ( rc ) );
265 goto err_open;
266 }
267
268 /* Attach parent interface, mortalise self, and return */
269 intf_plug_plug ( &ntp->job, job );
270 ref_put ( &ntp->refcnt );
271 return 0;
272
273 err_open:
274 ntp_close ( ntp, rc );
275 ref_put ( &ntp->refcnt );
276 err_alloc:
277 return rc;
278}
#define SOCK_DGRAM
Definition socket.h:30
#define ENOMEM
Not enough space.
Definition errno.h:535
void intf_plug_plug(struct interface *a, struct interface *b)
Plug two object interfaces together.
Definition interface.c:108
static void intf_init(struct interface *intf, struct interface_descriptor *desc, struct refcnt *refcnt)
Initialise an object interface.
Definition interface.h:204
void * zalloc(size_t size)
Allocate cleared memory.
Definition malloc.c:662
static struct interface_descriptor ntp_xfer_desc
Data transfer interface descriptor.
Definition ntp.c:198
static struct interface_descriptor ntp_job_desc
Job control interface descriptor.
Definition ntp.c:207
static void ntp_expired(struct retry_timer *timer, int fail)
Handle NTP timer expiry.
Definition ntp.c:216
#define NTP_MAX_TIMEOUT
NTP maximum retransmission timeout.
Definition ntp.h:106
#define NTP_MIN_TIMEOUT
NTP minimum retransmission timeout.
Definition ntp.h:100
#define ref_put(refcnt)
Drop reference to object.
Definition refcnt.h:107
#define ref_init(refcnt, free)
Initialise a reference counter.
Definition refcnt.h:65
int xfer_open_named_socket(struct interface *xfer, int semantics, struct sockaddr *peer, const char *name, struct sockaddr *local)
Open named socket.
Definition resolv.c:403
struct sockaddr_tcpip st
Definition syslog.c:58
struct sockaddr sa
Definition syslog.c:57

References DBGC, ENOMEM, htons, intf_init(), intf_plug_plug(), memset(), ntp(), ntp_close(), ntp_expired(), ntp_job_desc, NTP_MAX_TIMEOUT, NTP_MIN_TIMEOUT, NTP_PORT, ntp_xfer_desc, NULL, rc, ref_init, ref_put, sa, SOCK_DGRAM, st, strerror(), xfer_open_named_socket(), and zalloc().

Referenced by ntp().

◆ __setting()

const struct setting ntp_setting __setting ( SETTING_IP4_EXTRA ,
ntp  )

IPv4 NTP server setting.

References __setting, DHCP_NTP_SERVERS, ntp(), and SETTING_IP4_EXTRA.

Variable Documentation

◆ ntp_xfer_op

struct interface_operation ntp_xfer_op[]
static
Initial value:
= {
}
void intf_close(struct interface *intf, int rc)
Close an object interface.
Definition interface.c:250
#define INTF_OP(op_type, object_type, op_func)
Define an object interface operation.
Definition interface.h:33
static void ntp_window_changed(struct ntp_client *ntp)
Handle data transfer window change.
Definition ntp.c:183
static int ntp_deliver(struct ntp_client *ntp, struct io_buffer *iobuf, struct xfer_metadata *meta)
Handle NTP response.
Definition ntp.c:115
int xfer_deliver(struct interface *intf, struct io_buffer *iobuf, struct xfer_metadata *meta)
Deliver datagram.
Definition xfer.c:195
void xfer_window_changed(struct interface *intf)
Report change of flow control window.
Definition xfer.c:147

Data transfer interface operations.

Definition at line 190 of file ntp.c.

190 {
194 INTF_OP ( intf_close, struct ntp_client *, ntp_close ),
195};

◆ ntp_xfer_desc

struct interface_descriptor ntp_xfer_desc
static
Initial value:
=
INTF_DESC_PASSTHRU ( struct ntp_client, xfer, ntp_xfer_op, job )
#define INTF_DESC_PASSTHRU(object_type, intf, operations, passthru)
Define an object interface descriptor with pass-through interface.
Definition interface.h:98
static struct interface_operation ntp_xfer_op[]
Data transfer interface operations.
Definition ntp.c:190

Data transfer interface descriptor.

Definition at line 198 of file ntp.c.

Referenced by start_ntp().

◆ ntp_job_op

struct interface_operation ntp_job_op[]
static
Initial value:
= {
}

Job control interface operations.

Definition at line 202 of file ntp.c.

202 {
203 INTF_OP ( intf_close, struct ntp_client *, ntp_close ),
204};

◆ ntp_job_desc

struct interface_descriptor ntp_job_desc
static
Initial value:
=
INTF_DESC_PASSTHRU ( struct ntp_client, job, ntp_job_op, xfer )
static struct interface_operation ntp_job_op[]
Job control interface operations.
Definition ntp.c:202

Job control interface descriptor.

Definition at line 207 of file ntp.c.

Referenced by start_ntp().