mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 05:04:51 +01:00
netfilter: nf_conntrack_h323: don't pass uninitialised l3num value
Mihail Milev reports: Error: UNINIT (CWE-457):
net/netfilter/nf_conntrack_h323_main.c:1189:2: var_decl:
Declaring variable "tuple" without initializer.
net/netfilter/nf_conntrack_h323_main.c:1197:2:
uninit_use_in_call: Using uninitialized value "tuple.src.l3num" when calling "__nf_ct_expect_find".
net/netfilter/nf_conntrack_expect.c:142:2:
read_value: Reading value "tuple->src.l3num" when calling "nf_ct_expect_dst_hash".
1195| tuple.dst.protonum = IPPROTO_TCP;
1196|
1197|-> exp = __nf_ct_expect_find(net, nf_ct_zone(ct), &tuple);
1198| if (exp && exp->master == ct)
1199| return exp;
Switch this to a C99 initialiser and set the l3num value.
Fixes: f587de0e2f ("[NETFILTER]: nf_conntrack/nf_nat: add H.323 helper port")
Signed-off-by: Florian Westphal <fw@strlen.de>
This commit is contained in:
parent
7f261bb906
commit
a6d28eb8ef
1 changed files with 5 additions and 5 deletions
|
|
@ -1187,13 +1187,13 @@ static struct nf_conntrack_expect *find_expect(struct nf_conn *ct,
|
|||
{
|
||||
struct net *net = nf_ct_net(ct);
|
||||
struct nf_conntrack_expect *exp;
|
||||
struct nf_conntrack_tuple tuple;
|
||||
struct nf_conntrack_tuple tuple = {
|
||||
.src.l3num = nf_ct_l3num(ct),
|
||||
.dst.protonum = IPPROTO_TCP,
|
||||
.dst.u.tcp.port = port,
|
||||
};
|
||||
|
||||
memset(&tuple.src.u3, 0, sizeof(tuple.src.u3));
|
||||
tuple.src.u.tcp.port = 0;
|
||||
memcpy(&tuple.dst.u3, addr, sizeof(tuple.dst.u3));
|
||||
tuple.dst.u.tcp.port = port;
|
||||
tuple.dst.protonum = IPPROTO_TCP;
|
||||
|
||||
exp = __nf_ct_expect_find(net, nf_ct_zone(ct), &tuple);
|
||||
if (exp && exp->master == ct)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue