Re: [PATCH nf-next] netfilter: xtables: lightweight process control group matching
From: Daniel Borkmann <hidden>
Date: 2013-10-07 09:17:50
Also in:
cgroups, netfilter-devel
From: Daniel Borkmann <hidden>
Date: 2013-10-07 09:17:50
Also in:
cgroups, netfilter-devel
On 10/07/2013 05:07 AM, Gao feng wrote:
On 10/05/2013 02:20 AM, Daniel Borkmann wrote:quoted
+static void cgroup_attach(struct cgroup_subsys_state *css, + struct cgroup_taskset *tset) +{ + struct task_struct *p; + void *v; + + cgroup_taskset_for_each(p, css, tset) { + task_lock(p); + v = (void *)(unsigned long) task_fwid(p);Shouldn't v be css_nf_state(css)->fwid?
Nope, this is in line with net_cls and net_prio; the task has been moved there via cgroup backend already through cgroup_attach_task(), so we only need to update each of it's socket sk_cgrp_fwid parts. css is not strictly for net_filter. See also: 6a328d8c6f (cgroup: net_cls: Rework update socket logic)
quoted
+ iterate_fd(p->files, 0, cgroup_fwid_update, v); + task_unlock(p); + } +}