X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2Fplanetlab.c;h=b236b9da3b964350d2bb978c39853fa85e400d0a;hb=f19c72d19b6df6739cae1871b710c37ef9e4f067;hp=61cb31a0eb511d7ace2b6bb44c956b8147c5a1ca;hpb=8e6c22f0c546edf4731373f5806341fb404e5d7a;p=util-vserver-pl.git diff --git a/src/planetlab.c b/src/planetlab.c index 61cb31a..b236b9d 100644 --- a/src/planetlab.c +++ b/src/planetlab.c @@ -44,6 +44,8 @@ POSSIBILITY OF SUCH DAMAGE. #include #include #include +#define _GNU_SOURCE +#include #include "vserver.h" #include "planetlab.h" @@ -59,7 +61,7 @@ POSSIBILITY OF SUCH DAMAGE. #endif static int -create_context(xid_t ctx, uint64_t bcaps) +create_context(xid_t ctx, uint64_t bcaps, uint32_t unshare_flags) { struct vc_ctx_caps vc_caps; struct vc_net_flags vc_nf; @@ -96,10 +98,8 @@ process: if (vc_ctx_create(ctx, 0) == VC_NOCTX) return -1; - /* Unshare the net namespace if the slice if requested in the local slice configuration */ - unshare_mask = get_space_flag(ctx); - if (unshare_mask != 0) { - sys_unshare(unshare_mask); + if (unshare_mask != 0) { + unshare(unshare_mask); vc_set_namespace(ctx, unshare_mask); } @@ -152,11 +152,15 @@ pl_chcontext(xid_t ctx, uint64_t bcaps, const struct sliver_resources *slr) if (vc_get_cflags(ctx, &vc_flags)) { + uint32_t unshare_mask; if (errno != ESRCH) return -1; + /* Unshare the net namespace if the slice if requested in the local slice configuration */ + unshare_mask = get_space_flag(ctx); + /* context doesn't exist - create it */ - if (create_context(ctx, bcaps)) + if (create_context(ctx, bcaps, unshare_mask)) { if (errno == EEXIST) /* another process beat us in a race */ @@ -188,6 +192,14 @@ pl_chcontext(xid_t ctx, uint64_t bcaps, const struct sliver_resources *slr) migrate: if (net_migrated || !vc_net_migrate(ctx)) { + uint32_t unshare_mask; + /* Unshare the net namespace if the slice if requested in the local slice configuration */ + unshare_mask = get_space_flag(ctx); + if (unshare_mask != 0) { + vc_enter_namespace(ctx, unshare_mask); + unshare(unshare_mask); + } + if (!vc_tag_migrate(ctx) && !vc_ctx_migrate(ctx, 0)) break; /* done */ net_migrated = 1;