]> git.baikalelectronics.ru Git - kernel.git/commit
Revert "net: af_key: add check for pfkey_broadcast in function pfkey_process"
authorMichal Kubecek <mkubecek@suse.cz>
Mon, 23 May 2022 20:05:24 +0000 (22:05 +0200)
committerSteffen Klassert <steffen.klassert@secunet.com>
Wed, 25 May 2022 09:40:05 +0000 (11:40 +0200)
commitfbc9c211ed3e1d128feaeae409046c2cf50541c7
tree231bd35b2a94827bb80fb27dc77a294b64353207
parenteda6aff420d7098e0fe56a1e6cb1f5432e0056d2
Revert "net: af_key: add check for pfkey_broadcast in function pfkey_process"

This reverts commit 3589ef78a95cacf0699971aa4c3a550aa8b6dbe9.

A non-zero return value from pfkey_broadcast() does not necessarily mean
an error occurred as this function returns -ESRCH when no registered
listener received the message. In particular, a call with
BROADCAST_PROMISC_ONLY flag and null one_sk argument can never return
zero so that this commit in fact prevents processing any PF_KEY message.
One visible effect is that racoon daemon fails to find encryption
algorithms like aes and refuses to start.

Excluding -ESRCH return value would fix this but it's not obvious that
we really want to bail out here and most other callers of
pfkey_broadcast() also ignore the return value. Also, as pointed out by
Steffen Klassert, PF_KEY is kind of deprecated and newer userspace code
should use netlink instead so that we should only disturb the code for
really important fixes.

v2: add a comment explaining why is the return value ignored

Signed-off-by: Michal Kubecek <mkubecek@suse.cz>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
net/key/af_key.c