iPXE
Data Structures | Macros | Enumerations | Functions | Variables
tftp.c File Reference

TFTP protocol. More...

#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <byteswap.h>
#include <errno.h>
#include <assert.h>
#include <ipxe/refcnt.h>
#include <ipxe/iobuf.h>
#include <ipxe/xfer.h>
#include <ipxe/open.h>
#include <ipxe/uri.h>
#include <ipxe/tcpip.h>
#include <ipxe/retry.h>
#include <ipxe/features.h>
#include <ipxe/bitmap.h>
#include <ipxe/settings.h>
#include <ipxe/dhcp.h>
#include <ipxe/profile.h>
#include <ipxe/tftp.h>

Go to the source code of this file.

Data Structures

struct  tftp_request
 A TFTP request. More...
 
struct  tftp_option
 A TFTP option. More...
 

Macros

#define EINVAL_BLKSIZE   __einfo_error ( EINFO_EINVAL_BLKSIZE )
 
#define EINFO_EINVAL_BLKSIZE
 
#define EINVAL_TSIZE   __einfo_error ( EINFO_EINVAL_TSIZE )
 
#define EINFO_EINVAL_TSIZE
 
#define EINVAL_MC_NO_PORT   __einfo_error ( EINFO_EINVAL_MC_NO_PORT )
 
#define EINFO_EINVAL_MC_NO_PORT
 
#define EINVAL_MC_NO_MC   __einfo_error ( EINFO_EINVAL_MC_NO_MC )
 
#define EINFO_EINVAL_MC_NO_MC
 
#define EINVAL_MC_INVALID_MC   __einfo_error ( EINFO_EINVAL_MC_INVALID_MC )
 
#define EINFO_EINVAL_MC_INVALID_MC
 
#define EINVAL_MC_INVALID_IP   __einfo_error ( EINFO_EINVAL_MC_INVALID_IP )
 
#define EINFO_EINVAL_MC_INVALID_IP
 
#define EINVAL_MC_INVALID_PORT   __einfo_error ( EINFO_EINVAL_MC_INVALID_PORT )
 
#define EINFO_EINVAL_MC_INVALID_PORT
 
#define MTFTP_MAX_TIMEOUTS   3
 Maximum number of MTFTP open requests before falling back to TFTP. More...
 

Enumerations

enum  { TFTP_FL_SEND_ACK = 0x0001, TFTP_FL_RRQ_SIZES = 0x0002, TFTP_FL_RRQ_MULTICAST = 0x0004, TFTP_FL_MTFTP_RECOVERY = 0x0008 }
 TFTP request flags. More...
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
 FEATURE (FEATURE_PROTOCOL, "TFTP", DHCP_EB_FEATURE_TFTP, 1)
 
static void tftp_free (struct refcnt *refcnt)
 Free TFTP request. More...
 
static void tftp_done (struct tftp_request *tftp, int rc)
 Mark TFTP request as complete. More...
 
static int tftp_reopen (struct tftp_request *tftp)
 Reopen TFTP socket. More...
 
static int tftp_reopen_mc (struct tftp_request *tftp, struct sockaddr *local)
 Reopen TFTP multicast socket. More...
 
static int tftp_presize (struct tftp_request *tftp, size_t filesize)
 Presize TFTP receive buffers and block bitmap. More...
 
void tftp_set_mtftp_address (struct in_addr address)
 Set MTFTP multicast address. More...
 
void tftp_set_mtftp_port (unsigned int port)
 Set MTFTP multicast port. More...
 
static int tftp_send_rrq (struct tftp_request *tftp)
 Transmit RRQ. More...
 
static int tftp_send_ack (struct tftp_request *tftp)
 Transmit ACK. More...
 
static int tftp_send_error (struct tftp_request *tftp, int errcode, const char *errmsg)
 Transmit ERROR (Abort) More...
 
static int tftp_send_packet (struct tftp_request *tftp)
 Transmit next relevant packet. More...
 
static void tftp_timer_expired (struct retry_timer *timer, int fail)
 Handle TFTP retransmission timer expiry. More...
 
static int tftp_process_blksize (struct tftp_request *tftp, char *value)
 Process TFTP "blksize" option. More...
 
static int tftp_process_tsize (struct tftp_request *tftp, char *value)
 Process TFTP "tsize" option. More...
 
static int tftp_process_multicast (struct tftp_request *tftp, char *value)
 Process TFTP "multicast" option. More...
 
static int tftp_process_option (struct tftp_request *tftp, const char *name, char *value)
 Process TFTP option. More...
 
static int tftp_rx_oack (struct tftp_request *tftp, void *buf, size_t len)
 Receive OACK. More...
 
static int tftp_rx_data (struct tftp_request *tftp, struct io_buffer *iobuf)
 Receive DATA. More...
 
static int tftp_errcode_to_rc (unsigned int errcode)
 Convert TFTP error code to return status code. More...
 
static int tftp_rx_error (struct tftp_request *tftp, void *buf, size_t len)
 Receive ERROR. More...
 
static int tftp_rx (struct tftp_request *tftp, struct io_buffer *iobuf, struct xfer_metadata *meta)
 Receive new data. More...
 
static int tftp_socket_deliver (struct tftp_request *tftp, struct io_buffer *iobuf, struct xfer_metadata *meta)
 Receive new data via socket. More...
 
static size_t tftp_xfer_window (struct tftp_request *tftp)
 Check flow control window. More...
 
static void tftp_close (struct tftp_request *tftp, int rc)
 Terminate download. More...
 
static int tftp_core_open (struct interface *xfer, struct uri *uri, unsigned int default_port, struct sockaddr *multicast, unsigned int flags)
 Initiate TFTP/TFTM/MTFTP download. More...
 
static int tftp_open (struct interface *xfer, struct uri *uri)
 Initiate TFTP download. More...
 
static int tftm_open (struct interface *xfer, struct uri *uri)
 Initiate TFTM download. More...
 
static int mtftp_open (struct interface *xfer, struct uri *uri)
 Initiate MTFTP download. More...
 
static int tftp_apply_settings (void)
 Apply TFTP configuration settings. More...
 

Variables

static struct profiler tftp_client_profiler __profiler
 Client profiler. More...
 
static struct sockaddr_in tftp_mtftp_socket
 MTFTP multicast receive address. More...
 
static struct tftp_option tftp_options []
 Recognised TFTP options. More...
 
static struct interface_operation tftp_socket_operations []
 TFTP socket operations. More...
 
static struct interface_descriptor tftp_socket_desc
 TFTP socket interface descriptor. More...
 
static struct interface_operation tftp_mc_socket_operations []
 TFTP multicast socket operations. More...
 
static struct interface_descriptor tftp_mc_socket_desc
 TFTP multicast socket interface descriptor. More...
 
static struct interface_operation tftp_xfer_operations []
 TFTP data transfer interface operations. More...
 
static struct interface_descriptor tftp_xfer_desc
 TFTP data transfer interface descriptor. More...
 
struct uri_opener tftp_uri_opener __uri_opener
 TFTP URI opener. More...
 
struct settings_applicator tftp_settings_applicator __settings_applicator
 TFTP settings applicator. More...
 

Detailed Description

TFTP protocol.

Definition in file tftp.c.

Macro Definition Documentation

◆ EINVAL_BLKSIZE

#define EINVAL_BLKSIZE   __einfo_error ( EINFO_EINVAL_BLKSIZE )

Definition at line 58 of file tftp.c.

◆ EINFO_EINVAL_BLKSIZE

#define EINFO_EINVAL_BLKSIZE
Value:
( EINFO_EINVAL, 0x01, "Invalid blksize" )
#define EINFO_EINVAL
Definition: errno.h:429
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 59 of file tftp.c.

◆ EINVAL_TSIZE

#define EINVAL_TSIZE   __einfo_error ( EINFO_EINVAL_TSIZE )

Definition at line 61 of file tftp.c.

◆ EINFO_EINVAL_TSIZE

#define EINFO_EINVAL_TSIZE
Value:
( EINFO_EINVAL, 0x02, "Invalid tsize" )
#define EINFO_EINVAL
Definition: errno.h:429
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 62 of file tftp.c.

◆ EINVAL_MC_NO_PORT

#define EINVAL_MC_NO_PORT   __einfo_error ( EINFO_EINVAL_MC_NO_PORT )

Definition at line 64 of file tftp.c.

◆ EINFO_EINVAL_MC_NO_PORT

#define EINFO_EINVAL_MC_NO_PORT
Value:
( EINFO_EINVAL, 0x03, "Missing multicast port" )
#define EINFO_EINVAL
Definition: errno.h:429
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 65 of file tftp.c.

◆ EINVAL_MC_NO_MC

#define EINVAL_MC_NO_MC   __einfo_error ( EINFO_EINVAL_MC_NO_MC )

Definition at line 67 of file tftp.c.

◆ EINFO_EINVAL_MC_NO_MC

#define EINFO_EINVAL_MC_NO_MC
Value:
( EINFO_EINVAL, 0x04, "Missing multicast mc" )
#define EINFO_EINVAL
Definition: errno.h:429
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 68 of file tftp.c.

◆ EINVAL_MC_INVALID_MC

#define EINVAL_MC_INVALID_MC   __einfo_error ( EINFO_EINVAL_MC_INVALID_MC )

Definition at line 70 of file tftp.c.

◆ EINFO_EINVAL_MC_INVALID_MC

#define EINFO_EINVAL_MC_INVALID_MC
Value:
( EINFO_EINVAL, 0x05, "Missing multicast IP" )
#define EINFO_EINVAL
Definition: errno.h:429
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 71 of file tftp.c.

◆ EINVAL_MC_INVALID_IP

#define EINVAL_MC_INVALID_IP   __einfo_error ( EINFO_EINVAL_MC_INVALID_IP )

Definition at line 73 of file tftp.c.

◆ EINFO_EINVAL_MC_INVALID_IP

#define EINFO_EINVAL_MC_INVALID_IP
Value:
( EINFO_EINVAL, 0x06, "Invalid multicast IP" )
#define EINFO_EINVAL
Definition: errno.h:429
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 74 of file tftp.c.

◆ EINVAL_MC_INVALID_PORT

#define EINVAL_MC_INVALID_PORT   __einfo_error ( EINFO_EINVAL_MC_INVALID_PORT )

Definition at line 76 of file tftp.c.

◆ EINFO_EINVAL_MC_INVALID_PORT

#define EINFO_EINVAL_MC_INVALID_PORT
Value:
( EINFO_EINVAL, 0x07, "Invalid multicast port" )
#define EINFO_EINVAL
Definition: errno.h:429
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 77 of file tftp.c.

◆ MTFTP_MAX_TIMEOUTS

#define MTFTP_MAX_TIMEOUTS   3

Maximum number of MTFTP open requests before falling back to TFTP.

Definition at line 160 of file tftp.c.

Enumeration Type Documentation

◆ anonymous enum

anonymous enum

TFTP request flags.

Enumerator
TFTP_FL_SEND_ACK 

Send ACK packets.

TFTP_FL_RRQ_SIZES 

Request blksize and tsize options.

TFTP_FL_RRQ_MULTICAST 

Request multicast option.

