1、runv/start.go

func startContainer(context *cli.Context, container, address string, config *spec.Spec)

该函数所做的工作很简单,首先构建CreateContainerRequest的grpc请求,如下所示:

r  := &types.CreateContainerRequest {

  Id:       container,
  BundlePath: context.String("bundle"),
  Stdin:     fmt.Sprintf("/proc/%d/fd/0", pid),
  Stdout:    fmt.Sprintf("/proc/%d/fd/1", pid),
  Stderr:    fmt.Sprintf("/proc/%d/fd/2", pid),
}

  

再通过调用c := getClient(address)获取grpc client,再通过调用c.CreateContainer(netcontext.Background(), r)将创建容器的请求发送给grpc server。

2、runv/containerd/api/grpc/server/server.go

func (s *apiServer) CreateContainer(ctx context.Context, r *types.CreateContainerRequest) (*types.CreateContainerResponse, error)

(1)、调用ocfData, err := ioutil.ReadFile(filepath.Join(r.BundlePath, "config.json"))和json.Unmarshal(ocfData, &spec)加载spec

(2)、调用c, p, err := s.sv.CreateContainer(r.Id, r.BundlePath, r.Stdin, r.Stdout, r.Stderr, &spec)

(3)、最后调用apiP := supervisorProcess2ApiProcess(p), apiC := supervisorContainer2ApiContainer(c), addApiProcess2ApiContainer(apiC, apiP)完成api的转换,并且将进程apiP添加到apiC中

3、runv/supervisor/supervisor.go

func (sv *Supervisor) CreateContainer(container, bundlePath, stdin, stdout, stderr string, spec *specs.Spec) (*Container, *Process, error)

(1)、调用hp, err := sv.getHyperPod(container, spec),获取一个hyper pod 实例

(2)、c, err := hp.createContainer(container, bundlePath, stdin, stdout, stderr, spec) 创建一个hyper container实例

(3)、sv.Containers[container] = c, 再 return c, c.Processes["init"], nil

HyperPod的结构如下所示:

type HyperPod struct {

  Containers  map[string]*Container
  Processes  map[string]*Process
  userPod    *pod.UserPod
  podStatus  *hypervisor.PodStatus
  vm     *hypervisor.Vm
  sv      *supervisor
  nslistener  *nsListener
}

  

4、runv/supervisor/supervisor.go

// find shared pod or create a new one

func (sv *Supervisor) getHyperPod(container string, spec *specs.Spec) (hp *HyperPod, err error)

(1)、当spec.Linux.Namespaces不为空时,先进行相关的处理,这里暂时不讨论。

(2)、当hp为nil时,先调用hp, err = createHyperPod(sv.Factory, spec, sv.defaultCpus, sv.defaultMemory),再调用hp.sv = sv将hypervisor和supervisor串联起来

(3)、return hp, nil

5、runv/supervisor/hyperpod.go

func createHyperPod(f factory, spec *specs.Spec, defaultCpus int, defaultMemory int) (*HyperPod, error)

(1)、先获取一个podId,再调用userPod := pod.ConvertOCF2PureUserPod(spec)(并没有container的信息)和podStatus := hypervisor.NewPod(podId, userPod, nil)

(2)、获取cpu, mem, kernel, initrd的信息,再启动虚拟机,虽然根据获得的kernel和initrd情况略有不同,最终调用都是调用hypervisor.GetVm("", boot, bool, bool),启动虚拟机

(3)、调用Response := vm.StartPod(podStatus, userPod, nil, nil)

(4)、填充HyperPod, hp := &HyperPod {

              userPod:  userPod,

              podStatus: podStatus,

              vm:    vm,

              Containers: make(map[string]*Container),

              Processes: make(map[string]*Process)

            }

(5)、调用hp.startNsListener(), 返回 return hp, nil

6、runv/supervisor/hyperpod.go

func (hp *HyperPod) createContainer(container, bundlePath, stdin, stdout, stderr string, spec *specs.Spec) (*Container, error)

(1)、inerProcessId := container + "-init",并且填充数据结构获得 c := &Container{...},p := &Process{...}

(2)、调用p.setupIO()

(3)、对各个数据结构进行关联,c.Processes["init"] = p, c.ownerPod.Processes[inerProcessId] = p, c.ownerPod.Containers[container] = c

(4)、c.run(p),return c, nil

7、runv/supervisor/container.go

func (c *Container) run(p *Process)

(1)、该函数仅仅启动一个goroutine,首先调用c.start(p)启动容器

(2)、创建e := Event{ID: c.Id, Type: EventContainerStart, Timestamp: time.Now(),},调用c.ownerPod.sv.Events.notifySubscribers(e)将event发出

(3)、调用c.wait(p)等待容器退出

(4)、创建e := Event{ID: c.Id, EventExit, Timestamp: time.Now(), PID: p.Id, Status: -1},若正常退出,则将Status设置为容器的退出码

8、runv/supervisor/container.go

func (c *Container) start(p *Process) error

(1)、创建目录/run/runv/container-id,再在其中生成文件state.go,将state := &specs.State{Version: c.Spec.Version, ID: c.Id, Pid: c.ownerPod.getNsPid(), BundlePath: c.BundlePath}写入

(2)、先调用u := pod.ConvertOCF2UserContainer(c.Spec)将spec转换为UserPod,镜像目录为u.Image,镜像的挂载目录为vmRootfs := filepath.Join(hypervisor.BaseDir, c.ownerPod.vm.Id, hypervisor.ShareDirTag, c.Id, "rootfs")(和hyperd兼容),再调用utils.Mount(u.Image, vmRootfs, c.Spec.Root.Readonly)将镜像挂载到vmRootfs。如果c.Spec.Mounts不为空的话,调用mountToRootfs(&m, vmRootfs, ""),挂载相应的目录或文件

