[NETFILTER]: ip_tables: fix module refcount leaks in compat error paths
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
1192e403e9
commit
bec71b1627
@@ -1529,7 +1529,7 @@ check_compat_entry_size_and_hooks(struct ipt_entry *e,
|
|||||||
ret = IPT_MATCH_ITERATE(e, compat_check_calc_match, name, &e->ip,
|
ret = IPT_MATCH_ITERATE(e, compat_check_calc_match, name, &e->ip,
|
||||||
e->comefrom, &off, &j);
|
e->comefrom, &off, &j);
|
||||||
if (ret != 0)
|
if (ret != 0)
|
||||||
goto out;
|
goto cleanup_matches;
|
||||||
|
|
||||||
t = ipt_get_target(e);
|
t = ipt_get_target(e);
|
||||||
target = try_then_request_module(xt_find_target(AF_INET,
|
target = try_then_request_module(xt_find_target(AF_INET,
|
||||||
@@ -1539,7 +1539,7 @@ check_compat_entry_size_and_hooks(struct ipt_entry *e,
|
|||||||
if (IS_ERR(target) || !target) {
|
if (IS_ERR(target) || !target) {
|
||||||
duprintf("check_entry: `%s' not found\n", t->u.user.name);
|
duprintf("check_entry: `%s' not found\n", t->u.user.name);
|
||||||
ret = target ? PTR_ERR(target) : -ENOENT;
|
ret = target ? PTR_ERR(target) : -ENOENT;
|
||||||
goto out;
|
goto cleanup_matches;
|
||||||
}
|
}
|
||||||
t->u.kernel.target = target;
|
t->u.kernel.target = target;
|
||||||
|
|
||||||
@@ -1566,14 +1566,17 @@ check_compat_entry_size_and_hooks(struct ipt_entry *e,
|
|||||||
|
|
||||||
(*i)++;
|
(*i)++;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out:
|
out:
|
||||||
|
module_put(t->u.kernel.target->me);
|
||||||
|
cleanup_matches:
|
||||||
IPT_MATCH_ITERATE(e, cleanup_match, &j);
|
IPT_MATCH_ITERATE(e, cleanup_match, &j);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int compat_copy_match_from_user(struct ipt_entry_match *m,
|
static inline int compat_copy_match_from_user(struct ipt_entry_match *m,
|
||||||
void **dstptr, compat_uint_t *size, const char *name,
|
void **dstptr, compat_uint_t *size, const char *name,
|
||||||
const struct ipt_ip *ip, unsigned int hookmask)
|
const struct ipt_ip *ip, unsigned int hookmask, int *i)
|
||||||
{
|
{
|
||||||
struct ipt_entry_match *dm;
|
struct ipt_entry_match *dm;
|
||||||
struct ipt_match *match;
|
struct ipt_match *match;
|
||||||
@@ -1590,16 +1593,22 @@ static inline int compat_copy_match_from_user(struct ipt_entry_match *m,
|
|||||||
name, hookmask, ip->proto,
|
name, hookmask, ip->proto,
|
||||||
ip->invflags & IPT_INV_PROTO);
|
ip->invflags & IPT_INV_PROTO);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
goto err;
|
||||||
|
|
||||||
if (m->u.kernel.match->checkentry
|
if (m->u.kernel.match->checkentry
|
||||||
&& !m->u.kernel.match->checkentry(name, ip, match, dm->data,
|
&& !m->u.kernel.match->checkentry(name, ip, match, dm->data,
|
||||||
hookmask)) {
|
hookmask)) {
|
||||||
duprintf("ip_tables: check failed for `%s'.\n",
|
duprintf("ip_tables: check failed for `%s'.\n",
|
||||||
m->u.kernel.match->name);
|
m->u.kernel.match->name);
|
||||||
return -EINVAL;
|
ret = -EINVAL;
|
||||||
|
goto err;
|
||||||
}
|
}
|
||||||
|
(*i)++;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
err:
|
||||||
|
module_put(m->u.kernel.match->me);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int compat_copy_entry_from_user(struct ipt_entry *e, void **dstptr,
|
static int compat_copy_entry_from_user(struct ipt_entry *e, void **dstptr,
|
||||||
@@ -1610,18 +1619,19 @@ static int compat_copy_entry_from_user(struct ipt_entry *e, void **dstptr,
|
|||||||
struct ipt_target *target;
|
struct ipt_target *target;
|
||||||
struct ipt_entry *de;
|
struct ipt_entry *de;
|
||||||
unsigned int origsize;
|
unsigned int origsize;
|
||||||
int ret, h;
|
int ret, h, j;
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
origsize = *size;
|
origsize = *size;
|
||||||
de = (struct ipt_entry *)*dstptr;
|
de = (struct ipt_entry *)*dstptr;
|
||||||
memcpy(de, e, sizeof(struct ipt_entry));
|
memcpy(de, e, sizeof(struct ipt_entry));
|
||||||
|
|
||||||
|
j = 0;
|
||||||
*dstptr += sizeof(struct compat_ipt_entry);
|
*dstptr += sizeof(struct compat_ipt_entry);
|
||||||
ret = IPT_MATCH_ITERATE(e, compat_copy_match_from_user, dstptr, size,
|
ret = IPT_MATCH_ITERATE(e, compat_copy_match_from_user, dstptr, size,
|
||||||
name, &de->ip, de->comefrom);
|
name, &de->ip, de->comefrom, &j);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out;
|
goto cleanup_matches;
|
||||||
de->target_offset = e->target_offset - (origsize - *size);
|
de->target_offset = e->target_offset - (origsize - *size);
|
||||||
t = ipt_get_target(e);
|
t = ipt_get_target(e);
|
||||||
target = t->u.kernel.target;
|
target = t->u.kernel.target;
|
||||||
@@ -1644,21 +1654,26 @@ static int compat_copy_entry_from_user(struct ipt_entry *e, void **dstptr,
|
|||||||
name, e->comefrom, e->ip.proto,
|
name, e->comefrom, e->ip.proto,
|
||||||
e->ip.invflags & IPT_INV_PROTO);
|
e->ip.invflags & IPT_INV_PROTO);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out;
|
goto err;
|
||||||
|
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
if (t->u.kernel.target == &ipt_standard_target) {
|
if (t->u.kernel.target == &ipt_standard_target) {
|
||||||
if (!standard_check(t, *size))
|
if (!standard_check(t, *size))
|
||||||
goto out;
|
goto err;
|
||||||
} else if (t->u.kernel.target->checkentry
|
} else if (t->u.kernel.target->checkentry
|
||||||
&& !t->u.kernel.target->checkentry(name, de, target,
|
&& !t->u.kernel.target->checkentry(name, de, target,
|
||||||
t->data, de->comefrom)) {
|
t->data, de->comefrom)) {
|
||||||
duprintf("ip_tables: compat: check failed for `%s'.\n",
|
duprintf("ip_tables: compat: check failed for `%s'.\n",
|
||||||
t->u.kernel.target->name);
|
t->u.kernel.target->name);
|
||||||
goto out;
|
goto err;
|
||||||
}
|
}
|
||||||
ret = 0;
|
ret = 0;
|
||||||
out:
|
return ret;
|
||||||
|
|
||||||
|
err:
|
||||||
|
module_put(t->u.kernel.target->me);
|
||||||
|
cleanup_matches:
|
||||||
|
IPT_MATCH_ITERATE(e, cleanup_match, &j);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user