3. 线程间同步

3.1. mutex

多个线程同时访问共享数据时可能会冲突,这跟前面讲信号时所说的可重入性是同样的问题。比如两个线程都要把某个全局变量增加1,这个操作在某平台需要三条指令完成:

  1. 从内存读变量值到寄存器

  2. 寄存器的值加1

  3. 将寄存器的值写回内存

假设两个线程在多处理器平台上同时执行这三条指令,则可能导致下图所示的结果,最后变量只加了一次而非两次。

图 35.1. 并行访问冲突

并行访问冲突

思考一下,如果这两个线程在单处理器平台上执行,能够避免这样的问题吗?

我们通过一个简单的程序观察这一现象。上图所描述的现象从理论上是存在这种可能的,但实际运行程序时很难观察到,为了使现象更容易观察到,我们把上述三条指令做的事情用更多条指令来做:

  1. val = counter;
  2. printf("%x: %d\n", (unsigned int)pthread_self(), val + 1);
  3. counter = val + 1;

我们在“读取变量的值”和“把变量的新值保存回去”这两步操作之间插入一个printf调用,它会执行write系统调用进内核,为内核调度别的线程执行提供了一个很好的时机。我们在一个循环中重复上述操作几千次,就会观察到访问冲突的现象。

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <pthread.h>
  4.  
  5. #define NLOOP 5000
  6.  
  7. int counter; /* incremented by threads */
  8.  
  9. void *doit(void *);
  10.  
  11. int main(int argc, char **argv)
  12. {
  13. pthread_t tidA, tidB;
  14.  
  15. pthread_create(&tidA, NULL, &doit, NULL);
  16. pthread_create(&tidB, NULL, &doit, NULL);
  17.  
  18. /* wait for both threads to terminate */
  19. pthread_join(tidA, NULL);
  20. pthread_join(tidB, NULL);
  21.  
  22. return 0;
  23. }
  24.  
  25. void *doit(void *vptr)
  26. {
  27. int i, val;
  28.  
  29. /*
  30. * Each thread fetches, prints, and increments the counter NLOOP times.
  31. * The value of the counter should increase monotonically.
  32. */
  33.  
  34. for (i = 0; i < NLOOP; i++) {
  35. val = counter;
  36. printf("%x: %d\n", (unsigned int)pthread_self(), val + 1);
  37. counter = val + 1;
  38. }
  39.  
  40. return NULL;
  41. }

我们创建两个线程,各自把counter增加5000次,正常情况下最后counter应该等于10000,但事实上每次运行该程序的结果都不一样,有时候数到5000多,有时候数到6000多。

  1. $ ./a.out
  2. b76acb90: 1
  3. b76acb90: 2
  4. b76acb90: 3
  5. b76acb90: 4
  6. b76acb90: 5
  7. b7eadb90: 1
  8. b7eadb90: 2
  9. b7eadb90: 3
  10. b7eadb90: 4
  11. b7eadb90: 5
  12. b76acb90: 6
  13. b76acb90: 7
  14. b7eadb90: 6
  15. b76acb90: 8
  16. ...

对于多线程的程序,访问冲突的问题是很普遍的,解决的办法是引入互斥锁(Mutex,Mutual Exclusive Lock),获得锁的线程可以完成“读-修改-写”的操作,然后释放锁给其它线程,没有获得锁的线程只能等待而不能访问共享数据,这样“读-修改-写”三步操作组成一个原子操作,要么都执行,要么都不执行,不会执行到中间被打断,也不会在其它处理器上并行做这个操作。

Mutex用pthread_mutex_t类型的变量表示,可以这样初始化和销毁:

  1. #include <pthread.h>
  2.  
  3. int pthread_mutex_destroy(pthread_mutex_t *mutex);
  4. int pthread_mutex_init(pthread_mutex_t *restrict mutex,
  5. const pthread_mutexattr_t *restrict attr);
  6. pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;

返回值:成功返回0,失败返回错误号。

