클라이언트로 부터 char 300정도 받으면 세크먼트 에러가......

cccc2002의 이미지

Segmentation fault (core dumped) 가 생기네요....

#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <signal.h>
#include <sys/socket.h>
#include <sys/file.h>
#include <netinet/in.h>
#include <string.h>
#include <signal.h>
#define MAXLINE 1024
#define MAX_SOCK 64

char rline[MAXLINE];
char *escapechar="exit";
int getmax(int);
void removeClient(int);
int maxfdp1;
int num_com=0;
int client_s[MAX_SOCK];
int command_nflag,command_nsize,option_nflag,option_nsize;
char command[256],option[256];
int main(int argc,char *argv[])
{
        int i,j,n;
        int s,client_fd,clilen;
        fd_set read_fds;
        struct sockaddr_in client_addr,server_addr;

        signal(SIGHUP, SIG_IGN);
        signal(SIGTERM, SIG_IGN);

        if(argc !=2)
        {
                printf("%s port\n",argv[0]);
                exit(0);
        }

        if((s=socket(PF_INET,SOCK_STREAM,0)) <0)
        {
                printf("Server: Can't open stream socket.");
                exit(0);
        }

        //setting server_addr
        bzero((char *)&server_addr,sizeof(server_addr));
        server_addr.sin_family=AF_INET;
        server_addr.sin_addr.s_addr=htonl(INADDR_ANY);
        server_addr.sin_port=htons(atoi(argv[1]));

        if(bind(s,(struct sockaddr *)&server_addr,sizeof(server_addr))<0)
        {
                printf("Server:Can't bind local address.\n");
                exit(0);
        }

        listen(s,5);
        maxfdp1=s+1;

        while(1)
        {
                FD_ZERO(&read_fds);
                FD_SET(s,&read_fds);
                for(i=0; i<num_com;i++)
                        FD_SET(client_s[i],&read_fds);
                maxfdp1=getmax(s)+1;
                if(select(maxfdp1,&read_fds,(fd_set *)0,(fd_set *)0,(struct timeval *)0) <0)
                {
                        printf("select error <= 0 \n");
                        exit(0);
                }

                if(FD_ISSET(s,&read_fds))
                {
                        clilen=sizeof(client_addr);
                        client_fd=accept(s,(struct sockaddr *)&client_addr,&clilen);
                        if(client_fd == -1)
                        {
                                printf("accept error\n");
                                exit(0);
                        }

                        client_s[num_com]=client_fd;
                        num_com++;
                        printf("%d client_commputer\n",num_com);
                }

                for(i=0;i<num_com;i++)
                {
                        if(FD_ISSET(client_s[i],&read_fds))
                        {
                                if((n=recv(client_s[i],rline,MAXLINE,0)) <= 0)
                                {
                                        removeClient(i);
                                        continue;
                                }

                                if(strstr(rline,escapechar)!=NULL)
                                {
                                        removeClient(i);
                                        continue;
                                }

                                rline[n]='\0';

                                for(j=0;j<num_com;j++)
                                send(client_s[j],rline,n,0);

                                memcpy(&command_nflag,rline,4);
                                memcpy(&command_nsize,rline+4,4);
                                command[command_nsize]='\0';
                                memcpy(command,rline+8,command_nsize);
                                memcpy(&option_nflag,rline+sizeof(int)*2 + command_nsize,4);
                                memcpy(&option_nsize,rline+sizeof(int)*3 + command_nsize,4);
                }

                for(i=0;i<num_com;i++)
                {
                        if(FD_ISSET(client_s[i],&read_fds))
                        {
                                if((n=recv(client_s[i],rline,MAXLINE,0)) <= 0)
                                {
                                        removeClient(i);
                                        continue;
                                }

                                if(strstr(rline,escapechar)!=NULL)
                                {
                                        removeClient(i);
                                        continue;
                                }

                                rline[n]='\0';

                                for(j=0;j<num_com;j++)
                                send(client_s[j],rline,n,0);

                                
                        }
                }      
        }
}



void removeClient(int i)
{
        close(client_s[i]);
        if( i !=(num_com -1))
        {
                client_s[i]=client_s[num_com -1];
        }
        num_com--;
        printf("total computer : %d\n",num_com);
}

int getmax(int k)
{
        int max=k;
        int r;
        for(r=0;r<num_com;r++)
        {
                if(client_s[r] >max)
                        max=client_s[r];
        }
        return max;
}
cccc2002의 이미지

command로 넘어오는 값이 256을 넘어서 그랬습니다.
지송.

댓글 달기

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