Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81378f72 authored by Pablo Neira Ayuso's avatar Pablo Neira Ayuso
Browse files

netfilter: ctnetlink: fix return value of ctnetlink_get_expect()



This fixes one bogus error that is returned to user-space:

libnetfilter_conntrack/utils# ./expect_get
TEST: get expectation (-1)(Unknown error 18446744073709551504)

This patch includes the correct handling for EAGAIN (nfnetlink
uses this error value to restart the operation after module
auto-loading).

Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent 3f1e6d3f
Loading
Loading
Loading
Loading
+10 −5
Original line number Original line Diff line number Diff line
@@ -1869,25 +1869,30 @@ ctnetlink_get_expect(struct sock *ctnl, struct sk_buff *skb,


	err = -ENOMEM;
	err = -ENOMEM;
	skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
	skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
	if (skb2 == NULL)
	if (skb2 == NULL) {
		nf_ct_expect_put(exp);
		goto out;
		goto out;
	}


	rcu_read_lock();
	rcu_read_lock();
	err = ctnetlink_exp_fill_info(skb2, NETLINK_CB(skb).pid,
	err = ctnetlink_exp_fill_info(skb2, NETLINK_CB(skb).pid,
				      nlh->nlmsg_seq, IPCTNL_MSG_EXP_NEW, exp);
				      nlh->nlmsg_seq, IPCTNL_MSG_EXP_NEW, exp);
	rcu_read_unlock();
	rcu_read_unlock();
	nf_ct_expect_put(exp);
	if (err <= 0)
	if (err <= 0)
		goto free;
		goto free;


	nf_ct_expect_put(exp);
	err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).pid, MSG_DONTWAIT);
	if (err < 0)
		goto out;


	return netlink_unicast(ctnl, skb2, NETLINK_CB(skb).pid, MSG_DONTWAIT);
	return 0;


free:
free:
	kfree_skb(skb2);
	kfree_skb(skb2);
out:
out:
	nf_ct_expect_put(exp);
	/* this avoids a loop in nfnetlink. */
	return err;
	return err == -EAGAIN ? -ENOBUFS : err;
}
}


static int
static int