SHA256
1
0
forked from pool/osmo-iuh

- Update to new upstream release 0.3.0

OBS-URL: https://build.opensuse.org/package/show/network:telephony/osmo-iuh?expand=0&rev=11
This commit is contained in:
Jan Engelhardt 2018-12-11 13:47:53 +00:00 committed by Git OBS Bridge
parent 13f116f7c2
commit 6a0241b5d8
8 changed files with 69 additions and 272 deletions

View File

@ -1,28 +0,0 @@
From 1ce7ac8cb973e0b694c52659429f992e0b56e359 Mon Sep 17 00:00:00 2001
From: Martin Hauke <mardnh@gmx.de>
Date: Fri, 30 Dec 2016 11:12:06 +0100
Subject: [PATCH] fix compiler warning: implicit-function-declaration in
hnbgw_vty.c
hnbgw_vty.c:233:2: warning: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration]
if (addr && (strcmp(addr, HNBGW_LOCAL_IP_DEFAULT) != 0))
---
src/hnbgw_vty.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/hnbgw_vty.c b/src/hnbgw_vty.c
index 59871da..e40b077 100644
--- a/src/hnbgw_vty.c
+++ b/src/hnbgw_vty.c
@@ -18,6 +18,8 @@
*
*/
+#include <string.h>
+
#include <osmocom/vty/command.h>
#include <osmocom/iuh/vty.h>
--
2.6.6

View File

