[NETFILTER]: nfctnetlink: Don't allow to change helper

There is no realistic situation to change helper (Who wants IRC helper to
track FTP traffic ?). Moreover, if we want to do that, we need to fix race
issue by nfctnetlink and running helper. That will add overhead to packet
processing. It wouldn't pay. So this rejects the request to change
helper. The requests to add or remove helper are accepted as ever.

Signed-off-by: Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Yasuyuki Kozakai and committed by David S. Miller e2d8e314 d258131a

+1 -2
+1 -2
net/netfilter/nf_conntrack_netlink.c
··· 869 869 return 0; 870 870 871 871 if (help->helper) 872 - /* we had a helper before ... */ 873 - nf_ct_remove_expectations(ct); 872 + return -EBUSY; 874 873 875 874 /* need to zero data of old helper */ 876 875 memset(&help->help, 0, sizeof(help->help));