Skip to content

Commit

Permalink
tls: cert serial number can exceed uint64
Browse files Browse the repository at this point in the history
  • Loading branch information
space88man committed Jun 30, 2022
1 parent a78adb5 commit e7839be
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions src/modules/tls/tls_select.c
Expand Up @@ -630,24 +630,33 @@ static int pv_validity(sip_msg_t* msg, pv_param_t* param, pv_value_t* res)
}


static int get_sn(str* res, int* ires, int local, sip_msg_t* msg)
static int get_sn(str* res, int local, sip_msg_t* msg)
{
static char buf[INT2STR_MAX_LEN];
static char buf[80]; // handle 256-bits log(2^256,10)
X509* cert;
struct tcp_connection* c;
char* sn;
int num;
BIGNUM* bn;

if (get_cert(&cert, &c, msg, local) < 0) return -1;

num = ASN1_INTEGER_get(X509_get_serialNumber(cert));
sn = int2str(num, &res->len);
if (!(bn = BN_new())) return -1;
if (!ASN1_INTEGER_to_BN(X509_get_serialNumber(cert), bn)) goto error;
if (!(sn = BN_bn2dec(bn))) goto error;

res->len = strlen(sn);
memcpy(buf, sn, res->len);
res->s = buf;
if (ires) *ires = num;

if (!local) X509_free(cert);
tcpconn_put(c);

BN_free(bn);
OPENSSL_free(sn);
return 0;
error:
BN_free(bn);
return -1;
}

static int sel_sn(str* res, select_t* s, sip_msg_t* msg)
Expand All @@ -662,7 +671,7 @@ static int sel_sn(str* res, select_t* s, sip_msg_t* msg)
return -1;
}

return get_sn(res, NULL, local, msg);
return get_sn(res, local, msg);
}


Expand All @@ -678,12 +687,13 @@ static int pv_sn(sip_msg_t* msg, pv_param_t* param, pv_value_t* res)
BUG("could not determine certificate\n");
return pv_get_null(msg, param, res);
}

if (get_sn(&res->rs, &res->ri, local, msg) < 0) {

// serial no can be > 2^64 cannot store in res->ri
if (get_sn(&res->rs, local, msg) < 0) {
return pv_get_null(msg, param, res);
}

res->flags = PV_VAL_STR | PV_VAL_INT;
res->flags = PV_VAL_STR;
return 0;
}

Expand Down

0 comments on commit e7839be

Please sign in to comment.