VirtualBox

source: vbox/trunk/src/VBox/NetworkServices/NAT/proxy_tftpd.c@ 60869

Last change on this file since 60869 was 56300, checked in by vboxsync, 9 years ago

NetworkServices: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 21.4 KB
Line 
1/* $Id: proxy_tftpd.c 56300 2015-06-09 14:36:22Z vboxsync $ */
2/** @file
3 * NAT Network - TFTP server.
4 */
5
6/*
7 * Copyright (C) 2013-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#define LOG_GROUP LOG_GROUP_NAT_SERVICE
19
20#include "winutils.h"
21
22#include "proxy.h"
23#include "tftp.h"
24
25#ifndef RT_OS_WINDOWS
26#include <sys/types.h>
27#include <sys/stat.h>
28#include <errno.h>
29#include <fcntl.h>
30#include <stdarg.h>
31#include <stdio.h>
32#include <string.h>
33#include <unistd.h>
34#else
35#include <sys/types.h>
36#include <sys/stat.h>
37#include <errno.h>
38#include <fcntl.h>
39#include <io.h>
40#include <stdarg.h>
41#include <stdio.h>
42#include <string.h>
43
44# define O_RDONLY _O_RDONLY
45# define S_ISREG(x) ((x) & _S_IFREG)
46#endif
47
48#include "lwip/timers.h"
49#include "lwip/udp.h"
50
51#include <iprt/string.h>
52
53struct xfer {
54 struct udp_pcb *pcb;
55 int fd;
56 unsigned int ack;
57 struct pbuf *pbuf;
58
59 struct pbuf *oack;
60
61 int rexmit;
62
63 ipX_addr_t peer_ip;
64 u16_t peer_port;
65
66 char *filename;
67 int octet;
68
69 /* options */
70 unsigned int blksize;
71 int blksize_from_opt;
72
73 unsigned int timeout;
74 int timeout_from_opt;
75
76 off_t tsize;
77 int tsize_from_opt;
78};
79
80struct tftpd {
81 struct udp_pcb *pcb;
82 char *root;
83
84#define TFTP_MAX_XFERS 3
85 struct xfer xfers[TFTP_MAX_XFERS];
86};
87
88struct tftp_option {
89 const char *name;
90 int (*getopt)(struct xfer *, const char *);
91 int (*ackopt)(struct xfer *, char **, size_t *);
92};
93
94
95static void tftpd_recv(void *, struct udp_pcb *, struct pbuf *, ip_addr_t *, u16_t);
96
97static void tftpd_rrq(struct pbuf *, ip_addr_t *, u16_t);
98
99static void tftp_xfer_recv(void *, struct udp_pcb *, struct pbuf *, ip_addr_t *, u16_t);
100
101static void tftp_recv_ack(struct xfer *, u16_t);
102static void tftp_fillbuf(struct xfer *);
103static void tftp_send(struct xfer *);
104static void tftp_timeout(void *);
105
106static struct xfer *tftp_xfer_alloc(ip_addr_t *, u16_t);
107static int tftp_xfer_create_pcb(struct xfer *);
108static void tftp_xfer_free(struct xfer *);
109
110static int tftp_parse_filename(struct xfer *, char **, size_t *);
111static int tftp_parse_mode(struct xfer *, char **, size_t *);
112static int tftp_parse_option(struct xfer *, char **, size_t *);
113
114static int tftp_opt_blksize(struct xfer *, const char *);
115static int tftp_opt_timeout(struct xfer *, const char *);
116static int tftp_opt_tsize(struct xfer *, const char *);
117
118static char *tftp_getstr(struct xfer *, const char *, char **, size_t *);
119
120static int tftp_ack_blksize(struct xfer *, char **, size_t *);
121static int tftp_ack_timeout(struct xfer *, char **, size_t *);
122static int tftp_ack_tsize(struct xfer *, char **, size_t *);
123
124static int tftp_add_oack(char **, size_t *, const char *, const char *, ...) __attribute__((format(printf, 4, 5)));
125
126static ssize_t tftp_strnlen(char *, size_t);
127
128static int tftp_internal_error(struct xfer *);
129static int tftp_error(struct xfer *, u16_t, const char *, ...) __attribute__((format(printf, 3, 4)));
130static void tftpd_error(ip_addr_t *, u16_t, u16_t, const char *, ...) __attribute__((format(printf, 4, 5)));
131static struct pbuf *tftp_verror(u16_t, const char *, va_list);
132
133
134/* const */ int report_transient_errors = 1;
135static struct tftpd tftpd;
136
137static struct tftp_option tftp_options[] = {
138 { "blksize", tftp_opt_blksize, tftp_ack_blksize }, /* RFC 2348 */
139 { "timeout", tftp_opt_timeout, tftp_ack_timeout }, /* RFC 2349 */
140 { "tsize", tftp_opt_tsize, tftp_ack_tsize }, /* RFC 2349 */
141 { NULL, NULL, NULL }
142};
143
144
145err_t
146tftpd_init(struct netif *proxy_netif, const char *tftproot)
147{
148 size_t len;
149 err_t error;
150
151 tftpd.root = strdup(tftproot);
152 if (tftpd.root == NULL) {
153 DPRINTF0(("%s: failed to allocate tftpd.root\n", __func__));
154 return ERR_MEM;
155 }
156
157 len = strlen(tftproot);
158 if (tftpd.root[len - 1] == '/') {
159 tftpd.root[len - 1] = '\0';
160 }
161
162 tftpd.pcb = udp_new();
163 if (tftpd.pcb == NULL) {
164 DPRINTF0(("%s: failed to allocate PCB\n", __func__));
165 return ERR_MEM;
166 }
167
168 udp_recv(tftpd.pcb, tftpd_recv, NULL);
169
170 error = udp_bind(tftpd.pcb, &proxy_netif->ip_addr, TFTP_SERVER_PORT);
171 if (error != ERR_OK) {
172 DPRINTF0(("%s: failed to bind PCB\n", __func__));
173 return error;
174 }
175
176 return ERR_OK;
177}
178
179
180static void
181tftpd_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p,
182 ip_addr_t *addr, u16_t port)
183{
184 u16_t op;
185
186 LWIP_ASSERT1(pcb == tftpd.pcb);
187
188 LWIP_UNUSED_ARG(pcb); /* only in assert */
189 LWIP_UNUSED_ARG(arg);
190
191 if (pbuf_clen(p) > 1) { /* this code assumes contiguous aligned payload */
192 pbuf_free(p);
193 return;
194 }
195
196 op = ntohs(*(u16_t *)p->payload);
197 switch (op) {
198 case TFTP_RRQ:
199 tftpd_rrq(p, addr, port);
200 break;
201
202 case TFTP_WRQ:
203 tftpd_error(addr, port, TFTP_EACCESS, "Permission denied");
204 break;
205
206 default:
207 tftpd_error(addr, port, TFTP_ENOSYS, "Bad opcode %d", op);
208 break;
209 }
210
211 pbuf_free(p);
212}
213
214
215/**
216 * Parse Read Request packet and start new transfer.
217 */
218static void
219tftpd_rrq(struct pbuf *p, ip_addr_t *addr, u16_t port)
220{
221 struct xfer *xfer;
222 char *s;
223 size_t len;
224 int has_options;
225 int status;
226
227 xfer = tftp_xfer_alloc(addr, port);
228 if (xfer == NULL) {
229 return;
230 }
231
232 /* skip opcode */
233 s = (char *)p->payload + sizeof(u16_t);
234 len = p->len - sizeof(u16_t);
235
236
237 /*
238 * Parse RRQ:
239 * filename, mode, [opt1, value1, [...] ]
240 */
241 status = tftp_parse_filename(xfer, &s, &len);
242 if (status < 0) {
243 goto terminate;
244 }
245
246 status = tftp_parse_mode(xfer, &s, &len);
247 if (status < 0) {
248 goto terminate;
249 }
250
251 has_options = 0;
252 while (len > 0) {
253 status = tftp_parse_option(xfer, &s, &len);
254 if (status < 0) {
255 goto terminate;
256 }
257 has_options += status;
258 }
259
260
261 /*
262 * Create OACK packet if necessary.
263 */
264 if (has_options) {
265 xfer->oack = pbuf_alloc(PBUF_RAW, 128, PBUF_RAM);
266 if (xfer->oack != NULL) {
267 struct tftp_option *o;
268
269 ((u16_t *)xfer->oack->payload)[0] = PP_HTONS(TFTP_OACK);
270
271 s = (char *)xfer->oack->payload + sizeof(u16_t);
272 len = xfer->oack->len - sizeof(u16_t);
273
274 for (o = &tftp_options[0]; o->name != NULL; ++o) {
275 status = (*o->ackopt)(xfer, &s, &len);
276 if (status < 0) {
277 pbuf_free(xfer->oack);
278 xfer->oack = NULL;
279 break;
280 }
281 }
282
283 if (xfer->oack != NULL) {
284 pbuf_realloc(xfer->oack, xfer->oack->len - len);
285 }
286 }
287 }
288
289
290 /*
291 * Create static pbuf that will be used for all data packets.
292 */
293 xfer->pbuf = pbuf_alloc(PBUF_RAW, xfer->blksize + 4, PBUF_RAM);
294 if (xfer->pbuf == NULL) {
295 tftp_internal_error(xfer);
296 goto terminate;
297 }
298 ((u16_t *)xfer->pbuf->payload)[0] = PP_HTONS(TFTP_DATA);
299
300
301 /*
302 * Finally, create PCB. Before this point any error was reported
303 * from the server port (see tftp_error() for the reason).
304 */
305 status = tftp_xfer_create_pcb(xfer);
306 if (status < 0) {
307 goto terminate;
308 }
309
310 if (xfer->oack) {
311 tftp_send(xfer);
312 }
313 else {
314 /* trigger send of the first data packet */
315 tftp_recv_ack(xfer, 0);
316 }
317
318 return;
319
320 terminate:
321 DPRINTF(("%s: terminated", __func__));
322 tftp_xfer_free(xfer);
323}
324
325
326static void
327tftp_xfer_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p,
328 ip_addr_t *addr, u16_t port)
329{
330 struct xfer *xfer = (struct xfer *)arg;
331 u16_t op;
332
333 LWIP_UNUSED_ARG(pcb); /* assert only */
334 LWIP_UNUSED_ARG(addr);
335 LWIP_UNUSED_ARG(port);
336
337 LWIP_ASSERT1(xfer->pcb == pcb);
338
339 if (p->len < 2) {
340 tftp_error(xfer, TFTP_ENOSYS, "Short packet");
341 tftp_xfer_free(xfer);
342 pbuf_free(p);
343 return;
344 }
345
346 op = ntohs(*(u16_t *)p->payload);
347 if (op == TFTP_ACK) {
348 u16_t ack;
349
350 if (p->len < 4) {
351 tftp_error(xfer, TFTP_ENOSYS, "Short packet");
352 tftp_xfer_free(xfer);
353 pbuf_free(p);
354 return;
355 }
356
357 ack = ntohs(((u16_t *)p->payload)[1]);
358 tftp_recv_ack(xfer, ack);
359 }
360 else if (op == TFTP_ERROR) {
361 tftp_xfer_free(xfer);
362 }
363 else {
364 tftp_error(xfer, TFTP_ENOSYS, "Unexpected opcode %d", op);
365 tftp_xfer_free(xfer);
366 }
367
368 pbuf_free(p);
369}
370
371
372static void
373tftp_recv_ack(struct xfer *xfer, u16_t ack)
374{
375 if (ack != (u16_t)xfer->ack) {
376 DPRINTF2(("%s: expect %u (%u), got %u\n",
377 __func__, (u16_t)xfer->ack, xfer->ack, ack));
378 return;
379 }
380
381 sys_untimeout(tftp_timeout, xfer);
382 xfer->rexmit = 0;
383
384 if (xfer->pbuf->len < xfer->blksize) {
385 DPRINTF(("%s: got final ack %u (%u)\n",
386 __func__, (u16_t)xfer->ack, xfer->ack));
387 tftp_xfer_free(xfer);
388 return;
389 }
390
391 if (xfer->oack != NULL) {
392 pbuf_free(xfer->oack);
393 xfer->oack = NULL;
394 }
395
396 ++xfer->ack;
397 tftp_fillbuf(xfer);
398 tftp_send(xfer);
399}
400
401
402static void
403tftp_send(struct xfer *xfer)
404{
405 struct pbuf *pbuf;
406
407 pbuf = xfer->oack ? xfer->oack : xfer->pbuf;
408 udp_send(xfer->pcb, pbuf);
409 sys_timeout(xfer->timeout * 1000, tftp_timeout, xfer);
410}
411
412
413static void
414tftp_timeout(void *arg)
415{
416 struct xfer *xfer = (struct xfer *)arg;
417 int maxrexmit;
418
419 maxrexmit = xfer->timeout < 60 ? 5 : 3;
420 if (++xfer->rexmit < maxrexmit) {
421 tftp_send(xfer);
422 }
423 else {
424 tftp_xfer_free(xfer);
425 }
426}
427
428
429static void
430tftp_fillbuf(struct xfer *xfer)
431{
432 ssize_t nread;
433
434 DPRINTF2(("%s: reading block %u\n", __func__, xfer->ack));
435
436 ((u16_t *)xfer->pbuf->payload)[1] = htons(xfer->ack);
437 nread = read(xfer->fd, (char *)xfer->pbuf->payload + 4, xfer->blksize);
438
439 if (nread < 0) {
440 tftp_error(xfer, TFTP_EUNDEF, "Read failed");
441 return;
442 }
443
444 pbuf_realloc(xfer->pbuf, nread + 4);
445}
446
447
448/**
449 * Find a free transfer slot (without a pcb). Record peer's IP
450 * address and port, but don't allocate a pcb yet.
451 *
452 * We delay creation of the pcb in response to the original request
453 * until the request is verified and accepted. This makes using
454 * tcpdump(8) easier, since tcpdump does not track TFTP transfers, so
455 * an error reply from a new pcb is not recognized as such and is not
456 * decoded as TFTP (see tftp_error()).
457 *
458 * If the request is rejected, the pcb remains NULL and the transfer
459 * slot remains unallocated. Since all TFTP processing happens on the
460 * lwIP thread, there's no concurrent processing, so we don't need to
461 * "lock" the transfer slot until the pcb is allocated.
462 */
463static struct xfer *
464tftp_xfer_alloc(ip_addr_t *addr, u16_t port)
465{
466 struct xfer *xfer;
467 int i;
468
469 /* Find free xfer slot */
470 xfer = NULL;
471 for (i = 0; i < TFTP_MAX_XFERS; ++i) {
472 if (tftpd.xfers[i].pcb == NULL) {
473 xfer = &tftpd.xfers[i];
474 break;
475 }
476 }
477
478 if (xfer == NULL) {
479 if (report_transient_errors) {
480 tftpd_error(addr, port, TFTP_EUNDEF,
481 "Maximum number of simultaneous connections exceeded");
482 }
483 return NULL;
484 }
485
486 ipX_addr_copy(0, xfer->peer_ip, *ip_2_ipX(addr));
487 xfer->peer_port = port;
488
489 xfer->ack = 0;
490
491 xfer->pbuf = NULL;
492 xfer->oack = NULL;
493 xfer->rexmit = 0;
494
495 xfer->blksize = 512;
496 xfer->blksize_from_opt = 0;
497
498 xfer->timeout = 1;
499 xfer->timeout_from_opt = 0;
500
501 xfer->tsize = -1;
502 xfer->tsize_from_opt = 0;
503
504 return xfer;
505}
506
507
508static int
509tftp_xfer_create_pcb(struct xfer *xfer)
510{
511 struct udp_pcb *pcb;
512 err_t error;
513
514 pcb = udp_new();
515
516 /* Bind */
517 if (pcb != NULL) {
518 error = udp_bind(pcb, ipX_2_ip(&tftpd.pcb->local_ip), 0);
519 if (error != ERR_OK) {
520 udp_remove(pcb);
521 pcb = NULL;
522 }
523 }
524
525 /* Connect */
526 if (pcb != NULL) {
527 error = udp_connect(pcb, ipX_2_ip(&xfer->peer_ip), xfer->peer_port);
528 if (error != ERR_OK) {
529 udp_remove(pcb);
530 pcb = NULL;
531 }
532 }
533
534 if (pcb == NULL) {
535 if (report_transient_errors) {
536 tftp_error(xfer, TFTP_EUNDEF, "Failed to create connection");
537 }
538 return -1;
539 }
540
541 xfer->pcb = pcb;
542 udp_recv(xfer->pcb, tftp_xfer_recv, xfer);
543
544 return 0;
545}
546
547
548static void
549tftp_xfer_free(struct xfer *xfer)
550{
551 sys_untimeout(tftp_timeout, xfer);
552
553 if (xfer->pcb != NULL) {
554 udp_remove(xfer->pcb);
555 xfer->pcb = NULL;
556 }
557
558 if (xfer->fd > 0) {
559 close(xfer->fd);
560 xfer->fd = -1;
561 }
562
563 if (xfer->oack != NULL) {
564 pbuf_free(xfer->oack);
565 xfer->oack = NULL;
566 }
567
568 if (xfer->pbuf != NULL) {
569 pbuf_free(xfer->pbuf);
570 xfer->pbuf = NULL;
571 }
572
573 if (xfer->filename != NULL) {
574 free(xfer->filename);
575 xfer->filename = NULL;
576 }
577}
578
579
580static int
581tftp_parse_filename(struct xfer *xfer, char **ps, size_t *plen)
582{
583 const char *filename;
584 struct stat st;
585 char *pathname;
586 char *s;
587 size_t len;
588 int status;
589
590 filename = tftp_getstr(xfer, "filename", ps, plen);
591 if (filename == NULL) {
592 return -1;
593 }
594
595 DPRINTF(("%s: requested file name: %s\n", __func__, filename));
596 xfer->filename = strdup(filename);
597 if (xfer->filename == NULL) {
598 return tftp_internal_error(xfer);
599 }
600
601 /* replace backslashes with forward slashes */
602 s = xfer->filename;
603 while ((s = strchr(s, '\\')) != NULL) {
604 *s++ = '/';
605 }
606
607 /* deny attempts to break out of tftp dir */
608 if (strncmp(xfer->filename, "../", 3) == 0
609 || strstr(xfer->filename, "/../") != NULL)
610 {
611 return tftp_error(xfer, TFTP_ENOENT, "Permission denied");
612 }
613
614 len = strlen(tftpd.root) + 1 /*slash*/ + strlen(xfer->filename) + 1 /*nul*/;
615 pathname = (char *)malloc(len);
616 if (pathname == NULL) {
617 return tftp_internal_error(xfer);
618 }
619
620 status = RTStrPrintf(pathname, len, "%s/%s", tftpd.root, xfer->filename);
621 if (status < 0) {
622 return tftp_internal_error(xfer);
623 }
624
625 DPRINTF(("%s: full pathname: %s\n", __func__, pathname));
626 xfer->fd = open(pathname, O_RDONLY);
627 if (xfer->fd < 0) {
628 if (errno == EPERM) {
629 return tftp_error(xfer, TFTP_ENOENT, "Permission denied");
630 }
631 else {
632 return tftp_error(xfer, TFTP_ENOENT, "File not found");
633 }
634 }
635
636 status = fstat(xfer->fd, &st);
637 if (status < 0) {
638 return tftp_internal_error(xfer);
639 }
640
641 if (!S_ISREG(st.st_mode)) {
642 return tftp_error(xfer, TFTP_ENOENT, "File not found");
643 }
644
645 xfer->tsize = st.st_size;
646 return 0;
647}
648
649
650static int
651tftp_parse_mode(struct xfer *xfer, char **ps, size_t *plen)
652{
653 const char *modename;
654
655 modename = tftp_getstr(xfer, "mode", ps, plen);
656 if (modename == NULL) {
657 return -1;
658 }
659
660 if (RTStrICmp(modename, "octet") == 0) {
661 xfer->octet = 1;
662 }
663 else if (RTStrICmp(modename, "netascii") == 0) {
664 xfer->octet = 0;
665 /* XXX: not (yet?) */
666 return tftp_error(xfer, TFTP_ENOSYS, "Mode \"netascii\" not supported");
667 }
668 else if (RTStrICmp(modename, "mail") == 0) {
669 return tftp_error(xfer, TFTP_ENOSYS, "Mode \"mail\" not supported");
670 }
671 else {
672 return tftp_error(xfer, TFTP_ENOSYS, "Unknown mode \"%s\"", modename);
673 }
674
675 return 0;
676}
677
678
679static int
680tftp_parse_option(struct xfer *xfer, char **ps, size_t *plen)
681{
682 const char *opt;
683 const char *val;
684 struct tftp_option *o;
685
686 opt = tftp_getstr(xfer, "option name", ps, plen);
687 if (opt == NULL) {
688 return -1;
689 }
690
691 if (*plen == 0) {
692 return tftp_error(xfer, TFTP_EUNDEF, "Missing option value");
693 }
694
695 val = tftp_getstr(xfer, "option value", ps, plen);
696 if (val == NULL) {
697 return -1;
698 }
699
700 /* handle option if known, ignore otherwise */
701 for (o = &tftp_options[0]; o->name != NULL; ++o) {
702 if (RTStrICmp(o->name, opt) == 0) {
703 return (*o->getopt)(xfer, val);
704 }
705 }
706
707 return 0; /* unknown option */
708}
709
710
711static int
712tftp_opt_blksize(struct xfer *xfer, const char *optval)
713{
714 char *end;
715 long blksize;
716
717 errno = 0;
718 blksize = strtol(optval, &end, 10);
719 if (errno != 0 || *end != '\0') {
720 return 0;
721 }
722
723 if (blksize < 8) {
724 return 0;
725 }
726
727 if (blksize > 1428) { /* exceeds ethernet mtu */
728 blksize = 1428;
729 }
730
731 xfer->blksize = blksize;
732 xfer->blksize_from_opt = 1;
733 return 1;
734}
735
736
737static int
738tftp_opt_timeout(struct xfer *xfer, const char *optval)
739{
740 LWIP_UNUSED_ARG(xfer);
741 LWIP_UNUSED_ARG(optval);
742 return 0;
743}
744
745
746static int
747tftp_opt_tsize(struct xfer *xfer, const char *optval)
748{
749 LWIP_UNUSED_ARG(optval); /* must be "0", but we don't check it */
750
751 if (xfer->tsize < 0) {
752 return 0;
753 }
754
755 xfer->tsize_from_opt = 1;
756 return 1;
757}
758
759
760static char *
761tftp_getstr(struct xfer *xfer, const char *msg, char **ps, size_t *plen)
762{
763 char *s;
764 ssize_t slen;
765
766 s = *ps;
767 slen = tftp_strnlen(s, *plen);
768 if (slen < 0) {
769 tftp_error(xfer, TFTP_EUNDEF, "Unterminated %s", msg);
770 return NULL;
771 }
772
773 *ps += slen + 1;
774 *plen -= slen + 1;
775
776 return s;
777}
778
779
780static int
781tftp_ack_blksize(struct xfer *xfer, char **ps, size_t *plen)
782{
783 if (!xfer->blksize_from_opt) {
784 return 0;
785 }
786
787 return tftp_add_oack(ps, plen, "blksize", "%u", xfer->blksize);
788}
789
790
791static int
792tftp_ack_timeout(struct xfer *xfer, char **ps, size_t *plen)
793{
794 if (!xfer->timeout_from_opt) {
795 return 0;
796 }
797
798 return tftp_add_oack(ps, plen, "timeout", "%u", xfer->timeout);
799}
800
801
802static int
803tftp_ack_tsize(struct xfer *xfer, char **ps, size_t *plen)
804{
805 if (!xfer->tsize_from_opt) {
806 return 0;
807 }
808
809 LWIP_ASSERT1(xfer->tsize >= 0);
810 return tftp_add_oack(ps, plen, "tsize",
811 /* XXX: FIXME: want 64 bit */
812 "%lu", (unsigned long)xfer->tsize);
813}
814
815
816static int
817tftp_add_oack(char **ps, size_t *plen,
818 const char *optname, const char *fmt, ...)
819{
820 va_list ap;
821 int sz;
822
823 sz = RTStrPrintf(*ps, *plen, "%s", optname);
824 if (sz < 0 || (size_t)sz >= *plen) {
825 return -1;
826 }
827
828 ++sz; /* for nul byte */
829 *ps += sz;
830 *plen -= sz;
831
832 va_start(ap, fmt);
833 sz = vsnprintf(*ps, *plen, fmt, ap);
834 va_end(ap);
835 if (sz < 0 || (size_t)sz >= *plen) {
836 return -1;
837 }
838
839 ++sz; /* for nul byte */
840 *ps += sz;
841 *plen -= sz;
842
843 return 0;
844}
845
846
847static ssize_t
848tftp_strnlen(char *buf, size_t bufsize)
849{
850 void *end;
851
852 end = memchr(buf, '\0', bufsize);
853 if (end == NULL) {
854 return -1;
855 }
856
857 return (char *)end - buf;
858}
859
860
861static int
862tftp_internal_error(struct xfer *xfer)
863{
864 if (report_transient_errors) {
865 tftp_error(xfer, TFTP_EUNDEF, "Internal error");
866 }
867 return -1;
868}
869
870
871/**
872 * Send an error packet to the peer.
873 *
874 * PCB may not be created yet in which case send the error packet from
875 * the TFTP server port (*).
876 *
877 * (*) We delay creation of the PCB in response to the original
878 * request until the request is verified and accepted. This makes
879 * using tcpdump(8) easier, since tcpdump does not track TFTP
880 * transfers, so an error reply from a new PCB is not recognized as
881 * such and is not decoded as TFTP.
882 *
883 * Always returns -1 for callers to reuse.
884 */
885static int
886tftp_error(struct xfer *xfer, u16_t error, const char *fmt, ...)
887{
888 va_list ap;
889 struct pbuf *q;
890
891 LWIP_ASSERT1(xfer != NULL);
892
893 va_start(ap, fmt);
894 q = tftp_verror(error, fmt, ap);
895 va_end(ap);
896
897 if (q == NULL) {
898 return -1;
899 }
900
901 if (xfer->pcb != NULL) {
902 udp_send(xfer->pcb, q);
903 }
904 else {
905 udp_sendto(tftpd.pcb, q, ipX_2_ip(&xfer->peer_ip), xfer->peer_port);
906 }
907
908 pbuf_free(q);
909 return -1;
910}
911
912
913/**
914 * Send an error packet from TFTP server port to the specified peer.
915 */
916static void
917tftpd_error(ip_addr_t *addr, u16_t port, u16_t error, const char *fmt, ...)
918{
919 va_list ap;
920 struct pbuf *q;
921
922 va_start(ap, fmt);
923 q = tftp_verror(error, fmt, ap);
924 va_end(ap);
925
926 if (q != NULL) {
927 udp_sendto(tftpd.pcb, q, addr, port);
928 pbuf_free(q);
929 }
930}
931
932
933/**
934 * Create ERROR pbuf with formatted error message.
935 */
936static struct pbuf *
937tftp_verror(u16_t error, const char *fmt, va_list ap)
938{
939 struct tftp_error {
940 u16_t opcode; /* TFTP_ERROR */
941 u16_t errcode;
942 char errmsg[512];
943 };
944
945 struct pbuf *p;
946 struct tftp_error *errpkt;
947 int msgsz;
948
949 p = pbuf_alloc(PBUF_TRANSPORT, sizeof(*errpkt), PBUF_RAM);
950 if (p == NULL) {
951 return NULL;
952 }
953
954 errpkt = (struct tftp_error *)p->payload;
955 errpkt->opcode = PP_HTONS(TFTP_ERROR);
956 errpkt->errcode = htons(error);
957
958 msgsz = vsnprintf(errpkt->errmsg, sizeof(errpkt->errmsg), fmt, ap);
959 if (msgsz < 0) {
960 errpkt->errmsg[0] = '\0';
961 msgsz = 1;
962 }
963 else if ((size_t)msgsz < sizeof(errpkt->errmsg)) {
964 ++msgsz; /* for nul byte */
965 }
966 else {
967 msgsz = sizeof(errpkt->errmsg); /* truncated, includes nul byte */
968 }
969
970 pbuf_realloc(p, sizeof(*errpkt) - sizeof(errpkt->errmsg) + msgsz);
971 return p;
972}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette