共享内存映射的进程空间shmat函数返回是什么

czq1024 2017-12-01 10:17:31
是共享内存的物理地址,还是进程的虚拟地址,如果是父子进程分别映射呢?返回地址一样吗?有点晕


看一下代码
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define BUFFER_SIZE 2048

int main()
{
pid_t pid;
int shmid;
char *shm_addr;
char flag[] = "WROTE";
char buffer[BUFFER_SIZE];

if((shmid = shmget(IPC_PRIVATE,BUFFER_SIZE,0666)) < 0)
{
perror("shmget");
exit(-1);
}
else
{
printf("Create shared-memory:%d\n",shmid);
}

system("ipcs -m");
pid = fork();
if(pid < 0)
{
perror("fork error");
exit(-1);
}
else if(pid == 0)
{
shm_addr = shmat(shmid,0,0);
if(shm_addr == (void *)-1)
{
perror("Child:shmat");
exit(-1);
}
else
{
printf("Child:Attach shared-memory:%p \n",shm_addr);
}

system("ipcs -m");

while(strncmp(shm_addr,flag,strlen(flag)))
{
printf("Child:wait for enable data...\n");
sleep(5);
}

strcpy(buffer,shm_addr + strlen(flag));
printf("Child:shared-memory:%s\n",buffer);

if((shmdt(shm_addr)) < 0)
{
perror("shmdt");
exit(-1);
}
else
{
printf("Child: Deattach shared-memory\n");
}
system("ipcs -m");

if(shmctl(shmid,IPC_RMID,NULL) == -1)
{
perror("Child:shmctl(IPC_RMID)");
exit(-1);
}
else
{
printf("Delete shmared-memory\n");
}

system("ipcs -m");
}
else
{
if((shm_addr = shmat(shmid,0,0)) == (void *)-1)
{
perror("parent:shmat");
exit(-1);
}
else
{
printf("Parent:Attach shmared-memory:%p\n",shm_addr);
}

sleep(1);
printf("\nInput some string:\n");
fgets(buffer,BUFFER_SIZE,stdin);
strncpy(shm_addr + strlen(flag),buffer,strlen(buffer));
strncpy(shm_addr,flag,strlen(flag));

if((shmdt(shm_addr)) < 0)
{
perror("Parent:shmdt");
exit(-1);
}
else
{
printf("Parent : Deattach shared-memory\n");
}

system("ipcs -m");
waitpid(pid,NULL,0);
printf("Finsihed\n");
}

return 0;
}

运行结果
Create shared-memory:196613

------ Shared Memory Segments --------
key shmid owner perms bytes nattch status
0x00000000 0 fs 700 76800 2 dest
0x00000000 32769 fs 700 1843200 2 dest
0x00000000 65538 fs 700 20196 2 dest
0x00000000 98307 fs 700 17028 2 dest
0x00000000 131076 fs 700 19800 2 dest
0x00000000 196613 fs 666 2048 0

Parent:Attach shmared-memory:0xb773d000
Child:Attach shared-memory:0xb773d000

------ Shared Memory Segments --------
key shmid owner perms bytes nattch status
0x00000000 0 fs 700 76800 2 dest
0x00000000 32769 fs 700 1843200 2 dest
0x00000000 65538 fs 700 20196 2 dest
0x00000000 98307 fs 700 17028 2 dest
0x00000000 131076 fs 700 19800 2 dest
0x00000000 196613 fs 666 2048 2

Child:wait for enable data...

Input some string:
xiaoqiang
Parent : Deattach shared-memory

------ Shared Memory Segments --------
key shmid owner perms bytes nattch status
0x00000000 0 fs 700 76800 2 dest
0x00000000 32769 fs 700 1843200 2 dest
0x00000000 65538 fs 700 20196 2 dest
0x00000000 98307 fs 700 17028 2 dest
0x00000000 131076 fs 700 19800 2 dest
0x00000000 196613 fs 666 2048 1

Child:shared-memory:xiaoqiang

Child: Deattach shared-memory

