Kuniyuki Iwashima wrote: > From: Michal Luczaj <mhal@xxxxxxx> > Date: Sun, 7 Jul 2024 23:28:22 +0200 > > AF_UNIX socket tracks the most recent OOB packet (in its receive queue) > > with an `oob_skb` pointer. BPF redirecting does not account for that: when > > an OOB packet is moved between sockets, `oob_skb` is left outdated. This > > results in a single skb that may be accessed from two different sockets. > > > > Take the easy way out: silently drop MSG_OOB data targeting any socket that > > is in a sockmap or a sockhash. Note that such silent drop is akin to the > > fate of redirected skb's scm_fp_list (SCM_RIGHTS, SCM_CREDENTIALS). > > > > For symmetry, forbid MSG_OOB in unix_bpf_recvmsg(). > > > > Suggested-by: Kuniyuki Iwashima <kuniyu@xxxxxxxxxx> > > Fixes: 314001f0bf92 ("af_unix: Add OOB support") > > Signed-off-by: Michal Luczaj <mhal@xxxxxxx> > Why does af_unix put the oob data on the sk_receive_queue()? Wouldn't it be enough to just have the ousk->oob_skb hold the reference to the skb? I think for TCP/UDP at least I'll want to handle MSG_OOB data correctly. For redirect its probably fine to just drop or skip it, but when we are just reading recv msgs and parsing/observing it would be nice to not change how the application works. In practice I don't recall anyone reporting issues on TCP side though from incorrectly handling URG data.