]> sjero.net Git - linphone/blob - coreapi/private.h
refine tunnel implementation
[linphone] / coreapi / private.h
1 /***************************************************************************
2  *            private.h
3  *
4  *  Mon Jun 13 14:23:23 2005
5  *  Copyright  2005  Simon Morlat
6  *  Email simon dot morlat at linphone dot org
7  ****************************************************************************/
8
9 /*
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23  */
24
25 #ifndef _PRIVATE_H
26 #define _PRIVATE_H
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 #include "linphonecore.h"
31 #include "linphone_tunnel.h"
32 #include "linphonecore_utils.h"
33 #include "sal.h"
34
35 #ifdef HAVE_CONFIG_H
36 #include "config.h"
37 #endif
38 #include "mediastreamer2/mediastream.h"
39 #include "mediastreamer2/msconference.h"
40
41 #ifndef LIBLINPHONE_VERSION
42 #define LIBLINPHONE_VERSION LINPHONE_VERSION
43 #endif
44
45 #ifndef PACKAGE_SOUND_DIR
46 #define PACKAGE_SOUND_DIR "."
47 #endif
48
49 #ifndef PACKAGE_DATA_DIR
50 #define PACKAGE_DATA_DIR "."
51 #endif
52
53 #ifdef HAVE_GETTEXT
54 #include <libintl.h>
55 #ifndef _
56 #define _(String) gettext(String)
57 #endif
58 #else
59 #ifndef _
60 #define _(something)    (something)
61 #endif
62 #ifndef ngettext
63 #define ngettext(singular, plural, number)      (((number)==1)?(singular):(plural))
64 #endif
65 #endif
66
67 struct _LinphoneCallParams{
68         LinphoneCall *referer; /*in case this call creation is consecutive to an incoming transfer, this points to the original call */
69         int audio_bw; /* bandwidth limit for audio stream */
70         LinphoneMediaEncryption media_encryption;
71         bool_t has_video;
72         bool_t real_early_media; /*send real media even during early media (for outgoing calls)*/
73         bool_t in_conference; /*in conference mode */
74         bool_t pad;
75         
76 };
77
78 struct _LinphoneCall
79 {
80         struct _LinphoneCore *core;
81         SalMediaDescription *localdesc;
82         SalMediaDescription *resultdesc;
83         LinphoneCallDir dir;
84         struct _RtpProfile *audio_profile;
85         struct _RtpProfile *video_profile;
86         struct _LinphoneCallLog *log;
87         SalOp *op;
88         SalOp *ping_op;
89         char localip[LINPHONE_IPADDR_SIZE]; /* our best guess for local ipaddress for this call */
90         time_t start_time; /*time at which the call was initiated*/
91         time_t media_start_time; /*time at which it was accepted, media streams established*/
92         LinphoneCallState       state;
93         LinphoneReason reason;
94         int refcnt;
95         void * user_pointer;
96         int audio_port;
97         int video_port;
98         struct _AudioStream *audiostream;  /**/
99         struct _VideoStream *videostream;
100         MSAudioEndpoint *endpoint; /*used for conferencing*/
101         char *refer_to;
102         LinphoneCallParams params;
103         LinphoneCallParams current_params;
104         int up_bw; /*upload bandwidth setting at the time the call is started. Used to detect if it changes during a call */
105         int audio_bw;   /*upload bandwidth used by audio */
106         bool_t refer_pending;
107         bool_t media_pending;
108         bool_t audio_muted;
109         bool_t camera_active;
110         bool_t all_muted; /*this flag is set during early medias*/
111         bool_t playing_ringbacktone;
112         bool_t owns_call_log;
113         bool_t ringing_beep; /* whether this call is ringing through an already existent current call*/
114         OrtpEvQueue *audiostream_app_evq;
115         char *auth_token;
116         OrtpEvQueue *videostream_app_evq;
117         bool_t videostream_encrypted;
118         bool_t audiostream_encrypted;
119         bool_t auth_token_verified;
120 };
121
122
123 LinphoneCall * linphone_call_new_outgoing(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, const LinphoneCallParams *params);
124 LinphoneCall * linphone_call_new_incoming(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, SalOp *op);
125 void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const char *message);
126
127 /* private: */
128 LinphoneCallLog * linphone_call_log_new(LinphoneCall *call, LinphoneAddress *local, LinphoneAddress * remote);
129 void linphone_call_log_completed(LinphoneCall *call);
130 void linphone_call_log_destroy(LinphoneCallLog *cl);
131
132 void linphone_auth_info_write_config(struct _LpConfig *config, LinphoneAuthInfo *obj, int pos);
133
134 void linphone_core_update_proxy_register(LinphoneCore *lc);
135 void linphone_core_refresh_subscribes(LinphoneCore *lc);
136 int linphone_core_abort_call(LinphoneCore *lc, LinphoneCall *call, const char *error);
137
138 int linphone_proxy_config_send_publish(LinphoneProxyConfig *cfg, LinphoneOnlineStatus os);
139 void linphone_proxy_config_set_state(LinphoneProxyConfig *cfg, LinphoneRegistrationState rstate, const char *message);
140
141 int linphone_online_status_to_eXosip(LinphoneOnlineStatus os);
142 void linphone_friend_close_subscriptions(LinphoneFriend *lf);
143 void linphone_friend_notify(LinphoneFriend *lf, LinphoneOnlineStatus os);
144 LinphoneFriend *linphone_find_friend_by_inc_subscribe(MSList *l, SalOp *op);
145 LinphoneFriend *linphone_find_friend_by_out_subscribe(MSList *l, SalOp *op);
146
147 int parse_hostname_to_addr(const char *server, struct sockaddr_storage *ss, socklen_t *socklen);
148 int set_lock_file();
149 int get_lock_file();
150 int remove_lock_file();
151 int do_registration(LinphoneCore *lc, bool_t doit);
152 void check_for_registration(LinphoneCore *lc);
153 void check_sound_device(LinphoneCore *lc);
154 void linphone_core_verify_codecs(LinphoneCore *lc);
155 void linphone_core_get_local_ip(LinphoneCore *lc, const char *to, char *result);
156 bool_t host_has_ipv6_network();
157 bool_t lp_spawn_command_line_sync(const char *command, char **result,int *command_ret);
158
159 static inline int get_min_bandwidth(int dbw, int ubw){
160         if (dbw<=0) return ubw;
161         if (ubw<=0) return dbw;
162         return MIN(dbw,ubw);
163 }
164
165 static inline bool_t bandwidth_is_greater(int bw1, int bw2){
166         if (bw1<0) return TRUE;
167         else if (bw2<0) return FALSE;
168         else return bw1>=bw2;
169 }
170
171 static inline int get_video_bandwidth(int total, int audio){
172         if (total<=0) return 0;
173         return total-audio-10;
174 }
175
176 static inline void set_string(char **dest, const char *src){
177         if (*dest){
178                 ms_free(*dest);
179                 *dest=NULL;
180         }
181         if (src)
182                 *dest=ms_strdup(src);
183 }
184
185 #define PAYLOAD_TYPE_ENABLED    PAYLOAD_TYPE_USER_FLAG_0
186
187 SalPresenceStatus linphone_online_status_to_sal(LinphoneOnlineStatus os);
188 void linphone_process_authentication(LinphoneCore* lc, SalOp *op);
189 void linphone_authentication_ok(LinphoneCore *lc, SalOp *op);
190 void linphone_subscription_new(LinphoneCore *lc, SalOp *op, const char *from);
191 void linphone_notify_recv(LinphoneCore *lc, SalOp *op, SalSubscribeState ss, SalPresenceStatus status);
192 void linphone_proxy_config_process_authentication_failure(LinphoneCore *lc, SalOp *op);
193
194 void linphone_subscription_answered(LinphoneCore *lc, SalOp *op);
195 void linphone_subscription_closed(LinphoneCore *lc, SalOp *op);
196
197 MSList *linphone_find_friend(MSList *fl, const LinphoneAddress *fri, LinphoneFriend **lf);
198
199 void linphone_core_update_allocated_audio_bandwidth(LinphoneCore *lc);
200 void linphone_core_update_allocated_audio_bandwidth_in_call(LinphoneCall *call, const PayloadType *pt);
201 void linphone_core_run_stun_tests(LinphoneCore *lc, LinphoneCall *call);
202
203 void linphone_core_send_initial_subscribes(LinphoneCore *lc);
204 void linphone_core_write_friends_config(LinphoneCore* lc);
205 void linphone_friend_write_to_config_file(struct _LpConfig *config, LinphoneFriend *lf, int index);
206 LinphoneFriend * linphone_friend_new_from_config_file(struct _LinphoneCore *lc, int index);
207
208 void linphone_proxy_config_update(LinphoneProxyConfig *cfg);
209 void linphone_proxy_config_get_contact(LinphoneProxyConfig *cfg, const char **ip, int *port);
210 LinphoneProxyConfig * linphone_core_lookup_known_proxy(LinphoneCore *lc, const LinphoneAddress *uri);
211 const char *linphone_core_find_best_identity(LinphoneCore *lc, const LinphoneAddress *to, const char **route);
212 int linphone_core_get_local_ip_for(int type, const char *dest, char *result);
213
214 LinphoneProxyConfig *linphone_proxy_config_new_from_config_file(struct _LpConfig *config, int index);
215 void linphone_proxy_config_write_to_config_file(struct _LpConfig* config,LinphoneProxyConfig *obj, int index);
216
217 int linphone_proxy_config_normalize_number(LinphoneProxyConfig *cfg, const char *username, char *result, size_t result_len);
218
219 void linphone_core_text_received(LinphoneCore *lc, const char *from, const char *msg);
220
221 void linphone_core_play_tone(LinphoneCore *lc);
222
223 void linphone_call_init_media_streams(LinphoneCall *call);
224 void linphone_call_start_media_streams(LinphoneCall *call, bool_t all_inputs_muted, bool_t send_ringbacktone);
225 void linphone_call_stop_media_streams(LinphoneCall *call);
226
227 const char * linphone_core_get_identity(LinphoneCore *lc);
228 const char * linphone_core_get_route(LinphoneCore *lc);
229 void linphone_core_start_waiting(LinphoneCore *lc, const char *purpose);
230 void linphone_core_update_progress(LinphoneCore *lc, const char *purpose, float progresses);
231 void linphone_core_stop_waiting(LinphoneCore *lc);
232
233 int linphone_core_start_invite(LinphoneCore *lc, LinphoneCall *call, LinphoneProxyConfig *dest_proxy);
234 void linphone_core_start_refered_call(LinphoneCore *lc, LinphoneCall *call);
235 extern SalCallbacks linphone_sal_callbacks;
236 void linphone_proxy_config_set_error(LinphoneProxyConfig *cfg, LinphoneReason error);
237 bool_t linphone_core_rtcp_enabled(const LinphoneCore *lc);
238
239
240 struct _LinphoneProxyConfig
241 {
242         struct _LinphoneCore *lc;
243         char *reg_proxy;
244         char *reg_identity;
245         char *reg_route;
246         char *realm;
247         int expires;
248         int reg_time;
249         SalOp *op;
250         char *type;
251         struct _SipSetupContext *ssctx;
252         int auth_failures;
253         char *dial_prefix;
254         LinphoneRegistrationState state;
255         SalOp *publish_op;
256         bool_t commit;
257         bool_t reg_sendregister;
258         bool_t publish;
259         bool_t dial_escape_plus;
260         void* user_data;
261         time_t deletion_date;
262         LinphoneReason error;
263 };
264
265 struct _LinphoneAuthInfo
266 {
267         char *username;
268         char *realm;
269         char *userid;
270         char *passwd;
271         char *ha1;
272         int usecount;
273         time_t last_use_time;
274         bool_t works;
275 };
276
277 struct _LinphoneChatRoom{
278         struct _LinphoneCore *lc;
279         char  *peer;
280         LinphoneAddress *peer_url;
281         SalOp *op;
282         void * user_data;
283 };
284
285 struct _LinphoneFriend{
286         LinphoneAddress *uri;
287         SalOp *insub;
288         SalOp *outsub;
289         LinphoneSubscribePolicy pol;
290         LinphoneOnlineStatus status;
291         struct _LinphoneCore *lc;
292         BuddyInfo *info;
293         char *refkey;
294         bool_t subscribe;
295         bool_t subscribe_active;
296         bool_t inc_subscribe_pending;
297         bool_t commit;
298 };
299
300
301 typedef struct sip_config
302 {
303         char *contact;
304         char *guessed_contact;
305         MSList *proxies;
306         MSList *deleted_proxies;
307         int inc_timeout;        /*timeout after an un-answered incoming call is rejected*/
308         unsigned int keepalive_period; /* interval in ms between keep alive messages sent to the proxy server*/
309         LCSipTransports transports;
310         bool_t use_info;
311         bool_t use_rfc2833;     /*force RFC2833 to be sent*/
312         bool_t guess_hostname;
313         bool_t loopback_only;
314         bool_t ipv6_enabled;
315         bool_t sdp_200_ack;
316         bool_t register_only_when_network_is_up;
317         bool_t ping_with_options;
318         bool_t auto_net_state_mon;
319 } sip_config_t;
320
321 typedef struct rtp_config
322 {
323         int audio_rtp_port;
324         int video_rtp_port;
325         int audio_jitt_comp;  /*jitter compensation*/
326         int video_jitt_comp;  /*jitter compensation*/
327         int nortp_timeout;
328         bool_t rtp_no_xmit_on_audio_mute;
329                               /* stop rtp xmit when audio muted */
330 }rtp_config_t;
331
332
333
334 typedef struct net_config
335 {
336         char *nat_address; /* may be IP or host name */
337         char *nat_address_ip; /* ip translated from nat_address */
338         char *stun_server;
339         char *relay;
340         int download_bw;
341         int upload_bw;
342         int firewall_policy;
343         int mtu;
344         int down_ptime;
345         bool_t nat_sdp_only;
346 }net_config_t;
347
348
349 typedef struct sound_config
350 {
351         struct _MSSndCard * ring_sndcard;       /* the playback sndcard currently used */
352         struct _MSSndCard * play_sndcard;       /* the playback sndcard currently used */
353         struct _MSSndCard * capt_sndcard; /* the capture sndcard currently used */
354         struct _MSSndCard * lsd_card; /* dummy playback card for Linphone Sound Daemon extension */
355         const char **cards;
356         int latency;    /* latency in samples of the current used sound device */
357         char rec_lev;
358         char play_lev;
359         char ring_lev;
360         char soft_play_lev;
361         char source;
362         char *local_ring;
363         char *remote_ring;
364         char *ringback_tone;
365         bool_t ec;
366         bool_t ea;
367         bool_t agc;
368 } sound_config_t;
369
370 typedef struct codecs_config
371 {
372         MSList *audio_codecs;  /* list of audio codecs in order of preference*/
373         MSList *video_codecs;   /* for later use*/
374 }codecs_config_t;
375
376 typedef struct video_config{
377         struct _MSWebCam *device;
378         const char **cams;
379         MSVideoSize vsize;
380         bool_t capture;
381         bool_t show_local;
382         bool_t display;
383         bool_t selfview; /*during calls*/
384         const char *displaytype;
385 }video_config_t;
386
387 typedef struct ui_config
388 {
389         int is_daemon;
390         int is_applet;
391         unsigned int timer_id;  /* the timer id for registration */
392 }ui_config_t;
393
394
395
396 typedef struct autoreplier_config
397 {
398         int enabled;
399         int after_seconds;              /* accept the call after x seconds*/
400         int max_users;                  /* maximum number of user that can call simultaneously */
401         int max_rec_time;       /* the max time of incoming voice recorded */
402         int max_rec_msg;                /* maximum number of recorded messages */
403         const char *message;            /* the path of the file to be played */
404 }autoreplier_config_t;
405
406 struct _LinphoneConference{
407         MSAudioConference *conf;
408         AudioStream *local_participant;
409         MSAudioEndpoint *local_endpoint;
410         RtpProfile *local_dummy_profile;
411         bool_t local_muted;
412 };
413
414 typedef struct _LinphoneConference LinphoneConference;
415
416 struct _LinphoneCore
417 {
418         LinphoneCoreVTable vtable;
419         Sal *sal;
420         LinphoneGlobalState state;
421         struct _LpConfig *config;
422         net_config_t net_conf;
423         sip_config_t sip_conf;
424         rtp_config_t rtp_conf;
425         sound_config_t sound_conf;
426         video_config_t video_conf;
427         codecs_config_t codecs_conf;
428         ui_config_t ui_conf;
429         autoreplier_config_t autoreplier_conf;
430         MSList *payload_types;
431         int dyn_pt;
432         LinphoneProxyConfig *default_proxy;
433         MSList *friends;
434         MSList *auth_info;
435         struct _RingStream *ringstream;
436         time_t dmfs_playing_start_time;
437         LCCallbackObj preview_finished_cb;
438         LinphoneCall *current_call;   /* the current call */
439         MSList *calls;                          /* all the processed calls */
440         MSList *queued_calls;   /* used by the autoreplier */
441         MSList *call_logs;
442         MSList *chatrooms;
443         int max_call_logs;
444         int missed_calls;
445         VideoPreview *previewstream;
446         struct _MSEventQueue *msevq;
447         LinphoneRtpTransportFactories *rtptf;
448         MSList *bl_reqs;
449         MSList *subscribers;    /* unknown subscribers */
450         int minutes_away;
451         LinphoneOnlineStatus presence_mode;
452         char *alt_contact;
453         void *data;
454         char *play_file;
455         char *rec_file;
456         time_t prevtime;
457         int audio_bw;
458         LinphoneWaitingCallback wait_cb;
459         void *wait_ctx;
460         unsigned long video_window_id;
461         unsigned long preview_window_id;
462         time_t netup_time; /*time when network went reachable */
463         struct _EcCalibrator *ecc;
464         MSList *hooks;
465         LinphoneConference conf_ctx;
466         char* zrtp_secrets_cache;
467         bool_t use_files;
468         bool_t apply_nat_settings;
469         bool_t initial_subscribes_sent;
470         bool_t bl_refresh;
471         bool_t preview_finished;
472         bool_t auto_net_state_mon;
473         bool_t network_reachable;
474         bool_t use_preview_window;
475         int device_rotation;
476         bool_t ringstream_autorelease;
477         int max_calls;
478         LinphoneTunnel *tunnel;
479 };
480
481 LinphoneTunnel *linphone_core_tunnel_new(LinphoneCore *lc);
482 void linphone_tunnel_destroy(LinphoneTunnel *tunnel);
483 void linphone_tunnel_configure(LinphoneTunnel *tunnel);
484 void linphone_tunnel_enable_logs_with_handler(LinphoneTunnel *tunnel, bool_t enabled, OrtpLogFunc logHandler);
485         
486 bool_t linphone_core_can_we_add_call(LinphoneCore *lc);
487 int linphone_core_add_call( LinphoneCore *lc, LinphoneCall *call);
488 int linphone_core_del_call( LinphoneCore *lc, LinphoneCall *call);
489 int linphone_core_set_as_current_call(LinphoneCore *lc, LinphoneCall *call);
490 int linphone_core_get_calls_nb(const LinphoneCore *lc);
491
492 void linphone_core_set_state(LinphoneCore *lc, LinphoneGlobalState gstate, const char *message);
493
494 SalMediaDescription *create_local_media_description(LinphoneCore *lc, LinphoneCall *call);
495 void update_local_media_description(LinphoneCore *lc, LinphoneCall *call, SalMediaDescription **md);
496
497 void linphone_core_update_streams(LinphoneCore *lc, LinphoneCall *call, SalMediaDescription *new_md);
498
499 bool_t linphone_core_is_payload_type_usable_for_bandwidth(LinphoneCore *lc, PayloadType *pt,  int bandwidth_limit);
500
501 #define linphone_core_ready(lc) ((lc)->state!=LinphoneGlobalStartup)
502 void _linphone_core_configure_resolver();
503
504 struct _EcCalibrator{
505         ms_thread_t thread;
506         MSSndCard *play_card,*capt_card;
507         MSFilter *sndread,*det,*rec;
508         MSFilter *play, *gen, *sndwrite,*resampler;
509         MSTicker *ticker;
510         LinphoneEcCalibrationCallback cb;
511         void *cb_data;
512         int recv_count;
513         int sent_count;
514         int64_t acc;
515         int delay;
516         unsigned int rate;
517         LinphoneEcCalibratorStatus status;
518 };
519
520 typedef struct _EcCalibrator EcCalibrator;
521
522 LinphoneEcCalibratorStatus ec_calibrator_get_status(EcCalibrator *ecc);
523
524 void ec_calibrator_destroy(EcCalibrator *ecc);
525
526 void linphone_call_background_tasks(LinphoneCall *call, bool_t one_second_elapsed);
527 void linphone_core_preempt_sound_resources(LinphoneCore *lc);
528 /*conferencing subsystem*/
529 void _post_configure_audio_stream(AudioStream *st, LinphoneCore *lc, bool_t muted);
530 /* When a conference participant pause the conference he may send a music.
531  * We don't want to hear that music or to send it to the other participants.
532  * Use muted=yes to handle this case.
533  */
534 void linphone_call_add_to_conf(LinphoneCall *call, bool_t muted);
535 void linphone_call_remove_from_conf(LinphoneCall *call);
536 void linphone_core_conference_check_uninit(LinphoneCore *lc);
537 bool_t linphone_core_sound_resources_available(LinphoneCore *lc);
538
539 void __linphone_core_invalidate_registers(LinphoneCore* lc);
540
541 #define HOLD_OFF        (0)
542 #define HOLD_ON         (1)
543
544 #ifndef NB_MAX_CALLS
545 #define NB_MAX_CALLS    (10)
546 #endif
547 void call_logs_write_to_config_file(LinphoneCore *lc);
548
549
550
551 #ifdef __cplusplus
552 }
553 #endif
554
555 #endif /* _PRIVATE_H */