bsc/nat: Fix the structure of the identity request message

Unfortunately the basic structure of the response is broken.
There is a two byte length followed by data. The concept of
a 'tag' happens to be the first byte of the data.

This means we want to write strlen of the token, then we
want to write the NUL and then we need to account for the
tag in front.

Introduce a flag if the new or old format should be used.
This will allow to have new BSCs talk to old NATs without
an additional change. In the long run we can clean that up.
This commit is contained in:
Holger Hans Peter Freyther 2015-06-10 11:51:16 +02:00
parent 0363d1bb97
commit 8a8df80772
4 changed files with 28 additions and 8 deletions

View File

@ -60,6 +60,6 @@ void bsc_msc_schedule_connect(struct bsc_msc_connection *);
void bsc_msc_lost(struct bsc_msc_connection *); void bsc_msc_lost(struct bsc_msc_connection *);
struct msgb *bsc_msc_id_get_resp(const char *token); struct msgb *bsc_msc_id_get_resp(int fixed, const char *token);
#endif #endif

View File

@ -276,7 +276,7 @@ void bsc_msc_schedule_connect(struct bsc_msc_connection *con)
osmo_timer_schedule(&con->reconnect_timer, 5, 0); osmo_timer_schedule(&con->reconnect_timer, 5, 0);
} }
struct msgb *bsc_msc_id_get_resp(const char *token) struct msgb *bsc_msc_id_get_resp(int fixed, const char *token)
{ {
struct msgb *msg; struct msgb *msg;
@ -291,8 +291,21 @@ struct msgb *bsc_msc_id_get_resp(const char *token)
return NULL; return NULL;
} }
/*
* The situation is bizarre. The encoding doesn't follow the
* TLV structure. It is more like a LV and old versions had
* it wrong but we want new versions to old servers so we
* introduce the quirk here.
*/
msg->l2h = msgb_v_put(msg, IPAC_MSGT_ID_RESP); msg->l2h = msgb_v_put(msg, IPAC_MSGT_ID_RESP);
msgb_l16tv_put(msg, strlen(token) + 1, if (fixed) {
msgb_put_u8(msg, 0);
msgb_put_u8(msg, strlen(token) + 2);
msgb_tv_fixed_put(msg, IPAC_IDTAG_UNITNAME, strlen(token) + 1, (uint8_t *) token);
} else {
msgb_l16tv_put(msg, strlen(token) + 1,
IPAC_IDTAG_UNITNAME, (uint8_t *) token); IPAC_IDTAG_UNITNAME, (uint8_t *) token);
}
return msg; return msg;
} }

View File

@ -456,7 +456,7 @@ static void send_id_get_response(struct osmo_msc_data *data, int fd)
struct msc_signal_data sig; struct msc_signal_data sig;
struct msgb *msg; struct msgb *msg;
msg = bsc_msc_id_get_resp(data->bsc_token); msg = bsc_msc_id_get_resp(0, data->bsc_token);
if (!msg) if (!msg)
return; return;
msc_queue_write(data->msc_con, msg, IPAC_PROTO_IPACCESS); msc_queue_write(data->msc_con, msg, IPAC_PROTO_IPACCESS);

View File

@ -357,7 +357,7 @@ static void initialize_msc_if_needed(struct bsc_msc_connection *msc_con)
static void send_id_get_response(struct bsc_msc_connection *msc_con) static void send_id_get_response(struct bsc_msc_connection *msc_con)
{ {
struct msgb *msg = bsc_msc_id_get_resp(nat->token); struct msgb *msg = bsc_msc_id_get_resp(0, nat->token);
if (!msg) if (!msg)
return; return;
@ -960,7 +960,7 @@ static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc
{ {
struct bsc_config *conf; struct bsc_config *conf;
const char *token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME); const char *token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
const int len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME); int len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME);
if (bsc->cfg) { if (bsc->cfg) {
LOGP(DNAT, LOGL_ERROR, "Reauth on fd %d bsc nr %d\n", LOGP(DNAT, LOGL_ERROR, "Reauth on fd %d bsc nr %d\n",
@ -980,11 +980,18 @@ static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc
return; return;
} }
/*
* New systems have fixed the structure of the message but
* we need to support old ones too.
*/
if (len >= 2 && token[len - 2] == '\0')
len -= 1;
conf = bsc_config_by_token(bsc->nat, token, len); conf = bsc_config_by_token(bsc->nat, token, len);
if (!conf) { if (!conf) {
LOGP(DNAT, LOGL_ERROR, LOGP(DNAT, LOGL_ERROR,
"No bsc found for token '%s' on fd: %d.\n", token, "No bsc found for token '%s' len %d on fd: %d.\n", token,
bsc->write_queue.bfd.fd); bsc->write_queue.bfd.fd, len);
bsc_close_connection(bsc); bsc_close_connection(bsc);
return; return;
} }