Skip to content

Commit

Permalink
[NET]: Cleanup the error path in sk_attach_filter
Browse files Browse the repository at this point in the history
The sk_filter_uncharge is called for error handling and
for releasing the former filter, but this will have to
be done in a bit different manner, so cleanup the error
path a bit.

Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Pavel Emelyanov authored and David S. Miller committed Oct 18, 2007
1 parent 309dd5f commit d3904b7
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions net/core/filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ int sk_chk_filter(struct sock_filter *filter, int flen)
*/
int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk)
{
struct sk_filter *fp;
struct sk_filter *fp, *old_fp;
unsigned int fsize = sizeof(struct sock_filter) * fprog->len;
int err;

Expand All @@ -418,19 +418,18 @@ int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk)
fp->len = fprog->len;

err = sk_chk_filter(fp->insns, fp->len);
if (!err) {
struct sk_filter *old_fp;

rcu_read_lock_bh();
old_fp = rcu_dereference(sk->sk_filter);
rcu_assign_pointer(sk->sk_filter, fp);
rcu_read_unlock_bh();
fp = old_fp;
if (err) {
sk_filter_uncharge(sk, fp);
return err;
}

if (fp)
sk_filter_uncharge(sk, fp);
return err;
rcu_read_lock_bh();
old_fp = rcu_dereference(sk->sk_filter);
rcu_assign_pointer(sk->sk_filter, fp);
rcu_read_unlock_bh();

sk_filter_uncharge(sk, old_fp);
return 0;
}

int sk_detach_filter(struct sock *sk)
Expand Down

0 comments on commit d3904b7

Please sign in to comment.