커널레벨 파일 건드리기 예제 에러좀 봐주세요....

chxooi의 이미지

커널 레벨에서 file 을 access 하는 코드입니다.
read 를 했는데 파일 내용이 뻔히 있는데도 못읽어와서요....

뭐가 잘못된건지 궁금해서요...
vfs_read 의 return value 도 -14 가 나오는게 이상하고...

# pwd
/tmp
# ls -la
drwxrwxrwt 4 root 0 140 Jan 2 05:04 .
drwxrwxrwx 23 500 501 4096 May 11 2010 ..
-rwxrwxrwx 1 root 0 40 Jan 2 05:04 rambo.txt
#
# cat rambo.txt
abcdefgzjdkzdwdadasdoda90d12334afdaafaf
#

EXAMPLE CODE.....

    struct file * fd;
    char * filename="/tmp/rambo.txt";
    char *buff=NULL;
    printk("read function...\n");
    fd=sfile_open(filename,O_RDONLY,0);
    if (fd != NULL) {
        printk("OK.....\n");
        count=10;
        offset=0;
        sfile_read(fd,offset,buff,count);
        printk(" buff %s\n",buff);
    }else{
        printk("not ok\n");
    }

실행결과...
=============
read function...
OK.....
file_read...=
data is ,ret is -14

====================
계속 data 에 NULL 이찍히는데 뭐가 문제일까요???

#if 1
struct file* sfile_open(const char* path, int flags, int rights) {
    struct file* filp = NULL;
    mm_segment_t oldfs;
    int err = 0;
 
    oldfs = get_fs();
    set_fs(get_ds());
    filp = filp_open(path, flags, rights);
    set_fs(oldfs);
    if(IS_ERR(filp)) {
        err = PTR_ERR(filp);
        return NULL;
    }
    return filp;
}
void file_close(struct file* file) {
    filp_close(file, NULL);
}
 
int sfile_read(struct file* file, unsigned long long offset, unsigned char* data, unsigned int size) {
    mm_segment_t oldfs;
    int ret;
 
    printk("file_read...=\n");
    oldfs = get_fs();
    set_fs(get_ds());
 
    ret = vfs_read(file, data, size, &offset);
    printk("data is %s,ret is %d\n",data,ret);
 
    set_fs(oldfs);
    return ret;
}
breadncup의 이미지

    set_fs(oldfs);
    printk("data is %s,ret is %d\n",data,ret);

로 순서가 바뀌어야 mm_segment_t를 건드리고 나서 원상복귀해야 data가 살아 나지 않을까요?

물론, kernel에서 file access 하는 것을 무척 제한하고 있는데, 굳이 kernel 영역에서 file access를 꼭 해야 하는 이유라도...?

~~~~~~~~~ Signature

  1. http://kblog.breadncup.com/about/
  2. http://kblog.breadncup.com/
  3. http://lifeus.net/
chxooi의 이미지

바꿨는데도 안되긴 마찬가지네요...흑...거의 된것같았는데...

파일 access 는 일단 나중에 다시 할건데 kernel mode 에서 해결을 해야 나중에 다시user mode 로 바꿀 수 있게 프로젝트 진행중입니다.

유저에서 다이렉트로 해결하는건 쉽게 해결이되서요....

커널 모드 변환이 필요한데 쉽지 않네요...

breadncup의 이미지

vfs_read를 쓰시는 이유가 있나요?

보통은 이렇게 쓰지 않나요?

file->f_op->read(file, data, size, & file->f_pos);

아, 그리고 밑의 분이 말씀하신데로, data의 준비 (heap에서 가져온 주소이던, stack에서 쓰는 것이던)도 확인해 보세요.

~~~~~~~~~ Signature

  1. http://kblog.breadncup.com/about/
  2. http://kblog.breadncup.com/
  3. http://lifeus.net/
hogi2271의 이미지

강추
^^/

^^/

hogi2271의 이미지

char *buff=NULL;

read하는데 담는 그릇은 준비된건가요???
^^/

^^/

댓글 달기

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