@ -1,206 +1,21 @@
From fc52e9614856ac03294a74c09d485349d33eed6d Mon Sep 17 00:00:00 2001
From: Jan Engelhardt <jengelh@inai.de> From: Jan Engelhardt <jengelh@inai.de>
Date: Tue, 2 Jan 2018 00:08:53 +0100 Date: 2018-12-11 14:44:48.979665889 +0100
Subject: [PATCH] fix return values Subject: [PATCH] fix return values
(fixed in git already - but only partially) Fix yet more return value problems.
--- ---
asn1/utils/asn1tostruct.py | 2 ++ src/hnbgw_hnbap.c | 1 +
src/context_map.c | 1 + 1 file changed, 1 insertion(+)
src/hnbgw.c | 1 +
src/hnbgw_cn.c | 4 +++-
src/hnbgw_hnbap.c | 9 +++++----
src/hnbgw_ranap.c | 5 ++++-
src/ranap_common_cn.c | 5 ++++-
src/tests/test_common.c | 1 +
8 files changed, 21 insertions(+), 7 deletions(-)
diff --git a/asn1/utils/asn1tostruct.py b/asn1/utils/asn1tostruct.py Index: osmo-iuh-0.3.0/src/hnbgw_hnbap.c
index 8364c27..63aea8b 100755 ===================================================================
--- a/asn1/utils/asn1tostruct.py --- osmo-iuh-0.3.0.orig/src/hnbgw_hnbap.c
+++ b/asn1/utils/asn1tostruct.py +++ osmo-iuh-0.3.0/src/hnbgw_hnbap.c
@@ -384,6 +384,8 @@ for key in iesDefs: @@ -86,6 +86,7 @@ static int hnbgw_tx_hnb_register_rej(str
iename = re.sub('id-', '', ie[0]) /* The message was not queued. Destroy the connection right away. */
ienameunderscore = lowerFirstCamelWord(re.sub('-', '_', iename)) hnb_context_release(ctx, true);
f.write(" ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_%s, &%s->%s);\n" % (ietypeunderscore, lowerFirstCamelWord(re.sub('-', '_', key)), ienameunderscore))
+
+ f.write(" return 0;\n")
f.write("}\n\n")
for key in iesDefs:
diff --git a/src/context_map.c b/src/context_map.c
index 0960cb9..8fb2187 100644
--- a/src/context_map.c
+++ b/src/context_map.c
@@ -169,4 +169,5 @@ int context_map_init(struct hnb_gw *gw)
context_map_tmr.cb = context_map_tmr_cb;
context_map_tmr.data = gw;
osmo_timer_schedule(&context_map_tmr, EXPIRY_TIMER_SECS, 0);
+ return 0;
}
diff --git a/src/hnbgw.c b/src/hnbgw.c
index c9fdd53..db4b534 100644
--- a/src/hnbgw.c
+++ b/src/hnbgw.c
@@ -175,6 +175,7 @@ void ue_context_free(struct ue_context *ue)
}
static int hnb_close_cb(struct osmo_stream_srv *conn)
{
+ return 0;
}
static int hnb_read_cb(struct osmo_stream_srv *conn)
diff --git a/src/hnbgw_cn.c b/src/hnbgw_cn.c
index 3b828b4..a8d3ebc 100644
--- a/src/hnbgw_cn.c
+++ b/src/hnbgw_cn.c
@@ -87,6 +87,7 @@ int hnbgw_cnlink_change_state(struct hnbgw_cnlink *cnlink, enum hnbgw_cnlink_sta
osmo_timer_del(&cnlink->T_RafC);
break;
} }
+ return 0; + return 0;
} }
/*********************************************************************** static int hnbgw_tx_hnb_register_acc(struct hnb_context *ctx)
@@ -218,6 +219,7 @@ static int _cn_ranap_rx(struct hnbgw_cnlink *cnlink, RANAP_RANAP_PDU_t *pdu,
"presence %u from CN, ignoring\n", pdu->present);
break;
}
+ return rc;
}
static int handle_cn_ranap(struct hnbgw_cnlink *cnlink, const uint8_t *data,
@@ -389,7 +391,7 @@ static int sccp_sap_up(struct osmo_prim_hdr *oph, void *ctx)
case OSMO_PRIM(OSMO_SCU_PRIM_N_DISCONNECT, PRIM_OP_INDICATION):
rc = handle_cn_disc_ind(cnlink, &prim->u.disconnect, oph);
break;
- defualt:
+ default:
LOGP(DMAIN, LOGL_ERROR,
"Received unknown prim %u from SCCP USER SAP\n",
OSMO_PRIM_HDR(oph));
diff --git a/src/hnbgw_hnbap.c b/src/hnbgw_hnbap.c
index 0473482..d13e0a8 100644
--- a/src/hnbgw_hnbap.c
+++ b/src/hnbgw_hnbap.c
@@ -517,16 +517,17 @@ static int hnbgw_rx_initiating_msg(struct hnb_context *hnb, InitiatingMessage_t
imsg->procedureCode);
break;
}
+ return rc;
}
static int hnbgw_rx_successful_outcome_msg(struct hnb_context *hnb, SuccessfulOutcome_t *msg)
{
-
+ return -1;
}
static int hnbgw_rx_unsuccessful_outcome_msg(struct hnb_context *hnb, UnsuccessfulOutcome_t *msg)
{
-
+ return -1;
}
@@ -559,7 +560,7 @@ int hnbgw_hnbap_rx(struct hnb_context *hnb, struct msgb *msg)
{
HNBAP_PDU_t _pdu, *pdu = &_pdu;
asn_dec_rval_t dec_ret;
- int rc;
+ int rc = 0;
/* decode and handle to _hnbgw_hnbap_rx() */
@@ -581,5 +582,5 @@ int hnbgw_hnbap_rx(struct hnb_context *hnb, struct msgb *msg)
int hnbgw_hnbap_init(void)
{
-
+ return 0;
}
diff --git a/src/hnbgw_ranap.c b/src/hnbgw_ranap.c
index 7fd6d0a..1f3246b 100644
--- a/src/hnbgw_ranap.c
+++ b/src/hnbgw_ranap.c
@@ -151,6 +151,7 @@ static int ranap_rx_initiating_msg(struct hnb_context *hnb, RANAP_InitiatingMess
"Procedure %u from HNB, ignoring\n", imsg->procedureCode);
break;
}
+ return rc;
}
static int ranap_rx_successful_msg(struct hnb_context *hnb, RANAP_SuccessfulOutcome_t *imsg)
@@ -179,6 +180,7 @@ static int ranap_rx_successful_msg(struct hnb_context *hnb, RANAP_SuccessfulOutc
"Procedure %u from HNB, ignoring\n", imsg->procedureCode);
break;
}
+ return rc;
}
@@ -204,6 +206,7 @@ static int _hnbgw_ranap_rx(struct hnb_context *hnb, RANAP_RANAP_PDU_t *pdu)
"presence %u from HNB, ignoring\n", pdu->present);
break;
}
+ return rc;
}
@@ -228,5 +231,5 @@ int hnbgw_ranap_rx(struct msgb *msg, uint8_t *data, size_t len)
int hnbgw_ranap_init(void)
{
-
+ return 0;
}
diff --git a/src/ranap_common_cn.c b/src/ranap_common_cn.c
index d02eb37..7c2a743 100644
--- a/src/ranap_common_cn.c
+++ b/src/ranap_common_cn.c
@@ -360,6 +360,7 @@ static int cn_ranap_rx_initiating_msg_cl(void *ctx, RANAP_InitiatingMessage_t *i
get_value_string(ranap_procedure_code_vals, imsg->procedureCode));
break;
}
+ return rc;
}
static void cn_ranap_free_initiating_msg_cl(ranap_message *message)
@@ -433,6 +434,7 @@ static int cn_ranap_rx_successful_msg_cl(void *ctx, RANAP_SuccessfulOutcome_t *i
get_value_string(ranap_procedure_code_vals, imsg->procedureCode));
break;
}
+ return rc;
}
static void cn_ranap_free_successful_msg_cl(ranap_message *message)
@@ -463,7 +465,7 @@ static void cn_ranap_free_successful_msg_cl(ranap_message *message)
static int _cn_ranap_rx_cl(void *ctx, RANAP_RANAP_PDU_t *pdu, ranap_message *message)
{
- int rc;
+ int rc = 0;
/* Extend _cn_ranap_free_cl as well when extending this function */
@@ -488,6 +490,7 @@ static int _cn_ranap_rx_cl(void *ctx, RANAP_RANAP_PDU_t *pdu, ranap_message *mes
get_value_string(ranap_presence_vals, pdu->present));
break;
}
+ return rc;
}
static void _cn_ranap_free_cl(ranap_message *message)
diff --git a/src/tests/test_common.c b/src/tests/test_common.c
index c8aafdd..9ea48e0 100644
--- a/src/tests/test_common.c
+++ b/src/tests/test_common.c
@@ -84,4 +84,5 @@ int test_common_init(void)
log_set_print_filename(osmo_stderr_target, 0);
log_set_use_color(osmo_stderr_target, 0);
+ return 0;
}
--
2.15.1

