diff options
author | Julian Wiedmann <jwi@linux.ibm.com> | 2020-10-01 19:21:26 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-10-03 16:51:07 -0700 |
commit | 398999bac6ea8842706d613630f907b817f47c6d (patch) | |
tree | e6b24e67e48c80ef7c91eda7e5fa634b3de51a71 /samples/seccomp | |
parent | 8e1b3884eed7d96d4f1210b668611ee6a1803ea5 (diff) |
net/af_iucv: right-size the uid variable in iucv_sock_bind()
smatch complains about
net/iucv/af_iucv.c:624 iucv_sock_bind() error: memcpy() 'sa->siucv_user_id' too small (8 vs 9)
Which is absolutely correct - the memcpy() takes 9 bytes (sizeof(uid))
from an 8-byte field (sa->siucv_user_id).
Luckily the sockaddr_iucv struct contains more data after the
.siucv_user_id field, and we checked the size of the passed data earlier
on. So the memcpy() won't accidentally read from an invalid location.
Fix the warning by reducing the size of the uid variable to what's
actually needed, and thus reducing the amount of copied data.
Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Reviewed-by: Karsten Graul <kgraul@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples/seccomp')
0 files changed, 0 insertions, 0 deletions