hurlex <十二> 内核线程的创建与切换

2014-09-17 posted in [hurlex开发文档]

这章讨论内核线程的创建与切换。

首先给出这里内核线程的含义,此处的内核线程作为运行在内核态的一个逻辑执行流,拥有私有的栈空间。但是除了这个私有的栈之外,不拥有其它的资源。所有的内核线程拥有相同的页表,共享所有的全局数据。

Intel的x86CPU提供任务切换机制是使用TSS段进行切换,这么做比较繁琐且效率较低,现代的OS都不会完全采用硬件切换机制。本章所阐述的任务切换只发生在内核态,不涉及特权级的转移过程,所以可以完全由硬件实现。而且这种实现用在用户级的线程库中亦可,大家有兴趣的话可以仿照这个思路实现用户级线程库。

任务的切换必然涉及到现场的保护与恢复,所以就必然需要一个数据结构来保存这些现场信息。这个数据结构中一般也会放置任务相关的一些信息并且以链表之类的方式组织起来,这个结构被称之为PCB(ProcessControl Block)或者TCB(Task Control Block)。相关定义如下:

  1. #ifndef INCLUDE_TASK_H_
  2. #define INCLUDE_TASK_H_
  3. #include "types.h"
  4. #include "pmm.h"
  5. #include "vmm.h"
  6. // 进程状态描述
  7. typedef
  8. enum task_state {
  9. TASK_UNINIT = 0, // 未初始化
  10. TASK_SLEEPING = 1, // 睡眠中
  11. TASK_RUNNABLE = 2, // 可运行(也许正在运行)
  12. TASK_ZOMBIE = 3, // 僵尸状态
  13. } task_state;
  14. // 内核线程的上下文切换保存的信息
  15. struct context {
  16. uint32_t esp;
  17. uint32_t ebp;
  18. uint32_t ebx;
  19. uint32_t esi;
  20. uint32_t edi;
  21. uint32_t eflags;
  22. };
  23. // 进程内存地址结构
  24. struct mm_struct {
  25. pgd_t *pgd_dir; // 进程页表
  26. };
  27. // 进程控制块 PCB
  28. struct task_struct {
  29. volatile task_state state; // 进程当前状态
  30. pid_t pid; // 进程标识符
  31. void *stack; // 进程的内核栈地址
  32. struct mm_struct *mm; // 当前进程的内存地址映像
  33. struct context context; // 进程切换需要的上下文信息
  34. struct task_struct *next; // 链表指针
  35. };
  36. // 全局 pid 值
  37. extern pid_t now_pid;
  38. // 内核线程创建
  39. int32_t kernel_thread(int (*fn)(void *), void *arg);
  40. // 线程退出函数
  41. void kthread_exit();
  42. #endif // INCLUDE_TASK_H_

除了描述每一个任务信息的结构,还需要将这些结构组织起来并且引入调度机制。相关的头文件和定义如下:

  1. #ifndef INCLUDE_SCHEDULER_H_
  2. #define INCLUDE_SCHEDULER_H_
  3. #include "task.h"
  4. // 可调度进程链表
  5. extern struct task_struct *running_proc_head;
  6. // 等待进程链表
  7. extern struct task_struct *wait_proc_head;
  8. // 当前运行的任务
  9. extern struct task_struct *current;
  10. // 初始化任务调度
  11. void init_sched();
  12. // 任务调度
  13. void schedule();
  14. // 任务切换准备
  15. void change_task_to(struct task_struct *next);
  16. // 任务切换
  17. void switch_to(struct context *prev, struct context *next);
  18. #endif // INCLUDE_SCHEDULER_H_

本章中不会采用复杂的调度策略,操作系统理论中各种调度算法都不会在这里实现。本章主要目的是说明白任务切换的原理。所以任务组织的方式就是一个单向循环链表,调度程序每次选择当前任务的下一个任务运行。如果你有兴趣,可以自己实现更好的调度算法。大家完全可以在PCB里增加新的数据成员,实现带有优先级的任务切换机制。

在进行任务切换之前,内核原先的执行流还没有一个结构来保存其信息,所以需要在初始化调度之前给原始的执行流创建PCB信息。这里模仿Linux内核早期的做法,将PCB放置在线程栈的最低处。初始化的代码如下:

  1. #include "sched.h"
  2. #include "heap.h"
  3. #include "debug.h"
  4. // 可调度进程链表
  5. struct task_struct *running_proc_head = NULL;
  6. // 等待进程链表
  7. struct task_struct *wait_proc_head = NULL;
  8. // 当前运行的任务
  9. struct task_struct *current = NULL;
  10. void init_sched()
  11. {
  12. // 为当前执行流创建信息结构体 该结构位于当前执行流的栈最低端
  13. current = (struct task_struct *)(kern_stack_top - STACK_SIZE);
  14. current->state = TASK_RUNNABLE;
  15. current->pid = now_pid++;
  16. current->stack = current; // 该成员指向栈低地址
  17. current->mm = NULL; // 内核线程不需要该成员
  18. // 单向循环链表
  19. current->next = current;
  20. running_proc_head = current;
  21. }

调度函数很容易理解,每次都返回当前任务的下一个任务。代码如下: 1

  1. void schedule()
  2. {
  3. if (current) {
  4. change_task_to(current->next);
  5. }
  6. }
  7. void change_task_to(struct task_struct *next)
  8. {
  9. if (current != next) {
  10. struct task_struct *prev = current;
  11. current = next;
  12. switch_to(&(prev->context), &(current->context));
  13. }
  14. }

