Attention is currently required from: pespin.
6 comments:
File src/sgsn/gprs_gmm.c:
Patch Set #2, Line 1645: osmo_routing_area_id_decode(&old_ra_id, cur, msgb_l3len(msg) - 3);
where does the 3 come from? "cur - gh" ?
Yes, "cur - gh" -> this will be replace soon anyways by a commit already in my osmo-sgsn routing-area branch.
Fixed it.
Patch Set #2, Line 1729: bssgp_parse_cell_id2(&new_ra_id, NULL, msgb_bcid(msg), 8);
isn't this 8 you hardcoded supposed to be passed from space available in msg to avoid read out of bo […]
msgb_bcid(msg) points to the control buffer msgb->cb[0] which is a unsigned long cb[5].
https://gitea.osmocom.org/osmocom/libosmocore/src/branch/master/include/osmocom/gprs/gprs_msgb.h#L28
https://gitea.osmocom.org/osmocom/libosmocore/src/branch/master/include/osmocom/core/msgb.h
Patch Set #2, Line 1772: bssgp_parse_cell_id2(&mmctx->ra, NULL, msgb_bcid(msg), 8);
isn't this 8 you hardcoded supposed to be passed from space available in msg to avoid read out of bo […]
see earlier comment
Patch Set #2, Line 2346: bssgp_parse_cell_id2(&ra_id, NULL, msgb_bcid(msg), 8);
isn't this 8 you hardcoded supposed to be passed from space available in msg to avoid read out of bo […]
see earlier comment
File src/sgsn/gprs_sndcp.c:
Patch Set #2, Line 837: bssgp_parse_cell_id2(&sne->ra_id, NULL, msgb_bcid(msg), 8);
same
Done
File src/sgsn/gprs_subscriber.c:
Patch Set #2, Line 880: if (subscr->lac != mmctx->ra.lac.lac)
we should add a define to name "lac" as "lai" in that struct :)
true! but no in this commit ;)
To view, visit change 37860. To unsubscribe, or for help writing mail filters, visit settings.