mncc: Use stdint.h from C++, copy newer version of OpenBSC's mncc.h
[lcr.git] / remote.cpp
1 /*****************************************************************************\
2 **                                                                           **
3 ** LCR                                                                       **
4 **                                                                           **
5 **---------------------------------------------------------------------------**
6 ** Copyright: Andreas Eversberg                                              **
7 **                                                                           **
8 ** mISDN remote                                                              **
9 **                                                                           **
10 \*****************************************************************************/ 
11
12 #include "main.h"
13
14 unsigned int new_remote = 1000;
15
16 /*
17  * constructor
18  */
19 Premote::Premote(int type, char *portname, struct port_settings *settings, struct interface *interface, int remote_id) : Port(type, portname, settings, interface)
20 {
21         union parameter param;
22
23         p_callerinfo.itype = (interface->extension)?INFO_ITYPE_ISDN_EXTENSION:INFO_ITYPE_ISDN;
24         p_r_ref = new_remote++;
25         SCPY(p_r_remote_app, interface->remote_app);
26         p_r_tones = (interface->is_tones == IS_YES);
27         p_r_earlyb = (interface->is_earlyb == IS_YES);
28
29         /* send new ref to remote socket */
30         memset(&param, 0, sizeof(union parameter));
31         if (type == PORT_TYPE_REMOTE_OUT)
32                 param.newref.direction = 1; /* new ref from lcr */
33         p_r_remote_id = remote_id;
34         if (admin_message_from_lcr(p_r_remote_id, p_r_ref, MESSAGE_NEWREF, &param) < 0)
35                 FATAL("No socket with remote application '%s' found, this shall not happen. because we already created one.\n", p_r_remote_app);
36
37         PDEBUG(DEBUG_PORT, "Created new RemotePort(%s).\n", portname);
38
39 }
40
41 /*
42  * destructor
43  */
44 Premote::~Premote()
45 {
46         PDEBUG(DEBUG_PORT, "Destroyed Remote process(%s).\n", p_name);
47 }
48
49 /*
50  * endpoint sends messages to the port
51  */
52 int Premote::message_epoint(unsigned int epoint_id, int message_type, union parameter *param)
53 {
54         struct epoint_list *epointlist;
55
56         if (Port::message_epoint(epoint_id, message_type, param))
57                 return 1;
58
59         switch (message_type) {
60         case MESSAGE_SETUP:
61                 struct interface *interface;
62                 interface = getinterfacebyname(p_interface_name);
63                 if (!interface) {
64                         PERROR("Cannot find interface %s.\n", p_interface_name);
65                         return 0;
66                 }
67                 /* attach only if not already */
68                 epointlist = p_epointlist;
69                 while(epointlist) {
70                         if (epointlist->epoint_id == epoint_id)
71                                 break;
72                         epointlist = epointlist->next;
73                 }
74                 if (!epointlist)
75                         epointlist_new(epoint_id);
76
77                 /* set context to pbx */
78                 if (!param->setup.dialinginfo.context[0]) {
79                         if (interface->remote_context[0])
80                                 SCPY(param->setup.dialinginfo.context, interface->remote_context);
81                         else
82                                 SCPY(param->setup.dialinginfo.context, "lcr");
83                 }
84                 memcpy(&p_dialinginfo, &param->setup.dialinginfo, sizeof(p_dialinginfo));
85                 memcpy(&p_capainfo, &param->setup.capainfo, sizeof(p_capainfo));
86                 memcpy(&p_callerinfo, &param->setup.callerinfo, sizeof(p_callerinfo));
87                 memcpy(&p_redirinfo, &param->setup.redirinfo, sizeof(p_redirinfo));
88                 /* screen */
89                 do_screen(1, p_callerinfo.id, sizeof(p_callerinfo.id), &p_callerinfo.ntype, &p_callerinfo.present, p_interface_name);
90                 do_screen(1, p_callerinfo.id2, sizeof(p_callerinfo.id2), &p_callerinfo.ntype2, &p_callerinfo.present2, p_interface_name);
91                 do_screen(1, p_redirinfo.id, sizeof(p_redirinfo.id), &p_redirinfo.ntype, &p_redirinfo.present, p_interface_name);
92                 memcpy(&param->setup.callerinfo, &p_callerinfo, sizeof(p_callerinfo));
93                 memcpy(&param->setup.redirinfo, &p_redirinfo, sizeof(p_redirinfo));
94
95                 new_state(PORT_STATE_OUT_SETUP);
96                 break;
97
98         case MESSAGE_PROCEEDING:
99                 new_state(PORT_STATE_IN_PROCEEDING);
100                 break;
101
102         case MESSAGE_ALERTING:
103                 new_state(PORT_STATE_IN_ALERTING);
104                 break;
105
106         case MESSAGE_CONNECT:
107                 memcpy(&p_connectinfo, &param->connectinfo, sizeof(p_connectinfo));
108                 new_state(PORT_STATE_CONNECT);
109                 break;
110
111         case MESSAGE_DISCONNECT:
112                 new_state(PORT_STATE_OUT_DISCONNECT);
113                 break;
114
115         case MESSAGE_RELEASE:
116                 new_state(PORT_STATE_RELEASE);
117                 break;
118         }
119
120         /* look for Remote's interface */
121         if (admin_message_from_lcr(p_r_remote_id, p_r_ref, message_type, param)<0) {
122                 PERROR("No socket with remote application '%s' found, this shall not happen. Closing socket shall cause release of all remote ports.\n", p_r_remote_app);
123                 return 0;               
124         }
125
126         if (message_type == MESSAGE_RELEASE) {
127                 new_state(PORT_STATE_RELEASE);
128                 delete this;
129                 return 0;
130         }
131
132         return 0;
133 }
134
135 void Premote::message_remote(int message_type, union parameter *param)
136 {
137         class Endpoint *epoint;
138         struct lcr_msg *message;
139         struct interface *interface;
140
141         switch (message_type) {
142         case MESSAGE_TRAFFIC:
143                 /* record audio */
144                 if (p_record)
145                         record(param->traffic.data, param->traffic.len, 0); // from down
146                 if (p_tap)
147                         tap(param->traffic.data, param->traffic.len, 0); // from down
148                 bridge_tx(param->traffic.data, param->traffic.len);
149                 if (p_tone_name[0]) {
150                         read_audio(param->traffic.data, param->traffic.len);
151                         /* record audio */
152                         if (p_record)
153                                 record(param->traffic.data, param->traffic.len, 1); // from up
154                         if (p_tap)
155                                 tap(param->traffic.data, param->traffic.len, 1); // from up
156                         admin_message_from_lcr(p_r_remote_id, p_r_ref, MESSAGE_TRAFFIC, param);
157                 }
158                 return;
159
160         case MESSAGE_SETUP:
161                 interface = getinterfacebyname(p_interface_name);
162                 if (!interface) {
163                         PERROR("Cannot find interface %s.\n", p_interface_name);
164                         return;
165                 }
166
167                 /* enable audio path */
168                 if (interface->is_tones == IS_YES) {
169                         union parameter newparam;
170                         memset(&newparam, 0, sizeof(union parameter));
171                         admin_message_from_lcr(p_r_remote_id, p_r_ref, MESSAGE_PATTERN, &newparam);
172                         newparam.audiopath = 1;
173                         admin_message_from_lcr(p_r_remote_id, p_r_ref, MESSAGE_AUDIOPATH, &newparam);
174                 }
175
176                 /* set source interface */
177                 param->setup.callerinfo.itype = p_callerinfo.itype;
178                 SCPY(param->setup.callerinfo.interface, interface->name);
179                 
180                 /* create endpoint */
181                 if (p_epointlist)
182                         FATAL("Incoming call but already got an endpoint.\n");
183                 if (!(epoint = new Endpoint(p_serial, 0)))
184                         FATAL("No memory for Endpoint instance\n");
185                 epoint->ep_app = new_endpointapp(epoint, 0, interface->app); //incoming
186
187                 epointlist_new(epoint->ep_serial);
188
189                 memcpy(&p_dialinginfo, &param->setup.dialinginfo, sizeof(p_dialinginfo));
190                 memcpy(&p_capainfo, &param->setup.capainfo, sizeof(p_capainfo));
191                 memcpy(&p_callerinfo, &param->setup.callerinfo, sizeof(p_callerinfo));
192                 memcpy(&p_redirinfo, &param->setup.redirinfo, sizeof(p_redirinfo));
193
194                 new_state(PORT_STATE_IN_SETUP);
195                 break;
196
197         case MESSAGE_PROCEEDING:
198                 new_state(PORT_STATE_OUT_PROCEEDING);
199                 break;
200
201         case MESSAGE_ALERTING:
202                 new_state(PORT_STATE_OUT_ALERTING);
203                 break;
204
205         case MESSAGE_CONNECT:
206                 memcpy(&p_connectinfo, &param->connectinfo, sizeof(p_connectinfo));
207                 new_state(PORT_STATE_CONNECT);
208                 break;
209
210         case MESSAGE_DISCONNECT:
211                 new_state(PORT_STATE_IN_DISCONNECT);
212                 break;
213
214         case MESSAGE_RELEASE:
215                 new_state(PORT_STATE_RELEASE);
216                 break;
217         }
218
219         /* cannot just forward, because param is not of container "struct lcr_msg" */
220         message = message_create(p_serial, ACTIVE_EPOINT(p_epointlist), PORT_TO_EPOINT, message_type);
221         memcpy(&message->param, param, sizeof(message->param));
222         message_put(message);
223
224         if (message_type == MESSAGE_RELEASE) {
225                 new_state(PORT_STATE_RELEASE);
226                 delete this;
227                 return;
228         }
229 }
230
231 /* receive from remote Port instance */
232 int Premote::bridge_rx(unsigned char *data, int len)
233 {
234         union parameter newparam;
235         int l;
236
237         /* send tones, if connected, or if early audio is enabled in proceeding/alerting state */
238         if (p_state != PORT_STATE_CONNECT
239          && !(p_r_earlyb
240           && (p_state == PORT_STATE_OUT_PROCEEDING
241            || p_state == PORT_STATE_OUT_ALERTING))
242          && !(p_r_tones
243           && (p_state == PORT_STATE_IN_PROCEEDING
244            || p_state == PORT_STATE_IN_ALERTING)))
245                 return 0;
246
247         if (p_tone_name[0])
248                 return 0;
249
250         memset(&newparam, 0, sizeof(union parameter));
251         /* split, if exeeds data size */
252         while(len) {
253                 l = (len > (int)sizeof(newparam.traffic.data)) ? sizeof(newparam.traffic.data) : len;
254                 newparam.traffic.len = l;
255                 len -= l;
256                 memcpy(newparam.traffic.data, data, l);
257                 data += l;
258                 /* record audio */
259                 if (p_record)
260                         record(data, len, 1); // from up
261                 if (p_tap)
262                         tap(data, len, 1); // from up
263                 admin_message_from_lcr(p_r_remote_id, p_r_ref, MESSAGE_TRAFFIC, &newparam);
264         }
265
266         return 0;
267 }
268
269