(3)、调用info := &hypervisor.ContainerInfo{Id: c.Id, Rootfs: "rootfs", Image: pod.userVolume{Source: c.Id}, Fstype: "dir", Cmd: u.Command, Envs: envs,}

(4)、调用c.ownerPod.vm.Attach(p.stdio, c.Id, nil)连接vm, 再调用execPrestartHooks(c.Spec, state),再调用c.ownerPod.initPodNetwork(c)初始化网络

(5)、调用c.ownerPod.podStatus.AddContainer(c.Id, c.ownerPod.podStatus.Id, "", []string{}, types.S_POD_CREATED) ---> 仅仅只是将ContainerStatus添加到podStatus.Containers中

(6)、return c.ownerPod.vm.NewContainer(u, info) ---> 真正在虚拟机中完成container的创建

runv start container 流程分析的更多相关文章

  1. runc start container流程分析

    1.runc/start.go Action: func(context *cli.Context) error 该函数首先调用container, err := getContainer(conte ...

  2. runc create container 流程分析

    1.// runc/create.go Action: func(context *cli.Context) error 首先调用spec, err := setupSpec(context)加载配置 ...

  3. runv containerd 流程分析

    当runv需要启动一个容器的时候,首先需要启动containrd,作为该容器的daemon.因此,启动containerd的相关代码也是从runv/start.go开始.最终,启动containerd ...

  4. spark 启动job的流程分析

    从WordCount開始分析 编写一个样例程序 编写一个从HDFS中读取并计算wordcount的样例程序: packageorg.apache.spark.examples importorg.ap ...

  5. 8、Struts2 运行流程分析

    1.流程分析: 请求发送给 StrutsPrepareAndExecuteFilter StrutsPrepareAndExecuteFilter 询问 ActionMapper: 该请求是否是一个 ...

  6. freeswitch呼叫流程分析

    今天翻文档时发现之前整理的关于freeswitch呼叫相关的内容,写成博文分享出来也方便我以后查阅. 整体结构图 FreeswitchCore 模块加载过程 freeswitch主程序初始化时会从mo ...

  7. u-boot 流程分析

    u-boot 介绍: 对于计算机来说 , 从一开始上机通电是无法直接启动操作系统的 , 这中间需要一个引导过程 , 嵌入式Linux系统同样离不开引导程序 ,  这个启动程序就叫启动加载程序(Boot ...

  8. thttpd和cgilua安装与运行流程分析

    安装 参考如下博文安装thttpd软件 http://blog.csdn.net/21aspnet/article/details/7045845 http://blog.csdn.net/drago ...

  9. 【转】Hostapd工作流程分析

    [转]Hostapd工作流程分析 转自:http://blog.chinaunix.net/uid-30081165-id-5290531.html Hostapd是一个运行在用户态的守护进程,可以通 ...

随机推荐

  1. 泛函编程(14)-try to map them all

    虽然明白泛函编程风格中最重要的就是对一个管子里的元素进行操作.这个管子就是这么一个东西:F[A],我们说F是一个针对元素A的高阶类型,其实F就是一个装载A类型元素的管子,A类型是相对低阶,或者说是基础 ...

  2. String系列

    String 简介 String 是java中的字符串,它继承于CharSequence.String类所包含的API接口非常多.为了便于今后的使用,我对String的API进行了分类,并都给出的演示 ...

  3. EffectiveJava——接口优于抽象类

    Java程序设计语言提供两种机制,可以用来定义允许多个实现的类型:接口和抽象方法,这两者直接醉为明显的区别在于,抽象类允许某些方法的实现,但接口不允许,一个更为重要的区别在于,为了实现由抽象类定义的类 ...

  4. Python正则表达式模块(re模块)

    Python是我接触到的第一门编程语言,虽然它足够简单,但是对于当时刚刚接触编程语言的我来说还是有些难度的,于是只是了解了一些Python的基本语法,稍微深入一点的地方都没怎么了解.不过,到现在为止, ...

  5. PhpStorm的open in browser怎么修改端口和相对路径

    昨天下班后,在电脑安装phpstorm.xampp安装正常,但是在phpstorm上直接打开网站文件一直报错,一直报错502.我感觉好奇快,怎么会报错呢.后面我用hbuild打开文件,在浏览器显示正常 ...

  6. redis 慢日志 slowlog

    1 slowlog是什么 redis的slowlog是redis用于记录记录慢查询执行时间的日志系统.由于slowlog只保存在内存中,因此slowlog的效率很高,完全不用担心会影响到redis的性 ...

  7. js得到屏幕宽高、页面宽高 (window.screen.availHeight)等--笔记

    window.screen.availWidth 返回当前屏幕宽度(空白空间) window.screen.availHeight 返回当前屏幕高度(空白空间) window.screen.width ...

  8. C++模板元编程

    ABC

  9. Android SDK Manager无法下载的问题

    Android SDK Manager 你无法更新了. 现在这里有一个解决方案,如下. 1.启动 Android SDK Manager ,打开主界面,依次选择「Tools」.「Options...」 ...

  10. Android项目实战(三):实现第一次进入软件的引导页

    最近做的APP接近尾声了,就是些优化工作了, 我们都知道现在的APP都会有引导页,就是安装之后第一次打开才显示的引导页面(介绍这个软件的几张可以切换的图) 自己做了一下,结合之前学过的 慕课网_Vie ...