blob: 71bac92d84d174c1494d2868ab2dac76906c7458 [file] [log] [blame]
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * WGET/HTTP support driver based on U-BOOT's nfs.c
4 * Copyright Duncan Hare <dh@synoia.com> 2017
5 */
6
Masahisa Kojima04592ad2023-11-10 13:25:34 +09007#include <asm/global_data.h>
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +08008#include <command.h>
9#include <common.h>
Michael Wallefe1489b2022-12-28 16:27:14 +010010#include <display_options.h>
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +080011#include <env.h>
12#include <image.h>
Masahisa Kojima04592ad2023-11-10 13:25:34 +090013#include <lmb.h>
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +080014#include <mapmem.h>
15#include <net.h>
16#include <net/tcp.h>
17#include <net/wget.h>
Masahisa Kojima8cf18da2023-11-10 13:25:35 +090018#include <stdlib.h>
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +080019
Masahisa Kojima04592ad2023-11-10 13:25:34 +090020DECLARE_GLOBAL_DATA_PTR;
21
Marek Vasut4caacb22023-12-13 22:11:13 +010022/* The default, change with environment variable 'httpdstp' */
23#define SERVER_PORT 80
24
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +080025static const char bootfile1[] = "GET ";
26static const char bootfile3[] = " HTTP/1.0\r\n\r\n";
27static const char http_eom[] = "\r\n\r\n";
28static const char http_ok[] = "200";
29static const char content_len[] = "Content-Length";
30static const char linefeed[] = "\r\n";
31static struct in_addr web_server_ip;
32static int our_port;
33static int wget_timeout_count;
34
35struct pkt_qd {
36 uchar *pkt;
37 unsigned int tcp_seq_num;
38 unsigned int len;
39};
40
41/*
42 * This is a control structure for out of order packets received.
43 * The actual packet bufers are in the kernel space, and are
44 * expected to be overwritten by the downloaded image.
45 */
Richard Weinbergera8bd5ec2023-07-20 14:51:56 +020046#define PKTQ_SZ (PKTBUFSRX / 4)
47static struct pkt_qd pkt_q[PKTQ_SZ];
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +080048static int pkt_q_idx;
49static unsigned long content_length;
50static unsigned int packets;
51
52static unsigned int initial_data_seq_num;
Yasuharu Shibatacab78672024-04-14 19:46:07 +090053static unsigned int next_data_seq_num;
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +080054
55static enum wget_state current_wget_state;
56
57static char *image_url;
58static unsigned int wget_timeout = WGET_TIMEOUT;
59
60static enum net_loop_state wget_loop_state;
61
62/* Timeout retry parameters */
63static u8 retry_action; /* actions for TCP retry */
64static unsigned int retry_tcp_ack_num; /* TCP retry acknowledge number*/
65static unsigned int retry_tcp_seq_num; /* TCP retry sequence number */
66static int retry_len; /* TCP retry length */
67
Masahisa Kojima04592ad2023-11-10 13:25:34 +090068static ulong wget_load_size;
69
70/**
71 * wget_init_max_size() - initialize maximum load size
72 *
73 * Return: 0 if success, -1 if fails
74 */
75static int wget_init_load_size(void)
76{
77 struct lmb lmb;
78 phys_size_t max_size;
79
80 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
81
82 max_size = lmb_get_free_size(&lmb, image_load_addr);
83 if (!max_size)
84 return -1;
85
86 wget_load_size = max_size;
87
88 return 0;
89}
90
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +080091/**
92 * store_block() - store block in memory
93 * @src: source of data
94 * @offset: offset
95 * @len: length
96 */
97static inline int store_block(uchar *src, unsigned int offset, unsigned int len)
98{
Masahisa Kojima04592ad2023-11-10 13:25:34 +090099 ulong store_addr = image_load_addr + offset;
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800100 ulong newsize = offset + len;
101 uchar *ptr;
102
Masahisa Kojima04592ad2023-11-10 13:25:34 +0900103 if (IS_ENABLED(CONFIG_LMB)) {
104 ulong end_addr = image_load_addr + wget_load_size;
105
106 if (!end_addr)
107 end_addr = ULONG_MAX;
108
109 if (store_addr < image_load_addr ||
110 store_addr + len > end_addr) {
111 printf("\nwget error: ");
112 printf("trying to overwrite reserved memory...\n");
113 return -1;
114 }
115 }
116
117 ptr = map_sysmem(store_addr, len);
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800118 memcpy(ptr, src, len);
119 unmap_sysmem(ptr);
120
121 if (net_boot_file_size < (offset + len))
122 net_boot_file_size = newsize;
123
124 return 0;
125}
126
127/**
128 * wget_send_stored() - wget response dispatcher
129 *
130 * WARNING, This, and only this, is the place in wget.c where
131 * SEQUENCE NUMBERS are swapped between incoming (RX)
132 * and outgoing (TX).
133 * Procedure wget_handler() is correct for RX traffic.
134 */
135static void wget_send_stored(void)
136{
137 u8 action = retry_action;
138 int len = retry_len;
Dmitrii Merkurev08fb8da2023-04-12 19:49:29 +0100139 unsigned int tcp_ack_num = retry_tcp_seq_num + (len == 0 ? 1 : len);
140 unsigned int tcp_seq_num = retry_tcp_ack_num;
Marek Vasut4caacb22023-12-13 22:11:13 +0100141 unsigned int server_port;
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800142 uchar *ptr, *offset;
143
Marek Vasut4caacb22023-12-13 22:11:13 +0100144 server_port = env_get_ulong("httpdstp", 10, SERVER_PORT) & 0xffff;
145
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800146 switch (current_wget_state) {
147 case WGET_CLOSED:
148 debug_cond(DEBUG_WGET, "wget: send SYN\n");
149 current_wget_state = WGET_CONNECTING;
Marek Vasut4caacb22023-12-13 22:11:13 +0100150 net_send_tcp_packet(0, server_port, our_port, action,
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800151 tcp_seq_num, tcp_ack_num);
152 packets = 0;
153 break;
154 case WGET_CONNECTING:
155 pkt_q_idx = 0;
Marek Vasut4caacb22023-12-13 22:11:13 +0100156 net_send_tcp_packet(0, server_port, our_port, action,
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800157 tcp_seq_num, tcp_ack_num);
158
159 ptr = net_tx_packet + net_eth_hdr_size() +
160 IP_TCP_HDR_SIZE + TCP_TSOPT_SIZE + 2;
161 offset = ptr;
162
163 memcpy(offset, &bootfile1, strlen(bootfile1));
164 offset += strlen(bootfile1);
165
166 memcpy(offset, image_url, strlen(image_url));
167 offset += strlen(image_url);
168
169 memcpy(offset, &bootfile3, strlen(bootfile3));
170 offset += strlen(bootfile3);
Marek Vasut4caacb22023-12-13 22:11:13 +0100171 net_send_tcp_packet((offset - ptr), server_port, our_port,
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800172 TCP_PUSH, tcp_seq_num, tcp_ack_num);
173 current_wget_state = WGET_CONNECTED;
174 break;
175 case WGET_CONNECTED:
176 case WGET_TRANSFERRING:
177 case WGET_TRANSFERRED:
Marek Vasut4caacb22023-12-13 22:11:13 +0100178 net_send_tcp_packet(0, server_port, our_port, action,
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800179 tcp_seq_num, tcp_ack_num);
180 break;
181 }
182}
183
Dmitrii Merkurev08fb8da2023-04-12 19:49:29 +0100184static void wget_send(u8 action, unsigned int tcp_seq_num,
185 unsigned int tcp_ack_num, int len)
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800186{
187 retry_action = action;
188 retry_tcp_ack_num = tcp_ack_num;
189 retry_tcp_seq_num = tcp_seq_num;
190 retry_len = len;
191
192 wget_send_stored();
193}
194
195void wget_fail(char *error_message, unsigned int tcp_seq_num,
196 unsigned int tcp_ack_num, u8 action)
197{
198 printf("wget: Transfer Fail - %s\n", error_message);
199 net_set_timeout_handler(0, NULL);
200 wget_send(action, tcp_seq_num, tcp_ack_num, 0);
201}
202
203void wget_success(u8 action, unsigned int tcp_seq_num,
204 unsigned int tcp_ack_num, int len, int packets)
205{
206 printf("Packets received %d, Transfer Successful\n", packets);
207 wget_send(action, tcp_seq_num, tcp_ack_num, len);
208}
209
210/*
211 * Interfaces of U-BOOT
212 */
213static void wget_timeout_handler(void)
214{
215 if (++wget_timeout_count > WGET_RETRY_COUNT) {
216 puts("\nRetry count exceeded; starting again\n");
217 wget_send(TCP_RST, 0, 0, 0);
218 net_start_again();
219 } else {
220 puts("T ");
221 net_set_timeout_handler(wget_timeout +
222 WGET_TIMEOUT * wget_timeout_count,
223 wget_timeout_handler);
224 wget_send_stored();
225 }
226}
227
228#define PKT_QUEUE_OFFSET 0x20000
229#define PKT_QUEUE_PACKET_SIZE 0x800
230
231static void wget_connected(uchar *pkt, unsigned int tcp_seq_num,
Dmitrii Merkurev08fb8da2023-04-12 19:49:29 +0100232 u8 action, unsigned int tcp_ack_num, unsigned int len)
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800233{
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800234 uchar *pkt_in_q;
235 char *pos;
236 int hlen, i;
237 uchar *ptr1;
238
239 pkt[len] = '\0';
240 pos = strstr((char *)pkt, http_eom);
241
242 if (!pos) {
243 debug_cond(DEBUG_WGET,
244 "wget: Connected, data before Header %p\n", pkt);
245 pkt_in_q = (void *)image_load_addr + PKT_QUEUE_OFFSET +
246 (pkt_q_idx * PKT_QUEUE_PACKET_SIZE);
247
248 ptr1 = map_sysmem((phys_addr_t)pkt_in_q, len);
249 memcpy(ptr1, pkt, len);
250 unmap_sysmem(ptr1);
251
252 pkt_q[pkt_q_idx].pkt = pkt_in_q;
253 pkt_q[pkt_q_idx].tcp_seq_num = tcp_seq_num;
254 pkt_q[pkt_q_idx].len = len;
255 pkt_q_idx++;
Richard Weinbergera8bd5ec2023-07-20 14:51:56 +0200256
257 if (pkt_q_idx >= PKTQ_SZ) {
258 printf("wget: Fatal error, queue overrun!\n");
259 net_set_state(NETLOOP_FAIL);
260
261 return;
262 }
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800263 } else {
264 debug_cond(DEBUG_WGET, "wget: Connected HTTP Header %p\n", pkt);
265 /* sizeof(http_eom) - 1 is the string length of (http_eom) */
266 hlen = pos - (char *)pkt + sizeof(http_eom) - 1;
267 pos = strstr((char *)pkt, linefeed);
268 if (pos > 0)
269 i = pos - (char *)pkt;
270 else
271 i = hlen;
272 printf("%.*s", i, pkt);
273
274 current_wget_state = WGET_TRANSFERRING;
275
Yasuharu Shibatacab78672024-04-14 19:46:07 +0900276 initial_data_seq_num = tcp_seq_num + hlen;
277 next_data_seq_num = tcp_seq_num + len;
278
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800279 if (strstr((char *)pkt, http_ok) == 0) {
280 debug_cond(DEBUG_WGET,
281 "wget: Connected Bad Xfer\n");
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800282 wget_loop_state = NETLOOP_FAIL;
283 wget_send(action, tcp_seq_num, tcp_ack_num, len);
284 } else {
285 debug_cond(DEBUG_WGET,
286 "wget: Connctd pkt %p hlen %x\n",
287 pkt, hlen);
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800288
289 pos = strstr((char *)pkt, content_len);
290 if (!pos) {
291 content_length = -1;
292 } else {
293 pos += sizeof(content_len) + 2;
294 strict_strtoul(pos, 10, &content_length);
295 debug_cond(DEBUG_WGET,
296 "wget: Connected Len %lu\n",
297 content_length);
298 }
299
300 net_boot_file_size = 0;
301
Masahisa Kojima04592ad2023-11-10 13:25:34 +0900302 if (len > hlen) {
303 if (store_block(pkt + hlen, 0, len - hlen) != 0) {
304 wget_loop_state = NETLOOP_FAIL;
305 wget_fail("wget: store error\n", tcp_seq_num, tcp_ack_num, action);
306 net_set_state(NETLOOP_FAIL);
307 return;
308 }
309 }
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800310
311 debug_cond(DEBUG_WGET,
312 "wget: Connected Pkt %p hlen %x\n",
313 pkt, hlen);
314
315 for (i = 0; i < pkt_q_idx; i++) {
Masahisa Kojima04592ad2023-11-10 13:25:34 +0900316 int err;
317
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800318 ptr1 = map_sysmem(
319 (phys_addr_t)(pkt_q[i].pkt),
320 pkt_q[i].len);
Masahisa Kojima04592ad2023-11-10 13:25:34 +0900321 err = store_block(ptr1,
322 pkt_q[i].tcp_seq_num -
323 initial_data_seq_num,
324 pkt_q[i].len);
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800325 unmap_sysmem(ptr1);
326 debug_cond(DEBUG_WGET,
327 "wget: Connctd pkt Q %p len %x\n",
328 pkt_q[i].pkt, pkt_q[i].len);
Masahisa Kojima04592ad2023-11-10 13:25:34 +0900329 if (err) {
330 wget_loop_state = NETLOOP_FAIL;
331 wget_fail("wget: store error\n", tcp_seq_num, tcp_ack_num, action);
332 net_set_state(NETLOOP_FAIL);
333 return;
334 }
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800335 }
336 }
337 }
338 wget_send(action, tcp_seq_num, tcp_ack_num, len);
339}
340
341/**
Dmitrii Merkurev08fb8da2023-04-12 19:49:29 +0100342 * wget_handler() - TCP handler of wget
343 * @pkt: pointer to the application packet
344 * @dport: destination TCP port
345 * @sip: source IP address
346 * @sport: source TCP port
347 * @tcp_seq_num: TCP sequential number
348 * @tcp_ack_num: TCP acknowledgment number
349 * @action: TCP action (SYN, ACK, FIN, etc)
350 * @len: packet length
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800351 *
352 * In the "application push" invocation, the TCP header with all
353 * its information is pointed to by the packet pointer.
354 */
Dmitrii Merkurev08fb8da2023-04-12 19:49:29 +0100355static void wget_handler(uchar *pkt, u16 dport,
356 struct in_addr sip, u16 sport,
357 u32 tcp_seq_num, u32 tcp_ack_num,
358 u8 action, unsigned int len)
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800359{
360 enum tcp_state wget_tcp_state = tcp_get_tcp_state();
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800361
362 net_set_timeout_handler(wget_timeout, wget_timeout_handler);
363 packets++;
364
365 switch (current_wget_state) {
366 case WGET_CLOSED:
367 debug_cond(DEBUG_WGET, "wget: Handler: Error!, State wrong\n");
368 break;
369 case WGET_CONNECTING:
370 debug_cond(DEBUG_WGET,
Dmitrii Merkurev08fb8da2023-04-12 19:49:29 +0100371 "wget: Connecting In len=%x, Seq=%u, Ack=%u\n",
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800372 len, tcp_seq_num, tcp_ack_num);
373 if (!len) {
374 if (wget_tcp_state == TCP_ESTABLISHED) {
375 debug_cond(DEBUG_WGET,
376 "wget: Cting, send, len=%x\n", len);
377 wget_send(action, tcp_seq_num, tcp_ack_num,
378 len);
379 } else {
380 printf("%.*s", len, pkt);
381 wget_fail("wget: Handler Connected Fail\n",
382 tcp_seq_num, tcp_ack_num, action);
383 }
384 }
385 break;
386 case WGET_CONNECTED:
Dmitrii Merkurev08fb8da2023-04-12 19:49:29 +0100387 debug_cond(DEBUG_WGET, "wget: Connected seq=%u, len=%x\n",
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800388 tcp_seq_num, len);
389 if (!len) {
390 wget_fail("Image not found, no data returned\n",
391 tcp_seq_num, tcp_ack_num, action);
392 } else {
Dmitrii Merkurev08fb8da2023-04-12 19:49:29 +0100393 wget_connected(pkt, tcp_seq_num, action, tcp_ack_num, len);
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800394 }
395 break;
396 case WGET_TRANSFERRING:
397 debug_cond(DEBUG_WGET,
398 "wget: Transferring, seq=%x, ack=%x,len=%x\n",
399 tcp_seq_num, tcp_ack_num, len);
400
Yasuharu Shibatacab78672024-04-14 19:46:07 +0900401 if (next_data_seq_num != tcp_seq_num) {
402 debug_cond(DEBUG_WGET, "wget: seq=%x packet was lost\n", next_data_seq_num);
403 return;
404 }
405 next_data_seq_num = tcp_seq_num + len;
406
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800407 if (tcp_seq_num >= initial_data_seq_num &&
408 store_block(pkt, tcp_seq_num - initial_data_seq_num,
409 len) != 0) {
410 wget_fail("wget: store error\n",
411 tcp_seq_num, tcp_ack_num, action);
Masahisa Kojima04592ad2023-11-10 13:25:34 +0900412 net_set_state(NETLOOP_FAIL);
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800413 return;
414 }
415
416 switch (wget_tcp_state) {
417 case TCP_FIN_WAIT_2:
418 wget_send(TCP_ACK, tcp_seq_num, tcp_ack_num, len);
419 fallthrough;
420 case TCP_SYN_SENT:
Dmitrii Merkurev08fb8da2023-04-12 19:49:29 +0100421 case TCP_SYN_RECEIVED:
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800422 case TCP_CLOSING:
423 case TCP_FIN_WAIT_1:
424 case TCP_CLOSED:
425 net_set_state(NETLOOP_FAIL);
426 break;
427 case TCP_ESTABLISHED:
428 wget_send(TCP_ACK, tcp_seq_num, tcp_ack_num,
429 len);
430 wget_loop_state = NETLOOP_SUCCESS;
431 break;
432 case TCP_CLOSE_WAIT: /* End of transfer */
433 current_wget_state = WGET_TRANSFERRED;
434 wget_send(action | TCP_ACK | TCP_FIN,
435 tcp_seq_num, tcp_ack_num, len);
436 break;
437 }
438 break;
439 case WGET_TRANSFERRED:
440 printf("Packets received %d, Transfer Successful\n", packets);
441 net_set_state(wget_loop_state);
442 break;
443 }
444}
445
446#define RANDOM_PORT_START 1024
447#define RANDOM_PORT_RANGE 0x4000
448
449/**
450 * random_port() - make port a little random (1024-17407)
451 *
452 * Return: random port number from 1024 to 17407
453 *
454 * This keeps the math somewhat trivial to compute, and seems to work with
455 * all supported protocols/clients/servers
456 */
457static unsigned int random_port(void)
458{
459 return RANDOM_PORT_START + (get_timer(0) % RANDOM_PORT_RANGE);
460}
461
462#define BLOCKSIZE 512
463
464void wget_start(void)
465{
466 image_url = strchr(net_boot_file_name, ':');
467 if (image_url > 0) {
468 web_server_ip = string_to_ip(net_boot_file_name);
469 ++image_url;
470 net_server_ip = web_server_ip;
471 } else {
472 web_server_ip = net_server_ip;
473 image_url = net_boot_file_name;
474 }
475
476 debug_cond(DEBUG_WGET,
477 "wget: Transfer HTTP Server %pI4; our IP %pI4\n",
478 &web_server_ip, &net_ip);
479
480 /* Check if we need to send across this subnet */
481 if (net_gateway.s_addr && net_netmask.s_addr) {
482 struct in_addr our_net;
483 struct in_addr server_net;
484
485 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
486 server_net.s_addr = net_server_ip.s_addr & net_netmask.s_addr;
487 if (our_net.s_addr != server_net.s_addr)
488 debug_cond(DEBUG_WGET,
489 "wget: sending through gateway %pI4",
490 &net_gateway);
491 }
492 debug_cond(DEBUG_WGET, "URL '%s'\n", image_url);
493
494 if (net_boot_file_expected_size_in_blocks) {
495 debug_cond(DEBUG_WGET, "wget: Size is 0x%x Bytes = ",
496 net_boot_file_expected_size_in_blocks * BLOCKSIZE);
497 print_size(net_boot_file_expected_size_in_blocks * BLOCKSIZE,
498 "");
499 }
500 debug_cond(DEBUG_WGET,
501 "\nwget:Load address: 0x%lx\nLoading: *\b", image_load_addr);
502
Masahisa Kojima04592ad2023-11-10 13:25:34 +0900503 if (IS_ENABLED(CONFIG_LMB)) {
504 if (wget_init_load_size()) {
505 printf("\nwget error: ");
506 printf("trying to overwrite reserved memory...\n");
507 net_set_state(NETLOOP_FAIL);
508 return;
509 }
510 }
511
Ying-Chun Liu (PaulLiu)cfbae482022-11-08 14:17:29 +0800512 net_set_timeout_handler(wget_timeout, wget_timeout_handler);
513 tcp_set_tcp_handler(wget_handler);
514
515 wget_timeout_count = 0;
516 current_wget_state = WGET_CLOSED;
517
518 our_port = random_port();
519
520 /*
521 * Zero out server ether to force arp resolution in case
522 * the server ip for the previous u-boot command, for example dns
523 * is not the same as the web server ip.
524 */
525
526 memset(net_server_ethaddr, 0, 6);
527
528 wget_send(TCP_SYN, 0, 0, 0);
529}
Masahisa Kojima8cf18da2023-11-10 13:25:35 +0900530
531#if (IS_ENABLED(CONFIG_CMD_DNS))
532int wget_with_dns(ulong dst_addr, char *uri)
533{
534 int ret;
535 char *s, *host_name, *file_name, *str_copy;
536
537 /*
538 * Download file using wget.
539 *
540 * U-Boot wget takes the target uri in this format.
541 * "<http server ip>:<file path>" e.g.) 192.168.1.1:/sample/test.iso
542 * Need to resolve the http server ip address before starting wget.
543 */
544 str_copy = strdup(uri);
545 if (!str_copy)
546 return -ENOMEM;
547
548 s = str_copy + strlen("http://");
549 host_name = strsep(&s, "/");
550 if (!s) {
551 log_err("Error: invalied uri, no file path\n");
552 ret = -EINVAL;
553 goto out;
554 }
555 file_name = s;
556
557 /* TODO: If the given uri has ip address for the http server, skip dns */
558 net_dns_resolve = host_name;
559 net_dns_env_var = "httpserverip";
560 if (net_loop(DNS) < 0) {
561 log_err("Error: dns lookup of %s failed, check setup\n", net_dns_resolve);
562 ret = -EINVAL;
563 goto out;
564 }
565 s = env_get("httpserverip");
566 if (!s) {
567 ret = -EINVAL;
568 goto out;
569 }
570
571 strlcpy(net_boot_file_name, s, sizeof(net_boot_file_name));
572 strlcat(net_boot_file_name, ":/", sizeof(net_boot_file_name)); /* append '/' which is removed by strsep() */
573 strlcat(net_boot_file_name, file_name, sizeof(net_boot_file_name));
574 image_load_addr = dst_addr;
575 ret = net_loop(WGET);
576
577out:
578 free(str_copy);
579
580 return ret;
581}
582#endif
Masahisa Kojimaf01c9612023-11-10 13:25:41 +0900583
584/**
585 * wget_validate_uri() - validate the uri for wget
586 *
587 * @uri: uri string
588 *
589 * This function follows the current U-Boot wget implementation.
590 * scheme: only "http:" is supported
591 * authority:
592 * - user information: not supported
593 * - host: supported
594 * - port: not supported(always use the default port)
595 *
596 * Uri is expected to be correctly percent encoded.
597 * This is the minimum check, control codes(0x1-0x19, 0x7F, except '\0')
598 * and space character(0x20) are not allowed.
599 *
600 * TODO: stricter uri conformance check
601 *
602 * Return: true on success, false on failure
603 */
604bool wget_validate_uri(char *uri)
605{
606 char c;
607 bool ret = true;
608 char *str_copy, *s, *authority;
609
610 for (c = 0x1; c < 0x21; c++) {
611 if (strchr(uri, c)) {
612 log_err("invalid character is used\n");
613 return false;
614 }
615 }
616 if (strchr(uri, 0x7f)) {
617 log_err("invalid character is used\n");
618 return false;
619 }
620
621 if (strncmp(uri, "http://", 7)) {
622 log_err("only http:// is supported\n");
623 return false;
624 }
625 str_copy = strdup(uri);
626 if (!str_copy)
627 return false;
628
629 s = str_copy + strlen("http://");
630 authority = strsep(&s, "/");
631 if (!s) {
632 log_err("invalid uri, no file path\n");
633 ret = false;
634 goto out;
635 }
636 s = strchr(authority, '@');
637 if (s) {
638 log_err("user information is not supported\n");
639 ret = false;
640 goto out;
641 }
642 s = strchr(authority, ':');
643 if (s) {
644 log_err("user defined port is not supported\n");
645 ret = false;
646 goto out;
647 }
648
649out:
650 free(str_copy);
651
652 return ret;
653}