libpcap 사용 시 문제점.

twins99의 이미지

..
..
..
libpcap을 사용 중입니다.

궁금한 것이 pcap_dispatch()의 return값이 들쑥 날쑥하게 0으로 나왔다 1로 나왔다 합니다.

어떨때는 쭉~ 0으로 나오면서 system이 거의 hangup되는 수준까지 가네요.(control+C가 먹질 않을정도..)

무엇이 문제일까요?

제가 TEST중인 코드는 다음과 같습니다.

static void ping_recv(pcap_t *pcap,u_int32_t packetwait, pcap_handler func)
{
       struct timeval tv,tv2;
       char done = 0;
#ifndef WIN32
       fd_set fds;
#endif
 
 
       if(verbose>3) {
               printf("arping: receiving packets...\n");
       }
 
        tv.tv_sec = packetwait / 1000000;
        tv.tv_usec = packetwait % 1000000;
int count = 0;
 
        for (;!done;) {
                int sr;
                FD_ZERO(&fds);
                FD_SET(pcap_fileno(pcap), &fds);
 
                if (-1 == gettimeofday(&tv2,NULL)) {
                        fprintf(stderr, "arping: "
                                "gettimeofday(): %s\n",
                                strerror(errno));
                        sigint(0);
                }
//              printf("running select()\n");
 
                switch(sr = select(pcap_fileno(pcap)+1,
                                   &fds,
                                   NULL,NULL,&tv)) {
                case -1:
                        if (errno == EINTR) {
                                return;
                        }
                        fprintf(stderr, "arping: select(): "
                                "%s\n", strerror(errno));
                        sigint(0);
                case 0:
                        printf("select DONE:%d\n",__LINE__);
                        done = 1;
                        break;
                default: {
 
                        int ret;
                        if (1 != (ret = pcap_dispatch(pcap, -1,
                                                      func,
                                                      NULL))) {
                                // rest, so we don't take 100% CPU... mostly
                                // hmm... does usleep() exist everywhere?
                                printf("usleep pcap_dispatch:%d\n", ret);
                                usleep(10);
#ifndef HAVE_WEIRD_BSD
                                // weird is normal on bsd :)
                /*              if (verbose) {
                                        fprintf(stderr, "arping: select=%d "
                                                "pcap_dispatch=%d!\n",
                                                sr, ret);
                                }*/
#endif
                        }
                        if(count > 100){
                                done = 1;
                                count =0;
                        }
                        else
                                count++;
                        break; }
                }
 
                if (-1 == gettimeofday(&tv,NULL)) {
                        fprintf(stderr, "arping: "
                                "gettimeofday(): %s\n",
                                strerror(errno));
                        sigint(0);
                }
                /*
                 * setup next timeval, not very exact
                 */
                tv.tv_sec  = (packetwait / 1000000)
                        - (tv.tv_sec - tv2.tv_sec);
                tv.tv_usec = (packetwait % 1000000)
                        - (tv.tv_usec - tv2.tv_usec);
                while (tv.tv_usec < 0) {
                        tv.tv_sec--;
                        tv.tv_usec += 1000000;
                }
                if (tv.tv_sec < 0) {
                        tv.tv_sec = tv.tv_usec = 0;
                }
 
 
printf("FUNC:%s, LINE:%d\n", __FUNCTION__, __LINE__);
                usleep(10000);
 
        }
//      if (tv.tv_usec == 0) {
//              tv.tv_usec = 1;
//      }
        if (-1 == select(0, NULL,NULL,NULL, &tv)) {
                if (errno == EINTR) {
                        return;
                }
                fprintf(stderr, "arping: select(delay): %s\n",strerror(errno));
                sigint(0);
        }
}

댓글 달기

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