Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 196069
b: refs/heads/master
c: 417daa1
h: refs/heads/master
i:
  196067: d39c5e7
v: v3
  • Loading branch information
Eric W. Biederman authored and Greg Kroah-Hartman committed May 21, 2010
1 parent c6abd08 commit 158ae68
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5f71a29629b4717445f8b7f5fb8f50c2d262b68e
refs/heads/master: 417daa1e8f893fbac88fd395340ba7779fd3926c
19 changes: 17 additions & 2 deletions trunk/lib/kobject_uevent.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <linux/kobject.h>
#include <linux/module.h>
#include <linux/slab.h>

#include <linux/user_namespace.h>
#include <linux/socket.h>
#include <linux/skbuff.h>
#include <linux/netlink.h>
Expand Down Expand Up @@ -99,6 +99,21 @@ static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data)
return 0;
}

static int kobj_usermode_filter(struct kobject *kobj)
{
const struct kobj_ns_type_operations *ops;

ops = kobj_ns_ops(kobj);
if (ops) {
const void *init_ns, *ns;
ns = kobj->ktype->namespace(kobj);
init_ns = ops->initial_ns();
return ns != init_ns;
}

return 0;
}

/**
* kobject_uevent_env - send an uevent with environmental data
*
Expand Down Expand Up @@ -274,7 +289,7 @@ int kobject_uevent_env(struct kobject *kobj, enum kobject_action action,
#endif

/* call uevent_helper, usually only enabled during early boot */
if (uevent_helper[0]) {
if (uevent_helper[0] && !kobj_usermode_filter(kobj)) {
char *argv [3];

argv [0] = uevent_helper;
Expand Down

0 comments on commit 158ae68

Please sign in to comment.