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