blob: 79c3a5af466d03da16c38c8d3270619b2e337135 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* OpenBSC Abis interface to E1 */
2
3/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte0e3e88e2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Harald Welte59b04682009-06-10 05:40:52 +080010 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte0e3e88e2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Harald Welte59b04682009-06-10 05:40:52 +080016 *
Harald Welte0e3e88e2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte59b04682009-06-10 05:40:52 +080019 *
20 */
21
22#include <stdio.h>
23#include <unistd.h>
24#include <stdlib.h>
25#include <errno.h>
26#include <string.h>
27#include <time.h>
28#include <sys/fcntl.h>
29#include <sys/types.h>
30#include <sys/socket.h>
31#include <sys/ioctl.h>
32#include <arpa/inet.h>
33#include <mISDNif.h>
34
35//#define AF_COMPATIBILITY_FUNC
36//#include <compat_af_isdn.h>
37#ifndef AF_ISDN
38#define AF_ISDN 34
39#define PF_ISDN AF_ISDN
40#endif
41
Harald Weltef4625b12010-02-20 16:24:02 +010042#include <osmocore/select.h>
43#include <osmocore/msgb.h>
Harald Welte59b04682009-06-10 05:40:52 +080044#include <openbsc/debug.h>
45#include <openbsc/gsm_data.h>
46#include <openbsc/e1_input.h>
47#include <openbsc/abis_nm.h>
48#include <openbsc/abis_rsl.h>
Harald Weltef4625b12010-02-20 16:24:02 +010049#include <osmocore/linuxlist.h>
Harald Welte59b04682009-06-10 05:40:52 +080050#include <openbsc/subchan_demux.h>
51#include <openbsc/trau_frame.h>
52#include <openbsc/trau_mux.h>
Harald Weltef4625b12010-02-20 16:24:02 +010053#include <osmocore/talloc.h>
Harald Welte4d42bd82009-11-30 19:43:54 +010054#include <openbsc/signal.h>
Holger Hans Peter Freyther735cd9e2009-08-10 07:54:02 +020055#include <openbsc/misdn.h>
Harald Welte59b04682009-06-10 05:40:52 +080056
Harald Weltec7841cc2011-02-05 15:13:27 +010057#include "../bscconfig.h"
58
Harald Welte59b04682009-06-10 05:40:52 +080059#define NUM_E1_TS 32
60
61/* list of all E1 drivers */
62LLIST_HEAD(e1inp_driver_list);
63
64/* list of all E1 lines */
65LLIST_HEAD(e1inp_line_list);
66
Harald Weltea8379772009-06-20 22:36:41 +020067static void *tall_sigl_ctx;
68
Harald Welte59b04682009-06-10 05:40:52 +080069/*
70 * pcap writing of the misdn load
71 * pcap format is from http://wiki.wireshark.org/Development/LibpcapFileFormat
72 */
73#define DLT_LINUX_LAPD 177
74#define PCAP_INPUT 0
75#define PCAP_OUTPUT 1
76
77struct pcap_hdr {
78 u_int32_t magic_number;
79 u_int16_t version_major;
80 u_int16_t version_minor;
81 int32_t thiszone;
82 u_int32_t sigfigs;
83 u_int32_t snaplen;
84 u_int32_t network;
85} __attribute__((packed));
86
87struct pcaprec_hdr {
88 u_int32_t ts_sec;
89 u_int32_t ts_usec;
90 u_int32_t incl_len;
91 u_int32_t orig_len;
92} __attribute__((packed));
93
94struct fake_linux_lapd_header {
95 u_int16_t pkttype;
96 u_int16_t hatype;
97 u_int16_t halen;
98 u_int64_t addr;
99 int16_t protocol;
100} __attribute__((packed));
101
102struct lapd_header {
103 u_int8_t ea1 : 1;
104 u_int8_t cr : 1;
105 u_int8_t sapi : 6;
106 u_int8_t ea2 : 1;
107 u_int8_t tei : 7;
108 u_int8_t control_foo; /* fake UM's ... */
109} __attribute__((packed));
110
Holger Hans Peter Freythera73c02f2010-11-09 23:10:16 +0100111static_assert(offsetof(struct fake_linux_lapd_header, hatype) == 2, hatype_offset);
112static_assert(offsetof(struct fake_linux_lapd_header, halen) == 4, halen_offset);
113static_assert(offsetof(struct fake_linux_lapd_header, addr) == 6, addr_offset);
114static_assert(offsetof(struct fake_linux_lapd_header, protocol) == 14, proto_offset);
115static_assert(sizeof(struct fake_linux_lapd_header) == 16, lapd_header_size);
Harald Welte59b04682009-06-10 05:40:52 +0800116
117
118static int pcap_fd = -1;
119
120void e1_set_pcap_fd(int fd)
121{
122 int ret;
123 struct pcap_hdr header = {
124 .magic_number = 0xa1b2c3d4,
125 .version_major = 2,
126 .version_minor = 4,
127 .thiszone = 0,
128 .sigfigs = 0,
129 .snaplen = 65535,
130 .network = DLT_LINUX_LAPD,
131 };
132
133 pcap_fd = fd;
134 ret = write(pcap_fd, &header, sizeof(header));
135}
136
137/* This currently only works for the D-Channel */
138static void write_pcap_packet(int direction, int sapi, int tei,
139 struct msgb *msg) {
140 if (pcap_fd < 0)
141 return;
142
143 int ret;
144 time_t cur_time;
145 struct tm *tm;
146
147 struct fake_linux_lapd_header header = {
148 .pkttype = 4,
149 .hatype = 0,
150 .halen = 0,
151 .addr = direction == PCAP_OUTPUT ? 0x0 : 0x1,
152 .protocol = ntohs(48),
153 };
154
155 struct lapd_header lapd_header = {
156 .ea1 = 0,
157 .cr = direction == PCAP_OUTPUT ? 1 : 0,
158 .sapi = sapi & 0x3F,
159 .ea2 = 1,
160 .tei = tei & 0x7F,
161 .control_foo = 0x03 /* UI */,
162 };
163
164 struct pcaprec_hdr payload_header = {
165 .ts_sec = 0,
166 .ts_usec = 0,
Harald Welte81c51a82011-02-12 14:00:23 +0100167 .incl_len = msgb_l2len(msg) + sizeof(struct fake_linux_lapd_header)
168 + sizeof(struct lapd_header),
169 .orig_len = msgb_l2len(msg) + sizeof(struct fake_linux_lapd_header)
170 + sizeof(struct lapd_header),
Harald Welte59b04682009-06-10 05:40:52 +0800171 };
172
173
174 cur_time = time(NULL);
175 tm = localtime(&cur_time);
176 payload_header.ts_sec = mktime(tm);
177
178 ret = write(pcap_fd, &payload_header, sizeof(payload_header));
179 ret = write(pcap_fd, &header, sizeof(header));
180 ret = write(pcap_fd, &lapd_header, sizeof(lapd_header));
Harald Welte81c51a82011-02-12 14:00:23 +0100181 ret = write(pcap_fd, msg->l2h, msgb_l2len(msg));
Harald Welte59b04682009-06-10 05:40:52 +0800182}
183
184static const char *sign_types[] = {
185 [E1INP_SIGN_NONE] = "None",
186 [E1INP_SIGN_OML] = "OML",
187 [E1INP_SIGN_RSL] = "RSL",
188};
189const char *e1inp_signtype_name(enum e1inp_sign_type tp)
190{
191 if (tp >= ARRAY_SIZE(sign_types))
192 return "undefined";
193 return sign_types[tp];
194}
195
196static const char *ts_types[] = {
197 [E1INP_TS_TYPE_NONE] = "None",
198 [E1INP_TS_TYPE_SIGN] = "Signalling",
199 [E1INP_TS_TYPE_TRAU] = "TRAU",
200};
201
202const char *e1inp_tstype_name(enum e1inp_ts_type tp)
203{
204 if (tp >= ARRAY_SIZE(ts_types))
205 return "undefined";
206 return ts_types[tp];
207}
208
209/* callback when a TRAU frame was received */
210static int subch_cb(struct subch_demux *dmx, int ch, u_int8_t *data, int len,
211 void *_priv)
212{
213 struct e1inp_ts *e1i_ts = _priv;
214 struct gsm_e1_subslot src_ss;
215
216 src_ss.e1_nr = e1i_ts->line->num;
217 src_ss.e1_ts = e1i_ts->num;
218 src_ss.e1_ts_ss = ch;
219
220 return trau_mux_input(&src_ss, data, len);
221}
222
223int abis_rsl_sendmsg(struct msgb *msg)
224{
225 struct e1inp_sign_link *sign_link;
226 struct e1inp_driver *e1inp_driver;
227 struct e1inp_ts *e1i_ts;
228
229 msg->l2h = msg->data;
230
Harald Welte (local)42351bf2009-12-28 17:05:43 +0100231 if (!msg->trx) {
232 LOGP(DRSL, LOGL_ERROR, "rsl_sendmsg: msg->trx == NULL: %s\n",
233 hexdump(msg->data, msg->len));
Harald Welteed831842009-06-27 03:09:08 +0200234 talloc_free(msg);
Harald Welte59b04682009-06-10 05:40:52 +0800235 return -EINVAL;
Harald Welte (local)42351bf2009-12-28 17:05:43 +0100236 } else if (!msg->trx->rsl_link) {
237 LOGP(DRSL, LOGL_ERROR, "rsl_sendmsg: msg->trx->rsl_link == NULL: %s\n",
238 hexdump(msg->data, msg->len));
239 talloc_free(msg);
240 return -EIO;
Harald Welte59b04682009-06-10 05:40:52 +0800241 }
242
243 sign_link = msg->trx->rsl_link;
244 e1i_ts = sign_link->ts;
245 if (!bsc_timer_pending(&e1i_ts->sign.tx_timer)) {
246 /* notify the driver we have something to write */
247 e1inp_driver = sign_link->ts->line->driver;
248 e1inp_driver->want_write(e1i_ts);
249 }
250 msgb_enqueue(&sign_link->tx_list, msg);
251
252 /* dump it */
253 write_pcap_packet(PCAP_OUTPUT, sign_link->sapi, sign_link->tei, msg);
254
255 return 0;
256}
257
258int _abis_nm_sendmsg(struct msgb *msg)
259{
260 struct e1inp_sign_link *sign_link;
261 struct e1inp_driver *e1inp_driver;
262 struct e1inp_ts *e1i_ts;
263
264 msg->l2h = msg->data;
265
266 if (!msg->trx || !msg->trx->bts || !msg->trx->bts->oml_link) {
Harald Weltee053f3f2011-02-05 20:18:18 +0100267 LOGP(DNM, LOGL_ERROR, "nm_sendmsg: msg->trx == NULL\n");
Harald Welte59b04682009-06-10 05:40:52 +0800268 return -EINVAL;
269 }
270
271 sign_link = msg->trx->bts->oml_link;
272 e1i_ts = sign_link->ts;
273 if (!bsc_timer_pending(&e1i_ts->sign.tx_timer)) {
274 /* notify the driver we have something to write */
275 e1inp_driver = sign_link->ts->line->driver;
276 e1inp_driver->want_write(e1i_ts);
277 }
278 msgb_enqueue(&sign_link->tx_list, msg);
279
280 /* dump it */
281 write_pcap_packet(PCAP_OUTPUT, sign_link->sapi, sign_link->tei, msg);
282
283 return 0;
284}
285
286/* Timeslot */
287
288/* configure and initialize one e1inp_ts */
289int e1inp_ts_config(struct e1inp_ts *ts, struct e1inp_line *line,
290 enum e1inp_ts_type type)
291{
Harald Welte62868882009-08-08 16:12:58 +0200292 if (ts->type == type && ts->line && line)
293 return 0;
294
Harald Welte59b04682009-06-10 05:40:52 +0800295 ts->type = type;
296 ts->line = line;
297
298 switch (type) {
299 case E1INP_TS_TYPE_SIGN:
Holger Hans Peter Freyther5f833822011-01-16 18:12:13 +0100300 if (line && line->driver)
Holger Hans Peter Freyther038834b2010-04-26 16:02:04 +0800301 ts->sign.delay = line->driver->default_delay;
302 else
303 ts->sign.delay = 100000;
Harald Welte59b04682009-06-10 05:40:52 +0800304 INIT_LLIST_HEAD(&ts->sign.sign_links);
305 break;
306 case E1INP_TS_TYPE_TRAU:
307 subchan_mux_init(&ts->trau.mux);
308 ts->trau.demux.out_cb = subch_cb;
309 ts->trau.demux.data = ts;
310 subch_demux_init(&ts->trau.demux);
311 break;
312 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100313 LOGP(DMI, LOGL_ERROR, "unsupported E1 timeslot type %u\n",
Harald Welte59b04682009-06-10 05:40:52 +0800314 ts->type);
315 return -EINVAL;
316 }
317 return 0;
318}
319
Harald Weltee76bea02011-02-05 13:54:41 +0100320struct e1inp_line *e1inp_line_get(u_int8_t e1_nr)
Harald Welte59b04682009-06-10 05:40:52 +0800321{
322 struct e1inp_line *e1i_line;
323
324 /* iterate over global list of e1 lines */
325 llist_for_each_entry(e1i_line, &e1inp_line_list, list) {
326 if (e1i_line->num == e1_nr)
327 return e1i_line;
328 }
329 return NULL;
330}
331
Harald Weltee76bea02011-02-05 13:54:41 +0100332struct e1inp_line *e1inp_line_create(u_int8_t e1_nr, const char *driver_name)
333{
334 struct e1inp_driver *driver;
335 struct e1inp_line *line;
336 int i;
337
338 line = e1inp_line_get(e1_nr);
Harald Weltecc5e9f82011-02-05 15:57:42 +0100339 if (line) {
340 LOGP(DINP, LOGL_ERROR, "E1 Line %u already exists\n",
341 e1_nr);
Harald Weltee76bea02011-02-05 13:54:41 +0100342 return NULL;
Harald Weltecc5e9f82011-02-05 15:57:42 +0100343 }
Harald Weltee76bea02011-02-05 13:54:41 +0100344
345 driver = e1inp_driver_find(driver_name);
Harald Weltecc5e9f82011-02-05 15:57:42 +0100346 if (!driver) {
347 LOGP(DINP, LOGL_ERROR, "No such E1 driver '%s'\n",
348 driver_name);
Harald Weltee76bea02011-02-05 13:54:41 +0100349 return NULL;
Harald Weltecc5e9f82011-02-05 15:57:42 +0100350 }
Harald Weltee76bea02011-02-05 13:54:41 +0100351
352 line = talloc_zero(tall_bsc_ctx, struct e1inp_line);
353 if (!line)
354 return NULL;
355
356 line->driver = driver;
357
358 line->num = e1_nr;
359 for (i = 0; i < NUM_E1_TS; i++) {
360 line->ts[i].num = i+1;
361 line->ts[i].line = line;
362 }
363 llist_add_tail(&line->list, &e1inp_line_list);
364
365 return line;
366}
367
368#if 0
Harald Welte62868882009-08-08 16:12:58 +0200369struct e1inp_line *e1inp_line_get_create(u_int8_t e1_nr)
370{
371 struct e1inp_line *line;
372 int i;
373
374 line = e1inp_line_get(e1_nr);
375 if (line)
376 return line;
377
378 line = talloc_zero(tall_bsc_ctx, struct e1inp_line);
379 if (!line)
380 return NULL;
381
382 line->num = e1_nr;
383 for (i = 0; i < NUM_E1_TS; i++) {
384 line->ts[i].num = i+1;
385 line->ts[i].line = line;
386 }
387 llist_add_tail(&line->list, &e1inp_line_list);
388
389 return line;
390}
Harald Weltee76bea02011-02-05 13:54:41 +0100391#endif
Harald Welte62868882009-08-08 16:12:58 +0200392
Harald Welte59b04682009-06-10 05:40:52 +0800393static struct e1inp_ts *e1inp_ts_get(u_int8_t e1_nr, u_int8_t ts_nr)
394{
395 struct e1inp_line *e1i_line;
396
397 e1i_line = e1inp_line_get(e1_nr);
398 if (!e1i_line)
399 return NULL;
400
401 return &e1i_line->ts[ts_nr-1];
402}
403
404struct subch_mux *e1inp_get_mux(u_int8_t e1_nr, u_int8_t ts_nr)
405{
406 struct e1inp_ts *e1i_ts = e1inp_ts_get(e1_nr, ts_nr);
407
408 if (!e1i_ts)
409 return NULL;
410
411 return &e1i_ts->trau.mux;
412}
413
414/* Signalling Link */
415
416struct e1inp_sign_link *e1inp_lookup_sign_link(struct e1inp_ts *e1i,
417 u_int8_t tei, u_int8_t sapi)
418{
419 struct e1inp_sign_link *link;
420
421 llist_for_each_entry(link, &e1i->sign.sign_links, list) {
422 if (link->sapi == sapi && link->tei == tei)
423 return link;
424 }
425
426 return NULL;
427}
428
429/* create a new signalling link in a E1 timeslot */
430
431struct e1inp_sign_link *
432e1inp_sign_link_create(struct e1inp_ts *ts, enum e1inp_sign_type type,
433 struct gsm_bts_trx *trx, u_int8_t tei,
434 u_int8_t sapi)
435{
436 struct e1inp_sign_link *link;
437
438 if (ts->type != E1INP_TS_TYPE_SIGN)
439 return NULL;
440
Harald Welte857e00d2009-06-26 20:25:23 +0200441 link = talloc_zero(tall_sigl_ctx, struct e1inp_sign_link);
Harald Welte59b04682009-06-10 05:40:52 +0800442 if (!link)
443 return NULL;
444
Harald Welte59b04682009-06-10 05:40:52 +0800445 link->ts = ts;
446 link->type = type;
447 INIT_LLIST_HEAD(&link->tx_list);
448 link->trx = trx;
449 link->tei = tei;
450 link->sapi = sapi;
451
452 llist_add_tail(&link->list, &ts->sign.sign_links);
453
454 return link;
455}
456
Harald Welte62868882009-08-08 16:12:58 +0200457void e1inp_sign_link_destroy(struct e1inp_sign_link *link)
458{
Holger Hans Peter Freyther311a9932010-04-11 14:13:10 +0200459 struct msgb *msg;
460
Harald Welte62868882009-08-08 16:12:58 +0200461 llist_del(&link->list);
Holger Hans Peter Freyther311a9932010-04-11 14:13:10 +0200462 while (!llist_empty(&link->tx_list)) {
463 msg = msgb_dequeue(&link->tx_list);
464 msgb_free(msg);
465 }
466
Holger Hans Peter Freyther2da4f722010-04-11 17:18:02 +0200467 if (link->ts->type == E1INP_TS_TYPE_SIGN)
468 bsc_del_timer(&link->ts->sign.tx_timer);
469
Harald Welte62868882009-08-08 16:12:58 +0200470 talloc_free(link);
471}
472
Harald Welte59b04682009-06-10 05:40:52 +0800473/* the E1 driver tells us he has received something on a TS */
474int e1inp_rx_ts(struct e1inp_ts *ts, struct msgb *msg,
475 u_int8_t tei, u_int8_t sapi)
476{
477 struct e1inp_sign_link *link;
Harald Welte94809802011-02-12 12:29:21 +0100478 struct gsm_bts *bts;
Harald Welte59b04682009-06-10 05:40:52 +0800479 int ret;
480
481 switch (ts->type) {
482 case E1INP_TS_TYPE_SIGN:
483 /* consult the list of signalling links */
484 write_pcap_packet(PCAP_INPUT, sapi, tei, msg);
485 link = e1inp_lookup_sign_link(ts, tei, sapi);
486 if (!link) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100487 LOGP(DMI, LOGL_ERROR, "didn't find signalling link for "
Harald Welte59b04682009-06-10 05:40:52 +0800488 "tei %d, sapi %d\n", tei, sapi);
489 return -EINVAL;
490 }
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +0100491
Harald Welte51d2a592010-03-26 21:28:59 +0800492 log_set_context(BSC_CTX_BTS, link->trx->bts);
Harald Welte59b04682009-06-10 05:40:52 +0800493 switch (link->type) {
494 case E1INP_SIGN_OML:
495 msg->trx = link->trx;
Harald Welte94809802011-02-12 12:29:21 +0100496 bts = msg->trx->bts;
497 ret = bts->model->oml_rcvmsg(msg);
Harald Welte59b04682009-06-10 05:40:52 +0800498 break;
499 case E1INP_SIGN_RSL:
500 msg->trx = link->trx;
501 ret = abis_rsl_rcvmsg(msg);
502 break;
503 default:
504 ret = -EINVAL;
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100505 LOGP(DMI, LOGL_ERROR, "unknown link type %u\n", link->type);
Harald Welte59b04682009-06-10 05:40:52 +0800506 break;
507 }
508 break;
509 case E1INP_TS_TYPE_TRAU:
510 ret = subch_demux_in(&ts->trau.demux, msg->l2h, msgb_l2len(msg));
511 break;
512 default:
513 ret = -EINVAL;
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100514 LOGP(DMI, LOGL_ERROR, "unknown TS type %u\n", ts->type);
Harald Welte59b04682009-06-10 05:40:52 +0800515 break;
516 }
517
518 return ret;
519}
520
521#define TSX_ALLOC_SIZE 4096
522
523/* called by driver if it wants to transmit on a given TS */
524struct msgb *e1inp_tx_ts(struct e1inp_ts *e1i_ts,
525 struct e1inp_sign_link **sign_link)
526{
527 struct e1inp_sign_link *link;
528 struct msgb *msg = NULL;
529 int len;
530
531 switch (e1i_ts->type) {
532 case E1INP_TS_TYPE_SIGN:
533 /* FIXME: implement this round robin */
534 llist_for_each_entry(link, &e1i_ts->sign.sign_links, list) {
535 msg = msgb_dequeue(&link->tx_list);
536 if (msg) {
537 if (sign_link)
538 *sign_link = link;
539 break;
540 }
541 }
542 break;
543 case E1INP_TS_TYPE_TRAU:
Harald Welte9cfc9352009-06-26 19:39:35 +0200544 msg = msgb_alloc(TSX_ALLOC_SIZE, "TRAU_TX");
Harald Welte59b04682009-06-10 05:40:52 +0800545 if (!msg)
546 return NULL;
547 len = subchan_mux_out(&e1i_ts->trau.mux, msg->data, 40);
548 msgb_put(msg, 40);
549 break;
550 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100551 LOGP(DMI, LOGL_ERROR, "unsupported E1 TS type %u\n", e1i_ts->type);
Harald Welte59b04682009-06-10 05:40:52 +0800552 return NULL;
553 }
554 return msg;
555}
556
557/* called by driver in case some kind of link state event */
558int e1inp_event(struct e1inp_ts *ts, int evt, u_int8_t tei, u_int8_t sapi)
559{
560 struct e1inp_sign_link *link;
Harald Welte4c826f72011-01-14 15:55:42 +0100561 struct input_signal_data isd;
Harald Welte59b04682009-06-10 05:40:52 +0800562
563 link = e1inp_lookup_sign_link(ts, tei, sapi);
564 if (!link)
565 return -EINVAL;
566
Harald Welte4c826f72011-01-14 15:55:42 +0100567 isd.link_type = link->type;
568 isd.trx = link->trx;
569
570 /* report further upwards */
571 dispatch_signal(SS_INPUT, evt, &isd);
Harald Welte59b04682009-06-10 05:40:52 +0800572 return 0;
573}
574
575/* register a driver with the E1 core */
576int e1inp_driver_register(struct e1inp_driver *drv)
577{
578 llist_add_tail(&drv->list, &e1inp_driver_list);
579 return 0;
580}
581
Harald Weltee76bea02011-02-05 13:54:41 +0100582struct e1inp_driver *e1inp_driver_find(const char *name)
583{
584 struct e1inp_driver *drv;
585
Harald Weltee76bea02011-02-05 13:54:41 +0100586 llist_for_each_entry(drv, &e1inp_driver_list, list) {
587 if (!strcasecmp(name, drv->name))
588 return drv;
589 }
590 return NULL;
591}
592
Harald Welte62868882009-08-08 16:12:58 +0200593int e1inp_line_update(struct e1inp_line *line)
Harald Welte59b04682009-06-10 05:40:52 +0800594{
Harald Welte18e489a2011-02-11 16:49:41 +0100595 struct input_signal_data isd;
596 int rc;
597
Harald Welte760d4712011-02-05 12:26:55 +0100598 if (line->driver && line->driver->line_update)
Harald Welte18e489a2011-02-11 16:49:41 +0100599 rc = line->driver->line_update(line);
Harald Welte760d4712011-02-05 12:26:55 +0100600 else
Harald Welte18e489a2011-02-11 16:49:41 +0100601 rc = 0;
602
603 /* Send a signal to anyone who is interested in new lines being
604 * configured */
605 memset(&isd, 0, sizeof(isd));
606 isd.line = line;
607 dispatch_signal(SS_INPUT, S_INP_LINE_INIT, &isd);
608
609 return rc;
Harald Welte59b04682009-06-10 05:40:52 +0800610}
Harald Welte932e20d2009-07-28 00:41:45 +0200611
Harald Welte4d42bd82009-11-30 19:43:54 +0100612static int e1i_sig_cb(unsigned int subsys, unsigned int signal,
613 void *handler_data, void *signal_data)
614{
615 if (subsys != SS_GLOBAL ||
616 signal != S_GLOBAL_SHUTDOWN)
617 return 0;
618
619 if (pcap_fd) {
620 close(pcap_fd);
621 pcap_fd = -1;
622 }
623
624 return 0;
625}
626
Harald Weltee76bea02011-02-05 13:54:41 +0100627void e1inp_misdn_init(void);
Harald Welte890fe4a2011-02-05 13:58:46 +0100628void e1inp_dahdi_init(void);
Harald Weltee76bea02011-02-05 13:54:41 +0100629
630void e1inp_init(void)
Harald Welte932e20d2009-07-28 00:41:45 +0200631{
632 tall_sigl_ctx = talloc_named_const(tall_bsc_ctx, 1,
633 "e1inp_sign_link");
Harald Welte4d42bd82009-11-30 19:43:54 +0100634 register_signal_handler(SS_GLOBAL, e1i_sig_cb, NULL);
Harald Weltee76bea02011-02-05 13:54:41 +0100635
636 e1inp_misdn_init();
Harald Weltec7841cc2011-02-05 15:13:27 +0100637#ifdef HAVE_DAHDI_USER_H
Harald Welte890fe4a2011-02-05 13:58:46 +0100638 e1inp_dahdi_init();
Harald Weltec7841cc2011-02-05 15:13:27 +0100639#endif
Harald Welte932e20d2009-07-28 00:41:45 +0200640}