Add screening of caller ID for remote (asterisk) connections
[lcr.git] / gsm.h
1
2 #include <sys/un.h>
3
4 extern int new_callref;
5
6 struct mncc_q_entry {
7         struct mncc_q_entry *next;
8         unsigned int len;
9         char data[0];                   /* struct gsm_mncc */
10 };
11
12 enum {
13         LCR_GSM_TYPE_NETWORK,
14         LCR_GSM_TYPE_MS,
15 };
16
17 struct lcr_gsm {
18         char interface_name[64]; /* name of interface this instance is associated to */
19         struct lcr_gsm  *gsm_ms_next;   /* list of MS instances, in case of MS */
20         char            name[16];       /* name of MS instance, in case of MS */
21         int             type;           /* LCR_GSM_TYPE_*/
22
23         struct lcr_fd   mncc_lfd;       /* Unix domain socket to OpenBSC MNCC */
24         struct mncc_q_entry *mncc_q_hd;
25         struct mncc_q_entry *mncc_q_tail;
26         struct lcr_timer socket_retry;  /* Timer to re-try connecting to BSC socket */
27         struct sockaddr_un sun;         /* Socket address of MNCC socket */
28 };
29
30 /* GSM port class */
31 class Pgsm : public Port
32 {
33         public:
34         Pgsm(int type, char *portname, struct port_settings *settings, struct interface *interface);
35         ~Pgsm();
36
37         signed short p_g_samples[160]; /* last received audi packet */
38         int p_g_tones; /* set, if tones are to be generated */
39         int p_g_earlyb; /* set, if patterns are available */
40         struct lcr_gsm *p_g_lcr_gsm; /* pointer to network/ms instance */
41         unsigned int p_g_callref; /* ref by OpenBSC/Osmocom-BB */
42         struct lcr_work p_g_delete; /* queue destruction of GSM port instance */
43         unsigned int p_g_mode; /* data/transparent mode */
44         int p_g_gsm_b_sock; /* gsm bchannel socket */
45         struct lcr_fd p_g_gsm_b_fd; /* event node */
46         int p_g_gsm_b_index; /* gsm bchannel socket index to use */
47         int p_g_gsm_b_active; /* gsm bchannel socket is activated */
48         struct lcr_msg *p_g_notify_pending;     /* queue for NOTIFY if not connected */
49         struct lcr_msg *p_g_setup_pending;      /* queue SETUP until RTP is created */
50         struct lcr_msg *p_g_connect_pending;    /* queue CONNECT until RTP is created and connected */
51         void *p_g_encoder, *p_g_decoder;        /* gsm handle */
52         signed short p_g_rxdata[160]; /* receive audio buffer */
53         int p_g_rxpos; /* position in audio buffer 0..159 */
54         int p_g_tch_connected; /* indicates if audio is connected */
55         int p_g_media_type; /* current payload type or 0 if not set */
56         int p_g_payload_type; /* current payload type */
57
58         int p_g_rtp_bridge; /* if we use a bridge */
59         unsigned int p_g_rtp_ip_remote; /* stores ip */
60         unsigned short p_g_rtp_port_remote; /* stores port */
61         int p_g_rtp_payloads;
62         int p_g_rtp_media_types[8];
63         unsigned char p_g_rtp_payload_types[8];
64
65         void frame_send(void *_frame);
66         void frame_receive(void *_frame);
67         int audio_send(unsigned char *data, int len);
68         int bridge_rx(unsigned char *data, int len);
69
70         void send_mncc_rtp_connect(void);
71         int hunt_bchannel(void);
72         void modify_lchan(int media_type);
73         void call_proc_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
74         void alert_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
75         void setup_cnf(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
76         void setup_compl_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
77         void disc_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
78         void rel_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
79         void notify_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
80         void rtp_create_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
81         void rtp_connect_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc);
82         void message_notify(unsigned int epoint_id, int message_id, union parameter *param);
83         void message_progress(unsigned int epoint_id, int message_id, union parameter *param);
84         void message_alerting(unsigned int epoint_id, int message_id, union parameter *param);
85         void message_connect(unsigned int epoint_id, int message_id, union parameter *param);
86         void message_disconnect(unsigned int epoint_id, int message_id, union parameter *param);
87         void message_release(unsigned int epoint_id, int message_id, union parameter *param);
88         int message_epoint(unsigned int epoint_id, int message_id, union parameter *param);
89 };
90
91 struct gsm_mncc *create_mncc(int msg_type, unsigned int callref);
92 int send_and_free_mncc(struct lcr_gsm *lcr_gsm, unsigned int msg_type, void *data);
93 void gsm_trace_header(const char *interface_name, class Pgsm *port, unsigned int msg_type, int direction);
94 int gsm_conf(struct gsm_conf *gsm_conf, char *conf_error);
95 int gsm_exit(int rc);
96 int gsm_init(void);
97 int mncc_socket_retry_cb(struct lcr_timer *timer, void *inst, int index);
98