blob: d6f35637d7d059e5f55875d1cf27c81749e54c68 [file] [log] [blame]
Simon Kelley2a8710a2020-01-05 16:40:06 +00001/* dnsmasq is Copyright (c) 2000-2020 Simon Kelley
Simon Kelley832af0b2007-01-21 20:01:28 +00002
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
Simon Kelley824af852008-02-12 20:43:05 +00005 the Free Software Foundation; version 2 dated June, 1991, or
6 (at your option) version 3 dated 29 June, 2007.
7
Simon Kelley832af0b2007-01-21 20:01:28 +00008 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
Simon Kelley824af852008-02-12 20:43:05 +000012
Simon Kelley73a08a22009-02-05 20:28:08 +000013 You should have received a copy of the GNU General Public License
14 along with this program. If not, see <http://www.gnu.org/licenses/>.
Simon Kelley832af0b2007-01-21 20:01:28 +000015*/
16
17#include "dnsmasq.h"
18
19#ifdef HAVE_TFTP
20
Simon Kelley66f62652020-01-05 16:21:24 +000021static void handle_tftp(time_t now, struct tftp_transfer *transfer, ssize_t len);
Simon Kelley8bc4cec2012-07-03 21:04:11 +010022static struct tftp_file *check_tftp_fileperm(ssize_t *len, char *prefix);
Simon Kelley832af0b2007-01-21 20:01:28 +000023static void free_transfer(struct tftp_transfer *transfer);
Rosen Penev50a28412017-06-27 22:27:02 +010024static ssize_t tftp_err(int err, char *packet, char *message, char *file);
Simon Kelley1b7ecd12007-02-05 14:57:57 +000025static ssize_t tftp_err_oops(char *packet, char *file);
Simon Kelley832af0b2007-01-21 20:01:28 +000026static ssize_t get_block(char *packet, struct tftp_transfer *transfer);
27static char *next(char **p, char *end);
Simon Kelley42fb8152012-04-20 17:15:01 +010028static void sanitise(char *buf);
Simon Kelley832af0b2007-01-21 20:01:28 +000029
30#define OP_RRQ 1
31#define OP_WRQ 2
32#define OP_DATA 3
33#define OP_ACK 4
34#define OP_ERR 5
35#define OP_OACK 6
36
37#define ERR_NOTDEF 0
38#define ERR_FNF 1
39#define ERR_PERM 2
40#define ERR_FULL 3
41#define ERR_ILL 4
42
Simon Kelley5aabfc72007-08-29 11:24:47 +010043void tftp_request(struct listener *listen, time_t now)
Simon Kelley832af0b2007-01-21 20:01:28 +000044{
45 ssize_t len;
46 char *packet = daemon->packet;
47 char *filename, *mode, *p, *end, *opt;
Simon Kelley28866e92011-02-14 20:19:14 +000048 union mysockaddr addr, peer;
Simon Kelley832af0b2007-01-21 20:01:28 +000049 struct msghdr msg;
Simon Kelley832af0b2007-01-21 20:01:28 +000050 struct iovec iov;
Simon Kelley1f15b812009-10-13 17:49:32 +010051 struct ifreq ifr;
Simon Kelley8bc4cec2012-07-03 21:04:11 +010052 int is_err = 1, if_index = 0, mtu = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +000053 struct iname *tmp;
Simon Kelley66f62652020-01-05 16:21:24 +000054 struct tftp_transfer *transfer = NULL, **up;
Simon Kelley824af852008-02-12 20:43:05 +000055 int port = daemon->start_tftp_port; /* may be zero to use ephemeral port */
56#if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DONT)
Simon Kelley1f15b812009-10-13 17:49:32 +010057 int mtuflag = IP_PMTUDISC_DONT;
Simon Kelley824af852008-02-12 20:43:05 +000058#endif
Simon Kelley8ef5ada2010-06-03 19:42:45 +010059 char namebuff[IF_NAMESIZE];
Simon Kelley52d4abf2012-03-21 21:39:48 +000060 char *name = NULL;
Simon Kelley8ef5ada2010-06-03 19:42:45 +010061 char *prefix = daemon->tftp_prefix;
62 struct tftp_prefix *pref;
Simon Kelleycc921df2019-01-02 22:48:59 +000063 union all_addr addra;
Simon Kelley2329bef2013-12-03 13:41:16 +000064 /* Can always get recvd interface for IPv6 */
65 int check_dest = !option_bool(OPT_NOWILD) || listen->family == AF_INET6;
Simon Kelley832af0b2007-01-21 20:01:28 +000066 union {
67 struct cmsghdr align; /* this ensures alignment */
Simon Kelley28866e92011-02-14 20:19:14 +000068 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
Simon Kelley824af852008-02-12 20:43:05 +000069#if defined(HAVE_LINUX_NETWORK)
Simon Kelley832af0b2007-01-21 20:01:28 +000070 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
Simon Kelley824af852008-02-12 20:43:05 +000071#elif defined(HAVE_SOLARIS_NETWORK)
Simon Kelley936bd822019-10-12 23:29:59 +010072 char control[CMSG_SPACE(sizeof(struct in_addr)) +
73 CMSG_SPACE(sizeof(unsigned int))];
Simon Kelley7622fc02009-06-04 20:32:05 +010074#elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF)
Simon Kelley936bd822019-10-12 23:29:59 +010075 char control[CMSG_SPACE(sizeof(struct in_addr)) +
76 CMSG_SPACE(sizeof(struct sockaddr_dl))];
Simon Kelley832af0b2007-01-21 20:01:28 +000077#endif
78 } control_u;
79
80 msg.msg_controllen = sizeof(control_u);
81 msg.msg_control = control_u.control;
82 msg.msg_flags = 0;
83 msg.msg_name = &peer;
84 msg.msg_namelen = sizeof(peer);
85 msg.msg_iov = &iov;
86 msg.msg_iovlen = 1;
87
88 iov.iov_base = packet;
89 iov.iov_len = daemon->packet_buff_sz;
90
91 /* we overwrote the buffer... */
92 daemon->srv_save = NULL;
93
94 if ((len = recvmsg(listen->tftpfd, &msg, 0)) < 2)
95 return;
Simon Kelley2329bef2013-12-03 13:41:16 +000096
97 /* Can always get recvd interface for IPv6 */
98 if (!check_dest)
Simon Kelley1f15b812009-10-13 17:49:32 +010099 {
Simon Kelley52d4abf2012-03-21 21:39:48 +0000100 if (listen->iface)
101 {
102 addr = listen->iface->addr;
Simon Kelley52d4abf2012-03-21 21:39:48 +0000103 name = listen->iface->name;
Simon Kelleybec366b2016-02-24 22:03:26 +0000104 mtu = listen->iface->mtu;
105 if (daemon->tftp_mtu != 0 && daemon->tftp_mtu < mtu)
106 mtu = daemon->tftp_mtu;
Simon Kelley52d4abf2012-03-21 21:39:48 +0000107 }
108 else
109 {
110 /* we're listening on an address that doesn't appear on an interface,
111 ask the kernel what the socket is bound to */
112 socklen_t tcp_len = sizeof(union mysockaddr);
113 if (getsockname(listen->tftpfd, (struct sockaddr *)&addr, &tcp_len) == -1)
114 return;
115 }
Simon Kelley1f15b812009-10-13 17:49:32 +0100116 }
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000117 else
118 {
Simon Kelley7622fc02009-06-04 20:32:05 +0100119 struct cmsghdr *cmptr;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100120
Simon Kelley28866e92011-02-14 20:19:14 +0000121 if (msg.msg_controllen < sizeof(struct cmsghdr))
122 return;
123
124 addr.sa.sa_family = listen->family;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000125
Simon Kelley832af0b2007-01-21 20:01:28 +0000126#if defined(HAVE_LINUX_NETWORK)
Simon Kelley28866e92011-02-14 20:19:14 +0000127 if (listen->family == AF_INET)
128 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000129 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO)
Simon Kelley28866e92011-02-14 20:19:14 +0000130 {
131 union {
132 unsigned char *c;
133 struct in_pktinfo *p;
134 } p;
135 p.c = CMSG_DATA(cmptr);
136 addr.in.sin_addr = p.p->ipi_spec_dst;
137 if_index = p.p->ipi_ifindex;
138 }
139
140#elif defined(HAVE_SOLARIS_NETWORK)
141 if (listen->family == AF_INET)
142 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000143 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100144 union {
145 unsigned char *c;
Simon Kelley28866e92011-02-14 20:19:14 +0000146 struct in_addr *a;
147 unsigned int *i;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100148 } p;
149 p.c = CMSG_DATA(cmptr);
Simon Kelley28866e92011-02-14 20:19:14 +0000150 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR)
151 addr.in.sin_addr = *(p.a);
152 else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF)
153 if_index = *(p.i);
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000154 }
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000155
Simon Kelley832af0b2007-01-21 20:01:28 +0000156#elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF)
Simon Kelley28866e92011-02-14 20:19:14 +0000157 if (listen->family == AF_INET)
158 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
159 {
160 union {
161 unsigned char *c;
162 struct in_addr *a;
163 struct sockaddr_dl *s;
164 } p;
165 p.c = CMSG_DATA(cmptr);
166 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR)
167 addr.in.sin_addr = *(p.a);
168 else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF)
169 if_index = p.s->sdl_index;
170 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100171
Simon Kelley824af852008-02-12 20:43:05 +0000172#endif
Simon Kelley28866e92011-02-14 20:19:14 +0000173
Simon Kelley28866e92011-02-14 20:19:14 +0000174 if (listen->family == AF_INET6)
175 {
176 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000177 if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo)
Simon Kelley28866e92011-02-14 20:19:14 +0000178 {
179 union {
180 unsigned char *c;
181 struct in6_pktinfo *p;
182 } p;
183 p.c = CMSG_DATA(cmptr);
184
185 addr.in6.sin6_addr = p.p->ipi6_addr;
186 if_index = p.p->ipi6_ifindex;
187 }
188 }
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000189
Simon Kelley28866e92011-02-14 20:19:14 +0000190 if (!indextoname(listen->tftpfd, if_index, namebuff))
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000191 return;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100192
193 name = namebuff;
Simon Kelleye25db1f2013-01-29 22:10:26 +0000194
Simon Kelleycc921df2019-01-02 22:48:59 +0000195 addra.addr4 = addr.in.sin_addr;
Simon Kelley28866e92011-02-14 20:19:14 +0000196
Simon Kelley28866e92011-02-14 20:19:14 +0000197 if (listen->family == AF_INET6)
Simon Kelleycc921df2019-01-02 22:48:59 +0000198 addra.addr6 = addr.in6.sin6_addr;
Simon Kelleye25db1f2013-01-29 22:10:26 +0000199
Simon Kelley2937f8a2013-07-29 19:49:07 +0100200 if (daemon->tftp_interfaces)
Simon Kelley3169daa2012-08-13 17:39:57 +0100201 {
Simon Kelley2937f8a2013-07-29 19:49:07 +0100202 /* dedicated tftp interface list */
203 for (tmp = daemon->tftp_interfaces; tmp; tmp = tmp->next)
204 if (tmp->name && wildcard_match(tmp->name, name))
205 break;
206
207 if (!tmp)
Simon Kelley3169daa2012-08-13 17:39:57 +0100208 return;
209 }
Simon Kelley2937f8a2013-07-29 19:49:07 +0100210 else
211 {
212 /* Do the same as DHCP */
213 if (!iface_check(listen->family, &addra, name, NULL))
214 {
215 if (!option_bool(OPT_CLEVERBIND))
216 enumerate_interfaces(0);
217 if (!loopback_exception(listen->tftpfd, listen->family, &addra, name) &&
Simon Kelleycc921df2019-01-02 22:48:59 +0000218 !label_exception(if_index, listen->family, &addra))
Simon Kelley2937f8a2013-07-29 19:49:07 +0100219 return;
220 }
221
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100222#ifdef HAVE_DHCP
Simon Kelley2937f8a2013-07-29 19:49:07 +0100223 /* allowed interfaces are the same as for DHCP */
224 for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next)
225 if (tmp->name && wildcard_match(tmp->name, name))
226 return;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100227#endif
Simon Kelley2937f8a2013-07-29 19:49:07 +0100228 }
229
Petr Menšík47b45b22018-08-15 18:17:00 +0200230 safe_strncpy(ifr.ifr_name, name, IF_NAMESIZE);
Simon Kelley1f15b812009-10-13 17:49:32 +0100231 if (ioctl(listen->tftpfd, SIOCGIFMTU, &ifr) != -1)
Simon Kelleybec366b2016-02-24 22:03:26 +0000232 {
233 mtu = ifr.ifr_mtu;
234 if (daemon->tftp_mtu != 0 && daemon->tftp_mtu < mtu)
235 mtu = daemon->tftp_mtu;
236 }
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000237 }
Stefan Tomanek7aa970e2015-04-01 17:55:07 +0100238
Simon Kelleybec366b2016-02-24 22:03:26 +0000239 /* Failed to get interface mtu - can use configured value. */
240 if (mtu == 0)
241 mtu = daemon->tftp_mtu;
242
Simon Kelley66f62652020-01-05 16:21:24 +0000243 /* data transfer via server listening socket */
244 if (option_bool(OPT_SINGLE_PORT))
Simon Kelley2ac4cf02020-01-06 23:39:33 +0000245 {
246 int tftp_cnt;
247
248 for (tftp_cnt = 0, transfer = daemon->tftp_trans, up = &daemon->tftp_trans; transfer; up = &transfer->next, transfer = transfer->next)
Simon Kelley66f62652020-01-05 16:21:24 +0000249 {
Simon Kelley2ac4cf02020-01-06 23:39:33 +0000250 tftp_cnt++;
251
252 if (sockaddr_isequal(&peer, &transfer->peer))
Simon Kelley66f62652020-01-05 16:21:24 +0000253 {
Simon Kelley2ac4cf02020-01-06 23:39:33 +0000254 if (ntohs(*((unsigned short *)packet)) == OP_RRQ)
255 {
256 /* Handle repeated RRQ or abandoned transfer from same host and port
257 by unlinking and reusing the struct transfer. */
258 *up = transfer->next;
259 break;
260 }
261 else
262 {
263 handle_tftp(now, transfer, len);
264 return;
265 }
Simon Kelley66f62652020-01-05 16:21:24 +0000266 }
267 }
Simon Kelley2ac4cf02020-01-06 23:39:33 +0000268
269 /* Enforce simultaneous transfer limit. In non-single-port mode
270 this is doene by not listening on the server socket when
271 too many transfers are in progress. */
272 if (!transfer && tftp_cnt >= daemon->tftp_max)
273 return;
274 }
275
Simon Kelley52d4abf2012-03-21 21:39:48 +0000276 if (name)
277 {
278 /* check for per-interface prefix */
279 for (pref = daemon->if_prefix; pref; pref = pref->next)
280 if (strcmp(pref->interface, name) == 0)
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100281 prefix = pref->prefix;
Simon Kelley52d4abf2012-03-21 21:39:48 +0000282 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100283
Simon Kelley28866e92011-02-14 20:19:14 +0000284 if (listen->family == AF_INET)
Simon Kelley7de060b2011-08-26 17:24:52 +0100285 {
286 addr.in.sin_port = htons(port);
287#ifdef HAVE_SOCKADDR_SA_LEN
288 addr.in.sin_len = sizeof(addr.in);
289#endif
290 }
Simon Kelley28866e92011-02-14 20:19:14 +0000291 else
292 {
293 addr.in6.sin6_port = htons(port);
294 addr.in6.sin6_flowinfo = 0;
Simon Kelley7de060b2011-08-26 17:24:52 +0100295 addr.in6.sin6_scope_id = 0;
296#ifdef HAVE_SOCKADDR_SA_LEN
297 addr.in6.sin6_len = sizeof(addr.in6);
298#endif
Simon Kelley28866e92011-02-14 20:19:14 +0000299 }
Simon Kelley28866e92011-02-14 20:19:14 +0000300
Simon Kelley66f62652020-01-05 16:21:24 +0000301 /* May reuse struct transfer from abandoned transfer in single port mode. */
302 if (!transfer && !(transfer = whine_malloc(sizeof(struct tftp_transfer))))
Simon Kelley832af0b2007-01-21 20:01:28 +0000303 return;
304
Simon Kelley66f62652020-01-05 16:21:24 +0000305 if (option_bool(OPT_SINGLE_PORT))
306 transfer->sockfd = listen->tftpfd;
307 else if ((transfer->sockfd = socket(listen->family, SOCK_DGRAM, 0)) == -1)
Simon Kelley832af0b2007-01-21 20:01:28 +0000308 {
309 free(transfer);
310 return;
311 }
312
313 transfer->peer = peer;
Simon Kelley66f62652020-01-05 16:21:24 +0000314 transfer->source = addra;
315 transfer->if_index = if_index;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100316 transfer->timeout = now + 2;
Simon Kelley832af0b2007-01-21 20:01:28 +0000317 transfer->backoff = 1;
318 transfer->block = 1;
319 transfer->blocksize = 512;
Simon Kelley9e038942008-05-30 20:06:34 +0100320 transfer->offset = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000321 transfer->file = NULL;
322 transfer->opt_blocksize = transfer->opt_transize = 0;
Simon Kelley9e038942008-05-30 20:06:34 +0100323 transfer->netascii = transfer->carrylf = 0;
Simon Kelley28866e92011-02-14 20:19:14 +0000324
Simon Kelleyc72daea2012-01-05 21:33:27 +0000325 prettyprint_addr(&peer, daemon->addrbuff);
Simon Kelley28866e92011-02-14 20:19:14 +0000326
Simon Kelley824af852008-02-12 20:43:05 +0000327 /* if we have a nailed-down range, iterate until we find a free one. */
Simon Kelley66f62652020-01-05 16:21:24 +0000328 while (!option_bool(OPT_SINGLE_PORT))
Simon Kelley832af0b2007-01-21 20:01:28 +0000329 {
Simon Kelley7de060b2011-08-26 17:24:52 +0100330 if (bind(transfer->sockfd, &addr.sa, sa_len(&addr)) == -1 ||
Simon Kelley824af852008-02-12 20:43:05 +0000331#if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DONT)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000332 setsockopt(transfer->sockfd, IPPROTO_IP, IP_MTU_DISCOVER, &mtuflag, sizeof(mtuflag)) == -1 ||
Simon Kelley824af852008-02-12 20:43:05 +0000333#endif
334 !fix_fd(transfer->sockfd))
335 {
336 if (errno == EADDRINUSE && daemon->start_tftp_port != 0)
337 {
338 if (++port <= daemon->end_tftp_port)
339 {
Simon Kelley28866e92011-02-14 20:19:14 +0000340 if (listen->family == AF_INET)
341 addr.in.sin_port = htons(port);
Simon Kelley28866e92011-02-14 20:19:14 +0000342 else
Simon Kelleyee875042018-10-23 22:10:17 +0100343 addr.in6.sin6_port = htons(port);
344
Simon Kelley824af852008-02-12 20:43:05 +0000345 continue;
346 }
Simon Kelley7622fc02009-06-04 20:32:05 +0100347 my_syslog(MS_TFTP | LOG_ERR, _("unable to get free port for TFTP"));
Simon Kelley824af852008-02-12 20:43:05 +0000348 }
349 free_transfer(transfer);
350 return;
351 }
352 break;
Simon Kelley832af0b2007-01-21 20:01:28 +0000353 }
Simon Kelley824af852008-02-12 20:43:05 +0000354
Simon Kelley832af0b2007-01-21 20:01:28 +0000355 p = packet + 2;
356 end = packet + len;
Simon Kelley66f62652020-01-05 16:21:24 +0000357
Simon Kelley832af0b2007-01-21 20:01:28 +0000358 if (ntohs(*((unsigned short *)packet)) != OP_RRQ ||
359 !(filename = next(&p, end)) ||
360 !(mode = next(&p, end)) ||
Simon Kelley9e038942008-05-30 20:06:34 +0100361 (strcasecmp(mode, "octet") != 0 && strcasecmp(mode, "netascii") != 0))
Simon Kelley6a69ab52012-04-24 14:42:26 +0100362 {
363 len = tftp_err(ERR_ILL, packet, _("unsupported request from %s"), daemon->addrbuff);
364 is_err = 1;
365 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000366 else
367 {
Simon Kelley9e038942008-05-30 20:06:34 +0100368 if (strcasecmp(mode, "netascii") == 0)
369 transfer->netascii = 1;
370
Simon Kelley832af0b2007-01-21 20:01:28 +0000371 while ((opt = next(&p, end)))
372 {
Simon Kelley77e94da2009-08-31 17:32:17 +0100373 if (strcasecmp(opt, "blksize") == 0)
Simon Kelley832af0b2007-01-21 20:01:28 +0000374 {
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100375 if ((opt = next(&p, end)) && !option_bool(OPT_TFTP_NOBLOCK))
Simon Kelley77e94da2009-08-31 17:32:17 +0100376 {
Simon Kelleyd1377fa2016-03-04 21:32:21 +0000377 /* 32 bytes for IP, UDP and TFTP headers, 52 bytes for IPv6 */
378 int overhead = (listen->family == AF_INET) ? 32 : 52;
Simon Kelley77e94da2009-08-31 17:32:17 +0100379 transfer->blocksize = atoi(opt);
380 if (transfer->blocksize < 1)
381 transfer->blocksize = 1;
382 if (transfer->blocksize > (unsigned)daemon->packet_buff_sz - 4)
383 transfer->blocksize = (unsigned)daemon->packet_buff_sz - 4;
Simon Kelleyd1377fa2016-03-04 21:32:21 +0000384 if (mtu != 0 && transfer->blocksize > (unsigned)mtu - overhead)
385 transfer->blocksize = (unsigned)mtu - overhead;
Simon Kelley77e94da2009-08-31 17:32:17 +0100386 transfer->opt_blocksize = 1;
387 transfer->block = 0;
388 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000389 }
Simon Kelley77e94da2009-08-31 17:32:17 +0100390 else if (strcasecmp(opt, "tsize") == 0 && next(&p, end) && !transfer->netascii)
Simon Kelley832af0b2007-01-21 20:01:28 +0000391 {
392 transfer->opt_transize = 1;
393 transfer->block = 0;
394 }
395 }
396
Simon Kelley1f15b812009-10-13 17:49:32 +0100397 /* cope with backslashes from windows boxen. */
Simon Kelley61ce6002012-04-20 21:28:49 +0100398 for (p = filename; *p; p++)
399 if (*p == '\\')
400 *p = '/';
401 else if (option_bool(OPT_TFTP_LC))
402 *p = tolower(*p);
403
Simon Kelleyf2621c72007-04-29 19:47:21 +0100404 strcpy(daemon->namebuff, "/");
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100405 if (prefix)
Simon Kelley832af0b2007-01-21 20:01:28 +0000406 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100407 if (prefix[0] == '/')
Simon Kelleyf2621c72007-04-29 19:47:21 +0100408 daemon->namebuff[0] = 0;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100409 strncat(daemon->namebuff, prefix, (MAXDNAME-1) - strlen(daemon->namebuff));
410 if (prefix[strlen(prefix)-1] != '/')
Simon Kelley77e94da2009-08-31 17:32:17 +0100411 strncat(daemon->namebuff, "/", (MAXDNAME-1) - strlen(daemon->namebuff));
Simon Kelley5aabfc72007-08-29 11:24:47 +0100412
Floris Bos60704f52017-04-09 22:22:49 +0100413 if (option_bool(OPT_TFTP_APREF_IP))
Simon Kelley5aabfc72007-08-29 11:24:47 +0100414 {
415 size_t oldlen = strlen(daemon->namebuff);
416 struct stat statbuf;
417
Simon Kelleyc72daea2012-01-05 21:33:27 +0000418 strncat(daemon->namebuff, daemon->addrbuff, (MAXDNAME-1) - strlen(daemon->namebuff));
Simon Kelley77e94da2009-08-31 17:32:17 +0100419 strncat(daemon->namebuff, "/", (MAXDNAME-1) - strlen(daemon->namebuff));
Simon Kelley5aabfc72007-08-29 11:24:47 +0100420
421 /* remove unique-directory if it doesn't exist */
422 if (stat(daemon->namebuff, &statbuf) == -1 || !S_ISDIR(statbuf.st_mode))
423 daemon->namebuff[oldlen] = 0;
424 }
Floris Bos503c6092017-04-09 23:07:13 +0100425
Floris Bos60704f52017-04-09 22:22:49 +0100426 if (option_bool(OPT_TFTP_APREF_MAC))
427 {
428 unsigned char *macaddr = NULL;
429 unsigned char macbuf[DHCP_CHADDR_MAX];
Floris Bos503c6092017-04-09 23:07:13 +0100430
Floris Bos60704f52017-04-09 22:22:49 +0100431#ifdef HAVE_DHCP
432 if (daemon->dhcp && peer.sa.sa_family == AF_INET)
433 {
434 /* Check if the client IP is in our lease database */
435 struct dhcp_lease *lease = lease_find_by_addr(peer.in.sin_addr);
436 if (lease && lease->hwaddr_type == ARPHRD_ETHER && lease->hwaddr_len == ETHER_ADDR_LEN)
437 macaddr = lease->hwaddr;
438 }
439#endif
Floris Bos503c6092017-04-09 23:07:13 +0100440
Floris Bos60704f52017-04-09 22:22:49 +0100441 /* If no luck, try to find in ARP table. This only works if client is in same (V)LAN */
442 if (!macaddr && find_mac(&peer, macbuf, 1, now) > 0)
Floris Bos503c6092017-04-09 23:07:13 +0100443 macaddr = macbuf;
444
Floris Bos60704f52017-04-09 22:22:49 +0100445 if (macaddr)
446 {
447 size_t oldlen = strlen(daemon->namebuff);
448 struct stat statbuf;
449
450 snprintf(daemon->namebuff + oldlen, (MAXDNAME-1) - oldlen, "%.2x-%.2x-%.2x-%.2x-%.2x-%.2x/",
451 macaddr[0], macaddr[1], macaddr[2], macaddr[3], macaddr[4], macaddr[5]);
Floris Bos503c6092017-04-09 23:07:13 +0100452
Floris Bos60704f52017-04-09 22:22:49 +0100453 /* remove unique-directory if it doesn't exist */
454 if (stat(daemon->namebuff, &statbuf) == -1 || !S_ISDIR(statbuf.st_mode))
455 daemon->namebuff[oldlen] = 0;
456 }
457 }
Floris Bos503c6092017-04-09 23:07:13 +0100458
Simon Kelleyf2621c72007-04-29 19:47:21 +0100459 /* Absolute pathnames OK if they match prefix */
460 if (filename[0] == '/')
461 {
462 if (strstr(filename, daemon->namebuff) == filename)
463 daemon->namebuff[0] = 0;
464 else
465 filename++;
466 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000467 }
Simon Kelleyf2621c72007-04-29 19:47:21 +0100468 else if (filename[0] == '/')
Simon Kelley832af0b2007-01-21 20:01:28 +0000469 daemon->namebuff[0] = 0;
Simon Kelley77e94da2009-08-31 17:32:17 +0100470 strncat(daemon->namebuff, filename, (MAXDNAME-1) - strlen(daemon->namebuff));
Floris Bos503c6092017-04-09 23:07:13 +0100471
Simon Kelley5aabfc72007-08-29 11:24:47 +0100472 /* check permissions and open file */
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100473 if ((transfer->file = check_tftp_fileperm(&len, prefix)))
Simon Kelley832af0b2007-01-21 20:01:28 +0000474 {
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000475 if ((len = get_block(packet, transfer)) == -1)
476 len = tftp_err_oops(packet, daemon->namebuff);
477 else
478 is_err = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000479 }
480 }
Simon Kelley66f62652020-01-05 16:21:24 +0000481
482 send_from(transfer->sockfd, !option_bool(OPT_SINGLE_PORT), packet, len, &peer, &addra, if_index);
Simon Kelley832af0b2007-01-21 20:01:28 +0000483
484 if (is_err)
485 free_transfer(transfer);
486 else
487 {
Simon Kelley832af0b2007-01-21 20:01:28 +0000488 transfer->next = daemon->tftp_trans;
489 daemon->tftp_trans = transfer;
490 }
491}
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000492
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100493static struct tftp_file *check_tftp_fileperm(ssize_t *len, char *prefix)
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000494{
495 char *packet = daemon->packet, *namebuff = daemon->namebuff;
496 struct tftp_file *file;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100497 struct tftp_transfer *t;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000498 uid_t uid = geteuid();
499 struct stat statbuf;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100500 int fd = -1;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000501
502 /* trick to ban moving out of the subtree */
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100503 if (prefix && strstr(namebuff, "/../"))
Simon Kelley5aabfc72007-08-29 11:24:47 +0100504 goto perm;
505
506 if ((fd = open(namebuff, O_RDONLY)) == -1)
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000507 {
Simon Kelley5aabfc72007-08-29 11:24:47 +0100508 if (errno == ENOENT)
509 {
510 *len = tftp_err(ERR_FNF, packet, _("file %s not found"), namebuff);
511 return NULL;
512 }
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000513 else if (errno == EACCES)
514 goto perm;
515 else
516 goto oops;
517 }
Simon Kelley5aabfc72007-08-29 11:24:47 +0100518
519 /* stat the file descriptor to avoid stat->open races */
520 if (fstat(fd, &statbuf) == -1)
521 goto oops;
522
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000523 /* running as root, must be world-readable */
524 if (uid == 0)
525 {
526 if (!(statbuf.st_mode & S_IROTH))
Simon Kelley5aabfc72007-08-29 11:24:47 +0100527 goto perm;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000528 }
529 /* in secure mode, must be owned by user running dnsmasq */
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100530 else if (option_bool(OPT_TFTP_SECURE) && uid != statbuf.st_uid)
Simon Kelley5aabfc72007-08-29 11:24:47 +0100531 goto perm;
532
Josh Soref730c6742017-02-06 16:14:04 +0000533 /* If we're doing many transfers from the same file, only
Simon Kelley5aabfc72007-08-29 11:24:47 +0100534 open it once this saves lots of file descriptors
535 when mass-booting a big cluster, for instance.
536 Be conservative and only share when inode and name match
537 this keeps error messages sane. */
538 for (t = daemon->tftp_trans; t; t = t->next)
539 if (t->file->dev == statbuf.st_dev &&
540 t->file->inode == statbuf.st_ino &&
541 strcmp(t->file->filename, namebuff) == 0)
542 {
543 close(fd);
544 t->file->refcount++;
545 return t->file;
546 }
547
548 if (!(file = whine_malloc(sizeof(struct tftp_file) + strlen(namebuff) + 1)))
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000549 {
550 errno = ENOMEM;
551 goto oops;
552 }
553
Simon Kelley5aabfc72007-08-29 11:24:47 +0100554 file->fd = fd;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000555 file->size = statbuf.st_size;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100556 file->dev = statbuf.st_dev;
557 file->inode = statbuf.st_ino;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000558 file->refcount = 1;
559 strcpy(file->filename, namebuff);
560 return file;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100561
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000562 perm:
Simon Kelley5aabfc72007-08-29 11:24:47 +0100563 errno = EACCES;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000564 *len = tftp_err(ERR_PERM, packet, _("cannot access %s: %s"), namebuff);
Simon Kelley5aabfc72007-08-29 11:24:47 +0100565 if (fd != -1)
566 close(fd);
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000567 return NULL;
568
Simon Kelley5aabfc72007-08-29 11:24:47 +0100569 oops:
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000570 *len = tftp_err_oops(packet, namebuff);
Simon Kelley5aabfc72007-08-29 11:24:47 +0100571 if (fd != -1)
572 close(fd);
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000573 return NULL;
574}
575
Simon Kelleyb842bc92015-07-12 21:09:11 +0100576void check_tftp_listeners(time_t now)
Simon Kelley832af0b2007-01-21 20:01:28 +0000577{
578 struct tftp_transfer *transfer, *tmp, **up;
Simon Kelley832af0b2007-01-21 20:01:28 +0000579
Simon Kelley66f62652020-01-05 16:21:24 +0000580 /* In single port mode, all packets come via port 69 and tftp_request() */
581 if (!option_bool(OPT_SINGLE_PORT))
582 for (transfer = daemon->tftp_trans; transfer; transfer = transfer->next)
Simon Kelleyb842bc92015-07-12 21:09:11 +0100583 if (poll_check(transfer->sockfd, POLLIN))
Simon Kelley832af0b2007-01-21 20:01:28 +0000584 {
585 /* we overwrote the buffer... */
586 daemon->srv_save = NULL;
Simon Kelley66f62652020-01-05 16:21:24 +0000587 handle_tftp(now, transfer, recv(transfer->sockfd, daemon->packet, daemon->packet_buff_sz, 0));
Simon Kelley832af0b2007-01-21 20:01:28 +0000588 }
Simon Kelley66f62652020-01-05 16:21:24 +0000589
590 for (transfer = daemon->tftp_trans, up = &daemon->tftp_trans; transfer; transfer = tmp)
591 {
592 tmp = transfer->next;
Simon Kelley832af0b2007-01-21 20:01:28 +0000593
594 if (difftime(now, transfer->timeout) >= 0.0)
595 {
596 int endcon = 0;
Simon Kelley66f62652020-01-05 16:21:24 +0000597 ssize_t len;
Simon Kelley832af0b2007-01-21 20:01:28 +0000598
599 /* timeout, retransmit */
Simon Kelley2ac4cf02020-01-06 23:39:33 +0000600 transfer->timeout += 1 + (1<<(transfer->backoff/2));
Simon Kelley832af0b2007-01-21 20:01:28 +0000601
602 /* we overwrote the buffer... */
603 daemon->srv_save = NULL;
604
Simon Kelleyc7a44c42020-01-07 20:30:16 +0000605 if ((len = get_block(daemon->packet, transfer)) == -1)
Simon Kelley832af0b2007-01-21 20:01:28 +0000606 {
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000607 len = tftp_err_oops(daemon->packet, transfer->file->filename);
Simon Kelley832af0b2007-01-21 20:01:28 +0000608 endcon = 1;
609 }
Simon Kelley2ac4cf02020-01-06 23:39:33 +0000610 else if (++transfer->backoff > 7)
Simon Kelley832af0b2007-01-21 20:01:28 +0000611 {
Simon Kelley2ac4cf02020-01-06 23:39:33 +0000612 /* don't complain about timeout when we're awaiting the last
613 ACK, some clients never send it */
Simon Kelley980b14f2020-03-05 18:01:48 +0000614 if ((unsigned)len == transfer->blocksize + 4)
Simon Kelley2ac4cf02020-01-06 23:39:33 +0000615 endcon = 1;
Simon Kelley42fb8152012-04-20 17:15:01 +0100616 len = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000617 }
Simon Kelley42fb8152012-04-20 17:15:01 +0100618
Simon Kelley832af0b2007-01-21 20:01:28 +0000619 if (len != 0)
Simon Kelley66f62652020-01-05 16:21:24 +0000620 send_from(transfer->sockfd, !option_bool(OPT_SINGLE_PORT), daemon->packet, len,
621 &transfer->peer, &transfer->source, transfer->if_index);
622
Simon Kelley832af0b2007-01-21 20:01:28 +0000623 if (endcon || len == 0)
624 {
Simon Kelley42fb8152012-04-20 17:15:01 +0100625 strcpy(daemon->namebuff, transfer->file->filename);
626 sanitise(daemon->namebuff);
Simon Kelley66f62652020-01-05 16:21:24 +0000627 prettyprint_addr(&transfer->peer, daemon->addrbuff);
Simon Kelley42fb8152012-04-20 17:15:01 +0100628 my_syslog(MS_TFTP | LOG_INFO, endcon ? _("failed sending %s to %s") : _("sent %s to %s"), daemon->namebuff, daemon->addrbuff);
Simon Kelley832af0b2007-01-21 20:01:28 +0000629 /* unlink */
630 *up = tmp;
Simon Kelley231d0612012-04-27 13:50:45 +0100631 if (endcon)
632 free_transfer(transfer);
633 else
634 {
635 /* put on queue to be sent to script and deleted */
636 transfer->next = daemon->tftp_done_trans;
637 daemon->tftp_done_trans = transfer;
638 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000639 continue;
640 }
641 }
642
643 up = &transfer->next;
Simon Kelley28866e92011-02-14 20:19:14 +0000644 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000645}
Simon Kelley66f62652020-01-05 16:21:24 +0000646
647/* packet in daemon->packet as this is called. */
648static void handle_tftp(time_t now, struct tftp_transfer *transfer, ssize_t len)
649{
650 struct ack {
651 unsigned short op, block;
652 } *mess = (struct ack *)daemon->packet;
653
654 if (len >= (ssize_t)sizeof(struct ack))
655 {
656 if (ntohs(mess->op) == OP_ACK && ntohs(mess->block) == (unsigned short)transfer->block)
657 {
658 /* Got ack, ensure we take the (re)transmit path */
659 transfer->timeout = now;
660 transfer->backoff = 0;
661 if (transfer->block++ != 0)
662 transfer->offset += transfer->blocksize - transfer->expansion;
663 }
664 else if (ntohs(mess->op) == OP_ERR)
665 {
666 char *p = daemon->packet + sizeof(struct ack);
667 char *end = daemon->packet + len;
668 char *err = next(&p, end);
669
670 prettyprint_addr(&transfer->peer, daemon->addrbuff);
671
672 /* Sanitise error message */
673 if (!err)
674 err = "";
675 else
676 sanitise(err);
677
678 my_syslog(MS_TFTP | LOG_ERR, _("error %d %s received from %s"),
679 (int)ntohs(mess->block), err,
680 daemon->addrbuff);
681
682 /* Got err, ensure we take abort */
683 transfer->timeout = now;
684 transfer->backoff = 100;
685 }
686 }
687}
Simon Kelley832af0b2007-01-21 20:01:28 +0000688
689static void free_transfer(struct tftp_transfer *transfer)
690{
Simon Kelley66f62652020-01-05 16:21:24 +0000691 if (!option_bool(OPT_SINGLE_PORT))
692 close(transfer->sockfd);
693
Simon Kelley832af0b2007-01-21 20:01:28 +0000694 if (transfer->file && (--transfer->file->refcount) == 0)
695 {
696 close(transfer->file->fd);
697 free(transfer->file);
698 }
Simon Kelley66f62652020-01-05 16:21:24 +0000699
Simon Kelley832af0b2007-01-21 20:01:28 +0000700 free(transfer);
701}
702
703static char *next(char **p, char *end)
704{
705 char *ret = *p;
706 size_t len;
707
708 if (*(end-1) != 0 ||
709 *p == end ||
710 (len = strlen(ret)) == 0)
711 return NULL;
712
713 *p += len + 1;
714 return ret;
715}
716
Simon Kelley42fb8152012-04-20 17:15:01 +0100717static void sanitise(char *buf)
718{
Simon Kelley7a14dfe2012-04-20 20:50:42 +0100719 unsigned char *q, *r;
720 for (q = r = (unsigned char *)buf; *r; r++)
Simon Kelley11263a42012-04-27 14:00:55 +0100721 if (isprint((int)*r))
Simon Kelley7a14dfe2012-04-20 20:50:42 +0100722 *(q++) = *r;
723 *q = 0;
Simon Kelley42fb8152012-04-20 17:15:01 +0100724
Simon Kelley7a14dfe2012-04-20 20:50:42 +0100725}
Simon Kelley42fb8152012-04-20 17:15:01 +0100726
Simon Kelley294d36d2016-07-06 21:30:25 +0100727#define MAXMESSAGE 500 /* limit to make packet < 512 bytes and definitely smaller than buffer */
Simon Kelley832af0b2007-01-21 20:01:28 +0000728static ssize_t tftp_err(int err, char *packet, char *message, char *file)
729{
730 struct errmess {
731 unsigned short op, err;
732 char message[];
733 } *mess = (struct errmess *)packet;
Simon Kelley294d36d2016-07-06 21:30:25 +0100734 ssize_t len, ret = 4;
Simon Kelley832af0b2007-01-21 20:01:28 +0000735 char *errstr = strerror(errno);
Simon Kelley42fb8152012-04-20 17:15:01 +0100736
Simon Kelleyfa785732016-07-22 20:56:01 +0100737 memset(packet, 0, daemon->packet_buff_sz);
Simon Kelleyc7a44c42020-01-07 20:30:16 +0000738 sanitise(file);
Simon Kelleyfa785732016-07-22 20:56:01 +0100739
Simon Kelley832af0b2007-01-21 20:01:28 +0000740 mess->op = htons(OP_ERR);
741 mess->err = htons(err);
Simon Kelley294d36d2016-07-06 21:30:25 +0100742 len = snprintf(mess->message, MAXMESSAGE, message, file, errstr);
743 ret += (len < MAXMESSAGE) ? len + 1 : MAXMESSAGE; /* include terminating zero */
744
Simon Kelley316e2732010-01-22 20:16:09 +0000745 my_syslog(MS_TFTP | LOG_ERR, "%s", mess->message);
Simon Kelley832af0b2007-01-21 20:01:28 +0000746
747 return ret;
748}
749
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000750static ssize_t tftp_err_oops(char *packet, char *file)
751{
Simon Kelley42fb8152012-04-20 17:15:01 +0100752 /* May have >1 refs to file, so potentially mangle a copy of the name */
753 strcpy(daemon->namebuff, file);
754 return tftp_err(ERR_NOTDEF, packet, _("cannot read %s: %s"), daemon->namebuff);
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000755}
756
Simon Kelley832af0b2007-01-21 20:01:28 +0000757/* return -1 for error, zero for done. */
758static ssize_t get_block(char *packet, struct tftp_transfer *transfer)
759{
Simon Kelleyfa785732016-07-22 20:56:01 +0100760 memset(packet, 0, daemon->packet_buff_sz);
761
Simon Kelley832af0b2007-01-21 20:01:28 +0000762 if (transfer->block == 0)
763 {
764 /* send OACK */
765 char *p;
766 struct oackmess {
767 unsigned short op;
768 char data[];
769 } *mess = (struct oackmess *)packet;
770
771 p = mess->data;
772 mess->op = htons(OP_OACK);
773 if (transfer->opt_blocksize)
774 {
775 p += (sprintf(p, "blksize") + 1);
Rosen Penevcbd29e52017-06-27 22:29:51 +0100776 p += (sprintf(p, "%u", transfer->blocksize) + 1);
Simon Kelley832af0b2007-01-21 20:01:28 +0000777 }
778 if (transfer->opt_transize)
779 {
780 p += (sprintf(p,"tsize") + 1);
781 p += (sprintf(p, "%u", (unsigned int)transfer->file->size) + 1);
782 }
783
784 return p - packet;
785 }
786 else
787 {
788 /* send data packet */
789 struct datamess {
790 unsigned short op, block;
791 unsigned char data[];
792 } *mess = (struct datamess *)packet;
793
Simon Kelley9e038942008-05-30 20:06:34 +0100794 size_t size = transfer->file->size - transfer->offset;
Simon Kelley832af0b2007-01-21 20:01:28 +0000795
Simon Kelley9e038942008-05-30 20:06:34 +0100796 if (transfer->offset > transfer->file->size)
Simon Kelley832af0b2007-01-21 20:01:28 +0000797 return 0; /* finished */
798
799 if (size > transfer->blocksize)
800 size = transfer->blocksize;
801
Simon Kelley832af0b2007-01-21 20:01:28 +0000802 mess->op = htons(OP_DATA);
803 mess->block = htons((unsigned short)(transfer->block));
804
Simon Kelley9e038942008-05-30 20:06:34 +0100805 if (lseek(transfer->file->fd, transfer->offset, SEEK_SET) == (off_t)-1 ||
806 !read_write(transfer->file->fd, mess->data, size, 1))
Simon Kelley832af0b2007-01-21 20:01:28 +0000807 return -1;
Simon Kelley9e038942008-05-30 20:06:34 +0100808
809 transfer->expansion = 0;
810
811 /* Map '\n' to CR-LF in netascii mode */
812 if (transfer->netascii)
813 {
814 size_t i;
815 int newcarrylf;
816
817 for (i = 0, newcarrylf = 0; i < size; i++)
818 if (mess->data[i] == '\n' && ( i != 0 || !transfer->carrylf))
819 {
Simon Kelley7de060b2011-08-26 17:24:52 +0100820 transfer->expansion++;
821
822 if (size != transfer->blocksize)
Simon Kelley9e038942008-05-30 20:06:34 +0100823 size++; /* room in this block */
Simon Kelley7de060b2011-08-26 17:24:52 +0100824 else if (i == size - 1)
825 newcarrylf = 1; /* don't expand LF again if it moves to the next block */
826
Simon Kelley9e038942008-05-30 20:06:34 +0100827 /* make space and insert CR */
828 memmove(&mess->data[i+1], &mess->data[i], size - (i + 1));
829 mess->data[i] = '\r';
830
831 i++;
832 }
833 transfer->carrylf = newcarrylf;
834
835 }
836
837 return size + 4;
Simon Kelley832af0b2007-01-21 20:01:28 +0000838 }
839}
840
Simon Kelleya9530962012-03-20 22:07:35 +0000841
842int do_tftp_script_run(void)
843{
844 struct tftp_transfer *transfer;
845
846 if ((transfer = daemon->tftp_done_trans))
847 {
848 daemon->tftp_done_trans = transfer->next;
849#ifdef HAVE_SCRIPT
850 queue_tftp(transfer->file->size, transfer->file->filename, &transfer->peer);
851#endif
852 free_transfer(transfer);
853 return 1;
854 }
855
856 return 0;
857}
Simon Kelley832af0b2007-01-21 20:01:28 +0000858#endif