------ Shared Memory Segments --------
key shmid owner perms bytes nattch status
0x00000000 0 fs 700 76800 2 dest
0x00000000 32769 fs 700 1843200 2 dest
0x00000000 65538 fs 700 20196 2 dest
0x00000000 98307 fs 700 17028 2 dest
0x00000000 131076 fs 700 19800 2 dest
0x00000000 196613 fs 666 2048 0

Delete shmared-memory

------ Shared Memory Segments --------
key shmid owner perms bytes nattch status
0x00000000 0 fs 700 76800 2 dest
0x00000000 32769 fs 700 1843200 2 dest
0x00000000 65538 fs 700 20196 2 dest
0x00000000 98307 fs 700 17028 2 dest
0x00000000 131076 fs 700 19800 2 dest

Finsihed
...全文
707 7 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
7 条回复
切换为时间正序
请发表友善的回复…
发表回复
zhxianbin 2017-12-01
  • 打赏
  • 举报
回复
另外建议使用 POSIX 共享内存接口
zhxianbin 2017-12-01
  • 打赏
  • 举报
回复
SHMOP(2)                                          Linux Programmer's Manual                                         SHMOP(2)

NAME
       shmat, shmdt - System V shared memory operations

SYNOPSIS
       #include <sys/types.h>
       #include <sys/shm.h>

       void *shmat(int shmid, const void *shmaddr, int shmflg);

       int shmdt(const void *shmaddr);

DESCRIPTION
       shmat()  attaches the System V shared memory segment identified by shmid to the address space of the calling process.
       The attaching address is specified by shmaddr with one of the following criteria:

       If shmaddr is NULL, the system chooses a suitable (unused) address at which to attach the segment.

       If shmaddr isn't NULL and SHM_RND is specified in shmflg, the attach occurs at the address equal to  shmaddr  rounded
       down to the nearest multiple of SHMLBA.  Otherwise shmaddr must be a page-aligned address at which the attach occurs.

       If  SHM_RDONLY  is specified in shmflg, the segment is attached for reading and the process must have read permission
       for the segment.  Otherwise the segment is attached for read and write and the process must have read and write  per‐
       mission for the segment.  There is no notion of a write-only shared memory segment.

       The  (Linux-specific)  SHM_REMAP  flag  may be specified in shmflg to indicate that the mapping of the segment should
       replace any existing mapping in the range starting at shmaddr and continuing for the size of the segment.   (Normally
       an  EINVAL  error would result if a mapping already exists in this address range.)  In this case, shmaddr must not be
       NULL.

       The brk(2) value of the calling process is not altered by the attach.  The segment will automatically be detached  at
       process  exit.   The  same  segment  may  be  attached  as a read and as a read-write one, and more than once, in the
       process's address space.

       A successful shmat() call updates the members of the shmid_ds structure (see shmctl(2)) associated  with  the  shared
       memory segment as follows:

              shm_atime is set to the current time.

              shm_lpid is set to the process-ID of the calling process.

              shm_nattch is incremented by one.

       shmdt()  detaches the shared memory segment located at the address specified by shmaddr from the address space of the
       calling process.  The to-be-detached segment must be currently attached with shmaddr equal to the value  returned  by
       the attaching shmat() call.

       On a successful shmdt() call the system updates the members of the shmid_ds structure associated with the shared mem‐
       ory segment as follows:

              shm_dtime is set to the current time.

              shm_lpid is set to the process-ID of the calling process.

              shm_nattch is decremented by one.  If it becomes 0 and the segment is marked  for  deletion,  the  segment  is
              deleted.

       After a fork(2) the child inherits the attached shared memory segments.

       After an execve(2) all attached shared memory segments are detached from the process.

       Upon _exit(2) all attached shared memory segments are detached from the process.

RETURN VALUE
       On  success  shmat() returns the address of the attached shared memory segment; on error (void *) -1 is returned, and
       errno is set to indicate the cause of the error.

       On success shmdt() returns 0; on error -1 is returned, and errno is set to indicate the cause of the error.