View File

@ -1,41 +1,38 @@
From ce3576e41d5a9b9897e704bba69faac643afb1be Mon Sep 17 00:00:00 2001
From: Jan Engelhardt <jengelh@inai.de> From: Jan Engelhardt <jengelh@inai.de>
Date: Tue, 2 Jan 2018 00:21:09 +0100 Date: Tue, 2 Jan 2018 00:21:09 +0100
Subject: [PATCH] iu_client uses gprs_msgb.h Subject: [PATCH] iu_client uses gprs_msgb.h
--- ---
configure.ac | 1 + configure.ac | 1 +
src/Makefile.am | 4 ++-- src/Makefile.am | 5 +++--
2 files changed, 3 insertions(+), 2 deletions(-) 2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac Index: osmo-iuh-0.3.0/configure.ac
index ff0501a..393ad83 100644 ===================================================================
--- a/configure.ac --- osmo-iuh-0.3.0.orig/configure.ac
+++ b/configure.ac +++ osmo-iuh-0.3.0/configure.ac
@@ -34,6 +34,7 @@ fi @@ -34,6 +34,7 @@ fi
PKG_PROG_PKG_CONFIG([0.20]) PKG_PROG_PKG_CONFIG([0.20])
PKG_CHECK_MODULES(OSMOCORE, libosmocore >= 0.10.0) PKG_CHECK_MODULES(OSMOCORE, libosmocore >= 0.11.0)
+PKG_CHECK_MODULES([OSMOGB], [libosmogb]) +PKG_CHECK_MODULES([OSMOGB], [libosmogb])
PKG_CHECK_MODULES(OSMOGSM, libosmogsm >= 0.10.0) PKG_CHECK_MODULES(OSMOGSM, libosmogsm >= 0.11.0)
PKG_CHECK_MODULES(OSMOVTY, libosmovty >= 0.10.0) PKG_CHECK_MODULES(OSMOVTY, libosmovty >= 0.11.0)
PKG_CHECK_MODULES(OSMONETIF, libosmo-netif >= 0.1.0) PKG_CHECK_MODULES(OSMOCTRL, libosmoctrl >= 0.11.0)
diff --git a/src/Makefile.am b/src/Makefile.am Index: osmo-iuh-0.3.0/src/Makefile.am
index d815394..fe3f90e 100644 ===================================================================
--- a/src/Makefile.am --- osmo-iuh-0.3.0.orig/src/Makefile.am
+++ b/src/Makefile.am +++ osmo-iuh-0.3.0/src/Makefile.am
@@ -42,9 +42,9 @@ gen_ranap.stamp: $(ASN1_ROOT)/ranap/RANAP-PDU-Contents.asn $(ASN1TOSTRUCT) @@ -42,9 +42,10 @@ gen_ranap.stamp: $(ASN1_ROOT)/ranap/RANA
ranap_decoder.c ranap_encoder.c: gen_ranap.stamp ranap_decoder.c ranap_encoder.c: gen_ranap.stamp
-AM_CFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include \ -AM_CFLAGS = -Wall -I$(top_srcdir)/include -I$(top_builddir)/include \
+AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include \ +AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include \
$(OSMOCORE_CFLAGS) $(OSMOVTY_CFLAGS) $(OSMOGSM_CFLAGS) \ $(OSMOCORE_CFLAGS) $(OSMOVTY_CFLAGS) $(OSMOCTRL_CFLAGS) $(OSMOGSM_CFLAGS) \
- $(OSMONETIF_CFLAGS) $(ASN1C_CFLAGS) $(OSMOSIGTRAN_CFLAGS) - $(OSMONETIF_CFLAGS) $(ASN1C_CFLAGS) $(OSMOSIGTRAN_CFLAGS)
+ $(OSMONETIF_CFLAGS) $(ASN1C_CFLAGS) $(OSMOSIGTRAN_CFLAGS) $(OSMOGB_CFLAGS) + $(OSMONETIF_CFLAGS) $(ASN1C_CFLAGS) $(OSMOSIGTRAN_CFLAGS) $(OSMOGB_CFLAGS)
COMMON_LDADD = -lsctp +AM_CFLAGS = -Wall
# build the shared RANAP library # build the shared RANAP library
-- #
2.15.1

