Skip to content

Commit 0642840

Browse files
zx2c4davem330
authored andcommitted
af_netlink: ensure that NLMSG_DONE never fails in dumps
The way people generally use netlink_dump is that they fill in the skb as much as possible, breaking when nla_put returns an error. Then, they get called again and start filling out the next skb, and again, and so forth. The mechanism at work here is the ability for the iterative dumping function to detect when the skb is filled up and not fill it past the brim, waiting for a fresh skb for the rest of the data. However, if the attributes are small and nicely packed, it is possible that a dump callback function successfully fills in attributes until the skb is of size 4080 (libmnl's default page-sized receive buffer size). The dump function completes, satisfied, and then, if it happens to be that this is actually the last skb, and no further ones are to be sent, then netlink_dump will add on the NLMSG_DONE part: nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI); It is very important that netlink_dump does this, of course. However, in this example, that call to nlmsg_put_answer will fail, because the previous filling by the dump function did not leave it enough room. And how could it possibly have done so? All of the nla_put variety of functions simply check to see if the skb has enough tailroom, independent of the context it is in. In order to keep the important assumptions of all netlink dump users, it is therefore important to give them an skb that has this end part of the tail already reserved, so that the call to nlmsg_put_answer does not fail. Otherwise, library authors are forced to find some bizarre sized receive buffer that has a large modulo relative to the common sizes of messages received, which is ugly and buggy. This patch thus saves the NLMSG_DONE for an additional message, for the case that things are dangerously close to the brim. This requires keeping track of the errno from ->dump() across calls. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 907a442 commit 0642840

2 files changed

Lines changed: 12 additions & 6 deletions

File tree

net/netlink/af_netlink.c

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2136,7 +2136,7 @@ static int netlink_dump(struct sock *sk)
21362136
struct sk_buff *skb = NULL;
21372137
struct nlmsghdr *nlh;
21382138
struct module *module;
2139-
int len, err = -ENOBUFS;
2139+
int err = -ENOBUFS;
21402140
int alloc_min_size;
21412141
int alloc_size;
21422142

@@ -2183,9 +2183,11 @@ static int netlink_dump(struct sock *sk)
21832183
skb_reserve(skb, skb_tailroom(skb) - alloc_size);
21842184
netlink_skb_set_owner_r(skb, sk);
21852185

2186-
len = cb->dump(skb, cb);
2186+
if (nlk->dump_done_errno > 0)
2187+
nlk->dump_done_errno = cb->dump(skb, cb);
21872188

2188-
if (len > 0) {
2189+
if (nlk->dump_done_errno > 0 ||
2190+
skb_tailroom(skb) < nlmsg_total_size(sizeof(nlk->dump_done_errno))) {
21892191
mutex_unlock(nlk->cb_mutex);
21902192

21912193
if (sk_filter(sk, skb))
@@ -2195,13 +2197,15 @@ static int netlink_dump(struct sock *sk)
21952197
return 0;
21962198
}
21972199

2198-
nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE, sizeof(len), NLM_F_MULTI);
2199-
if (!nlh)
2200+
nlh = nlmsg_put_answer(skb, cb, NLMSG_DONE,
2201+
sizeof(nlk->dump_done_errno), NLM_F_MULTI);
2202+
if (WARN_ON(!nlh))
22002203
goto errout_skb;
22012204

22022205
nl_dump_check_consistent(cb, nlh);
22032206

2204-
memcpy(nlmsg_data(nlh), &len, sizeof(len));
2207+
memcpy(nlmsg_data(nlh), &nlk->dump_done_errno,
2208+
sizeof(nlk->dump_done_errno));
22052209

22062210
if (sk_filter(sk, skb))
22072211
kfree_skb(skb);
@@ -2273,6 +2277,7 @@ int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
22732277
}
22742278

22752279
nlk->cb_running = true;
2280+
nlk->dump_done_errno = INT_MAX;
22762281

22772282
mutex_unlock(nlk->cb_mutex);
22782283

net/netlink/af_netlink.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ struct netlink_sock {
3434
wait_queue_head_t wait;
3535
bool bound;
3636
bool cb_running;
37+
int dump_done_errno;
3738
struct netlink_callback cb;
3839
struct mutex *cb_mutex;
3940
struct mutex cb_def_mutex;

0 commit comments

Comments
 (0)