iPXE
Data Structures | Functions | Variables
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)
 
static void ntp_close (struct ntp_client *ntp, int rc)
 Close NTP client. More...
 
static int ntp_request (struct ntp_client *ntp)
 Send NTP request. More...
 
static int ntp_deliver (struct ntp_client *ntp, struct io_buffer *iobuf, struct xfer_metadata *meta)
 Handle NTP response. More...
 
static void ntp_window_changed (struct ntp_client *ntp)
 Handle data transfer window change. More...
 
static void ntp_expired (struct retry_timer *timer, int fail)
 Handle NTP timer expiry. More...
 
int start_ntp (struct interface *job, const char *hostname)
 Start NTP client. More...
 
const struct setting ntp_setting __setting (SETTING_IP4_EXTRA, ntp)
 IPv4 NTP server setting. More...
 

Variables

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

Detailed Description

Network Time Protocol.

Definition in file ntp.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ ntp_close()

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

Close NTP client.

Parameters
ntpNTP client
rcReason for close

Definition at line 67 of file ntp.c.

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

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

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

◆ ntp_request()

static int ntp_request ( struct ntp_client ntp)
static

Send NTP request.

Parameters
ntpNTP client
Return values
rcReturn status code

Definition at line 83 of file ntp.c.

83  {
84  struct ntp_header hdr;
85  int rc;
86 
87  DBGC ( ntp, "NTP %p sending request\n", ntp );
88 
89  /* Construct header */
90  memset ( &hdr, 0, sizeof ( hdr ) );
92  hdr.transmit.seconds = htonl ( time ( NULL ) + NTP_EPOCH );
93  hdr.transmit.fraction = htonl ( NTP_FRACTION_MAGIC );
94 
95  /* Send request */
96  if ( ( rc = xfer_deliver_raw ( &ntp->xfer, &hdr,
97  sizeof ( hdr ) ) ) != 0 ) {
98  DBGC ( ntp, "NTP %p could not send request: %s\n",
99  ntp, strerror ( rc ) );
100  return rc;
101  }
102 
103  return 0;
104 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct golan_inbox_hdr hdr
Message header.
Definition: CIB_PRM.h:28
#define DBGC(...)
Definition: compiler.h:505
#define NTP_EPOCH
NTP timestamp for start of Unix epoch.
Definition: ntp.h:87
An NTP header.
Definition: ntp.h:46
#define NTP_FL_VN_1
NTP version: 1.
Definition: ntp.h:75
#define htonl(value)
Definition: byteswap.h:133
#define NTP_FL_MODE_CLIENT
NTP mode: client.
Definition: ntp.h:78
int xfer_deliver_raw(struct interface *intf, const void *data, size_t len)
Deliver datagram as raw data without metadata.
Definition: xfer.c:288
#define NTP_FRACTION_MAGIC
NTP fraction of a second magic value.
Definition: ntp.h:93
int ntp(const char *hostname)
Get time and date via NTP.
Definition: ntpmgmt.c:45
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
#define NTP_FL_LI_UNKNOWN
Leap second indicator: unknown.
Definition: ntp.h:72
uint64_t time
Current time.
Definition: ntlm.h:20
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
void * memset(void *dest, int character, size_t len) __nonnull

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(), time, and xfer_deliver_raw().

Referenced by ntp_expired().

◆ ntp_deliver()

static 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 114 of file ntp.c.

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

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()

static void ntp_window_changed ( struct ntp_client ntp)
static

Handle data transfer window change.

Parameters
ntpNTP client

Definition at line 182 of file ntp.c.

182  {
183 
184  /* Start timer to send initial request */
185  start_timer_nodelay ( &ntp->timer );
186 }
static void start_timer_nodelay(struct retry_timer *timer)
Start timer with no delay.
Definition: retry.h:99
int ntp(const char *hostname)
Get time and date via NTP.
Definition: ntpmgmt.c:45

References ntp(), and start_timer_nodelay().

◆ ntp_expired()

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

Handle NTP timer expiry.

Parameters
timerRetransmission timer
failFailure indicator

Definition at line 215 of file ntp.c.

215  {
216  struct ntp_client *ntp =
217  container_of ( timer, struct ntp_client, timer );
218 
219  /* Shut down client if we have failed */
220  if ( fail ) {
221  ntp_close ( ntp, -ETIMEDOUT );
222  return;
223  }
224 
225  /* Otherwise, restart timer and (re)transmit request */
226  start_timer ( &ntp->timer );
227  ntp_request ( ntp );
228 }
A timer.
Definition: timer.h:28
An NTP client.
Definition: ntp.c:50
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:35
int ntp(const char *hostname)
Get time and date via NTP.
Definition: ntpmgmt.c:45
static int ntp_request(struct ntp_client *ntp)
Send NTP request.
Definition: ntp.c:83
void start_timer(struct retry_timer *timer)
Start timer.
Definition: retry.c:93
static void ntp_close(struct ntp_client *ntp, int rc)
Close NTP client.
Definition: ntp.c:67
#define ETIMEDOUT
Connection timed out.
Definition: errno.h:669

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 237 of file ntp.c.

237  {
238  struct ntp_client *ntp;
239  union {
240  struct sockaddr_tcpip st;
241  struct sockaddr sa;
242  } server;
243  int rc;
244 
245  /* Allocate and initialise structure*/
246  ntp = zalloc ( sizeof ( *ntp ) );
247  if ( ! ntp ) {
248  rc = -ENOMEM;
249  goto err_alloc;
250  }
251  ref_init ( &ntp->refcnt, NULL );
252  intf_init ( &ntp->job, &ntp_job_desc, &ntp->refcnt );
253  intf_init ( &ntp->xfer, &ntp_xfer_desc, &ntp->refcnt );
254  timer_init ( &ntp->timer, ntp_expired, &ntp->refcnt );
255  set_timer_limits ( &ntp->timer, NTP_MIN_TIMEOUT, NTP_MAX_TIMEOUT );
256 
257  /* Open socket */
258  memset ( &server, 0, sizeof ( server ) );
259  server.st.st_port = htons ( NTP_PORT );
260  if ( ( rc = xfer_open_named_socket ( &ntp->xfer, SOCK_DGRAM, &server.sa,
261  hostname, NULL ) ) != 0 ) {
262  DBGC ( ntp, "NTP %p could not open socket: %s\n",
263  ntp, strerror ( rc ) );
264  goto err_open;
265  }
266 
267  /* Attach parent interface, mortalise self, and return */
268  intf_plug_plug ( &ntp->job, job );
269  ref_put ( &ntp->refcnt );
270  return 0;
271 
272  err_open:
273  ntp_close ( ntp, rc );
274  ref_put ( &ntp->refcnt );
275  err_alloc:
276  return rc;
277 }
TCP/IP socket address.
Definition: tcpip.h:75
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define ref_init(refcnt, free)
Initialise a reference counter.
Definition: refcnt.h:64
#define SOCK_DGRAM
Definition: socket.h:29
#define DBGC(...)
Definition: compiler.h:505
void intf_plug_plug(struct interface *a, struct interface *b)
Plug two object interfaces together.
Definition: interface.c:107
struct sockaddr_tcpip st
Definition: syslog.c:56
An NTP client.
Definition: ntp.c:50
#define ENOMEM
Not enough space.
Definition: errno.h:534
struct sockaddr sa
Definition: syslog.c:55
int ntp(const char *hostname)
Get time and date via NTP.
Definition: ntpmgmt.c:45
Generalized socket address structure.
Definition: socket.h:96
#define NTP_PORT
NTP port.
Definition: ntp.h:17
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
void * zalloc(size_t size)
Allocate cleared memory.
Definition: malloc.c:624
static struct interface_descriptor ntp_xfer_desc
Data transfer interface descriptor.
Definition: ntp.c:197
static struct interface_descriptor ntp_job_desc
Job control interface descriptor.
Definition: ntp.c:206
#define NTP_MIN_TIMEOUT
NTP minimum retransmission timeout.
Definition: ntp.h:99
static void ntp_close(struct ntp_client *ntp, int rc)
Close NTP client.
Definition: ntp.c:67
#define NTP_MAX_TIMEOUT
NTP maximum retransmission timeout.
Definition: ntp.h:105
static void ntp_expired(struct retry_timer *timer, int fail)
Handle NTP timer expiry.
Definition: ntp.c:215
static void intf_init(struct interface *intf, struct interface_descriptor *desc, struct refcnt *refcnt)
Initialise an object interface.
Definition: interface.h:203
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
#define htons(value)
Definition: byteswap.h:135
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:402
#define ref_put(refcnt)
Drop reference to object.
Definition: refcnt.h:106
void * memset(void *dest, int character, size_t len) __nonnull

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.

Variable Documentation

◆ ntp_xfer_op

struct interface_operation ntp_xfer_op[]
static
Initial value:
= {
}
void xfer_window_changed(struct interface *intf)
Report change of flow control window.
Definition: xfer.c:146
void intf_close(struct interface *intf, int rc)
Close an object interface.
Definition: interface.c:249
static void ntp_window_changed(struct ntp_client *ntp)
Handle data transfer window change.
Definition: ntp.c:182
An NTP client.
Definition: ntp.c:50
#define INTF_OP(op_type, object_type, op_func)
Define an object interface operation.
Definition: interface.h:32
int xfer_deliver(struct interface *intf, struct io_buffer *iobuf, struct xfer_metadata *meta)
Deliver datagram.
Definition: xfer.c:194
static int ntp_deliver(struct ntp_client *ntp, struct io_buffer *iobuf, struct xfer_metadata *meta)
Handle NTP response.
Definition: ntp.c:114
static void ntp_close(struct ntp_client *ntp, int rc)
Close NTP client.
Definition: ntp.c:67

Data transfer interface operations.

Definition at line 189 of file ntp.c.

◆ ntp_xfer_desc

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

Data transfer interface descriptor.

Definition at line 197 of file ntp.c.

Referenced by start_ntp().

◆ ntp_job_op

struct interface_operation ntp_job_op[]
static
Initial value:
= {
}
void intf_close(struct interface *intf, int rc)
Close an object interface.
Definition: interface.c:249
An NTP client.
Definition: ntp.c:50
#define INTF_OP(op_type, object_type, op_func)
Define an object interface operation.
Definition: interface.h:32
static void ntp_close(struct ntp_client *ntp, int rc)
Close NTP client.
Definition: ntp.c:67

Job control interface operations.

Definition at line 201 of file ntp.c.

◆ ntp_job_desc

struct interface_descriptor ntp_job_desc
static
Initial value:
=
INTF_DESC_PASSTHRU ( struct ntp_client, job, ntp_job_op, xfer )
An NTP client.
Definition: ntp.c:50
#define INTF_DESC_PASSTHRU(object_type, intf, operations, passthru)
Define an object interface descriptor with pass-through interface.
Definition: interface.h:97
static struct interface_operation ntp_job_op[]
Job control interface operations.
Definition: ntp.c:201

Job control interface descriptor.

Definition at line 206 of file ntp.c.

Referenced by start_ntp().