안녕하세요 dirfd에 대해서 질문을 드리겠습니다.

anaud2의 이미지

안녕하세요

리눅스에서 ftp데몬을 조금 변경해서 새로운 ftp데몬을 만들어서 사용하고 있습니다.

유닉스 포팅을 해야해서 포팅 중인데요 문제점이 생겼습니다.

sun os 5.9(선 솔라리스 5.9인것 같습니다.) 인데

소스를 컴파일해보면 에러가 발생을 합니다.
ftp 구성하는 소스중 glob.c라는 소스중 아래의 함수에서 에러가 발생을 하는데요 발생하는 부분은 dirfd()함수때문에 발생을 합니다.

static
matchdir(pattern)
    char *pattern;
{
    struct stat stb;
    register struct dirent *dp;
    DIR *dirp;
 
    dirp = opendir(*gpath ? gpath : ".");
    if (dirp == NULL) {
        if (globbed)
            return;
        goto patherr2;
    }
    //if (fstat(dirp->dd_fd, &stb) < 0)
    if (fstat(dirfd(dirp), &stb) < 0)
        goto patherr1;
    if (!isdir(stb)) {
        errno = ENOTDIR;
        goto patherr1;
    }
    while ((dp = readdir(dirp)) != NULL) {
        if (dp->d_ino == 0)
            continue;
        if (match(dp->d_name, pattern)) {
            Gcat(gpath, dp->d_name);
            globcnt++;
        }
    }
    closedir(dirp);
    return;
 
patherr1:
    closedir(dirp);
patherr2:
    globerr = "Bad directory components";
}

소스에서 if부분이 2가지로 하나는 주석이 되어있고 밑부분에서 dirfd에서 에러가 발생을 하길래 윗부분 주석을 풀고 아랫부분을 주석을 막아줬더니
컴파일은 원활히 되었습니다.
if (fstat(dirp->dd_fd, &stb) < 0)
//if (fstat(dirfd(dirp), &stb) < 0)
그런데 문제가 ftp 동작을 하는중간에 로그인 이후
ls 라던지 ls -al 등의 명령어를 치면 인식을 못하고 에러가 발생을 합니다.

500 Will not send to 3rd-party host.
425 Can't build data connection: Invalid argument.

500 문법 에러. 명령어를 인식할 수 없다.
425 데이터 커넥션을 열 수 없다.

위와같이 나옵니다 제가 생각하기엔 제가 수정한 dirfd 때문인것 같은데요 리눅스에서는 man 페이지가 있는데
선 솔라리스에서는 man dirfd가 없더라구요 사용이 디렉토리 주소를 넘겨주는거 같은데..
dirfd 소스를 찾아서 해봐도 다른문제가 생기고 조금 어렵네요 이문제를 어떻게 해결해야 좋을까요...

댓글 달기

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