Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6: (1815 commits) mac80211: fix reorder buffer release iwmc3200wifi: Enable wimax core through module parameter iwmc3200wifi: Add wifi-wimax coexistence mode as a module parameter iwmc3200wifi: Coex table command does not expect a response iwmc3200wifi: Update wiwi priority table iwlwifi: driver version track kernel version iwlwifi: indicate uCode type when fail dump error/event log iwl3945: remove duplicated event logging code b43: fix two warnings ipw2100: fix rebooting hang with driver loaded cfg80211: indent regulatory messages with spaces iwmc3200wifi: fix NULL pointer dereference in pmkid update mac80211: Fix TX status reporting for injected data frames ath9k: enable 2GHz band only if the device supports it airo: Fix integer overflow warning rt2x00: Fix padding bug on L2PAD devices. WE: Fix set events not propagated b43legacy: avoid PPC fault during resume b43: avoid PPC fault during resume tcp: fix a timewait refcnt race ... Fix up conflicts due to sysctl cleanups (dead sysctl_check code and CTL_UNNUMBERED removed) in kernel/sysctl_check.c net/ipv4/sysctl_net_ipv4.c net/ipv6/addrconf.c net/sctp/sysctl.c
This commit is contained in:
@@ -199,6 +199,40 @@ static struct xfrm_algo_desc aalg_list[] = {
|
||||
.sadb_alg_maxbits = 256
|
||||
}
|
||||
},
|
||||
{
|
||||
.name = "hmac(sha384)",
|
||||
|
||||
.uinfo = {
|
||||
.auth = {
|
||||
.icv_truncbits = 192,
|
||||
.icv_fullbits = 384,
|
||||
}
|
||||
},
|
||||
|
||||
.desc = {
|
||||
.sadb_alg_id = SADB_X_AALG_SHA2_384HMAC,
|
||||
.sadb_alg_ivlen = 0,
|
||||
.sadb_alg_minbits = 384,
|
||||
.sadb_alg_maxbits = 384
|
||||
}
|
||||
},
|
||||
{
|
||||
.name = "hmac(sha512)",
|
||||
|
||||
.uinfo = {
|
||||
.auth = {
|
||||
.icv_truncbits = 256,
|
||||
.icv_fullbits = 512,
|
||||
}
|
||||
},
|
||||
|
||||
.desc = {
|
||||
.sadb_alg_id = SADB_X_AALG_SHA2_512HMAC,
|
||||
.sadb_alg_ivlen = 0,
|
||||
.sadb_alg_minbits = 512,
|
||||
.sadb_alg_maxbits = 512
|
||||
}
|
||||
},
|
||||
{
|
||||
.name = "hmac(rmd160)",
|
||||
.compat = "rmd160",
|
||||
@@ -365,6 +399,7 @@ static struct xfrm_algo_desc ealg_list[] = {
|
||||
},
|
||||
{
|
||||
.name = "cbc(camellia)",
|
||||
.compat = "camellia",
|
||||
|
||||
.uinfo = {
|
||||
.encr = {
|
||||
@@ -689,84 +724,6 @@ int xfrm_count_enc_supported(void)
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(xfrm_count_enc_supported);
|
||||
|
||||
/* Move to common area: it is shared with AH. */
|
||||
|
||||
int skb_icv_walk(const struct sk_buff *skb, struct hash_desc *desc,
|
||||
int offset, int len, icv_update_fn_t icv_update)
|
||||
{
|
||||
int start = skb_headlen(skb);
|
||||
int i, copy = start - offset;
|
||||
struct sk_buff *frag_iter;
|
||||
struct scatterlist sg;
|
||||
int err;
|
||||
|
||||
/* Checksum header. */
|
||||
if (copy > 0) {
|
||||
if (copy > len)
|
||||
copy = len;
|
||||
|
||||
sg_init_one(&sg, skb->data + offset, copy);
|
||||
|
||||
err = icv_update(desc, &sg, copy);
|
||||
if (unlikely(err))
|
||||
return err;
|
||||
|
||||
if ((len -= copy) == 0)
|
||||
return 0;
|
||||
offset += copy;
|
||||
}
|
||||
|
||||
for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
|
||||
int end;
|
||||
|
||||
WARN_ON(start > offset + len);
|
||||
|
||||
end = start + skb_shinfo(skb)->frags[i].size;
|
||||
if ((copy = end - offset) > 0) {
|
||||
skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
|
||||
|
||||
if (copy > len)
|
||||
copy = len;
|
||||
|
||||
sg_init_table(&sg, 1);
|
||||
sg_set_page(&sg, frag->page, copy,
|
||||
frag->page_offset + offset-start);
|
||||
|
||||
err = icv_update(desc, &sg, copy);
|
||||
if (unlikely(err))
|
||||
return err;
|
||||
|
||||
if (!(len -= copy))
|
||||
return 0;
|
||||
offset += copy;
|
||||
}
|
||||
start = end;
|
||||
}
|
||||
|
||||
skb_walk_frags(skb, frag_iter) {
|
||||
int end;
|
||||
|
||||
WARN_ON(start > offset + len);
|
||||
|
||||
end = start + frag_iter->len;
|
||||
if ((copy = end - offset) > 0) {
|
||||
if (copy > len)
|
||||
copy = len;
|
||||
err = skb_icv_walk(frag_iter, desc, offset-start,
|
||||
copy, icv_update);
|
||||
if (unlikely(err))
|
||||
return err;
|
||||
if ((len -= copy) == 0)
|
||||
return 0;
|
||||
offset += copy;
|
||||
}
|
||||
start = end;
|
||||
}
|
||||
BUG_ON(len);
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(skb_icv_walk);
|
||||
|
||||
#if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
|
||||
|
||||
void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
|
||||
|
@@ -21,6 +21,9 @@
|
||||
#include <linux/cache.h>
|
||||
#include <linux/audit.h>
|
||||
#include <asm/uaccess.h>
|
||||
#include <linux/ktime.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/kernel.h>
|
||||
|
||||
#include "xfrm_hash.h"
|
||||
|
||||
@@ -352,7 +355,7 @@ static void xfrm_put_mode(struct xfrm_mode *mode)
|
||||
|
||||
static void xfrm_state_gc_destroy(struct xfrm_state *x)
|
||||
{
|
||||
del_timer_sync(&x->timer);
|
||||
tasklet_hrtimer_cancel(&x->mtimer);
|
||||
del_timer_sync(&x->rtimer);
|
||||
kfree(x->aalg);
|
||||
kfree(x->ealg);
|
||||
@@ -398,9 +401,10 @@ static inline unsigned long make_jiffies(long secs)
|
||||
return secs*HZ;
|
||||
}
|
||||
|
||||
static void xfrm_timer_handler(unsigned long data)
|
||||
static enum hrtimer_restart xfrm_timer_handler(struct hrtimer * me)
|
||||
{
|
||||
struct xfrm_state *x = (struct xfrm_state*)data;
|
||||
struct tasklet_hrtimer *thr = container_of(me, struct tasklet_hrtimer, timer);
|
||||
struct xfrm_state *x = container_of(thr, struct xfrm_state, mtimer);
|
||||
struct net *net = xs_net(x);
|
||||
unsigned long now = get_seconds();
|
||||
long next = LONG_MAX;
|
||||
@@ -451,8 +455,9 @@ static void xfrm_timer_handler(unsigned long data)
|
||||
if (warn)
|
||||
km_state_expired(x, 0, 0);
|
||||
resched:
|
||||
if (next != LONG_MAX)
|
||||
mod_timer(&x->timer, jiffies + make_jiffies(next));
|
||||
if (next != LONG_MAX){
|
||||
tasklet_hrtimer_start(&x->mtimer, ktime_set(next, 0), HRTIMER_MODE_REL);
|
||||
}
|
||||
|
||||
goto out;
|
||||
|
||||
@@ -474,6 +479,7 @@ expired:
|
||||
|
||||
out:
|
||||
spin_unlock(&x->lock);
|
||||
return HRTIMER_NORESTART;
|
||||
}
|
||||
|
||||
static void xfrm_replay_timer_handler(unsigned long data);
|
||||
@@ -492,7 +498,7 @@ struct xfrm_state *xfrm_state_alloc(struct net *net)
|
||||
INIT_HLIST_NODE(&x->bydst);
|
||||
INIT_HLIST_NODE(&x->bysrc);
|
||||
INIT_HLIST_NODE(&x->byspi);
|
||||
setup_timer(&x->timer, xfrm_timer_handler, (unsigned long)x);
|
||||
tasklet_hrtimer_init(&x->mtimer, xfrm_timer_handler, CLOCK_REALTIME, HRTIMER_MODE_ABS);
|
||||
setup_timer(&x->rtimer, xfrm_replay_timer_handler,
|
||||
(unsigned long)x);
|
||||
x->curlft.add_time = get_seconds();
|
||||
@@ -843,8 +849,7 @@ found:
|
||||
hlist_add_head(&x->byspi, net->xfrm.state_byspi+h);
|
||||
}
|
||||
x->lft.hard_add_expires_seconds = net->xfrm.sysctl_acq_expires;
|
||||
x->timer.expires = jiffies + net->xfrm.sysctl_acq_expires*HZ;
|
||||
add_timer(&x->timer);
|
||||
tasklet_hrtimer_start(&x->mtimer, ktime_set(net->xfrm.sysctl_acq_expires, 0), HRTIMER_MODE_REL);
|
||||
net->xfrm.state_num++;
|
||||
xfrm_hash_grow_check(net, x->bydst.next != NULL);
|
||||
} else {
|
||||
@@ -921,7 +926,7 @@ static void __xfrm_state_insert(struct xfrm_state *x)
|
||||
hlist_add_head(&x->byspi, net->xfrm.state_byspi+h);
|
||||
}
|
||||
|
||||
mod_timer(&x->timer, jiffies + HZ);
|
||||
tasklet_hrtimer_start(&x->mtimer, ktime_set(1, 0), HRTIMER_MODE_REL);
|
||||
if (x->replay_maxage)
|
||||
mod_timer(&x->rtimer, jiffies + x->replay_maxage);
|
||||
|
||||
@@ -1019,8 +1024,7 @@ static struct xfrm_state *__find_acq_core(struct net *net, unsigned short family
|
||||
x->props.reqid = reqid;
|
||||
x->lft.hard_add_expires_seconds = net->xfrm.sysctl_acq_expires;
|
||||
xfrm_state_hold(x);
|
||||
x->timer.expires = jiffies + net->xfrm.sysctl_acq_expires*HZ;
|
||||
add_timer(&x->timer);
|
||||
tasklet_hrtimer_start(&x->mtimer, ktime_set(net->xfrm.sysctl_acq_expires, 0), HRTIMER_MODE_REL);
|
||||
list_add(&x->km.all, &net->xfrm.state_all);
|
||||
hlist_add_head(&x->bydst, net->xfrm.state_bydst+h);
|
||||
h = xfrm_src_hash(net, daddr, saddr, family);
|
||||
@@ -1110,7 +1114,7 @@ static struct xfrm_state *xfrm_state_clone(struct xfrm_state *orig, int *errp)
|
||||
x->props.saddr = orig->props.saddr;
|
||||
|
||||
if (orig->aalg) {
|
||||
x->aalg = xfrm_algo_clone(orig->aalg);
|
||||
x->aalg = xfrm_algo_auth_clone(orig->aalg);
|
||||
if (!x->aalg)
|
||||
goto error;
|
||||
}
|
||||
@@ -1300,7 +1304,7 @@ out:
|
||||
memcpy(&x1->lft, &x->lft, sizeof(x1->lft));
|
||||
x1->km.dying = 0;
|
||||
|
||||
mod_timer(&x1->timer, jiffies + HZ);
|
||||
tasklet_hrtimer_start(&x1->mtimer, ktime_set(1, 0), HRTIMER_MODE_REL);
|
||||
if (x1->curlft.use_time)
|
||||
xfrm_state_check_expire(x1);
|
||||
|
||||
@@ -1325,7 +1329,7 @@ int xfrm_state_check_expire(struct xfrm_state *x)
|
||||
if (x->curlft.bytes >= x->lft.hard_byte_limit ||
|
||||
x->curlft.packets >= x->lft.hard_packet_limit) {
|
||||
x->km.state = XFRM_STATE_EXPIRED;
|
||||
mod_timer(&x->timer, jiffies);
|
||||
tasklet_hrtimer_start(&x->mtimer, ktime_set(0,0), HRTIMER_MODE_REL);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
@@ -62,6 +62,22 @@ static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int verify_auth_trunc(struct nlattr **attrs)
|
||||
{
|
||||
struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
|
||||
struct xfrm_algo_auth *algp;
|
||||
|
||||
if (!rt)
|
||||
return 0;
|
||||
|
||||
algp = nla_data(rt);
|
||||
if (nla_len(rt) < xfrm_alg_auth_len(algp))
|
||||
return -EINVAL;
|
||||
|
||||
algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int verify_aead(struct nlattr **attrs)
|
||||
{
|
||||
struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
|
||||
@@ -128,7 +144,8 @@ static int verify_newsa_info(struct xfrm_usersa_info *p,
|
||||
err = -EINVAL;
|
||||
switch (p->id.proto) {
|
||||
case IPPROTO_AH:
|
||||
if (!attrs[XFRMA_ALG_AUTH] ||
|
||||
if ((!attrs[XFRMA_ALG_AUTH] &&
|
||||
!attrs[XFRMA_ALG_AUTH_TRUNC]) ||
|
||||
attrs[XFRMA_ALG_AEAD] ||
|
||||
attrs[XFRMA_ALG_CRYPT] ||
|
||||
attrs[XFRMA_ALG_COMP])
|
||||
@@ -139,10 +156,12 @@ static int verify_newsa_info(struct xfrm_usersa_info *p,
|
||||
if (attrs[XFRMA_ALG_COMP])
|
||||
goto out;
|
||||
if (!attrs[XFRMA_ALG_AUTH] &&
|
||||
!attrs[XFRMA_ALG_AUTH_TRUNC] &&
|
||||
!attrs[XFRMA_ALG_CRYPT] &&
|
||||
!attrs[XFRMA_ALG_AEAD])
|
||||
goto out;
|
||||
if ((attrs[XFRMA_ALG_AUTH] ||
|
||||
attrs[XFRMA_ALG_AUTH_TRUNC] ||
|
||||
attrs[XFRMA_ALG_CRYPT]) &&
|
||||
attrs[XFRMA_ALG_AEAD])
|
||||
goto out;
|
||||
@@ -152,6 +171,7 @@ static int verify_newsa_info(struct xfrm_usersa_info *p,
|
||||
if (!attrs[XFRMA_ALG_COMP] ||
|
||||
attrs[XFRMA_ALG_AEAD] ||
|
||||
attrs[XFRMA_ALG_AUTH] ||
|
||||
attrs[XFRMA_ALG_AUTH_TRUNC] ||
|
||||
attrs[XFRMA_ALG_CRYPT])
|
||||
goto out;
|
||||
break;
|
||||
@@ -161,6 +181,7 @@ static int verify_newsa_info(struct xfrm_usersa_info *p,
|
||||
case IPPROTO_ROUTING:
|
||||
if (attrs[XFRMA_ALG_COMP] ||
|
||||
attrs[XFRMA_ALG_AUTH] ||
|
||||
attrs[XFRMA_ALG_AUTH_TRUNC] ||
|
||||
attrs[XFRMA_ALG_AEAD] ||
|
||||
attrs[XFRMA_ALG_CRYPT] ||
|
||||
attrs[XFRMA_ENCAP] ||
|
||||
@@ -176,6 +197,8 @@ static int verify_newsa_info(struct xfrm_usersa_info *p,
|
||||
|
||||
if ((err = verify_aead(attrs)))
|
||||
goto out;
|
||||
if ((err = verify_auth_trunc(attrs)))
|
||||
goto out;
|
||||
if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
|
||||
goto out;
|
||||
if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
|
||||
@@ -229,6 +252,66 @@ static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
|
||||
struct nlattr *rta)
|
||||
{
|
||||
struct xfrm_algo *ualg;
|
||||
struct xfrm_algo_auth *p;
|
||||
struct xfrm_algo_desc *algo;
|
||||
|
||||
if (!rta)
|
||||
return 0;
|
||||
|
||||
ualg = nla_data(rta);
|
||||
|
||||
algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
|
||||
if (!algo)
|
||||
return -ENOSYS;
|
||||
*props = algo->desc.sadb_alg_id;
|
||||
|
||||
p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
|
||||
if (!p)
|
||||
return -ENOMEM;
|
||||
|
||||
strcpy(p->alg_name, algo->name);
|
||||
p->alg_key_len = ualg->alg_key_len;
|
||||
p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
|
||||
memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
|
||||
|
||||
*algpp = p;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
|
||||
struct nlattr *rta)
|
||||
{
|
||||
struct xfrm_algo_auth *p, *ualg;
|
||||
struct xfrm_algo_desc *algo;
|
||||
|
||||
if (!rta)
|
||||
return 0;
|
||||
|
||||
ualg = nla_data(rta);
|
||||
|
||||
algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
|
||||
if (!algo)
|
||||
return -ENOSYS;
|
||||
if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
|
||||
return -EINVAL;
|
||||
*props = algo->desc.sadb_alg_id;
|
||||
|
||||
p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
|
||||
if (!p)
|
||||
return -ENOMEM;
|
||||
|
||||
strcpy(p->alg_name, algo->name);
|
||||
if (!p->alg_trunc_len)
|
||||
p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
|
||||
|
||||
*algpp = p;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int attach_aead(struct xfrm_algo_aead **algpp, u8 *props,
|
||||
struct nlattr *rta)
|
||||
{
|
||||
@@ -332,10 +415,14 @@ static struct xfrm_state *xfrm_state_construct(struct net *net,
|
||||
if ((err = attach_aead(&x->aead, &x->props.ealgo,
|
||||
attrs[XFRMA_ALG_AEAD])))
|
||||
goto error;
|
||||
if ((err = attach_one_algo(&x->aalg, &x->props.aalgo,
|
||||
xfrm_aalg_get_byname,
|
||||
attrs[XFRMA_ALG_AUTH])))
|
||||
if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
|
||||
attrs[XFRMA_ALG_AUTH_TRUNC])))
|
||||
goto error;
|
||||
if (!x->props.aalgo) {
|
||||
if ((err = attach_auth(&x->aalg, &x->props.aalgo,
|
||||
attrs[XFRMA_ALG_AUTH])))
|
||||
goto error;
|
||||
}
|
||||
if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
|
||||
xfrm_ealg_get_byname,
|
||||
attrs[XFRMA_ALG_CRYPT])))
|
||||
@@ -548,6 +635,24 @@ static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
|
||||
{
|
||||
struct xfrm_algo *algo;
|
||||
struct nlattr *nla;
|
||||
|
||||
nla = nla_reserve(skb, XFRMA_ALG_AUTH,
|
||||
sizeof(*algo) + (auth->alg_key_len + 7) / 8);
|
||||
if (!nla)
|
||||
return -EMSGSIZE;
|
||||
|
||||
algo = nla_data(nla);
|
||||
strcpy(algo->alg_name, auth->alg_name);
|
||||
memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
|
||||
algo->alg_key_len = auth->alg_key_len;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Don't change this without updating xfrm_sa_len! */
|
||||
static int copy_to_user_state_extra(struct xfrm_state *x,
|
||||
struct xfrm_usersa_info *p,
|
||||
@@ -563,8 +668,13 @@ static int copy_to_user_state_extra(struct xfrm_state *x,
|
||||
|
||||
if (x->aead)
|
||||
NLA_PUT(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
|
||||
if (x->aalg)
|
||||
NLA_PUT(skb, XFRMA_ALG_AUTH, xfrm_alg_len(x->aalg), x->aalg);
|
||||
if (x->aalg) {
|
||||
if (copy_to_user_auth(x->aalg, skb))
|
||||
goto nla_put_failure;
|
||||
|
||||
NLA_PUT(skb, XFRMA_ALG_AUTH_TRUNC,
|
||||
xfrm_alg_auth_len(x->aalg), x->aalg);
|
||||
}
|
||||
if (x->ealg)
|
||||
NLA_PUT(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
|
||||
if (x->calg)
|
||||
@@ -2117,8 +2227,11 @@ static inline size_t xfrm_sa_len(struct xfrm_state *x)
|
||||
size_t l = 0;
|
||||
if (x->aead)
|
||||
l += nla_total_size(aead_len(x->aead));
|
||||
if (x->aalg)
|
||||
l += nla_total_size(xfrm_alg_len(x->aalg));
|
||||
if (x->aalg) {
|
||||
l += nla_total_size(sizeof(struct xfrm_algo) +
|
||||
(x->aalg->alg_key_len + 7) / 8);
|
||||
l += nla_total_size(xfrm_alg_auth_len(x->aalg));
|
||||
}
|
||||
if (x->ealg)
|
||||
l += nla_total_size(xfrm_alg_len(x->ealg));
|
||||
if (x->calg)
|
||||
@@ -2608,22 +2721,24 @@ static int __net_init xfrm_user_net_init(struct net *net)
|
||||
xfrm_netlink_rcv, NULL, THIS_MODULE);
|
||||
if (nlsk == NULL)
|
||||
return -ENOMEM;
|
||||
net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
|
||||
rcu_assign_pointer(net->xfrm.nlsk, nlsk);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __net_exit xfrm_user_net_exit(struct net *net)
|
||||
static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
|
||||
{
|
||||
struct sock *nlsk = net->xfrm.nlsk;
|
||||
|
||||
rcu_assign_pointer(net->xfrm.nlsk, NULL);
|
||||
synchronize_rcu();
|
||||
netlink_kernel_release(nlsk);
|
||||
struct net *net;
|
||||
list_for_each_entry(net, net_exit_list, exit_list)
|
||||
rcu_assign_pointer(net->xfrm.nlsk, NULL);
|
||||
synchronize_net();
|
||||
list_for_each_entry(net, net_exit_list, exit_list)
|
||||
netlink_kernel_release(net->xfrm.nlsk_stash);
|
||||
}
|
||||
|
||||
static struct pernet_operations xfrm_user_net_ops = {
|
||||
.init = xfrm_user_net_init,
|
||||
.exit = xfrm_user_net_exit,
|
||||
.init = xfrm_user_net_init,
|
||||
.exit_batch = xfrm_user_net_exit,
|
||||
};
|
||||
|
||||
static int __init xfrm_user_init(void)
|
||||
|
Reference in New Issue
Block a user