X-Git-Url: http://git.onelab.eu/?p=lxc-userspace.git;a=blobdiff_plain;f=setns.c;h=c40d52bb8b90be9c8a279edc4893311b229a8751;hp=323825a8d3237ba96a0cf19f92a7ca2bf334545c;hb=5a3481ee8610f14bd8cf0fd241d068b6c65ee45b;hpb=8f0e621ac168f3374ee3956426a840caa79d36d6 diff --git a/setns.c b/setns.c index 323825a..c40d52b 100644 --- a/setns.c +++ b/setns.c @@ -2,6 +2,7 @@ #include #include #include +#include static PyObject * chfscontext(PyObject *self, PyObject *args) @@ -14,7 +15,7 @@ chfscontext(PyObject *self, PyObject *args) int fd = open(filepath, O_RDONLY); if (fd < 0) { - printf("Could not open ns file\n"); + //printf("Could not open ns file\n"); sts = -1; goto out; } @@ -27,6 +28,16 @@ chfscontext(PyObject *self, PyObject *args) 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) { @@ -38,7 +49,7 @@ chcontext(PyObject *self, PyObject *args) int fd = open(filepath, O_RDONLY); if (fd < 0) { - printf("Could not open ns file\n"); +// printf("Could not open ns file\n"); sts = -1; goto out; } @@ -54,6 +65,7 @@ out: static PyMethodDef SetnsMethods[] = { + {"proc_mount", proc_mount, METH_VARARGS, "Mount a volume via the mount system call."}, {"chcontext", chcontext, METH_VARARGS, "Switch into an lxc container."}, {"chfscontext", chfscontext, METH_VARARGS, "Switch into an lxc container."}, {NULL, NULL, 0, NULL}