read()에서 SIGSEGV가 왜일어날까여?

MackTheKnife의 이미지

서버 프로그래밍을 짜고있음다.

어떻게 된영문인지 멀쩡하던소스가 read()에서 세그먼트 디폴트가 떨어지네여
이런일도 있나여?

struct R
{
char a[100];
char b[100];
}

{
sturct R recvMsg;
printf("socket read buffer size=%d\n",nRead);

ret=read(sockfd,&recvMsg,sizeof(recvMsg));
if(ret == 0) return -1;

printf("read num=%d sizeof(recvmsg)=%d\n",ret,sizeof(recvMsg));


}

pynoos의 이미지

clean compile (.o 를 다 지우고) 한다음 link 해도 그런가요?

위 구문은 heap도 아닌 stack에 넣는 것으로 보이는데...

danielkim의 이미지

아마도 잘은 모르겠지만 원래부터 좀 문제가 있을수 있는 코드 인것 같네요
read 에 대한 매뉴얼 페이지 잘 읽어 보시고
한번 테스트 해 보세요 아래 코드는 아마 잘 동작 할겁니다.

struct R 
{ 
char a[100]; 
char b[100]; 
} 

{ 
sturct R recvMsg; 
printf("socket read buffer size=%d\n",nRead); 

// ret=read(sockfd,&recvMsg,sizeof(recvMsg)); 
 ret=read(sockfd,(char *)&recvMsg,sizeof(recvMsg)); 

if(ret == 0) return -1; 

printf("read num=%d sizeof(recvmsg)=%d\n",ret,sizeof(recvMsg)); 


}
MackTheKnife의 이미지

답변들 고맙습니다..여기 게시판에서 검색하다가 우연히 원인을 알아냈읍니다.
소스에는 문제가 없었구여
read 하기전에 위쪽에서 strptime을 써서 string을 date로 바꿀때
struct tm을 메모리할당을 안하고 했더니 메모리 malloc에서 에러가 난것 같습니다.

strptime(.....,ptm) ==> stptime(....,&tm); 으로 바꾸니 되네여

근데 궁금한게 생겼읍니다.
1.회사에서 gdb로 bt를 했을때는 strptime에대한 트레이스가 나오지 않았는데 집에서는 나왔던 이유는 뭐져?

2.strtok같은경우에는 메모리할당을 안하고 포인터를 대입하면 자동으로 할당되어서 나오잖아여..strptime은 그렇지 않은가보져?
그리구 strtok같은경우 메모리 할당이 되어서 나오면 free해줘야되져?

jongi의 이미지

Quote:
1.회사에서 gdb로 bt를 했을때는 strptime에대한 트레이스가 나오지 않았는데 집에서는 나왔던 이유는 뭐져?

회사 시스템의 glibc 라이브러리가 디버깅 모드로 컴파일되어 있지 않아서일겁니다.

Quote:
2.strtok같은경우에는 메모리할당을 안하고 포인터를 대입하면 자동으로 할당되어서 나오잖아여..strptime은 그렇지 않은가보져?

strtok 리턴값은 첫번째 인자로 받은 버퍼중 한 주소를 리턴합니다.
strtok 함수에서 메모리를 할당하진 않습니다.

--
종이한장 * 이성으로 비관하더라도 의지로 낙관하라! (그람시)

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.