blob: a5544727aeee333cbdcc4c08d17482d5c02d321e [file] [log] [blame]
Simon Kelley28866e92011-02-14 20:19:14 +00001/* dnsmasq is Copyright (c) 2000-2011 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 Kelley8ef5ada2010-06-03 19:42:45 +010021static struct tftp_file *check_tftp_fileperm(ssize_t *len, char *prefix, int special);
Simon Kelley832af0b2007-01-21 20:01:28 +000022static void free_transfer(struct tftp_transfer *transfer);
23static ssize_t tftp_err(int err, char *packet, char *mess, char *file);
Simon Kelley1b7ecd12007-02-05 14:57:57 +000024static ssize_t tftp_err_oops(char *packet, char *file);
Simon Kelley832af0b2007-01-21 20:01:28 +000025static ssize_t get_block(char *packet, struct tftp_transfer *transfer);
26static char *next(char **p, char *end);
27
28#define OP_RRQ 1
29#define OP_WRQ 2
30#define OP_DATA 3
31#define OP_ACK 4
32#define OP_ERR 5
33#define OP_OACK 6
34
35#define ERR_NOTDEF 0
36#define ERR_FNF 1
37#define ERR_PERM 2
38#define ERR_FULL 3
39#define ERR_ILL 4
40
Simon Kelley5aabfc72007-08-29 11:24:47 +010041void tftp_request(struct listener *listen, time_t now)
Simon Kelley832af0b2007-01-21 20:01:28 +000042{
43 ssize_t len;
44 char *packet = daemon->packet;
45 char *filename, *mode, *p, *end, *opt;
Simon Kelley28866e92011-02-14 20:19:14 +000046 union mysockaddr addr, peer;
Simon Kelley832af0b2007-01-21 20:01:28 +000047 struct msghdr msg;
Simon Kelley832af0b2007-01-21 20:01:28 +000048 struct iovec iov;
Simon Kelley1f15b812009-10-13 17:49:32 +010049 struct ifreq ifr;
Simon Kelley8ef5ada2010-06-03 19:42:45 +010050 int is_err = 1, if_index = 0, mtu = 0, special = 0;
51#ifdef HAVE_DHCP
Simon Kelley832af0b2007-01-21 20:01:28 +000052 struct iname *tmp;
Simon Kelley8ef5ada2010-06-03 19:42:45 +010053#endif
Simon Kelley5aabfc72007-08-29 11:24:47 +010054 struct tftp_transfer *transfer;
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];
60 char *name;
61 char *prefix = daemon->tftp_prefix;
62 struct tftp_prefix *pref;
63 struct interface_list *ir;
64
Simon Kelley832af0b2007-01-21 20:01:28 +000065 union {
66 struct cmsghdr align; /* this ensures alignment */
Simon Kelley28866e92011-02-14 20:19:14 +000067#ifdef HAVE_IPV6
68 char control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
69#endif
Simon Kelley824af852008-02-12 20:43:05 +000070#if defined(HAVE_LINUX_NETWORK)
Simon Kelley832af0b2007-01-21 20:01:28 +000071 char control[CMSG_SPACE(sizeof(struct in_pktinfo))];
Simon Kelley824af852008-02-12 20:43:05 +000072#elif defined(HAVE_SOLARIS_NETWORK)
73 char control[CMSG_SPACE(sizeof(unsigned int))];
Simon Kelley7622fc02009-06-04 20:32:05 +010074#elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF)
Simon Kelley832af0b2007-01-21 20:01:28 +000075 char control[CMSG_SPACE(sizeof(struct sockaddr_dl))];
76#endif
77 } control_u;
78
79 msg.msg_controllen = sizeof(control_u);
80 msg.msg_control = control_u.control;
81 msg.msg_flags = 0;
82 msg.msg_name = &peer;
83 msg.msg_namelen = sizeof(peer);
84 msg.msg_iov = &iov;
85 msg.msg_iovlen = 1;
86
87 iov.iov_base = packet;
88 iov.iov_len = daemon->packet_buff_sz;
89
90 /* we overwrote the buffer... */
91 daemon->srv_save = NULL;
92
93 if ((len = recvmsg(listen->tftpfd, &msg, 0)) < 2)
94 return;
95
Simon Kelley28866e92011-02-14 20:19:14 +000096 if (option_bool(OPT_NOWILD))
Simon Kelley1f15b812009-10-13 17:49:32 +010097 {
Simon Kelley28866e92011-02-14 20:19:14 +000098 addr = listen->iface->addr;
Simon Kelley1f15b812009-10-13 17:49:32 +010099 mtu = listen->iface->mtu;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100100 name = listen->iface->name;
Simon Kelley1f15b812009-10-13 17:49:32 +0100101 }
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000102 else
103 {
Simon Kelley7622fc02009-06-04 20:32:05 +0100104 struct cmsghdr *cmptr;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100105 int check;
106 struct interface_list *ir;
107
Simon Kelley28866e92011-02-14 20:19:14 +0000108 if (msg.msg_controllen < sizeof(struct cmsghdr))
109 return;
110
111 addr.sa.sa_family = listen->family;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000112
Simon Kelley832af0b2007-01-21 20:01:28 +0000113#if defined(HAVE_LINUX_NETWORK)
Simon Kelley28866e92011-02-14 20:19:14 +0000114 if (listen->family == AF_INET)
115 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000116 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO)
Simon Kelley28866e92011-02-14 20:19:14 +0000117 {
118 union {
119 unsigned char *c;
120 struct in_pktinfo *p;
121 } p;
122 p.c = CMSG_DATA(cmptr);
123 addr.in.sin_addr = p.p->ipi_spec_dst;
124 if_index = p.p->ipi_ifindex;
125 }
126
127#elif defined(HAVE_SOLARIS_NETWORK)
128 if (listen->family == AF_INET)
129 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000130 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100131 union {
132 unsigned char *c;
Simon Kelley28866e92011-02-14 20:19:14 +0000133 struct in_addr *a;
134 unsigned int *i;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100135 } p;
136 p.c = CMSG_DATA(cmptr);
Simon Kelley28866e92011-02-14 20:19:14 +0000137 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR)
138 addr.in.sin_addr = *(p.a);
139 else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF)
140 if_index = *(p.i);
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000141 }
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000142
Simon Kelley832af0b2007-01-21 20:01:28 +0000143#elif defined(IP_RECVDSTADDR) && defined(IP_RECVIF)
Simon Kelley28866e92011-02-14 20:19:14 +0000144 if (listen->family == AF_INET)
145 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
146 {
147 union {
148 unsigned char *c;
149 struct in_addr *a;
150 struct sockaddr_dl *s;
151 } p;
152 p.c = CMSG_DATA(cmptr);
153 if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVDSTADDR)
154 addr.in.sin_addr = *(p.a);
155 else if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_RECVIF)
156 if_index = p.s->sdl_index;
157 }
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100158
Simon Kelley824af852008-02-12 20:43:05 +0000159#endif
Simon Kelley28866e92011-02-14 20:19:14 +0000160
161#ifdef HAVE_IPV6
162 if (listen->family == AF_INET6)
163 {
164 for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000165 if (cmptr->cmsg_level == IPPROTO_IPV6 && cmptr->cmsg_type == daemon->v6pktinfo)
Simon Kelley28866e92011-02-14 20:19:14 +0000166 {
167 union {
168 unsigned char *c;
169 struct in6_pktinfo *p;
170 } p;
171 p.c = CMSG_DATA(cmptr);
172
173 addr.in6.sin6_addr = p.p->ipi6_addr;
174 if_index = p.p->ipi6_ifindex;
175 }
176 }
177#endif
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000178
Simon Kelley28866e92011-02-14 20:19:14 +0000179 if (!indextoname(listen->tftpfd, if_index, namebuff))
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000180 return;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100181
182 name = namebuff;
Simon Kelley28866e92011-02-14 20:19:14 +0000183
184#ifdef HAVE_IPV6
185 if (listen->family == AF_INET6)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000186 check = iface_check(AF_INET6, (struct all_addr *)&addr.in6.sin6_addr, name);
Simon Kelley28866e92011-02-14 20:19:14 +0000187 else
188#endif
Simon Kelleyc72daea2012-01-05 21:33:27 +0000189 check = iface_check(AF_INET, (struct all_addr *)&addr.in.sin_addr, name);
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100190
191 /* wierd TFTP service override */
192 for (ir = daemon->tftp_interfaces; ir; ir = ir->next)
193 if (strcmp(ir->interface, name) == 0)
194 break;
195
196 if (!ir)
197 {
198 if (!daemon->tftp_unlimited || !check)
199 return;
200
201#ifdef HAVE_DHCP
202 /* allowed interfaces are the same as for DHCP */
203 for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next)
204 if (tmp->name && (strcmp(tmp->name, name) == 0))
205 return;
206#endif
207 }
208
Simon Kelley316e2732010-01-22 20:16:09 +0000209 strncpy(ifr.ifr_name, name, IF_NAMESIZE);
Simon Kelley1f15b812009-10-13 17:49:32 +0100210 if (ioctl(listen->tftpfd, SIOCGIFMTU, &ifr) != -1)
211 mtu = ifr.ifr_mtu;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000212 }
213
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100214 /* check for per-interface prefix */
215 for (pref = daemon->if_prefix; pref; pref = pref->next)
216 if (strcmp(pref->interface, name) == 0)
217 prefix = pref->prefix;
218
219 /* wierd TFTP interfaces disable special options. */
220 for (ir = daemon->tftp_interfaces; ir; ir = ir->next)
221 if (strcmp(ir->interface, name) == 0)
222 special = 1;
223
Simon Kelley28866e92011-02-14 20:19:14 +0000224 if (listen->family == AF_INET)
Simon Kelley7de060b2011-08-26 17:24:52 +0100225 {
226 addr.in.sin_port = htons(port);
227#ifdef HAVE_SOCKADDR_SA_LEN
228 addr.in.sin_len = sizeof(addr.in);
229#endif
230 }
Simon Kelley28866e92011-02-14 20:19:14 +0000231#ifdef HAVE_IPV6
232 else
233 {
234 addr.in6.sin6_port = htons(port);
235 addr.in6.sin6_flowinfo = 0;
Simon Kelley7de060b2011-08-26 17:24:52 +0100236 addr.in6.sin6_scope_id = 0;
237#ifdef HAVE_SOCKADDR_SA_LEN
238 addr.in6.sin6_len = sizeof(addr.in6);
239#endif
Simon Kelley28866e92011-02-14 20:19:14 +0000240 }
241#endif
242
Simon Kelley5aabfc72007-08-29 11:24:47 +0100243 if (!(transfer = whine_malloc(sizeof(struct tftp_transfer))))
Simon Kelley832af0b2007-01-21 20:01:28 +0000244 return;
245
Simon Kelley28866e92011-02-14 20:19:14 +0000246 if ((transfer->sockfd = socket(listen->family, SOCK_DGRAM, 0)) == -1)
Simon Kelley832af0b2007-01-21 20:01:28 +0000247 {
248 free(transfer);
249 return;
250 }
251
252 transfer->peer = peer;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100253 transfer->timeout = now + 2;
Simon Kelley832af0b2007-01-21 20:01:28 +0000254 transfer->backoff = 1;
255 transfer->block = 1;
256 transfer->blocksize = 512;
Simon Kelley9e038942008-05-30 20:06:34 +0100257 transfer->offset = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000258 transfer->file = NULL;
259 transfer->opt_blocksize = transfer->opt_transize = 0;
Simon Kelley9e038942008-05-30 20:06:34 +0100260 transfer->netascii = transfer->carrylf = 0;
Simon Kelley28866e92011-02-14 20:19:14 +0000261
Simon Kelleyc72daea2012-01-05 21:33:27 +0000262 prettyprint_addr(&peer, daemon->addrbuff);
Simon Kelley28866e92011-02-14 20:19:14 +0000263
Simon Kelley824af852008-02-12 20:43:05 +0000264 /* if we have a nailed-down range, iterate until we find a free one. */
265 while (1)
Simon Kelley832af0b2007-01-21 20:01:28 +0000266 {
Simon Kelley7de060b2011-08-26 17:24:52 +0100267 if (bind(transfer->sockfd, &addr.sa, sa_len(&addr)) == -1 ||
Simon Kelley824af852008-02-12 20:43:05 +0000268#if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DONT)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000269 setsockopt(transfer->sockfd, IPPROTO_IP, IP_MTU_DISCOVER, &mtuflag, sizeof(mtuflag)) == -1 ||
Simon Kelley824af852008-02-12 20:43:05 +0000270#endif
271 !fix_fd(transfer->sockfd))
272 {
273 if (errno == EADDRINUSE && daemon->start_tftp_port != 0)
274 {
275 if (++port <= daemon->end_tftp_port)
276 {
Simon Kelley28866e92011-02-14 20:19:14 +0000277 if (listen->family == AF_INET)
278 addr.in.sin_port = htons(port);
279#ifdef HAVE_IPV6
280 else
281 addr.in6.sin6_port = htons(port);
282#endif
Simon Kelley824af852008-02-12 20:43:05 +0000283 continue;
284 }
Simon Kelley7622fc02009-06-04 20:32:05 +0100285 my_syslog(MS_TFTP | LOG_ERR, _("unable to get free port for TFTP"));
Simon Kelley824af852008-02-12 20:43:05 +0000286 }
287 free_transfer(transfer);
288 return;
289 }
290 break;
Simon Kelley832af0b2007-01-21 20:01:28 +0000291 }
Simon Kelley824af852008-02-12 20:43:05 +0000292
Simon Kelley832af0b2007-01-21 20:01:28 +0000293 p = packet + 2;
294 end = packet + len;
295
296 if (ntohs(*((unsigned short *)packet)) != OP_RRQ ||
297 !(filename = next(&p, end)) ||
298 !(mode = next(&p, end)) ||
Simon Kelley9e038942008-05-30 20:06:34 +0100299 (strcasecmp(mode, "octet") != 0 && strcasecmp(mode, "netascii") != 0))
Simon Kelleyc72daea2012-01-05 21:33:27 +0000300 len = tftp_err(ERR_ILL, packet, _("unsupported request from %s"), daemon->addrbuff);
Simon Kelley832af0b2007-01-21 20:01:28 +0000301 else
302 {
Simon Kelley9e038942008-05-30 20:06:34 +0100303 if (strcasecmp(mode, "netascii") == 0)
304 transfer->netascii = 1;
305
Simon Kelley832af0b2007-01-21 20:01:28 +0000306 while ((opt = next(&p, end)))
307 {
Simon Kelley77e94da2009-08-31 17:32:17 +0100308 if (strcasecmp(opt, "blksize") == 0)
Simon Kelley832af0b2007-01-21 20:01:28 +0000309 {
Simon Kelley77e94da2009-08-31 17:32:17 +0100310 if ((opt = next(&p, end)) &&
Simon Kelley28866e92011-02-14 20:19:14 +0000311 (special || !option_bool(OPT_TFTP_NOBLOCK)))
Simon Kelley77e94da2009-08-31 17:32:17 +0100312 {
313 transfer->blocksize = atoi(opt);
314 if (transfer->blocksize < 1)
315 transfer->blocksize = 1;
316 if (transfer->blocksize > (unsigned)daemon->packet_buff_sz - 4)
317 transfer->blocksize = (unsigned)daemon->packet_buff_sz - 4;
Simon Kelley1f15b812009-10-13 17:49:32 +0100318 /* 32 bytes for IP, UDP and TFTP headers */
319 if (mtu != 0 && transfer->blocksize > (unsigned)mtu - 32)
320 transfer->blocksize = (unsigned)mtu - 32;
Simon Kelley77e94da2009-08-31 17:32:17 +0100321 transfer->opt_blocksize = 1;
322 transfer->block = 0;
323 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000324 }
Simon Kelley77e94da2009-08-31 17:32:17 +0100325 else if (strcasecmp(opt, "tsize") == 0 && next(&p, end) && !transfer->netascii)
Simon Kelley832af0b2007-01-21 20:01:28 +0000326 {
327 transfer->opt_transize = 1;
328 transfer->block = 0;
329 }
330 }
331
Simon Kelley1f15b812009-10-13 17:49:32 +0100332 /* cope with backslashes from windows boxen. */
333 while ((p = strchr(filename, '\\')))
334 *p = '/';
335
Simon Kelleyf2621c72007-04-29 19:47:21 +0100336 strcpy(daemon->namebuff, "/");
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100337 if (prefix)
Simon Kelley832af0b2007-01-21 20:01:28 +0000338 {
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100339 if (prefix[0] == '/')
Simon Kelleyf2621c72007-04-29 19:47:21 +0100340 daemon->namebuff[0] = 0;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100341 strncat(daemon->namebuff, prefix, (MAXDNAME-1) - strlen(daemon->namebuff));
342 if (prefix[strlen(prefix)-1] != '/')
Simon Kelley77e94da2009-08-31 17:32:17 +0100343 strncat(daemon->namebuff, "/", (MAXDNAME-1) - strlen(daemon->namebuff));
Simon Kelley5aabfc72007-08-29 11:24:47 +0100344
Simon Kelley28866e92011-02-14 20:19:14 +0000345 if (!special && option_bool(OPT_TFTP_APREF))
Simon Kelley5aabfc72007-08-29 11:24:47 +0100346 {
347 size_t oldlen = strlen(daemon->namebuff);
348 struct stat statbuf;
349
Simon Kelleyc72daea2012-01-05 21:33:27 +0000350 strncat(daemon->namebuff, daemon->addrbuff, (MAXDNAME-1) - strlen(daemon->namebuff));
Simon Kelley77e94da2009-08-31 17:32:17 +0100351 strncat(daemon->namebuff, "/", (MAXDNAME-1) - strlen(daemon->namebuff));
Simon Kelley5aabfc72007-08-29 11:24:47 +0100352
353 /* remove unique-directory if it doesn't exist */
354 if (stat(daemon->namebuff, &statbuf) == -1 || !S_ISDIR(statbuf.st_mode))
355 daemon->namebuff[oldlen] = 0;
356 }
357
Simon Kelleyf2621c72007-04-29 19:47:21 +0100358 /* Absolute pathnames OK if they match prefix */
359 if (filename[0] == '/')
360 {
361 if (strstr(filename, daemon->namebuff) == filename)
362 daemon->namebuff[0] = 0;
363 else
364 filename++;
365 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000366 }
Simon Kelleyf2621c72007-04-29 19:47:21 +0100367 else if (filename[0] == '/')
Simon Kelley832af0b2007-01-21 20:01:28 +0000368 daemon->namebuff[0] = 0;
Simon Kelley77e94da2009-08-31 17:32:17 +0100369 strncat(daemon->namebuff, filename, (MAXDNAME-1) - strlen(daemon->namebuff));
Simon Kelley832af0b2007-01-21 20:01:28 +0000370
Simon Kelley5aabfc72007-08-29 11:24:47 +0100371 /* check permissions and open file */
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100372 if ((transfer->file = check_tftp_fileperm(&len, prefix, special)))
Simon Kelley832af0b2007-01-21 20:01:28 +0000373 {
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000374 if ((len = get_block(packet, transfer)) == -1)
375 len = tftp_err_oops(packet, daemon->namebuff);
376 else
377 is_err = 0;
Simon Kelley832af0b2007-01-21 20:01:28 +0000378 }
379 }
380
381 while (sendto(transfer->sockfd, packet, len, 0,
382 (struct sockaddr *)&peer, sizeof(peer)) == -1 && errno == EINTR);
383
384 if (is_err)
385 free_transfer(transfer);
386 else
387 {
Simon Kelley832af0b2007-01-21 20:01:28 +0000388 transfer->next = daemon->tftp_trans;
389 daemon->tftp_trans = transfer;
390 }
391}
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000392
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100393static struct tftp_file *check_tftp_fileperm(ssize_t *len, char *prefix, int special)
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000394{
395 char *packet = daemon->packet, *namebuff = daemon->namebuff;
396 struct tftp_file *file;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100397 struct tftp_transfer *t;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000398 uid_t uid = geteuid();
399 struct stat statbuf;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100400 int fd = -1;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000401
402 /* trick to ban moving out of the subtree */
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100403 if (prefix && strstr(namebuff, "/../"))
Simon Kelley5aabfc72007-08-29 11:24:47 +0100404 goto perm;
405
406 if ((fd = open(namebuff, O_RDONLY)) == -1)
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000407 {
Simon Kelley5aabfc72007-08-29 11:24:47 +0100408 if (errno == ENOENT)
409 {
410 *len = tftp_err(ERR_FNF, packet, _("file %s not found"), namebuff);
411 return NULL;
412 }
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000413 else if (errno == EACCES)
414 goto perm;
415 else
416 goto oops;
417 }
Simon Kelley5aabfc72007-08-29 11:24:47 +0100418
419 /* stat the file descriptor to avoid stat->open races */
420 if (fstat(fd, &statbuf) == -1)
421 goto oops;
422
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000423 /* running as root, must be world-readable */
424 if (uid == 0)
425 {
426 if (!(statbuf.st_mode & S_IROTH))
Simon Kelley5aabfc72007-08-29 11:24:47 +0100427 goto perm;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000428 }
429 /* in secure mode, must be owned by user running dnsmasq */
Simon Kelley28866e92011-02-14 20:19:14 +0000430 else if (!special && option_bool(OPT_TFTP_SECURE) && uid != statbuf.st_uid)
Simon Kelley5aabfc72007-08-29 11:24:47 +0100431 goto perm;
432
433 /* If we're doing many tranfers from the same file, only
434 open it once this saves lots of file descriptors
435 when mass-booting a big cluster, for instance.
436 Be conservative and only share when inode and name match
437 this keeps error messages sane. */
438 for (t = daemon->tftp_trans; t; t = t->next)
439 if (t->file->dev == statbuf.st_dev &&
440 t->file->inode == statbuf.st_ino &&
441 strcmp(t->file->filename, namebuff) == 0)
442 {
443 close(fd);
444 t->file->refcount++;
445 return t->file;
446 }
447
448 if (!(file = whine_malloc(sizeof(struct tftp_file) + strlen(namebuff) + 1)))
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000449 {
450 errno = ENOMEM;
451 goto oops;
452 }
453
Simon Kelley5aabfc72007-08-29 11:24:47 +0100454 file->fd = fd;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000455 file->size = statbuf.st_size;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100456 file->dev = statbuf.st_dev;
457 file->inode = statbuf.st_ino;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000458 file->refcount = 1;
459 strcpy(file->filename, namebuff);
460 return file;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100461
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000462 perm:
Simon Kelley5aabfc72007-08-29 11:24:47 +0100463 errno = EACCES;
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000464 *len = tftp_err(ERR_PERM, packet, _("cannot access %s: %s"), namebuff);
Simon Kelley5aabfc72007-08-29 11:24:47 +0100465 if (fd != -1)
466 close(fd);
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000467 return NULL;
468
Simon Kelley5aabfc72007-08-29 11:24:47 +0100469 oops:
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000470 *len = tftp_err_oops(packet, namebuff);
Simon Kelley5aabfc72007-08-29 11:24:47 +0100471 if (fd != -1)
472 close(fd);
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000473 return NULL;
474}
475
Simon Kelley5aabfc72007-08-29 11:24:47 +0100476void check_tftp_listeners(fd_set *rset, time_t now)
Simon Kelley832af0b2007-01-21 20:01:28 +0000477{
478 struct tftp_transfer *transfer, *tmp, **up;
479 ssize_t len;
480
481 struct ack {
482 unsigned short op, block;
483 } *mess = (struct ack *)daemon->packet;
484
485 /* Check for activity on any existing transfers */
486 for (transfer = daemon->tftp_trans, up = &daemon->tftp_trans; transfer; transfer = tmp)
487 {
488 tmp = transfer->next;
489
490 if (FD_ISSET(transfer->sockfd, rset))
491 {
492 /* we overwrote the buffer... */
493 daemon->srv_save = NULL;
Simon Kelley28866e92011-02-14 20:19:14 +0000494
Simon Kelleyc72daea2012-01-05 21:33:27 +0000495 prettyprint_addr(&transfer->peer, daemon->addrbuff);
Simon Kelley832af0b2007-01-21 20:01:28 +0000496
497 if ((len = recv(transfer->sockfd, daemon->packet, daemon->packet_buff_sz, 0)) >= (ssize_t)sizeof(struct ack))
498 {
499 if (ntohs(mess->op) == OP_ACK && ntohs(mess->block) == (unsigned short)transfer->block)
500 {
501 /* Got ack, ensure we take the (re)transmit path */
502 transfer->timeout = now;
503 transfer->backoff = 0;
Simon Kelley9e038942008-05-30 20:06:34 +0100504 if (transfer->block++ != 0)
505 transfer->offset += transfer->blocksize - transfer->expansion;
Simon Kelley832af0b2007-01-21 20:01:28 +0000506 }
507 else if (ntohs(mess->op) == OP_ERR)
508 {
509 char *p = daemon->packet + sizeof(struct ack);
510 char *end = daemon->packet + len;
511 char *err = next(&p, end);
Simon Kelley28866e92011-02-14 20:19:14 +0000512
Simon Kelley832af0b2007-01-21 20:01:28 +0000513 /* Sanitise error message */
514 if (!err)
515 err = "";
516 else
517 {
Simon Kelley572b41e2011-02-18 18:11:18 +0000518 unsigned char *q, *r;
519 for (q = r = (unsigned char *)err; *r; r++)
520 if (isprint(*r))
Simon Kelley832af0b2007-01-21 20:01:28 +0000521 *(q++) = *r;
522 *q = 0;
523 }
Simon Kelley28866e92011-02-14 20:19:14 +0000524
Simon Kelley316e2732010-01-22 20:16:09 +0000525 my_syslog(MS_TFTP | LOG_ERR, _("error %d %s received from %s"),
Simon Kelleyf2621c72007-04-29 19:47:21 +0100526 (int)ntohs(mess->block), err,
Simon Kelleyc72daea2012-01-05 21:33:27 +0000527 daemon->addrbuff);
Simon Kelley832af0b2007-01-21 20:01:28 +0000528
529 /* Got err, ensure we take abort */
530 transfer->timeout = now;
531 transfer->backoff = 100;
532 }
533 }
534 }
535
536 if (difftime(now, transfer->timeout) >= 0.0)
537 {
538 int endcon = 0;
539
540 /* timeout, retransmit */
Simon Kelley5aabfc72007-08-29 11:24:47 +0100541 transfer->timeout += 1 + (1<<transfer->backoff);
Simon Kelley832af0b2007-01-21 20:01:28 +0000542
543 /* we overwrote the buffer... */
544 daemon->srv_save = NULL;
545
546 if ((len = get_block(daemon->packet, transfer)) == -1)
547 {
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000548 len = tftp_err_oops(daemon->packet, transfer->file->filename);
Simon Kelley832af0b2007-01-21 20:01:28 +0000549 endcon = 1;
550 }
551 else if (++transfer->backoff > 5)
552 {
553 /* don't complain about timeout when we're awaiting the last
554 ACK, some clients never send it */
555 if (len != 0)
Simon Kelley28866e92011-02-14 20:19:14 +0000556 {
557 my_syslog(MS_TFTP | LOG_ERR, _("failed sending %s to %s"),
Simon Kelleyc72daea2012-01-05 21:33:27 +0000558 transfer->file->filename, daemon->addrbuff);
Simon Kelley28866e92011-02-14 20:19:14 +0000559 len = 0;
560 endcon = 1;
561 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000562 }
563
564 if (len != 0)
565 while(sendto(transfer->sockfd, daemon->packet, len, 0,
566 (struct sockaddr *)&transfer->peer, sizeof(transfer->peer)) == -1 && errno == EINTR);
567
568 if (endcon || len == 0)
569 {
Simon Kelley28866e92011-02-14 20:19:14 +0000570 if (!endcon)
Simon Kelleyc72daea2012-01-05 21:33:27 +0000571 my_syslog(MS_TFTP | LOG_INFO, _("sent %s to %s"), transfer->file->filename, daemon->addrbuff);
Simon Kelley832af0b2007-01-21 20:01:28 +0000572 /* unlink */
573 *up = tmp;
574 free_transfer(transfer);
575 continue;
576 }
577 }
578
579 up = &transfer->next;
Simon Kelley28866e92011-02-14 20:19:14 +0000580 }
Simon Kelley832af0b2007-01-21 20:01:28 +0000581}
582
583static void free_transfer(struct tftp_transfer *transfer)
584{
585 close(transfer->sockfd);
586 if (transfer->file && (--transfer->file->refcount) == 0)
587 {
588 close(transfer->file->fd);
589 free(transfer->file);
590 }
591 free(transfer);
592}
593
594static char *next(char **p, char *end)
595{
596 char *ret = *p;
597 size_t len;
598
599 if (*(end-1) != 0 ||
600 *p == end ||
601 (len = strlen(ret)) == 0)
602 return NULL;
603
604 *p += len + 1;
605 return ret;
606}
607
608static ssize_t tftp_err(int err, char *packet, char *message, char *file)
609{
610 struct errmess {
611 unsigned short op, err;
612 char message[];
613 } *mess = (struct errmess *)packet;
614 ssize_t ret = 4;
615 char *errstr = strerror(errno);
616
617 mess->op = htons(OP_ERR);
618 mess->err = htons(err);
619 ret += (snprintf(mess->message, 500, message, file, errstr) + 1);
Simon Kelley316e2732010-01-22 20:16:09 +0000620 my_syslog(MS_TFTP | LOG_ERR, "%s", mess->message);
Simon Kelley832af0b2007-01-21 20:01:28 +0000621
622 return ret;
623}
624
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000625static ssize_t tftp_err_oops(char *packet, char *file)
626{
627 return tftp_err(ERR_NOTDEF, packet, _("cannot read %s: %s"), file);
628}
629
Simon Kelley832af0b2007-01-21 20:01:28 +0000630/* return -1 for error, zero for done. */
631static ssize_t get_block(char *packet, struct tftp_transfer *transfer)
632{
633 if (transfer->block == 0)
634 {
635 /* send OACK */
636 char *p;
637 struct oackmess {
638 unsigned short op;
639 char data[];
640 } *mess = (struct oackmess *)packet;
641
642 p = mess->data;
643 mess->op = htons(OP_OACK);
644 if (transfer->opt_blocksize)
645 {
646 p += (sprintf(p, "blksize") + 1);
647 p += (sprintf(p, "%d", transfer->blocksize) + 1);
648 }
649 if (transfer->opt_transize)
650 {
651 p += (sprintf(p,"tsize") + 1);
652 p += (sprintf(p, "%u", (unsigned int)transfer->file->size) + 1);
653 }
654
655 return p - packet;
656 }
657 else
658 {
659 /* send data packet */
660 struct datamess {
661 unsigned short op, block;
662 unsigned char data[];
663 } *mess = (struct datamess *)packet;
664
Simon Kelley9e038942008-05-30 20:06:34 +0100665 size_t size = transfer->file->size - transfer->offset;
Simon Kelley832af0b2007-01-21 20:01:28 +0000666
Simon Kelley9e038942008-05-30 20:06:34 +0100667 if (transfer->offset > transfer->file->size)
Simon Kelley832af0b2007-01-21 20:01:28 +0000668 return 0; /* finished */
669
670 if (size > transfer->blocksize)
671 size = transfer->blocksize;
672
Simon Kelley832af0b2007-01-21 20:01:28 +0000673 mess->op = htons(OP_DATA);
674 mess->block = htons((unsigned short)(transfer->block));
675
Simon Kelley9e038942008-05-30 20:06:34 +0100676 if (lseek(transfer->file->fd, transfer->offset, SEEK_SET) == (off_t)-1 ||
677 !read_write(transfer->file->fd, mess->data, size, 1))
Simon Kelley832af0b2007-01-21 20:01:28 +0000678 return -1;
Simon Kelley9e038942008-05-30 20:06:34 +0100679
680 transfer->expansion = 0;
681
682 /* Map '\n' to CR-LF in netascii mode */
683 if (transfer->netascii)
684 {
685 size_t i;
686 int newcarrylf;
687
688 for (i = 0, newcarrylf = 0; i < size; i++)
689 if (mess->data[i] == '\n' && ( i != 0 || !transfer->carrylf))
690 {
Simon Kelley7de060b2011-08-26 17:24:52 +0100691 transfer->expansion++;
692
693 if (size != transfer->blocksize)
Simon Kelley9e038942008-05-30 20:06:34 +0100694 size++; /* room in this block */
Simon Kelley7de060b2011-08-26 17:24:52 +0100695 else if (i == size - 1)
696 newcarrylf = 1; /* don't expand LF again if it moves to the next block */
697
Simon Kelley9e038942008-05-30 20:06:34 +0100698 /* make space and insert CR */
699 memmove(&mess->data[i+1], &mess->data[i], size - (i + 1));
700 mess->data[i] = '\r';
701
702 i++;
703 }
704 transfer->carrylf = newcarrylf;
705
706 }
707
708 return size + 4;
Simon Kelley832af0b2007-01-21 20:01:28 +0000709 }
710}
711
712#endif