美文网首页
APP冷启动加载进程线程内存分配流程代码

APP冷启动加载进程线程内存分配流程代码

作者: teddy8ear | 来源:发表于2019-07-26 11:39 被阅读0次

    int __mac_execve(proc_t p, struct __mac_execve_args *uap, int32_t *retval)

    {

        // 字段设置

        ...

        int is_64 = IS_64BIT_PROCESS(p);

        struct vfs_context context;

        struct uthread  *uthread; // 线程

        task_t new_task = NULL;  // Mach Task

        ...

       

        context.vc_thread = current_thread();

        context.vc_ucred = kauth_cred_proc_ref(p);

       

        // 分配大块内存,不用堆栈是因为 Mach-O 结构很大。

        MALLOC(bufp, char *, (sizeof(*imgp) + sizeof(*vap) + sizeof(*origvap)), M_TEMP, M_WAITOK | M_ZERO);

        imgp = (struct image_params *) bufp;

       

        // 初始化 imgp 结构里的公共数据

        ...

       

        uthread = get_bsdthread_info(current_thread());

        if (uthread->uu_flag & UT_VFORK) {

            imgp->ip_flags |= IMGPF_VFORK_EXEC;

            in_vfexec = TRUE;

        } else {

            // 程序如果是启动态,就需要 fork 新进程

            imgp->ip_flags |= IMGPF_EXEC;

            // fork 进程

            imgp->ip_new_thread = fork_create_child(current_task(),

                        NULL, p, FALSE, p->p_flag & P_LP64, TRUE);

            // 异常处理

            ...

            new_task = get_threadtask(imgp->ip_new_thread);

            context.vc_thread = imgp->ip_new_thread;

        }

       

        // 加载解析 Mach-O

        error = exec_activate_image(imgp);

       

        if (imgp->ip_new_thread != NULL) {

            new_task = get_threadtask(imgp->ip_new_thread);

        }

        if (!error && !in_vfexec) {

            p = proc_exec_switch_task(p, current_task(), new_task, imgp->ip_new_thread);

       

            should_release_proc_ref = TRUE;

        }

        kauth_cred_unref(&context.vc_ucred);

       

        if (!error) {

            task_bank_init(get_threadtask(imgp->ip_new_thread));

            proc_transend(p, 0);

            thread_affinity_exec(current_thread());

            // 继承进程处理

            if (!in_vfexec) {

                proc_inherit_task_role(get_threadtask(imgp->ip_new_thread), current_task());

            }

            // 设置进程的主线程

            thread_t main_thread = imgp->ip_new_thread;

            task_set_main_thread_qos(new_task, main_thread);

        }

        ...

    }

    相关文章

      网友评论

          本文标题:APP冷启动加载进程线程内存分配流程代码

          本文链接:https://www.haomeiwen.com/subject/cperrctx.html