Skip to content

Commit

Permalink
[NETNS][IPV6] flowlabels - make proc per namespace
Browse files Browse the repository at this point in the history
Make /proc/net/ip6_flowlabel show only flow labels belonging to the
current network namespace.

Signed-off-by: Benjamin Thery <benjamin.thery@bull.net>
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Benjamin Thery authored and David S. Miller committed Mar 26, 2008
1 parent 60e8fbc commit 5983a3d
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions net/ipv6/ip6_flowlabel.c
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,7 @@ int ipv6_flowlabel_opt(struct sock *sk, char __user *optval, int optlen)
#ifdef CONFIG_PROC_FS

struct ip6fl_iter_state {
struct seq_net_private p;
int bucket;
};

Expand All @@ -620,25 +621,34 @@ static struct ip6_flowlabel *ip6fl_get_first(struct seq_file *seq)
{
struct ip6_flowlabel *fl = NULL;
struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
struct net *net = seq_file_net(seq);

for (state->bucket = 0; state->bucket <= FL_HASH_MASK; ++state->bucket) {
if (fl_ht[state->bucket]) {
fl = fl_ht[state->bucket];
fl = fl_ht[state->bucket];

while (fl && fl->fl_net != net)
fl = fl->next;
if (fl)
break;
}
}
return fl;
}

static struct ip6_flowlabel *ip6fl_get_next(struct seq_file *seq, struct ip6_flowlabel *fl)
{
struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
struct net *net = seq_file_net(seq);

fl = fl->next;
try_again:
while (fl && fl->fl_net != net)
fl = fl->next;

while (!fl) {
if (++state->bucket <= FL_HASH_MASK)
if (++state->bucket <= FL_HASH_MASK) {
fl = fl_ht[state->bucket];
else
goto try_again;
} else
break;
}
return fl;
Expand Down Expand Up @@ -708,21 +718,22 @@ static const struct seq_operations ip6fl_seq_ops = {

static int ip6fl_seq_open(struct inode *inode, struct file *file)
{
return seq_open_private(file, &ip6fl_seq_ops,
sizeof(struct ip6fl_iter_state));
return seq_open_net(inode, file, &ip6fl_seq_ops,
sizeof(struct ip6fl_iter_state));
}

static const struct file_operations ip6fl_seq_fops = {
.owner = THIS_MODULE,
.open = ip6fl_seq_open,
.read = seq_read,
.llseek = seq_lseek,
.release = seq_release_private,
.release = seq_release_net,
};

static int ip6_flowlabel_proc_init(struct net *net)
{
if (!proc_net_fops_create(net, "ip6_flowlabel", S_IRUGO, &ip6fl_seq_fops))
if (!proc_net_fops_create(net, "ip6_flowlabel",
S_IRUGO, &ip6fl_seq_fops))
return -ENOMEM;
return 0;
}
Expand All @@ -745,25 +756,21 @@ static inline void ip6_flowlabel_proc_fini(struct net *net)
static inline void ip6_flowlabel_net_exit(struct net *net)
{
ip6_fl_purge(net);
ip6_flowlabel_proc_fini(net);
}

static struct pernet_operations ip6_flowlabel_net_ops = {
.init = ip6_flowlabel_proc_init,
.exit = ip6_flowlabel_net_exit,
};

int ip6_flowlabel_init(void)
{
int err;

err = register_pernet_subsys(&ip6_flowlabel_net_ops);
if (err)
return err;
return ip6_flowlabel_proc_init(&init_net);
return register_pernet_subsys(&ip6_flowlabel_net_ops);
}

void ip6_flowlabel_cleanup(void)
{
del_timer(&ip6_fl_gc_timer);
unregister_pernet_subsys(&ip6_flowlabel_net_ops);
ip6_flowlabel_proc_fini(&init_net);
}

0 comments on commit 5983a3d

Please sign in to comment.