2 * User FTP Server, Share folders over FTP without being root.
3 * Copyright (C) 2008 Isaac Jurado
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 2 of the License, or (at your option) any later
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <sys/socket.h>
22 #include <netinet/in.h>
23 #include <arpa/inet.h>
30 void enable_passive (void)
33 struct sockaddr_in sai
;
34 socklen_t sai_len
= sizeof(struct sockaddr_in
);
35 unsigned char addr
[6];
38 /* Safety check in case there was some error before */
39 if (SS
.passive_sk
!= -1)
41 e
= close(SS
.passive_sk
);
43 error("Closing unused passive socket");
48 bsk
= socket(PF_INET
, SOCK_STREAM
, IPPROTO_TCP
);
51 error("Creating passive socket");
55 setsockopt(bsk
, SOL_SOCKET
, SO_REUSEADDR
, &e
, sizeof(int));
57 sai_len
= sizeof(struct sockaddr_in
);
58 memcpy(&sai
, &SS
.local_address
, sizeof(struct sockaddr_in
));
60 e
= bind(bsk
, (struct sockaddr
*) &sai
, sai_len
);
63 error("Binding to a random port");
69 error("Listening on passive socket");
73 e
= getsockname(bsk
, (struct sockaddr
*) &sai
, &sai_len
);
76 error("Retrieving passive socket information");
79 memcpy(&addr
[0], &sai
.sin_addr
, 4);
80 memcpy(&addr
[4], &sai
.sin_port
, 2);
82 debug("Passive mode listening on port %d", ntohs(sai
.sin_port
));
86 l
= snprintf(pasv_reply
, 32, "227 =%u,%u,%u,%u,%u,%u\r\n", addr
[0],
87 addr
[1], addr
[2], addr
[3], addr
[4], addr
[5]);
95 error("Closing passive socket");
97 reply_c("425 No way to open a port for you.\r\n");