blob: a431a3a34582b382e5dd1469877c01878b814dfb [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001/* OpenBSC Abis input driver for DAHDI */
2
3/* (C) 2008-2011 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2010 by Digium and Matthew Fredrickson <creslin@digium.com>
6 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25//#include "../../../bscconfig.h"
26
27#ifdef HAVE_DAHDI_USER_H
28
29#include <stdio.h>
30#include <unistd.h>
31#include <stdlib.h>
32#include <errno.h>
33#include <string.h>
34#include <time.h>
35#include <sys/fcntl.h>
36#include <sys/socket.h>
37#include <sys/ioctl.h>
38#include <arpa/inet.h>
39#include <dahdi/user.h>
40
41#include <osmocom/core/select.h>
42#include <osmocom/core/msgb.h>
43#include <openbsc/debug.h>
44#include <openbsc/gsm_data.h>
45#include <openbsc/abis_nm.h>
46#include <openbsc/abis_rsl.h>
47#include <openbsc/subchan_demux.h>
48#include <openbsc/e1_input.h>
49#include <openbsc/signal.h>
50#include <talloc.h>
51
52#include "lapd.h"
53
54#define TS1_ALLOC_SIZE 300
55
56/* Corresponds to dahdi/user.h, only PRI related events */
57static const struct value_string dahdi_evt_names[] = {
58 { DAHDI_EVENT_NONE, "NONE" },
59 { DAHDI_EVENT_ALARM, "ALARM" },
60 { DAHDI_EVENT_NOALARM, "NOALARM" },
61 { DAHDI_EVENT_ABORT, "HDLC ABORT" },
62 { DAHDI_EVENT_OVERRUN, "HDLC OVERRUN" },
63 { DAHDI_EVENT_BADFCS, "HDLC BAD FCS" },
64 { DAHDI_EVENT_REMOVED, "REMOVED" },
65 { 0, NULL }
66};
67
68static void handle_dahdi_exception(struct e1inp_ts *ts)
69{
70 int rc, evt;
71 struct input_signal_data isd;
72
73 rc = ioctl(ts->driver.dahdi.fd.fd, DAHDI_GETEVENT, &evt);
74 if (rc < 0)
75 return;
76
77 LOGP(DMI, LOGL_NOTICE, "Line %u(%s) / TS %u DAHDI EVENT %s\n",
78 ts->line->num, ts->line->name, ts->num,
79 get_value_string(dahdi_evt_names, evt));
80
81 isd.line = ts->line;
82
83 switch (evt) {
84 case DAHDI_EVENT_ALARM:
85 /* we should notify the code that the line is gone */
86 osmo_signal_dispatch(SS_INPUT, S_INP_LINE_ALARM, &isd);
87 break;
88 case DAHDI_EVENT_NOALARM:
89 /* alarm has gone, we should re-start the SABM requests */
90 osmo_signal_dispatch(SS_INPUT, S_INP_LINE_NOALARM, &isd);
91 break;
92 }
93}
94
95static int handle_ts1_read(struct osmo_fd *bfd)
96{
97 struct e1inp_line *line = bfd->data;
98 unsigned int ts_nr = bfd->priv_nr;
99 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
100 struct msgb *msg = msgb_alloc(TS1_ALLOC_SIZE, "DAHDI TS1");
101 lapd_mph_type prim;
102 unsigned int sapi, tei;
103 int ilen, ret;
104 uint8_t *idata;
105
106 if (!msg)
107 return -ENOMEM;
108
109 ret = read(bfd->fd, msg->data, TS1_ALLOC_SIZE - 16);
110 if (ret == -1)
111 handle_dahdi_exception(e1i_ts);
112 else if (ret < 0) {
113 perror("read ");
114 }
115 msgb_put(msg, ret - 2);
116 if (ret <= 3) {
117 perror("read ");
118 }
119
120 sapi = msg->data[0] >> 2;
121 tei = msg->data[1] >> 1;
122
123 DEBUGP(DMI, "<= len = %d, sapi(%d) tei(%d)", ret, sapi, tei);
124
125 idata = lapd_receive(e1i_ts->driver.dahdi.lapd, msg->data, msg->len, &ilen, &prim);
126 if (!idata && prim == 0)
127 return -EIO;
128
129 msgb_pull(msg, 2);
130
131 DEBUGP(DMI, "prim %08x\n", prim);
132
133 switch (prim) {
134 case 0:
135 break;
136 case LAPD_MPH_ACTIVATE_IND:
137 DEBUGP(DMI, "MPH_ACTIVATE_IND: sapi(%d) tei(%d)\n", sapi, tei);
138 ret = e1inp_event(e1i_ts, S_INP_TEI_UP, tei, sapi);
139 break;
140 case LAPD_MPH_DEACTIVATE_IND:
141 DEBUGP(DMI, "MPH_DEACTIVATE_IND: sapi(%d) tei(%d)\n", sapi, tei);
142 ret = e1inp_event(e1i_ts, S_INP_TEI_DN, tei, sapi);
143 break;
144 case LAPD_DL_DATA_IND:
145 case LAPD_DL_UNITDATA_IND:
146 if (prim == LAPD_DL_DATA_IND)
147 msg->l2h = msg->data + 2;
148 else
149 msg->l2h = msg->data + 1;
150 DEBUGP(DMI, "RX: %s\n", osmo_hexdump(msgb_l2(msg), ret));
151 ret = e1inp_rx_ts(e1i_ts, msg, tei, sapi);
152 break;
153 default:
154 printf("ERROR: unknown prim\n");
155 break;
156 }
157
158 DEBUGP(DMI, "Returned ok\n");
159 return ret;
160}
161
162static int ts_want_write(struct e1inp_ts *e1i_ts)
163{
164 /* We never include the DAHDI B-Channel FD into the
165 * writeset, since it doesn't support poll() based
166 * write flow control */
167 if (e1i_ts->type == E1INP_TS_TYPE_TRAU) {
168 fprintf(stderr, "Trying to write TRAU ts\n");
169 return 0;
170 }
171
172 e1i_ts->driver.dahdi.fd.when |= BSC_FD_WRITE;
173
174 return 0;
175}
176
177static void timeout_ts1_write(void *data)
178{
179 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
180
181 /* trigger write of ts1, due to tx delay timer */
182 ts_want_write(e1i_ts);
183}
184
185static void dahdi_write_msg(uint8_t *data, int len, void *cbdata)
186{
187 struct osmo_fd *bfd = cbdata;
188 struct e1inp_line *line = bfd->data;
189 unsigned int ts_nr = bfd->priv_nr;
190 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
191 int ret;
192
193 ret = write(bfd->fd, data, len + 2);
194 if (ret == -1)
195 handle_dahdi_exception(e1i_ts);
196 else if (ret < 0)
197 LOGP(DMI, LOGL_NOTICE, "%s write failed %d\n", __func__, ret);
198}
199
200static int handle_ts1_write(struct osmo_fd *bfd)
201{
202 struct e1inp_line *line = bfd->data;
203 unsigned int ts_nr = bfd->priv_nr;
204 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
205 struct e1inp_sign_link *sign_link;
206 struct msgb *msg;
207
208 bfd->when &= ~BSC_FD_WRITE;
209
210 /* get the next msg for this timeslot */
211 msg = e1inp_tx_ts(e1i_ts, &sign_link);
212 if (!msg) {
213 /* no message after tx delay timer */
214 return 0;
215 }
216
217 DEBUGP(DMI, "TX: %s\n", osmo_hexdump(msg->data, msg->len));
218 lapd_transmit(e1i_ts->driver.dahdi.lapd, sign_link->tei,
219 sign_link->sapi, msg->data, msg->len);
220 msgb_free(msg);
221
222 /* set tx delay timer for next event */
223 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
224 e1i_ts->sign.tx_timer.data = e1i_ts;
225 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, 50000);
226
227 return 0;
228}
229
230
231static int invertbits = 1;
232
233static uint8_t flip_table[256];
234
235static void init_flip_bits(void)
236{
237 int i,k;
238
239 for (i = 0 ; i < 256 ; i++) {
240 uint8_t sample = 0 ;
241 for (k = 0; k<8; k++) {
242 if ( i & 1 << k ) sample |= 0x80 >> k;
243 }
244 flip_table[i] = sample;
245 }
246}
247
248static uint8_t * flip_buf_bits ( uint8_t * buf , int len)
249{
250 int i;
251 uint8_t * start = buf;
252
253 for (i = 0 ; i < len; i++) {
254 buf[i] = flip_table[(uint8_t)buf[i]];
255 }
256
257 return start;
258}
259
260#define D_BCHAN_TX_GRAN 160
261/* write to a B channel TS */
262static int handle_tsX_write(struct osmo_fd *bfd)
263{
264 struct e1inp_line *line = bfd->data;
265 unsigned int ts_nr = bfd->priv_nr;
266 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
267 uint8_t tx_buf[D_BCHAN_TX_GRAN];
268 struct subch_mux *mx = &e1i_ts->trau.mux;
269 int ret;
270
271 ret = subchan_mux_out(mx, tx_buf, D_BCHAN_TX_GRAN);
272
273 if (ret != D_BCHAN_TX_GRAN) {
274 fprintf(stderr, "Huh, got ret of %d\n", ret);
275 if (ret < 0)
276 return ret;
277 }
278
279 DEBUGP(DMIB, "BCHAN TX: %s\n",
280 osmo_hexdump(tx_buf, D_BCHAN_TX_GRAN));
281
282 if (invertbits) {
283 flip_buf_bits(tx_buf, ret);
284 }
285
286 ret = write(bfd->fd, tx_buf, ret);
287 if (ret < D_BCHAN_TX_GRAN)
288 fprintf(stderr, "send returns %d instead of %d\n", ret,
289 D_BCHAN_TX_GRAN);
290
291 return ret;
292}
293
294#define D_TSX_ALLOC_SIZE (D_BCHAN_TX_GRAN)
295/* FIXME: read from a B channel TS */
296static int handle_tsX_read(struct osmo_fd *bfd)
297{
298 struct e1inp_line *line = bfd->data;
299 unsigned int ts_nr = bfd->priv_nr;
300 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
301 struct msgb *msg = msgb_alloc(D_TSX_ALLOC_SIZE, "DAHDI TSx");
302 int ret;
303
304 if (!msg)
305 return -ENOMEM;
306
307 ret = read(bfd->fd, msg->data, D_TSX_ALLOC_SIZE);
308 if (ret < 0 || ret != D_TSX_ALLOC_SIZE) {
309 fprintf(stderr, "read error %d %s\n", ret, strerror(errno));
310 return ret;
311 }
312
313 if (invertbits) {
314 flip_buf_bits(msg->data, ret);
315 }
316
317 msgb_put(msg, ret);
318
319 msg->l2h = msg->data;
320 DEBUGP(DMIB, "BCHAN RX: %s\n",
321 osmo_hexdump(msgb_l2(msg), ret));
322 ret = e1inp_rx_ts(e1i_ts, msg, 0, 0);
323 /* physical layer indicates that data has been sent,
324 * we thus can send some more data */
325 ret = handle_tsX_write(bfd);
326 msgb_free(msg);
327
328 return ret;
329}
330
331/* callback from select.c in case one of the fd's can be read/written */
332static int dahdi_fd_cb(struct osmo_fd *bfd, unsigned int what)
333{
334 struct e1inp_line *line = bfd->data;
335 unsigned int ts_nr = bfd->priv_nr;
336 unsigned int idx = ts_nr-1;
337 struct e1inp_ts *e1i_ts = &line->ts[idx];
338 int rc = 0;
339
340 switch (e1i_ts->type) {
341 case E1INP_TS_TYPE_SIGN:
342 if (what & BSC_FD_EXCEPT)
343 handle_dahdi_exception(e1i_ts);
344 if (what & BSC_FD_READ)
345 rc = handle_ts1_read(bfd);
346 if (what & BSC_FD_WRITE)
347 rc = handle_ts1_write(bfd);
348 break;
349 case E1INP_TS_TYPE_TRAU:
350 if (what & BSC_FD_EXCEPT)
351 handle_dahdi_exception(e1i_ts);
352 if (what & BSC_FD_READ)
353 rc = handle_tsX_read(bfd);
354 if (what & BSC_FD_WRITE)
355 rc = handle_tsX_write(bfd);
356 /* We never include the DAHDI B-Channel FD into the
357 * writeset, since it doesn't support poll() based
358 * write flow control */
359 break;
360 default:
361 fprintf(stderr, "unknown E1 TS type %u\n", e1i_ts->type);
362 break;
363 }
364
365 return rc;
366}
367
368static int
369dahdi_e1_line_update(struct e1inp_line *line, enum e1inp_line_role role);
370
371struct e1inp_driver dahdi_driver = {
372 .name = "dahdi",
373 .want_write = ts_want_write,
374 .line_update = &dahdi_e1_line_update,
375};
376
377void dahdi_set_bufinfo(int fd, int as_sigchan)
378{
379 struct dahdi_bufferinfo bi;
380 int x = 0;
381
382 if (ioctl(fd, DAHDI_GET_BUFINFO, &bi)) {
383 fprintf(stderr, "Error getting bufinfo\n");
384 exit(-1);
385 }
386
387 if (as_sigchan) {
388 bi.numbufs = 4;
389 bi.bufsize = 512;
390 } else {
391 bi.numbufs = 8;
392 bi.bufsize = D_BCHAN_TX_GRAN;
393 bi.txbufpolicy = DAHDI_POLICY_WHEN_FULL;
394 }
395
396 if (ioctl(fd, DAHDI_SET_BUFINFO, &bi)) {
397 fprintf(stderr, "Error setting bufinfo\n");
398 exit(-1);
399 }
400
401 if (!as_sigchan) {
402 if (ioctl(fd, DAHDI_AUDIOMODE, &x)) {
403 fprintf(stderr, "Error setting bufinfo\n");
404 exit(-1);
405 }
406 } else {
407 int one = 1;
408 ioctl(fd, DAHDI_HDLCFCSMODE, &one);
409 /* we cannot reliably check for the ioctl return value here
410 * as this command will fail if the slot _already_ was a
411 * signalling slot before :( */
412 }
413}
414
415static int dahdi_e1_setup(struct e1inp_line *line)
416{
417 int ts, ret;
418
419 /* TS0 is CRC4, don't need any fd for it */
420 for (ts = 1; ts < NUM_E1_TS; ts++) {
421 unsigned int idx = ts-1;
422 char openstr[128];
423 struct e1inp_ts *e1i_ts = &line->ts[idx];
424 struct osmo_fd *bfd = &e1i_ts->driver.dahdi.fd;
425
426 bfd->data = line;
427 bfd->priv_nr = ts;
428 bfd->cb = dahdi_fd_cb;
429 snprintf(openstr, sizeof(openstr), "/dev/dahdi/%d", ts);
430
431 switch (e1i_ts->type) {
432 case E1INP_TS_TYPE_NONE:
433 continue;
434 break;
435 case E1INP_TS_TYPE_SIGN:
436 bfd->fd = open(openstr, O_RDWR | O_NONBLOCK);
437 if (bfd->fd == -1) {
438 fprintf(stderr, "%s could not open %s %s\n",
439 __func__, openstr, strerror(errno));
440 exit(-1);
441 }
442 bfd->when = BSC_FD_READ | BSC_FD_EXCEPT;
443 dahdi_set_bufinfo(bfd->fd, 1);
444 e1i_ts->driver.dahdi.lapd = lapd_instance_alloc(1, dahdi_write_msg, bfd);
445 break;
446 case E1INP_TS_TYPE_TRAU:
447 bfd->fd = open(openstr, O_RDWR | O_NONBLOCK);
448 if (bfd->fd == -1) {
449 fprintf(stderr, "%s could not open %s %s\n",
450 __func__, openstr, strerror(errno));
451 exit(-1);
452 }
453 dahdi_set_bufinfo(bfd->fd, 0);
454 /* We never include the DAHDI B-Channel FD into the
455 * writeset, since it doesn't support poll() based
456 * write flow control */
457 bfd->when = BSC_FD_READ | BSC_FD_EXCEPT;// | BSC_FD_WRITE;
458 break;
459 }
460
461 if (bfd->fd < 0) {
462 fprintf(stderr, "%s could not open %s %s\n",
463 __func__, openstr, strerror(errno));
464 return bfd->fd;
465 }
466
467 ret = osmo_fd_register(bfd);
468 if (ret < 0) {
469 fprintf(stderr, "could not register FD: %s\n",
470 strerror(ret));
471 return ret;
472 }
473 }
474
475 return 0;
476}
477
478static int
479dahdi_e1_line_update(struct e1inp_line *line, enum e1inp_line_role role)
480{
481 if (line->driver != &dahdi_driver)
482 return -EINVAL;
483
484 return dahdi_e1_setup(line);
485}
486
487int e1inp_dahdi_init(void)
488{
489 init_flip_bits();
490
491 /* register the driver with the core */
492 return e1inp_driver_register(&dahdi_driver);
493}
494
495#endif /* HAVE_DAHDI_USER_H */