]> git.sesse.net Git - betaftpd/blob - ftpd.c
Fixed a problem where the server might segfault if there was an error occuring while...
[betaftpd] / ftpd.c
1 /*  ftpd.c: BetaFTPD main
2     Copyright (C) 1999-2000 Steinar H. Gunderson
3
4     This program is is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License, version 2 of the
6     License as published by the Free Software Foundation.
7
8     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.
12
13     You should have received a copy of the GNU General Public License
14     along with this program; if not, write to the Free Software
15     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 */
17
18 /*
19  * Special note: this file has been overwritten by another (0-byte) file, been
20  * through the dead, and restored (with the help of dd, grep, gpm, vi and less)
21  * with a sucess rate of 99.9%. Show it a little respect -- don't add junk
22  * to it. :-)
23  */
24
25 #define _GNU_SOURCE
26
27 #if HAVE_CONFIG_H
28 #include <config.h>
29 #endif
30
31 #if HAVE_ERRNO_H
32 #include <errno.h>
33 #endif
34
35 #if HAVE_STROPTS_H
36 #include <stropts.h>
37 #endif
38
39 #if HAVE_SYS_TYPES_H
40 #include <sys/types.h>
41 #endif
42
43 #if HAVE_SYS_CONF_H
44 #include <sys/conf.h>
45 #endif
46
47 #if HAVE_FCNTL_H
48 #include <fcntl.h>
49 #endif
50
51 #if HAVE_STDIO_H
52 #include <stdio.h>
53 #endif
54
55 #if HAVE_ASSERT_H
56 #include <assert.h>
57 #endif
58
59 #if HAVE_STRING_H
60 #include <string.h>
61 #endif
62
63 #if HAVE_STRINGS_H
64 #include <strings.h>
65 #endif
66
67 #if HAVE_STDARG_H
68 #include <stdarg.h>
69 #endif
70
71 #if HAVE_STDLIB_H
72 #include <stdlib.h>
73 #endif
74
75 #if HAVE_UNISTD_H
76 #include <unistd.h>
77 #endif
78
79 #if HAVE_NETINET_IN_SYSTM_H
80 #include <netinet/in_systm.h>
81 #endif
82
83 #if HAVE_NETINET_IN_H
84 #include <netinet/in.h>
85 #endif
86
87 #if HAVE_NETINET_IP_H
88 #include <netinet/ip.h>
89 #endif
90
91 #if HAVE_NETINET_TCP_H
92 #include <netinet/tcp.h>
93 #endif
94
95 #if HAVE_ARPA_INET_H
96 #include <arpa/inet.h>
97 #endif
98
99 #if HAVE_SYS_STAT_H
100 #include <sys/stat.h>
101 #endif
102
103 #if HAVE_SYS_IOCTL_H
104 #include <sys/ioctl.h>
105 #endif
106
107 #if HAVE_LINUX_SOCKET_H
108 #include <linux/socket.h>
109 #endif
110
111 #if HAVE_LINUX_TCP_H
112 #include <linux/tcp.h>
113 #endif
114
115 #if HAVE_MMAP
116 #include <sys/mman.h>
117 #endif
118
119 #if HAVE_TIME_H
120 #include <time.h>
121 #endif
122
123 #if HAVE_SYS_TIME_H
124 #include <sys/time.h>
125 #endif
126
127 #if HAVE_SYS_TIME_H
128 #include <sys/time.h>
129 #endif
130
131 #if HAVE_SYS_FILIO_H
132 #include <sys/filio.h>
133 #endif
134
135 #if HAVE_NETDB_H
136 #include <netdb.h>
137 #endif
138
139 #if HAVE_SIGNAL_H
140 #include <signal.h>
141 #endif
142
143 #if HAVE_GLOB_H
144 #include <glob.h>
145 #endif
146
147 #if HAVE_SYS_SIGNAL_H
148 #include <sys/signal.h>
149 #endif
150
151 #if HAVE_SYS_POLL_H
152 #include <sys/poll.h>
153 #endif
154
155 #if HAVE_SYS_SENDFILE_H
156 #include <sys/sendfile.h>
157 #endif
158
159 /*
160  * <linux/socket.h> does not export this to glibc2 systems, and it isn't
161  * always defined anywhere else.
162  */
163 #if !defined(TCP_CORK) && defined(__linux__)
164 #define TCP_CORK 3
165 #endif
166
167 #include <ftpd.h>
168 #include <cmds.h>
169
170 #if WANT_ASCII
171 #include <ascii.h>
172 #endif
173
174 #if WANT_DCACHE
175 #include <dcache.h>
176 #endif
177
178 #ifndef MAP_FAILED
179 #define MAP_FAILED -1
180 #endif
181
182 struct conn *first_conn = NULL;
183 struct ftran *first_ftran = NULL;
184 #if WANT_DCACHE
185 struct dcache *first_dcache = NULL;
186 #endif
187 char message_buf[512];
188
189 #if HAVE_POLL
190 unsigned int highest_fds = 0;
191
192 #define FD_MAX 1024
193 #define fds_send fds
194 struct pollfd fds[FD_MAX];
195
196 #define MAXCLIENTS FD_MAX
197 #else
198 fd_set master_fds, master_send_fds;
199 #define MAXCLIENTS FD_SETSIZE
200 #endif
201
202 #if WANT_XFERLOG
203 FILE *xferlog = NULL;
204 #endif
205
206 #if HAVE_LINUX_SENDFILE || HAVE_BSD_SENDFILE
207 int sendfile_supported = 1;
208 #endif
209
210 /*
211  * This variable specifies if it's soon time to check for timed out
212  * clients, and timed out directory listing cache entries. It is
213  * set to 1 by a signal handler every minute, and set to 0 when the
214  * checking has been performed.
215  */
216 int time_to_check = 1;
217
218 #ifndef HAVE_SPRINTF
219 /*
220  * snprintf():  snprintf() replacement for systems that miss it. Note
221  *              that this implementation does _not_ necessarily protect
222  *              against all buffer overflows. Get a real snprintf() in
223  *              your C library. That being said, the 8k limit is
224  *              substantially larger than any other string in BetaFTPD,
225  *              which should make such an attack harder.
226  */
227 int snprintf(char *str, size_t n, const char *format, ...)
228 {
229         char buf[8192];
230         va_list args;
231         int err;
232
233         va_start(args, format);
234         err = vsprintf(buf, format, args);
235         va_end(args);
236
237         buf[(int)n] = 0;
238         strcpy(str, buf);
239
240         return err;
241 }
242 #endif
243
244 #ifndef HAVE_VSNPRINTF
245 /*
246  * vsnprintf:   vsnprintf() replacement for systems that miss it. Please
247  *              see snprintf (above) for more information.
248  */
249 int vsnprintf(char *str, size_t n, const char *format, va_list ap)
250 {
251         char buf[8192];
252         int err;
253
254         err = vsprintf(buf, format, ap);
255         buf[(int)n] = 0;
256         strcpy(str, buf);
257         return err;
258 }
259 #endif
260
261 /*
262  * add_fd():    Add an fd to the set we monitor. Return 0 on success.
263  *              This code is shared between poll() and select() versions.
264  */
265 int add_fd(const int fd, const int events)
266 {
267 #if HAVE_POLL
268         if (fd >= FD_MAX) {
269                 printf("add_fd(%d, %x): failed\n", fd, events);
270                 return E2BIG;
271         }
272
273         fds[fd].fd = fd;
274         fds[fd].events = events;
275         if (highest_fds < fd) 
276                 highest_fds = fd;
277 #else 
278         if (fd >= FD_SETSIZE)
279                 return E2BIG;
280         if (events & POLLIN)
281                 FD_SET(fd, &master_fds);
282         if (events & POLLOUT)
283                 FD_SET(fd, &master_send_fds);
284 #endif
285         return 0;
286 }
287
288 /*
289  * del_fd():    Close and remove an fd from the set(s) we monitor. (See also add_fd().)
290  */
291 void del_fd(const int fd)
292 {
293 #if HAVE_POLL
294         if (fd >= FD_MAX)
295                 return;
296
297         fds[fd].fd = -1;
298         fds[fd].events = 0;
299
300         /* Reduce poll()'s workload by not making it watch past end of array */
301         while ((highest_fds > 0) && (fds[highest_fds].fd == -1))
302                 highest_fds--;
303 #else 
304         if (fd >= FD_SETSIZE)
305                 return;
306         FD_CLR(fd, &master_fds);
307         FD_CLR(fd, &master_send_fds);
308 #endif
309
310         close(fd);
311 }
312
313 #if 0
314 void list_clients()
315 {
316         struct conn *c = first_conn;
317         printf("list_clients:\n");
318         while (c && c->next_conn) {
319                 c = c->next_conn;
320                 printf("list_clients: fd %d\n", c->sock);
321         }
322 }
323 #endif
324
325 /*
326  * add_to_linked_list():
327  *              Inserts an element (conn, ftran or dcache) into its linked list.
328  *              The list is placed at the beginning, right after the (bogus)
329  *              first element of the list.
330  */
331 void add_to_linked_list(struct list_element * const first,
332                         struct list_element * const elem)
333 {
334         elem->prev = first;
335
336         if (first) {
337                 elem->next = first->next;
338                 if (elem->next) elem->next->prev = elem;
339                 first->next = elem;
340         } else {
341                 /* this is the bogus head of the list */
342                 elem->next = NULL;
343         }
344 }
345
346 /*
347  * remove_from_linked_list():
348  *              Removes an element (conn, ftran or dcache) from its linked list,
349  *              then frees it.
350  */
351 void remove_from_linked_list(struct list_element * const elem)
352 {
353         if (elem->prev != NULL) elem->prev->next = elem->next;
354         if (elem->next != NULL) elem->next->prev = elem->prev;
355         free(elem);
356 }
357
358 /*
359  * alloc_new_conn():
360  *              Allocates a new control connection (type `struct conn'),
361  *              initializes it, and adds it to the linked list. The connection
362  *              operates on the socket SOCK.
363  */
364 struct conn *alloc_new_conn(const int sock)
365 {
366         const unsigned int one = 1;
367         struct conn *c = (struct conn *)(malloc(sizeof(struct conn)));
368
369         if (c == NULL) return NULL;
370
371         if (sock != -1) {
372                 ioctl(sock, FIONBIO, &one);
373                 if (add_fd(sock, POLLIN) != 0) {
374                         /* temp unavail */
375                         send(sock, "230 Server too busy, please try again later.\r\n", 46, 0);
376                         close(sock);
377                         return NULL;
378                 }
379
380                 add_to_linked_list((struct list_element *)first_conn,
381                                    (struct list_element *)c);
382         } else {
383                 /* this is the bogus head of the list */
384                 c->next_conn = NULL;
385                 c->prev_conn = NULL;
386         }
387
388         c->transfer = NULL;
389         c->sock = sock;
390         c->buf_len = c->auth = c->rest_pos = 0;
391 #if WANT_ASCII
392         c->ascii_mode = 0;
393 #endif
394         c->free_me = 0;
395
396         /*
397          * equals:
398          * strcpy(c->curr_dir, "/");
399          * strcpy(c->last_cmd, "");
400          * strcpy(c->rename_from, "")
401          */
402         c->curr_dir[0] = '/';
403 #if WANT_FULLSCREEN
404         c->curr_dir[1] = c->last_cmd[0] = c->rename_from[0] = '\0';
405 #else
406         c->curr_dir[1] = c->rename_from[0] = '\0';
407 #endif
408
409         time(&(c->last_transfer));
410
411         /* list_clients(); */
412
413         return c;
414 }
415
416 /*
417  * alloc_new_ftran():
418  *              Allocates a new data connection (type `struct ftran'), and
419  *              adds it to the linked list. The connection operates on the
420  *              socket SOCK, and has the control connection C as its parent.
421  */
422 struct ftran *alloc_new_ftran(const int sock, const struct conn * const c)
423 {
424         struct ftran *f = (struct ftran *)(malloc(sizeof(struct ftran)));
425
426         if (f == NULL) return f;
427         if (c == NULL) {
428                 /* this is the bogus head of the list */
429                 f->next_ftran = NULL;
430                 f->prev_ftran = NULL;
431         } else {
432                 add_to_linked_list((struct list_element *)first_ftran,
433                                    (struct list_element *)f);
434         }
435
436 #if HAVE_MMAP
437         f->file_data = NULL;
438 #endif
439         f->owner = (struct conn * const)c;
440         f->sock = sock;
441         f->state = 0;
442         f->local_file = -1;
443
444 #if WANT_DCACHE
445         f->dir_cache = NULL;
446 #endif
447
448         f->dir_listing = 0;
449         return f;
450 }
451
452 /*
453  * destroy_conn():
454  *              Destroy a control connection, remove it from the linked
455  *              list, and clean up after it.
456  */
457 void destroy_conn(struct conn * const c)
458 {
459         if (c == NULL) return;
460         del_fd(c->sock);
461
462         destroy_ftran(c->transfer);
463         remove_from_linked_list((struct list_element *)c);
464 }
465
466 /*
467  * destroy_ftran():
468  *              Destroy a data connection, remove it from the linked list,
469  *              and clean up after it.
470  *
471  *              For some reason, TCP_CORK (Linux 2.2.x-only) doesn't flush
472  *              even _after_ the socket is closed, so we zero it just before
473  *              closing. We also zero just before sending the last packet,
474  *              as it seems to be needed on some systems.
475  *
476  *              If you wonder why I check for `defined(SOL_TCP)' and don't
477  *              provide an alternative, see the comments on init_file_transfer().
478  */
479 void destroy_ftran(struct ftran * const f)
480 {
481         const unsigned int zero = 0;
482
483         if (f == NULL) return;
484 #if defined(TCP_CORK) && defined(SOL_TCP)
485         setsockopt(f->sock, SOL_TCP, TCP_CORK, (void *)&zero, sizeof(zero));
486 #endif
487         del_fd(f->sock);
488
489 #if WANT_DCACHE
490         if (f->dir_cache) {
491                 time(&(f->dir_cache->last_used));
492                 f->dir_cache->use_count--;
493                 f->dir_cache = NULL;
494         } else
495 #endif
496 #if HAVE_MMAP
497                 if (f->file_data) {
498                         if (f->dir_listing) {
499                                 free(f->file_data);
500                                 f->file_data = NULL;
501                         } else {
502                                 munmap(f->file_data, f->size);
503                         }
504                 }
505
506         if (!f->dir_listing)
507 #endif
508                 if (f->local_file != -1) close(f->local_file);
509
510 #if !HAVE_MMAP
511         if (f->dir_listing) unlink(f->filename);
512 #endif
513
514         f->owner->transfer = NULL;
515
516 #if WANT_DCACHE
517         if (f->dir_cache != NULL) f->dir_cache->use_count--;
518 #endif
519
520         remove_from_linked_list((struct list_element *)f);
521 }
522
523 /*
524  * process_all_clients():
525  *              Processes all the _control_ connections in active_clients
526  *              (normally returned from a select(), there are at max
527  *              NUM_AC active connections in the set), sending them
528  *              through to the command parser if a command has been
529  *              entered.
530  */
531 #if HAVE_POLL
532 int process_all_clients(const int num_ac)
533 #else
534 int process_all_clients(const fd_set * const active_clients, const int num_ac)
535 #endif
536 {
537         struct conn *c = NULL, *next = first_conn->next_conn;
538         int checked_through = 0;
539
540         /* run through the linked list */
541         while (next != NULL && checked_through < num_ac) {
542                 int bytes_avail;
543
544                 c = next;
545                 next = c->next_conn;
546 #if HAVE_POLL
547                 if ((fds[c->sock].revents & (POLLIN|POLLERR|POLLHUP|POLLNVAL)) == 0) {
548                         continue;
549                 }
550 #else
551                 if (!FD_ISSET(c->sock, active_clients)) {
552                         continue;
553                 }
554 #endif
555
556                 checked_through++;
557
558                 bytes_avail = recv(c->sock, c->recv_buf + c->buf_len,
559                                    255 - c->buf_len, 0);
560                 if (bytes_avail <= 0) {
561                         /*
562                          * select() has already told us there's something about
563                          * this socket, so if we get a return value of zero, the
564                          * client has closed the socket. If we get a return value
565                          * of -1 (error), we close the socket ourselves.
566                          *
567                          * We do the same for poll(), even though we actually have
568                          * bits that tell us what is happening (in case of new 
569                          * input AND error/hangup at the same time, we do an
570                          * explicit check at the bottom of the loop as well).
571                          */
572                         destroy_conn(c);
573                         continue;
574                 }
575
576                 /* overrun = disconnect */
577                 if (c->buf_len + bytes_avail > 254) {
578                         numeric(c, 503, "Buffer overrun; disconnecting.");
579                         destroy_conn(c);
580                         continue;
581                 }
582
583                 c->buf_len += bytes_avail;
584                 parse_command(c);
585
586                 if (fds[c->sock].revents & (POLLERR|POLLHUP|POLLNVAL)) {
587                         destroy_conn(c);
588                 }
589         }
590         return checked_through;
591 }
592
593 /*
594  * finish_transfer():
595  *              Send a message that the transfer is completed, write xferlog
596  *              entry (optional), and update the last_transfer record in the
597  *              file transfer object. Goes for both uploads and downloads.
598  */
599 void finish_transfer(struct ftran * const f)
600 {
601         char finished[] = "226 Transfer complete.\r\n";
602         if (send(f->owner->sock, finished, sizeof(finished), 0) == -1 && errno == EPIPE) {
603                 destroy_conn(f->owner);
604                 return;
605         }
606         
607         time(&(f->owner->last_transfer));
608
609 #if WANT_XFERLOG
610         if (!f->dir_listing) {
611                 write_xferlog(f);
612         }
613 #endif
614
615         destroy_ftran(f);
616 #if WANT_FULLSCREEN
617         update_display(first_conn);
618 #endif
619 }
620
621 /*
622  * process_all_sendfiles():
623  *              Sends data to all clients that are ready to receive it.
624  *              Also checks for data connections that are newly-connected,
625  *              and handler xferlog entries for the files that are finished.
626  */
627 #if HAVE_POLL
628 int process_all_sendfiles(const int num_ac)
629 #else
630 int process_all_sendfiles(fd_set * const active_clients, const int num_ac)
631 #endif
632 {
633         struct ftran *f = NULL, *next = first_ftran->next_ftran;
634         int checked_through = 0;
635         int tempaddr_len = sizeof(struct sockaddr_in);
636  
637         while (next != NULL && checked_through < num_ac) {
638                 f = next;
639                 next = f->next_ftran;
640
641 #if WANT_UPLOAD
642                 if ((f->upload == 1) && (fds[f->sock].revents & POLLHUP)) {
643                         finish_transfer(f);
644                         continue;
645                 }
646 #endif
647
648 #if HAVE_POLL
649                 if (fds[f->sock].revents & (POLLERR|POLLNVAL|POLLHUP)) {
650                         destroy_ftran(f);
651                         continue;
652                 }
653 #endif
654
655                 /* state = 2: incoming PASV, state >3: send file */
656 #if HAVE_POLL
657                 if ((f->state < 2) || (f->state == 3) || (fds[f->sock].revents & (POLLIN|POLLOUT)) == 0) {
658 #else
659                 if ((f->state < 2) || (f->state == 3) || !FD_ISSET(f->sock, active_clients)) {
660 #endif
661                         continue;
662                 }
663
664                 checked_through++;
665
666 #if HAVE_POLL
667                 /* Nothing is needed for the poll() version? */
668 #else
669                 FD_CLR(f->sock, active_clients);
670 #endif
671
672                 if (f->state == 2) {            /* incoming PASV */
673                         const unsigned int one = 1;
674                         const int tempsock = accept(f->sock, &(f->sin), &tempaddr_len);
675
676                         del_fd(f->sock);
677
678                         if (tempsock == -1) {
679                                 destroy_ftran(f);
680                                 continue;
681                         }
682
683                         f->sock = tempsock;
684                         ioctl(f->sock, FIONBIO, &one);
685                         init_file_transfer(f);
686 #if WANT_UPLOAD
687                         if (f->upload) continue;
688 #endif
689                 }
690                 if (f->state < 5) {
691                         init_file_transfer(f);
692 #if WANT_UPLOAD
693                         if (f->upload) continue;
694 #endif
695                 }
696
697                 /* for download, we send the first packets right away */
698 #if WANT_UPLOAD
699                 if (f->upload) {
700                         if (do_upload(f)) continue;
701                 } else
702 #endif
703                         if (do_download(f)) continue;
704
705                 /* do_{upload,download} returned 0, the transfer is complete */
706                 finish_transfer(f);
707 #if WANT_FULLSCREEN
708                 update_display(first_conn);
709 #endif
710         }
711
712         return checked_through;
713 }
714
715 #if WANT_UPLOAD
716 int do_upload(struct ftran *f)
717 {
718         char upload_buf[16384];
719         int size;
720 #if WANT_ASCII
721         /* keep buffer size small in ascii transfers 
722            to prevent process stalling while filtering
723            data on slower computers */
724
725         /* 
726          * This isn't a big problem, since we won't get
727          * packets this big anyway, the biggest I've seen
728          * was 12kB on 100mbit (but that was from a Windows
729          * machine), so I've reduced the buffer from 64 kB
730          * to 16 kB :-) --Steinar
731          */
732         const int maxlen = (f->ascii_mode == 1) ? 4096 : 16384;
733 #else
734         const int maxlen = 16384;
735 #endif
736
737         errno = 0;
738         size = recv(f->sock, upload_buf, maxlen, 0);
739         if (size >= 0) {
740                 f->pos += size;
741         }
742 #if WANT_ASCII
743         if (size > 0 && f->ascii_mode == 1) {
744                 size = ascii_uploadfilter(upload_buf, size);
745         }
746 #endif
747         if (size > 0 && (write(f->local_file, upload_buf, size) == size)) {
748                 return 1;
749         } else if (size == -1) {
750                 /* don't write xferlog... or? */
751                 numeric(f->owner, 426, strerror(errno));
752                 destroy_ftran(f);
753                 return 1;
754         }
755         return 0;
756
757 #endif
758
759 int do_download(struct ftran *f)
760 {
761 #if defined(TCP_CORK) && defined(SOL_TCP)
762         unsigned int zero = 0;
763 #endif
764         char *sendfrom_buf;
765         int bytes_to_send;
766         int more_to_send = 0;
767
768 #if !HAVE_MMAP
769         char buf[MAX_BLOCK_SIZE];
770 #endif
771 #if WANT_ASCII
772         char buf2[MAX_BLOCK_SIZE * 2];
773 #endif
774         int size;
775
776 #if HAVE_LINUX_SENDFILE || HAVE_BSD_SENDFILE
777         /*
778          * We handle the optimal case first, which is sendfile().
779          * Here we use a rather simplified sending `algorithm',
780          * leaving most of the quirks to the system calls.
781          */
782         if (sendfile_supported == 1 && f->dir_listing == 0) {
783                 int err;
784                 size = f->size - f->pos;
785
786                 if (size > f->block_size) size = f->block_size;
787                 if (size < 0) size = 0;
788
789 #ifdef TCP_CORK
790                 if (size != f->block_size) {
791                         setsockopt(f->sock, SOL_TCP, TCP_CORK, (void *)&zero, sizeof(zero));
792                 }       
793 #endif
794
795                 err = mysendfile(f->sock, f->local_file, &f->pos, size);
796                 return (f->pos < f->size) && (err > -1);
797         }
798 #endif
799
800 #if HAVE_MMAP
801         size = f->size - f->pos;
802
803         if (size > f->block_size) size = f->block_size;
804         if (size < 0) size = 0;
805
806         bytes_to_send = size;
807         sendfrom_buf = f->file_data + f->pos;
808 #else
809         bytes_to_send = read(f->local_file, buf, f->block_size);
810         sendfrom_buf = buf;
811 #endif
812
813         if (bytes_to_send == f->block_size) more_to_send = 1;
814
815 #if WANT_ASCII
816         if (f->ascii_mode == 1) {
817                 bytes_to_send = ascii_downloadfilter(sendfrom_buf,
818                                                      buf2, bytes_to_send);
819                 sendfrom_buf = buf2;
820         }
821 #endif /* WANT_ASCII */
822
823 #if defined(TCP_CORK) && defined(SOL_TCP)
824         /* if we believe this is the last packet, unset TCP_CORK */
825         if (more_to_send == 0) {
826                 setsockopt(f->sock, SOL_TCP, TCP_CORK, (void *)&zero, sizeof(zero));
827         }
828 #endif
829
830         size = send(f->sock, sendfrom_buf, bytes_to_send, 0);
831         if (size < bytes_to_send) more_to_send = 1;
832
833 #if WANT_ASCII
834         if (f->ascii_mode == 1 && size < bytes_to_send && size > 0) {
835                 size = ascii_findlength(sendfrom_buf, size);
836         }
837 #endif
838
839 #if HAVE_MMAP
840         if (size > 0) f->pos += size;
841 #endif
842
843         return more_to_send;
844 }
845
846 #if WANT_XFERLOG
847 void write_xferlog(struct ftran *f)
848 {
849         char temp[256];
850         time_t now = time(NULL);
851         struct tm *t = localtime(&now);
852
853         if (xferlog == NULL) return;
854
855         strftime(temp, 256, "%a  %b %d %H:%M:%S %Y", t);
856 #if WANT_UPLOAD
857         fprintf(xferlog, "%s %u %s %lu %s b _ %c %c %s ftp 0 *\n",
858 #else
859         fprintf(xferlog, "%s %u %s %lu %s b _ o %c %s ftp 0 *\n",
860 #endif
861                 temp, (int)(difftime(now, f->tran_start)),
862                 inet_ntoa(f->sin.sin_addr), f->size,
863                 f->filename,
864 #if WANT_UPLOAD
865                 (f->upload) ? 'i' : 'o',
866 #endif
867                 (f->owner->auth == 4) ? 'r' : 'a', f->owner->username);
868         fflush(xferlog);
869
870 #if 0
871         /* vim needs this to work properly :-( */
872         )
873 #endif
874 }
875 #endif
876
877 #if 0
878 /* Reallocate the buggers constantly */
879 void screw_clients()
880 {
881         struct conn *c = first_conn;
882         int maxloops = MAXCLIENTS;
883
884         while (c && c->next_conn) {
885                 struct conn *temp = malloc(sizeof(*temp));
886                 if (!temp) break;
887                 *temp = *(c->next_conn);
888                 if (temp->transfer) temp->transfer->owner = temp;
889                 memset(c->next_conn, 0, sizeof(struct conn));
890                 free(c->next_conn);
891                 temp->prev_conn = c;
892                 c->next_conn = temp;
893                 c = c->next_conn;
894                 maxloops--;
895                 assert(maxloops > 0);
896         }
897 }
898 #endif
899
900 /*
901  * main():      Main function. Does the initialization, and contains
902  *              the main server loop. Takes no command-line arguments
903  *              (see README for justification).
904  */
905 int main(void)
906 {
907         int server_sock;
908
909 #if HAVE_POLL
910         /* the sets are declared globally if we use poll() */
911 #else
912         fd_set fds, fds_send;
913 #endif
914
915         /*setlinebuf(stdout);*/
916         setvbuf(stdout, (char *)NULL, _IOLBF, 0); 
917
918         signal(SIGPIPE, SIG_IGN);
919
920         printf("BetaFTPD version %s, Copyright (C) 1999-2000 Steinar H. Gunderson\n", VERSION);
921         puts("BetaFTPD comes with ABSOLUTELY NO WARRANTY; for details see the file");
922         puts("COPYING. This is free software, and you are welcome to redistribute it");
923         puts("under certain conditions; again see the file COPYING for details.");
924         puts("");
925
926         /* we don't need stdin */
927         close(0);
928
929 #if HAVE_POLL
930         {
931                 int i;
932                 for (i = 0; i < FD_MAX; i++) {
933                         fds[i].fd = -1;
934                         fds[i].events = 0;
935                 }
936         }
937 #else
938         FD_ZERO(&master_fds);
939         FD_ZERO(&master_send_fds);
940 #endif
941
942         server_sock = create_server_socket();
943
944 #if WANT_FULLSCREEN
945         printf("%cc", (char)27);        /* reset and clear the screen */
946 #endif
947
948         /* init dummy first connection */
949         first_conn = alloc_new_conn(-1);
950         first_ftran = alloc_new_ftran(0, NULL);
951 #if WANT_DCACHE
952         first_dcache = alloc_new_dcache();
953 #endif
954
955 #if WANT_XFERLOG
956 #if WANT_NONROOT
957 #warning No xferlog support for nonroot yet
958 #else
959         /* open xferlog */
960         xferlog = fopen("/var/log/xferlog", "a");
961         if (xferlog == NULL) xferlog = fopen("/usr/adm/xferlog", "a");
962
963         if (xferlog != NULL) {
964                  fseek(xferlog, 0L, SEEK_END);
965         }
966 #endif
967 #endif
968
969 #if WANT_FORK
970         switch (fork()) {
971         case -1:
972                 perror("fork()");
973                 puts("fork() failed, exiting");
974                 exit(0);
975         case 0:
976                 break;
977         default:
978                 puts("BetaFTPD forked into the background");
979                 exit(0);
980         }
981 #else
982         puts("BetaFTPD active");
983 #endif
984
985         /* set timeout alarm here (after the fork) */
986         alarm(60);
987         signal(SIGALRM, handle_alarm);
988
989 #if HAVE_LINUX_SENDFILE || HAVE_BSD_SENDFILE
990         /* check that sendfile() is really implemented (same check as configure does) */
991         {
992                 int out_fd = 1, in_fd = 0;
993                 off_t offset = 0;
994                 size_t size = 1024;
995
996                 errno = 0;
997                 mysendfile(out_fd, in_fd, &offset, size);
998                 if (errno == ENOSYS) sendfile_supported = 0;
999         }
1000 #endif
1001
1002         for ( ;; ) {
1003                 int i;
1004 #ifndef HAVE_POLL
1005                 struct timeval timeout;
1006 #endif
1007
1008                 /*screw_clients();       //look for memory errors */
1009
1010 #if WANT_FULLSCREEN
1011                 update_display(first_conn);
1012 #endif
1013
1014 #if HAVE_POLL
1015                 i = poll(fds, highest_fds + 1, 60000);
1016 #if 0
1017                 {
1018                         int j;
1019                         for (j=0; j<=highest_fds; j++) {
1020                                 if (fds[j].revents) printf("fds[%d].fd %d, .revents %x\n", j, fds[j].fd, fds[j].revents);
1021                         }
1022                 }
1023 #endif
1024 #else
1025                 /* reset fds (gets changed by select()) */
1026                 fds = master_fds;
1027                 fds_send = master_send_fds;
1028
1029                 /*
1030                  * wait up to 60 secs for any activity 
1031                  */
1032                 timeout.tv_sec = 60;
1033                 timeout.tv_usec = 0;
1034
1035                 i = select(FD_SETSIZE, &fds, &fds_send, NULL, &timeout);
1036 #endif
1037
1038                 if (i == -1) {
1039                         if (errno == EBADF) {
1040 #if !HAVE_POLL
1041                                 /* don't like this, but we have to */
1042                                 clear_bad_fds(&server_sock);
1043 #endif
1044                         } else if (errno != EINTR) {
1045 #if HAVE_POLL
1046                                 perror("poll()");
1047 #else
1048                                 perror("select()");
1049 #endif
1050                                 continue;
1051                         }
1052                 }
1053
1054 #if HAVE_POLL
1055                 /* fix an invalid server socket */
1056                 if (fds[server_sock].revents & POLLERR) {
1057                         del_fd(server_sock);
1058                         server_sock = create_server_socket();
1059                 }
1060 #endif
1061
1062                 /* remove any timed out sockets */
1063                 if (time_to_check) {
1064                         time_out_sockets();
1065 #if WANT_DCACHE
1066                         time_out_dcache();
1067 #endif
1068                         time_to_check = 0;
1069                 }
1070
1071                 if (i <= 0) continue;
1072
1073 #if HAVE_POLL
1074                 i -= process_all_sendfiles(i);
1075                 process_all_clients(i);
1076 #else
1077                 /* sends are given highest `priority' */
1078                 i -= process_all_sendfiles(&fds_send, i);
1079
1080                 /* incoming PASV connections and uploads */
1081                 i -= process_all_sendfiles(&fds, i);
1082
1083                 /*
1084                  * check the incoming PASV connections first, so
1085                  * process_all_clients() won't be confused.
1086                  */ 
1087                 process_all_clients(&fds, i);
1088 #endif
1089
1090 #if HAVE_POLL
1091                 if (fds[server_sock].revents & POLLIN) {
1092 #else
1093                 if (FD_ISSET(server_sock, &fds)) {
1094 #endif
1095                         accept_new_client(&server_sock);
1096                         i--;
1097                 }
1098         }
1099 }
1100
1101 /*
1102  * accept_new_client():
1103  *              Open a socket for the new client, say hello and put it in
1104  *              among the others.
1105  */
1106 void accept_new_client(int * const server_sock)
1107 {
1108         struct sockaddr_in tempaddr;
1109         int tempaddr_len = sizeof(tempaddr);
1110         const int tempsock = accept(*server_sock, (struct sockaddr *)&tempaddr, &tempaddr_len);
1111
1112         static int num_err = 0;
1113
1114         if (tempsock < 0) {
1115 #ifndef WANT_FORK
1116                 perror("accept()");
1117 #endif
1118                 close(tempsock);
1119                 if ((errno == EBADF || errno == EPIPE) && ++num_err >= 3) {
1120                         del_fd(*server_sock);
1121                         *server_sock = create_server_socket();
1122                 }
1123         } else {
1124                 struct conn * const c = alloc_new_conn(tempsock);
1125                 num_err = 0;
1126                 if (c != NULL) {
1127                         char hello[] = "220 BetaFTPD " VERSION " ready.\r\n";
1128                         
1129 #if WANT_STAT
1130                         memcpy(&(c->addr), &tempaddr, sizeof(struct sockaddr));
1131 #endif
1132
1133                         if (send(tempsock, hello, sizeof(hello), 0) == -1 && errno == EPIPE)
1134                                 destroy_conn(c);
1135                 }
1136         }
1137 }
1138
1139 /*
1140  * time_out_sockets():
1141  *              Times out any socket that has not had any transfer
1142  *              in the last 15 minutes (delay not customizable by FTP
1143  *              user -- you must change it in ftpd.h).
1144  *
1145  *              Note that RFC959 explicitly states that there are no
1146  *              `spontaneous' error replies, yet we have to do it to
1147  *              get the message through at all.
1148  *
1149  *              If we check this list for every accept() call, it's
1150  *              actually eating a lot of CPU time, so we only check
1151  *              it every minute. We used to do a time() call here,
1152  *              but we've changed to do use an alarm() call and set
1153  *              the time_to_check_flag in the SIGALRM handler.
1154  */
1155 RETSIGTYPE handle_alarm(int signum)
1156 {
1157         time_to_check = 1;
1158         alarm(60);
1159
1160         /* for libc5 */
1161         signal(SIGALRM, handle_alarm);
1162 }
1163
1164 void time_out_sockets()
1165 {
1166         struct conn *c = NULL, *next = first_conn->next_conn;
1167         time_t now = time(NULL);  
1168
1169         /* run through the linked list */
1170         while (next != NULL) {
1171                 c = next;
1172                 next = c->next_conn;
1173
1174                 if ((c->transfer == NULL || c->transfer->state != 5) &&
1175                     (now - c->last_transfer > TIMEOUT_SECS)) {
1176                         /* RFC violation? */
1177                         numeric(c, 421, "Timeout (%u minutes): Closing control connection.", TIMEOUT_SECS/60);
1178                         destroy_conn(c);
1179                 }
1180         }
1181 }
1182
1183 /*
1184  * remove_bytes():
1185  *              Remove some bytes from the incoming buffer. This gives
1186  *              room for new data on the control connection, and should
1187  *              be called when the code has finished using the data.
1188  *              (This is done automatically for all commands, so you
1189  *              normally need not worry about it.)
1190  */
1191 void remove_bytes(struct conn * const c, const int num)
1192 {
1193         if (c->buf_len <= num) {
1194                 c->buf_len = 0;
1195         } else {
1196                 c->buf_len -= num;
1197                 memmove(c->recv_buf, c->recv_buf + num, c->buf_len);
1198         }
1199 }
1200
1201 /*
1202  * numeric():   Sends a numeric FTP reply to the client. Note that
1203  *              you can use this command much the same way as you
1204  *              would use a printf() (with all the normal %s, %d,
1205  *              etc.), since it actually uses printf() internally.
1206  *
1207  *              This command doesn't actually SEND the data -- it
1208  *              just puts it in a buffer which is sent after the
1209  *              command handler has completed. The reasons for this
1210  *              are simple -- it makes error checking and cleanup
1211  *              MUCH cleaner, so we won't have to check for errors
1212  *              in every single little branch of the code.
1213  */
1214 void numeric(struct conn * const c, const int numeric, const char * const format, ...)
1215 {
1216         char fmt[256];
1217         va_list args;
1218         int i, err;
1219         int in_buf = strlen(message_buf);
1220
1221         snprintf(fmt, 256, "%03u %s\r\n", numeric, format);
1222
1223         va_start(args, format);
1224         i = vsnprintf(message_buf + in_buf, 512 - in_buf, fmt, args);
1225         va_end(args);
1226 }
1227
1228 /*
1229  * init_file_transfer():
1230  *              Initiate a data connection for sending. This does not open
1231  *              any files etc., just does whatever is needed for the socket,
1232  *              if needed. It does, however, send the 150 reply to the client,
1233  *              and mmap()s if needed.
1234  *
1235  *              Linux systems (others?) define SOL_TCP right away, which saves us
1236  *              some grief and code size. Perhaps using getprotoent() is the `right'
1237  *              way, but it's bigger :-) (Optionally, we could figure it out at
1238  *              configure time, of course...)
1239  *
1240  *              For optimal speed, we use the Linux 2.2.x-only TCP_CORK flag if
1241  *              possible. Note that this is only defined in the first `arm' --
1242  *              we silently assume that Linux is the only OS supporting this
1243  *              flag. This might be an over-generalization, but I it looks like
1244  *              we'll have to depend on it other places as well, so we might
1245  *              just as well be evil here.
1246  */
1247 void init_file_transfer(struct ftran * const f)
1248 {
1249         struct linger ling;
1250         struct conn * const c = f->owner;
1251         const int mode = IPTOS_THROUGHPUT, zero = 0, one = 1;
1252         struct stat buf;
1253         int events;
1254
1255 #ifdef SOL_TCP
1256         /* we want max throughput */
1257         setsockopt(f->sock, SOL_IP, IP_TOS, (void *)&mode, sizeof(mode));
1258         setsockopt(f->sock, SOL_TCP, TCP_NODELAY, (void *)&zero, sizeof(zero));
1259 #ifdef TCP_CORK
1260         setsockopt(f->sock, SOL_TCP, TCP_CORK, (void *)&one, sizeof(one));
1261 #endif
1262 #else
1263         /* should these pointers be freed afterwards? */
1264         {
1265                 getprotoent();  /* legal? */
1266                 {
1267                         const struct protoent * const pe_ip  = getprotobyname("ip");
1268                         const struct protoent * const pe_tcp = getprotobyname("tcp");
1269                         setsockopt(f->sock, pe_ip->p_proto, IP_TOS, (void *)&mode, sizeof(mode));
1270                         setsockopt(f->sock, pe_tcp->p_proto, TCP_NODELAY, (void *)&zero, sizeof(zero));
1271                 }
1272                 endprotoent();
1273         }
1274 #endif
1275
1276         if (f->dir_listing) {
1277                 f->block_size = MAX_BLOCK_SIZE;
1278         } else {
1279 #if WANT_ASCII
1280                 f->ascii_mode = f->owner->ascii_mode;
1281 #endif
1282
1283                 /* find the preferred block size */
1284                 f->block_size = MAX_BLOCK_SIZE;
1285                 if (fstat(f->local_file, &buf) != -1 &&
1286                     buf.st_blksize < MAX_BLOCK_SIZE) {
1287                         f->block_size = buf.st_blksize;
1288                 }
1289         }
1290
1291         f->state = 5;
1292
1293         events = POLLOUT;
1294 #if WANT_UPLOAD
1295         if (f->upload) {
1296                 events = POLLIN;
1297         }
1298 #endif /* WANT_UPLOAD */
1299
1300         TRAP_ERROR(add_fd(f->sock, events), 500, return);
1301
1302         ling.l_onoff = 0;
1303         ling.l_linger = 0;
1304         setsockopt(f->sock, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling));
1305
1306 #if !HAVE_POLL && WANT_UPLOAD
1307         /*
1308          * if we let an upload socket stay in master_send_fds, we would
1309          * get data that would fool us into closing the socket... (sigh)
1310          */
1311         if (f->upload) {
1312                 FD_CLR(f->sock, &master_send_fds);
1313                 FD_SET(f->sock, &master_fds);
1314         }
1315 #endif
1316
1317         time(&(f->owner->last_transfer));
1318         
1319         if (f->dir_listing) {
1320                 /* include size? */
1321                 numeric(f->owner, 150, "Opening ASCII mode data connection for directory listing.");
1322         } else {
1323                 /*
1324                  * slightly kludged -- perhaps we should kill the second arm,
1325                  * at the expense of code size? Or perhaps we could collapse
1326                  * the two possible replies into one?
1327                  */
1328 #if WANT_ASCII
1329                 if (f->ascii_mode
1330 #if WANT_UPLOAD
1331                         || f->upload
1332 #endif /* WANT_UPLOAD */
1333                 ) {
1334                         numeric(f->owner, 150, "Opening %s mode data connection for '%s'",
1335                                 (f->ascii_mode) ? "ASCII" : "BINARY", f->filename);
1336                 } else {
1337                         numeric(f->owner, 150, "Opening %s mode data connection for '%s' (%u bytes)",
1338                                 (f->ascii_mode) ? "ASCII" : "BINARY", f->filename,
1339                                 f->size); 
1340                 }
1341 #else /* !WANT_ASCII */
1342 #if WANT_UPLOAD
1343                 if (f->upload) {
1344                         numeric(f->owner, 150, "Opening BINARY mode data connection for '%s'", f->filename);
1345                 } else
1346 #endif /* WANT_UPLOAD */
1347                         numeric(f->owner, 150, "Opening BINARY mode data connection for '%s' (%u bytes)", f->filename, f->size);
1348 #endif /* !WANT_ASCII */
1349         }
1350
1351         /*
1352          * This section _could_ in theory be more optimized, but it's
1353          * much easier this way, and hopefully, the compiler will be
1354          * intelligent enough to optimize most of this away. The idea
1355          * is, some modes _require_ use of mmap (or not). The preferred
1356          * thing is using mmap() when we don't have sendfile(), and not
1357          * using mmap() when we have sendfile().
1358          */
1359 #if HAVE_MMAP
1360         if (f->dir_listing == 0) {
1361 #if HAVE_LINUX_SENDFILE || HAVE_BSD_SENDFILE
1362                 int do_mmap = (sendfile_supported) ? 0 : 1;
1363 #else
1364                 int do_mmap = 1;
1365 #endif
1366 #if WANT_ASCII
1367                 if (f->ascii_mode == 1) do_mmap = 1;
1368 #endif
1369 #if WANT_UPLOAD
1370                 if (f->upload == 1) do_mmap = 0;
1371 #endif
1372  
1373                 if (do_mmap == 1) {
1374                         f->file_data = mmap(NULL, f->size, PROT_READ, MAP_SHARED, f->local_file, 0);
1375                         if (f->file_data == MAP_FAILED) f->file_data = NULL;
1376                 } else {
1377                         f->file_data = NULL;
1378                 }
1379                 f->pos = f->owner->rest_pos;
1380         }
1381 #else /* !HAVE_MMAP */
1382         lseek(f->local_file, f->owner->rest_pos, SEEK_SET);
1383 #endif
1384 }
1385
1386 /*
1387  * create_server_socket():
1388  *              Create and bind a server socket, that we can use to
1389  *              listen to new clients on.
1390  */
1391 int create_server_socket()
1392 {
1393         int server_sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
1394         const unsigned int one = 1;
1395         struct sockaddr_in addr;
1396         int err;
1397         
1398         /*
1399          * In the `perfect' world, if an address was in use, we could
1400          * just wait for the kernel to clear everything up, and everybody
1401          * would be happy. But when you just found out your server socket
1402          * was invalid, it has to be `re-made', and 3000 users are trying
1403          * to access your fileserver, I think it's nice that it comes
1404          * up right away... hence this option.
1405          */
1406         setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
1407         ioctl(server_sock, FIONBIO, &one);      /* just in case */
1408
1409         addr.sin_family = AF_INET;
1410         addr.sin_addr.s_addr = INADDR_ANY;
1411         addr.sin_port = htons(FTP_PORT);
1412
1413         do {
1414                 err = bind(server_sock, (struct sockaddr *)&addr, sizeof(struct sockaddr));
1415
1416                 if (err == -1) {
1417                         perror("bind()");
1418                 
1419                         /* try to recover from recoverable errors... */
1420                         if (errno == ENOMEM || errno == EADDRINUSE) {
1421                                 puts("Waiting 1 sec before trying again...");
1422                                 sleep(1);
1423                         } else {
1424                                 puts("Giving up.");
1425                                 exit(1); 
1426                         }
1427                 }
1428         } while (err == -1);
1429
1430         listen(server_sock, 20);
1431
1432         err = add_fd(server_sock, POLLIN);
1433         if (err) {
1434                 perror("add_fd");
1435                 return -1;
1436         }
1437
1438         return server_sock;
1439 }
1440
1441 #if !HAVE_POLL
1442 /*
1443  * clear_bad_fds():
1444  *              Try to find invalid socket descriptors, and clean them.
1445  *              The methods used are rather UGLY, but I can't think of
1446  *              any good way of checking e.g. server_sock without
1447  *              doing anything to it :-(
1448  *
1449  *              poll() is able to do this in a much cleaner way, which 
1450  *              we use if we use poll(). That checking isn't done here,
1451  *              though.
1452  */
1453 void clear_bad_fds(int * const server_sock)
1454 {
1455         {
1456                 fd_set fds;
1457                 struct timeval tv = { 0, 0 };
1458
1459                 FD_ZERO(&fds);
1460                 FD_SET(*server_sock, &fds); 
1461                 if (select(*server_sock, &fds, NULL, NULL, &tv) == -1) {
1462                         FD_CLR(*server_sock, &master_fds);
1463                         close(*server_sock);
1464                         *server_sock = create_server_socket();
1465                 }
1466         }
1467
1468         /* could do this (conn, ftran) in any order */
1469         {
1470                 struct conn *c = NULL, *next = first_conn->next_conn;
1471         
1472                 /* run through the linked list */
1473                 while (next != NULL) {
1474                         char buf[1];
1475
1476                         c = next;
1477                         next = c->next_conn;
1478
1479                         if (read(c->sock, &buf, 0) == -1 &&
1480                             errno == EBADF) {
1481                                 destroy_conn(c);
1482                         }
1483                 }
1484         }
1485
1486         {
1487                 struct ftran *f = NULL, *next = first_ftran->next_ftran;
1488         
1489                 while (next != NULL) {
1490                         char buf[1];
1491
1492                         f = next;
1493                         next = f->next_ftran;
1494
1495                         if (read(f->sock, &buf, 0) == -1 &&
1496                             errno == EBADF) {
1497                                 destroy_ftran(f);
1498                         }
1499                 }
1500         }       
1501 }
1502 #endif
1503
1504 #if HAVE_BSD_SENDFILE || HAVE_LINUX_SENDFILE
1505 int mysendfile(int sock, int fd, off_t *offset, size_t count)
1506 {
1507 #if HAVE_BSD_SENDFILE
1508         int err;
1509         off_t ssize = 0;
1510         
1511         err = sendfile(fd, sock, *offset, count, NULL, &ssize, 0);
1512         if (ssize > 0) *offset += ssize;
1513 #else /* !HAVE_BSD_SENDFILE */
1514 #if HAVE_LINUX_SENDFILE
1515         return sendfile(sock, fd, offset, count);
1516 #endif /* HAVE_LINUX_SENDFILE */
1517 #endif /* !HAVE_BSD_SENDFILE */
1518 }
1519 #endif /* HAVE_BSD_SENDFILE || HAVE_LINUX_SENDFILE */
1520
1521
1522 #if WANT_MESSAGE
1523 /*
1524  * dump_file(): Dumps a file on the control connection. Used for
1525  *              welcome messages and the likes. Note that outbuf
1526  *              is so big, to prevent any crashing from users creating
1527  *              weird .message files (like 1024 LFs)... The size of
1528  *              the file is limited to 1024 bytes (by truncation).
1529  */
1530 void dump_file(struct conn * const c, const int num, const char * const filename)
1531 {
1532         char buf[1024], outbuf[5121];
1533         char *ptr = outbuf + 4;
1534         int i, j = -1;
1535
1536         const int dumpfile = open(filename, O_RDONLY);
1537         if (dumpfile == -1) return;
1538
1539         i = read(dumpfile, buf, 1024);
1540         if (i <= 0) {
1541                 close(dumpfile);
1542                 return;
1543         }
1544
1545         sprintf(outbuf, "%03u-", num);
1546         while (++j < i) {
1547                 *ptr++ = buf[j];
1548                 if (buf[j] == '\n') {
1549                         sprintf(ptr, "%03u-", num);
1550                         ptr += 4;
1551                 }
1552         }
1553         *ptr++ = '\n';
1554
1555         send(c->sock, outbuf, ptr - outbuf, 0);
1556         close(dumpfile);
1557 }
1558
1559
1560 /*
1561  * list_readme():
1562  *              Lists all README file in the current (ie. OS current)
1563  *              directory, in a 250- message.
1564  */
1565 void list_readmes(struct conn * const c)
1566 {
1567         glob_t pglob;
1568         const time_t now = time(NULL);
1569         int i;
1570
1571         if (glob("README*", 0, NULL, &pglob) != 0) return;
1572
1573         for (i = 0; i < pglob.gl_pathc; i++) {
1574                 struct stat buf;
1575                 char str[256];
1576                 char *tm;
1577
1578                 if (stat(pglob.gl_pathv[i], &buf) == -1) continue;
1579
1580                 /* remove trailing LF */
1581                 tm = ctime(&buf.st_mtime);
1582                 tm[strlen(tm) - 1] = 0;
1583
1584                 snprintf(str, 256, "250-Please read the file %s\r\n"
1585                                    "250-\tIt was last modified %s - %ld days ago\r\n",
1586                         pglob.gl_pathv[i], tm,
1587                         (now - buf.st_mtime) / 86400);
1588                 send(c->sock, str, strlen(str), 0);
1589         }
1590         globfree(&pglob);
1591 }
1592 #endif
1593