]> git.sesse.net Git - betaftpd/blob - ftpd.c
do_upload(): Removed unused variable `avail\'.
[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 & (POLLERR|POLLHUP|POLLNVAL)) {
583                         destroy_conn(c);
584                         continue;
585                 }
586                 if (!fds[c->sock].revents & POLLIN) {
587                         continue;
588                 }
589 #else
590                 if (!FD_ISSET(c->sock, active_clients)) {
591                         continue;
592                 }
593 #endif
594
595                 checked_through++;
596
597                 bytes_avail = recv(c->sock, c->recv_buf + c->buf_len,
598                                    255 - c->buf_len, 0);
599                 if (bytes_avail <= 0) {
600                         /*
601                          * select() has already told us there's something about
602                          * this socket, so if we get a return value of zero, the
603                          * client has closed the socket. If we get a return value
604                          * of -1 (error), we close the socket ourselves.
605                          *
606                          * Just to be safe, we include this code for poll() as
607                          * well.
608                          */
609                         destroy_conn(c);
610                         continue;
611                 }
612
613                 /* overrun = disconnect */
614                 if (c->buf_len + bytes_avail > 254) {
615                         numeric(c, 503, "Buffer overrun; disconnecting.");
616                         destroy_conn(c);
617                         continue;
618                 }
619
620                 c->buf_len += bytes_avail;
621                 parse_command(c);
622         }
623         return checked_through;
624 }
625
626 /*
627  * process_all_sendfiles():
628  *              Sends data to all clients that are ready to receive it.
629  *              Also checks for data connections that are newly-connected,
630  *              and handler xferlog entries for the files that are finished.
631  */
632 #if HAVE_POLL
633 int process_all_sendfiles(const int num_ac)
634 #else
635 int process_all_sendfiles(fd_set * const active_clients, const int num_ac)
636 #endif
637 {
638         struct ftran *f = NULL, *next = first_ftran->next_ftran;
639         int checked_through = 0;
640         struct sockaddr tempaddr;
641         int tempaddr_len = sizeof(tempaddr);
642  
643         while (next != NULL && checked_through < num_ac) {
644                 f = next;
645                 next = f->next_ftran;
646
647 #if HAVE_POLL
648                 if (fds[f->sock].revents & (POLLHUP|POLLERR|POLLNVAL)) {
649                         destroy_ftran(f);
650                         continue;
651                 }
652 #endif
653
654                 /* state = 2: incoming PASV, state >3: send file */
655 #if HAVE_POLL
656                 if ((f->state < 2) || (f->state == 3) ||  (fds[f->sock].revents & (POLLIN|POLLOUT)) == 0) {
657 #else
658                 if ((f->state < 2) || (f->state == 3) || !FD_ISSET(f->sock, active_clients)) {
659 #endif
660                         continue;
661                 }
662
663                 checked_through++;
664
665 #if HAVE_POLL
666                 /* Nothing is needed for the poll() version? */
667 #else
668                 FD_CLR(f->sock, active_clients);
669 #endif
670
671                 if (f->state == 2) {            /* incoming PASV */
672                         const unsigned int one = 1;
673                         const int tempsock = accept(f->sock, (struct sockaddr *)&tempaddr,
674                                                         &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                 numeric(f->owner, 226, "Transfer complete.");
707                 time(&(f->owner->last_transfer));
708
709 #if WANT_XFERLOG
710                 if (!f->dir_listing) {
711                         write_xferlog(f);
712                 }
713 #endif
714
715                 destroy_ftran(f);
716 #if WANT_FULLSCREEN
717                 update_display(first_conn);
718 #endif
719         }
720
721         return checked_through;
722 }
723
724 #if WANT_UPLOAD
725 int do_upload(struct ftran *f)
726 {
727         char upload_buf[16384];
728         int size;
729 #if WANT_ASCII
730         /* keep buffer size small in ascii transfers 
731            to prevent process stalling while filtering
732            data on slower computers */
733
734         /* 
735          * This isn't a big problem, since we won't get
736          * packets this big anyway, the biggest I've seen
737          * was 12kB on 100mbit (but that was from a Windows
738          * machine), so I've reduced the buffer from 64 kB
739          * to 16 kB :-) --Steinar
740          */
741         const int maxlen = (f->ascii_mode == 1) ? 4096 : 16384;
742 #else
743         const int maxlen = 16384;
744 #endif
745
746         errno = 0;
747         size = recv(f->sock, upload_buf, maxlen, 0);
748         if (size >= 0) {
749                 f->pos += size;
750         }
751 #if WANT_ASCII
752         if (size > 0 && f->ascii_mode == 1) {
753                 size = ascii_uploadfilter(upload_buf, size);
754         }
755 #endif
756         if (size > 0 && (write(f->local_file, upload_buf, size) == size)) {
757                 return 1;
758         } else if (size == -1) {
759                 /* don't write xferlog... or? */
760                 numeric(f->owner, 426, strerror(errno));
761                 destroy_ftran(f);
762                 return 1;
763         }
764         return 0;
765
766 #endif
767
768 int do_download(struct ftran *f)
769 {
770 #if defined(TCP_CORK) && defined(SOL_TCP)
771         unsigned int zero = 0;
772 #endif
773         char *sendfrom_buf;
774         int bytes_to_send;
775         int more_to_send = 0;
776
777 #if !HAVE_MMAP
778         char buf[MAX_BLOCK_SIZE];
779 #endif
780 #if WANT_ASCII
781         char buf2[MAX_BLOCK_SIZE * 2];
782 #endif
783         int size;
784
785 #if HAVE_LINUX_SENDFILE
786         /*
787          * We handle the optimal case first, which is sendfile().
788          * Here we use a rather simplified sending `algorithm',
789          * leaving most of the quirks to the system calls.
790          */
791         if (f->dir_listing == 0
792 #if WANT_UPLOAD
793                 && f->upload == 0
794 #endif
795         ) {
796                 int err;
797                 size = f->size - f->pos;
798
799                 if (size > f->block_size) size = f->block_size;
800                 if (size < 0) size = 0;
801
802 #ifdef TCP_CORK
803                 if (size != f->block_size) {
804                         setsockopt(f->sock, SOL_TCP, TCP_CORK, (void *)&zero, sizeof(zero));
805                 }       
806 #endif
807
808                 err = sendfile(f->sock, f->local_file, &f->pos, size);
809                 return (f->pos < f->size) && (err > -1);
810         }
811 #endif
812
813 #if HAVE_MMAP
814         size = f->size - f->pos;
815
816         if (size > f->block_size) size = f->block_size;
817         if (size < 0) size = 0;
818
819         bytes_to_send = size;
820         sendfrom_buf = f->file_data + f->pos;
821 #else
822         bytes_to_send = read(f->local_file, buf, f->block_size);
823         sendfrom_buf = buf;
824 #endif
825
826         if (bytes_to_send == f->block_size) more_to_send = 1;
827
828 #if WANT_ASCII
829         if (f->ascii_mode == 1) {
830                 bytes_to_send = ascii_downloadfilter(sendfrom_buf,
831                                                      buf2, bytes_to_send);
832                 sendfrom_buf = buf2;
833         }
834 #endif /* WANT_ASCII */
835
836 #if defined(TCP_CORK) && defined(SOL_TCP)
837         /* if we believe this is the last packet, unset TCP_CORK */
838         if (more_to_send == 0) {
839                 setsockopt(f->sock, SOL_TCP, TCP_CORK, (void *)&zero, sizeof(zero));
840         }
841 #endif
842
843         size = send(f->sock, sendfrom_buf, bytes_to_send, 0);
844         if (size < bytes_to_send) more_to_send = 1;
845
846 #if WANT_ASCII
847         if (f->ascii_mode == 1 && size < bytes_to_send && size > 0) {
848                 size = ascii_findlength(sendfrom_buf, size);
849         }
850 #endif
851
852 #if HAVE_MMAP
853         if (size > 0) f->pos += size;
854 #endif
855
856         return more_to_send;
857 }
858
859 #if WANT_XFERLOG
860 void write_xferlog(struct ftran *f)
861 {
862         char temp[256];
863         time_t now = time(NULL);
864         struct tm *t = localtime(&now);
865
866         if (xferlog == NULL) return;
867
868         strftime(temp, 256, "%a %b %d %H:%M:%S %Y", t);
869 #if WANT_UPLOAD
870         fprintf(xferlog, "%s %u %s %lu %s b _ %c a %s ftp 0 * \n",
871 #else
872         fprintf(xferlog, "%s %u %s %lu %s b _ o a %s ftp 0 *\n",
873 #endif
874                 temp, (int)(difftime(now, f->tran_start)),
875                 inet_ntoa(f->sin.sin_addr), f->size,
876                 f->filename,
877 #if WANT_UPLOAD
878                 (f->upload) ? 'i' : 'o',
879 #endif
880                 f->owner->username);
881         fflush(xferlog);
882
883 #if 0
884         /* vim needs this to work properly :-( */
885         )
886 #endif
887 }
888 #endif
889
890 #if 0
891 /* Reallocate the buggers constantly */
892 void screw_clients()
893 {
894         struct conn *c = first_conn;
895         int maxloops = MAXCLIENTS;
896
897         while (c && c->next_conn) {
898                 struct conn *temp = malloc(sizeof(*temp));
899                 if (!temp) break;
900                 *temp = *(c->next_conn);
901                 if (temp->transfer) temp->transfer->owner = temp;
902                 memset(c->next_conn, 0, sizeof(struct conn));
903                 free(c->next_conn);
904                 temp->prev_conn = c;
905                 c->next_conn = temp;
906                 c = c->next_conn;
907                 maxloops--;
908                 assert(maxloops > 0);
909         }
910 }
911 #endif
912
913 /*
914  * main():      Main function. Does the initialization, and contains
915  *              the main server loop. Takes no command-line arguments
916  *              (see README for justification).
917  */
918 int main(void)
919 {
920         int server_sock;
921
922 #if HAVE_POLL
923         /* the sets are declared globally if we use poll() */
924 #else
925         fd_set fds, fds_send;
926 #endif
927
928         /*setlinebuf(stdout);*/
929         setvbuf(stdout, (char *)NULL, _IOLBF, 0); 
930
931         signal(SIGPIPE, SIG_IGN);
932
933         printf("BetaFTPD version %s, Copyright (C) 1999-2000 Steinar H. Gunderson\n", VERSION);
934         puts("BetaFTPD comes with ABSOLUTELY NO WARRANTY; for details see the file");
935         puts("COPYING. This is free software, and you are welcome to redistribute it");
936         puts("under certain conditions; again see the file COPYING for details.");
937         puts("");
938
939         /* we don't need stdin */
940         close(0);
941
942 #if HAVE_POLL
943         {
944                 int i;
945                 for (i = 0; i < FD_MAX; i++) {
946                         fds[i].fd = -1;
947                         fds[i].events = 0;
948                 }
949         }
950 #else
951         FD_ZERO(&master_fds);
952         FD_ZERO(&master_send_fds);
953 #endif
954
955         server_sock = create_server_socket();
956
957 #if WANT_FULLSCREEN
958         printf("%cc", (char)27);        /* reset and clear the screen */
959 #endif
960
961         /* init dummy first connection */
962         first_conn = alloc_new_conn(-1);
963         first_ftran = alloc_new_ftran(0, NULL);
964 #if WANT_DCACHE
965         first_dcache = alloc_new_dcache();
966 #endif
967
968 #if WANT_XFERLOG
969 #if WANT_NONROOT
970 #warning No xferlog support for nonroot yet
971 #else
972         /* open xferlog */
973         xferlog = fopen("/var/log/xferlog", "r+");
974         if (xferlog == NULL) xferlog = fopen("/usr/adm/xferlog", "r+");
975
976         if (xferlog != NULL) {
977                  fseek(xferlog, 0L, SEEK_END);
978         }
979 #endif
980 #endif
981
982 #if WANT_FORK
983         switch (fork()) {
984         case -1:
985                 perror("fork()");
986                 puts("fork() failed, exiting");
987                 exit(0);
988         case 0:
989                 break;
990         default:
991                 puts("BetaFTPD forked into the background");
992                 exit(0);
993         }
994 #else
995         puts("BetaFTPD active");
996 #endif
997
998         /* set timeout alarm here (after the fork) */
999         alarm(60);
1000         signal(SIGALRM, handle_alarm);
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                         numeric(c, 220, "BetaFTPD " VERSION " ready.");
1128 #if WANT_STAT
1129                         memcpy(&(c->addr), &tempaddr, sizeof(struct sockaddr));
1130 #endif
1131                 }
1132         }
1133 }
1134
1135 /*
1136  * time_out_sockets():
1137  *              Times out any socket that has not had any transfer
1138  *              in the last 15 minutes (delay not customizable by FTP
1139  *              user -- you must change it in ftpd.h).
1140  *
1141  *              Note that RFC959 explicitly states that there are no
1142  *              `spontaneous' error replies, yet we have to do it to
1143  *              get the message through at all.
1144  *
1145  *              If we check this list for every accept() call, it's
1146  *              actually eating a lot of CPU time, so we only check
1147  *              it every minute. We used to do a time() call here,
1148  *              but we've changed to do use an alarm() call and set
1149  *              the time_to_check_flag in the SIGALRM handler.
1150  */
1151 RETSIGTYPE handle_alarm(int signum)
1152 {
1153         time_to_check = 1;
1154         alarm(60);
1155
1156         /* for libc5 */
1157         signal(SIGALRM, handle_alarm);
1158 }
1159
1160 void time_out_sockets()
1161 {
1162         struct conn *c = NULL, *next = first_conn->next_conn;
1163         time_t now = time(NULL);  
1164
1165         /* run through the linked list */
1166         while (next != NULL) {
1167                 c = next;
1168                 next = c->next_conn;
1169
1170                 if ((c->transfer == NULL || c->transfer->state != 5) &&
1171                     (now - c->last_transfer > TIMEOUT_SECS)) {
1172                         /* RFC violation? */
1173                         numeric(c, 421, "Timeout (%u minutes): Closing control connection.", TIMEOUT_SECS/60);
1174                         destroy_conn(c);
1175                 }
1176         }
1177 }
1178
1179 #if WANT_DCACHE
1180 /*
1181  * time_out_dcache():
1182  *              Time out expired directory listing cache entries.
1183  *              Uses much of the same code as time_out_sockets().
1184  */
1185 void time_out_dcache()
1186 {
1187         struct dcache *d = NULL, *next = first_dcache->next_dcache;
1188         time_t now = time(NULL);        
1189
1190         /* run through the linked list */
1191         while (next != NULL) {
1192                 d = next;
1193                 next = d->next_dcache;
1194
1195                 if (d->use_count == 0 && (now - d->last_used > 900)) {
1196                         destroy_dcache(d);
1197                 }
1198         }
1199 }
1200 #endif
1201
1202 /*
1203  * remove_bytes():
1204  *              Remove some bytes from the incoming buffer. This gives
1205  *              room for new data on the control connection, and should
1206  *              be called when the code has finished using the data.
1207  *              (This is done automatically for all commands, so you
1208  *              normally need not worry about it.)
1209  */
1210 void remove_bytes(struct conn * const c, const int num)
1211 {
1212         if (c->buf_len <= num) {
1213                 c->buf_len = 0;
1214         } else {
1215                 c->buf_len -= num;
1216                 memmove(c->recv_buf, c->recv_buf + num, c->buf_len);
1217         }
1218 }
1219
1220 /*
1221  * numeric():   Sends a numeric FTP reply to the client. Note that
1222  *              you can use this command much the same way as you
1223  *              would use a printf() (with all the normal %s, %d,
1224  *              etc.), since it actually uses printf() internally.
1225  */
1226 void numeric(struct conn * const c, const int numeric, const char * const format, ...)
1227 {
1228         char buf[256], fmt[256];
1229         va_list args;
1230         int i, err;
1231
1232         snprintf(fmt, 256, "%03u %s\r\n", numeric, format);
1233
1234         va_start(args, format);
1235         i = vsnprintf(buf, 256, fmt, args);
1236         va_end(args);
1237
1238         err = send(c->sock, buf, i, 0);
1239         if (err == -1 && errno == EPIPE) {
1240                 destroy_conn(c);
1241         }
1242 }
1243
1244 /*
1245  * init_file_transfer():
1246  *              Initiate a data connection for sending. This does not open
1247  *              any files etc., just does whatever is needed for the socket,
1248  *              if needed. It does, however, send the 150 reply to the client,
1249  *              and mmap()s if needed.
1250  *
1251  *              Linux systems (others?) define SOL_TCP right away, which saves us
1252  *              some grief and code size. Perhaps using getprotoent() is the `right'
1253  *              way, but it's bigger :-) (Optionally, we could figure it out at
1254  *              configure time, of course...)
1255  *
1256  *              For optimal speed, we use the Linux 2.2.x-only TCP_CORK flag if
1257  *              possible. Note that this is only defined in the first `arm' --
1258  *              we silently assume that Linux is the only OS supporting this
1259  *              flag. This might be an over-generalization, but I it looks like
1260  *              we'll have to depend on it other places as well, so we might
1261  *              just as well be evil here.
1262  */
1263 void init_file_transfer(struct ftran * const f)
1264 {
1265         struct linger ling;
1266         struct conn * const c = f->owner;
1267         const int mode = IPTOS_THROUGHPUT, zero = 0, one = 1;
1268         struct stat buf;
1269         int events;
1270
1271 #ifdef SOL_TCP
1272         /* we want max throughput */
1273         setsockopt(f->sock, SOL_IP, IP_TOS, (void *)&mode, sizeof(mode));
1274         setsockopt(f->sock, SOL_TCP, TCP_NODELAY, (void *)&zero, sizeof(zero));
1275 #ifdef TCP_CORK
1276         setsockopt(f->sock, SOL_TCP, TCP_CORK, (void *)&one, sizeof(one));
1277 #endif
1278 #else
1279         /* should these pointers be freed afterwards? */
1280         {
1281                 getprotoent();  /* legal? */
1282                 {
1283                         const struct protoent * const pe_ip  = getprotobyname("ip");
1284                         const struct protoent * const pe_tcp = getprotobyname("tcp");
1285                         setsockopt(f->sock, pe_ip->p_proto, IP_TOS, (void *)&mode, sizeof(mode));
1286                         setsockopt(f->sock, pe_tcp->p_proto, TCP_NODELAY, (void *)&zero, sizeof(zero));
1287                 }
1288                 endprotoent();
1289         }
1290 #endif
1291
1292         if (f->dir_listing) {
1293                 f->block_size = MAX_BLOCK_SIZE;
1294         } else {
1295 #if WANT_ASCII
1296                 f->ascii_mode = f->owner->ascii_mode;
1297 #endif
1298
1299                 /* find the preferred block size */
1300                 f->block_size = MAX_BLOCK_SIZE;
1301                 if (fstat(f->local_file, &buf) != -1 &&
1302                     buf.st_blksize < MAX_BLOCK_SIZE) {
1303                         f->block_size = buf.st_blksize;
1304                 }
1305         }
1306
1307         f->state = 5;
1308
1309         events = POLLOUT;
1310 #if WANT_UPLOAD
1311         if (f->upload) {
1312                 events = POLLIN;
1313         }
1314 #endif /* WANT_UPLOAD */
1315
1316         TRAP_ERROR(add_fd(f->sock, events), 500, return);
1317
1318         ling.l_onoff = 0;
1319         ling.l_linger = 0;
1320         setsockopt(f->sock, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling));
1321
1322 #if !HAVE_POLL && WANT_UPLOAD
1323         /*
1324          * if we let an upload socket stay in master_send_fds, we would
1325          * get data that would fool us into closing the socket... (sigh)
1326          */
1327         if (f->upload) {
1328                 FD_CLR(f->sock, &master_send_fds);
1329                 FD_SET(f->sock, &master_fds);
1330         }
1331 #endif
1332
1333         time(&(f->owner->last_transfer));
1334         
1335         if (f->dir_listing) {
1336                 /* include size? */
1337                 numeric(f->owner, 150, "Opening ASCII mode data connection for directory listing.");
1338         } else {
1339                 /*
1340                  * slightly kludged -- perhaps we should kill the second arm,
1341                  * at the expense of code size? Or perhaps we could collapse
1342                  * the two possible replies into one?
1343                  */
1344 #if WANT_ASCII
1345                 if (f->ascii_mode
1346 #if WANT_UPLOAD
1347                         || f->upload
1348 #endif /* WANT_UPLOAD */
1349                 ) {
1350                         numeric(f->owner, 150, "Opening %s mode data connection for '%s'",
1351                                 (f->ascii_mode) ? "ASCII" : "BINARY", f->filename);
1352                 } else {
1353                         numeric(f->owner, 150, "Opening %s mode data connection for '%s' (%u bytes)",
1354                                 (f->ascii_mode) ? "ASCII" : "BINARY", f->filename,
1355                                 f->size); 
1356                 }
1357 #else /* !WANT_ASCII */
1358 #if WANT_UPLOAD
1359                 if (f->upload) {
1360                         numeric(f->owner, 150, "Opening BINARY mode data connection for '%s'", f->filename);
1361                 } else
1362 #endif /* WANT_UPLOAD */
1363                         numeric(f->owner, 150, "Opening BINARY mode data connection for '%s' (%u bytes)", f->filename, f->size);
1364 #endif /* !WANT_ASCII */
1365         }
1366
1367         /*
1368          * This section _could_ in theory be more optimized, but it's
1369          * much easier this way, and hopefully, the compiler will be
1370          * intelligent enough to optimize most of this away. The idea
1371          * is, some modes _require_ use of mmap (or not). The preferred
1372          * thing is using mmap() when we don't have sendfile(), and not
1373          * using mmap() when we have sendfile().
1374          */
1375 #if HAVE_MMAP
1376         if (f->dir_listing == 0) {
1377 #if HAVE_LINUX_SENDFILE
1378                 int do_mmap = 0;
1379 #else
1380                 int do_mmap = 1;
1381 #endif
1382 #if WANT_ASCII
1383                 if (f->ascii_mode == 1) do_mmap = 1;
1384 #endif
1385 #if WANT_UPLOAD
1386                 if (f->upload == 1) do_mmap = 0;
1387 #endif
1388  
1389                 if (do_mmap == 1) {
1390                         f->file_data = mmap(NULL, f->size, PROT_READ, MAP_SHARED, f->local_file, 0);
1391                         if (f->file_data == MAP_FAILED) f->file_data = NULL;
1392                 } else {
1393                         f->file_data = NULL;
1394                 }
1395                 f->pos = f->owner->rest_pos;
1396         }
1397 #else /* !HAVE_MMAP */
1398         lseek(f->local_file, f->owner->rest_pos, SEEK_SET);
1399 #endif
1400 }
1401
1402 /*
1403  * create_server_socket():
1404  *              Create and bind a server socket, that we can use to
1405  *              listen to new clients on.
1406  */
1407 int create_server_socket()
1408 {
1409         int server_sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
1410         const unsigned int one = 1;
1411         struct sockaddr_in addr;
1412         int err;
1413         
1414         /*
1415          * In the `perfect' world, if an address was in use, we could
1416          * just wait for the kernel to clear everything up, and everybody
1417          * would be happy. But when you just found out your server socket
1418          * was invalid, it has to be `re-made', and 3000 users are trying
1419          * to access your fileserver, I think it's nice that it comes
1420          * up right away... hence this option.
1421          */
1422         setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
1423         ioctl(server_sock, FIONBIO, &one);      /* just in case */
1424
1425         addr.sin_family = AF_INET;
1426         addr.sin_addr.s_addr = INADDR_ANY;
1427         addr.sin_port = htons(FTP_PORT);
1428
1429         do {
1430                 err = bind(server_sock, (struct sockaddr *)&addr, sizeof(struct sockaddr));
1431
1432                 if (err == -1) {
1433                         perror("bind()");
1434                 
1435                         /* try to recover from recoverable errors... */
1436                         if (errno == ENOMEM || errno == EADDRINUSE) {
1437                                 puts("Waiting 1 sec before trying again...");
1438                                 sleep(1);
1439                         } else {
1440                                 puts("Giving up.");
1441                                 exit(1); 
1442                         }
1443                 }
1444         } while (err == -1);
1445
1446         listen(server_sock, 20);
1447
1448         err = add_fd(server_sock, POLLIN);
1449         if (err) {
1450                 perror("add_fd");
1451                 return -1;
1452         }
1453
1454         return server_sock;
1455 }
1456
1457 #if !HAVE_POLL
1458 /*
1459  * clear_bad_fds():
1460  *              Try to find invalid socket descriptors, and clean them.
1461  *              The methods used are rather UGLY, but I can't think of
1462  *              any good way of checking e.g. server_sock without
1463  *              doing anything to it :-(
1464  *
1465  *              poll() is able to do this in a much cleaner way, which 
1466  *              we use if we use poll(). That checking isn't done here,
1467  *              though.
1468  */
1469 void clear_bad_fds(int * const server_sock)
1470 {
1471         {
1472                 fd_set fds;
1473                 struct timeval tv = { 0, 0 };
1474
1475                 FD_ZERO(&fds);
1476                 FD_SET(*server_sock, &fds); 
1477                 if (select(*server_sock, &fds, NULL, NULL, &tv) == -1) {
1478                         FD_CLR(*server_sock, &master_fds);
1479                         close(*server_sock);
1480                         *server_sock = create_server_socket();
1481                 }
1482         }
1483
1484         /* could do this (conn, ftran) in any order */
1485         {
1486                 struct conn *c = NULL, *next = first_conn->next_conn;
1487         
1488                 /* run through the linked list */
1489                 while (next != NULL) {
1490                         char buf[1];
1491
1492                         c = next;
1493                         next = c->next_conn;
1494
1495                         if (read(c->sock, &buf, 0) == -1 &&
1496                             errno == EBADF) {
1497                                 destroy_conn(c);
1498                         }
1499                 }
1500         }
1501
1502         {
1503                 struct ftran *f = NULL, *next = first_ftran->next_ftran;
1504         
1505                 while (next != NULL) {
1506                         char buf[1];
1507
1508                         f = next;
1509                         next = f->next_ftran;
1510
1511                         if (read(f->sock, &buf, 0) == -1 &&
1512                             errno == EBADF) {
1513                                 destroy_ftran(f);
1514                         }
1515                 }
1516         }       
1517 }
1518 #endif
1519
1520 #if WANT_MESSAGE
1521 /*
1522  * dump_file(): Dumps a file on the control connection. Used for
1523  *              welcome messages and the likes. Note that outbuf
1524  *              is so big, to prevent any crashing from users creating
1525  *              weird .message files (like 1024 LFs)... The size of
1526  *              the file is limited to 1024 bytes (by truncation).
1527  */
1528 void dump_file(struct conn * const c, const int num, const char * const filename)
1529 {
1530         char buf[1024], outbuf[5121];
1531         char *ptr = outbuf + 4;
1532         int i, j = -1;
1533
1534         const int dumpfile = open(filename, O_RDONLY);
1535         if (dumpfile == -1) return;
1536
1537         i = read(dumpfile, buf, 1024);
1538         if (i <= 0) {
1539                 close(dumpfile);
1540                 return;
1541         }
1542
1543         sprintf(outbuf, "%03u-", num);
1544         while (++j < i) {
1545                 *ptr++ = buf[j];
1546                 if (buf[j] == '\n') {
1547                         sprintf(ptr, "%03u-", num);
1548                         ptr += 4;
1549                 }
1550         }
1551         *ptr++ = '\n';
1552
1553         send(c->sock, outbuf, ptr - outbuf, 0);
1554         close(dumpfile);
1555 }
1556
1557
1558 /*
1559  * list_readme():
1560  *              Lists all README file in the current (ie. OS current)
1561  *              directory, in a 250- message.
1562  */
1563 void list_readmes(struct conn * const c)
1564 {
1565         glob_t pglob;
1566         const time_t now = time(NULL);
1567         int i;
1568
1569         if (glob("README*", 0, NULL, &pglob) != 0) return;
1570
1571         for (i = 0; i < pglob.gl_pathc; i++) {
1572                 struct stat buf;
1573                 char str[256];
1574                 char *tm;
1575
1576                 if (stat(pglob.gl_pathv[i], &buf) == -1) continue;
1577
1578                 /* remove trailing LF */
1579                 tm = ctime(&buf.st_mtime);
1580                 tm[strlen(tm) - 1] = 0;
1581
1582                 snprintf(str, 256, "250-Please read the file %s\r\n"
1583                                    "250-\tIt was last modified %s - %ld days ago\r\n",
1584                         pglob.gl_pathv[i], tm,
1585                         (now - buf.st_mtime) / 86400);
1586                 send(c->sock, str, strlen(str), 0);
1587         }
1588         globfree(&pglob);
1589 }
1590 #endif
1591