mirror of
https://github.com/torvalds/linux.git
synced 2026-09-26 01:52:03 +02:00
selftests: nci: Fix uninitialized family ID on missing attribute
get_family_id() walks the generic netlink CTRL_CMD_GETFAMILY reply
looking for the CTRL_ATTR_FAMILY_ID attribute and returns the parsed
value in the local variable "id". If the reply does not carry that
attribute, the parsing loop never assigns "id" and the function returns
an indeterminate stack value, which the caller stores in self->fid and
uses for subsequent netlink requests.
Initialize "id" to 0 so a missing attribute yields a deterministic
(invalid) family ID instead of a garbage value.
Fixes: f595cf1242 ("selftests: Add nci suite")
Signed-off-by: Chaithanya Lagisetty <nagachaithanya9911@gmail.com>
Reviewed-by: Hangbin Liu <liuhangbin@kylinos.cn>
Link: https://patch.msgid.link/20260901070618.3299012-1-nagachaithanya9911@gmail.com
Signed-off-by: David Heidelberg <david@ixit.cz>
This commit is contained in:
parent
c3eef2f988
commit
eda518d2cd
|
|
@ -182,7 +182,7 @@ static int get_family_id(int sd, __u32 pid, __u32 *event_group)
|
|||
} ans;
|
||||
struct nlattr *na;
|
||||
int resp_len;
|
||||
__u16 id;
|
||||
__u16 id = 0;
|
||||
int len;
|
||||
int rc;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user