select 함수가 이상하게 작동합니다.

trymp의 이미지

대량의 TCP패킷을 처리하는 부분은 select로 아래와 같이 다중화하였는데요.

자주 발생하는 현상은 아닌데요.

 
listen() 
 
while (1)
{
 /* tv 값 셋팅 */
 
  n = select = (max+1, readfdt, NULL, NULL, tv); // n값은 1 or 2인 경우도 있음.
  if (n == 0) 
    continue;
  if (n < 0)
    // 애러처리
 
   //신규접속 처리
  if (fd == listen_socket)
  {  
    c = accept()
    fd_set(c, readfdt); //등록
     if (c > max )
       max = c;
  }
  else // 나머지 client FD 처리
  {
     for(i=0;i<max;i++)
     if(FD_isset(i, readfdt))
      {
        recv();
        close();
        FD_CLR(c,readfdt);
      }
  }
 
 
 

대략 위와 같은 구조에서 한번에 신규접속을 처리하든, 아니면 client 쪽 소켓을 처리하든
둘중 하나만 할 수 있는 구조입니다.

accept 한 client FD 를 바로 처리하지 않고 select() 를 한번 더 호출하니까

readfdt 내용이 이상하게 바뀌네요.

제가 해당 client FD 에서 recv 를 호출하지 않았는데, readfdt 검사해보니 unset 되어 있습니다.

그래서 lsof 로 검사해보니 client FD 가 garbage 처럼 처리되지 못하고 누적되어 있습니다.

원래대로라면 누적되어 있지 않고 바로 처리하고 없어져야하는데요.

accept 한 client FD 를 recv 하지 않고 있으면 select 할 때마다 계속 data 가 있다고

FD_ISSET에 true 가 나와야 되지 않을까요?

제가 recv 하지 않았는데, select 에서는 해당 FD엣 대해서 data 가 없다고 나오네요.???

고수님들의 많은 조언 부탁드립니다.

}

goomi의 이미지

&readfdt로 바꿔 보세염 글고 tv 즉 time val 은 그냥 NULL로 하시면 변경 있을 때에 리턴 해주니 NULL로 하시는 것도 갠찮을듯

아참 그리고 FD_SET()할 때 따로 readfdt를 쓰지 말고 따로 readfdinit 변수 만들어서

select전에 readfdt=readfdinit; 해주어서 초기화 시켜 주세요 select문 실행되면 그 안에 셋팅 되어 있던 소켓들의 값이 바뀝니다.

예를 들면 메인 소켓 s가 readfdt에 저장 되어 있을 때 connect()요청이 오면 해당 소켓은 flag가 바뀌어서 저장되어 있거든요

다음에 또 쓸라면 초기화 라는 게 필요하겠죠?

댓글 달기

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