View File

@ -2,8 +2,8 @@
<service name="tar_scm" mode="disabled"> <service name="tar_scm" mode="disabled">
<param name="scm">git</param> <param name="scm">git</param>
<param name="url">git://git.osmocom.org/osmo-iuh</param> <param name="url">git://git.osmocom.org/osmo-iuh</param>
<param name="revision">0.2.0</param> <param name="revision">0.3.0</param>
<param name="versionformat">@PARENT_TAG@</param> <param name="versionformat">0.3.0</param>
</service> </service>
<service name="recompress" mode="disabled"> <service name="recompress" mode="disabled">
<param name="file">*.tar</param> <param name="file">*.tar</param>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8295e0fb139bc3016f046330beeff58a6b60d73c701982239c46e83ebf270399
size 10189156

3
osmo-iuh-0.3.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3eb44fae92e9e17ad3c4545b88fe91adfa728b2480691d85a4f1fd88f255d5eb
size 10054460

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Tue Dec 11 13:21:58 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
- Update to new upstream release 0.3.0
* osmo-hnbgw: auto-config local and remote PCs if omitted
* osmo-hnbgw: don't configure specific local IP address for STP connection
* hnbgw: use proper VTY port number defined in libosmocore (4261)
* vty: tweak / improve HNB and cnlink introspection
* Add control interface
* ensure unique CellIDs in HNB-GW
- Remove
0001-fix-compiler-warning-implicit-function-declaration-i.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 22 19:26:39 UTC 2018 - jengelh@inai.de Thu Mar 22 19:26:39 UTC 2018 - jengelh@inai.de

View File

