aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO-RELEASE3
-rw-r--r--configure.ac22
-rw-r--r--contrib/osmo-sgsn.spec.in22
-rw-r--r--debian/changelog181
-rw-r--r--debian/control18
5 files changed, 212 insertions, 34 deletions
diff --git a/TODO-RELEASE b/TODO-RELEASE
index 5514897b4..1c5d61f56 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -1,4 +1 @@
#component what description / commit summary line
-manual needs common chapter cs7-config.adoc, vty_cpu_sched.adoc from osmo-gsm-manuals > 0.3.0
-configure.ac libosmocore depend on next released libosmocore after 1.4.x with hashtable support
-sgsn vty/config change the configuration of the vty config. old configuration are invalid.
diff --git a/configure.ac b/configure.ac
index 947ecf152..c29bacb50 100644
--- a/configure.ac
+++ b/configure.ac
@@ -50,29 +50,29 @@ AC_SEARCH_LIBS([dlsym], [dl dld], [LIBRARY_DLSYM="$LIBS";LIBS=""])
AC_SUBST(LIBRARY_DLSYM)
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.4.0)
-PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.4.0)
-PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.4.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.4.0)
-PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 1.4.0)
-PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.6.0)
-PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.4.0)
-PKG_CHECK_MODULES(LIBOSMOGSUPCLIENT, libosmo-gsup-client >= 1.0.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0)
+PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.5.0)
+PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.5.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.5.0)
+PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 1.5.0)
+PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 1.1.0)
+PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.1.0)
+PKG_CHECK_MODULES(LIBOSMOGSUPCLIENT, libosmo-gsup-client >= 1.3.0)
# Enable/disable 3G aka IuPS + IuCS support?
AC_ARG_ENABLE([iu], [AS_HELP_STRING([--enable-iu], [Build 3G support, aka IuPS and IuCS interfaces])],
[osmo_ac_iu="$enableval"],[osmo_ac_iu="no"])
if test "x$osmo_ac_iu" = "xyes" ; then
- PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran >= 1.0.0)
+ PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran >= 1.4.0)
PKG_CHECK_MODULES(LIBASN1C, libasn1c >= 0.9.30)
- PKG_CHECK_MODULES(LIBOSMORANAP, libosmo-ranap >= 0.6.0)
+ PKG_CHECK_MODULES(LIBOSMORANAP, libosmo-ranap >= 0.7.0)
AC_DEFINE(BUILD_IU, 1, [Define if we want to build IuPS and IuCS interfaces support])
fi
AM_CONDITIONAL(BUILD_IU, test "x$osmo_ac_iu" = "xyes")
AC_SUBST(osmo_ac_iu)
-PKG_CHECK_MODULES(LIBGTP, libgtp >= 1.5.0)
+PKG_CHECK_MODULES(LIBGTP, libgtp >= 1.7.0)
PKG_CHECK_MODULES(LIBCARES, libcares)
dnl checks for header files
diff --git a/contrib/osmo-sgsn.spec.in b/contrib/osmo-sgsn.spec.in
index cd3b5b7bf..f661fa0c8 100644
--- a/contrib/osmo-sgsn.spec.in
+++ b/contrib/osmo-sgsn.spec.in
@@ -34,20 +34,20 @@ BuildRequires: systemd-rpm-macros
%endif
BuildRequires: pkgconfig(libcares)
BuildRequires: pkgconfig(libcrypto) >= 0.9.5
-BuildRequires: pkgconfig(libgtp) >= 1.4.0
-BuildRequires: pkgconfig(libosmo-gsup-client) >= 1.0.0
-BuildRequires: pkgconfig(libosmo-netif) >= 0.4.0
-BuildRequires: pkgconfig(libosmoabis) >= 0.6.0
-BuildRequires: pkgconfig(libosmocore) >= 1.2.0
-BuildRequires: pkgconfig(libosmoctrl) >= 1.2.0
-BuildRequires: pkgconfig(libosmogb) >= 1.2.0
-BuildRequires: pkgconfig(libosmogsm) >= 1.2.0
-BuildRequires: pkgconfig(libosmovty) >= 1.2.0
+BuildRequires: pkgconfig(libgtp) >= 1.7.0
+BuildRequires: pkgconfig(libosmo-gsup-client) >= 1.3.0
+BuildRequires: pkgconfig(libosmo-netif) >= 1.1.0
+BuildRequires: pkgconfig(libosmoabis) >= 1.1.0
+BuildRequires: pkgconfig(libosmocore) >= 1.5.0
+BuildRequires: pkgconfig(libosmoctrl) >= 1.5.0
+BuildRequires: pkgconfig(libosmogb) >= 1.5.0
+BuildRequires: pkgconfig(libosmogsm) >= 1.5.0
+BuildRequires: pkgconfig(libosmovty) >= 1.5.0
%{?systemd_requires}
%if %{with_iu}
BuildRequires: pkgconfig(libasn1c)
-BuildRequires: pkgconfig(libosmo-ranap) >= 0.4.0
-BuildRequires: pkgconfig(libosmo-sigtran) >= 1.0.0
+BuildRequires: pkgconfig(libosmo-ranap) >= 0.7.0
+BuildRequires: pkgconfig(libosmo-sigtran) >= 1.4.0
%endif
%description
diff --git a/debian/changelog b/debian/changelog
index 2827f43b0..2edc6e66f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,184 @@
+osmo-sgsn (1.7.0) unstable; urgency=medium
+
+ [ Daniel Willmann ]
+ * gprs_gmm: Check for RAT change and ensure this only happens for RAU/ATT
+ * gbproxy-usermanual: Explain BSSGP/BVC handling
+ * gbproxy: Whitespace fixes
+ * gbproxy: Add todo for BVC RESET logic
+ * gbproxy: Get the peer if paging by BVCI on SIG_BVC
+ * Let libosmocore handle VTY parent node tracking
+ * osmo-gbproxy: Free msgb in ns2 prim callback
+ * configure.ac: Require python3 for ext_tests
+ * osmo-gbproxy: Implement nsvc-state ctrl command
+ * gbproxy: Remove test testing NSVCI change
+ * gbproxy: Add NSE peer that can have multiple gbproxy_peers
+ * gbproxy: Ensure BVC0 is reset before handling PtP BVCs
+ * gbproxy: Only send paging to each matching NSE once
+ * gbproxy: Separate function to move gbproxy_peer to different nse
+ * gbproxy: Add logging macros for NSE and BVC
+ * gbproxy: Use LOG macros for NSE/BVC
+ * gbproxy: Change generic LOG messages so BVCI/NSEI fmt is consistent
+ * gbproxy: Add todos encountered while going through the code
+ * gbproxy: Add BVC log filters
+ * gbproxy: Add newline to log message
+ * gbproxy: Allow gbproxy_nse_free(NULL)
+ * gbproxy: Delete gbproxy_nse in delete-gbproxy-peer VTY command
+ * mm_state_gb_fsm: Handle implicit detach from mm_standby
+ * gbproxy: Fix bvci check in gbprox_rx_ptp_from_*
+ * osmo-gbproxy: Initialize all hash_maps
+ * gbproxy: Fix confusing log message in gbprox_relay2nse
+ * gbproxy: Add SGSN NRI configuration
+ * gbproxy: Add SGSN pooling support
+ * gbproxy: Add comments to sgsn functions
+ * gbproxy: Add config option to name an SGSN
+ * gbproxy: Add VTY command to override the node selection function
+ * Fix gbproxy_sgsn_by_tlli wraparound
+ * gbproxy: Implement TLLI cache and use it for SUSPEND/RESUME
+ * gbproxy: Increase TLLI cache timeout to 10s
+ * gbproxy: Implement IMSI cache
+ * gbproxy: Use IMSI cache to handle PAGING_PS_REJECT
+ * gbproxy: Use C-style comments
+ * gbproxy: Move helper function to a more logical place
+ * gbproxy: Remove unused variable assignment
+ * gbproxy: Fix VTY cmd name
+ * gbproxy: Define and use help string for gbproxy
+ * gbproxy: Add VTY commands to query the TLLI/IMSI cache
+ * gbproxy: Use IMSI cache for PTP paging and implement DUMMY_PAGING_PS
+ * gbproxy: Print the correct message type for dummy paging/paging reject
+ * gbproxy: Improve log messages in gbproxy_select_sgsn
+ * gbproxy: Fix radio status routing by TMSI
+ * manual/gbproxy: Update overview chapter
+ * Rename OsmoGbPROXY -> *Proxy
+ * manuals/gbproxy: Update configuration chapter
+ * manuals/gbproxy: Add osmo-bsc MSC pooling chapter from Neels as a base
+ * manuals/gbproxy: MSC -> SGSN for pooling chapter
+ * manuals/gbproxy: Move pooling to separate chapter
+
+ [ Alexander Couzens ]
+ * gprs_gmm_fsm.c: Implement RAT change between 2g and 3g
+ * gtphub: rename sgsn's oww osmo_sockaddr into sgsn_sockaddr
+ * gprs_llc: _bssgp_tx_dl_ud: ensure the LLME is valid before using it
+ * gmm: on invalid RA id reject the MS with an implicit detach
+ * gtphub_test: fix compilation error on gcc 10.2.0
+ * gtphub: fix compilation with gcc 10.2.0
+ * Port gbproxy to NS2
+ * sgsn: check for NULL of gprs_subscr_get_or_create()
+ * sgsn: Use the new NS2 api
+ * gbproxy: use ns2 vty2
+ * configure.ac: define a c standard instead of using the compilers default
+ * follow libosmocore/gprs_ns2 API changes of GPRS enums
+ * gbproxy: follow gprs_ns2 API vty changes
+ * sgsn: migrate to the new gprs_ns2_vty configuration
+ * follow libosmocore/gprs_ns2 API changes (gprs_ns2_dynamic_create_nse)
+
+ [ Neels Hofmeyr ]
+ * manual: explain IuPS, add SCCP/M3UA section from common chapters
+ * fix nullpointer: in gsm48_rx_gmm_ra_upd_req()
+ * gsup: send RAT type on LU
+ * gbproxy_test.c: fix mobile identity test data
+ * use new osmo_mobile_identity API everywhere
+
+ [ Eric ]
+ * tests: dlopen does not imply availability of dlsym..
+ * configure.ac: fix libtool issue with clang and sanitizer
+
+ [ Harald Welte ]
+ * gtphub_test: Fix compilation with gcc-10
+ * Fix memory leak when SNDCP de-fragmentation is used
+ * Treat RAU as implicit RESUME if GMM is suspended
+ * *.spec.in: Use %config(noreplace) to retain current config file
+ * Send a BVC-RESET to all persistent Gb interfaces at start-up
+ * Use osmo_fd_setup() whenever applicable
+ * Use osmo_fd_*_{disable,enable}
+ * gbproxy: Properly implement paging to LAC/RAC
+ * gbproxy: Implement paging to entire BSS area
+ * gprs_gb_parse: Add function to determine TLLI from encoded BSSGP
+ * gbproxy: Pass TLLI as LSP towards NS to facilitate load sharing
+ * gb_proxy_peer: Add some FIXMEs regarding invalid assumptions
+ * gb_proxy: More precise + readable log messages
+ * gb_proxy: Broadcast SGSN-INVOKE-TRACE and OVERLOAD
+ * gbproxy: Move BSS-side BVC-RESET processing to its own function
+ * gb_proxy: Slightly restructure processing of BSS-originated BVC-RESET
+ * gbproxy: Cosmetics: use longer lines
+ * gbproxy: Send BVC-STATUS if BSS sends us BVC-RESET without mandatory IEs
+ * gb_proxy: Use TLVP_PRES_LEN instead of TLVP_PRESENT
+ * gb_proxy: Rename gbproxy_peer to gbproxy_bvc
+ * gbproxy: Rename gbproxy_cfg.nses to gbproxy_cfg.bss_nses
+ * gbproxy: convert bss_nses from llist_head to hashtable
+ * gbproxy: convert nse->bvcs from llist_head to hashtable
+ * gbproxy: Remove patching, TLLI-tracking and SGSN2 support
+ * gb_proxy: cosmetic: Use function rather than open-coding is_sgsn
+ * gbproxy: Delete gbproxy_test
+ * gb_proxy: Introduce more validation / constraint checks
+ * gbproxy: use gbprox_relay2peer() whenever possible
+ * gb_proxy: Use osmo_tlv_prot_parse() to validate mandatory IEs
+ * gbproxy: Log FSM timeouts
+ * migrate to DLBSSGP as log sub-system for BSSGP
+ * gbproxy major rewrite for SGSN pool support
+ * gbproxy: Use "(nsei << 16) | bvci" as rate_ctr_group index
+ * gbproxy: Introduce new DOBJ log category; log object allocation/release
+ * gbproxy: Don't create an extra msgb copy for SGSN DL SIG
+ * gbproxy: Implement handling of BVC Flow Control
+ * gbproxy: Copy RA-ID from BSS side BVC to CELL and SGSN-side BVC
+ * gbproxy: (Re)allocate SGSN-side PTP BVC even if CELL already exists
+ * gbproxy: Fix segfault when receiving PAGING for unknown destination
+ * gbproxy: Add FSM related VTY commands
+ * gbproxy: Implement scaling of BVC flow control in SGSN pool
+ * gbproxy: Improve VTY state introspection
+ * gbproxy: rename vty command "show gbproxy ..." to "show gbproxy bvc ..."
+ * gbproxy: Add "show gbproxy cell ..." VTY command
+ * gbproxy: Fix build on Deiban 8
+ * gb_proxy: Don't use orphan log subsystem DPCU
+ * gbproxy: Avoid depending on any of the SGSN code
+ * main: add --vty-ref-mode, use vty_dump_xml_ref_mode()
+ * manuals: generate vty reference xml at build time
+
+ [ Pau Espin Pedrol ]
+ * Use OSMO_FD_* instead of deprecated BSC_FD_*
+ * sgsn_libgtp: Improve ps-paging logging
+ * gprs_gmm_fsm.c: Add missing license header
+ * sgsn_libgtp: Avoid ps-paging MS on GMM Suspended state
+ * configure.ac: Fix trailing whitespace
+ * doc: Update VTY reference xml file
+ * Support setting rt-prio and cpu-affinity mask through VTY
+ * Change default SCTP conn NULL->127.0.0.1 to localhost->localhost
+ * contrib/jenkins: Enable parallel make in make distcheck
+ * Log error if pdp ctx is freed while holding an active timer
+ * Fix crash rx DeactPdpReq while waiting for DeactPdpAck after gtp side is freed
+ * sgsn_delete_pdp_ctx: Add documentation and assert assumptions
+ * process_ms_ctx_status: refactor to avoid code duplication
+ * process_ms_ctx_status: Fix crash deleting PDP Ctx if GTP side was already released
+ * gbproxy: generate coredump and exit upon SIGABRT received
+ * gtphub: generate coredump and exit upon SIGABRT received
+ * sgsn: generate coredump and exit upon SIGABRT received
+ * gmm: fix build without define PTMSI_ALLOC
+ * gmm: Introduce comment to ease addition of Network feature support IE later
+ * .gitignore: Ignore new autofoo tmp files
+ * sndcp: Fix struct bit fields on big endian
+ * Fix nsei+bvci not updated on rx UL SNDCP data
+
+ [ Oliver Smith ]
+ * contrib: import RPM spec
+ * contrib: integrate RPM spec
+ * Makefile.am: EXTRA_DIST: debian, contrib/*.spec.in
+ * contrib/jenkins: don't build osmo-gsm-manuals
+ * gbproxy: remove (moved to own repository)
+
+ [ Vadim Yanitskiy ]
+ * debian/control: change maintainer to the Osmocom team / mailing list
+ * gb_proxy_peer: sgsn can never be NULL in gbproxy_sgsn_by_nri()
+ * gb_proxy_peer: fix NULL pointer dereference in gbproxy_sgsn_alloc()
+
+ [ Keith ]
+ * Fix Radio Priority in MM Attach and PDP Context Activation
+ * VTY: Add gtp state-dir command
+
+ [ Philipp Maier ]
+ * gprs_sndcp: fix use after free
+ * sgsn_rim: Add routing for (GERAN) BSSGP RIM messages
+
+ -- Pau Espin Pedrol <pespin@sysmocom.de> Tue, 23 Feb 2021 20:29:33 +0100
+
osmo-sgsn (1.6.0) unstable; urgency=medium
[ Pau Espin Pedrol ]
diff --git a/debian/control b/debian/control
index fe2f1e63f..abc759505 100644
--- a/debian/control
+++ b/debian/control
@@ -12,16 +12,16 @@ Build-Depends: debhelper (>=9),
pkg-config,
libtalloc-dev,
libc-ares-dev,
- libgtp-dev (>= 1.5.0),
- libosmocore-dev (>= 1.4.0),
- libosmo-abis-dev (>= 0.6.0),
- libosmo-netif-dev (>= 0.4.0),
- libosmo-gsup-client-dev (>= 1.0.0),
+ libgtp-dev (>= 1.7.0),
+ libosmocore-dev (>= 1.5.0),
+ libosmo-abis-dev (>= 1.1.0),
+ libosmo-netif-dev (>= 1.1.0),
+ libosmo-gsup-client-dev (>= 1.3.0),
libasn1c-dev (>= 0.9.30),
- libosmo-ranap-dev (>= 0.6.0),
- libosmo-sigtran-dev (>= 1.0.0),
- libosmo-sccp-dev (>= 1.0.0),
- osmo-gsm-manuals-dev
+ libosmo-ranap-dev (>= 0.7.0),
+ libosmo-sigtran-dev (>= 1.4.0),
+ libosmo-sccp-dev (>= 1.4.0),
+ osmo-gsm-manuals-dev (>= 1.1.0)
Standards-Version: 3.9.8
Vcs-Git: git://git.osmocom.org/osmo-sgsn.git
Vcs-Browser: https://git.osmocom.org/osmo-sgsn