Bus Error(coredump)발생에 대해서..

gkepsgds의 이미지

Bus Error는 어떤경우에 나는지 궁금합니다.
보기엔 별 문제가 없이 보이는 소스에서 bus error가 나서..

쓰레드내에서 nftw(..)을 쓰면 bus error 나네요.
쓰레드가 아닌 곳에서 쓰면 잘 돌아가는데..

그래서,
Bus Error 가 발생하는 원인과
쓰레드내에서 nftw()를 사용해도 되는지 알고 싶습니다.

익명 사용자의 이미지

1. 실행파일에 손상이 간 경우.
2. 파일시스템의 용량이 부족한 경우
3. glibc가 손상이 간 경우.

제가 buserror를 접한 경우는 위의 3가지 경우가 있었습니다.
참고가 되실런지요.

gkepsgds의 이미지

minzkn wrote:
1. 실행파일에 손상이 간 경우.
2. 파일시스템의 용량이 부족한 경우
3. glibc가 손상이 간 경우.

제가 buserror를 접한 경우는 위의 3가지 경우가 있었습니다.
참고가 되실런지요.

1번과 3번은 문제가 없는것 같구..
가장 의심스러운 부분이 2번인데..
파일시스템 용량 확인하는 방법과 늘리는 방법, 적당한 용량은 얼마쯤인지?

답변 부탁드립니다.

pynoos의 이미지

제가 사용하는 Solaris에서...

man ftw

Quote:

NOTES
Because ftw() is recursive, it is possible for it to ter-
minate with a memory fault when applied to very deep file
structures.

ftw() uses malloc(3C) to allocate dynamic storage during its
operation. If ftw() is forcibly terminated, such as by
longjmp(3C) being executed by fn or an interrupt routine,
ftw() will not have a chance to free that storage, so it
will remain permanently allocated. A safe way to handle
interrupts is to store the fact that an interrupt has
occurred, and arrange to have fn return a nonzero value at
its next invocation.

ftw() is safe in multi-thread applications. nftw() is safe
in multi-thread applications when the FTW_CHDIR flag is not
set.

gkepsgds의 이미지

pynoos wrote:

ftw() is safe in multi-thread applications. nftw() is safe
in multi-thread applications when the FTW_CHDIR flag is not
set.

저는 쓰레드안에서 nftw() 함수를 사용하는데 FTW_CHDIR flag를 쓰지 않았는데도 Bus Error가 나네요.
ftw를 쓰면 에러는 없구요!

nftw(base_dir, match_inode, sysconf(_SC_OPEN_MAX) -3, FTW_PHYS|FTW_MOUNT|FTW_SERR);

UNIX머신 이긴 하지만, 이렇게 사용하는데 Bus Error가 납니다.

dingdong77의 이미지

일단 듣기로는

- memory alignment가 어긋난 주소에 접근할 경우
- stack overflow

이런 경우에 발생한다는 이야기를 이 게시판에서 들었습니다.

제가 실제로 경험한 것은 메모리 내용이 잘못 overwrite되서 heap이 깨진 경우였습니다.

pynoos의 이미지

gkepsgds wrote:
nftw(base_dir, match_inode, sysconf(_SC_OPEN_MAX) -3, FTW_PHYS|FTW_MOUNT|FTW_SERR);

이 의미상 오류가 있는 것이 아닐까요?

동시에 process가 열 수 있는 최대 descriptor 보다 3 개 적은 개수의 file을 동시에 열어 가면서 호출된다는 것인데,

(sysconf(_SC_OPEN_MAX)-3) / 쓰레드 총 수

값을 넣어야 의미상 맞는 것 같습니다.
다시말해, 함수내에서 한꺼번에 열수 있는 descriptor 수를 넣는 값이 같은 일을 수행하는 전체 쓰레드 수로 나눈 값이어야 정상적인 활동을 할 수 있을 것 같네요.

gkepsgds의 이미지

pynoos wrote:

(sysconf(_SC_OPEN_MAX)-3) / 쓰레드 총 수)

nftw(base_dir, match_inode2, (int)((sysconf(_SC_OPEN_MAX) -3)/총쓰레드수), FTW_PHYS|FTW_MOUNT|FTW_SERR)
이렇게 했는데두 마찬가지로 Bus Error가 납니다.

char *base_dir;
nftw(NULL, match_inode2, sysconf(_SC_OPEN_MAX) -3, FTW_PHYS|FTW_MOUNT|FTW_SERR)
첫번째 인자인 base_dir를 NULL로 하면 Bus Error는 나지 않습니다.
별별 테스트 다 했봤습니다 ^^

원인이 뭘까요?

pynoos의 이미지

match_inode, match_inode2 의 proto type이

int match_inode( const char *, const struct stat *, int, struct FTW* );
인거 맞죠?

그리고, match_inode에서 나오나요? 아니면, nftw 안에서 나오나요?

gkepsgds의 이미지

pynoos wrote:
match_inode, match_inode2 의 proto type이

int match_inode( const char *, const struct stat *, int, struct FTW* );
인거 맞죠?

저는
int match_inode( char *, struct stat *, int, struct FTW* );
이렇게 선언 했습니다. const를 붙이면 컴파일 에러가 나서요ㅠ.ㅠ

(Bundled) cc: "gpms_client.c", line 39: warning 5: "const" will become a keyword.
(Bundled) cc: "gpms_client.c", line 39: error 1000: Unexpected symbol: "char".
(Bundled) cc: "gpms_client.c", line 39: warning 5: "const" will become a keyword.
(Bundled) cc: "gpms_client.c", line 39: error 1000: Unexpected symbol: "struct".
(Bundled) cc: "gpms_client.c", line 39: error 1705: Function prototypes are an ANSI feature.

pynoos의 이미지

gkepsgds wrote:
pynoos wrote:
match_inode, match_inode2 의 proto type이

int match_inode( const char *, const struct stat *, int, struct FTW* );
인거 맞죠?

저는
int match_inode( char *, struct stat *, int, struct FTW* );
이렇게 선언 했습니다. const를 붙이면 컴파일 에러가 나서요ㅠ.ㅠ

(Bundled) cc: "gpms_client.c", line 39: warning 5: "const" will become a keyword.
(Bundled) cc: "gpms_client.c", line 39: error 1000: Unexpected symbol: "char".
(Bundled) cc: "gpms_client.c", line 39: warning 5: "const" will become a keyword.
(Bundled) cc: "gpms_client.c", line 39: error 1000: Unexpected symbol: "struct".
(Bundled) cc: "gpms_client.c", line 39: error 1705: Function prototypes are an ANSI feature.

저와 직접적인 관련이 있는 프로젝트에 사용되는 것은 아니지만
요즘 이 문제가 제머리속 미해결 문제 Queue에 들어 있습니다. -.-
이러다가 잊혀지는 것이 다반사이긴 하지만요.

다른 주제에서도 답변을 찾지 못하여 미해결된 채로 몇개 둔것이 있는데,
괜히 부담만 가지고 있다가... 정작.. 잊혀져서는 "무의식"으로 넘겨 버리는 것이 저의 행태(?)가 이닌가 합니다...

간만에 답글을 달아 죄송합니다만, 어제 제가 읽은 문서중에..

nftw 안에서 longjmp 가 일어나는 일이 생기면 메모리가 해제되지 않을 수 있는 글을 읽었습니다. longjmp로 구현된 user thread 라면 이런 문제가 생길수 있지 않을까 생각이 나서 참고하시라고 글을 씁니다.

google에서 nftw longjmp 로 검색해보세요.

댓글 달기

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