blob: 363fc39047824df0044924c68edd892e7d89527b [file] [log] [blame]
Harald Welte37b61652017-10-16 18:46:03 +02001/*! \addtogroup gsm0808
2 * @{
3 * \file gsm0808_utils.h */
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02004/*
Harald Weltee08da972017-11-13 01:00:26 +09005 * (C) 2016 by sysmocom - s.f.m.c. GmbH, Author: Philipp Maier
Philipp Maier22401432017-03-24 17:59:26 +01006 * All Rights Reserved
7 *
Harald Weltee08da972017-11-13 01:00:26 +09008 * SPDX-License-Identifier: GPL-2.0+
Philipp Maier22401432017-03-24 17:59:26 +01009 *
10 * This program is free software; you can redistribute it and/or modify
Harald Weltee08da972017-11-13 01:00:26 +090011 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
Philipp Maier22401432017-03-24 17:59:26 +010013 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Weltee08da972017-11-13 01:00:26 +090018 * GNU General Public License for more details.
Philipp Maier22401432017-03-24 17:59:26 +010019 *
Harald Weltee08da972017-11-13 01:00:26 +090020 * You should have received a copy of the GNU General Public License
Philipp Maier22401432017-03-24 17:59:26 +010021 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 *
23 */
24#pragma once
25
Harald Welte20725b92017-05-15 12:50:04 +020026struct sockaddr_storage;
Philipp Maier22401432017-03-24 17:59:26 +010027
Philipp Maier6f725d62017-03-24 18:03:17 +010028#include <osmocom/gsm/protocol/gsm_08_08.h>
Stefan Sperling11a4d9d2018-02-15 18:28:04 +010029#include <osmocom/gsm/gsm23003.h>
30
31 /*! (225-1)/2 is the maximum number of elements in a cell identifier list. */
32#define GSM0808_CELL_ID_LIST2_MAXLEN 127
33
34/*! Parsed representation of a cell identifier list IE. */
35struct gsm0808_cell_id_list2 {
36 enum CELL_IDENT id_discr;
37 union {
38 /*!
39 * All elements of these arrays contain parsed representations of the
40 * data in the corresponding IE, in host-byte order.
41 */
42 struct osmo_cell_global_id global;
43 struct osmo_lac_and_ci_id lac_and_ci;
44 uint16_t ci;
45 struct osmo_location_area_id lai_and_lac;
46 uint16_t lac;
47 } id_list[GSM0808_CELL_ID_LIST2_MAXLEN];
48 unsigned int id_list_len;
49};
Philipp Maier6f725d62017-03-24 18:03:17 +010050
Philipp Maier22401432017-03-24 17:59:26 +010051uint8_t gsm0808_enc_aoip_trasp_addr(struct msgb *msg,
52 const struct sockaddr_storage *ss);
Philipp Maier22401432017-03-24 17:59:26 +010053int gsm0808_dec_aoip_trasp_addr(struct sockaddr_storage *ss,
54 const uint8_t *elem, uint8_t len);
Philipp Maier6f725d62017-03-24 18:03:17 +010055uint8_t gsm0808_enc_speech_codec(struct msgb *msg,
56 const struct gsm0808_speech_codec *sc);
Philipp Maier6f725d62017-03-24 18:03:17 +010057int gsm0808_dec_speech_codec(struct gsm0808_speech_codec *sc,
58 const uint8_t *elem, uint8_t len);
Philipp Maier6f725d62017-03-24 18:03:17 +010059uint8_t gsm0808_enc_speech_codec_list(struct msgb *msg,
60 const struct gsm0808_speech_codec_list
61 *scl);
Philipp Maier6f725d62017-03-24 18:03:17 +010062int gsm0808_dec_speech_codec_list(struct gsm0808_speech_codec_list *scl,
63 const uint8_t *elem, uint8_t len);
Philipp Maiere0c65302017-03-28 17:05:40 +020064uint8_t gsm0808_enc_channel_type(struct msgb *msg,
65 const struct gsm0808_channel_type *ct);
Philipp Maiere0c65302017-03-28 17:05:40 +020066int gsm0808_dec_channel_type(struct gsm0808_channel_type *ct,
67 const uint8_t *elem, uint8_t len);
Philipp Maier14e76b92017-03-28 18:36:52 +020068uint8_t gsm0808_enc_encrypt_info(struct msgb *msg,
69 const struct gsm0808_encrypt_info *ei);
Philipp Maier14e76b92017-03-28 18:36:52 +020070int gsm0808_dec_encrypt_info(struct gsm0808_encrypt_info *ei,
71 const uint8_t *elem, uint8_t len);
Stefan Sperling11a4d9d2018-02-15 18:28:04 +010072uint8_t gsm0808_enc_cell_id_list2(struct msgb *msg, const struct gsm0808_cell_id_list2 *cil);
Philipp Maier783047e2017-03-29 11:35:50 +020073uint8_t gsm0808_enc_cell_id_list(struct msgb *msg,
Stefan Sperling11a4d9d2018-02-15 18:28:04 +010074 const struct gsm0808_cell_id_list *cil)
75 OSMO_DEPRECATED("use gsm0808_enc_cell_id_list2 instead");
76int gsm0808_dec_cell_id_list2(struct gsm0808_cell_id_list2 *cil, const uint8_t *elem, uint8_t len);
Philipp Maier783047e2017-03-29 11:35:50 +020077int gsm0808_dec_cell_id_list(struct gsm0808_cell_id_list *cil,
Stefan Sperling11a4d9d2018-02-15 18:28:04 +010078 const uint8_t *elem, uint8_t len)
79 OSMO_DEPRECATED("use gsm0808_dec_cell_id_list2 instead");
Neels Hofmeyr9a391e22017-06-23 02:34:08 +020080int gsm0808_chan_type_to_speech_codec(uint8_t perm_spch);
Philipp Maier884ba0f2017-06-02 13:49:16 +020081int gsm0808_speech_codec_from_chan_type(struct gsm0808_speech_codec *sc,
82 uint8_t perm_spch);
Harald Welte37b61652017-10-16 18:46:03 +020083
84/*! @} */