X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setns.c;h=36aa360bbb803efb6010559cfe710043684f5d06;hb=2adecab2c9595529b4748c50f78f02a09c8264e8;hp=7d82d53cec46bc163b7c6ac9b6e25a19a4295abf;hpb=9aeaf209864065305bbd6edb584b0c9735df8126;p=lxc-userspace.git diff --git a/setns.c b/setns.c index 7d82d53..36aa360 100644 --- a/setns.c +++ b/setns.c @@ -1,8 +1,27 @@ #include #include #include -#include +#include #include +#include + +static PyObject * +proc_mount(PyObject *self, PyObject *args) +{ + int sts; + sts = mount("none","/proc","proc",0,NULL); + + return Py_BuildValue("i", sts); +} + +static PyObject * +proc_umount(PyObject *self, PyObject *args) +{ + int sts; + sts = umount("/proc"); + + return Py_BuildValue("i", sts); +} static PyObject * chfscontext(PyObject *self, PyObject *args) @@ -15,39 +34,20 @@ chfscontext(PyObject *self, PyObject *args) int fd = open(filepath, O_RDONLY); if (fd < 0) { - //printf("Could not open ns file\n"); - sts = -1; + sts = -errno; goto out; } - if (setns(fd, 666)) { - sts = -1; + if (setns(fd, 0)) { + sts = -errno; } close(fd); + sts = 0; out: return Py_BuildValue("i", sts); } -static PyObject * -proc_mount(PyObject *self, PyObject *args) -{ - int sts; - sts = mount("none","/proc","proc",0,NULL); - - return Py_BuildValue("i", sts); -} - -static PyObject * -proc_umount(PyObject *self, PyObject *args) -{ - int sts; - sts = umount("/proc"); - - return Py_BuildValue("i", sts); - -} - static PyObject * chcontext(PyObject *self, PyObject *args) { @@ -59,15 +59,15 @@ chcontext(PyObject *self, PyObject *args) int fd = open(filepath, O_RDONLY); if (fd < 0) { -// printf("Could not open ns file\n"); - sts = -1; + sts = -errno; goto out; } if (setns(fd, 0)) { - sts = -1; + sts = -errno; } close(fd); + sts = 0; out: return Py_BuildValue("i", sts);