TFTP_FL_MTFTP_RECOVERY 

Perform MTFTP recovery on timeout.

Definition at line 148 of file tftp.c.

148  {
149  /** Send ACK packets */
150  TFTP_FL_SEND_ACK = 0x0001,
151  /** Request blksize and tsize options */
152  TFTP_FL_RRQ_SIZES = 0x0002,
153  /** Request multicast option */
154  TFTP_FL_RRQ_MULTICAST = 0x0004,
155  /** Perform MTFTP recovery on timeout */
156  TFTP_FL_MTFTP_RECOVERY = 0x0008,
157 };
Send ACK packets.
Definition: tftp.c:150
Request blksize and tsize options.
Definition: tftp.c:152
Perform MTFTP recovery on timeout.
Definition: tftp.c:156
Request multicast option.
Definition: tftp.c:154

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ FEATURE()

FEATURE ( FEATURE_PROTOCOL  ,
"TFTP"  ,
DHCP_EB_FEATURE_TFTP  ,
 
)

◆ tftp_free()

static void tftp_free ( struct refcnt refcnt)
static

Free TFTP request.

Parameters
refcntReference counter

Definition at line 175 of file tftp.c.

175  {
176  struct tftp_request *tftp =
177  container_of ( refcnt, struct tftp_request, refcnt );
178 
179  uri_put ( tftp->uri );
180  bitmap_free ( &tftp->bitmap );
181  free ( tftp );
182 }
static void uri_put(struct uri *uri)
Decrement URI reference count.
Definition: uri.h:205
static void bitmap_free(struct bitmap *bitmap)
Free bitmap resources.
Definition: bitmap.h:57
struct bitmap bitmap
Block bitmap.
Definition: tftp.c:130
A TFTP request.
Definition: tftp.c:85
A reference counter.
Definition: refcnt.h:26
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:35
static void(* free)(struct refcnt *refcnt))
Definition: refcnt.h:54
struct uri * uri
URI being fetched.
Definition: tftp.c:92

References tftp_request::bitmap, bitmap_free(), container_of, free, tftp_request::uri, and uri_put().

Referenced by tftp_core_open().

◆ tftp_done()

static void tftp_done ( struct tftp_request tftp,
int  rc 
)
static

Mark TFTP request as complete.

Parameters
tftpTFTP connection
rcReturn status code

Definition at line 190 of file tftp.c.

190  {
191 
192  DBGC ( tftp, "TFTP %p finished with status %d (%s)\n",
193  tftp, rc, strerror ( rc ) );
194 
195  /* Stop the retry timer */
196  stop_timer ( &tftp->timer );
197 
198  /* Close all data transfer interfaces */
199  intf_shutdown ( &tftp->socket, rc );
200  intf_shutdown ( &tftp->mc_socket, rc );
201  intf_shutdown ( &tftp->xfer, rc );
202 }
struct interface socket
Transport layer interface.
Definition: tftp.c:94
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
#define DBGC(...)
Definition: compiler.h:505
struct interface xfer
Data transfer interface.
Definition: tftp.c:89
struct interface mc_socket
Multicast transport layer interface.
Definition: tftp.c:96
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
struct retry_timer timer
Retransmission timer.
Definition: tftp.c:144
void stop_timer(struct retry_timer *timer)
Stop timer.
Definition: retry.c:117

References DBGC, intf_shutdown(), tftp_request::mc_socket, rc, tftp_request::socket, stop_timer(), strerror(), tftp_request::timer, and tftp_request::xfer.

Referenced by tftp_close(), tftp_core_open(), tftp_rx_data(), tftp_rx_error(), tftp_rx_oack(), and tftp_timer_expired().

◆ tftp_reopen()

static int tftp_reopen ( struct tftp_request tftp)
static

Reopen TFTP socket.

Parameters
tftpTFTP connection
Return values
rcReturn status code

Definition at line 210 of file tftp.c.

210  {
211  struct sockaddr_tcpip server;
212  int rc;
213 
214  /* Close socket */
215  intf_restart ( &tftp->socket, 0 );
216 
217  /* Disable ACK sending. */
218  tftp->flags &= ~TFTP_FL_SEND_ACK;
219 
220  /* Reset peer address */
221  memset ( &tftp->peer, 0, sizeof ( tftp->peer ) );
222 
223  /* Open socket */
224  memset ( &server, 0, sizeof ( server ) );
225  server.st_port = htons ( tftp->port );
226  if ( ( rc = xfer_open_named_socket ( &tftp->socket, SOCK_DGRAM,
227  ( struct sockaddr * ) &server,
228  tftp->uri->host, NULL ) ) != 0 ) {
229  DBGC ( tftp, "TFTP %p could not open socket: %s\n",
230  tftp, strerror ( rc ) );
231  return rc;
232  }
233 
234  return 0;
235 }
struct interface socket
Transport layer interface.
Definition: tftp.c:94
TCP/IP socket address.
Definition: tcpip.h:75
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void intf_restart(struct interface *intf, int rc)
Shut down and restart an object interface.
Definition: interface.c:343
#define SOCK_DGRAM
Definition: socket.h:29
#define DBGC(...)
Definition: compiler.h:505
unsigned int flags
Request flags.
Definition: tftp.c:125
Send ACK packets.
Definition: tftp.c:150
Generalized socket address structure.
Definition: socket.h:96
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
const char * host
Host name.
Definition: uri.h:76
unsigned int port
Server port.
Definition: tftp.c:117
struct uri * uri
URI being fetched.
Definition: tftp.c:92
struct sockaddr_tcpip peer
Peer address.
Definition: tftp.c:123
#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
void * memset(void *dest, int character, size_t len) __nonnull

References DBGC, tftp_request::flags, uri::host, htons, intf_restart(), memset(), NULL, tftp_request::peer, tftp_request::port, rc, SOCK_DGRAM, tftp_request::socket, sockaddr_tcpip::st_port, strerror(), TFTP_FL_SEND_ACK, tftp_request::uri, and xfer_open_named_socket().

Referenced by tftp_core_open(), and tftp_timer_expired().

◆ tftp_reopen_mc()

static int tftp_reopen_mc ( struct tftp_request tftp,
struct sockaddr local 
)
static

Reopen TFTP multicast socket.

Parameters
tftpTFTP connection
localLocal socket address
Return values
rcReturn status code

Definition at line 244 of file tftp.c.

