Skip to content

Commit

Permalink
Merge pull request #49 from travelping/feature/stable/3.x/safe-imei-e…
Browse files Browse the repository at this point in the history
…ncoding

handle IMEIs shorter than 15 digits
  • Loading branch information
RoadRunnr committed Sep 6, 2024
2 parents 38b86ff + 1028d87 commit 8029016
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion priv/ie_gen_v1.erl
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ ies() ->
{"DST", 2, integer},
{'_', 0}]},
{154, "IMEI", '_',
[{"IMEI", 64, {type, tbcd}},
[{"IMEI", 64, {type, imei}},
{'_', 0}]},
{155, "CAMEL Charging Information Container", '_',
[]},
Expand Down
11 changes: 9 additions & 2 deletions src/gtp_packet.erl
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,13 @@ encode_imsi(IMSI) ->
<< B:64/bits, _/binary>> = << (encode_tbcd(IMSI))/binary, -1:64 >>,
B.

decode_imei(Bin) ->
decode_tbcd(Bin).

encode_imei(IMEI) ->
<< B:64/bits, _/binary>> = << (encode_tbcd(IMEI))/binary, -1:64 >>,
B.

encode_v1_rai(#routeing_area_identity{
identity = #rai{plmn_id = {MCC, MNC}, lac = LAC, rac = RAC}}) ->
<<(encode_mccmnc(MCC, MNC))/binary, LAC:16, (RAC bsr 8):8>>.
Expand Down Expand Up @@ -1677,7 +1684,7 @@ decode_v1_element(<<M_timezone:8/integer,
decode_v1_element(<<M_imei:64/bits,
_/binary>>, 154, Instance) ->
#imei{instance = Instance,
imei = decode_tbcd(M_imei)};
imei = decode_imei(M_imei)};

decode_v1_element(<<>>, 155, Instance) ->
#camel_charging_information_container{instance = Instance};
Expand Down Expand Up @@ -2441,7 +2448,7 @@ encode_v1_element(#ms_time_zone{
encode_v1_element(#imei{
instance = Instance,
imei = M_imei}) ->
encode_v1_element(154, Instance, <<(encode_tbcd(M_imei)):64/bits>>);
encode_v1_element(154, Instance, <<(encode_imei(M_imei)):64/bits>>);

encode_v1_element(#camel_charging_information_container{
instance = Instance}) ->
Expand Down
11 changes: 11 additions & 0 deletions test/gtp_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ all() ->
test_v1_ignore_spare_bits,
test_g_pdu,
test_v2_pco_vendor_ext,
v1_invalid_imei,
v2_list,
partial_decode,
partial_encode,
Expand Down Expand Up @@ -282,6 +283,16 @@ test_v2_pco_vendor_ext(_Config) ->
?match(Data when is_binary(Data), (catch gtp_packet:encode(Msg))),
ok.

v1_invalid_imei() ->
[{doc, "Try to encode an IMEI shorter that 15 digits"}].
v1_invalid_imei(_Config) ->
%% IMEIs are 15 digits and IMEI-SVs are 16 digits, anything else is not a valid
%% IMEI. However, somehow 14 digit values are observed in the wild. Make sure that
%% encoder/decoder handles them, so that higher levels can deal with the values.
Msg = #gtp{version = v1, type = create_pdp_context_request, seq_no = 1, tei = 0,
ie = #{{imei, 0} => #imei{imei = <<"1234567890">>}}},
?equal(Msg, gtp_packet:decode(gtp_packet:encode(Msg))).

v2_list(_Config) ->
IEs =
[
Expand Down

0 comments on commit 8029016

Please sign in to comment.