pthread_mutex_init函数对Mutex做初始化,参数attr设定Mutex的属性,如果attrNULL则表示缺省属性,本章不详细介绍Mutex属性,感兴趣的读者可以参考[APUE2e]。用pthread_mutex_init函数初始化的Mutex可以用pthread_mutex_destroy销毁。如果Mutex变量是静态分配的(全局变量或static变量),也可以用宏定义PTHREAD_MUTEX_INITIALIZER来初始化,相当于用pthread_mutex_init初始化并且attr参数为NULL。Mutex的加锁和解锁操作可以用下列函数:

  1. #include <pthread.h>
  2.  
  3. int pthread_mutex_lock(pthread_mutex_t *mutex);
  4. int pthread_mutex_trylock(pthread_mutex_t *mutex);
  5. int pthread_mutex_unlock(pthread_mutex_t *mutex);

返回值:成功返回0,失败返回错误号。

一个线程可以调用pthread_mutex_lock获得Mutex,如果这时另一个线程已经调用pthread_mutex_lock获得了该Mutex,则当前线程需要挂起等待,直到另一个线程调用pthread_mutex_unlock释放Mutex,当前线程被唤醒,才能获得该Mutex并继续执行。

如果一个线程既想获得锁,又不想挂起等待,可以调用pthread_mutex_trylock,如果Mutex已经被另一个线程获得,这个函数会失败返回EBUSY,而不会使线程挂起等待。

现在我们用Mutex解决先前的问题:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <pthread.h>
  4.  
  5.  
  6. #define NLOOP 5000
  7.  
  8. int counter; /* incremented by threads */
  9. pthread_mutex_t counter_mutex = PTHREAD_MUTEX_INITIALIZER;
  10.  
  11. void *doit(void *);
  12.  
  13. int main(int argc, char **argv)
  14. {
  15. pthread_t tidA, tidB;
  16.  
  17. pthread_create(&tidA, NULL, doit, NULL);
  18. pthread_create(&tidB, NULL, doit, NULL);
  19.  
  20. /* wait for both threads to terminate */
  21. pthread_join(tidA, NULL);
  22. pthread_join(tidB, NULL);
  23.  
  24. return 0;
  25. }
  26.  
  27. void *doit(void *vptr)
  28. {
  29. int i, val;
  30.  
  31. /*
  32. * Each thread fetches, prints, and increments the counter NLOOP times.
  33. * The value of the counter should increase monotonically.
  34. */
  35.  
  36. for (i = 0; i < NLOOP; i++) {
  37. pthread_mutex_lock(&counter_mutex);
  38.  
  39. val = counter;
  40. printf("%x: %d\n", (unsigned int)pthread_self(), val + 1);
  41. counter = val + 1;
  42.  
  43. pthread_mutex_unlock(&counter_mutex);
  44. }
  45.  
  46. return NULL;
  47. }

这样运行结果就正常了,每次运行都能数到10000。

看到这里,读者一定会好奇:Mutex的两个基本操作lock和unlock是如何实现的呢?假设Mutex变量的值为1表示互斥锁空闲,这时某个进程调用lock可以获得锁,而Mutex的值为0表示互斥锁已经被某个线程获得,其它线程再调用lock只能挂起等待。那么lock和unlock的伪代码如下:

  1. lock:
  2. if(mutex > 0){
  3. mutex = 0;
  4. return 0;
  5. } else
  6. 挂起等待;
  7. goto lock;
  8.  
  9. unlock:
  10. mutex = 1;
  11. 唤醒等待Mutex的线程;
  12. return 0;

unlock操作中唤醒等待线程的步骤可以有不同的实现,可以只唤醒一个等待线程,也可以唤醒所有等待该Mutex的线程,然后让被唤醒的这些线程去竞争获得这个Mutex,竞争失败的线程继续挂起等待。

细心的读者应该已经看出问题了:对Mutex变量的读取、判断和修改不是原子操作。如果两个线程同时调用lock,这时Mutex是1,两个线程都判断mutex>0成立,然后其中一个线程置mutex=0,而另一个线程并不知道这一情况,也置mutex=0,于是两个线程都以为自己获得了锁。

