This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "UNNAMED PROJECT".
The branch, jerlbeck/wip/ms-struct has been created
at 66dceca1c43474f688b28b4e2fdf387cb4203c2b (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-pcu/commit/?id=66dceca1c43474f688b28b4e2fdf387…
commit 66dceca1c43474f688b28b4e2fdf387cb4203c2b
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Thu May 7 16:31:42 2015 +0200
WIP debug stuff
http://cgit.osmocom.org/osmo-pcu/commit/?id=3c8e86d8a04e0cd03140c0449b378ac…
commit 3c8e86d8a04e0cd03140c0449b378acfe9674546
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Tue May 12 08:59:45 2015 +0200
WIP: assert for idle() in MsGprs destructor
TODO:
- check with storage handling (and later timer) whether to keep this
http://cgit.osmocom.org/osmo-pcu/commit/?id=1fbad9f5229ea1c83674d2f424caa7b…
commit 1fbad9f5229ea1c83674d2f424caa7bb8bca325e
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Fri May 15 20:13:56 2015 +0200
WIP: invalidate new TLLI if set from network
http://cgit.osmocom.org/osmo-pcu/commit/?id=0c2b0d08e356433f7b007e7dd71ad4c…
commit 0c2b0d08e356433f7b007e7dd71ad4c9c206c7cd
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Fri May 15 15:50:43 2015 +0200
ms: Support new and old TLLIs (TODO)
TODO:
- commit message
- optionally split into MS/storage changes and TBF/BTS usage
- fully remove per TBF TLLI stuff (other commit?)
STATUS:
- works with a single E71
- works slowly with a single Iphone (background updates in progress)
- both at the same time doesn't work
-> check again when the iphone has done it's update
-> check prior commits with both phones
http://cgit.osmocom.org/osmo-pcu/commit/?id=4db9a117d978ef1c2dd5f6c0b80738b…
commit 4db9a117d978ef1c2dd5f6c0b80738bfd7747798
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Wed May 13 13:33:12 2015 +0200
ms: Integrate the MS storage (TODO)
TODO:
- commit message
- testing
STATUS:
- sucessfully tested with E71 (wbox)
http://cgit.osmocom.org/osmo-pcu/commit/?id=1138fb900a7b46163a325788fd21e9b…
commit 1138fb900a7b46163a325788fd21e9b7571c34d6
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Tue May 12 17:54:33 2015 +0200
ms: Add MS storage class (TODO)
TODO:
- commit message
- add an ms_deleted callback for cleanup???
STATUS:
- successfully tested with E71
http://cgit.osmocom.org/osmo-pcu/commit/?id=618c9e54eda8383e8bf2a8f0bc65850…
commit 618c9e54eda8383e8bf2a8f0bc658506c2976eaf
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Mon May 11 14:13:47 2015 +0200
llist: Add a C++ wrapper for linux_list (TODO)
TODO:
- consider to put that into libosmocore
- are file and class name ok?
- commit message
- put the test code into a separate test file
http://cgit.osmocom.org/osmo-pcu/commit/?id=1ae93653712390d52c770db1fa12c37…
commit 1ae93653712390d52c770db1fa12c37596e8fb50
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Mon May 11 10:32:40 2015 +0200
tbf/test: Optionally show talloc report
To show the talloc report more easily, this commit adds a call to
talloc_report_full if the TALLOC_REPORT_FULL environment variable is
set (the value is ignored). Since the stderr output is checked by the
test suite, this feature is not enabled by default.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=7daf6ead3f410434842c7c73fbaf0e2…
commit 7daf6ead3f410434842c7c73fbaf0e20c5cc0b06
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Fri May 8 12:13:08 2015 +0200
tbf: Add MS object management to TBF code
This commit adds MS object creation and cleanup to the TBF related
code. MS objects are created when a TBF that has been "anonymous" so
far gets associated with a TLLI. When a TBF is replaced by another,
the old TBF is detached and the new one is attached to the MS. When
all TBFs have been detached, the MS object gets deleted.
The TBF related code should not call attach_tbf/detach_tbf directly
but use set_ms instead to make sure, that the references are updated
properly. GprsMs::detach_tbf also calls set_ms(NULL) on the detached
TBF object.
The MS object is not really used yet.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=aedef1abf2b4b580abc820af801dd08…
commit aedef1abf2b4b580abc820af801dd08690e83de3
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Wed May 6 18:30:48 2015 +0200
ms: Add GprsMs class to hold per-MS information
Currently only TBF objects are used to handle the data flow between
the MS and the SGSN. MS specific data (e.g. pending LLC frames, TLLI)
is copied between successive TBFs. If all TBFs (uplink and downlink)
are idle for some time, all information about the MS is discarded in
the PCU. This makes the implementation of some features more
difficult, e.g. proper TLLI and timing advance handling,
connection based CS selection, and proper management of multiple TBF.
This commit adds the GprsMs class that is intended to hold
information directly related to the MS and to keep references to the
active TBFs.
The class is not yet integrated with the other PCU code. A GprsMs
object container and MS specific fields (TA, CS) will be added in
later commits.
Note that calling detach_tbf() can possibly delete the MS object
depending on the callback implementation.
Sponsored-by: On-Waves ehf
-----------------------------------------------------------------------
hooks/post-receive
--
UNNAMED PROJECT
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OpenBTS' transceiver retro-fit".
The branch, fairwaves/master has been updated
via 7451e47d8afc4973a4fca9300198459cec568e19 (commit)
from a6e2d6f9a109662ff4e95bff1d49dfa00c4b164c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-trx/commit/?id=7451e47d8afc4973a4fca9300198459…
commit 7451e47d8afc4973a4fca9300198459cec568e19
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sun May 17 23:25:57 2015 -0400
uhd: Output Rx/Tx gain limits to log to make it more transparent.
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/UHDDevice.cpp | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
hooks/post-receive
--
OpenBTS' transceiver retro-fit
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, fairwaves/master has been updated
via b1719d6399dfc3c12d84df590af89edc921d136c (commit)
from 574fb021c6601089417d252656b92e3c3035f30a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=b1719d6399dfc3c12d84df590af89edc…
commit b1719d6399dfc3c12d84df590af89edc921d136c
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sun May 17 20:52:26 2015 -0400
libmsc: Update 'max_power_red' VTY command.
Changes:
* Apply change even if the supplied value is odd, just warn that it is rounded.
* Apply change even if the supplied value is higher than the 24dB maximum
suggested by the standard, just warn about this.
* Apply change to the BTS over OML immediately.
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libbsc/bsc_vty.c | 33 ++++++++++++++++++++++++---------
1 file changed, 24 insertions(+), 9 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, zecke/features/sgsn-hlr-number has been created
at 8420250932b49ed35d1ce1a1cfa587e756ac90d3 (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=8420250932b49ed35d1ce1a1cfa587e7…
commit 8420250932b49ed35d1ce1a1cfa587e756ac90d3
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun May 17 20:58:40 2015 +0200
gsup: Copy the hlr-Number and use it during purge
Copy the hlr-Number into the sgsn_data and use it during
the purgeMS. There is no unit test that looks at the data
we send so I manually verified this by looking at the output.
Below is the output of the test that purges the subscriber.
<000f> gprs_subscriber.c:170 SUBSCR(123456789012345) Sending GSUP, will send: 0c 01 08 21 43 65 87 09 21 43 f5 09 07 91 83 61 26 31 23 f3
http://cgit.osmocom.org/openbsc/commit/?id=27e01e24b60828e03033c3138e962561…
commit 27e01e24b60828e03033c3138e962561fdeabab2
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun May 17 19:56:38 2015 +0200
gsup: Decode/Encode the hlr-Number in the GSUP message
Implement it similar to the msisdn_enc/msisdn_enc_len and
extend the testcase to include it as well.
http://cgit.osmocom.org/openbsc/commit/?id=f6c7b7e8f9c276917ea8738029b48830…
commit f6c7b7e8f9c276917ea8738029b4883047df390a
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun May 17 18:24:40 2015 +0200
gsup: Add the HLR-Number as type and use it for UpdateLocation Res
The HLR-Number can be passed from the MAP Proxy to the SGSN and
can then be used for the CDR module or passed during the purgeMS
operation.
-----------------------------------------------------------------------
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via 4c6e66796834fb0d96639b67ab00e1c81c580913 (commit)
from 072bee5c8508fe11e1a0e0ad309ad298661fe586 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=4c6e66796834fb0d96639b67ab00e1c8…
commit 4c6e66796834fb0d96639b67ab00e1c81c580913
Author: Max <max.suraev(a)fairwaves.co>
Date: Wed Oct 22 16:21:20 2014 +0200
Replace ad-hoc function with generic one from libosmocore
Signed-off-by: Max <max.suraev(a)fairwaves.co>
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/osmo-bsc/osmo_bsc_bssap.c | 14 ++------------
1 file changed, 2 insertions(+), 12 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 0d86c21f6af7452291f4148c166e145fb65dc0b9 (commit)
from 9eb1c800205b921c8e471c90e9fe8c5c4108aef0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=0d86c21f6af7452291f4148c166e…
commit 0d86c21f6af7452291f4148c166e145fb65dc0b9
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun May 17 19:55:53 2015 +0200
build: Fix the building of tests as well
In file included from ../../include/osmocom/core/msgb.h:25:0,
from ../../tests/sms/sms_test.c:31:
../../include/osmocom/core/bits.h:6:35: fatal error: osmocom/core/bit16gen.h: No such file or directory
#include <osmocom/core/bit16gen.h>
-----------------------------------------------------------------------
Summary of changes:
tests/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 9eb1c800205b921c8e471c90e9fe8c5c4108aef0 (commit)
from 16082fd3cda0ced8f22736e92394348ee2ecfda3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=9eb1c800205b921c8e471c90e9fe…
commit 9eb1c800205b921c8e471c90e9fe8c5c4108aef0
Author: Andreas Rottmann <a.rottmann(a)gmx.at>
Date: Sun May 17 16:31:54 2015 +0200
build: Fix out-of-tree builds
Fixes:
In file included from ../../../include/osmocom/core/msgb.h:25:0,
from ../../../include/osmocom/sim/sim.h:4,
from ../../../src/sim/reader_pcsc.c:30:
../../../include/osmocom/core/bits.h:6:35: fatal error: osmocom/core/bit16gen.h: No such file or directory
#include <osmocom/core/bit16gen.h>
In file included from ../../include/osmocom/core/msgb.h:25:0,
from ../../utils/osmo-sim-test.c:26:
../../include/osmocom/core/bits.h:6:35: fatal error: osmocom/core/bit16gen.h: No such file or directory
#include <osmocom/core/bit16gen.h>
-----------------------------------------------------------------------
Summary of changes:
src/sim/Makefile.am | 2 +-
utils/Makefile.am | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via 072bee5c8508fe11e1a0e0ad309ad298661fe586 (commit)
from 267fd0c7f7cbdef595d83ee37b86e863fff8a369 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=072bee5c8508fe11e1a0e0ad309ad298…
commit 072bee5c8508fe11e1a0e0ad309ad298661fe586
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun May 17 17:36:23 2015 +0200
sgsn: Clear LAC/RAC value for the routing area identity
Clear LAC/RAC with pre-defined value in the RAI.
3GPP 29.060 v7.17.0 section 7.3.1 page 23:
"The SGSN may include the Routeing Area Identity (RAI) of the
SGSN where the MS is registered. The MCC and MNC components shall
be populated with the MCC and MNC, respectively, of the SGSN
where the MS is registered. The LAC and RAC components shall be
populated by the SGSN with the value of 'FFFE' and 'FF',
respectively.”
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/gprs/sgsn_libgtp.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A software simulated SIM card".
The branch, master has been updated
via 9255b65952a390c0558521321196ad54ea2db991 (commit)
from a771ba47bb6da1b1249c4b61ecbd06e44b54c474 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/softsim/commit/?id=9255b65952a390c0558521321196ad54…
commit 9255b65952a390c0558521321196ad54ea2db991
Author: Kevin Redon <kevredon(a)mail.tsaitgaist.info>
Date: Sun May 17 17:32:47 2015 +0200
change default to unix socket for simple osmocom_sap usage
-----------------------------------------------------------------------
Summary of changes:
src/demo_client.rb | 4 ++--
src/demo_server.rb | 8 ++++++--
src/simos_server.rb | 2 +-
3 files changed, 9 insertions(+), 5 deletions(-)
hooks/post-receive
--
A software simulated SIM card
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via 267fd0c7f7cbdef595d83ee37b86e863fff8a369 (commit)
via d6900dfba4cf1c12133d0bf3200ef560f5c7f0d4 (commit)
via 6ddb6ac0284ccfcfc538af175c0cde8beb13f7c5 (commit)
via 22093ef9641c7685c87b5ed80333bcfc273efcad (commit)
via 77ff1c40e28d4e7a8000be5293e9352e85b9f31b (commit)
via 446f8403d1072b5a7aa7d5a3d55106b36a64941d (commit)
from 7882d2751f401d439394ff94da55ed2c0e8781e3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=267fd0c7f7cbdef595d83ee37b86e863…
commit 267fd0c7f7cbdef595d83ee37b86e863fff8a369
Merge: 446f840 d6900df
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun May 17 17:24:09 2015 +0200
Merge branch 'zecke/features/sgsn-gtp-cdr'
Extend GTP and CDR support in the SGSN.
http://cgit.osmocom.org/openbsc/commit/?id=d6900dfba4cf1c12133d0bf3200ef560…
commit d6900dfba4cf1c12133d0bf3200ef560f5c7f0d4
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue May 12 22:20:05 2015 +0200
sgsn: Give the IMEI to the GGSN for analysis
Most SGSNs pass the IMEI(SV). We currently only enquire about
the IMEI and then pad the 'SV' with 1111b (thanks to the encoding
routine). Sadly it insists on always writing the length which
means we have to memmove the data around by a single octet.
Manually verified using the pcu-emu and looking at the trace
using wireshark.
http://cgit.osmocom.org/openbsc/commit/?id=6ddb6ac0284ccfcfc538af175c0cde8b…
commit 6ddb6ac0284ccfcfc538af175c0cde8beb13f7c5
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue May 12 22:00:22 2015 +0200
sgsn: Encode the ULI for the PDP context creation ack
Give the GGSN another opportunity to determine which tarif
to apply for the SGSN/subscriber. This code assumes tha the
RAN is a GERAN system but the assumption has been made in
other places as well.
http://cgit.osmocom.org/openbsc/commit/?id=22093ef9641c7685c87b5ed80333bcfc…
commit 22093ef9641c7685c87b5ed80333bcfc273efcad
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue May 12 21:46:58 2015 +0200
sgsn: Always include the routing area identity
For PDP context creation we always want to include the RAI
for the current mmctx. This might help commercial GGSNs to
determine which charging to apply.
http://cgit.osmocom.org/openbsc/commit/?id=77ff1c40e28d4e7a8000be5293e9352e…
commit 77ff1c40e28d4e7a8000be5293e9352e85b9f31b
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue May 12 21:08:42 2015 +0200
cdr: Remember the charging id supplied by the GGSN
The charging_id is provided by the GGSN. Copy it into the CDR
part of the data structure so it will remain present until after
the pdp context has been deleted.
http://cgit.osmocom.org/openbsc/commit/?id=446f8403d1072b5a7aa7d5a3d55106b3…
commit 446f8403d1072b5a7aa7d5a3d55106b36a64941d
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue May 12 22:33:18 2015 +0200
debian: Fix dependencies pointed out by lintian
E: openbsc source: missing-separator-between-items in osmocom-nitb depends field between '${misc:Depends}' and 'libdbd-sqlite3'
-----------------------------------------------------------------------
Summary of changes:
debian/control | 2 +-
openbsc/include/openbsc/gprs_sgsn.h | 1 +
openbsc/src/gprs/sgsn_cdr.c | 8 +++++---
openbsc/src/gprs/sgsn_libgtp.c | 16 ++++++++++++++++
4 files changed, 23 insertions(+), 4 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)