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