@ -12,20 +12,20 @@
# license that conforms to the Open Source Definition (Version 1.9) # license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative. # published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via https://bugs.opensuse.org/
# #
Name: osmo-iuh Name: osmo-iuh
Version: 0.2.0 %define lname libosmo-ranap2
Version: 0.3.0
Release: 0 Release: 0
Summary: Osmocom code for the Iuh interface (HNBAP, RUA, RANAP) Summary: Osmocom code for the Iuh interface (HNBAP, RUA, RANAP)
License: AGPL-3.0-or-later AND GPL-2.0-or-later License: AGPL-3.0-or-later AND GPL-2.0-or-later
Group: Hardware/Mobile Group: Hardware/Mobile
Url: https://osmocom.org/projects/osmohnbgw/wiki Url: https://osmocom.org/projects/osmohnbgw/wiki
Source: %name-%version.tar.xz Source: %name-%version.tar.xz
Patch1: 0001-fix-compiler-warning-implicit-function-declaration-i.patch Patch1: 0001-fix-return-values.patch
Patch2: 0001-fix-return-values.patch
Patch3: 0001-iu_client-uses-gprs_msgb.h.patch Patch3: 0001-iu_client-uses-gprs_msgb.h.patch
BuildRequires: automake >= 1.9 BuildRequires: automake >= 1.9
BuildRequires: libtool >= 2 BuildRequires: libtool >= 2
@ -34,28 +34,29 @@ BuildRequires: pkg-config >= 0.20
# python2 for asn1tostruct.py # python2 for asn1tostruct.py
BuildRequires: python2 BuildRequires: python2
BuildRequires: xz BuildRequires: xz
BuildRequires: pkgconfig(libasn1c) >= 0.9.28 BuildRequires: pkgconfig(libasn1c) >= 0.9.30
BuildRequires: pkgconfig(libosmo-netif) >= 0.1.0 BuildRequires: pkgconfig(libosmo-netif) >= 0.2.0
BuildRequires: pkgconfig(libosmo-sigtran) >= 0.8.0 BuildRequires: pkgconfig(libosmo-sigtran) >= 0.9.0
BuildRequires: pkgconfig(libosmocore) >= 0.10.0 BuildRequires: pkgconfig(libosmocore) >= 0.11.0
BuildRequires: pkgconfig(libosmoctrl) >= 0.11.0
BuildRequires: pkgconfig(libosmogb) BuildRequires: pkgconfig(libosmogb)
BuildRequires: pkgconfig(libosmogsm) >= 0.10.0 BuildRequires: pkgconfig(libosmogsm) >= 0.11.0
BuildRequires: pkgconfig(libosmovty) >= 0.10.0 BuildRequires: pkgconfig(libosmovty) >= 0.11.0
%description %description
Osmocom code for the Iuh interface (HNBAP, RUA, RANAP) Osmocom code for the Iuh interface (HNBAP, RUA, RANAP)
%package -n libosmo-ranap1 %package -n %lname
Summary: Shared Library part of libosmo-ranap Summary: Shared Library part of libosmo-ranap
Group: System/Libraries Group: System/Libraries
%description -n libosmo-ranap1 %description -n %lname
Osmocom code for the Iuh interface (HNBAP, RUA, RANAP) Osmocom code for the Iuh interface (HNBAP, RUA, RANAP)
%package -n libosmo-ranap-devel %package -n libosmo-ranap-devel
Summary: Development files for Osmocom RANAP library Summary: Development files for Osmocom RANAP library
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Requires: libosmo-ranap1 = %version Requires: %lname = %version
%description -n libosmo-ranap-devel %description -n libosmo-ranap-devel
Osmocom code for the Iuh interface (HNBAP, RUA, RANAP) Osmocom code for the Iuh interface (HNBAP, RUA, RANAP)
@ -64,8 +65,7 @@ This subpackage contains libraries and header files for developing
applications that want to make use of libosmoranap. applications that want to make use of libosmoranap.
%prep %prep
%setup -q %autosetup -p1
%patch -P 1 -P 2 -P 3 -p1
%build %build
autoreconf -fi autoreconf -fi
@ -84,8 +84,8 @@ if ! make %{?_smp_mflags} check; then
%endif %endif
fi fi
%post -n libosmo-ranap1 -p /sbin/ldconfig %post -n %lname -p /sbin/ldconfig
%postun -n libosmo-ranap1 -p /sbin/ldconfig %postun -n %lname -p /sbin/ldconfig
%files %files
%doc COPYING README.md %doc COPYING README.md
@ -93,8 +93,8 @@ fi
%_docdir/%name/examples/osmo-hnbgw.cfg %_docdir/%name/examples/osmo-hnbgw.cfg
%_bindir/osmo-hnbgw %_bindir/osmo-hnbgw
%files -n libosmo-ranap1 %files -n %lname
%_libdir/libosmo-ranap.so.1* %_libdir/libosmo-ranap.so.2*
%files -n libosmo-ranap-devel %files -n libosmo-ranap-devel
%_includedir/* %_includedir/*