blob: 1c55dfb060cf40eb5ab83c71e917347dcbb974bb [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/* GSM utility functions, e.g. coding and decoding */
2/*
3 * (C) 2008 by Daniel Willmann <daniel@totalueberwachung.de>
4 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welteaebe08c2010-03-04 10:39:17 +01005 * (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welteec8b4502010-02-20 20:34:29 +01006 *
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#ifndef GSM_UTILS_H
26#define GSM_UTILS_H
27
Jacob Erlbeck1d7f3b52013-08-12 17:07:53 +020028#include <stddef.h>
Harald Welteec8b4502010-02-20 20:34:29 +010029#include <stdint.h>
30
Jacob Erlbeck3f69ceb2013-08-12 18:31:59 +020031#include <osmocom/gsm/gsm_utils.h>
32
Sylvain Munaut221030f2010-04-27 21:48:40 +020033#define ADD_MODULO(sum, delta, modulo) do { \
34 if ((sum += delta) >= modulo) \
35 sum -= modulo; \
36 } while (0)
37
38#define GSM_MAX_FN (26*51*2048)
39
Jacob Erlbeck3f69ceb2013-08-12 18:31:59 +020040/*! \brief Set the deprecated attribute with a message.
41 *
42 * \todo Move this to a global header utility file.
43 * \todo Check for compiler version to selectivly enable the message.
44 */
45#if 0
46#define OSMO_DEPRECATED(text) __attribute__((deprecated(text)))
47#else
48#define OSMO_DEPRECATED(text) __attribute__((__deprecated__))
49#endif
50
51
Harald Welte622b7182010-03-07 17:50:21 +010052struct gsm_time {
53 uint32_t fn; /* FN count */
54 uint16_t t1; /* FN div (26*51) */
55 uint8_t t2; /* FN modulo 26 */
56 uint8_t t3; /* FN modulo 51 */
57 uint8_t tc;
58};
59
Harald Welteec8b4502010-02-20 20:34:29 +010060enum gsm_band {
61 GSM_BAND_850 = 1,
62 GSM_BAND_900 = 2,
63 GSM_BAND_1800 = 4,
64 GSM_BAND_1900 = 8,
65 GSM_BAND_450 = 0x10,
66 GSM_BAND_480 = 0x20,
67 GSM_BAND_750 = 0x40,
68 GSM_BAND_810 = 0x80,
69};
70
Harald Weltecbc80622010-03-22 08:28:44 +080071const char *gsm_band_name(enum gsm_band band);
Harald Welteaebe08c2010-03-04 10:39:17 +010072enum gsm_band gsm_band_parse(const char *mhz);
73
Jacob Erlbeck1d7f3b52013-08-12 17:07:53 +020074/*!
75 * \brief Decode a sequence of GSM 03.38 encoded 7 bit characters.
76 *
77 * \param decoded The destination buffer for the decoded characters.
78 * \param n A maximum of n chars is written (incl. terminating \0).
79 * Requires n >= 1.
80 * \param user_data A pointer to the start of the packed 7bit character
81 * sequence.
82 * \param length The length of the input sequence (in octets).
83 *
84 * \returns the number of (8 bit) chars written excluding the terminating \0.
85 * This is the same like strlen(decoded).
86 */
87int gsm_7bit_decode_n(char *decoded, size_t n, const uint8_t *user_data, uint8_t length);
Harald Welteec8b4502010-02-20 20:34:29 +010088
Jacob Erlbeck1d7f3b52013-08-12 17:07:53 +020089/*!
90 * \brief Decode a sequence of 7 bit characters (USSD encoding).
91 *
92 * \see gsm_7bit_encode_n()
93 */
94int gsm_7bit_decode_n_ussd(char *decoded, size_t n, const uint8_t *user_data, uint8_t length);
95
Jacob Erlbeck3f69ceb2013-08-12 18:31:59 +020096/*!
Jacob Erlbeck1d7f3b52013-08-12 17:07:53 +020097 * \brief Encode a text string into GSM 03.38 encoded 7 bit characters.
98 *
99 * \param result The destination buffer for the packed 7 bit sequence.
100 * \param n A maximum of n octets is written.
101 * \param data A pointer to the start of the \0 terminated 8 bit character
102 * string.
103 * \param octets_written Iff not NULL, *octets_written will be set to the
104 * number of octets written to the result buffer.
105 *
106 * \returns the number of septets that have been created.
107 */
108int gsm_7bit_encode_n(uint8_t *result, size_t n, const char *data, int *octets_written);
109
110/*!
111 * \brief Encode a text string into GSM 03.38 encoded 7 bit characters (USSD encoding).
112 *
113 * \see gsm_7bit_decode_n()
114 */
115int gsm_7bit_encode_n_ussd(uint8_t *result, size_t n, const char *data, int *octets_written);
116
117/* the four functions below are helper functions and here for the unit test */
Harald Welteca693882013-03-13 15:10:55 +0100118int gsm_septets2octets(uint8_t *result, const uint8_t *rdata, uint8_t septet_len, uint8_t padding);
Dennis Wehrle291e6132011-07-24 20:14:13 +0200119int gsm_septet_encode(uint8_t *result, const char *data);
120uint8_t gsm_get_octet_len(const uint8_t sept_len);
Jacob Erlbeck1d7f3b52013-08-12 17:07:53 +0200121int gsm_7bit_decode_n_hdr(char *decoded, size_t n, const uint8_t *user_data, uint8_t length, uint8_t ud_hdr_ind);
Dennis Wehrle291e6132011-07-24 20:14:13 +0200122
Harald Welteb7b61232011-07-23 10:49:51 +0200123unsigned int ms_class_gmsk_dbm(enum gsm_band band, int ms_class);
Andreas Eversberg2a68c7c2011-06-26 11:41:48 +0200124
Harald Welteec8b4502010-02-20 20:34:29 +0100125int ms_pwr_ctl_lvl(enum gsm_band band, unsigned int dbm);
126int ms_pwr_dbm(enum gsm_band band, uint8_t lvl);
127
Bhaskar6b30f922013-05-16 17:35:49 +0530128/* According to TS 05.08 Chapter 8.1.4 */
Harald Welteec8b4502010-02-20 20:34:29 +0100129int rxlev2dbm(uint8_t rxlev);
130uint8_t dbm2rxlev(int dbm);
131
Sylvain Munaut4f585492010-06-09 13:38:56 +0200132/* According to GSM 04.08 Chapter 10.5.1.6 */
133static inline int ms_cm2_a5n_support(uint8_t *cm2, int n) {
134 switch (n) {
135 case 0: return 1;
136 case 1: return (cm2[0] & (1<<3)) ? 0 : 1;
137 case 2: return (cm2[2] & (1<<0)) ? 1 : 0;
138 case 3: return (cm2[2] & (1<<1)) ? 1 : 0;
139 default:
140 return 0;
141 }
142}
143
Harald Welteec8b4502010-02-20 20:34:29 +0100144/* According to GSM 04.08 Chapter 10.5.2.29 */
145static inline int rach_max_trans_val2raw(int val) { return (val >> 1) & 3; }
146static inline int rach_max_trans_raw2val(int raw) {
147 const int tbl[4] = { 1, 2, 4, 7 };
148 return tbl[raw & 3];
149}
150
Harald Welte622b7182010-03-07 17:50:21 +0100151#define ARFCN_PCS 0x8000
152#define ARFCN_UPLINK 0x4000
Sylvain Munaut2a471ee2010-11-13 17:51:37 +0100153#define ARFCN_FLAG_MASK 0xf000 /* Reserve the upper 5 bits for flags */
Harald Welte622b7182010-03-07 17:50:21 +0100154
155enum gsm_band gsm_arfcn2band(uint16_t arfcn);
156
157/* Convert an ARFCN to the frequency in MHz * 10 */
158uint16_t gsm_arfcn2freq10(uint16_t arfcn, int uplink);
159
Sylvain Munaut55720312012-12-11 23:44:41 +0100160/* Convert a Frequency in MHz * 10 to ARFCN */
161uint16_t gsm_freq102arfcn(uint16_t freq10, int uplink);
162
Harald Welte622b7182010-03-07 17:50:21 +0100163/* Convert from frame number to GSM time */
164void gsm_fn2gsmtime(struct gsm_time *time, uint32_t fn);
165
166/* Convert from GSM time to frame number */
167uint32_t gsm_gsmtime2fn(struct gsm_time *time);
168
Harald Weltea1c4f762010-05-01 11:59:42 +0200169/* GSM TS 03.03 Chapter 2.6 */
Harald Weltec2263172010-06-01 10:47:07 +0200170enum gprs_tlli_type {
Harald Weltea1c4f762010-05-01 11:59:42 +0200171 TLLI_LOCAL,
172 TLLI_FOREIGN,
173 TLLI_RANDOM,
174 TLLI_AUXILIARY,
175 TLLI_RESERVED,
176};
177
178/* TS 03.03 Chapter 2.6 */
179int gprs_tlli_type(uint32_t tlli);
180
Harald Weltec2263172010-06-01 10:47:07 +0200181uint32_t gprs_tmsi2tlli(uint32_t p_tmsi, enum gprs_tlli_type type);
182
Harald Welte11c71932011-05-24 17:15:12 +0200183/* Osmocom internal, not part of any gsm spec */
184enum gsm_phys_chan_config {
185 GSM_PCHAN_NONE,
186 GSM_PCHAN_CCCH,
187 GSM_PCHAN_CCCH_SDCCH4,
188 GSM_PCHAN_TCH_F,
189 GSM_PCHAN_TCH_H,
190 GSM_PCHAN_SDCCH8_SACCH8C,
191 GSM_PCHAN_PDCH, /* GPRS PDCH */
192 GSM_PCHAN_TCH_F_PDCH, /* TCH/F if used, PDCH otherwise */
193 GSM_PCHAN_UNKNOWN,
194 _GSM_PCHAN_MAX
195};
196
197/* Osmocom internal, not part of any gsm spec */
198enum gsm_chan_t {
199 GSM_LCHAN_NONE,
200 GSM_LCHAN_SDCCH,
201 GSM_LCHAN_TCH_F,
202 GSM_LCHAN_TCH_H,
203 GSM_LCHAN_UNKNOWN,
204 GSM_LCHAN_CCCH,
Harald Welte81cd54a2012-04-19 23:18:43 +0200205 GSM_LCHAN_PDTCH,
Harald Welte11c71932011-05-24 17:15:12 +0200206 _GSM_LCHAN_MAX
207};
208
Jacob Erlbeck1d7f3b52013-08-12 17:07:53 +0200209/* Deprectated functions */
Jacob Erlbeck3f69ceb2013-08-12 18:31:59 +0200210int gsm_7bit_decode(char *decoded, const uint8_t *user_data, uint8_t length) OSMO_DEPRECATED("Use gsm_7bit_decode_n() instead");
211int gsm_7bit_decode_ussd(char *decoded, const uint8_t *user_data, uint8_t length) OSMO_DEPRECATED("Use gsm_7bit_decode_n_ussd() instead");
212int gsm_7bit_encode(uint8_t *result, const char *data) OSMO_DEPRECATED("Use gsm_7bit_encode_n() instead");
213int gsm_7bit_encode_ussd(uint8_t *result, const char *data, int *octets_written) OSMO_DEPRECATED("Use gsm_7bit_encode_n_ussd() instead");
214int gsm_7bit_encode_oct(uint8_t *result, const char *data, int *octets_written) OSMO_DEPRECATED("Use gsm_7bit_encode_n() instead");
Jacob Erlbeck1d7f3b52013-08-12 17:07:53 +0200215
Harald Welte11c71932011-05-24 17:15:12 +0200216
Harald Welteec8b4502010-02-20 20:34:29 +0100217#endif