]> sjero.net Git - linphone/blob - coreapi/linphone_tunnel.cc
add sanity check in linphone_core_remove_proxy_config()
[linphone] / coreapi / linphone_tunnel.cc
1 /***************************************************************************
2  *            linphone_tunnel.cc
3  *
4  *  Fri Dec 9, 2011
5  *  Copyright  2011  Belledonne Communications
6  *  Author: Guillaume Beraudo
7  *  Email: guillaume dot beraudo at linphone dot org
8  ****************************************************************************/
9
10 /*
11  *  This program is free software; you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License as published by
13  *  the Free Software Foundation; either version 2 of the License, or
14  *  (at your option) any later version.
15  *
16  *  This program is distributed in the hope that it will be useful,
17  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *  GNU General Public License for more details.
20  *
21  *  You should have received a copy of the GNU General Public License
22  *  along with this program; if not, write to the Free Software
23  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24  */
25
26 #ifdef TUNNEL_ENABLED
27 #include "TunnelManager.hh"
28 #endif
29 #include "linphone_tunnel.h"
30 #include "linphonecore.h"
31 #include "private.h"
32 #include "lpconfig.h"
33
34
35 LinphoneTunnel* linphone_core_get_tunnel(LinphoneCore *lc){
36         return lc->tunnel;
37 }
38
39 #ifdef TUNNEL_ENABLED
40
41 static inline belledonnecomm::TunnelManager *bcTunnel(LinphoneTunnel *tunnel){
42         return (belledonnecomm::TunnelManager *)tunnel;
43 }
44
45 static inline _LpConfig *config(LinphoneTunnel *tunnel){
46         return ((belledonnecomm::TunnelManager *)tunnel)->getLinphoneCore()->config;
47 }
48
49 extern "C" LinphoneTunnel* linphone_core_tunnel_new(LinphoneCore *lc){
50         LinphoneTunnel* tunnel= (LinphoneTunnel*) new belledonnecomm::TunnelManager(lc);
51         return tunnel;
52 }
53
54 void linphone_tunnel_destroy(LinphoneTunnel *tunnel){
55         delete bcTunnel(tunnel);
56 }
57
58 static void add_server_to_config(LinphoneTunnel *tunnel, const char *host, int port){
59         const char *orig=lp_config_get_string(config(tunnel),"tunnel","server_addresses", NULL);
60         char *tmp;
61         if (orig){
62                 tmp=ms_strdup_printf("%s %s:%i",orig,host,port);
63         }else tmp=ms_strdup_printf("%s:%i",host, port);
64         lp_config_set_string(config(tunnel),"tunnel","server_addresses",tmp);
65         ms_free(tmp);
66 }
67
68 void linphone_tunnel_add_server(LinphoneTunnel *tunnel, const char *host, int port){
69         bcTunnel(tunnel)->addServer(host, port);
70         add_server_to_config(tunnel,host,port);
71 }
72
73 void linphone_tunnel_add_server_and_mirror(LinphoneTunnel *tunnel, const char *host, int port, int remote_udp_mirror, int delay){
74         bcTunnel(tunnel)->addServer(host, port, remote_udp_mirror, delay);
75         /*FIXME, udp-mirror feature not saved in config*/
76         add_server_to_config(tunnel,host,port);
77 }
78
79 char *linphone_tunnel_get_servers(LinphoneTunnel *tunnel){
80         const char *tmp=lp_config_get_string(config(tunnel),"tunnel","server_addresses",NULL);
81         if (tmp) return ms_strdup(tmp);
82         return NULL;
83 }
84
85 void linphone_tunnel_clean_servers(LinphoneTunnel *tunnel){
86         bcTunnel(tunnel)->cleanServers();
87         lp_config_set_string(config(tunnel),"tunnel","server_addresses",NULL);
88 }
89
90 void linphone_tunnel_enable(LinphoneTunnel *tunnel, bool_t enabled){
91         lp_config_set_int(config(tunnel),"tunnel","enabled",(int)enabled);
92         bcTunnel(tunnel)->enable(enabled);
93 }
94
95 bool_t linphone_tunnel_enabled(LinphoneTunnel *tunnel){
96         return bcTunnel(tunnel)->isEnabled();
97 }
98
99 static OrtpLogFunc tunnelOrtpLogHandler=NULL;
100
101 /*
102 #define TUNNEL_DEBUG (1)
103 #define TUNNEL_INFO  (1<<1)
104 #define TUNNEL_NOTICE (1<<2)
105 #define TUNNEL_WARN  (1<<3)
106 #define TUNNEL_ERROR (1<<4)
107 #define TUNNEL_ALERT (1<<5)
108 #define TUNNEL_FATAL (1<<6)
109 */
110
111 static void tunnelLogHandler(int level, const char *fmt, va_list l){
112         if (tunnelOrtpLogHandler){
113                 OrtpLogLevel ortp_level=ORTP_DEBUG;
114                 switch(level){
115                         case TUNNEL_DEBUG:
116                                 ortp_level=ORTP_DEBUG;
117                         break;
118                         case TUNNEL_INFO:
119                                 ortp_level=ORTP_MESSAGE;
120                         break;
121                         case TUNNEL_NOTICE:
122                                 ortp_level=ORTP_MESSAGE;
123                         break;
124                         case TUNNEL_WARN:
125                                 ortp_level=ORTP_WARNING;
126                         break;
127                         case TUNNEL_ERROR:
128                                 ortp_level=ORTP_ERROR;
129                         break;
130                         case TUNNEL_ALERT:
131                                 ortp_level=ORTP_ERROR;
132                         break;
133                         case TUNNEL_FATAL:
134                                 ortp_level=ORTP_FATAL;
135                         break;
136                         default:
137                                 ms_fatal("Unexepcted tunnel log %i: %s",level,fmt);
138                         break;
139                 }
140                 tunnelOrtpLogHandler(ortp_level,fmt,l);
141         }
142 }
143
144 void linphone_tunnel_enable_logs_with_handler(LinphoneTunnel *tunnel, bool_t enabled, OrtpLogFunc logHandler){
145         tunnelOrtpLogHandler=logHandler;
146         bcTunnel(tunnel)->enableLogs(enabled, tunnelLogHandler);
147 }
148
149 void linphone_tunnel_set_http_proxy_auth_info(LinphoneTunnel *tunnel, const char* username,const char* passwd){
150         bcTunnel(tunnel)->setHttpProxyAuthInfo(username, passwd);
151 }
152
153 void linphone_tunnel_set_http_proxy(LinphoneTunnel*tunnel, const char *host, int port, const char* username,const char* passwd){
154         bcTunnel(tunnel)->setHttpProxy(host, port, username, passwd);
155 }
156
157 void linphone_tunnel_reconnect(LinphoneTunnel *tunnel){
158         bcTunnel(tunnel)->reconnect();
159 }
160
161 void linphone_tunnel_auto_detect(LinphoneTunnel *tunnel){
162         bcTunnel(tunnel)->autoDetect();
163 }
164
165 static void tunnel_add_servers_from_config(LinphoneTunnel *tunnel, const char* confaddress){
166         char *addresses=(char*)ms_strdup(confaddress);
167         char *str1;
168         for(str1=addresses;;str1=NULL){
169                 char *port;
170                 char *address=strtok(str1," "); // Not thread safe
171                 if (!address) break;
172                 port=strchr(address, ':');
173                 if (!port) ms_fatal("Bad tunnel address %s", address);
174                 *port++='\0';
175                 linphone_tunnel_add_server(tunnel, address, atoi(port));
176         }
177         ms_free(addresses);
178 }
179
180 static void my_ortp_logv(OrtpLogLevel level, const char *fmt, va_list args){
181         ortp_logv(level,fmt,args);
182 }
183
184 /**
185  * Startup tunnel using configuration.
186  * Called internally from linphonecore at startup.
187  */
188 void linphone_tunnel_configure(LinphoneTunnel *tunnel){
189         bool_t enabled=(bool_t)lp_config_get_int(config(tunnel),"tunnel","enabled",FALSE);
190         const char* addresses=lp_config_get_string(config(tunnel),"tunnel","server_addresses", NULL);
191         linphone_tunnel_enable_logs_with_handler(tunnel,TRUE,my_ortp_logv);
192         linphone_tunnel_clean_servers(tunnel);
193         if (addresses){
194                 tunnel_add_servers_from_config(tunnel,addresses);
195         }
196         linphone_tunnel_enable(tunnel, enabled);
197 }
198
199
200 #else
201
202 /*stubs to avoid to have #ifdef TUNNEL_ENABLED in upper layers*/
203
204 void linphone_tunnel_destroy(LinphoneTunnel *tunnel){
205 }
206
207
208 void linphone_tunnel_add_server(LinphoneTunnel *tunnel, const char *host, int port){
209 }
210
211 void linphone_tunnel_add_server_and_mirror(LinphoneTunnel *tunnel, const char *host, int port, int remote_udp_mirror, int delay){
212 }
213
214 char *linphone_tunnel_get_servers(LinphoneTunnel *tunnel){
215         return NULL;
216 }
217
218 void linphone_tunnel_clean_servers(LinphoneTunnel *tunnel){
219 }
220
221 void linphone_tunnel_enable(LinphoneTunnel *tunnel, bool_t enabled){
222 }
223
224 bool_t linphone_tunnel_enabled(LinphoneTunnel *tunnel){
225         return FALSE;
226 }
227
228 void linphone_tunnel_enable_logs(LinphoneTunnel *tunnel, bool_t enabled){
229 }
230
231 void linphone_tunnel_enable_logs_with_handler(LinphoneTunnel *tunnel, bool_t enabled, OrtpLogFunc logHandler){
232 }
233
234 void linphone_tunnel_set_http_proxy_auth_info(LinphoneTunnel *tunnel, const char* username,const char* passwd){
235 }
236
237 void linphone_tunnel_set_http_proxy(LinphoneTunnel*tunnel, const char *host, int port, const char* username,const char* passwd){
238 }
239
240 void linphone_tunnel_reconnect(LinphoneTunnel *tunnel){
241 }
242
243 void linphone_tunnel_auto_detect(LinphoneTunnel *tunnel){
244 }
245
246 void linphone_tunnel_configure(LinphoneTunnel *tunnel){
247 }
248
249
250 #endif
251
252
253
254
255