为了实现互斥锁操作,大多数体系结构都提供了swap或exchange指令,该指令的作用是把寄存器和内存单元的数据相交换,由于只有一条指令,保证了原子性,即使是多处理器平台,访问内存的总线周期也有先后,一个处理器上的交换指令执行时另一个处理器的交换指令只能等待总线周期。现在我们把lock和unlock的伪代码改一下(以x86的xchg指令为例):

  1. lock:
  2. movb $0, %al
  3. xchgb %al, mutex
  4. if(al寄存器的内容 > 0){
  5. return 0;
  6. } else
  7. 挂起等待;
  8. goto lock;
  9.  
  10. unlock:
  11. movb $1, mutex
  12. 唤醒等待Mutex的线程;
  13. return 0;

unlock中的释放锁操作同样只用一条指令实现,以保证它的原子性。

也许还有读者好奇,“挂起等待”和“唤醒等待线程”的操作如何实现?每个Mutex有一个等待队列,一个线程要在Mutex上挂起等待,首先在把自己加入等待队列中,然后置线程状态为睡眠,然后调用调度器函数切换到别的线程。一个线程要唤醒等待队列中的其它线程,只需从等待队列中取出一项,把它的状态从睡眠改为就绪,加入就绪队列,那么下次调度器函数执行时就有可能切换到被唤醒的线程。

一般情况下,如果同一个线程先后两次调用lock,在第二次调用时,由于锁已经被占用,该线程会挂起等待别的线程释放锁,然而锁正是被自己占用着的,该线程又被挂起而没有机会释放锁,因此就永远处于挂起等待状态了,这叫做死锁(Deadlock)。另一种典型的死锁情形是这样:线程A获得了锁1,线程B获得了锁2,这时线程A调用lock试图获得锁2,结果是需要挂起等待线程B释放锁2,而这时线程B也调用lock试图获得锁1,结果是需要挂起等待线程A释放锁1,于是线程A和B都永远处于挂起状态了。不难想象,如果涉及到更多的线程和更多的锁,有没有可能死锁的问题将会变得复杂和难以判断。

写程序时应该尽量避免同时获得多个锁,如果一定有必要这么做,则有一个原则:如果所有线程在需要多个锁时都按相同的先后顺序(常见的是按Mutex变量的地址顺序)获得锁,则不会出现死锁。比如一个程序中用到锁1、锁2、锁3,它们所对应的Mutex变量的地址是锁1<锁2<锁3,那么所有线程在需要同时获得2个或3个锁时都应该按锁1、锁2、锁3的顺序获得。如果要为所有的锁确定一个先后顺序比较困难,则应该尽量使用pthread_mutex_trylock调用代替pthread_mutex_lock调用,以免死锁。

3.2. Condition Variable

线程间的同步还有这样一种情况:线程A需要等某个条件成立才能继续往下执行,现在这个条件不成立,线程A就阻塞等待,而线程B在执行过程中使这个条件成立了,就唤醒线程A继续执行。在pthread库中通过条件变量(Condition Variable)来阻塞等待一个条件,或者唤醒等待这个条件的线程。Condition Variable用pthread_cond_t类型的变量表示,可以这样初始化和销毁:

  1. #include <pthread.h>
  2.  
  3. int pthread_cond_destroy(pthread_cond_t *cond);
  4. int pthread_cond_init(pthread_cond_t *restrict cond,
  5. const pthread_condattr_t *restrict attr);
  6. pthread_cond_t cond = PTHREAD_COND_INITIALIZER;

返回值:成功返回0,失败返回错误号。

