openbsc.git branch jerlbeck/wip/gprs-patching updated. 0.13.0-788-g2d1e099

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Tue Dec 9 13:11:24 UTC 2014


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, jerlbeck/wip/gprs-patching has been updated
  discards  daaa141ed43c54c9413b64b5d4a63454bcfd81ac (commit)
  discards  031089299543662d4c6a74ca5c046e3d20c41c5c (commit)
  discards  d4500a943fe41d7434ee4906f354443cc856022d (commit)
  discards  d6b5e946f2564a53f231ba5007c020a87f53bbc1 (commit)
  discards  28fb6490305f5c792942d8b60d8a6e93573aa364 (commit)
       via  2d1e099f74e43106fd41197133408613f5cc991f (commit)
       via  77af7f21c5531b53c223000857242ff9b60634de (commit)
       via  ae28ffd167fd136121c655145e682e9f3503c06f (commit)
       via  c43a8c20bc62a03bf6ea6336069f827c53c2d213 (commit)
       via  21e9d9c53ddda7e83277fa9db7868ff5f1126696 (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (daaa141ed43c54c9413b64b5d4a63454bcfd81ac)
            \
             N -- N -- N (2d1e099f74e43106fd41197133408613f5cc991f)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

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=2d1e099f74e43106fd41197133408613f5cc991f

commit 2d1e099f74e43106fd41197133408613f5cc991f
Author: Jacob Erlbeck <jerlbeck at sysmocom.de>
Date:   Fri Nov 28 14:55:25 2014 +0100

    sgsn: Work on 2 phase authorization (WIP)
    
    This implements the MAP way of subscriber validation when the MS
    tries an Attach Request:
      1. perform authentication (optionally invoke the sendAuthInfo
      procedure), starts the AuthAndCiph procedure
      2. perform update location
      3. insert subscriber data
      4. finish the update location
      5. Attach Accept / Attach Reject
    
    This is currently accessible via the VTY interface.
    
    TODO:
      - Apply this to (periodic) RA Update Req
      - Delete Subscriber Data
      - Improve on procedure collisions (repeated Attach Req is sometimes
        not handled properly)
      - PDP info
      - Commit cleanup
    
    Sponsored-by: On-Waves ehf

http://cgit.osmocom.org/openbsc/commit/?id=77af7f21c5531b53c223000857242ff9b60634de

commit 77af7f21c5531b53c223000857242ff9b60634de
Author: Jacob Erlbeck <jerlbeck at sysmocom.de>
Date:   Mon Dec 8 15:52:00 2014 +0100

    sgsn: Add support for authentication triplets (TODO)
    
    TODO:
      - commit message
      - tests
    
    Sponsored-by: On-Waves ehf

http://cgit.osmocom.org/openbsc/commit/?id=ae28ffd167fd136121c655145e682e9f3503c06f

commit ae28ffd167fd136121c655145e682e9f3503c06f
Author: Jacob Erlbeck <jerlbeck at sysmocom.de>
Date:   Tue Sep 30 13:53:26 2014 +0200

    sgsn: Added TODOs (TODO)
    
    TODO:
      - fix and remove TODOs
      - add test cases for Detach(reattach)
      - add test cases for PDP context deletion (OW#1311)
      - add test cases for Cancel pending timer in sgsn_mm_ctx_free
      - remove this commit
    
    Sponsored-by: On-Waves ehf

http://cgit.osmocom.org/openbsc/commit/?id=c43a8c20bc62a03bf6ea6336069f827c53c2d213

commit c43a8c20bc62a03bf6ea6336069f827c53c2d213
Author: Jacob Erlbeck <jerlbeck at sysmocom.de>
Date:   Fri Oct 17 10:08:02 2014 +0200

    sgsn: Do not die in _bssgp_tx_dl_ud on TLLI mismatch (TODO)
    
    Currently an OSMO_ASSERT fails, if the message's and the mmctx's
    TLLIs do not match.
    
    This commit turns the assertion into an ERROR log message and uses
    the default values for IMSI, DRX, and RA CAP instead of the MM
    context values in this case.
    
    TODO:
      - find the real source for the problem
      - add test cases derived from what is being described in the ticket
    
    Ticket: OW#1322
    Sponsored-by: On-Waves ehf

http://cgit.osmocom.org/openbsc/commit/?id=21e9d9c53ddda7e83277fa9db7868ff5f1126696

commit 21e9d9c53ddda7e83277fa9db7868ff5f1126696
Author: Jacob Erlbeck <jerlbeck at sysmocom.de>
Date:   Mon Dec 8 15:26:47 2014 +0100

    sgsn: Support subscriber based authentication
    
    This commit mainly extends sgsn_auth.c to use and support the
    auth_state SGSN_AUTH_AUTHENTICATE. It will be activated when IMSI and
    IMEI are available, authentication is required
    (subscr->sgsn_data->authenticate is set), but the MM context is not
    marked as authenticated. If the state has been set to
    SGSN_AUTH_AUTHENTICATE and sgsn_auth_update() is called, the GMM
    layer will be informed by invoking gsm0408_gprs_authenticate().
    
    Sponsored-by: On-Waves ehf

-----------------------------------------------------------------------

Summary of changes:
 openbsc/src/gprs/gprs_subscriber.c |   9 ----
 openbsc/tests/sgsn/sgsn_test.c     | 102 +++++++++++++++++++++++++++++++++++--
 openbsc/tests/sgsn/sgsn_test.ok    |   2 +
 3 files changed, 100 insertions(+), 13 deletions(-)


hooks/post-receive
-- 
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)



More information about the osmocom-commitlog mailing list