1 | /***************************************************************************\ |
---|
2 | * * |
---|
3 | * BitlBee - An IRC to IM gateway * |
---|
4 | * Utility functions for file transfer * |
---|
5 | * * |
---|
6 | * Copyright 2008 Uli Meis <a.sporto+bee@gmail.com> * |
---|
7 | * * |
---|
8 | * This program is free software; you can redistribute it and/or modify * |
---|
9 | * it under the terms of the GNU General Public License as published by * |
---|
10 | * the Free Software Foundation; either version 2 of the License, or * |
---|
11 | * (at your option) any later version. * |
---|
12 | * * |
---|
13 | * This program is distributed in the hope that it will be useful, * |
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
---|
16 | * GNU General Public License for more details. * |
---|
17 | * * |
---|
18 | * You should have received a copy of the GNU General Public License along * |
---|
19 | * with this program; if not, write to the Free Software Foundation, Inc., * |
---|
20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * |
---|
21 | * * |
---|
22 | \***************************************************************************/ |
---|
23 | |
---|
24 | #define BITLBEE_CORE |
---|
25 | #include "bitlbee.h" |
---|
26 | #include <poll.h> |
---|
27 | #include <netinet/tcp.h> |
---|
28 | #include "lib/ftutil.h" |
---|
29 | |
---|
30 | /* Some ifdefs for ulibc and apparently also BSD (Thanks to Whoopie) */ |
---|
31 | #ifndef HOST_NAME_MAX |
---|
32 | #include <sys/param.h> |
---|
33 | #ifdef MAXHOSTNAMELEN |
---|
34 | #define HOST_NAME_MAX MAXHOSTNAMELEN |
---|
35 | #else |
---|
36 | #define HOST_NAME_MAX 255 |
---|
37 | #endif |
---|
38 | #endif |
---|
39 | |
---|
40 | #define ASSERTSOCKOP(op, msg) \ |
---|
41 | if( (op) == -1 ) {\ |
---|
42 | sprintf( errmsg , msg ": %s", strerror( errno ) ); \ |
---|
43 | return -1; } |
---|
44 | |
---|
45 | /* |
---|
46 | * Creates a listening socket and returns it in saddr_ptr. |
---|
47 | */ |
---|
48 | int ft_listen( struct sockaddr_storage *saddr_ptr, char *hostp, char *port, int for_bitlbee_client, char **errptr ) |
---|
49 | { |
---|
50 | int fd,gret,saddrlen; |
---|
51 | struct addrinfo hints, *rp; |
---|
52 | socklen_t ssize = sizeof( struct sockaddr_storage ); |
---|
53 | struct sockaddr_storage saddrs, *saddr = &saddrs; |
---|
54 | static char errmsg[1024]; |
---|
55 | char host[ HOST_NAME_MAX + 1 ]; |
---|
56 | char *ftlisten = global.conf->ft_listen; |
---|
57 | |
---|
58 | *errptr = errmsg; |
---|
59 | |
---|
60 | sprintf( port, "0" ); |
---|
61 | |
---|
62 | /* Format is <IP-A>[:<Port-A>];<IP-B>[:<Port-B>] where |
---|
63 | * A is for connections with the bitlbee client (DCC) |
---|
64 | * and B is for connections with IM peers. |
---|
65 | */ |
---|
66 | if( ftlisten ) { |
---|
67 | char *scolon = strchr( ftlisten, ';' ); |
---|
68 | char *colon; |
---|
69 | |
---|
70 | if( scolon ) { |
---|
71 | if( for_bitlbee_client ) { |
---|
72 | *scolon = '\0'; |
---|
73 | sprintf( host, ftlisten ); |
---|
74 | *scolon = ';'; |
---|
75 | } else { |
---|
76 | sprintf( host, scolon + 1 ); |
---|
77 | } |
---|
78 | } else { |
---|
79 | sprintf( host, ftlisten ); |
---|
80 | } |
---|
81 | |
---|
82 | if( ( colon = strchr( host, ':' ) ) ) { |
---|
83 | *colon = '\0'; |
---|
84 | sprintf( port, colon + 1 ); |
---|
85 | } |
---|
86 | } else { |
---|
87 | ASSERTSOCKOP( gethostname( host, HOST_NAME_MAX + 1 ), "gethostname()" ); |
---|
88 | } |
---|
89 | |
---|
90 | memset( &hints, 0, sizeof( struct addrinfo ) ); |
---|
91 | hints.ai_socktype = SOCK_STREAM; |
---|
92 | hints.ai_flags = AI_NUMERICSERV; |
---|
93 | |
---|
94 | if ( ( gret = getaddrinfo( host, port, &hints, &rp ) ) != 0 ) { |
---|
95 | sprintf( errmsg, "getaddrinfo() failed: %s", gai_strerror( gret ) ); |
---|
96 | return -1; |
---|
97 | } |
---|
98 | |
---|
99 | saddrlen = rp->ai_addrlen; |
---|
100 | |
---|
101 | memcpy( saddr, rp->ai_addr, saddrlen ); |
---|
102 | |
---|
103 | freeaddrinfo( rp ); |
---|
104 | |
---|
105 | ASSERTSOCKOP( fd = socket( saddr->ss_family, SOCK_STREAM, 0 ), "Opening socket" ); |
---|
106 | |
---|
107 | ASSERTSOCKOP( bind( fd, ( struct sockaddr *)saddr, saddrlen ), "Binding socket" ); |
---|
108 | |
---|
109 | ASSERTSOCKOP( listen( fd, 1 ), "Making socket listen" ); |
---|
110 | |
---|
111 | if ( !inet_ntop( saddr->ss_family, saddr->ss_family == AF_INET ? |
---|
112 | ( void * )&( ( struct sockaddr_in * ) saddr )->sin_addr.s_addr : ( void * )&( ( struct sockaddr_in6 * ) saddr )->sin6_addr.s6_addr |
---|
113 | , host, INET6_ADDRSTRLEN ) ) { |
---|
114 | sprintf( errmsg, "inet_ntop failed on listening socket" ); |
---|
115 | return -1; |
---|
116 | } |
---|
117 | |
---|
118 | ASSERTSOCKOP( getsockname( fd, ( struct sockaddr *)saddr, &ssize ), "Getting socket name" ); |
---|
119 | |
---|
120 | if( saddr->ss_family == AF_INET ) |
---|
121 | sprintf( port, "%d", ntohs( ( ( struct sockaddr_in *) saddr )->sin_port ) ); |
---|
122 | else |
---|
123 | sprintf( port, "%d", ntohs( ( ( struct sockaddr_in6 *) saddr )->sin6_port ) ); |
---|
124 | |
---|
125 | if( saddr_ptr ) |
---|
126 | memcpy( saddr_ptr, saddr, saddrlen ); |
---|
127 | |
---|
128 | strcpy( hostp, host ); |
---|
129 | |
---|
130 | return fd; |
---|
131 | } |
---|