和Mutex的初始化和销毁类似,pthread_cond_init函数初始化一个Condition Variable,attr参数为NULL则表示缺省属性,pthread_cond_destroy函数销毁一个Condition Variable。如果Condition Variable是静态分配的,也可以用宏定义PTHEAD_COND_INITIALIZER初始化,相当于用pthread_cond_init函数初始化并且attr参数为NULL。Condition Variable的操作可以用下列函数:

  1. #include <pthread.h>
  2.  
  3. int pthread_cond_timedwait(pthread_cond_t *restrict cond,
  4. pthread_mutex_t *restrict mutex,
  5. const struct timespec *restrict abstime);
  6. int pthread_cond_wait(pthread_cond_t *restrict cond,
  7. pthread_mutex_t *restrict mutex);
  8. int pthread_cond_broadcast(pthread_cond_t *cond);
  9. int pthread_cond_signal(pthread_cond_t *cond);

返回值:成功返回0,失败返回错误号。

可见,一个Condition Variable总是和一个Mutex搭配使用的。一个线程可以调用pthread_cond_wait在一个Condition Variable上阻塞等待,这个函数做以下三步操作:

  1. 释放Mutex

  2. 阻塞等待

  3. 当被唤醒时,重新获得Mutex并返回

pthread_cond_timedwait函数还有一个额外的参数可以设定等待超时,如果到达了abstime所指定的时刻仍然没有别的线程来唤醒当前线程,就返回ETIMEDOUT。一个线程可以调用pthread_cond_signal唤醒在某个Condition Variable上等待的另一个线程,也可以调用pthread_cond_broadcast唤醒在这个Condition Variable上等待的所有线程。

下面的程序演示了一个生产者-消费者的例子,生产者生产一个结构体串在链表的表头上,消费者从表头取走结构体。

  1. #include <stdlib.h>
  2. #include <pthread.h>
  3. #include <stdio.h>
  4.  
  5. struct msg {
  6. struct msg *next;
  7. int num;
  8. };
  9.  
  10. struct msg *head;
  11. pthread_cond_t has_product = PTHREAD_COND_INITIALIZER;
  12. pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
  13.  
  14. void *consumer(void *p)
  15. {
  16. struct msg *mp;
  17.  
  18. for (;;) {
  19. pthread_mutex_lock(&lock);
  20. while (head == NULL)
  21. pthread_cond_wait(&has_product, &lock);
  22. mp = head;
  23. head = mp->next;
  24. pthread_mutex_unlock(&lock);
  25. printf("Consume %d\n", mp->num);
  26. free(mp);
  27. sleep(rand() % 5);
  28. }
  29. }
  30.  
  31. void *producer(void *p)
  32. {
  33. struct msg *mp;
  34. for (;;) {
  35. mp = malloc(sizeof(struct msg));
  36. mp->num = rand() % 1000 + 1;
  37. printf("Produce %d\n", mp->num);
  38. pthread_mutex_lock(&lock);
  39. mp->next = head;
  40. head = mp;
  41. pthread_mutex_unlock(&lock);
  42. pthread_cond_signal(&has_product);
  43. sleep(rand() % 5);
  44. }
  45. }
  46.  
  47. int main(int argc, char *argv[])
  48. {
  49. pthread_t pid, cid;
  50.  
  51. srand(time(NULL));
  52. pthread_create(&pid, NULL, producer, NULL);
  53. pthread_create(&cid, NULL, consumer, NULL);
  54. pthread_join(pid, NULL);
  55. pthread_join(cid, NULL);
  56. return 0;
  57. }

执行结果如下:

  1. $ ./a.out
  2. Produce 744
  3. Consume 744
  4. Produce 567
  5. Produce 881
  6. Consume 881
  7. Produce 911
  8. Consume 911
  9. Consume 567
  10. Produce 698
  11. Consume 698

习题

1、在本节的例子中,生产者和消费者访问链表的顺序是LIFO的,请修改程序,把访问顺序改成FIFO。

3.3. Semaphore

Mutex变量是非0即1的,可看作一种资源的可用数量,初始化时Mutex是1,表示有一个可用资源,加锁时获得该资源,将Mutex减到0,表示不再有可用资源,解锁时释放该资源,将Mutex重新加到1,表示又有了一个可用资源。

