linux的namespace实战,我们在k8s中切换到另一个namespace

一、场景介绍

我们有时候做中间件会遇到以下场景

 这种场景适应于 Docker 以及K8s 等等场景,但是linux 内对多个进程进行了隔离,大家都是用不同的namespace,每个namespace都是弱隔离的,他隔离了不同容器的net namespace 和 mount namespace。

当我们做基础架构中间件的时候需要从 namespace 去切换到不同的namespace里,去读取他们的一些网络信息和 文件信息,这就需要我们去切换 net namespace 和 mount namespace。

二、我们该如何做

我们如果要切入不同的进程的namespace 需要 去拿到不同进程的/proc/{pid}/ns/net和 /proc/10676/ns/mnt,然后使用 setns 去切换。

切换到proc的 mount namespace

#include <fcntl.h>
#include <sched.h>
#include <unistd.h>
#include <iostream>
#include <climits>

int main(int argc, char** argv) {
    const char* ns_file = "/proc/";
    const char* ns_suffix = "/ns/mnt";

    // 拼接出 namespace 文件路径
    char ns_path[PATH_MAX];
    snprintf(ns_path, PATH_MAX, "%s%s%s", ns_file, argv[1], ns_suffix);
    std::cout << ns_path << std::endl;
    // 打开 /proc/[pid]/ns/mnt 文件
    int fd = open(ns_path, O_RDONLY);
    if (fd == -1) {
        perror("open");
        return 1;
    }

    // 设置当前进程的 mount namespace 为指定的进程的 mount namespace
    if (setns(fd, CLONE_NEW) == -1) {
        perror("setns");
        return 1;
    }
    std::system("ls /");

    close(fd);
    std::cout << "Successfully set the mount namespace of this process to the target process." << std::endl;

    return 0;
}

切换到netnamespace

#include <fcntl.h>
#include <sched.h>
#include <unistd.h>
#include <iostream>
#include <climits>

int main(int argc, char** argv) {
    const char* ns_file = "/proc/";
    const char* ns_suffix = "/ns/net";

    // 拼接出 namespace 文件路径
    char ns_path[PATH_MAX];
    snprintf(ns_path, PATH_MAX, "%s%s%s", ns_file, argv[1], ns_suffix);
    std::cout << ns_path << std::endl;
    // 打开 /proc/[pid]/ns/mnt 文件
    int fd = open(ns_path, O_RDONLY);
    if (fd == -1) {
        perror("open");
        return 1;
    }

    // 设置当前进程的 mount namespace 为指定的进程的 mount namespace
    if (setns(fd, CLONE_NEWNET) == -1) {
        perror("setns");
        return 1;
    }
    std::system("ls /");

    close(fd);
    std::cout << "Successfully set the mount namespace of this process to the target process." << std::endl;

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值