blob: 04c464a920f353044e83e36107eac4d26a436551 [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001/* OpenBSC Abis interface to E1 */
2
3/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
4 *
5 * All Rights Reserved
6 *
Harald Welte323d39d2017-11-13 01:09:21 +09007 * SPDX-License-Identifier: AGPL-3.0+
8 *
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 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 Affero General Public License for more details.
18 *
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 *
22 */
23
24#include "internal.h"
Harald Welte3bc78852011-08-24 08:32:38 +020025#include "../config.h"
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020026
27#include <stdio.h>
28#include <unistd.h>
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +020029#include <inttypes.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020030#include <stdlib.h>
31#include <errno.h>
32#include <string.h>
33#include <time.h>
Holger Hans Peter Freyther25474582017-01-23 19:49:07 +010034#include <fcntl.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020035#include <sys/socket.h>
36#include <sys/ioctl.h>
37#include <arpa/inet.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020038
Harald Weltefd44a5f2011-08-21 00:48:54 +020039#include <osmocom/abis/lapd.h>
40
Harald Weltef2737fc2011-08-16 14:30:10 +020041#include <osmocom/core/linuxlist.h>
42#include <osmocom/core/talloc.h>
43#include <osmocom/core/rate_ctr.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020044#include <osmocom/core/logging.h>
45#include <osmocom/core/signal.h>
Neels Hofmeyra160e4b2018-11-16 00:16:57 +010046#include <osmocom/core/endian.h>
Harald Welteb3952c62020-06-20 22:07:36 +020047#include <osmocom/gsm/i460_mux.h>
Pablo Neira Ayuso177094b2011-06-07 12:21:51 +020048#include <osmocom/abis/e1_input.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020049
50#define NUM_E1_TS 32
51
52static void *tall_e1inp_ctx;
53
54/* list of all E1 drivers */
55LLIST_HEAD(e1inp_driver_list);
56
57/* list of all E1 lines */
58LLIST_HEAD(e1inp_line_list);
59
60static void *tall_sigl_ctx;
61
Harald Weltef2737fc2011-08-16 14:30:10 +020062static const struct rate_ctr_desc e1inp_ctr_d[] = {
63 [E1I_CTR_HDLC_ABORT] = {
Pau Espin Pedrola2106842018-07-24 15:00:11 +020064 "hdlc:abort", "HDLC abort"
Harald Weltef2737fc2011-08-16 14:30:10 +020065 },
66 [E1I_CTR_HDLC_BADFCS] = {
Pau Espin Pedrola2106842018-07-24 15:00:11 +020067 "hdlc:bad_fcs", "HLDC Bad FCS"
Harald Weltef2737fc2011-08-16 14:30:10 +020068 },
69 [E1I_CTR_HDLC_OVERR] = {
Pau Espin Pedrola2106842018-07-24 15:00:11 +020070 "hdlc:overrun", "HDLC Overrun"
Harald Weltef2737fc2011-08-16 14:30:10 +020071 },
72 [E1I_CTR_ALARM] = {
Harald Weltedd0c2ef2011-08-11 12:54:07 +020073 "alarm", "Alarm"
Harald Weltef2737fc2011-08-16 14:30:10 +020074 },
75 [E1I_CTR_REMOVED] = {
Harald Weltedd0c2ef2011-08-11 12:54:07 +020076 "removed", "Line removed"
Harald Weltef2737fc2011-08-16 14:30:10 +020077 },
78};
79
80static const struct rate_ctr_group_desc e1inp_ctr_g_d = {
81 .group_name_prefix = "e1inp",
82 .group_description = "E1 Input subsystem",
83 .num_ctr = ARRAY_SIZE(e1inp_ctr_d),
84 .ctr_desc = e1inp_ctr_d,
85};
86
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020087/*
88 * pcap writing of the misdn load
89 * pcap format is from http://wiki.wireshark.org/Development/LibpcapFileFormat
90 */
91#define DLT_LINUX_LAPD 177
92#define PCAP_INPUT 0
93#define PCAP_OUTPUT 1
94
95struct pcap_hdr {
96 uint32_t magic_number;
97 uint16_t version_major;
98 uint16_t version_minor;
99 int32_t thiszone;
100 uint32_t sigfigs;
101 uint32_t snaplen;
102 uint32_t network;
103} __attribute__((packed));
104
105struct pcaprec_hdr {
106 uint32_t ts_sec;
107 uint32_t ts_usec;
108 uint32_t incl_len;
109 uint32_t orig_len;
110} __attribute__((packed));
111
112struct fake_linux_lapd_header {
113 uint16_t pkttype;
114 uint16_t hatype;
115 uint16_t halen;
116 uint64_t addr;
117 int16_t protocol;
118} __attribute__((packed));
119
120struct lapd_header {
Neels Hofmeyra160e4b2018-11-16 00:16:57 +0100121#if OSMO_IS_LITTLE_ENDIAN
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200122 uint8_t ea1 : 1;
123 uint8_t cr : 1;
124 uint8_t sapi : 6;
125 uint8_t ea2 : 1;
126 uint8_t tei : 7;
127 uint8_t control_foo; /* fake UM's ... */
Neels Hofmeyra160e4b2018-11-16 00:16:57 +0100128#elif OSMO_IS_BIG_ENDIAN
129/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
130 uint8_t sapi:6, cr:1, ea1:1;
131 uint8_t tei:7, ea2:1;
132 uint8_t control_foo;
133#endif
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200134} __attribute__((packed));
135
136osmo_static_assert(offsetof(struct fake_linux_lapd_header, hatype) == 2, hatype_offset);
137osmo_static_assert(offsetof(struct fake_linux_lapd_header, halen) == 4, halen_offset);
138osmo_static_assert(offsetof(struct fake_linux_lapd_header, addr) == 6, addr_offset);
139osmo_static_assert(offsetof(struct fake_linux_lapd_header, protocol) == 14, proto_offset);
140osmo_static_assert(sizeof(struct fake_linux_lapd_header) == 16, lapd_header_size);
141
142
143static int pcap_fd = -1;
144
Pablo Neira Ayuso2e11f5c2013-07-05 15:08:18 +0200145int e1_set_pcap_fd(int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200146{
Sylvain Munaut4b45e9d2020-05-08 09:40:44 +0200147 const struct pcap_hdr header = {
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200148 .magic_number = 0xa1b2c3d4,
149 .version_major = 2,
150 .version_minor = 4,
151 .thiszone = 0,
152 .sigfigs = 0,
153 .snaplen = 65535,
154 .network = DLT_LINUX_LAPD,
155 };
Sylvain Munaut4b45e9d2020-05-08 09:40:44 +0200156 struct e1inp_line *line;
157 int i;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200158
Sylvain Munaut4b45e9d2020-05-08 09:40:44 +0200159 /* write header */
160 if (fd >= 0) {
161 int rc = write(fd, &header, sizeof(header));
162 if (rc < 0)
163 return rc;
164 }
165
166 /* update fd in all lines in our global list of e1 lines */
167 llist_for_each_entry(line, &e1inp_line_list, list) {
168 /* Set the PCAP file descriptor for all timeslots that have
169 * software LAPD instances, to ensure the osmo_lapd_pcap code is
170 * used to write PCAP files (if requested) */
171 for (i = 0; i < ARRAY_SIZE(line->ts); i++) {
172 struct e1inp_ts *e1i_ts = &line->ts[i];
173 if (e1i_ts->lapd)
174 e1i_ts->lapd->pcap_fd = fd;
175 }
176 }
177
178 /* close previous and update global */
179 if (pcap_fd >= 0)
180 close(pcap_fd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200181 pcap_fd = fd;
Sylvain Munaut4b45e9d2020-05-08 09:40:44 +0200182
183 return 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200184}
185
186/* This currently only works for the D-Channel */
187static void write_pcap_packet(int direction, int sapi, int tei,
188 struct msgb *msg) {
189 if (pcap_fd < 0)
190 return;
191
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200192 time_t cur_time;
193 struct tm *tm;
194
195 struct fake_linux_lapd_header header = {
196 .pkttype = 4,
197 .hatype = 0,
198 .halen = 0,
199 .addr = direction == PCAP_OUTPUT ? 0x0 : 0x1,
200 .protocol = ntohs(48),
201 };
202
203 struct lapd_header lapd_header = {
204 .ea1 = 0,
205 .cr = direction == PCAP_OUTPUT ? 1 : 0,
206 .sapi = sapi & 0x3F,
207 .ea2 = 1,
208 .tei = tei & 0x7F,
209 .control_foo = 0x03 /* UI */,
210 };
211
212 struct pcaprec_hdr payload_header = {
213 .ts_sec = 0,
214 .ts_usec = 0,
215 .incl_len = msgb_l2len(msg) + sizeof(struct fake_linux_lapd_header)
216 + sizeof(struct lapd_header),
217 .orig_len = msgb_l2len(msg) + sizeof(struct fake_linux_lapd_header)
218 + sizeof(struct lapd_header),
219 };
220
221
222 cur_time = time(NULL);
223 tm = localtime(&cur_time);
224 payload_header.ts_sec = mktime(tm);
225
Harald Weltec9295ea2014-08-21 02:41:41 +0200226 write(pcap_fd, &payload_header, sizeof(payload_header));
227 write(pcap_fd, &header, sizeof(header));
228 write(pcap_fd, &lapd_header, sizeof(lapd_header));
229 write(pcap_fd, msg->l2h, msgb_l2len(msg));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200230}
231
Harald Welte4ca5c532016-07-27 23:05:03 +0200232const struct value_string e1inp_sign_type_names[5] = {
233 { E1INP_SIGN_NONE, "None" },
234 { E1INP_SIGN_OML, "OML" },
235 { E1INP_SIGN_RSL, "RSL" },
236 { E1INP_SIGN_OSMO, "OSMO" },
237 { 0, NULL }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200238};
Harald Welte4ca5c532016-07-27 23:05:03 +0200239
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200240const char *e1inp_signtype_name(enum e1inp_sign_type tp)
241{
Harald Welte4ca5c532016-07-27 23:05:03 +0200242 return get_value_string(e1inp_sign_type_names, tp);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200243}
244
Harald Welteb3952c62020-06-20 22:07:36 +0200245const struct value_string e1inp_ts_type_names[] = {
Harald Welte4ca5c532016-07-27 23:05:03 +0200246 { E1INP_TS_TYPE_NONE, "None" },
247 { E1INP_TS_TYPE_SIGN, "Signalling" },
248 { E1INP_TS_TYPE_TRAU, "TRAU" },
Harald Weltea0108e72016-07-27 21:44:50 +0200249 { E1INP_TS_TYPE_RAW, "RAW" },
Harald Welte7a228eb2016-07-28 11:09:31 +0200250 { E1INP_TS_TYPE_HDLC, "HDLC" },
Harald Welteb3952c62020-06-20 22:07:36 +0200251 { E1INP_TS_TYPE_I460, "I460" },
Harald Welte4ca5c532016-07-27 23:05:03 +0200252 { 0, NULL }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200253};
254
255const char *e1inp_tstype_name(enum e1inp_ts_type tp)
256{
Harald Welte4ca5c532016-07-27 23:05:03 +0200257 return get_value_string(e1inp_ts_type_names, tp);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200258}
259
Pablo Neira Ayuso96e72632011-06-26 19:08:05 +0200260int abis_sendmsg(struct msgb *msg)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200261{
262 struct e1inp_sign_link *sign_link = msg->dst;
263 struct e1inp_driver *e1inp_driver;
264 struct e1inp_ts *e1i_ts;
Alexander Couzens35daa672016-11-08 16:17:20 +0100265
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200266 msg->l2h = msg->data;
267
268 /* don't know how to route this message. */
269 if (sign_link == NULL) {
Harald Welte40b0e8c2011-07-21 16:57:34 +0200270 LOGP(DLINP, LOGL_ERROR, "abis_sendmsg: msg->dst == NULL: %s\n",
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200271 osmo_hexdump(msg->data, msg->len));
272 talloc_free(msg);
273 return -EINVAL;
274 }
275 e1i_ts = sign_link->ts;
276 if (!osmo_timer_pending(&e1i_ts->sign.tx_timer)) {
277 /* notify the driver we have something to write */
278 e1inp_driver = sign_link->ts->line->driver;
279 e1inp_driver->want_write(e1i_ts);
280 }
281 msgb_enqueue(&sign_link->tx_list, msg);
282
Harald Welte7f9d8512016-07-04 09:59:46 +0200283 /* we only need to write a 'Fake LAPD' packet here, if the
284 * underlying driver hides LAPD from us. If we use the
285 * libosmocore LAPD implementation, it will take care of writing
286 * the _actual_ LAPD packet */
287 if (!e1i_ts->lapd) {
288 write_pcap_packet(PCAP_OUTPUT, sign_link->sapi,
289 sign_link->tei, msg);
290 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200291
292 return 0;
293}
294
Pablo Neira Ayuso96e72632011-06-26 19:08:05 +0200295int abis_rsl_sendmsg(struct msgb *msg)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200296{
Pablo Neira Ayuso96e72632011-06-26 19:08:05 +0200297 return abis_sendmsg(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200298}
299
300/* Timeslot */
301int e1inp_ts_config_trau(struct e1inp_ts *ts, struct e1inp_line *line,
Pablo Neira Ayuso211d2ca2011-06-07 17:15:10 +0200302 int (*trau_rcv_cb)(struct subch_demux *dmx, int ch,
Harald Welte5226e5b2020-05-07 23:09:16 +0200303 const ubit_t *data, int len, void *_priv))
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200304{
305 if (ts->type == E1INP_TS_TYPE_TRAU && ts->line && line)
306 return 0;
307
308 ts->type = E1INP_TS_TYPE_TRAU;
309 ts->line = line;
310
311 subchan_mux_init(&ts->trau.mux);
Pablo Neira Ayuso211d2ca2011-06-07 17:15:10 +0200312 ts->trau.demux.out_cb = trau_rcv_cb;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200313 ts->trau.demux.data = ts;
314 subch_demux_init(&ts->trau.demux);
315 return 0;
316}
317
Harald Welteb3952c62020-06-20 22:07:36 +0200318int e1inp_ts_config_i460(struct e1inp_ts *ts, struct e1inp_line *line)
319{
320 if (ts->type == E1INP_TS_TYPE_I460 && ts->line && line)
321 return 0;
322
323 ts->type = E1INP_TS_TYPE_I460;
324 ts->line = line;
325 osmo_i460_ts_init(&ts->i460.i460_ts);
326 return 0;
327}
328
Harald Welteb9031882020-05-02 21:09:15 +0200329void e1inp_ts_name(char *out, size_t out_len, const struct e1inp_ts *ts)
330{
331 if (ts->line->name)
332 snprintf(out, out_len, "%s:%u", ts->line->name, ts->num);
333 else
334 snprintf(out, out_len, "%u:%u", ts->line->num, ts->num);
335}
336
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200337int e1inp_ts_config_sign(struct e1inp_ts *ts, struct e1inp_line *line)
338{
339 if (ts->type == E1INP_TS_TYPE_SIGN && ts->line && line)
340 return 0;
341
342 ts->type = E1INP_TS_TYPE_SIGN;
343 ts->line = line;
344
345 if (line && line->driver)
346 ts->sign.delay = line->driver->default_delay;
347 else
348 ts->sign.delay = 100000;
349 INIT_LLIST_HEAD(&ts->sign.sign_links);
350 return 0;
351}
352
Harald Weltea0108e72016-07-27 21:44:50 +0200353int e1inp_ts_config_raw(struct e1inp_ts *ts, struct e1inp_line *line,
354 void (*raw_recv_cb)(struct e1inp_ts *ts,
355 struct msgb *msg))
356{
357 if (ts->type == E1INP_TS_TYPE_RAW && ts->line && line)
358 return 0;
359
360 ts->type = E1INP_TS_TYPE_RAW;
361 ts->line = line;
362 ts->raw.recv_cb = raw_recv_cb;
363 INIT_LLIST_HEAD(&ts->raw.tx_queue);
364
365 return 0;
366}
367
Harald Welte7a228eb2016-07-28 11:09:31 +0200368int e1inp_ts_config_hdlc(struct e1inp_ts *ts, struct e1inp_line *line,
369 void (*hdlc_recv_cb)(struct e1inp_ts *ts,
370 struct msgb *msg))
371{
372 if (ts->type == E1INP_TS_TYPE_HDLC && ts->line && line)
373 return 0;
374
375 ts->type = E1INP_TS_TYPE_HDLC;
376 ts->line = line;
377 ts->hdlc.recv_cb = hdlc_recv_cb;
378 INIT_LLIST_HEAD(&ts->hdlc.tx_queue);
379
380 return 0;
381}
382
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200383static int e1inp_line_use_cb(struct osmo_use_count_entry *use_count_entry, int32_t old_use_count,
384 const char *file, int file_line)
385{
386 char buf[512];
387 struct osmo_use_count *uc = use_count_entry->use_count;
388 struct e1inp_line *line = uc->talloc_object;
389
390 LOGPSRC(DLINP, LOGL_INFO, file, file_line,
391 "E1L(%u) Line (%p) reference count %s changed %" PRId32 " -> %" PRId32 " [%s]\n",
392 (line)->num, line, use_count_entry->use,
393 old_use_count, use_count_entry->count,
394 osmo_use_count_name_buf(buf, sizeof(buf), uc));
395
396 if (!use_count_entry->count)
397 osmo_use_count_free(use_count_entry);
398
399 if (osmo_use_count_total(uc) > 0)
400 return 0;
401
402 /* Remove our counter group from libosmocore's global counter
403 * list if we are freeing the last remaining talloc context.
404 * Otherwise we get a use-after-free when libosmocore's timer
405 * ticks again and attempts to update these counters (OS#3011).
406 *
407 * Note that talloc internally counts "secondary" references
408 * _in addition to_ the initial allocation context, so yes,
409 * we must check for *zero* remaining secondary contexts here. */
410 if (talloc_reference_count(line->rate_ctr) == 0) {
411 rate_ctr_group_free(line->rate_ctr);
412 } else {
413 /* We are not freeing the last talloc context.
414 * Instead of calling talloc_free(), unlink this 'line' pointer
415 * which serves as one of several talloc contexts for the rate
416 * counters and driver private state. */
417 talloc_unlink(line, line->rate_ctr);
418 if (line->driver_data)
419 talloc_unlink(line, line->driver_data);
420 }
421 talloc_free(line);
422 return 0;
423}
424
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200425struct e1inp_line *e1inp_line_find(uint8_t e1_nr)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200426{
427 struct e1inp_line *e1i_line;
428
429 /* iterate over global list of e1 lines */
430 llist_for_each_entry(e1i_line, &e1inp_line_list, list) {
431 if (e1i_line->num == e1_nr)
432 return e1i_line;
433 }
434 return NULL;
435}
436
437struct e1inp_line *
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200438e1inp_line_create(uint8_t e1_nr, const char *driver_name)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200439{
440 struct e1inp_driver *driver;
441 struct e1inp_line *line;
442 int i;
443
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200444 line = e1inp_line_find(e1_nr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200445 if (line) {
Harald Welteb5af0992020-01-12 12:59:52 +0100446 LOGPIL(line, DLINP, LOGL_ERROR, "E1 Line %u already exists\n", e1_nr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200447 return NULL;
448 }
449
450 driver = e1inp_driver_find(driver_name);
451 if (!driver) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200452 LOGP(DLINP, LOGL_ERROR, "No such E1 driver '%s'\n",
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200453 driver_name);
454 return NULL;
455 }
456
457 line = talloc_zero(tall_e1inp_ctx, struct e1inp_line);
458 if (!line)
459 return NULL;
460
461 line->driver = driver;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200462 line->num = e1_nr;
Harald Weltef2737fc2011-08-16 14:30:10 +0200463
464 line->rate_ctr = rate_ctr_group_alloc(line, &e1inp_ctr_g_d, line->num);
Harald Welteff8eed22017-07-12 00:38:25 +0200465 if (!line->rate_ctr) {
Harald Welteb5af0992020-01-12 12:59:52 +0100466 LOGPIL(line, DLINP, LOGL_ERROR, "Cannot allocate counter group\n");
Harald Welteff8eed22017-07-12 00:38:25 +0200467 talloc_free(line);
468 return NULL;
469 }
Harald Weltef2737fc2011-08-16 14:30:10 +0200470
Harald Weltec2889512011-09-13 23:49:04 +0100471 line->num_ts = NUM_E1_TS;
472 for (i = 0; i < line->num_ts; i++) {
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200473 line->ts[i].num = i+1;
474 line->ts[i].line = line;
475 }
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200476
477 line->use_count.talloc_object = line;
478 line->use_count.use_cb = e1inp_line_use_cb;
479 e1inp_line_get2(line, "ctor");
480
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200481 llist_add_tail(&line->list, &e1inp_line_list);
482
483 return line;
484}
485
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200486struct e1inp_line *
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200487e1inp_line_clone(void *ctx, struct e1inp_line *line, const char *use)
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200488{
489 struct e1inp_line *clone;
490
491 /* clone virtual E1 line for this new OML link. */
492 clone = talloc_zero(ctx, struct e1inp_line);
493 if (clone == NULL)
494 return NULL;
495
496 memcpy(clone, line, sizeof(struct e1inp_line));
Stefan Sperlingb0162072018-05-22 18:19:00 +0200497
498 if (line->name) {
499 clone->name = talloc_strdup(clone, line->name);
500 OSMO_ASSERT(clone->name);
501 }
502 if (line->sock_path) {
503 clone->sock_path = talloc_strdup(clone, line->sock_path);
504 OSMO_ASSERT(clone->sock_path);
505 }
506
507 /*
508 * Rate counters and driver data are shared between clones. These are pointers
509 * to dynamic memory so we use reference counting to avoid a double-free (see OS#3137).
510 */
511 OSMO_ASSERT(line->rate_ctr);
512 clone->rate_ctr = talloc_reference(clone, line->rate_ctr);
513 if (line->driver_data)
514 clone->driver_data = talloc_reference(clone, line->driver_data);
515
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200516 clone->use_count = (struct osmo_use_count) {
517 .talloc_object = clone,
518 .use_cb = e1inp_line_use_cb,
519 .use_counts = {0},
520 };
521 e1inp_line_get2(clone, use); /* Clone is used internally for bfd */
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200522 return clone;
523}
524
525void e1inp_line_get(struct e1inp_line *line)
526{
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200527 e1inp_line_get2(line, "unknown");
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200528}
529
530void e1inp_line_put(struct e1inp_line *line)
531{
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200532 e1inp_line_put2(line, "unknown");
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200533}
534
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200535void
536e1inp_line_bind_ops(struct e1inp_line *line, const struct e1inp_line_ops *ops)
537{
538 line->ops = ops;
539}
540
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200541#if 0
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200542struct e1inp_line *e1inp_line_find_create(uint8_t e1_nr)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200543{
544 struct e1inp_line *line;
545 int i;
546
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200547 line = e1inp_line_find(e1_nr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200548 if (line)
549 return line;
550
551 line = talloc_zero(tall_e1inp_ctx, struct e1inp_line);
552 if (!line)
553 return NULL;
554
555 line->num = e1_nr;
556 for (i = 0; i < NUM_E1_TS; i++) {
557 line->ts[i].num = i+1;
558 line->ts[i].line = line;
559 }
560 llist_add_tail(&line->list, &e1inp_line_list);
561
562 return line;
563}
564#endif
565
566static struct e1inp_ts *e1inp_ts_get(uint8_t e1_nr, uint8_t ts_nr)
567{
568 struct e1inp_line *e1i_line;
569
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200570 e1i_line = e1inp_line_find(e1_nr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200571 if (!e1i_line)
572 return NULL;
573
574 return &e1i_line->ts[ts_nr-1];
575}
576
577struct subch_mux *e1inp_get_mux(uint8_t e1_nr, uint8_t ts_nr)
578{
579 struct e1inp_ts *e1i_ts = e1inp_ts_get(e1_nr, ts_nr);
580
581 if (!e1i_ts)
582 return NULL;
583
584 return &e1i_ts->trau.mux;
585}
586
587/* Signalling Link */
588
589struct e1inp_sign_link *e1inp_lookup_sign_link(struct e1inp_ts *e1i,
590 uint8_t tei, uint8_t sapi)
591{
592 struct e1inp_sign_link *link;
593
594 llist_for_each_entry(link, &e1i->sign.sign_links, list) {
595 if (link->sapi == sapi && link->tei == tei)
596 return link;
597 }
598
599 return NULL;
600}
601
602/* create a new signalling link in a E1 timeslot */
603
604struct e1inp_sign_link *
605e1inp_sign_link_create(struct e1inp_ts *ts, enum e1inp_sign_type type,
606 struct gsm_bts_trx *trx, uint8_t tei,
607 uint8_t sapi)
608{
609 struct e1inp_sign_link *link;
610
611 if (ts->type != E1INP_TS_TYPE_SIGN)
612 return NULL;
613
614 link = talloc_zero(tall_sigl_ctx, struct e1inp_sign_link);
615 if (!link)
616 return NULL;
617
618 link->ts = ts;
619 link->type = type;
620 INIT_LLIST_HEAD(&link->tx_list);
621 link->trx = trx;
622 link->tei = tei;
623 link->sapi = sapi;
624
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200625 e1inp_line_get2(link->ts->line, "e1inp_sign_link");
Pau Espin Pedrol89c6b8a2020-06-08 20:26:44 +0200626
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200627 llist_add_tail(&link->list, &ts->sign.sign_links);
628
629 return link;
630}
631
632void e1inp_sign_link_destroy(struct e1inp_sign_link *link)
633{
634 struct msgb *msg;
635
636 llist_del(&link->list);
637 while (!llist_empty(&link->tx_list)) {
638 msg = msgb_dequeue(&link->tx_list);
639 msgb_free(msg);
640 }
641
642 if (link->ts->type == E1INP_TS_TYPE_SIGN)
643 osmo_timer_del(&link->ts->sign.tx_timer);
644
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200645 if (link->ts->line->driver->close)
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200646 link->ts->line->driver->close(link);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200647
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200648 e1inp_line_put2(link->ts->line, "e1inp_sign_link");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200649 talloc_free(link);
650}
651
652/* XXX */
653/* the E1 driver tells us he has received something on a TS */
654int e1inp_rx_ts(struct e1inp_ts *ts, struct msgb *msg,
655 uint8_t tei, uint8_t sapi)
656{
657 struct e1inp_sign_link *link;
658 int ret = 0;
659
660 switch (ts->type) {
661 case E1INP_TS_TYPE_SIGN:
Harald Welte7f9d8512016-07-04 09:59:46 +0200662 /* we only need to write a 'Fake LAPD' packet here, if
663 * the underlying driver hides LAPD from us. If we use
664 * the libosmocore LAPD implementation, it will take
665 * care of writing the _actual_ LAPD packet */
666 if (!ts->lapd)
667 write_pcap_packet(PCAP_INPUT, sapi, tei, msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200668 /* consult the list of signalling links */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200669 link = e1inp_lookup_sign_link(ts, tei, sapi);
670 if (!link) {
Harald Welteb5af0992020-01-12 12:59:52 +0100671 LOGPITS(ts, DLMI, LOGL_ERROR, "didn't find signalling link for "
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200672 "tei %d, sapi %d\n", tei, sapi);
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200673 msgb_free(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200674 return -EINVAL;
675 }
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200676 if (!ts->line->ops->sign_link) {
Harald Welteb5af0992020-01-12 12:59:52 +0100677 LOGPITS(ts, DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200678 "no action set for signalling messages.\n");
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200679 msgb_free(msg);
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200680 return -ENOENT;
681 }
Pablo Neira Ayusodbd82fb2011-07-05 15:29:23 +0200682 msg->dst = link;
683 ts->line->ops->sign_link(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200684 break;
685 case E1INP_TS_TYPE_TRAU:
Pablo Neira Ayuso211d2ca2011-06-07 17:15:10 +0200686 ret = subch_demux_in(&ts->trau.demux, msg->l2h, msgb_l2len(msg));
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200687 msgb_free(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200688 break;
Harald Weltea0108e72016-07-27 21:44:50 +0200689 case E1INP_TS_TYPE_RAW:
690 ts->raw.recv_cb(ts, msg);
691 break;
Harald Welte7a228eb2016-07-28 11:09:31 +0200692 case E1INP_TS_TYPE_HDLC:
693 ts->hdlc.recv_cb(ts, msg);
694 break;
Harald Welteb3952c62020-06-20 22:07:36 +0200695 case E1INP_TS_TYPE_I460:
696 osmo_i460_demux_in(&ts->i460.i460_ts, msg->l2h, msgb_l2len(msg));
697 msgb_free(msg);
698 break;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200699 default:
700 ret = -EINVAL;
Harald Welteb5af0992020-01-12 12:59:52 +0100701 LOGPITS(ts, DLMI, LOGL_ERROR, "unknown TS type %u\n", ts->type);
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200702 msgb_free(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200703 break;
704 }
705
706 return ret;
707}
708
Harald Weltefd44a5f2011-08-21 00:48:54 +0200709/*! \brief Receive some data from the L1/HDLC into LAPD of a timeslot
710 * \param[in] e1i_ts E1 Timeslot data structure
711 * \param[in] msg Message buffer containing full LAPD message
712 *
713 * This is a wrapper around e1inp_rx_ts(), but feeding the incoming
714 * message first into our LAPD code. This allows a driver to read raw
715 * (HDLC decoded) data from the timeslot, instead of a LAPD stack
716 * present in any underlying driver.
717 */
718int e1inp_rx_ts_lapd(struct e1inp_ts *e1i_ts, struct msgb *msg)
719{
Harald Weltefd44a5f2011-08-21 00:48:54 +0200720 unsigned int sapi, tei;
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200721 int ret = 0, error = 0;
Harald Weltefd44a5f2011-08-21 00:48:54 +0200722
723 sapi = msg->data[0] >> 2;
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200724 if ((msg->data[0] & 0x1))
725 tei = 0;
726 else
727 tei = msg->data[1] >> 1;
Harald Weltefd44a5f2011-08-21 00:48:54 +0200728
Harald Welteb5af0992020-01-12 12:59:52 +0100729 LOGPITS(e1i_ts, DLMI, LOGL_DEBUG, "<= len = %d, sapi(%d) tei(%d)\n", msg->len, sapi, tei);
Harald Weltefd44a5f2011-08-21 00:48:54 +0200730
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200731 ret = lapd_receive(e1i_ts->lapd, msg, &error);
732 if (ret < 0) {
Harald Weltefd44a5f2011-08-21 00:48:54 +0200733 switch(error) {
734 case LAPD_ERR_UNKNOWN_TEI:
735 /* We don't know about this TEI, probably the BSC
736 * lost local states (it crashed or it was stopped),
737 * notify the driver to see if it can do anything to
738 * recover the existing signalling links with the BTS.
739 */
740 e1inp_event(e1i_ts, S_L_INP_TEI_UNKNOWN, tei, sapi);
741 return -EIO;
742 }
Harald Weltefd44a5f2011-08-21 00:48:54 +0200743 }
744
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200745 return 0;
746}
Harald Weltefd44a5f2011-08-21 00:48:54 +0200747
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200748void e1inp_dlsap_up(struct osmo_dlsap_prim *dp, uint8_t tei, uint8_t sapi,
749 void *rx_cbdata)
750{
751 struct e1inp_ts *e1i_ts = rx_cbdata;
752 struct msgb *msg = dp->oph.msg;
Harald Weltefd44a5f2011-08-21 00:48:54 +0200753
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200754 switch (dp->oph.primitive) {
755 case PRIM_DL_EST:
Harald Welteb5af0992020-01-12 12:59:52 +0100756 LOGPITS(e1i_ts, DLMI, LOGL_DEBUG, "DL_EST: sapi(%d) tei(%d)\n", sapi, tei);
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200757 e1inp_event(e1i_ts, S_L_INP_TEI_UP, tei, sapi);
Harald Weltefd44a5f2011-08-21 00:48:54 +0200758 break;
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200759 case PRIM_DL_REL:
Harald Welteb5af0992020-01-12 12:59:52 +0100760 LOGPITS(e1i_ts, DLMI, LOGL_DEBUG, "DL_REL: sapi(%d) tei(%d)\n", sapi, tei);
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200761 e1inp_event(e1i_ts, S_L_INP_TEI_DN, tei, sapi);
Harald Weltefd44a5f2011-08-21 00:48:54 +0200762 break;
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200763 case PRIM_DL_DATA:
764 case PRIM_DL_UNIT_DATA:
765 if (dp->oph.operation == PRIM_OP_INDICATION) {
766 msg->l2h = msg->l3h;
Harald Welteb5af0992020-01-12 12:59:52 +0100767 LOGPITS(e1i_ts, DLMI, LOGL_DEBUG, "RX: %s sapi=%d tei=%d\n",
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200768 osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)),
769 sapi, tei);
770 e1inp_rx_ts(e1i_ts, msg, tei, sapi);
771 return;
772 }
Harald Weltefd44a5f2011-08-21 00:48:54 +0200773 break;
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200774 case PRIM_MDL_ERROR:
Harald Welteb5af0992020-01-12 12:59:52 +0100775 LOGPITS(e1i_ts, DLMI, LOGL_DEBUG, "MDL_EERROR: cause(%d)\n", dp->u.error_ind.cause);
Harald Weltefd44a5f2011-08-21 00:48:54 +0200776 break;
777 default:
778 printf("ERROR: unknown prim\n");
779 break;
780 }
Andreas Eversberga7ff0012011-09-26 11:29:30 +0200781
782 msgb_free(msg);
783
784 return;
Harald Weltefd44a5f2011-08-21 00:48:54 +0200785}
786
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200787#define TSX_ALLOC_SIZE 4096
788
789/* called by driver if it wants to transmit on a given TS */
790struct msgb *e1inp_tx_ts(struct e1inp_ts *e1i_ts,
791 struct e1inp_sign_link **sign_link)
792{
793 struct e1inp_sign_link *link;
794 struct msgb *msg = NULL;
795 int len;
796
797 switch (e1i_ts->type) {
798 case E1INP_TS_TYPE_SIGN:
799 /* FIXME: implement this round robin */
800 llist_for_each_entry(link, &e1i_ts->sign.sign_links, list) {
801 msg = msgb_dequeue(&link->tx_list);
802 if (msg) {
803 if (sign_link)
804 *sign_link = link;
805 break;
806 }
807 }
808 break;
809 case E1INP_TS_TYPE_TRAU:
810 msg = msgb_alloc(TSX_ALLOC_SIZE, "TRAU_TX");
811 if (!msg)
812 return NULL;
813 len = subchan_mux_out(&e1i_ts->trau.mux, msg->data, 40);
Pablo Neira Ayuso33f71752013-07-05 15:44:12 +0200814 if (len != 40) {
Harald Welteb5af0992020-01-12 12:59:52 +0100815 LOGPITS(e1i_ts, DLMI, LOGL_ERROR, "cannot transmit, failed to mux\n");
Pablo Neira Ayuso33f71752013-07-05 15:44:12 +0200816 msgb_free(msg);
817 return NULL;
818 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200819 msgb_put(msg, 40);
820 break;
Harald Weltea0108e72016-07-27 21:44:50 +0200821 case E1INP_TS_TYPE_RAW:
822 /* Get msgb from tx_queue */
823 msg = msgb_dequeue(&e1i_ts->raw.tx_queue);
824 break;
Harald Welte7a228eb2016-07-28 11:09:31 +0200825 case E1INP_TS_TYPE_HDLC:
826 /* Get msgb from tx_queue */
827 msg = msgb_dequeue(&e1i_ts->hdlc.tx_queue);
828 break;
Harald Welteb3952c62020-06-20 22:07:36 +0200829 case E1INP_TS_TYPE_I460:
830 msg = msgb_alloc(TSX_ALLOC_SIZE, "I460_TX");
831 if (!msg)
832 return NULL;
833 len = osmo_i460_mux_out(&e1i_ts->i460.i460_ts, msg->data, 160);
834 msgb_put(msg, len);
835 break;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200836 default:
Harald Welteb5af0992020-01-12 12:59:52 +0100837 LOGPITS(e1i_ts, DLMI, LOGL_ERROR, "unsupported E1 TS type %u\n", e1i_ts->type);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200838 return NULL;
839 }
840 return msg;
841}
842
Pau Espin Pedrol8737ad42020-07-14 21:11:56 +0200843int e1inp_int_snd_event(struct e1inp_ts *ts, struct e1inp_sign_link *link, int evt)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200844{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200845 struct input_signal_data isd;
Pablo Neira Ayuso31fe5f22011-08-09 23:15:38 +0200846 isd.line = ts->line;
Harald Weltef35d8892016-10-16 15:33:52 +0200847 isd.ts_nr = ts->num;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200848 isd.link_type = link->type;
849 isd.trx = link->trx;
Holger Hans Peter Freyther55467f02011-12-28 19:47:07 +0100850 isd.tei = link->tei;
851 isd.sapi = link->sapi;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200852
853 /* report further upwards */
Harald Weltecc2241b2011-07-19 16:06:06 +0200854 osmo_signal_dispatch(SS_L_INPUT, evt, &isd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200855 return 0;
856}
857
Holger Hans Peter Freyther55467f02011-12-28 19:47:07 +0100858
859/* called by driver in case some kind of link state event */
860int e1inp_event(struct e1inp_ts *ts, int evt, uint8_t tei, uint8_t sapi)
861{
862 struct e1inp_sign_link *link;
863
864 link = e1inp_lookup_sign_link(ts, tei, sapi);
865 if (!link)
866 return -EINVAL;
867 return e1inp_int_snd_event(ts, link, evt);
868}
869
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200870/* register a driver with the E1 core */
871int e1inp_driver_register(struct e1inp_driver *drv)
872{
873 llist_add_tail(&drv->list, &e1inp_driver_list);
874 return 0;
875}
876
877struct e1inp_driver *e1inp_driver_find(const char *name)
878{
879 struct e1inp_driver *drv;
880
881 llist_for_each_entry(drv, &e1inp_driver_list, list) {
882 if (!strcasecmp(name, drv->name))
883 return drv;
884 }
885 return NULL;
886}
887
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200888int e1inp_line_update(struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200889{
890 struct input_signal_data isd;
Harald Welte7f9d8512016-07-04 09:59:46 +0200891 int i, rc;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200892
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200893 if (line->driver && line->ops && line->driver->line_update) {
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200894 rc = line->driver->line_update(line);
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200895 } else
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200896 rc = 0;
897
Harald Welte7f9d8512016-07-04 09:59:46 +0200898 /* Set the PCAP file descriptor for all timeslots that have
899 * software LAPD instances, to ensure the osmo_lapd_pcap code is
900 * used to write PCAP files (if requested) */
901 for (i = 0; i < ARRAY_SIZE(line->ts); i++) {
902 struct e1inp_ts *e1i_ts = &line->ts[i];
903 if (e1i_ts->lapd)
904 e1i_ts->lapd->pcap_fd = pcap_fd;
905 }
906
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200907 /* Send a signal to anyone who is interested in new lines being
908 * configured */
909 memset(&isd, 0, sizeof(isd));
910 isd.line = line;
Pablo Neira Ayusode668912011-08-16 17:26:23 +0200911 osmo_signal_dispatch(SS_L_INPUT, S_L_INP_LINE_INIT, &isd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200912
913 return rc;
914}
915
Pablo Neira Ayusoa20762a2011-07-02 19:01:58 +0200916static int e1i_sig_cb(unsigned int subsys, unsigned int signal,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200917 void *handler_data, void *signal_data)
918{
Harald Weltecc2241b2011-07-19 16:06:06 +0200919 if (subsys != SS_L_GLOBAL ||
920 signal != S_L_GLOBAL_SHUTDOWN)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200921 return 0;
922
923 if (pcap_fd) {
924 close(pcap_fd);
925 pcap_fd = -1;
926 }
927
928 return 0;
929}
930
Harald Weltecac78fe2017-05-25 19:13:13 +0200931const struct value_string e1inp_signal_names[] = {
932 { S_L_INP_NONE, "NONE" },
933 { S_L_INP_TEI_UP, "TEI-UP" },
934 { S_L_INP_TEI_DN, "TEI-DOWN" },
935 { S_L_INP_TEI_UNKNOWN, "TEI-UNKNOWN" },
936 { S_L_INP_LINE_INIT, "LINE-INIT" },
937 { S_L_INP_LINE_ALARM, "LINE-ALARM" },
938 { S_L_INP_LINE_NOALARM, "LINE-NOALARM" },
939 { 0, NULL }
940};
941
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200942void e1inp_misdn_init(void);
943void e1inp_dahdi_init(void);
Harald Weltec6c70762019-05-12 21:54:59 +0200944void e1inp_e1d_init(void);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200945void e1inp_ipaccess_init(void);
Pablo Neira Ayuso7e0d0062011-08-19 11:36:15 +0200946void e1inp_rs232_init(void);
Alexander Couzensbeb10ef2016-11-01 22:05:13 +0100947void e1inp_unixsocket_init(void);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200948
949void e1inp_init(void)
950{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +0200951 tall_e1inp_ctx = talloc_named_const(libosmo_abis_ctx, 1, "e1inp");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200952 tall_sigl_ctx = talloc_named_const(tall_e1inp_ctx, 1,
953 "e1inp_sign_link");
Harald Weltecc2241b2011-07-19 16:06:06 +0200954 osmo_signal_register_handler(SS_L_GLOBAL, e1i_sig_cb, NULL);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200955
956 e1inp_misdn_init();
Harald Welte3bc78852011-08-24 08:32:38 +0200957#ifdef HAVE_DAHDI_USER_H
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200958 e1inp_dahdi_init();
Harald Welte3bc78852011-08-24 08:32:38 +0200959#endif
Harald Welte52b0d452019-05-12 21:54:26 +0200960#ifdef HAVE_E1D
Sylvain Munautb559a532019-05-09 11:14:26 +0200961 e1inp_e1d_init();
962#endif
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200963 e1inp_ipaccess_init();
Pablo Neira Ayuso7e0d0062011-08-19 11:36:15 +0200964 e1inp_rs232_init();
Alexander Couzensbeb10ef2016-11-01 22:05:13 +0100965 e1inp_unixsocket_init();
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200966}