APUE中網絡套接字一章——使用pthread改寫遠程時間服務器

  最近在看《Unix環境高級編程》一書,我一直對網絡編程有興趣,因此就直接跳到了網絡套接字這一章。linux

這一章中有一個示例程序:一個TCP客戶端向服務器發送鏈接請求,服務器在接受請求後,調用uptime命令編程

並將結果返回給客戶端,客戶端再將其打印出來。服務器

  由於前面剛看過線程那一章,因此我想把服務器改形成多線程的,以便同時服務多個線程。可是卻碰到網絡

一個問題,調試了半天仍是沒有進展(linux下調試我真的不是很會),google了下也沒找到答案。索性先po多線程

上來,整理下思路,若是有園子裏的朋友可以幫忙解答就更好啦~先上代碼:併發

  

#include "apue.h"
#include <netdb.h>
#include <errno.h>
#include <syslog.h>
#include <sys/socket.h>

#define BUFLEN 128
#define QLEN 10

#ifndef HOST_NAME_MAX
#define HOST_NAME_MAX 256
#endif

extern int initserver(int, struct sockaddr *, socklen_t, int);


void* serveThread(void* args)
{
    FILE *fp;
    printf("thread\t%d\n",args);
    int clfd = *(int*)(args);
    char buf[BUFLEN];
    sleep(2);
    if((fp = popen("/usr/bin/uptime", "r")) == NULL)
    {
        printf("%s\n","popen failed");
        sprintf(buf,"error: %s\n", strerror(errno));
        send(clfd, buf, strlen(buf),0);
    }
    else
    {
        printf("%s\n","popen success");
        while(fgets(buf, BUFLEN, fp) != NULL)
            send(clfd, buf, strlen(buf), 0);
        pclose(fp);
    }
    close(clfd);
    pthread_exit((void*)0);
}

void serve(int sockfd)
{

    for(;;)
    {

        int* temp =(int*) malloc(sizeof(int));
        pthread_t pthread;
        int clfd  = accept(sockfd, NULL, NULL);
        printf("server\t%d\n",temp);
        *temp = clfd;
        printf("server socket descriptor : %d\n",clfd);
        if(clfd < 0)
        {
            syslog(LOG_ERR, "ruptimed: accept error : %s",
                  strerror(errno));
            exit(1);
        }
        pthread_create(&pthread,NULL,serveThread,(void*)(temp));
    }

}



int main(int argc, char * argv[])
{
    struct addrinfo *ailist, *aip;
    struct addrinfo hint;

    int sockfd, err, n;
    char *host;

    if(argc != 1)
       err_quit("usage : ruptimed");
#ifdef    _SC_HOST_NAME_MAX
    n = sysconf(_SC_HOST_NAME_MAX);
    if(n < 0)
#endif
        n = HOST_NAME_MAX;
    host = malloc(n);
    if(host == NULL)
       err_sys("malloc error");
    if(gethostname(host,n) < 0)
       err_sys("gethostname error");
    printf("1-------\n");
    //daemonize("ruptimed");
    hint.ai_flags = AI_CANONNAME;
    hint.ai_family = 0;
    hint.ai_socktype = SOCK_STREAM;
    hint.ai_protocol = 0;
    hint.ai_addrlen = 0;
    hint.ai_canonname = NULL;
    hint.ai_addr = NULL;
    hint.ai_next = NULL;
    printf("2-------\n");
    if((err = getaddrinfo(host, "ruptime",&hint, &ailist)) != 0)
    {
           printf("%s\n",host);
        printf("%s\n",gai_strerror(err));
        syslog(LOG_ERR, "ruptimed: getaddrinfo error: %s",
              gai_strerror(err));
        exit(1);
    }
    for(aip = ailist; aip != NULL; aip = aip->ai_next)
    {
        if((sockfd = initserver(SOCK_STREAM,aip->ai_addr,
                aip->ai_addrlen, QLEN)) >= 0)
        {
            serve(sockfd);
            close(sockfd);
            exit(0);
        }
    }
    exit(1);
}

  initserver函數是一個extern函數,完成服務器端socket的建立、綁定等等工做,這裏就不貼上來了。socket

問題是在accept函數那裏,當服務器啓動後,服務器在127.0.1.1:5000監聽(經過系統函數getaddrinfo函函數

數獲得,在/etc/hosts 和/etc/services中配置),調用accept後阻塞。而後客戶端發起一個鏈接,服務器打測試

印新的socket描述符及其地址,而後啓動一個線程,調用uptime,經過此套接字向客戶端發送結果。奇怪ui

的是服務器打印了兩次描述符及其地址,第一次socket描述符,也就是clfd大於0,第二次小於0,即出現連

接錯誤了,程序退出。但是我只啓動了一個客戶端,在第一次鏈接成功後並啓動線程後,主線程應該繼續

阻塞在accept函數啊,爲何會打印兩次呢? 

  現寫到這,但願能快點解決= = 

_________________________________________________________________________________

更新:

  查看了錯誤日誌,發現是一個Interrupted system call錯誤。查了下資料,大概是說,accept是一個慢

系統調用,多是它被中斷了。我猜想是因爲serveThread裏的sleep(2)——加上這個原本是讓一個服務線

程多運行一段時間,而後啓用兩個客戶端作下併發的測試的。去掉以後,果真沒有問題了= =可是緣由還

是不太清楚,並且,accept第一次確實已經返回了clfd而且打印了,爲何在中斷後又調用一次呢?

相關文章
相關標籤/搜索