blob: e81cce4c776fa560ff7f65921a2999706894c800 [file] [log] [blame]
Philipp Maiere190e032018-12-07 12:31:08 +01001/*! \file gsm23003.h */
2
3/* (C) 2018 by sysmocom s.f.m.c. GmbH
4 * All Rights Reserved
5 *
6 * Author: Harald Welte, Philipp Maier
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * 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
13 * (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
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 */
25
26#pragma once
27
28#include <osmocom/core/msgb.h>
29#include <osmocom/gsm/gsm23003.h>
30#include <osmocom/gsm/protocol/gsm_29_118.h>
31#include <osmocom/gsm/protocol/gsm_04_08.h>
32
33/*! 3GPP TS 3GPP TS 29.018 8.14 SGsAP-PAGING-REQUEST. */
34struct gsm29118_paging_req {
35 char imsi[GSM48_MI_SIZE];
36 char vlr_name[SGS_VLR_NAME_MAXLEN + 1];
37 uint8_t serv_ind;
38
39 bool lai_present;
40 struct osmo_location_area_id lai;
41};
42
43/*! 3GPP TS 3GPP TS 29.018 8.15 SGsAP-RESET-ACK and 8.16 SGsAP-RESET-INDICATION. */
44struct gsm29118_reset_msg {
45 bool vlr_name_present;
46 char vlr_name[SGS_VLR_NAME_MAXLEN + 1];
47 bool mme_name_present;
48 char mme_name[SGS_MME_NAME_LEN + 1];
49};
50
51struct msgb *gsm29118_msgb_alloc(void);
52struct msgb *gsm29118_create_alert_req(const char *imsi);
53struct msgb *gsm29118_create_dl_ud(const char *imsi, struct msgb *nas_msg);
54struct msgb *gsm29118_create_eps_det_ack(const char *imsi);
55struct msgb *gsm29118_create_imsi_det_ack(const char *imsi);
56struct msgb *gsm29118_create_lu_ack(const char *imsi, const struct osmo_location_area_id *lai, const uint8_t *new_id,
57 unsigned int new_id_len);
58struct msgb *gsm29118_create_lu_rej(const char *imsi, uint8_t rej_cause, const struct osmo_location_area_id *lai);
59struct msgb *gsm29118_create_mm_info_req(const char *imsi, const uint8_t *mm_info, uint8_t mm_info_len);
60struct msgb *gsm29118_create_paging_req(struct gsm29118_paging_req *params);
61struct msgb *gsm29118_create_reset_ack(struct gsm29118_reset_msg *params);
62struct msgb *gsm29118_create_reset_ind(struct gsm29118_reset_msg *params);
63struct msgb *gsm29118_create_status(const char *imsi, enum sgsap_sgs_cause cause, const struct msgb *err_msg);
64struct msgb *gsm29118_create_release_req(const char *imsi, const uint8_t sgs_cause);
65struct msgb *gsm29118_create_service_abort_req(const char *imsi);