X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setns.c;h=e562cd67f1d07e8b6f0e351997eedf4c79d431d9;hb=599fef7a8160912979226e6b2ddfdc373aad9fdf;hp=c40d52bb8b90be9c8a279edc4893311b229a8751;hpb=13a56a4ff176386a815904f98f67aa5b75ed6b87;p=lxc-userspace.git diff --git a/setns.c b/setns.c index c40d52b..e562cd6 100644 --- a/setns.c +++ b/setns.c @@ -1,9 +1,28 @@ #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,12 +34,11 @@ chfscontext(PyObject *self, PyObject *args) int fd = open(filepath, O_RDONLY); if (fd < 0) { - //printf("Could not open ns file\n"); sts = -1; goto out; } - if (setns(fd, 666)) { + if (setns(fd, 0)) { sts = -1; } close(fd); @@ -29,15 +47,6 @@ 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 * chcontext(PyObject *self, PyObject *args) { @@ -49,7 +58,6 @@ chcontext(PyObject *self, PyObject *args) int fd = open(filepath, O_RDONLY); if (fd < 0) { -// printf("Could not open ns file\n"); sts = -1; goto out; } @@ -66,6 +74,7 @@ out: static PyMethodDef SetnsMethods[] = { {"proc_mount", proc_mount, METH_VARARGS, "Mount a volume via the mount system call."}, + {"proc_umount", proc_umount, METH_VARARGS, "Umount a volume via the umount system call."}, {"chcontext", chcontext, METH_VARARGS, "Switch into an lxc container."}, {"chfscontext", chfscontext, METH_VARARGS, "Switch into an lxc container."}, {NULL, NULL, 0, NULL}