《unix高级环境编程》进程间通信——共享内存

  共享内存是允许两个或多个进程共享同一块内存区域,并通过该区域实现数据交换的进程间通信机制。通常是由一个进程开辟一块共享内存区域,然后允许多个进程对此区域进行访问。由于不需要任何介质,而是数据由内存直接映射到进程空间,即数据不需要在客户进程和服务进程之间复制,所以共享内存是最快的 IPC 机制。共享内存必须解决多个进程之间同步访问的问题,必须控制同一时刻只允许一个进程对共享内存区域进行写入数据操作,否则会造成数据混乱。同步访问问题可以使用信号量或者记录锁进行解决。

每个共享内存都有相对应的 shmid_ds 结构,其定义如下:

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. /* 共享内存 */  
  2.   
  3. /* shmid_ds 结构 */  
  4. struct shmid_ds  
  5. {  
  6.     struct ipc_perm shm_perm;   /* operation permission struct */  
  7.     size_t          shm_segsz;  /* size of segment in bytes */  
  8.     pid_t           shm_lpid;   /* pid of last shmop() operation */  
  9.     pid_t           shm_cpid;   /* pid of creator */  
  10.     shmatt_t        shm_nattch; /* number of current attaches */  
  11.     time_t          shm_atime;  /* last-attach time */  
  12.     time_t          shm_dtime;  /* last-detach time */  
  13.     time_t          shm_ctime;  /* last-change time */  
  14. };  

共享内存创建与打开

        为了能够使用共享内存,我们要创建一个共享内存区域,并获取该共享内存的标识符,可以调用函数 shmget 实现该功能:

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. /* 
  2.  * 函数功能:创建一个新的共享内存区域或打开一个现有的共享内存区域; 
  3.  * 返回值:若成功则返回共享内存ID,若出错则返回-1; 
  4.  * 函数原型: 
  5.  */  
  6. #include <sys/shm.h>  
  7.   
  8. int shmget(key_t key, size_t size, int flag);  
  9.   
  10. /* 
  11.  * 说明: 
  12.  * key是共享内存的键值; 
  13.  * size是共享内存区域的大小; 
  14.  * flag设置共享内存的访问权限; 
  15.  * (1)当key为IPC_PRIVATE时,此时flag的取值对该函数不起作用; 
  16.  * (2)当key不为IPC_PRIVATE时,且flag设置为IPC_CREAT,则执行操作有key值决定; 
  17.  * (3)当key不为IPC_PRIVATE时,且flag同时设置为IPC_CREAT | IPC_EXCL,则只执行创建共享内存操作,此时key必须不同于内核已存在的共享内存的键值,否则出错返回; 
  18.  */  


共享内存与地址空间的连接和断开

        当一个共享内存被创建或打开之后,进程若要使用该共享内存,则必须要是该共享内存连接到它的地址空间,可以调用函数 shmat 实现该功能,若共享内存不再使用时,必须从内核系统中删除,可以调用函数 shmdt 实现:

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. /* 
  2.  * 函数功能:将共享内存连接到它的地址空间; 
  3.  * 返回值:若成功则返回指向共享内存的指针,若出错则返回-1; 
  4.  * 函数原型: 
  5.  */  
  6. #include <sys/shm.h>  
  7. void  *shmat(int shmid, void *addr, int flag);  
  8. /* 
  9.  * 说明: 
  10.  * shmid是共享内存的ID; 
  11.  * adrr和flag共同决定函数的返回: 
  12.  * (1)若addr为0,则此段连接到由内核选择的第一个可用地址上,此时flag取任何值都无效; 
  13.  * (2)若addr不为0,而flag未设置SHM_RND,则共享内存区域连接到由addr指定的地址处; 
  14.  * (3)若addr不为0,而flag设置了SHM_RND,则共享内存区域连接到由(adrr-(addr mod ulus SHMLBA))指定的地址处; 
  15.  * 其中SHM_RND表示取整,SHMLBA表示低边界地址倍数; 
  16.  * 若flag指定SHM_RDONLY,则以只读方式连接,否则以读写方式连接; 
  17.  */  
  18. /* 
  19.  * 函数功能:将共享内存与它的地址空间断开; 
  20.  * 返回值:若成功则返回0,若出错则返回-1; 
  21.  * 函数原型: 
  22.  */  
  23. #include <sys/shm.h>  
  24. int shmdt(void *addr);  

共享内存的控制操作

        对共享内存区域进行多中控制操作可以通过函数 shmctl 实现,其定义如下:

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. /* 
  2.  * 函数功能:对共享内存进行控制操作; 
  3.  * 返回值:若成功则返回0,若出错则返回-1; 
  4.  * 函数原型: 
  5.  */  
  6. #include <sys/shm.h>  
  7. int shmctl(int shmid, int cmd, struct shmid_ds *buf);  

