进程创建时命名空间处理

 

/*  * called from clone.  This now handles copy for nsproxy and all  * namespaces therein.  */ int copy_namespaces(unsigned long flags, struct task_struct *tsk) {  struct nsproxy *old_ns = tsk->nsproxy;  struct user_namespace *user_ns = task_cred_xxx(tsk, user_ns);  struct nsproxy *new_ns;

 if (likely(!(flags & (CLONE_NEWNS | CLONE_NEWUTS | CLONE_NEWIPC |          CLONE_NEWPID | CLONE_NEWNET |          CLONE_NEWCGROUP)))) {   get_nsproxy(old_ns);   return 0;  }

 if (!ns_capable(user_ns, CAP_SYS_ADMIN))   return -EPERM;

 /*   * CLONE_NEWIPC must detach from the undolist: after switching   * to a new ipc namespace, the semaphore arrays from the old   * namespace are unreachable.  In clone parlance, CLONE_SYSVSEM   * means share undolist with parent, so we must forbid using   * it along with CLONE_NEWIPC.   */  if ((flags & (CLONE_NEWIPC | CLONE_SYSVSEM)) ==   (CLONE_NEWIPC | CLONE_SYSVSEM))   return -EINVAL;

 new_ns = create_new_namespaces(flags, tsk, user_ns, tsk->fs);  if (IS_ERR(new_ns))   return  PTR_ERR(new_ns);

 tsk->nsproxy = new_ns;  return 0; }

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值