shared memory 에 저장된 data 를 읽어오고 싶습니다.

srdpt3의 이미지

어느 configuration 의 파일에 setting 된 user key와 user size 값으로
공유메모리에 접근하여 그안에 저장된 값을 읽어 오고 싶은데요 이게 가능한가요?

#include<stdio.h>
#include<stdlib.h>
#include<sys/types.h>
#include<sys/ipc.h>
#include<sys/shm.h>
#include<string.h>
#include<sys/stat.h>
#define MAX_BUF 256
#define MAX 30 
 
 
 
 
 
int shared(int argc ,char *argv[])
{
 
 
 
FILE *in ;
char s[MAX];
char *ptr;
char *ptr_p;
char *ptr_size;
char *ptr_p2;
struct shmid_ds shmid_buffer;
long  size;
int key,shmid, len,rtrn;
char *shared_memory,*sh;
char *sh_array;
char *c1 = "USR_SHMKEY=";
char *c2 = "USR_SHMSIZE=";
char* shared_stuff;
char filename[40]="";
char *string;
int segment_size;
char buf[MAX_BUF];
 
strcat(filename,argv[2]);
strcat(filename,".conf");
 
 
if((chdir("/config"))==-1)
{
 
fputs("cannnot move to this directory\n",stderr);
exit(1);
 
}
 
 
if((in=fopen(filename,"r")) == NULL)
{
 
	fputs("cannot open input file \n",stderr);
	exit(1);
}
while(fgets(s,MAX,in)!=NULL)
{
	ptr=strstr(s,c1);
	ptr_size=strstr(s,c2);
 
	if(ptr)
	{
		ptr_p=strtok(ptr,"");
       		 key = atoi(ptr_p+11);
		printf("key is : %d\n",key);
	}
 
 
	if(ptr_size)
	{
 
		ptr_p2=strtok(ptr_size,"");
       		 size = atol(ptr_p2+12);
		printf("SIZE is : %d\n",size);
	}
}
 
//fcloseall();
 
//if ((shmid = shmget((key_t)key,(size_t)size,IPC_CREAT|0666)) == -1)
if ((shmid = shmget((key_t)key,(size_t)size,S_IRUSR|S_IWUSR)) == -1)
{
	perror("shmget failed");
	exit(1);
}
 
shared_memory=(char *)shmat(shmid, NULL,SHM_RDONLY);
if(shared_memory ==(char *)-1){
 
	perror("shmat failed");
	exit(1);
}
printf("Memory is atatched at %X\n",(int)shared_memory);
 
 
memcpy(buf,shared_memory,sizeof(&shared_memory));
printf("Received from shared memory is %s\n",(char*)shared_memory);
printf("Received from shared memory is %s\n",buf);
 
shmctl(shmid,IPC_STAT,&shmid_buffer);
segment_size = shmid_buffer.shm_segsz;
printf("segment size : %d\n",segment_size);
shmdt(shared_memory);
return 0;
}

결과 화면

key is : 70500
SIZE is : 67108864
Memory is atatched at B36E5000
Received from shared memory is
Received from shared memory is

일단 그 conf 파일안에 있는 USR_SHMKEY 값과 USR_SHMSIZE 를 읽어드려서 그값들로 공유메모리에 접근하는건데요
잘하고 있는지 몰라서 물어봅니다.
보시다시피 Received from shared memory is 이후 아무 값도 아찍히는데요

제가 잘못 이해하고 있는지 물어보고싶습니다
고수님들 좀 도와주세요ㅣ.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.