该函数提供了三个 cmd 命令:

  1. IPC_RMID:从系统中删除由 shmid 标识的共享内存区并拆除它。
  2. IPC_SET :给所指定的共享内存区设置其 shmid_ds 结构的以下三个成员:shm_perm.uid,shm_perm.gid和shm_perm.mode,他们的值来自buff参数指向的结构中的相应成员。shm_ctime的值也用当前时间替换。
  3. IPC_STAT :(通过buff参数)向调用者返回所指定共享内存区当前的 shmid_ds 结构,将其保存在buf所指向的缓冲区。

另外 Linux 提供了下列另外两种命令:

  1. SHM_LOCK:将共享内存锁定在内存中,此命令只能超级用户才可以执行。
  2. SHM_UNLOCK:解锁共享内存,此命令只能超级用户才可以执行。
测试程序:创建一个共享内存区,然后打印该共享内存区的属性;
[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include "apue.h"  
  2. #include <sys/shm.h>  
  3. #include <fcntl.h>  
  4. #include <sys/ipc.h>  
  5. #include <sys/types.h>  
  6.   
  7. #define ARRAY_SIZE 4000  
  8. #define MALLOC_SIZE 10000  
  9. #define SHM_SIZE 10000  
  10. #define SHM_MODE (SHM_R | SHM_W)  
  11. void printf_shm(struct shmid_ds *buf);  
  12. key_t MakeKey(const char *pathname);  
  13.   
  14. char array[ARRAY_SIZE];  
  15.   
  16. int main(int argc, char *argv[])  
  17. {  
  18.     if(argc != 2)  
  19.         err_quit("usage: a.out <pathname>");  
  20.   
  21.     int shmid;  
  22.     char *ptr;  
  23.     void *shmptr;  
  24.     struct shmid_ds shmids;  
  25.     key_t key;  
  26.     key = MakeKey(argv[1]);  
  27.   
  28.     printf("array[] from %x to %x\n", &array[0],&array[ARRAY_SIZE]);  
  29.     printf("stack around %x\n", &shmid);  
  30.   
  31.     if((ptr = (char *)malloc(MALLOC_SIZE)) == NULL)  
  32.         err_sys("malloc error");  
  33.     printf("malloced from %x to %x\n", ptr, ptr+MALLOC_SIZE);  
  34.   
  35.     if((shmid = shmget(key, SHM_SIZE, SHM_MODE | IPC_CREAT)) < 0)  
  36.         err_quit("shmget error");  
  37.   
  38.     if((shmptr = shmat(shmid, 0, 0)) == (void *)-1)  
  39.         err_sys("shmat error");  
  40.     if(shmctl(shmid, IPC_STAT, &shmids) == -1)  
  41.         err_sys("shmctl error");  
  42.   
  43.     printf_shm(&shmids);  
  44.   
  45.     if(shmctl(shmid, IPC_RMID, 0) < 0)  
  46.         err_sys("shmctl error");  
  47.   
  48.     exit(0);  
  49. }  
  50. key_t MakeKey(const char *pathname)  
  51. {  
  52.     int fd;  
  53.     if((fd = open(pathname, O_CREAT, 0666)) < 0)  
  54.         err_quit("open error");  
  55.     close(fd);  
  56.   
  57.     return ftok(pathname, 0);  
  58. }  
  59. void printf_shm(struct shmid_ds *buf)  
  60. {  
  61.     printf("Struct shmid_ds:\n");  
  62.     printf("\tshm_nattch = %d\n", buf->shm_nattch);  
  63.     printf("\tshm_segsz = %d\n", buf->shm_segsz);  
  64.     printf("\tStruct ipc_perm:\n");  
  65.     printf("\t\tuid = %d\n", buf->shm_perm.uid);  
  66.     printf("\t\tgid = %d\n", buf->shm_perm.gid);  
  67.     printf("\t\tcuid = %d\n", buf->shm_perm.cuid);  
  68.     printf("\t\tcgid = %d\n", buf->shm_perm.cgid);  
  69.   
  70.     return;  
  71. }  
输出结果:
[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. ./shm Shm  
  2. array[] from 804b0a0 to 804c040  
  3. stack around bfa5a47c  
  4. malloced from 8b6e008 to 8b70718  
  5. Struct shmid_ds:  
  6.     shm_nattch = 1  
  7.     shm_segsz = 10000  
  8.     Struct ipc_perm:  
  9.         uid = 1000  
  10.         gid = 1000  
  11.         cuid = 1000  
  12.         cgid = 1000  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值