I think, it would not be a good solution, if I will analyze all subsystems using icmp_send, because I do not have enough knowledge for this. I propose to add a new function, for example, ismp_send_safe, something like that:
void icmp_send_safe(struct sk_buff *skb_in, int type, int code, __be32 info) { unsigned char optbuf[sizeof(struct ip_options) + 40]; struct ip_options *opt = (struct ip_options *)optbuf; memset(opt, 0, sizeof(struct ip_options)); opt->optlen = ip_hdr(skb_in)->ihl*4 - sizeof(struct iphdr); memcpy(opt->__data, (unsigned char *)&(ip_hdr(skb_in)[1]), opt->optlen); if (ip_options_compile(dev_net(skb_in->dev), opt, NULL)) return; __icmp_send(skb_in, type, code, info, opt); } which could be used when the code works at different network stack layers. And the subsystems developers, knowing their code well, will decide which one to use. 15.02.2019, 23:04, "Paul Moore" <p...@paul-moore.com>: > On Fri, Feb 15, 2019 at 3:00 PM David Miller <da...@davemloft.net> wrote: >> From: Paul Moore <p...@paul-moore.com> >> Date: Fri, 15 Feb 2019 14:02:31 -0500 >> >> > On Thu, Feb 14, 2019 at 11:43 AM David Miller <da...@davemloft.net> wrote: >> >> From: Nazarov Sergey <s-naza...@yandex.ru> >> >> Date: Tue, 12 Feb 2019 18:10:03 +0300 >> >> >> >> > Since cipso_v4_error might be called from different network stack >> layers, we can't safely use icmp_send there. >> >> > icmp_send copies IP options with ip_option_echo, which uses IPCB to >> take access to IP header compiled data. >> >> > But after commit 971f10ec ("tcp: better TCP_SKB_CB layout to reduce >> cache line misses"), IPCB can't be used >> >> > above IP layer. >> >> > This patch fixes the problem by creating in cipso_v4_error a local >> copy of compiled IP options and using it with >> >> > introduced __icmp_send function. This looks some overloaded, but in >> quite rare error conditions only. >> >> > >> >> > The original discussion is here: >> >> > >> https://lore.kernel.org/linux-security-module/16659801547571...@sas1-890ba5c2334a.qloud-c.yandex.net/ >> >> > >> >> > Signed-off-by: Sergey Nazarov <s-naza...@yandex.ru> >> >> >> >> This problem is not unique to Cipso, net/atm/clip.c's error handler >> >> has the same exact issue. >> >> >> >> I didn't scan more of the tree, there are probably a couple more >> >> locations as well. >> > >> > David, are you happy with Sergey's solution as a fix for this? >> > >> > If so, would you prefer a respin of this patch to apply the to the >> > other broken callers (e.g. net/atm/clip.c), or would you rather merge >> > this patch and deal with the other callers in separate patches? >> >> I'd like the other broken callers to be handled. > > Sergey, do you think you could fix the other callers too, or do you > want some help with that? > > -- > paul moore > www.paul-moore.com