具体的切换操作由汇编实现,分别是保存当前任务的执行上下文和切换到下一个任务去。代码如下:

  1. ; 具体的线程切换操作,重点在于寄存器的保存与恢复
  2. switch_to:
  3. mov eax, [esp+4]
  4. mov [eax+0], esp
  5. mov [eax+4], ebp
  6. mov [eax+8], ebx
  7. mov [eax+12], esi
  8. mov [eax+16], edi
  9. pushf
  10. pop ecx
  11. mov [eax+20], ecx
  12. mov eax, [esp+8]
  13. mov esp, [eax+0]
  14. mov ebp, [eax+4]
  15. mov ebx, [eax+8]
  16. mov esi, [eax+12]
  17. mov edi, [eax+16]
  18. mov eax, [eax+20]
  19. push eax
  20. popf
  21. ret

经过上面的铺垫,重头戏就是接下来的切换了。内核线程的创建和退出函数的实现如下:

  1. #include "gdt.h"
  2. #include "pmm.h"
  3. #include "vmm.h"
  4. #include "heap.h"
  5. #include "task.h"
  6. #include "sched.h"
  7. #include "string.h"
  8. #include "debug.h"
  9. // 全局 pid 值
  10. pid_t now_pid = 0;
  11. // 内核线程创建
  12. int32_t kernel_thread(int (*fn)(void *), void *arg)
  13. {
  14. struct task_struct *new_task = (struct task_struct *)kmalloc(STACK_SIZE);
  15. assert(new_task != NULL, "kern_thread: kmalloc error");
  16. // 将栈低端结构信息初始化为 0
  17. bzero(new_task, sizeof(struct task_struct));
  18. new_task->state = TASK_RUNNABLE;
  19. new_task->stack = current;
  20. new_task->pid = now_pid++;
  21. new_task->mm = NULL;
  22. uint32_t *stack_top = (uint32_t *)((uint32_t)new_task + STACK_SIZE);
  23. *(--stack_top) = (uint32_t)arg;
  24. *(--stack_top) = (uint32_t)kthread_exit;
  25. *(--stack_top) = (uint32_t)fn;
  26. new_task->context.esp = (uint32_t)new_task + STACK_SIZE - sizeof(uint32_t) * 3;
  27. // 设置新任务的标志寄存器未屏蔽中断,很重要
  28. new_task->context.eflags = 0x200;
  29. new_task->next = running_proc_head;
  30. // 找到当前进任务队列,插入到末尾
  31. struct task_struct *tail = running_proc_head;
  32. assert(tail != NULL, "Must init sched!");
  33. while (tail->next != running_proc_head) {
  34. tail = tail->next;
  35. }
  36. tail->next = new_task;
  37. return new_task->pid;
  38. }
  39. void kthread_exit()
  40. {
  41. register uint32_t val asm ("eax");
  42. printk("Thread exited with value %d\n", val);
  43. while (1);
  44. }

内核退出函数在这里只实现了简陋的一部分,标准做法是将退出线程的PCB结构转移到不可调度链表去,等待其他线程join后再清理结构。这个留给大家自由实现吧,可以自由发散思维去做。

这里的内核线程的创建和切换过程可能有些晦涩,其切换的重点在于switch_to函数最后的ret指令。在ret指令返回之前,由于之前的执行现场已经被切换,特别是esp指针指向的栈被切换了,所以ret指令弹出的返回地址自然就变成了另一个执行流之前调用任务切换函数之前保存的返回地址了。kernel_thread函数便是通过构造出这样一个切换后可以弹出执行地址的初始栈来实现的。2

解决了所有切换的问题之后,剩下的只是时间片的问题了。可能大家已经想到了,这个调度函数最终是要由timer中断函数来执行的。我们修改timer中断的处理函数如下:

  1. void timer_callback(pt_regs *regs)
  2. {
  3. schedule();
  4. }

在定时器初始化之后,我们开启INTR中断。此时timer中断会按照之前设定好的工作频率来执行调度任务。

我们在初始化函数里测试下,代码如下:

  1. ... ...
  2. int flag = 0;
  3. int thread(void *arg)
  4. {
  5. while (1) {
  6. if (flag == 1) {
  7. printk_color(rc_black, rc_green, "B");
  8. flag = 0;
  9. }
  10. }
  11. return 0;
  12. }
  13. void kern_init()
  14. {
  15. init_debug();
  16. init_gdt();
  17. init_idt();
  18. console_clear();
  19. printk_color(rc_black, rc_green, "Hello, OS kernel!\n\n");
  20. init_timer(200);
  21. printk("kernel in memory start: 0x%08X\n", kern_start);
  22. printk("kernel in memory end: 0x%08X\n", kern_end);
  23. printk("kernel in memory used: %d KB\n\n", (kern_end - kern_start) / 1024);
  24. // show_memory_map();
  25. init_pmm();
  26. init_vmm();
  27. init_heap();
  28. printk_color(rc_black, rc_red, "\nThe Count of Physical Memory Page is: %u\n\n", phy_page_count);
  29. test_heap();
  30. init_sched();
  31. kernel_thread(thread, NULL);
  32. // 开启中断
  33. enable_intr();
  34. while (1) {
  35. if (flag == 0) {
  36. printk_color(rc_black, rc_red, "A");
  37. flag = 1;
  38. }
  39. }
  40. while (1) {
  41. asm volatile ("hlt");
  42. }
  43. }

编译运行后,我们看到了完美交替输出的A和B,如图所示:

测试内核线程切换

  • 这里的调度函数留给大家自由发挥,去自由实现各种高端的调度算法。

  • 如果理解起来依旧有困难的话不妨在纸上画画调用栈,这样比较好理解。

原文:

http://wiki.0xffffff.org/posts/hurlex-12.html