stat() lstat() 에러 Value too large for defined data type

white-hill의 이미지

질문이 있습니다..ㅠ ㅠ

lstat 을 이용하여 파일 뷰어를 구현하였는데...
난관에 봉착하였습니다...

4Gb 8Gb 파일에 대하여 각각
Value too large for defined data type
메세지를 토해내며...
st_mode 에서 directory 로 인식을 해 버리는 것입니다..ㅠ ㅠ

구글링을 해 보았으나...

조금 이해가 잘 되지 않아 이렇게 다시 한 번 여쭈어 보는 방법을 택했습니다.

#include
#include
#include

struct stat statbuf;

선언한 뒤... 사이즈를 직어 보았습니다.

sizeof(statbuf.st_dev ) = 8
sizeof(statbuf.st_ino ) = 4
sizeof(statbuf.st_mode ) = 4
sizeof(statbuf.st_nlink ) = 4
sizeof(statbuf.st_uid ) = 4
sizeof(statbuf.st_gid ) = 4
sizeof(statbuf.st_rdev ) = 8
sizeof(statbuf.st_size ) = 4
sizeof(statbuf.st_blksize) = 4
sizeof(statbuf.st_blocks ) = 4
sizeof(statbuf.st_atime ) = 4
sizeof(statbuf.st_mtime ) = 4
sizeof(statbuf.st_ctime ) = 4

그리고 밑에 것은 busy box 에서 찍어본 것입니다.

sizeof(dstat.st_dev ) = 8
sizeof(dstat.st_ino ) = 8
sizeof(dstat.st_mode ) = 4
sizeof(dstat.st_nlink ) = 4
sizeof(dstat.st_uid ) = 4
sizeof(dstat.st_gid ) = 4
sizeof(dstat.st_rdev ) = 8
sizeof(dstat.st_size ) = 8
sizeof(dstat.st_blksize) = 4
sizeof(dstat.st_blocks ) = 8
sizeof(dstat.st_atime ) = 4
sizeof(dstat.st_mtime ) = 4
sizeof(dstat.st_ctime ) = 4

busy 박스의 것은 잘 동작을 합니다만...
제가 짠 소스는 에러를 뱉어냅니다...
물론 st_size 의 크기로 인하여 overflow 가 나는 것은 당연한 것인데...

두 개의 차이가 어떤 식으로 발생을 하는 것인지요...
compile 시 makefile 에 어떠한 옵션이 필요한 것인가요...

찾아보니
#define __USE_FILE_OFFSET64
#define __USE_LARGEFILE64
#define __FILE_OFFSET_BITS 64
#define __LARGEFILE_SOURCE
선언을 하라는데...

이것은 어떤 의미의 선언인지도 이해가 되지 않아서 직접 이렇게 문의글을
작성하여 봅니다...

더 필요한 정보나 것들이 있으시면 댓글 팍팍 달아 주시기 바랍니다...

정보의 공유로 자라나는 새싹의 힘이 되어 주시길 바랍니다..

pastime의 이미지

ERRORS
       ...
 
       EOVERFLOW
              stat() path refers to a file whose size cannot be represented in the type off_t.
              This can occur when an application compiled on a 32-bit platform  without
              -D_FILE_OFFSET_BITS=64 calls stat() on a file whose size exceeds (2<<31)-1 bits.

white-hill의 이미지

I couldnt find the that(-D_FILE_OFFSET_BITS=64) ^^
thnks too much~~~*

댓글 달기

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