blob: 0b647b28befd150315557fdf2992f532a170d46f [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001#ifndef _GSMTAP_H
2#define _GSMTAP_H
3
Harald Welte8c8caaa2010-03-04 15:02:54 +01004/* gsmtap header, pseudo-header in front of the actua GSM payload */
5
6/* GSMTAP is a generic header format for GSM protocol captures,
7 * it uses the IANA-assigned UDP port number 4729 and carries
8 * payload in various formats of GSM interfaces such as Um MAC
9 * blocks or Um bursts.
10 *
11 * Example programs generating GSMTAP data are airprobe
12 * (http://airprobe.org/) or OsmocomBB (http://bb.osmocom.org/)
13 */
Harald Welteec8b4502010-02-20 20:34:29 +010014
15#include <stdint.h>
16
Harald Welteccd040f2011-10-08 14:39:22 +020017/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
18
19/* The GSMTAP format definition is maintained in libosmocore,
20 * specifically the latest version can always be obtained from
21 * http://cgit.osmocom.org/cgit/libosmocore/tree/include/osmocom/core/gsmtap.h
22 *
23 * If you want to introduce new protocol/burst/channel types or extend
24 * GSMTAP in any way, please contact the GSMTAP maintainer at either the
25 * public openbsc@lists.osmocom.org mailing list, or privately at
26 * Harald Welte <laforge@gnumonks.org>.
27 *
28 * Your cooperation ensures that all projects will use the same GSMTAP
29 * definitions and remain compatible with each other.
30 */
31
Harald Welte8c8caaa2010-03-04 15:02:54 +010032#define GSMTAP_VERSION 0x02
Harald Welteec8b4502010-02-20 20:34:29 +010033
34#define GSMTAP_TYPE_UM 0x01
35#define GSMTAP_TYPE_ABIS 0x02
36#define GSMTAP_TYPE_UM_BURST 0x03 /* raw burst bits */
Harald Weltefe851ff2010-11-18 23:54:20 +010037#define GSMTAP_TYPE_SIM 0x04
Harald Weltec035ec62011-01-19 09:40:59 +010038#define GSMTAP_TYPE_TETRA_I1 0x05 /* tetra air interface */
39#define GSMTAP_TYPE_TETRA_I1_BURST 0x06 /* tetra air interface */
Harald Weltefae779a2011-10-08 14:35:51 +020040#define GSMTAP_TYPE_WMX_BURST 0x07 /* WiMAX burst */
41#define GSMTAP_TYPE_GB_LLC 0x08 /* GPRS Gb interface: LLC */
42#define GSMTAP_TYPE_GB_SNDCP 0x09 /* GPRS Gb interface: SNDCP */
Sylvain Munautf84571d2011-10-09 16:57:33 +020043#define GSMTAP_TYPE_GMR1_UM 0x0a /* GMR-1 L2 packets */
Harald Weltea102b632012-09-02 14:07:57 +020044#define GSMTAP_TYPE_UMTS_RLC_MAC 0x0b
45#define GSMTAP_TYPE_UMTS_RRC 0x0c
46
Harald Welteec8b4502010-02-20 20:34:29 +010047
Harald Welteccd040f2011-10-08 14:39:22 +020048/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
49
Harald Weltedba84782011-01-18 21:38:12 +010050/* sub-types for TYPE_UM_BURST */
Harald Welteec8b4502010-02-20 20:34:29 +010051#define GSMTAP_BURST_UNKNOWN 0x00
52#define GSMTAP_BURST_FCCH 0x01
53#define GSMTAP_BURST_PARTIAL_SCH 0x02
54#define GSMTAP_BURST_SCH 0x03
55#define GSMTAP_BURST_CTS_SCH 0x04
56#define GSMTAP_BURST_COMPACT_SCH 0x05
57#define GSMTAP_BURST_NORMAL 0x06
58#define GSMTAP_BURST_DUMMY 0x07
59#define GSMTAP_BURST_ACCESS 0x08
60#define GSMTAP_BURST_NONE 0x09
Harald Weltefae779a2011-10-08 14:35:51 +020061/* WiMAX bursts */
62#define GSMTAP_BURST_CDMA_CODE 0x10 /* WiMAX CDMA Code Attribute burst */
63#define GSMTAP_BURST_FCH 0x11 /* WiMAX FCH burst */
64#define GSMTAP_BURST_FFB 0x12 /* WiMAX Fast Feedback burst */
65#define GSMTAP_BURST_PDU 0x13 /* WiMAX PDU burst */
66#define GSMTAP_BURST_HACK 0x14 /* WiMAX HARQ ACK burst */
67#define GSMTAP_BURST_PHY_ATTRIBUTES 0x15 /* WiMAX PHY Attributes burst */
Harald Welteec8b4502010-02-20 20:34:29 +010068
Harald Welteccd040f2011-10-08 14:39:22 +020069/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
70
Harald Weltedba84782011-01-18 21:38:12 +010071/* sub-types for TYPE_UM */
Harald Welte8c8caaa2010-03-04 15:02:54 +010072#define GSMTAP_CHANNEL_UNKNOWN 0x00
73#define GSMTAP_CHANNEL_BCCH 0x01
74#define GSMTAP_CHANNEL_CCCH 0x02
75#define GSMTAP_CHANNEL_RACH 0x03
76#define GSMTAP_CHANNEL_AGCH 0x04
77#define GSMTAP_CHANNEL_PCH 0x05
78#define GSMTAP_CHANNEL_SDCCH 0x06
79#define GSMTAP_CHANNEL_SDCCH4 0x07
80#define GSMTAP_CHANNEL_SDCCH8 0x08
81#define GSMTAP_CHANNEL_TCH_F 0x09
82#define GSMTAP_CHANNEL_TCH_H 0x0a
Harald Welte7d974ad2012-01-26 13:10:36 +010083#define GSMTAP_CHANNEL_PACCH 0x0b
Harald Welteaa244bf2011-09-26 00:24:59 +020084#define GSMTAP_CHANNEL_CBCH52 0x0c
85#define GSMTAP_CHANNEL_PDCH 0x0d
86#define GSMTAP_CHANNEL_PTCCH 0x0e
Harald Welte7d974ad2012-01-26 13:10:36 +010087#define GSMTAP_CHANNEL_CBCH51 0x0f
Harald Welte3e04ed62012-02-08 18:13:34 +010088
89/* GPRS Coding Scheme CS1..4 */
90#define GSMTAP_GPRS_CS_BASE 0x20
91#define GSMTAP_GPRS_CS(N) (GSMTAP_GPRS_CS_BASE + N)
92/* (E) GPRS Coding Scheme MCS0..9 */
93#define GSMTAP_GPRS_MCS_BASE 0x30
94#define GSMTAP_GPRS_MCS(N) (GSMTAP_GPRS_MCS_BASE + N)
95
Harald Welte8c8caaa2010-03-04 15:02:54 +010096#define GSMTAP_CHANNEL_ACCH 0x80
97
Harald Welteccd040f2011-10-08 14:39:22 +020098/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
99
Harald Weltec035ec62011-01-19 09:40:59 +0100100/* sub-types for TYPE_TETRA_AIR */
101#define GSMTAP_TETRA_BSCH 0x01
102#define GSMTAP_TETRA_AACH 0x02
Holger Hans Peter Freythere7509082011-01-28 10:13:41 +0100103#define GSMTAP_TETRA_SCH_HU 0x03
104#define GSMTAP_TETRA_SCH_HD 0x04
105#define GSMTAP_TETRA_SCH_F 0x05
106#define GSMTAP_TETRA_BNCH 0x06
107#define GSMTAP_TETRA_STCH 0x07
108#define GSMTAP_TETRA_TCH_F 0x08
Harald Weltec035ec62011-01-19 09:40:59 +0100109
Harald Welteccd040f2011-10-08 14:39:22 +0200110/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
111
Sylvain Munautf84571d2011-10-09 16:57:33 +0200112/* sub-types for TYPE_GMR1_UM */
113#define GSMTAP_GMR1_UNKNOWN 0x00
114#define GSMTAP_GMR1_BCCH 0x01
115#define GSMTAP_GMR1_CCCH 0x02 /* either AGCH or PCH */
116#define GSMTAP_GMR1_PCH 0x03
117#define GSMTAP_GMR1_AGCH 0x04
118#define GSMTAP_GMR1_BACH 0x05
119#define GSMTAP_GMR1_RACH 0x06
120#define GSMTAP_GMR1_CBCH 0x07
121#define GSMTAP_GMR1_SDCCH 0x08
122#define GSMTAP_GMR1_TACCH 0x09
123#define GSMTAP_GMR1_GBCH 0x0a
124
125#define GSMTAP_GMR1_SACCH 0x01 /* to be combined with _TCH{6,9} */
126#define GSMTAP_GMR1_FACCH 0x02 /* to be combines with _TCH{3,6,9} */
127#define GSMTAP_GMR1_DKAB 0x03 /* to be combined with _TCH3 */
128#define GSMTAP_GMR1_TCH3 0x10
129#define GSMTAP_GMR1_TCH6 0x14
130#define GSMTAP_GMR1_TCH9 0x18
131
132/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
133
Harald Weltea102b632012-09-02 14:07:57 +0200134#define GSMTAP_UMTS_CH_PCCH 0x01
135#define GSMTAP_UMTS_CH_CCCH 0x02
136#define GSMTAP_UMTS_CH_DCCH 0x03
137
Harald Weltedba84782011-01-18 21:38:12 +0100138/* flags for the ARFCN */
Harald Welte4e128792010-03-04 15:15:37 +0100139#define GSMTAP_ARFCN_F_PCS 0x8000
140#define GSMTAP_ARFCN_F_UPLINK 0x4000
141#define GSMTAP_ARFCN_MASK 0x3fff
142
Harald Weltedba84782011-01-18 21:38:12 +0100143/* IANA-assigned well-known UDP port for GSMTAP messages */
Harald Welte8c8caaa2010-03-04 15:02:54 +0100144#define GSMTAP_UDP_PORT 4729
Harald Welteec8b4502010-02-20 20:34:29 +0100145
Harald Welteccd040f2011-10-08 14:39:22 +0200146/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
Harald Welteec8b4502010-02-20 20:34:29 +0100147struct gsmtap_hdr {
Harald Welte8c8caaa2010-03-04 15:02:54 +0100148 uint8_t version; /* version, set to 0x01 currently */
149 uint8_t hdr_len; /* length in number of 32bit words */
150 uint8_t type; /* see GSMTAP_TYPE_* */
151 uint8_t timeslot; /* timeslot (0..7 on Um) */
Harald Welteec8b4502010-02-20 20:34:29 +0100152
Harald Welte8c8caaa2010-03-04 15:02:54 +0100153 uint16_t arfcn; /* ARFCN (frequency) */
154 int8_t signal_dbm; /* signal level in dBm */
155 int8_t snr_db; /* signal/noise ratio in dB */
Harald Welteec8b4502010-02-20 20:34:29 +0100156
Harald Welte8c8caaa2010-03-04 15:02:54 +0100157 uint32_t frame_number; /* GSM Frame Number (FN) */
Harald Welteec8b4502010-02-20 20:34:29 +0100158
Harald Welte8c8caaa2010-03-04 15:02:54 +0100159 uint8_t sub_type; /* Type of burst/channel, see above */
160 uint8_t antenna_nr; /* Antenna Number */
161 uint8_t sub_slot; /* sub-slot within timeslot */
162 uint8_t res; /* reserved for future use (RFU) */
Harald Welteec8b4502010-02-20 20:34:29 +0100163
164} __attribute__((packed));
165
Harald Welteec8b4502010-02-20 20:34:29 +0100166#endif /* _GSMTAP_H */