blob: 474eb45da842617e175fc182da2f9dc1d5cf87c6 [file] [log] [blame]
Holger Hans Peter Freyther7127b022014-08-04 11:52:52 +02001/* GPRS utility functions */
2
3/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2010-2014 by On-Waves
5 * (C) 2013 by Holger Hans Peter Freyther
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22#pragma once
23
24#include <stdint.h>
25#include <sys/types.h>
26
27struct msgb;
Jacob Erlbecke7bcdc32016-01-04 18:43:34 +010028struct gprs_ra_id;
Holger Hans Peter Freyther7127b022014-08-04 11:52:52 +020029
30struct msgb *gprs_msgb_copy(const struct msgb *msg, const char *name);
31int gprs_msgb_resize_area(struct msgb *msg, uint8_t *area,
32 size_t old_size, size_t new_size);
33char *gprs_apn_to_str(char *out_str, const uint8_t *apn_enc, size_t rest_chars);
Holger Hans Peter Freytherce1b22e2014-08-04 14:22:13 +020034int gprs_str_to_apn(uint8_t *apn_enc, size_t max_len, const char *str);
Jacob Erlbeck79af67d2015-01-19 08:27:34 +010035
36/* GSM 04.08, 10.5.7.3 GPRS Timer */
37int gprs_tmr_to_secs(uint8_t tmr);
38uint8_t gprs_secs_to_tmr_floor(int secs);
39
Jacob Erlbeck9114bee2014-08-19 12:21:01 +020040int gprs_is_mi_tmsi(const uint8_t *value, size_t value_len);
41int gprs_is_mi_imsi(const uint8_t *value, size_t value_len);
42int gprs_parse_mi_tmsi(const uint8_t *value, size_t value_len, uint32_t *tmsi);
Jacob Erlbeck49389172014-10-02 16:14:47 +020043void gprs_parse_tmsi(const uint8_t *value, uint32_t *tmsi);
Jacob Erlbeckdcfd4562014-12-11 11:01:46 +010044
45int gprs_shift_v_fixed(uint8_t **data, size_t *data_len,
46 size_t len, uint8_t **value);
47int gprs_match_tv_fixed(uint8_t **data, size_t *data_len,
48 uint8_t tag, size_t len, uint8_t **value);
Jacob Erlbeck697a5342014-12-11 12:05:29 +010049int gprs_shift_tlv(uint8_t **data, size_t *data_len,
50 uint8_t *tag, uint8_t **value, size_t *value_len);
Jacob Erlbeckdcfd4562014-12-11 11:01:46 +010051int gprs_match_tlv(uint8_t **data, size_t *data_len,
52 uint8_t tag, uint8_t **value, size_t *value_len);
53int gprs_shift_lv(uint8_t **data, size_t *data_len,
54 uint8_t **value, size_t *value_len);
55
Jacob Erlbecke7bcdc32016-01-04 18:43:34 +010056int gprs_ra_id_equals(const struct gprs_ra_id *id1, const struct gprs_ra_id *id2);