ERRORS
       When shmat() fails, errno is set to one of the following:

       EACCES The calling process does not have the required permissions for the requested attach type, and  does  not  have
              the CAP_IPC_OWNER capability.

       EIDRM  shmid points to a removed identifier.

       EINVAL Invalid  shmid  value,  unaligned  (i.e.,  not  page-aligned and SHM_RND was not specified) or invalid shmaddr
              value, or can't attach segment at shmaddr, or SHM_REMAP was specified and shmaddr was NULL.

       ENOMEM Could not allocate memory for the descriptor or for the page tables.

       When shmdt() fails, errno is set as follows:

       EINVAL There is no shared memory segment attached at shmaddr; or, shmaddr is not aligned on a page boundary.

CONFORMING TO
       SVr4, POSIX.1-2001.

       In SVID 3 (or perhaps earlier) the type of the shmaddr argument was changed from char * into const  void *,  and  the
       returned  type  of  shmat()  from  char * into void *.  (Linux libc4 and libc5 have the char * prototypes; glibc2 has
       void *.)

NOTES
       Using shmat() with shmaddr equal to NULL is the preferred, portable way of attaching a  shared  memory  segment.   Be
       aware  that  the  shared memory segment attached in this way may be attached at different addresses in different pro‐
       cesses.  Therefore, any pointers maintained within the shared memory must be made relative (typically to the starting
       address of the segment), rather than absolute.

       On  Linux,  it  is  possible  to attach a shared memory segment even if it is already marked to be deleted.  However,
       POSIX.1-2001 does not specify this behavior and many other implementations do not support it.

       The following system parameter affects shmat():

       SHMLBA Segment low boundary address multiple.  Must be page aligned.  For the current implementation the SHMLBA value
              is PAGE_SIZE.

       The implementation places no intrinsic limit on the per-process maximum number of shared memory segments (SHMSEG).

SEE ALSO
       brk(2), mmap(2), shmctl(2), shmget(2), capabilities(7), shm_overview(7), svipc(7)

COLOPHON
       This  page  is  part  of  release 3.54 of the Linux man-pages project.  A description of the project, and information
       about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/.

Linux                                                    2013-02-12                                                 SHMOP(2)
 Manual page shmat(2) line 90/122 (END) (press h for help or q to quit)
zhxianbin 2017-12-01
  • 打赏
  • 举报
回复
映射返回地址是 可以直接使用的,虚拟地址,不同进程不一样
czq1024 2017-12-01
  • 打赏
  • 举报
回复
引用 1 楼 qq_37596845 的回复:
如果shmat函数调用成功,它返回一个指向共享内存第一个字节的指针
sorry,我还想问一下,此时返回值是是共享内存的物理地址,还是映射后的那个进程虚拟地址
qq_37596845 2017-12-01
  • 打赏
  • 举报
回复
如果shmat函数调用成功,它返回一个指向共享内存第一个字节的指针
zhxianbin 2017-12-01
  • 打赏
  • 举报
回复
引用 6 楼 czq1024 的回复:
[quote=引用 3 楼 zhxianbin 的回复:] 映射返回地址是 可以直接使用的,虚拟地址,不同进程不一样
那共享内存映射的是父子进程,返回的虚拟地址应该一样吧 [/quote] 这个没研究过,地址是多少和使用没什么关系
czq1024 2017-12-01
  • 打赏
  • 举报
