X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setns.c;h=7d82d53cec46bc163b7c6ac9b6e25a19a4295abf;hb=9aeaf209864065305bbd6edb584b0c9735df8126;hp=776804d358a57c5ec4fcd9f1e608ff27f8261997;hpb=6b7a68f13c328f74592f5397e362ff6cabe4f209;p=lxc-userspace.git diff --git a/setns.c b/setns.c index 776804d..7d82d53 100644 --- a/setns.c +++ b/setns.c @@ -2,6 +2,7 @@ #include #include #include +#include static PyObject * chfscontext(PyObject *self, PyObject *args) @@ -27,6 +28,26 @@ 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 * +proc_umount(PyObject *self, PyObject *args) +{ + int sts; + sts = umount("/proc"); + + return Py_BuildValue("i", sts); + +} + static PyObject * chcontext(PyObject *self, PyObject *args) { @@ -54,6 +75,8 @@ 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}