245  {
246  int rc;
247 
248  /* Close multicast socket */
249  intf_restart ( &tftp->mc_socket, 0 );
250 
251  /* Open multicast socket. We never send via this socket, so
252  * use the local address as the peer address (since the peer
253  * address cannot be NULL).
254  */
255  if ( ( rc = xfer_open_socket ( &tftp->mc_socket, SOCK_DGRAM,
256  local, local ) ) != 0 ) {
257  DBGC ( tftp, "TFTP %p could not open multicast "
258  "socket: %s\n", tftp, strerror ( rc ) );
259  return rc;
260  }
261 
262  return 0;
263 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void intf_restart(struct interface *intf, int rc)
Shut down and restart an object interface.
Definition: interface.c:343
int xfer_open_socket(struct interface *intf, int semantics, struct sockaddr *peer, struct sockaddr *local)
Open socket.
Definition: open.c:142
#define SOCK_DGRAM
Definition: socket.h:29
#define DBGC(...)
Definition: compiler.h:505
struct interface mc_socket
Multicast transport layer interface.
Definition: tftp.c:96
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78

References DBGC, intf_restart(), tftp_request::mc_socket, rc, SOCK_DGRAM, strerror(), and xfer_open_socket().

Referenced by tftp_core_open(), and tftp_process_multicast().

◆ tftp_presize()

static int tftp_presize ( struct tftp_request tftp,
size_t  filesize 
)
static

Presize TFTP receive buffers and block bitmap.

Parameters
tftpTFTP connection
filesizeKnown minimum file size
Return values
rcReturn status code

Definition at line 272 of file tftp.c.

272  {
273  unsigned int num_blocks;
274  int rc;
275 
276  /* Do nothing if we are already large enough */
277  if ( filesize <= tftp->filesize )
278  return 0;
279 
280  /* Record filesize */
281  tftp->filesize = filesize;
282 
283  /* Notify recipient of file size */
284  xfer_seek ( &tftp->xfer, filesize );
285  xfer_seek ( &tftp->xfer, 0 );
286 
287  /* Calculate expected number of blocks. Note that files whose
288  * length is an exact multiple of the blocksize will have a
289  * trailing zero-length block, which must be included.
290  */
291  if ( tftp->blksize == 0 )
292  return -EINVAL;
293  num_blocks = ( ( filesize / tftp->blksize ) + 1 );
294  if ( ( rc = bitmap_resize ( &tftp->bitmap, num_blocks ) ) != 0 ) {
295  DBGC ( tftp, "TFTP %p could not resize bitmap to %d blocks: "
296  "%s\n", tftp, num_blocks, strerror ( rc ) );
297  return rc;
298  }
299 
300  return 0;
301 }
#define EINVAL
Invalid argument.
Definition: errno.h:428
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct bitmap bitmap
Block bitmap.
Definition: tftp.c:130
#define DBGC(...)
Definition: compiler.h:505
unsigned int blksize
Data block size.
Definition: tftp.c:104
struct interface xfer
Data transfer interface.
Definition: tftp.c:89
int bitmap_resize(struct bitmap *bitmap, unsigned int new_length)
Resize bitmap.
Definition: bitmap.c:42
int xfer_seek(struct interface *intf, off_t offset)
Seek to position.
Definition: xfer.c:351
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
size_t filesize
Maximum known length.
Definition: tftp.c:142

References tftp_request::bitmap, bitmap_resize(), tftp_request::blksize, DBGC, EINVAL, tftp_request::filesize, rc, strerror(), tftp_request::xfer, and xfer_seek().

Referenced by tftp_rx_data(), and tftp_rx_oack().

◆ tftp_set_mtftp_address()

void tftp_set_mtftp_address ( struct in_addr  address)

Set MTFTP multicast address.

Parameters
addressMulticast IPv4 address

Definition at line 319 of file tftp.c.

319  {
321 }
uint64_t address
Base address.
Definition: ena.h:24
static struct sockaddr_in tftp_mtftp_socket
MTFTP multicast receive address.
Definition: tftp.c:308
struct in_addr sin_addr
IPv4 address.
Definition: in.h:98

References address, sockaddr_in::sin_addr, and tftp_mtftp_socket.

◆ tftp_set_mtftp_port()

void tftp_set_mtftp_port ( unsigned int  port)

Set MTFTP multicast port.

Parameters
portMulticast port

Definition at line 328 of file tftp.c.

328  {
330 }
u8 port
Port number.
Definition: CIB_PRM.h:31
uint16_t sin_port
TCP/IP port (part of struct sockaddr_tcpip)
Definition: in.h:91
static struct sockaddr_in tftp_mtftp_socket
MTFTP multicast receive address.
Definition: tftp.c:308
#define htons(value)
Definition: byteswap.h:135

References htons, port, sockaddr_in::sin_port, and tftp_mtftp_socket.

◆ tftp_send_rrq()

static int tftp_send_rrq ( struct tftp_request tftp)
static

Transmit RRQ.

Parameters
tftpTFTP connection
Return values
rcReturn status code

Definition at line 338 of file tftp.c.

338  {
339  const char *path = ( tftp->uri->path + 1 /* skip '/' */ );
340  struct tftp_rrq *rrq;
341  size_t len;
342  struct io_buffer *iobuf;
343  size_t blksize;
344 
345  DBGC ( tftp, "TFTP %p requesting \"%s\"\n", tftp, path );
346 
347  /* Allocate buffer */
348  len = ( sizeof ( *rrq ) + strlen ( path ) + 1 /* NUL */
349  + 5 + 1 /* "octet" + NUL */
350  + 7 + 1 + 5 + 1 /* "blksize" + NUL + ddddd + NUL */
351  + 5 + 1 + 1 + 1 /* "tsize" + NUL + "0" + NUL */
352  + 9 + 1 + 1 /* "multicast" + NUL + NUL */ );
353  iobuf = xfer_alloc_iob ( &tftp->socket, len );
354  if ( ! iobuf )
355  return -ENOMEM;
356 
357  /* Determine block size */
358  blksize = xfer_window ( &tftp->xfer );
359  if ( blksize > TFTP_MAX_BLKSIZE )
361 
362  /* Build request */
363  rrq = iob_put ( iobuf, sizeof ( *rrq ) );
364  rrq->opcode = htons ( TFTP_RRQ );
365  iob_put ( iobuf, snprintf ( iobuf->tail, iob_tailroom ( iobuf ),
366  "%s%coctet", path, 0 ) + 1 );
367  if ( tftp->flags & TFTP_FL_RRQ_SIZES ) {
368  iob_put ( iobuf, snprintf ( iobuf->tail,
369  iob_tailroom ( iobuf ),
370  "blksize%c%zd%ctsize%c0",
371  0, blksize, 0, 0 ) + 1 );
372  }
373  if ( tftp->flags & TFTP_FL_RRQ_MULTICAST ) {
374  iob_put ( iobuf, snprintf ( iobuf->tail,
375  iob_tailroom ( iobuf ),
376  "multicast%c", 0 ) + 1 );
377  }
378 
379  /* RRQ always goes to the address specified in the initial
380  * xfer_open() call
381  */
382  return xfer_deliver_iob ( &tftp->socket, iobuf );
383 }
struct interface socket
Transport layer interface.
Definition: tftp.c:94
#define TFTP_MAX_BLKSIZE
Definition: tftp.h:16
#define iob_put(iobuf, len)
Definition: iobuf.h:120
int xfer_deliver_iob(struct interface *intf, struct io_buffer *iobuf)
Deliver datagram as I/O buffer without metadata.
Definition: xfer.c:255
#define DBGC(...)
Definition: compiler.h:505
uint32_t blksize
Block size for this segment.
Definition: pccrc.h:24
struct io_buffer * xfer_alloc_iob(struct interface *intf, size_t len)
Allocate I/O buffer.
Definition: xfer.c:158
size_t xfer_window(struct interface *intf)
Check flow control window.
Definition: xfer.c:116
void * tail
End of data.
Definition: iobuf.h:50
#define ENOMEM
Not enough space.
Definition: errno.h:534
unsigned int flags
Request flags.
Definition: tftp.c:125
struct interface xfer
Data transfer interface.
Definition: tftp.c:89
Request blksize and tsize options.
Definition: tftp.c:152
const char * path
Path (after URI decoding)
Definition: uri.h:80
uint16_t opcode
Definition: tftp.h:38
static size_t iob_tailroom(struct io_buffer *iobuf)
Calculate available space at end of an I/O buffer.
Definition: iobuf.h:175
size_t strlen(const char *src)
Get length of string.
Definition: string.c:243
A TFTP read request (RRQ) packet.
Definition: tftp.h:37
uint32_t len
Length.
Definition: ena.h:14
int snprintf(char *buf, size_t size, const char *fmt,...)
Write a formatted string to a buffer.
Definition: vsprintf.c:382
struct uri * uri
URI being fetched.
Definition: tftp.c:92
#define htons(value)
Definition: byteswap.h:135
Request multicast option.
Definition: tftp.c:154
#define TFTP_RRQ
Read request opcode.
Definition: tftp.h:18
A persistent I/O buffer.
Definition: iobuf.h:33

References blksize, DBGC, ENOMEM, tftp_request::flags, htons, iob_put, iob_tailroom(), len, tftp_rrq::opcode, uri::path, snprintf(), tftp_request::socket, strlen(), io_buffer::tail, TFTP_FL_RRQ_MULTICAST, TFTP_FL_RRQ_SIZES, TFTP_MAX_BLKSIZE, TFTP_RRQ, tftp_request::uri, tftp_request::xfer, xfer_alloc_iob(), xfer_deliver_iob(), and xfer_window().

Referenced by tftp_send_packet().

◆ tftp_send_ack()

static int tftp_send_ack ( struct tftp_request tftp)
static

Transmit ACK.

Parameters
tftpTFTP connection
Return values
rcReturn status code

Definition at line 391 of file tftp.c.

391  {
392  struct tftp_ack *ack;
393  struct io_buffer *iobuf;
394  struct xfer_metadata meta = {
395  .dest = ( struct sockaddr * ) &tftp->peer,
396  };
397  unsigned int block;
398 
399  /* Determine next required block number */
400  block = bitmap_first_gap ( &tftp->bitmap );
401  DBGC2 ( tftp, "TFTP %p sending ACK for block %d\n", tftp, block );
402 
403  /* Allocate buffer */
404  iobuf = xfer_alloc_iob ( &tftp->socket, sizeof ( *ack ) );
405  if ( ! iobuf )
406  return -ENOMEM;
407 
408  /* Build ACK */
409  ack = iob_put ( iobuf, sizeof ( *ack ) );
410  ack->opcode = htons ( TFTP_ACK );
411  ack->block = htons ( block );
412 
413  /* ACK always goes to the peer recorded from the RRQ response */
414  return xfer_deliver ( &tftp->socket, iobuf, &meta );
415 }
struct interface socket
Transport layer interface.
Definition: tftp.c:94
#define iob_put(iobuf, len)
Definition: iobuf.h:120
Data transfer metadata.
Definition: xfer.h:22
uint16_t opcode
Definition: tftp.h:51
struct bitmap bitmap
Block bitmap.
Definition: tftp.c:130
uint16_t block
Definition: tftp.h:52
struct io_buffer * xfer_alloc_iob(struct interface *intf, size_t len)
Allocate I/O buffer.
Definition: xfer.c:158
#define TFTP_ACK
Data block acknowledgement opcode.
Definition: tftp.h:21
#define ENOMEM
Not enough space.
Definition: errno.h:534
int meta(WINDOW *, bool)
Generalized socket address structure.
Definition: socket.h:96
int xfer_deliver(struct interface *intf, struct io_buffer *iobuf, struct xfer_metadata *meta)
Deliver datagram.
Definition: xfer.c:194
#define DBGC2(...)
Definition: compiler.h:522
uint8_t block[3][8]
DES-encrypted blocks.
Definition: mschapv2.h:12
static unsigned int bitmap_first_gap(struct bitmap *bitmap)
Get first gap within bitmap.
Definition: bitmap.h:69
struct sockaddr_tcpip peer
Peer address.
Definition: tftp.c:123
#define htons(value)
Definition: byteswap.h:135
A TFTP acknowledgement (ACK) packet.
Definition: tftp.h:50
A persistent I/O buffer.
Definition: iobuf.h:33

References tftp_request::bitmap, bitmap_first_gap(), block, tftp_ack::block, DBGC2, ENOMEM, htons, iob_put, meta(), tftp_ack::opcode, tftp_request::peer, tftp_request::socket, TFTP_ACK, xfer_alloc_iob(), and xfer_deliver().

Referenced by tftp_send_packet().

◆ tftp_send_error()

static int tftp_send_error ( struct tftp_request tftp,
int  errcode,
const char *  errmsg 
)
static

Transmit ERROR (Abort)

Parameters
tftpTFTP connection
errcodeTFTP error code
errmsgError message string
Return values
rcReturn status code

Definition at line 425 of file tftp.c.

426  {
427  struct tftp_error *err;
428  struct io_buffer *iobuf;
429  struct xfer_metadata meta = {
430  .dest = ( struct sockaddr * ) &tftp->peer,
431  };
432  size_t msglen;
433 
434  DBGC2 ( tftp, "TFTP %p sending ERROR %d: %s\n", tftp, errcode,
435  errmsg );
436 
437  /* Allocate buffer */
438  msglen = sizeof ( *err ) + strlen ( errmsg ) + 1 /* NUL */;
439  iobuf = xfer_alloc_iob ( &tftp->socket, msglen );
440  if ( ! iobuf )
441  return -ENOMEM;
442 
443  /* Build ERROR */
444  err = iob_put ( iobuf, msglen );
445  err->opcode = htons ( TFTP_ERROR );
446  err->errcode = htons ( errcode );
447  strcpy ( err->errmsg, errmsg );
448 
449  /* ERR always goes to the peer recorded from the RRQ response */
450  return xfer_deliver ( &tftp->socket, iobuf, &meta );
451 }
struct interface socket
Transport layer interface.
Definition: tftp.c:94
#define iob_put(iobuf, len)
Definition: iobuf.h:120
Data transfer metadata.
Definition: xfer.h:22
uint16_t errcode
Definition: tftp.h:12
struct io_buffer * xfer_alloc_iob(struct interface *intf, size_t len)
Allocate I/O buffer.
Definition: xfer.c:158
#define ENOMEM
Not enough space.
Definition: errno.h:534
uint16_t errcode
Definition: tftp.h:58
char errmsg[0]
Definition: tftp.h:13
char * strcpy(char *dest, const char *src)
Copy string.
Definition: string.c:326
int meta(WINDOW *, bool)
Generalized socket address structure.
Definition: socket.h:96
int xfer_deliver(struct interface *intf, struct io_buffer *iobuf, struct xfer_metadata *meta)
Deliver datagram.
Definition: xfer.c:194
size_t strlen(const char *src)
Get length of string.
Definition: string.c:243
#define TFTP_ERROR
Error opcode.
Definition: tftp.h:22
uint16_t opcode
Definition: tftp.h:57
char errmsg[0]
Definition: tftp.h:59
#define DBGC2(...)
Definition: compiler.h:522
struct sockaddr_tcpip peer
Peer address.
Definition: tftp.c:123
#define htons(value)
Definition: byteswap.h:135
A TFTP error (ERROR) packet.
Definition: tftp.h:56
A persistent I/O buffer.
Definition: iobuf.h:33

References DBGC2, ENOMEM, errcode, tftp_error::errcode, errmsg, tftp_error::errmsg, htons, iob_put, meta(), tftp_error::opcode, tftp_request::peer, tftp_request::socket, strcpy(), strlen(), TFTP_ERROR, xfer_alloc_iob(), and xfer_deliver().

Referenced by tftp_close().

◆ tftp_send_packet()

static int tftp_send_packet ( struct tftp_request tftp)
static

Transmit next relevant packet.

Parameters
tftpTFTP connection
Return values
rcReturn status code

Definition at line 459 of file tftp.c.

459  {
460 
461  /* Update retransmission timer. While name resolution takes place the
462  * window is zero. Avoid unnecessary delay after name resolution
463  * completes by retrying immediately.
464  */
465  stop_timer ( &tftp->timer );
466  if ( xfer_window ( &tftp->socket ) ) {
467  start_timer ( &tftp->timer );
468  } else {
469  start_timer_nodelay ( &tftp->timer );
470  }
471 
472  /* Send RRQ or ACK as appropriate */
473  if ( ! tftp->peer.st_family ) {
474  return tftp_send_rrq ( tftp );
475  } else {
476  if ( tftp->flags & TFTP_FL_SEND_ACK ) {
477  return tftp_send_ack ( tftp );
478  } else {
479  return 0;
480  }
481  }
482 }
struct interface socket
Transport layer interface.
Definition: tftp.c:94
static void start_timer_nodelay(struct retry_timer *timer)
Start timer with no delay.
Definition: retry.h:99
sa_family_t st_family
Socket address family (part of struct sockaddr)
Definition: tcpip.h:77
size_t xfer_window(struct interface *intf)
Check flow control window.
Definition: xfer.c:116
unsigned int flags
Request flags.
Definition: tftp.c:125
Send ACK packets.
Definition: tftp.c:150
static int tftp_send_rrq(struct tftp_request *tftp)
Transmit RRQ.
Definition: tftp.c:338
void start_timer(struct retry_timer *timer)
Start timer.
Definition: retry.c:93
static int tftp_send_ack(struct tftp_request *tftp)
Transmit ACK.
Definition: tftp.c:391
struct retry_timer timer
Retransmission timer.
Definition: tftp.c:144
void stop_timer(struct retry_timer *timer)
Stop timer.
Definition: retry.c:117
struct sockaddr_tcpip peer
Peer address.
Definition: tftp.c:123

References tftp_request::flags, tftp_request::peer, tftp_request::socket, sockaddr_tcpip::st_family, start_timer(), start_timer_nodelay(), stop_timer(), TFTP_FL_SEND_ACK, tftp_send_ack(), tftp_send_rrq(), tftp_request::timer, and xfer_window().

Referenced by tftp_rx_data(), tftp_rx_oack(), and tftp_timer_expired().

◆ tftp_timer_expired()

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

Handle TFTP retransmission timer expiry.

Parameters
timerRetry timer
failFailure indicator

Definition at line 490 of file tftp.c.

490  {
491  struct tftp_request *tftp =
492  container_of ( timer, struct tftp_request, timer );
493  int rc;
494 
495  /* If we are doing MTFTP, attempt the various recovery strategies */
496  if ( tftp->flags & TFTP_FL_MTFTP_RECOVERY ) {
497  if ( tftp->peer.st_family ) {
498  /* If we have received any response from the server,
499  * try resending the RRQ to restart the download.
500  */
501  DBGC ( tftp, "TFTP %p attempting reopen\n", tftp );
502  if ( ( rc = tftp_reopen ( tftp ) ) != 0 )
503  goto err;
504  } else {
505  /* Fall back to plain TFTP after several attempts */
506  tftp->mtftp_timeouts++;
507  DBGC ( tftp, "TFTP %p timeout %d waiting for MTFTP "
508  "open\n", tftp, tftp->mtftp_timeouts );
509 
510  if ( tftp->mtftp_timeouts > MTFTP_MAX_TIMEOUTS ) {
511  DBGC ( tftp, "TFTP %p falling back to plain "
512  "TFTP\n", tftp );
513  tftp->flags = TFTP_FL_RRQ_SIZES;
514 
515  /* Close multicast socket */
516  intf_restart ( &tftp->mc_socket, 0 );
517 
518  /* Reset retry timer */
519  start_timer_nodelay ( &tftp->timer );
520 
521  /* The blocksize may change: discard
522  * the block bitmap
523  */
524  bitmap_free ( &tftp->bitmap );
525  memset ( &tftp->bitmap, 0,
526  sizeof ( tftp->bitmap ) );
527 
528  /* Reopen on standard TFTP port */
529  tftp->port = TFTP_PORT;
530  if ( ( rc = tftp_reopen ( tftp ) ) != 0 )
531  goto err;
532  }
533  }
534  } else {
535  /* Not doing MTFTP (or have fallen back to plain
536  * TFTP); fail as per normal.
537  */
538  if ( fail ) {
539  rc = -ETIMEDOUT;
540  goto err;
541  }
542  }
543  tftp_send_packet ( tftp );
544  return;
545 
546  err:
547  tftp_done ( tftp, rc );
548 }
unsigned int mtftp_timeouts
MTFTP timeout count.
Definition: tftp.c:127
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void intf_restart(struct interface *intf, int rc)
Shut down and restart an object interface.
Definition: interface.c:343
static void start_timer_nodelay(struct retry_timer *timer)
Start timer with no delay.
Definition: retry.h:99
static int tftp_reopen(struct tftp_request *tftp)
Reopen TFTP socket.
Definition: tftp.c:210
static void bitmap_free(struct bitmap *bitmap)
Free bitmap resources.
Definition: bitmap.h:57
sa_family_t st_family
Socket address family (part of struct sockaddr)
Definition: tcpip.h:77
struct bitmap bitmap
Block bitmap.
Definition: tftp.c:130
#define DBGC(...)
Definition: compiler.h:505
#define MTFTP_MAX_TIMEOUTS
Maximum number of MTFTP open requests before falling back to TFTP.
Definition: tftp.c:160
A TFTP request.
Definition: tftp.c:85
A timer.
Definition: timer.h:28
unsigned int flags
Request flags.
Definition: tftp.c:125
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:35
Request blksize and tsize options.
Definition: tftp.c:152
struct interface mc_socket
Multicast transport layer interface.
Definition: tftp.c:96
static void tftp_done(struct tftp_request *tftp, int rc)
Mark TFTP request as complete.
Definition: tftp.c:190
static int tftp_send_packet(struct tftp_request *tftp)
Transmit next relevant packet.
Definition: tftp.c:459
#define TFTP_PORT
Default TFTP server port.
Definition: tftp.h:14
Perform MTFTP recovery on timeout.
Definition: tftp.c:156
struct retry_timer timer
Retransmission timer.
Definition: tftp.c:144
unsigned int port
Server port.
Definition: tftp.c:117
struct sockaddr_tcpip peer
Peer address.
Definition: tftp.c:123
#define ETIMEDOUT
Connection timed out.
Definition: errno.h:669
void * memset(void *dest, int character, size_t len) __nonnull

References tftp_request::bitmap, bitmap_free(), container_of, DBGC, ETIMEDOUT, tftp_request::flags, intf_restart(), tftp_request::mc_socket, memset(), MTFTP_MAX_TIMEOUTS, tftp_request::mtftp_timeouts, tftp_request::peer, tftp_request::port, rc, sockaddr_tcpip::st_family, start_timer_nodelay(), tftp_done(), TFTP_FL_MTFTP_RECOVERY, TFTP_FL_RRQ_SIZES, TFTP_PORT, tftp_reopen(), tftp_send_packet(), and tftp_request::timer.

Referenced by tftp_core_open().

◆ tftp_process_blksize()

static int tftp_process_blksize ( struct tftp_request tftp,
char *  value 
)
static

Process TFTP "blksize" option.

Parameters
tftpTFTP connection
valueOption value
Return values
rcReturn status code

Definition at line 557 of file tftp.c.

557  {
558  char *end;
559 
560  tftp->blksize = strtoul ( value, &end, 10 );
561  if ( *end ) {
562  DBGC ( tftp, "TFTP %p got invalid blksize \"%s\"\n",
563  tftp, value );
564  return -EINVAL_BLKSIZE;
565  }
566  DBGC ( tftp, "TFTP %p blksize=%d\n", tftp, tftp->blksize );
567 
568  return 0;
569 }
unsigned long strtoul(const char *string, char **endp, int base)
Convert string to numeric value.
Definition: string.c:471
#define DBGC(...)
Definition: compiler.h:505
unsigned int blksize
Data block size.
Definition: tftp.c:104
pseudo_bit_t value[0x00020]
Definition: arbel.h:13
#define EINVAL_BLKSIZE
Definition: tftp.c:58
uint32_t end
Ending offset.
Definition: netvsc.h:18

References tftp_request::blksize, DBGC, EINVAL_BLKSIZE, end, strtoul(), and value.

◆ tftp_process_tsize()

static int tftp_process_tsize ( struct tftp_request tftp,
char *  value 
)
static

Process TFTP "tsize" option.

Parameters
tftpTFTP connection
valueOption value
Return values
rcReturn status code

Definition at line 578 of file tftp.c.

578  {
579  char *end;
580 
581  tftp->tsize = strtoul ( value, &end, 10 );
582  if ( *end ) {
583  DBGC ( tftp, "TFTP %p got invalid tsize \"%s\"\n",
584  tftp, value );
585  return -EINVAL_TSIZE;
586  }
587  DBGC ( tftp, "TFTP %p tsize=%ld\n", tftp, tftp->tsize );
588 
589  return 0;
590 }
unsigned long strtoul(const char *string, char **endp, int base)
Convert string to numeric value.
Definition: string.c:471
#define DBGC(...)
Definition: compiler.h:505
pseudo_bit_t value[0x00020]
Definition: arbel.h:13
uint32_t end
Ending offset.
Definition: netvsc.h:18
unsigned long tsize
File size.
Definition: tftp.c:111
#define EINVAL_TSIZE
Definition: tftp.c:61

References DBGC, EINVAL_TSIZE, end, strtoul(), tftp_request::tsize, and value.

◆ tftp_process_multicast()

static int tftp_process_multicast ( struct tftp_request tftp,
char *  value 
)
static

Process TFTP "multicast" option.

Parameters
tftpTFTP connection
valueOption value
Return values
rcReturn status code

Definition at line 599 of file tftp.c.

599  {
600  union {
601  struct sockaddr sa;
602  struct sockaddr_in sin;
603  } socket;
604  char *addr;
605  char *port;
606  char *port_end;
607  char *mc;
608  char *mc_end;
609  int rc;
610 
611  /* Split value into "addr,port,mc" fields */
612  addr = value;
613  port = strchr ( addr, ',' );
614  if ( ! port ) {
615  DBGC ( tftp, "TFTP %p multicast missing port,mc\n", tftp );
616  return -EINVAL_MC_NO_PORT;
617  }
618  *(port++) = '\0';
619  mc = strchr ( port, ',' );
620  if ( ! mc ) {
621  DBGC ( tftp, "TFTP %p multicast missing mc\n", tftp );
622  return -EINVAL_MC_NO_MC;
623  }
624  *(mc++) = '\0';
625 
626  /* Parse parameters */
627  if ( strtoul ( mc, &mc_end, 0 ) == 0 )
628  tftp->flags &= ~TFTP_FL_SEND_ACK;
629  if ( *mc_end ) {
630  DBGC ( tftp, "TFTP %p multicast invalid mc %s\n", tftp, mc );
631  return -EINVAL_MC_INVALID_MC;
632  }
633  DBGC ( tftp, "TFTP %p is%s the master client\n",
634  tftp, ( ( tftp->flags & TFTP_FL_SEND_ACK ) ? "" : " not" ) );
635  if ( *addr && *port ) {
636  socket.sin.sin_family = AF_INET;
637  if ( inet_aton ( addr, &socket.sin.sin_addr ) == 0 ) {
638  DBGC ( tftp, "TFTP %p multicast invalid IP address "
639  "%s\n", tftp, addr );
640  return -EINVAL_MC_INVALID_IP;
641  }
642  DBGC ( tftp, "TFTP %p multicast IP address %s\n",
643  tftp, inet_ntoa ( socket.sin.sin_addr ) );
644  socket.sin.sin_port = htons ( strtoul ( port, &port_end, 0 ) );
645  if ( *port_end ) {
646  DBGC ( tftp, "TFTP %p multicast invalid port %s\n",
647  tftp, port );
648  return -EINVAL_MC_INVALID_PORT;
649  }
650  DBGC ( tftp, "TFTP %p multicast port %d\n",
651  tftp, ntohs ( socket.sin.sin_port ) );
652  if ( ( rc = tftp_reopen_mc ( tftp, &socket.sa ) ) != 0 )
653  return rc;
654  }
655 
656  return 0;
657 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
unsigned long strtoul(const char *string, char **endp, int base)
Convert string to numeric value.
Definition: string.c:471
#define EINVAL_MC_NO_MC
Definition: tftp.c:67
#define EINVAL_MC_INVALID_IP
Definition: tftp.c:73
#define DBGC(...)
Definition: compiler.h:505
#define EINVAL_MC_INVALID_PORT
Definition: tftp.c:76
IPv4 socket address.
Definition: in.h:82
#define ntohs(value)
Definition: byteswap.h:136
unsigned int flags
Request flags.
Definition: tftp.c:125
u8 port
Port number.
Definition: CIB_PRM.h:31
Send ACK packets.
Definition: tftp.c:150
struct sockaddr sa
Definition: syslog.c:55
#define EINVAL_MC_NO_PORT
Definition: tftp.c:64
pseudo_bit_t value[0x00020]
Definition: arbel.h:13
Generalized socket address structure.
Definition: socket.h:96
char * strchr(const char *src, int character)
Find character within a string.
Definition: string.c:271
int inet_aton(const char *string, struct in_addr *in)
Parse IPv4 address.
Definition: ipv4.c:631
char * inet_ntoa(struct in_addr in)
Convert IPv4 address to dotted-quad notation.
Definition: ipv4.c:658
u32 addr
Definition: sky2.h:8
#define EINVAL_MC_INVALID_MC
Definition: tftp.c:70
static int tftp_reopen_mc(struct tftp_request *tftp, struct sockaddr *local)
Reopen TFTP multicast socket.
Definition: tftp.c:244
struct sockaddr_in sin
Definition: syslog.c:57
#define htons(value)
Definition: byteswap.h:135
#define AF_INET
IPv4 Internet addresses.
Definition: socket.h:63
if(natsemi->flags &NATSEMI_64BIT) return 1

References addr, AF_INET, DBGC, EINVAL_MC_INVALID_IP, EINVAL_MC_INVALID_MC, EINVAL_MC_INVALID_PORT, EINVAL_MC_NO_MC, EINVAL_MC_NO_PORT, tftp_request::flags, htons, if(), inet_aton(), inet_ntoa(), ntohs, port, rc, sa, sin, strchr(), strtoul(), TFTP_FL_SEND_ACK, tftp_reopen_mc(), and value.

◆ tftp_process_option()

static int tftp_process_option ( struct tftp_request tftp,
const char *  name,
char *  value 
)
static

Process TFTP option.

Parameters
tftpTFTP connection
nameOption name
valueOption value
Return values
rcReturn status code

Definition at line 688 of file tftp.c.

689  {
690  struct tftp_option *option;
691 
692  for ( option = tftp_options ; option->name ; option++ ) {
693  if ( strcasecmp ( name, option->name ) == 0 )
694  return option->process ( tftp, value );
695  }
696 
697  DBGC ( tftp, "TFTP %p received unknown option \"%s\" = \"%s\"\n",
698  tftp, name, value );
699 
700  /* Unknown options should be silently ignored */
701  return 0;
702 }
const char * name
Definition: ath9k_hw.c:1984
#define DBGC(...)
Definition: compiler.h:505
int strcasecmp(const char *first, const char *second)
Compare case-insensitive strings.
Definition: string.c:208
A TFTP option.
Definition: tftp.c:660
A long option, as used for getopt_long()
Definition: getopt.h:24
pseudo_bit_t value[0x00020]
Definition: arbel.h:13
const char * name
Long name of this option.
Definition: getopt.h:26
static struct tftp_option tftp_options[]
Recognised TFTP options.
Definition: tftp.c:673

References DBGC, option::name, name, strcasecmp(), tftp_options, and value.

Referenced by tftp_rx_oack().

◆ tftp_rx_oack()

static int tftp_rx_oack ( struct tftp_request tftp,
void *  buf,
size_t  len 
)
static

Receive OACK.

Parameters
tftpTFTP connection
bufTemporary data buffer
lenLength of temporary data buffer
Return values
rcReturn status code

Definition at line 712 of file tftp.c.

712  {
713  struct tftp_oack *oack = buf;
714  char *end = buf + len;
715  char *name;
716  char *value;
717  char *next;
718  int rc = 0;
719 
720  /* Sanity check */
721  if ( len < sizeof ( *oack ) ) {
722  DBGC ( tftp, "TFTP %p received underlength OACK packet "
723  "length %zd\n", tftp, len );
724  rc = -EINVAL;
725  goto done;
726  }
727 
728  /* Process each option in turn */
729  for ( name = oack->data ; name < end ; name = next ) {
730 
731  /* Parse option name and value
732  *
733  * We treat parsing errors as non-fatal, because there
734  * exists at least one TFTP server (IBM Tivoli PXE
735  * Server 5.1.0.3) that has been observed to send
736  * malformed OACKs containing trailing garbage bytes.
737  */
738  value = ( name + strnlen ( name, ( end - name ) ) + 1 );
739  if ( value > end ) {
740  DBGC ( tftp, "TFTP %p received OACK with malformed "
741  "option name:\n", tftp );
742  DBGC_HD ( tftp, oack, len );
743  break;
744  }
745  if ( value == end ) {
746  DBGC ( tftp, "TFTP %p received OACK missing value "
747  "for option \"%s\"\n", tftp, name );
748  DBGC_HD ( tftp, oack, len );
749  break;
750  }
751  next = ( value + strnlen ( value, ( end - value ) ) + 1 );
752  if ( next > end ) {
753  DBGC ( tftp, "TFTP %p received OACK with malformed "
754  "value for option \"%s\":\n", tftp, name );
755  DBGC_HD ( tftp, oack, len );
756  break;
757  }
758 
759  /* Process option */
760  if ( ( rc = tftp_process_option ( tftp, name, value ) ) != 0 )
761  goto done;
762  }
763 
764  /* Process tsize information, if available */
765  if ( tftp->tsize ) {
766  if ( ( rc = tftp_presize ( tftp, tftp->tsize ) ) != 0 )
767  goto done;
768  }
769 
770  /* Request next data block */
771  tftp_send_packet ( tftp );
772 
773  done:
774  if ( rc )
775  tftp_done ( tftp, rc );
776  return rc;
777 }
#define EINVAL
Invalid argument.
Definition: errno.h:428
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
const char * name
Definition: ath9k_hw.c:1984
A TFTP options acknowledgement (OACK) packet.
Definition: tftp.h:63
uint32_t next
Next descriptor address.
Definition: myson.h:18
static int tftp_process_option(struct tftp_request *tftp, const char *name, char *value)
Process TFTP option.
Definition: tftp.c:688
#define DBGC(...)
Definition: compiler.h:505
static int tftp_presize(struct tftp_request *tftp, size_t filesize)
Presize TFTP receive buffers and block bitmap.
Definition: tftp.c:272
static void tftp_done(struct tftp_request *tftp, int rc)
Mark TFTP request as complete.
Definition: tftp.c:190
pseudo_bit_t value[0x00020]
Definition: arbel.h:13
static int tftp_send_packet(struct tftp_request *tftp)
Transmit next relevant packet.
Definition: tftp.c:459
#define DBGC_HD(...)
Definition: compiler.h:507
char data[0]
Definition: tftp.h:65
size_t strnlen(const char *src, size_t max)
Get length of string.
Definition: string.c:255
uint32_t len
Length.
Definition: ena.h:14
uint32_t end
Ending offset.
Definition: netvsc.h:18
unsigned long tsize
File size.
Definition: tftp.c:111
struct bofm_section_header done
Definition: bofm_test.c:46

References tftp_oack::data, DBGC, DBGC_HD, done, EINVAL, end, len, name, next, rc, strnlen(), tftp_done(), tftp_presize(), tftp_process_option(), tftp_send_packet(), tftp_request::tsize, and value.

Referenced by tftp_rx().

◆ tftp_rx_data()

static int tftp_rx_data ( struct tftp_request tftp,
struct io_buffer iobuf 
)
static

Receive DATA.

Parameters
tftpTFTP connection
iobufI/O buffer
Return values
rcReturn status code

Takes ownership of I/O buffer.

Definition at line 788 of file tftp.c.

789  {
790  struct tftp_data *data = iobuf->data;
791  struct xfer_metadata meta;
792  unsigned int block;
793  off_t offset;
794  size_t data_len;
795  int rc;
796 
797  /* Sanity check */
798  if ( iob_len ( iobuf ) < sizeof ( *data ) ) {
799  DBGC ( tftp, "TFTP %p received underlength DATA packet "
800  "length %zd\n", tftp, iob_len ( iobuf ) );
801  rc = -EINVAL;
802  goto done;
803  }
804 
805  /* Calculate block number */
806  block = ( ( bitmap_first_gap ( &tftp->bitmap ) + 1 ) & ~0xffff );
807  if ( data->block == 0 && block == 0 ) {
808  DBGC ( tftp, "TFTP %p received data block 0\n", tftp );
809  rc = -EINVAL;
810  goto done;
811  }
812  block += ( ntohs ( data->block ) - 1 );
813 
814  /* Stop profiling server turnaround if applicable */
815  if ( block )
816  profile_stop ( &tftp_server_profiler );
817 
818  /* Extract data */
819  offset = ( block * tftp->blksize );
820  iob_pull ( iobuf, sizeof ( *data ) );
821  data_len = iob_len ( iobuf );
822  if ( data_len > tftp->blksize ) {
823  DBGC ( tftp, "TFTP %p received overlength DATA packet "
824  "length %zd\n", tftp, data_len );
825  rc = -EINVAL;
826  goto done;
827  }
828 
829  /* Deliver data */
830  memset ( &meta, 0, sizeof ( meta ) );
831  meta.flags = XFER_FL_ABS_OFFSET;
832  meta.offset = offset;
833  if ( ( rc = xfer_deliver ( &tftp->xfer, iob_disown ( iobuf ),
834  &meta ) ) != 0 ) {
835  DBGC ( tftp, "TFTP %p could not deliver data: %s\n",
836  tftp, strerror ( rc ) );
837  goto done;
838  }
839 
840  /* Ensure block bitmap is ready */
841  if ( ( rc = tftp_presize ( tftp, ( offset + data_len ) ) ) != 0 )
842  goto done;
843 
844  /* Mark block as received */
845  bitmap_set ( &tftp->bitmap, block );
846 
847  /* Acknowledge block */
848  tftp_send_packet ( tftp );
849 
850  /* Stop profiling client turnaround */
851  profile_stop ( &tftp_client_profiler );
852 
853  /* Start profiling server turnaround */
854  profile_start ( &tftp_server_profiler );
855 
856  /* If all blocks have been received, finish. */
857  if ( bitmap_full ( &tftp->bitmap ) )
858  tftp_done ( tftp, 0 );
859 
860  done:
861  free_iob ( iobuf );
862  if ( rc )
863  tftp_done ( tftp, rc );
864  return rc;
865 }
#define iob_pull(iobuf, len)
Definition: iobuf.h:102
#define EINVAL
Invalid argument.
Definition: errno.h:428
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
Data transfer metadata.
Definition: xfer.h:22
#define XFER_FL_ABS_OFFSET
Offset is absolute.
Definition: xfer.h:47
void free_iob(struct io_buffer *iobuf)
Free I/O buffer.
Definition: iobuf.c:146
struct bitmap bitmap
Block bitmap.
Definition: tftp.c:130
#define DBGC(...)
Definition: compiler.h:505
A TFTP data (DATA) packet.
Definition: tftp.h:43
uint32_t data_len
Microcode data size (or 0 to indicate 2000 bytes)
Definition: ucode.h:26
#define ntohs(value)
Definition: byteswap.h:136
static int tftp_presize(struct tftp_request *tftp, size_t filesize)
Presize TFTP receive buffers and block bitmap.
Definition: tftp.c:272
static void profile_stop(struct profiler *profiler)
Stop profiling.
Definition: profile.h:171
unsigned int blksize
Data block size.
Definition: tftp.c:104
#define iob_disown(iobuf)
Disown an I/O buffer.
Definition: iobuf.h:212
struct interface xfer
Data transfer interface.
Definition: tftp.c:89
static userptr_t size_t offset
Offset of the first segment within the content.
Definition: deflate.h:259
static void profile_start(struct profiler *profiler)
Start profiling.
Definition: profile.h:158
static void tftp_done(struct tftp_request *tftp, int rc)
Mark TFTP request as complete.
Definition: tftp.c:190
int meta(WINDOW *, bool)
static int tftp_send_packet(struct tftp_request *tftp)
Transmit next relevant packet.
Definition: tftp.c:459
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition: iobuf.h:155
int xfer_deliver(struct interface *intf, struct io_buffer *iobuf, struct xfer_metadata *meta)
Deliver datagram.
Definition: xfer.c:194
void bitmap_set(struct bitmap *bitmap, unsigned int bit)
Set bit in bitmap.
Definition: bitmap.c:93
signed long off_t
Definition: stdint.h:8
uint8_t block[3][8]
DES-encrypted blocks.
Definition: mschapv2.h:12
void * data
Start of data.
Definition: iobuf.h:48
uint8_t data[48]
Additional event data.
Definition: ena.h:22
static unsigned int bitmap_first_gap(struct bitmap *bitmap)
Get first gap within bitmap.
Definition: bitmap.h:69
static int bitmap_full(struct bitmap *bitmap)
Check to see if bitmap is full.
Definition: bitmap.h:81
struct bofm_section_header done
Definition: bofm_test.c:46
void * memset(void *dest, int character, size_t len) __nonnull

References tftp_request::bitmap, bitmap_first_gap(), bitmap_full(), bitmap_set(), tftp_request::blksize, block, data, io_buffer::data, data_len, DBGC, done, EINVAL, free_iob(), iob_disown, iob_len(), iob_pull, memset(), meta(), ntohs, offset, profile_start(), profile_stop(), rc, strerror(), tftp_done(), tftp_presize(), tftp_send_packet(), tftp_request::xfer, xfer_deliver(), and XFER_FL_ABS_OFFSET.

Referenced by tftp_rx().

◆ tftp_errcode_to_rc()

static int tftp_errcode_to_rc ( unsigned int  errcode)
static

Convert TFTP error code to return status code.

Parameters
errcodeTFTP error code
Return values
rcReturn status code

Definition at line 873 of file tftp.c.

873  {
874  switch ( errcode ) {
875  case TFTP_ERR_FILE_NOT_FOUND: return -ENOENT;
876  case TFTP_ERR_ACCESS_DENIED: return -EACCES;
877  case TFTP_ERR_ILLEGAL_OP: return -ENOTTY;
878  default: return -ENOTSUP;
879  }
880 }
uint16_t errcode
Definition: tftp.h:12
#define ENOENT
No such file or directory.
Definition: errno.h:514
#define EACCES
Permission denied.
Definition: errno.h:298
#define ENOTSUP
Operation not supported.
Definition: errno.h:589
#define TFTP_ERR_ILLEGAL_OP
Illegal TFTP operation.
Definition: tftp.h:28
#define TFTP_ERR_ACCESS_DENIED
Access violation.
Definition: tftp.h:26
#define ENOTTY
Inappropriate I/O control operation.
Definition: errno.h:594
#define TFTP_ERR_FILE_NOT_FOUND
File not found.
Definition: tftp.h:25

References EACCES, ENOENT, ENOTSUP, ENOTTY, errcode, TFTP_ERR_ACCESS_DENIED, TFTP_ERR_FILE_NOT_FOUND, and TFTP_ERR_ILLEGAL_OP.

Referenced by tftp_rx_error().

◆ tftp_rx_error()

static int tftp_rx_error ( struct tftp_request tftp,
void *  buf,
size_t  len 
)
static

Receive ERROR.

Parameters
tftpTFTP connection
bufTemporary data buffer
lenLength of temporary data buffer
Return values
rcReturn status code

Definition at line 890 of file tftp.c.

890  {
891  struct tftp_error *error = buf;
892  int rc;
893 
894  /* Sanity check */
895  if ( len < sizeof ( *error ) ) {
896  DBGC ( tftp, "TFTP %p received underlength ERROR packet "
897  "length %zd\n", tftp, len );
898  return -EINVAL;
899  }
900 
901  DBGC ( tftp, "TFTP %p received ERROR packet with code %d, message "
902  "\"%s\"\n", tftp, ntohs ( error->errcode ), error->errmsg );
903 
904  /* Determine final operation result */
905  rc = tftp_errcode_to_rc ( ntohs ( error->errcode ) );
906 
907  /* Close TFTP request */
908  tftp_done ( tftp, rc );
909 
910  return 0;
911 }
#define EINVAL
Invalid argument.
Definition: errno.h:428
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
static int tftp_errcode_to_rc(unsigned int errcode)
Convert TFTP error code to return status code.
Definition: tftp.c:873
struct arbelprm_completion_with_error error
Definition: arbel.h:12
#define DBGC(...)
Definition: compiler.h:505
#define ntohs(value)
Definition: byteswap.h:136
static void tftp_done(struct tftp_request *tftp, int rc)
Mark TFTP request as complete.
Definition: tftp.c:190
uint32_t len
Length.
Definition: ena.h:14
A TFTP error (ERROR) packet.
Definition: tftp.h:56

References DBGC, EINVAL, error, len, ntohs, rc, tftp_done(), and tftp_errcode_to_rc().

Referenced by tftp_rx().

◆ tftp_rx()

static int tftp_rx ( struct tftp_request tftp,
struct io_buffer iobuf,
struct xfer_metadata meta 
)
static

Receive new data.

Parameters
tftpTFTP connection
iobufI/O buffer
metaTransfer metadata
Return values
rcReturn status code

Definition at line 921 of file tftp.c.

923  {
924  struct sockaddr_tcpip *st_src;
925  struct tftp_common *common = iobuf->data;
926  size_t len = iob_len ( iobuf );
927  int rc = -EINVAL;
928 
929  /* Start profiling client turnaround */
930  profile_start ( &tftp_client_profiler );
931 
932  /* Sanity checks */
933  if ( len < sizeof ( *common ) ) {
934  DBGC ( tftp, "TFTP %p received underlength packet length "
935  "%zd\n", tftp, len );
936  goto done;
937  }
938  if ( ! meta->src ) {
939  DBGC ( tftp, "TFTP %p received packet without source port\n",
940  tftp );
941  goto done;
942  }
943 
944  /* Filter by TID. Set TID on first response received */
945  st_src = ( struct sockaddr_tcpip * ) meta->src;
946  if ( ! tftp->peer.st_family ) {
947  memcpy ( &tftp->peer, st_src, sizeof ( tftp->peer ) );
948  DBGC ( tftp, "TFTP %p using remote port %d\n", tftp,
949  ntohs ( tftp->peer.st_port ) );
950  } else if ( memcmp ( &tftp->peer, st_src,
951  sizeof ( tftp->peer ) ) != 0 ) {
952  DBGC ( tftp, "TFTP %p received packet from wrong source (got "
953  "%d, wanted %d)\n", tftp, ntohs ( st_src->st_port ),
954  ntohs ( tftp->peer.st_port ) );
955  goto done;
956  }
957 
958  switch ( common->opcode ) {
959  case htons ( TFTP_OACK ):
960  rc = tftp_rx_oack ( tftp, iobuf->data, len );
961  break;
962  case htons ( TFTP_DATA ):
963  rc = tftp_rx_data ( tftp, iob_disown ( iobuf ) );
964  break;
965  case htons ( TFTP_ERROR ):
966  rc = tftp_rx_error ( tftp, iobuf->data, len );
967  break;
968  default:
969  DBGC ( tftp, "TFTP %p received strange packet type %d\n",
970  tftp, ntohs ( common->opcode ) );
971  break;
972  };
973 
974  done:
975  free_iob ( iobuf );
976  return rc;
977 }
#define EINVAL
Invalid argument.
Definition: errno.h:428
TCP/IP socket address.
Definition: tcpip.h:75
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void free_iob(struct io_buffer *iobuf)
Free I/O buffer.
Definition: iobuf.c:146
sa_family_t st_family
Socket address family (part of struct sockaddr)
Definition: tcpip.h:77
#define DBGC(...)
Definition: compiler.h:505
#define ntohs(value)
Definition: byteswap.h:136
#define iob_disown(iobuf)
Disown an I/O buffer.
Definition: iobuf.h:212
static int tftp_rx_error(struct tftp_request *tftp, void *buf, size_t len)
Receive ERROR.
Definition: tftp.c:890
void * memcpy(void *dest, const void *src, size_t len) __nonnull
static int tftp_rx_data(struct tftp_request *tftp, struct io_buffer *iobuf)
Receive DATA.
Definition: tftp.c:788
static void profile_start(struct profiler *profiler)
Start profiling.
Definition: profile.h:158
int meta(WINDOW *, bool)
uint16_t st_port
TCP/IP port.
Definition: tcpip.h:81
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition: iobuf.h:155
The common header of all TFTP packets.
Definition: tftp.h:69
struct ib_cm_common common
Definition: ib_mad.h:11
#define TFTP_ERROR
Error opcode.
Definition: tftp.h:22
#define TFTP_OACK
Options acknowledgement opcode.
Definition: tftp.h:23
static int tftp_rx_oack(struct tftp_request *tftp, void *buf, size_t len)
Receive OACK.
Definition: tftp.c:712
uint32_t len
Length.
Definition: ena.h:14
void * data
Start of data.
Definition: iobuf.h:48
uint8_t data[48]
Additional event data.
Definition: ena.h:22
#define TFTP_DATA
Data block opcode.
Definition: tftp.h:20
struct sockaddr_tcpip peer
Peer address.
Definition: tftp.c:123
int memcmp(const void *first, const void *second, size_t len)
Compare memory regions.
Definition: string.c:114
#define htons(value)
Definition: byteswap.h:135
struct bofm_section_header done
Definition: bofm_test.c:46
if(natsemi->flags &NATSEMI_64BIT) return 1

References common, io_buffer::data, DBGC, done, EINVAL, free_iob(), htons, if(), iob_disown, iob_len(), len, memcmp(), memcpy(), meta(), ntohs, tftp_request::peer, profile_start(), rc, sockaddr_tcpip::st_family, sockaddr_tcpip::st_port, TFTP_DATA, TFTP_ERROR, TFTP_OACK, tftp_rx_data(), tftp_rx_error(), and tftp_rx_oack().

Referenced by tftp_socket_deliver().

◆ tftp_socket_deliver()

static int tftp_socket_deliver ( struct tftp_request tftp,
struct io_buffer iobuf,
struct xfer_metadata meta 
)
static

Receive new data via socket.

Parameters
tftpTFTP connection
iobufI/O buffer
metaTransfer metadata
Return values
rcReturn status code

Definition at line 987 of file tftp.c.

989  {
990 
991  /* Enable sending ACKs when we receive a unicast packet. This
992  * covers three cases:
993  *
994  * 1. Standard TFTP; we should always send ACKs, and will
995  * always receive a unicast packet before we need to send the
996  * first ACK.
997  *
998  * 2. RFC2090 multicast TFTP; the only unicast packets we will
999  * receive are the OACKs; enable sending ACKs here (before
1000  * processing the OACK) and disable it when processing the
1001  * multicast option if we are not the master client.
1002  *
1003  * 3. MTFTP; receiving a unicast datagram indicates that we
1004  * are the "master client" and should send ACKs.
1005  */
1006  tftp->flags |= TFTP_FL_SEND_ACK;
1007 
1008  return tftp_rx ( tftp, iobuf, meta );
1009 }
unsigned int flags
Request flags.
Definition: tftp.c:125
Send ACK packets.
Definition: tftp.c:150
int meta(WINDOW *, bool)
static int tftp_rx(struct tftp_request *tftp, struct io_buffer *iobuf, struct xfer_metadata *meta)
Receive new data.
Definition: tftp.c:921

References tftp_request::flags, meta(), TFTP_FL_SEND_ACK, and tftp_rx().

◆ tftp_xfer_window()

static size_t tftp_xfer_window ( struct tftp_request tftp)
static

Check flow control window.

Parameters
tftpTFTP connection
Return values
lenLength of window

Definition at line 1035 of file tftp.c.

1035  {
1036 
1037  /* We abuse this data-xfer method to convey the blocksize to
1038  * the caller. This really should be done using some kind of
1039  * stat() method, but we don't yet have the facility to do
1040  * that.
1041  */
1042  return tftp->blksize;
1043 }
unsigned int blksize
Data block size.
Definition: tftp.c:104

References tftp_request::blksize.

◆ tftp_close()

static void tftp_close ( struct tftp_request tftp,
int  rc 
)
static

Terminate download.

Parameters
tftpTFTP connection
rcReason for close

Definition at line 1051 of file tftp.c.

1051  {
1052 
1053  /* Abort download */
1054  tftp_send_error ( tftp, 0, "TFTP Aborted" );
1055 
1056  /* Close TFTP request */
1057  tftp_done ( tftp, rc );
1058 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
static int tftp_send_error(struct tftp_request *tftp, int errcode, const char *errmsg)
Transmit ERROR (Abort)
Definition: tftp.c:425
static void tftp_done(struct tftp_request *tftp, int rc)
Mark TFTP request as complete.
Definition: tftp.c:190

References rc, tftp_done(), and tftp_send_error().

Referenced by pxenv_tftp_close().

◆ tftp_core_open()

static int tftp_core_open ( struct interface xfer,
struct uri uri,
unsigned int  default_port,
struct sockaddr multicast,
unsigned int  flags 
)
static

Initiate TFTP/TFTM/MTFTP download.

Parameters
xferData transfer interface
uriUniform Resource Identifier
Return values
rcReturn status code

Definition at line 1077 of file tftp.c.

1080  {
1081  struct tftp_request *tftp;
1082  int rc;
1083 
1084  /* Sanity checks */
1085  if ( ! uri->host )
1086  return -EINVAL;
1087  if ( ! uri->path )
1088  return -EINVAL;
1089  if ( uri->path[0] != '/' )
1090  return -EINVAL;
1091 
1092  /* Allocate and populate TFTP structure */
1093  tftp = zalloc ( sizeof ( *tftp ) );
1094  if ( ! tftp )
1095  return -ENOMEM;
1096  ref_init ( &tftp->refcnt, tftp_free );
1097  intf_init ( &tftp->xfer, &tftp_xfer_desc, &tftp->refcnt );
1098  intf_init ( &tftp->socket, &tftp_socket_desc, &tftp->refcnt );
1099  intf_init ( &tftp->mc_socket, &tftp_mc_socket_desc, &tftp->refcnt );
1100  timer_init ( &tftp->timer, tftp_timer_expired, &tftp->refcnt );
1101  tftp->uri = uri_get ( uri );
1102  tftp->blksize = TFTP_DEFAULT_BLKSIZE;
1103  tftp->flags = flags;
1104 
1105  /* Open socket */
1106  tftp->port = uri_port ( tftp->uri, default_port );
1107  if ( ( rc = tftp_reopen ( tftp ) ) != 0 )
1108  goto err;
1109 
1110  /* Open multicast socket */
1111  if ( multicast ) {
1112  if ( ( rc = tftp_reopen_mc ( tftp, multicast ) ) != 0 )
1113  goto err;
1114  }
1115 
1116  /* Start timer to initiate RRQ */
1117  start_timer_nodelay ( &tftp->timer );
1118 
1119  /* Attach to parent interface, mortalise self, and return */
1120  intf_plug_plug ( &tftp->xfer, xfer );
1121  ref_put ( &tftp->refcnt );
1122  return 0;
1123 
1124  err:
1125  DBGC ( tftp, "TFTP %p could not create request: %s\n",
1126  tftp, strerror ( rc ) );
1127  tftp_done ( tftp, rc );
1128  ref_put ( &tftp->refcnt );
1129  return rc;
1130 }
#define EINVAL
Invalid argument.
Definition: errno.h:428
struct interface socket
Transport layer interface.
Definition: tftp.c:94
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
static void start_timer_nodelay(struct retry_timer *timer)
Start timer with no delay.
Definition: retry.h:99
static struct uri * uri_get(struct uri *uri)
Increment URI reference count.
Definition: uri.h:194
static int tftp_reopen(struct tftp_request *tftp)
Reopen TFTP socket.
Definition: tftp.c:210
#define ref_init(refcnt, free)
Initialise a reference counter.
Definition: refcnt.h:64
static struct interface_descriptor tftp_xfer_desc
TFTP data transfer interface descriptor.
Definition: tftp.c:1067
#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 refcnt refcnt
Reference count.
Definition: tftp.c:87
A TFTP request.
Definition: tftp.c:85
unsigned int blksize
Data block size.
Definition: tftp.c:104
static void tftp_timer_expired(struct retry_timer *timer, int fail)
Handle TFTP retransmission timer expiry.
Definition: tftp.c:490
#define ENOMEM
Not enough space.
Definition: errno.h:534
static struct interface_descriptor tftp_socket_desc
TFTP socket interface descriptor.
Definition: tftp.c:1017
unsigned int flags
Request flags.
Definition: tftp.c:125
struct interface xfer
Data transfer interface.
Definition: tftp.c:89
static struct interface_descriptor tftp_mc_socket_desc
TFTP multicast socket interface descriptor.
Definition: tftp.c:1026
const char * path
Path (after URI decoding)
Definition: uri.h:80
struct interface mc_socket
Multicast transport layer interface.
Definition: tftp.c:96
static void tftp_free(struct refcnt *refcnt)
Free TFTP request.
Definition: tftp.c:175
static void tftp_done(struct tftp_request *tftp, int rc)
Mark TFTP request as complete.
Definition: tftp.c:190
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
const char * host
Host name.
Definition: uri.h:76
static int tftp_reopen_mc(struct tftp_request *tftp, struct sockaddr *local)
Reopen TFTP multicast socket.
Definition: tftp.c:244
struct retry_timer timer
Retransmission timer.
Definition: tftp.c:144
unsigned int port
Server port.
Definition: tftp.c:117
unsigned int uri_port(const struct uri *uri, unsigned int default_port)
Get port from URI.
Definition: uri.c:455
#define TFTP_DEFAULT_BLKSIZE
Default TFTP data block size.
Definition: tftp.h:15
A Uniform Resource Identifier.
Definition: uri.h:64
struct uri * uri
URI being fetched.
Definition: tftp.c:92
static void intf_init(struct interface *intf, struct interface_descriptor *desc, struct refcnt *refcnt)
Initialise an object interface.
Definition: interface.h:203
#define ref_put(refcnt)
Drop reference to object.
Definition: refcnt.h:106
uint8_t flags
Flags.
Definition: ena.h:18

References tftp_request::blksize, DBGC, EINVAL, ENOMEM, flags, tftp_request::flags, uri::host, intf_init(), intf_plug_plug(), tftp_request::mc_socket, uri::path, tftp_request::port, rc, ref_init, ref_put, tftp_request::refcnt, tftp_request::socket, start_timer_nodelay(), strerror(), TFTP_DEFAULT_BLKSIZE, tftp_done(), tftp_free(), tftp_mc_socket_desc, tftp_reopen(), tftp_reopen_mc(), tftp_socket_desc, tftp_timer_expired(), tftp_xfer_desc, tftp_request::timer, tftp_request::uri, uri_get(), uri_port(), tftp_request::xfer, and zalloc().

Referenced by mtftp_open(), tftm_open(), and tftp_open().

◆ tftp_open()

static int tftp_open ( struct interface xfer,
struct uri uri 
)
static

Initiate TFTP download.

Parameters
xferData transfer interface
uriUniform Resource Identifier
Return values
rcReturn status code

Definition at line 1139 of file tftp.c.

1139  {
1140  return tftp_core_open ( xfer, uri, TFTP_PORT, NULL,
1142 
1143 }
struct interface xfer
Data transfer interface.
Definition: tftp.c:89
Request blksize and tsize options.
Definition: tftp.c:152
#define TFTP_PORT
Default TFTP server port.
Definition: tftp.h:14
A Uniform Resource Identifier.
Definition: uri.h:64
static int tftp_core_open(struct interface *xfer, struct uri *uri, unsigned int default_port, struct sockaddr *multicast, unsigned int flags)
Initiate TFTP/TFTM/MTFTP download.
Definition: tftp.c:1077
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References NULL, tftp_core_open(), TFTP_FL_RRQ_SIZES, TFTP_PORT, and tftp_request::xfer.

Referenced by pxenv_tftp_open().

◆ tftm_open()

static int tftm_open ( struct interface xfer,
struct uri uri 
)
static

Initiate TFTM download.

Parameters
xferData transfer interface
uriUniform Resource Identifier
Return values
rcReturn status code

Definition at line 1158 of file tftp.c.

1158  {
1159  return tftp_core_open ( xfer, uri, TFTP_PORT, NULL,
1160  ( TFTP_FL_RRQ_SIZES |
1162 
1163 }
struct interface xfer
Data transfer interface.
Definition: tftp.c:89
Request blksize and tsize options.
Definition: tftp.c:152
#define TFTP_PORT
Default TFTP server port.
Definition: tftp.h:14
A Uniform Resource Identifier.
Definition: uri.h:64
static int tftp_core_open(struct interface *xfer, struct uri *uri, unsigned int default_port, struct sockaddr *multicast, unsigned int flags)
Initiate TFTP/TFTM/MTFTP download.
Definition: tftp.c:1077
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
Request multicast option.
Definition: tftp.c:154

References NULL, tftp_core_open(), TFTP_FL_RRQ_MULTICAST, TFTP_FL_RRQ_SIZES, and TFTP_PORT.

◆ mtftp_open()

static int mtftp_open ( struct interface xfer,
struct uri uri 
)
static

Initiate MTFTP download.

Parameters
xferData transfer interface
uriUniform Resource Identifier
Return values
rcReturn status code

Definition at line 1178 of file tftp.c.

1178  {
1179  return tftp_core_open ( xfer, uri, MTFTP_PORT,
1180  ( struct sockaddr * ) &tftp_mtftp_socket,
1182 }
#define MTFTP_PORT
Default MTFTP server port.
Definition: tftp.h:34
struct interface xfer
Data transfer interface.
Definition: tftp.c:89
Generalized socket address structure.
Definition: socket.h:96
static struct sockaddr_in tftp_mtftp_socket
MTFTP multicast receive address.
Definition: tftp.c:308
Perform MTFTP recovery on timeout.
Definition: tftp.c:156
A Uniform Resource Identifier.
Definition: uri.h:64
static int tftp_core_open(struct interface *xfer, struct uri *uri, unsigned int default_port, struct sockaddr *multicast, unsigned int flags)
Initiate TFTP/TFTM/MTFTP download.
Definition: tftp.c:1077

References MTFTP_PORT, tftp_core_open(), TFTP_FL_MTFTP_RECOVERY, and tftp_mtftp_socket.

◆ tftp_apply_settings()

static int tftp_apply_settings ( void  )
static

Apply TFTP configuration settings.

Return values
rcReturn status code

Definition at line 1202 of file tftp.c.

1202  {
1203  static struct in_addr tftp_server = { 0 };
1204  struct in_addr new_tftp_server;
1205  char uri_string[32];
1206  struct uri *uri;
1207 
1208  /* Retrieve TFTP server setting */
1209  fetch_ipv4_setting ( NULL, &next_server_setting, &new_tftp_server );
1210 
1211  /* If TFTP server setting has changed, set the current working
1212  * URI to match. Do it only when the TFTP server has changed
1213  * to try to minimise surprises to the user, who probably
1214  * won't expect the CWURI to change just because they updated
1215  * an unrelated setting and triggered all the settings
1216  * applicators.
1217  */
1218  if ( new_tftp_server.s_addr &&
1219  ( new_tftp_server.s_addr != tftp_server.s_addr ) ) {
1220  DBGC ( &tftp_server, "TFTP server changed %s => ",
1221  inet_ntoa ( tftp_server ) );
1222  DBGC ( &tftp_server, "%s\n", inet_ntoa ( new_tftp_server ) );
1223  snprintf ( uri_string, sizeof ( uri_string ),
1224  "tftp://%s/", inet_ntoa ( new_tftp_server ) );
1225  uri = parse_uri ( uri_string );
1226  if ( ! uri )
1227  return -ENOMEM;
1228  churi ( uri );
1229  uri_put ( uri );
1230  tftp_server = new_tftp_server;
1231  }
1232 
1233  return 0;
1234 }
static void uri_put(struct uri *uri)
Decrement URI reference count.
Definition: uri.h:205
int fetch_ipv4_setting(struct settings *settings, const struct setting *setting, struct in_addr *inp)
Fetch value of IPv4 address setting.
Definition: settings.c:912
#define DBGC(...)
Definition: compiler.h:505
#define ENOMEM
Not enough space.
Definition: errno.h:534
void churi(struct uri *uri)
Change working URI.
Definition: cwuri.c:45
IP address structure.
Definition: in.h:39
char * inet_ntoa(struct in_addr in)
Convert IPv4 address to dotted-quad notation.
Definition: ipv4.c:658
uint32_t s_addr
Definition: in.h:40
int snprintf(char *buf, size_t size, const char *fmt,...)
Write a formatted string to a buffer.
Definition: vsprintf.c:382
A Uniform Resource Identifier.
Definition: uri.h:64
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
struct uri * parse_uri(const char *uri_string)
Parse URI.
Definition: uri.c:296

References churi(), DBGC, ENOMEM, fetch_ipv4_setting(), inet_ntoa(), NULL, parse_uri(), in_addr::s_addr, snprintf(), and uri_put().

Variable Documentation

◆ __profiler

struct profiler tftp_server_profiler __profiler
static
Initial value:
=
{ .name = "tftp.client" }

Client profiler.

Server profiler.

Definition at line 163 of file tftp.c.

◆ tftp_mtftp_socket

struct sockaddr_in tftp_mtftp_socket
static
Initial value:
= {
.sin_family = AF_INET,
.sin_addr.s_addr = htonl ( 0xefff0101 ),
.sin_port = htons ( 3001 ),
}
#define htonl(value)
Definition: byteswap.h:133
#define htons(value)
Definition: byteswap.h:135
#define AF_INET
IPv4 Internet addresses.
Definition: socket.h:63

MTFTP multicast receive address.

This is treated as a global configuration parameter.

Definition at line 308 of file tftp.c.

Referenced by mtftp_open(), tftp_set_mtftp_address(), and tftp_set_mtftp_port().

◆ tftp_options

struct tftp_option tftp_options[]
static
Initial value:
= {
{ "blksize", tftp_process_blksize },
{ "tsize", tftp_process_tsize },
{ "multicast", tftp_process_multicast },
{ NULL, NULL }
}
static int tftp_process_multicast(struct tftp_request *tftp, char *value)
Process TFTP "multicast" option.
Definition: tftp.c:599
static int tftp_process_tsize(struct tftp_request *tftp, char *value)
Process TFTP "tsize" option.
Definition: tftp.c:578
static int tftp_process_blksize(struct tftp_request *tftp, char *value)
Process TFTP "blksize" option.
Definition: tftp.c:557
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

Recognised TFTP options.

Definition at line 673 of file tftp.c.

Referenced by tftp_process_option().

◆ tftp_socket_operations

struct interface_operation tftp_socket_operations[]
static
Initial value:
= {
}
A TFTP request.
Definition: tftp.c:85
static int tftp_socket_deliver(struct tftp_request *tftp, struct io_buffer *iobuf, struct xfer_metadata *meta)
Receive new data via socket.
Definition: tftp.c:987
#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

TFTP socket operations.

Definition at line 1012 of file tftp.c.

◆ tftp_socket_desc

struct interface_descriptor tftp_socket_desc
static
Initial value:
=
A TFTP request.
Definition: tftp.c:85
#define INTF_DESC(object_type, intf, operations)
Define an object interface descriptor.
Definition: interface.h:80
static struct interface_operation tftp_socket_operations[]
TFTP socket operations.
Definition: tftp.c:1012

TFTP socket interface descriptor.

Definition at line 1017 of file tftp.c.

Referenced by tftp_core_open().

◆ tftp_mc_socket_operations

struct interface_operation tftp_mc_socket_operations[]
static
Initial value:
= {
}
A TFTP request.
Definition: tftp.c:85
#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 tftp_rx(struct tftp_request *tftp, struct io_buffer *iobuf, struct xfer_metadata *meta)
Receive new data.
Definition: tftp.c:921

TFTP multicast socket operations.

Definition at line 1021 of file tftp.c.

◆ tftp_mc_socket_desc

struct interface_descriptor tftp_mc_socket_desc
static
Initial value:
=
A TFTP request.
Definition: tftp.c:85
#define INTF_DESC(object_type, intf, operations)
Define an object interface descriptor.
Definition: interface.h:80
static struct interface_operation tftp_mc_socket_operations[]
TFTP multicast socket operations.
Definition: tftp.c:1021

TFTP multicast socket interface descriptor.

Definition at line 1026 of file tftp.c.

Referenced by tftp_core_open().

◆ tftp_xfer_operations

struct interface_operation tftp_xfer_operations[]
static
Initial value:
= {
}
void intf_close(struct interface *intf, int rc)
Close an object interface.
Definition: interface.c:249
A TFTP request.
Definition: tftp.c:85
size_t xfer_window(struct interface *intf)
Check flow control window.
Definition: xfer.c:116
static void tftp_close(struct tftp_request *tftp, int rc)
Terminate download.
Definition: tftp.c:1051
#define INTF_OP(op_type, object_type, op_func)
Define an object interface operation.
Definition: interface.h:32
static size_t tftp_xfer_window(struct tftp_request *tftp)
Check flow control window.
Definition: tftp.c:1035

TFTP data transfer interface operations.

Definition at line 1061 of file tftp.c.

◆ tftp_xfer_desc

struct interface_descriptor tftp_xfer_desc
static
Initial value:
=
A TFTP request.
Definition: tftp.c:85
#define INTF_DESC(object_type, intf, operations)
Define an object interface descriptor.
Definition: interface.h:80
static struct interface_operation tftp_xfer_operations[]
TFTP data transfer interface operations.
Definition: tftp.c:1061

TFTP data transfer interface descriptor.

Definition at line 1067 of file tftp.c.

Referenced by tftp_core_open().

◆ __uri_opener

struct uri_opener mtftp_uri_opener __uri_opener
Initial value:
= {
.scheme = "tftp",
.open = tftp_open,
}
static int tftp_open(struct interface *xfer, struct uri *uri)
Initiate TFTP download.
Definition: tftp.c:1139

TFTP URI opener.

MTFTP URI opener.

TFTM URI opener.

Definition at line 1146 of file tftp.c.

◆ __settings_applicator

struct settings_applicator tftp_settings_applicator __settings_applicator
Initial value:
= {
}
static int tftp_apply_settings(void)
Apply TFTP configuration settings.
Definition: tftp.c:1202

TFTP settings applicator.

Definition at line 1237 of file tftp.c.