Linux(内核剖析):06—进程之线程的实现

释放双眼,带上耳机,听听看~!

一、线程在Linux中的实现

  • 线程机制是现代编程技术中常用的一种抽象概念。该机制提供了

在同一程序内共享内存地址空间运行的一组线程。这些线程还可以共享打开的文件和其他资源。
线程机制支持并发程序设计技术(concurrent programming),在多处理器系统上,它也能保证真正的并行处理(parallelism)

  • Linux实现线程的机制非常独特

  • 从内核的角度来说,

它并没有线程这个概念。Linux把所有的线程都当做进程来实现
* 内核并没有准备特别的调度算法或是定义特别的数据结构来表征线程。相反,
线程仅仅被视为一个与其他进程共享某些资源的进程
* 每个线程都拥有唯一隶属于自己的task_struct,所以在内核中,
它看起来就像是一个普通的进程(只是线程和其他一些进程共享某些资源,如地址空间)

与其他操作系统实现线程的区别

  • 上述线程机制的实现与Microsoft Windows或是Sun Solaris等操作系统的实现差异非常大。这些系统都在内核中提供了专门支持线程的机制(这些系统常常把线程称作轻量级进程 (lightweight processes))
  • “轻量级进程”这种叫法本身就概括了Linux在此处与其他系统的差异。在其他的系统中,相较于重量级的进程,线程被抽象成一种耗费较少资源,运行迅速的执行单元。而对Linu来说,它只是一种进程间共享资源的手段(

Linux的进程本身就够轻量级了

  • 举个例子来说,假如我们有一个包含四个线程的进程,在提供专门线程支持的系统中,通常会有一个包含指向四个不同线程的指针的进程描述符。该描述符负责描述像地址空间、打开的文件这样的共享资源。线程本身再去描述它独占的资源。相反,Linux仅仅创建四个进程并分配四个普通的task_sturct结构。建立这四个进程时指定他们共享某些资源,这是相当高雅的做法
  • 总结:

  • 1.Linux内核中没有线程的概念,线程在内核中也是以线程实现的

    • 2.Linux的线程相当于是一种轻量级的进程

二、线程的创建

  • 线程的创建

和普通进程的创建类似(可以参见进程创建的文章:https://blog.csdn.net/qq_41453285/article/details/103743246)

  • 只不过在调用clone()的时候需要

传递一些参数标志来指明需要共享的资源:


1
2
1clone(CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND, 0);
2
  • 传递给clone()的参数标志决定了新创建进程的行为方式和父子进程之间共亨的资源种类。 下标列举这些clone()用到的

参数标志以及它们的作用,这些是在<linux/sched.h>中定义的:

Linux(内核剖析):06---进程之线程的实现

三、内核线程

内核线程概述

  • 内核经常需要

在后台执行一些操作。这种任务可以
通过内核线程(kernel thread)完成——独立运行在内核空间的标准进程。

  • 内核线程和普通的进程间的区别在于:

  • 内核线程没有独立的地址空间(实际上指向地址空间的mm指针被设置为NULL)。它们只在内核空间运行,从来不切换到用户空间去

    • 内核进程和普通进程一样,可以被调度,也可以被抢占
  • Linux确实会把一些任务交给内核线程去做,像flush和ksofirqd这些任务就是明显的例子。 在装有Linux系统的机子上运行ps -ef命令,你可以看到内核线程,有很多!

Linux(内核剖析):06---进程之线程的实现

内核线程的创建

  • 这些线程在系统启动时由另外一些内核线程创建。实际上,内核线程也只能由其他内核线程创建。内核是通过从kthreadd内核进程中衍生出所有新的内核线程来自动处理这一点的

  • 在<linux/kthread.h>中申明有许多关于内核线程的接口

  • **kthread_create函数:**从现有内核线程中创建一个新的内核线程,参数如下

  • threadfn参数:新的任务是由kthread内核进程通过clone()系统调用而创建的。新的进程将运行threadfn函数

    • data:传递给threadfn函数的参数

    • namefmt:进程会被命名为namefmt。namefmt接受可变参数列表类似于printf()的格式化参数


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
1//Linux 2.6.22/linux/kthread.h
2/**
3 * kthread_create - create a kthread.
4 * @threadfn: the function to run until signal_pending(current).
5 * @data: data ptr for @threadfn.
6 * @namefmt: printf-style name for the thread.
7 *
8 * Description: This helper function creates and names a kernel
9 * thread.  The thread will be stopped: use wake_up_process() to start
10 * it.  See also kthread_run(), kthread_create_on_cpu().
11 *
12 * When woken, the thread will run @threadfn() with @data as its
13 * argument. @threadfn() can either call do_exit() directly if it is a
14 * standalone thread for which noone will call kthread_stop(), or
15 * return when &#x27;kthread_should_stop()&#x27; is true (which means
16 * kthread_stop() has been called).  The return value should be zero
17 * or a negative error number; it will be passed to kthread_stop().
18 *
19 * Returns a task_struct or ERR_PTR(-ENOMEM).
20 */
21struct task_struct *kthread_create(int (*threadfn)(void *data),
22                 void *data,
23                 const char namefmt[],
24                 ...)
25{
26  struct kthread_create_info create;
27
28  create.threadfn = threadfn;
29  create.data = data;
30  init_completion(&amp;create.started);
31  init_completion(&amp;create.done);
32
33  spin_lock(&amp;kthread_create_lock);
34  list_add_tail(&amp;create.list, &amp;kthread_create_list);
35  wake_up_process(kthreadd_task);
36  spin_unlock(&amp;kthread_create_lock);
37
38  wait_for_completion(&amp;create.done);
39
40  if (!IS_ERR(create.result)) {
41      va_list args;
42      va_start(args, namefmt);
43      vsnprintf(create.result-&gt;comm, sizeof(create.result-&gt;comm),
44            namefmt, args);
45      va_end(args);
46  }
47  return create.result;
48}
49
  • **kthread_run宏:**新创建的进程处于不可运行状态,如果不通过调用wake_up_process()明确地唤醒它,它不会主动运行。创建一个进程并让它运行起来,可以通过调用kthread_run来达到:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
1struct task_struct *kthread_run(int (*threadfn)(void *data),
2                  void *data,
3                  const char namefmt[],
4                  ...)
5
6//这个例程是以宏实现的,只是简单地调用了kthread_create()和wake_up_process():
7#define kthread_run(threadfn, data, namefmt,...)                 \
8({                                                               \
9    struct task_struct *k;                                      \
10                                                                 \
11    k = kthread_create(threadfn, data, namefmt, ## __VA_ARGS__); \
12    if(!IS_ERR(k))                                              \
13        wake_up_process(k);                                      \
14    k;                                                           \
15})
16
17
  • 内核线程启动后就

一直运行直到调用do_exit()退出,或者内核的其他部分调用kthread_stop()退出,传递给kthread_stop()的参数为kthread_create()的参数返回的task_truct结构的地址:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
1//Linux 2.6.22/linux/kthread.h
2/**
3 * kthread_stop - stop a thread created by kthread_create().
4 * @k: thread created by kthread_create().
5 *
6 * Sets kthread_should_stop() for @k to return true, wakes it, and
7 * waits for it to exit.  Your threadfn() must not call do_exit()
8 * itself if you use this function!  This can also be called after
9 * kthread_create() instead of calling wake_up_process(): the thread
10 * will exit without calling threadfn().
11 *
12 * Returns the result of threadfn(), or %-EINTR if wake_up_process()
13 * was never called.
14 */
15int kthread_stop(struct task_struct *k)
16{
17  int ret;
18
19  mutex_lock(&amp;kthread_stop_lock);
20
21  /* It could exit after stop_info.k set, but before wake_up_process. */
22  get_task_struct(k);
23
24  /* Must init completion *before* thread sees kthread_stop_info.k */
25  init_completion(&amp;kthread_stop_info.done);
26  smp_wmb();
27
28  /* Now set kthread_should_stop() to true, and wake it up. */
29  kthread_stop_info.k = k;
30  wake_up_process(k);
31  put_task_struct(k);
32
33  /* Once it dies, reset stop ptr, gather result and we&#x27;re done. */
34  wait_for_completion(&amp;kthread_stop_info.done);
35  kthread_stop_info.k = NULL;
36  ret = kthread_stop_info.err;
37  mutex_unlock(&amp;kthread_stop_lock);
38
39  return ret;
40}
41

给TA打赏
共{{data.count}}人
人已打赏
安全运维

WordPress网站专用docker容器环境带Waf

2020-7-18 20:04:44

安全运维

运维安全-Gitlab管理员权限安全思考

2021-9-19 9:16:14

个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索