回复
引用 3 楼 zhxianbin 的回复:
映射返回地址是 可以直接使用的,虚拟地址,不同进程不一样
那共享内存映射的是父子进程,返回的虚拟地址应该一样吧
共享内存是系统出于多个进程之间通讯的考虑,而预留的的一块内存区。在/proc/sys/kernel/目录下,记录着共享内存的一些限制,如一个共享内存区的最大字节数shmmax,系统范围内最大共享内存区标识符数shmmni等,可以手工对其调整,但不推荐这样做。 一、应用 共享内存的使用,主要有以下几个API:ftok()、shmget()、shmat()、shmdt()及shmctl()。 1)用ftok()函数获得一个ID号. 应用说明: 在IPC中,我们经常用用key_t的值来创建或者打开信号量,共享内存和消息队列。 函数原型: key_t ftok(const char *pathname, int proj_id); Keys: 1)pathname一定要在系统中存在并且进程能够访问的 3)proj_id是一个1-255之间的一个整数值,典型的值是一个ASCII值。 当成功执行的时候,一个key_t值将会被返回,否则-1被返回。我们可以使用strerror(errno)来确定具体的错误信息。 考虑到应用系统可能在不同的主机上应用,可以直接定义一个key,而不用ftok获得: #define IPCKEY 0x344378 2)shmget()用来开辟/指向一块共享内存的函数 应用说明: shmget()用来获得共享内存区域的ID,如果不存在指定的共享区域就创建相应的区域。 函数原型: int shmget(key_t key, size_t size, int shmflg); key_t key 是这块共享内存的标识符。如果是父子关系的进程间通信的话,这个标识符用IPC_PRIVATE来代替。如果两个进程没有任何关系,所以就用ftok()算出来一个标识符(或者自己定义一个)使用了。 int size 是这块内存的大小. int flag 是这块内存的模式(mode)以及权限标识。 模式可取如下值: IPC_CREAT 新建(如果已创建则返回目前共享内存的id) IPC_EXCL 与IPC_CREAT结合使用,如果已创建则则返回错误 然后将“模式” 和“权限标识”进行“或”运算,做为第三个参数。 如: IPC_CREAT | IPC_EXCL | 0640 例子中的0666为权限标识,4/2/1 分别表示读/写/执行3种权限,第一个0是UID,第一个6(4+2)表示拥有者的权限,第二个4表示同组权限,第3个0表示他人的权限。 这个函数成功时返回共享内存的ID,失败时返回-1。 关于这个函数,要多说两句。 创建共享内存时,shmflg参数至少需要 IPC_CREAT | 权限标识,如果只有IPC_CREAT 则申请的地址都是k=0xffffffff,不能使用; 获取已创建的共享内存时,shmflg不要用IPC_CREAT(只能用创建共享内存时的权限标识,如0640),否则在某些情况下,比如用ipcrm删除共享内存后,用该函数并用IPC_CREAT参数获取一次共享内存(当然,获取失败),则即使再次创建共享内存也不能成功,此时必须更改key来重建共享内存。 3) shmat()将这个内存区映射到本进程的虚拟地址空间函数原型: void *shmat( int shmid , char *shmaddr , int shmflag ); shmat()是用来允许本进程访问一块共享内存的函数。 int shmid是那块共享内存的ID。 char *shmaddr是共享内存的起始地址,如果shmaddr为0,内核会把共享内存映像到调用进程的地址空间中选定位置;如果shmaddr不为0,内核会把共享内存映像到shmaddr指定的位置。所以一般把shmaddr设为0。 int shmflag是本进程对该内存的操作模式。如果是SHM_RDONLY的话,就是只读模式。其它的是读写模式 成功时,这个函数返回共享内存的起始地址。失败时返回-1。 4) shmdt()函数删除本进程对这块内存的使用,shmdt()与shmat()相反,是用来禁止本进程访问一块共享内存的函数函数原型: int shmdt( char *shmaddr ); 参数char *shmaddr是那块共享内存的起始地址。 成功时返回0。失败时返回-1。 5) shmctl() 控制对这块共享内存的使用 函数原型: int shmctl( int shmid , int cmd , struct shmid_ds *buf ); int shmid是共享内存的ID。 int cmd是控制命令,可取值如下: IPC_STAT 得到共享内存的状态 IPC_SET 改变共享内存的状态 IPC_RMID 删除共享内存 struct shmid_ds *buf是一个结构体指针。IPC_STAT的时候,取得的状态放在这个结构体中。如果要改变共享内存的状态,用这个结构体指定。 返回值: 成功:0 失败:-1

23,215

社区成员

发帖
与我相关
我的任务
社区描述
Linux/Unix社区 应用程序开发区
社区管理员
  • 应用程序开发区社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