1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
/* $Id: socket_info.h,v 1.4 2005/12/13 13:38:30 bogdan_iancu Exp $
*
* find & manage listen addresses
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of openser, a free SIP server.
*
* openser is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* openser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to" the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* This file contains code that initializes and handles ser listen addresses
* lists (struct socket_info). It is used mainly on startup.
*
* History:
* --------
* 2003-10-22 created by andrei
*/
#ifndef socket_info_h
#define socket_info_h
#include <stdlib.h>
#include "ip_addr.h"
#include "dprint.h"
#include "globals.h"
#include "ut.h"
/* struct socket_info is defined in ip_addr.h */
struct socket_info* udp_listen;
#ifdef USE_TCP
struct socket_info* tcp_listen;
#endif
#ifdef USE_TLS
struct socket_info* tls_listen;
#endif
int add_listen_iface(char* name, unsigned short port, unsigned short proto,
enum si_flags flags);
int fix_all_socket_lists();
void print_all_socket_lists();
void print_aliases();
struct socket_info* grep_sock_info(str* host, unsigned short port,
unsigned short proto);
struct socket_info* find_si(struct ip_addr* ip, unsigned short port,
unsigned short proto);
/* helper function:
* returns next protocol, if the last one is reached return 0
* useful for cycling on the supported protocols */
static inline int next_proto(unsigned short proto)
{
switch(proto){
case PROTO_NONE:
return PROTO_UDP;
case PROTO_UDP:
#ifdef USE_TCP
return (tcp_disable)?0:PROTO_TCP;
#else
return 0;
#endif
#ifdef USE_TCP
case PROTO_TCP:
#ifdef USE_TLS
return (tls_disable)?0:PROTO_TLS;
#else
return 0;
#endif
#endif
#ifdef USE_TLS
case PROTO_TLS:
return 0;
#endif
default:
LOG(L_ERR, "ERROR: next_proto: unknown proto %d\n", proto);
}
return 0;
}
/* gets first non-null socket_info structure
* (useful if for. e.g we are not listening on any udp sockets )
*/
inline static struct socket_info* get_first_socket()
{
if (udp_listen) return udp_listen;
#ifdef USE_TCP
else if (tcp_listen) return tcp_listen;
#ifdef USE_TLS
else if (tls_listen) return tls_listen;
#endif
#endif
return 0;
}
/* returns -1 on error, 0 on success
* sets proto */
inline static int parse_proto(unsigned char* s, long len, int* proto)
{
#define PROTO2UINT(a, b, c) (( (((unsigned int)(a))<<16)+ \
(((unsigned int)(b))<<8)+ \
((unsigned int)(c)) ) | 0x20202020)
unsigned int i;
if (len!=3) return -1;
i=PROTO2UINT(s[0], s[1], s[2]);
switch(i){
case PROTO2UINT('u', 'd', 'p'):
*proto=PROTO_UDP;
break;
#ifdef USE_TCP
case PROTO2UINT('t', 'c', 'p'):
*proto=PROTO_TCP;
break;
#ifdef USE_TLS
case PROTO2UINT('t', 'l', 's'):
*proto=PROTO_TLS;
break;
#endif
#endif
default:
return -1;
}
return 0;
}
/*
* parses [proto:]host[:port]
* where proto= udp|tcp|tls
* returns 0 on success and -1 on failure
*/
inline static int parse_phostport(char* s, int slen, char** host, int* hlen,
int* port, int* proto)
{
char* first; /* first ':' occurrence */
char* second; /* second ':' occurrence */
char* p;
int bracket;
str tmp;
char* end;
first=second=0;
bracket=0;
end = s + slen;
/* find the first 2 ':', ignoring possible ipv6 addresses
* (substrings between [])
*/
for(p=s; p<end ; p++){
switch(*p){
case '[':
bracket++;
if (bracket>1) goto error_brackets;
break;
case ']':
bracket--;
if (bracket<0) goto error_brackets;
break;
case ':':
if (bracket==0){
if (first==0) first=p;
else if( second==0) second=p;
else goto error_colons;
}
break;
}
}
if (p==s) return -1;
if (*(p-1)==':') goto error_colons;
if (first==0){ /* no ':' => only host */
*host=s;
*hlen=(int)(p-s);
*port=0;
*proto=0;
return 0;
}
if (second){ /* 2 ':' found => check if valid */
if (parse_proto((unsigned char*)s, first-s, proto)<0)
goto error_proto;
tmp.s = second+1;
tmp.len = end - tmp.s;
if (str2int( &tmp, (unsigned int*)port )==-1) goto error_port;
*host=first+1;
*hlen=(int)(second-*host);
return 0;
}
/* only 1 ':' found => it's either proto:host or host:port */
tmp.s = first+1;
tmp.len = end - tmp.s;
if (str2int( &tmp, (unsigned int*)port )==-1) {
/* invalid port => it's proto:host */
if (parse_proto((unsigned char*)s, first-s, proto)<0) goto error_proto;
*port=0;
*host=first+1;
*hlen=(int)(p-*host);
}else{
/* valid port => its host:port */
*proto=0;
*host=s;
*hlen=(int)(first-*host);
}
return 0;
error_brackets:
LOG(L_ERR, "ERROR: parse_phostport: too many brackets in %s\n", s);
return -1;
error_colons:
LOG(L_ERR, "ERROR: parse_phostport: too many colons in %s\n", s);
return -1;
error_proto:
LOG(L_ERR, "ERROR: parse_phostport: bad protocol in %s\n", s);
return -1;
error_port:
LOG(L_ERR, "ERROR: parse_phostport: bad port number in %s\n", s);
return -1;
}
#define MAX_SOCKET_STR ( 4 + 1 + IP_ADDR_MAX_STR_SIZE+1+INT2STR_MAX_LEN+1)
#define sock_str_len(_sock) ( 3 + 1*((_sock)->proto==PROTO_SCTP) + 1 + \
(_sock)->address_str.len + 1 + (_sock)->port_no_str.len)
static inline char* socket2str(struct socket_info *sock, char *s, int* len)
{
#define PROTOC2UINT(a, b, c, d) htonl(( (((unsigned int)(a))<<24)+ \
(((unsigned int)(b))<<16)+ \
(((unsigned int)(c))<<8)+ \
((unsigned int)(d)) ) | 0x20202020)
static char buf[MAX_SOCKET_STR];
char *p,*p1;
if (s) {
/* buffer provided -> check lenght */
if ( sock_str_len(sock) > *len ) {
LOG(L_ERR,"ERROR:socket2str: buffer too short\n");
return 0;
}
p = p1 = s;
} else {
p = p1 = buf;
}
switch (sock->proto) {
case PROTO_UDP:
*((unsigned int*)p) = PROTOC2UINT('u', 'd', 'p', ':');
p += 4;
break;
case PROTO_TCP:
*((unsigned int*)p) = PROTOC2UINT('t', 'c', 'p', ':');
p += 4;
break;
case PROTO_TLS:
*((unsigned int*)p) = PROTOC2UINT('t', 'l', 's', ':');
p += 4;
break;
case PROTO_SCTP:
*((unsigned int*)p) = PROTOC2UINT('s', 'c', 't', 'p');
p += 4;
*(p++) = ':';
break;
default:
LOG(L_CRIT,"BUG:socket2str: unsupported proto %d\n", sock->proto);
return 0;
}
memcpy( p, sock->address_str.s, sock->address_str.len);
p += sock->address_str.len;
*(p++) = ':';
memcpy( p, sock->port_no_str.s, sock->port_no_str.len);
p += sock->port_no_str.len;
*len = (int)(long)(p-p1);
DBG("DEBUG:socket2str: <%.*s>\n",*len,p1);
return p1;
}
#endif
|