信号量(Semaphore)和Mutex类似,表示可用资源的数量,和Mutex不同的是这个数量可以大于1。

本节介绍的是POSIX semaphore库函数,详见sem_overview(7),这种信号量不仅可用于同一进程的线程间同步,也可用于不同进程间的同步。

  1. #include <semaphore.h>
  2.  
  3. int sem_init(sem_t *sem, int pshared, unsigned int value);
  4. int sem_wait(sem_t *sem);
  5. int sem_trywait(sem_t *sem);
  6. int sem_post(sem_t * sem);
  7. int sem_destroy(sem_t * sem);

semaphore变量的类型为sem_t,sem_init()初始化一个semaphore变量,value参数表示可用资源的数量,pshared参数为0表示信号量用于同一进程的线程间同步,本节只介绍这种情况。在用完semaphore变量之后应该调用sem_destroy()释放与semaphore相关的资源。

调用sem_wait()可以获得资源,使semaphore的值减1,如果调用sem_wait()时semaphore的值已经是0,则挂起等待。如果不希望挂起等待,可以调用sem_trywait()。调用sem_post()可以释放资源,使semaphore的值加1,同时唤醒挂起等待的线程。

上一节生产者-消费者的例子是基于链表的,其空间可以动态分配,现在基于固定大小的环形队列重写这个程序:

  1. #include <stdlib.h>
  2. #include <pthread.h>
  3. #include <stdio.h>
  4. #include <semaphore.h>
  5.  
  6. #define NUM 5
  7. int queue[NUM];
  8. sem_t blank_number, product_number;
  9.  
  10. void *producer(void *arg)
  11. {
  12. int p = 0;
  13. while (1) {
  14. sem_wait(&blank_number);
  15. queue[p] = rand() % 1000 + 1;
  16. printf("Produce %d\n", queue[p]);
  17. sem_post(&product_number);
  18. p = (p+1)%NUM;
  19. sleep(rand()%5);
  20. }
  21. }
  22.  
  23. void *consumer(void *arg)
  24. {
  25. int c = 0;
  26. while (1) {
  27. sem_wait(&product_number);
  28. printf("Consume %d\n", queue[c]);
  29. queue[c] = 0;
  30. sem_post(&blank_number);
  31. c = (c+1)%NUM;
  32. sleep(rand()%5);
  33. }
  34. }
  35.  
  36. int main(int argc, char *argv[])
  37. {
  38. pthread_t pid, cid;
  39.  
  40. sem_init(&blank_number, 0, NUM);
  41. sem_init(&product_number, 0, 0);
  42. pthread_create(&pid, NULL, producer, NULL);
  43. pthread_create(&cid, NULL, consumer, NULL);
  44. pthread_join(pid, NULL);
  45. pthread_join(cid, NULL);
  46. sem_destroy(&blank_number);
  47. sem_destroy(&product_number);
  48. return 0;
  49. }

习题

1、本节和上一节的例子给出一个重要的提示:用Condition Variable可以实现Semaphore。请用Condition Variable实现Semaphore,然后用自己实现的Semaphore重写本节的程序。

3.4. 其它线程间同步机制

如果共享数据是只读的,那么各线程读到的数据应该总是一致的,不会出现访问冲突。只要有一个线程可以改写数据,就必须考虑线程间同步的问题。由此引出了读者写者锁(Reader-Writer Lock)的概念,Reader之间并不互斥,可以同时读共享数据,而Writer是独占的(exclusive),在Writer修改数据时其它Reader或Writer不能访问数据,可见Reader-Writer Lock比Mutex具有更好的并发性。

用挂起等待的方式解决访问冲突不见得是最好的办法,因为这样毕竟会影响系统的并发性,在某些情况下解决访问冲突的问题可以尽量避免挂起某个线程,例如Linux内核的Seqlock、RCU(read-copy-update)等机制。

关于这些同步机制的细节,有兴趣的读者可以参考[APUE2e][ULK]