diff options
| author | Kuniyuki Iwashima <[email protected]> | 2025-01-16 05:34:35 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2025-01-20 19:27:40 +0000 |
| commit | c32f0bd7d4838982c6724fca0da92353f27c6f88 (patch) | |
| tree | 723ddd8b7d23aee2c7560596b851cfd387201f51 /net/unix/garbage.c | |
| parent | net: dropreason: Gather SOCKET_ drop reasons. (diff) | |
| download | kernel-c32f0bd7d4838982c6724fca0da92353f27c6f88.tar.gz kernel-c32f0bd7d4838982c6724fca0da92353f27c6f88.zip | |
af_unix: Set drop reason in unix_release_sock().
unix_release_sock() is called when the last refcnt of struct file
is released.
Let's define a new drop reason SKB_DROP_REASON_SOCKET_CLOSE and
set it for kfree_skb() in unix_release_sock().
# echo 1 > /sys/kernel/tracing/events/skb/kfree_skb/enable
# python3
>>> from socket import *
>>> s1, s2 = socketpair(AF_UNIX)
>>> s1.send(b'hello world')
>>> s2.close()
# cat /sys/kernel/tracing/trace_pipe
...
python3-280 ... kfree_skb: ... protocol=0 location=unix_release_sock+0x260/0x420 reason: SOCKET_CLOSE
To be precise, unix_release_sock() is also called for a new child
socket in unix_stream_connect() when something fails, but the new
sk does not have skb in the recv queue then and no event is logged.
Note that only tcp_inbound_ao_hash() uses a similar drop reason,
SKB_DROP_REASON_TCP_CLOSE, and this can be generalised later.
Signed-off-by: Kuniyuki Iwashima <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'net/unix/garbage.c')
0 files changed, 0 insertions, 0 deletions
