The legacy network stack supports tftpsrv, which listens for an incoming TFTP write request and receives the first file into memory. Despite the old command help wording, the command returns after receiving the file and does not boot it automatically. The lwIP stack already builds the lwIP TFTP application, but only wires it up for client-side tftpboot. Add a lwIP tftpsrv command and implement the server path with tftp_init_server(). Reuse the existing lwIP TFTP write callback and memory copy path so LMB checks, progress output, filesize/fileaddr updates and EFI bootdev handling stay consistent with tftpboot. Track receive timeout and write-failure state around the lwIP callbacks so a stalled or rejected receive is not reported as a successful close. Move CMD_TFTPSRV out of the legacy-only Kconfig block so it can be enabled with either network stack. Update the command help text and add usage documentation for the receive-only behavior. Add pytest coverage for tftpsrv using a generated host file and curl's TFTP upload support. Enable the command in qemu_arm64_lwip_defconfig so the test can be run with the existing lwIP QEMU build when the boardenv provides env__net_tftpsrv_file. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> [Jerome Forissier: remove trailing ':' after SPDX tag] Signed-off-by: Jerome Forissier <jerome.forissier@arm.com> Reviewed-by: Jerome Forissier <jerome.forissier@arm.com>
60 lines
1.5 KiB
C
60 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef __NET_LWIP_H__
|
|
#define __NET_LWIP_H__
|
|
|
|
#include <lwip/ip4.h>
|
|
#include <lwip/netif.h>
|
|
|
|
/* HTTPS authentication mode */
|
|
enum auth_mode {
|
|
AUTH_NONE,
|
|
AUTH_OPTIONAL,
|
|
AUTH_REQUIRED,
|
|
};
|
|
|
|
extern char *cacert;
|
|
extern size_t cacert_size;
|
|
extern enum auth_mode cacert_auth_mode;
|
|
extern bool cacert_initialized;
|
|
|
|
extern int net_try_count;
|
|
|
|
int set_cacert_builtin(void);
|
|
|
|
enum proto_t {
|
|
TFTPGET
|
|
};
|
|
|
|
static inline int eth_is_on_demand_init(void)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int eth_init_state_only(void); /* Set active state */
|
|
|
|
int net_lwip_dns_init(void);
|
|
int net_lwip_eth_start(void);
|
|
void net_lwip_eth_stop(void);
|
|
struct netif *net_lwip_new_netif(struct udevice *udev);
|
|
struct netif *net_lwip_new_netif_noip(struct udevice *udev);
|
|
void net_lwip_remove_netif(struct netif *netif);
|
|
struct netif *net_lwip_get_netif(void);
|
|
int net_lwip_rx(struct udevice *udev, struct netif *netif);
|
|
int net_lwip_dns_resolve(char *name_or_ip, ip_addr_t *ip);
|
|
|
|
/**
|
|
* wget_validate_uri() - varidate the uri
|
|
*
|
|
* @uri: uri string of target file of wget
|
|
* Return: true if uri is valid, false if uri is invalid
|
|
*/
|
|
bool wget_validate_uri(char *uri);
|
|
|
|
int do_dns(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
|
int do_nfs(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
|
int do_tftpsrv(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
|
|
int do_wget(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[]);
|
|
|
|
#endif /* __NET_LWIP_H__ */
|