博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
doker 1.12-runc源码逻辑跳转流程分析
阅读量:6074 次
发布时间:2019-06-20

本文共 2882 字,大约阅读时间需要 9 分钟。

入口1–>runc处理(2)中处理-->至libcontainer处理(3)

第一步runc代码处理

checkpoint 

 

checkpointCommand(main.go) —> checkpointCommand(checkpoint.go)

container

 

createCommand(main.go)—>createCommand(create.go)—>startContainer(untils_linux.go)—>run(untils_linux.go)

deleteCommand(main.go)—>deleteCommand(delete.go)—>destroy(untils_linux.go)

eventsCommand(main.go)—>eventsCommand(events.go)

execCommand(main.go)—>execCommand(exec.go)—>execProcess(exec.go)->run(untils_linux.go)

initCommand(main.go)—>initCommand(main_unix.go)

killCommand(main.go)—>killCommand(kill.go)

listCommand(main.go)—>getContainers(list.go)

pauseCommand(main.go) —>pauseCommand(pause.go)

psCommand(main.go)—>psCommand(ps.go)

restoreCommand(main.go)—>restoreCommand(restore.go)—>restoreContainer(restore.go)

resumeCommand(main.go)—>resumeCommand(pause.go)

runCommand(main.go)—>runCommand(run.go)—>startContainer(untils_linux.go)

specCommand(main.go)—>specCommand(spec.go) end

startCommand(main.go)—>startCommand(start.go)

stateCommand(main.go)—>stateCommand(state.go)

updateCommand(main.go)—>updateCommand(update.go)

第二步从runc代码处理至libcontainer处理

checkpoint

 

checkpointCommand(checkpoint.go) —>Checkpoint(libcontainer/container_linux.go)

container

run(untils_linux.go)—>Run(libcontainer/container_linux.go) 

destroy(untils_linux.go)—>Destroy(libcontainer/container_linux.go) 

eventsCommand(events.go)—>Status(libcontainer/container_linux.go)

execProcess(exec.go)—>Status\Stopped\State(libcontainer/container_linux.go)  || run(untils_linux.go)—>Start\Run\Destroy(libcontainer/container_linux.go)

 initCommand(main_unix.go)—>StartInitialization(libcontainer/factory_linux.go)

killCommand(kill.go)—>Signal(libcontainer/container_linux.go)

getContainers(list.go)—>Status\State\Stopped(libcontainer/container_linux.go)

pauseCommand(pause.go)—>Pause(libcontainer/container_linux.go)

psCommand(ps.go)—>exec.Command("ps", psArgs...).Output()

restoreContainer(restore.go)—>Restore(libcontainer/container_linux.go)

resumeCommand(pause.go)—>Resume(libcontainer/container_linux.go)

startContainer(untils_linux.go)—>Run(libcontainer/factory.go)

startCommand(start.go)—>Exec(libcontainer/container_linux.go)

stateCommand(state.go)—>State(libcontainer/container_linux.go)

updateCommand(update.go)—>Set(libcontainer/container_linux.go) 

runC源码的核心部分——Create Command & Run Command 进行源码分析。

说明点:

  • runC create command 和 run command的流程入口统一从/runc/utils_linux.go#334 main.startContainer方法,通过create flag进行区分。

  • 业务逻辑中,主要有两个step构成:

    • firstly create container filesystem and construct a linuxcontainer object by creatContainer function.

    • secondly start process in container by runner.run function.

  • 主要的逻辑在process的启动过程,注意以下几点:

    • 对于namespace的隔离,主要通过bootstrapData封装好clone flags。

    • 由sendconfig将bootstrapData封装的config传给容器起的init process。

    • 调用系统setns进行namespace和process 的associate。

    • cgroup的管理由cgroups.Manager interface进行操作,具体由各个cgroup subsystem各自实现该interface。

    • oom_score_adj and rlimits等都在这里完成设置。

转载地址:http://jetgx.baihongyu.com/

你可能感兴趣的文章
iOS 数组升序排列方法
查看>>
批流统一计算引擎的动力源泉—Shuffle机制的重构与优化
查看>>
给我十分钟!带你Flutter从入门到上天!!!
查看>>
AI居然也会作弊?CycleGAN神经网络的训练中出现新行为
查看>>
前端日刊君来也
查看>>
千呼万唤始出来!地平线即将发布第一代人工智能“中国芯”
查看>>
GMQ钱包为用户提供安全可靠、便捷高效的数字资产管理工具
查看>>
整合spring cloud云架构 --spring cloud分布式系统中实现分布式锁
查看>>
Java面试题-基础篇二
查看>>
成为一名Java架构师的必修课
查看>>
Two Sum
查看>>
开源大数据周刊-第58期
查看>>
POJO、PO、DO、VO、DTO等浅析
查看>>
学习JavaScript很吃力?开发五年经验带你轻松上路!
查看>>
准备把这里当作自己发出声音的地方
查看>>
微信小程序云开发实现一个社区 Demo(补充)
查看>>
Python自动抢红包,超详细教程,再也不会错过微信红包了!
查看>>
java高并发程序设计(二)多线程基础
查看>>
理解浏览器缓存以及304状态码
查看>>
react native之android多包共存解决方案
查看>>