我正在使用TCP服务器,出现了一些非常奇怪的东西。
当我与一个客户联系时,一切都很顺利 当两个或更多客户连接时,流量仍然很好 但是当任何客户端断开连接时,服务器会在收割机呼叫后立即堵塞。它就在那里等待。
当我从2&试图重新连接。重新连接的客户端根本不显示任何错误消息,它运行顺利。软件包可以发送到服务器,但它会堆积在服务器内部。
另一方面,服务器挂起,等待一个特定客户端断开连接。如果该客户端断开连接,服务器将恢复功能,执行堆放在其中的所有请求。
以下是我用于服务器结构的准系统代码 该代码还说明了上述问题 请有人请,请指出错误发生在哪里?
void reaper(int sig)
{
int status;
while (waitpid(-1, &status, WNOHANG) >= 0)
/* empty */;
}
int errexit(const char *format, ...)
{
va_list args;
va_start(args, format);
vfprintf(stderr, format, args);
va_end(args);
exit(1);
}
int errno;
unsigned short portbase = 0; /* port base, for non-root servers */
int passivesock(const char *service, const char *transport, int qlen)
{
struct servent *pse; /* pointer to service information entry */
struct protoent *ppe; /* pointer to protocol information entry*/
struct sockaddr_in sin; /* an Internet endpoint address */
int s, type; /* socket descriptor and socket type */
memset(&sin, 0, sizeof(sin));
sin.sin_family = AF_INET;
sin.sin_addr.s_addr = INADDR_ANY;
/* Map service name to port number */
if ( pse = getservbyname(service, transport) )
sin.sin_port = htons(ntohs((unsigned short)pse->s_port)
+ portbase);
else if ((sin.sin_port=htons((unsigned short)atoi(service))) == 0)
errexit("can't get \"%s\" service entry\n", service);
/* Map protocol name to protocol number */
if ( (ppe = getprotobyname(transport)) == 0)
errexit("can't get \"%s\" protocol entry\n", transport);
/* Use protocol to choose a socket type */
if (strcmp(transport, "udp") == 0)
type = SOCK_DGRAM;
else
type = SOCK_STREAM;
/* Allocate a socket */
s = socket(PF_INET, type, ppe->p_proto);
if (s < 0)
errexit("can't create socket: %s\n", strerror(s));
/* Bind the socket */
if (errno=bind(s, (struct sockaddr *)&sin, sizeof(sin)) < 0)
errexit("can't bind to %s port: %s\n", service,
strerror(errno));
if (type == SOCK_STREAM && listen(s, qlen) < 0)
errexit("can't listen on %s port: %s\n", service,
strerror(type));
return s;
}
int passiveTCP(const char *service, int qlen)
{
return passivesock(service, "tcp", qlen);
}
#define QLEN 32 /* maximum connection queue length */
#define BUFSIZE 4096
int TCPechod(int fd);
int main(int argc, char *argv[])
{
char *service; /* service name or port number */
struct sockaddr_in fsin; /* the address of a client */
unsigned int alen; /* length of client's address */
int msock; /* master server socket */
int ssock; /* slave server socket */
if (argc !=2)
errexit("usage: %s port\n", argv[0]);
service = argv[1];
msock = passiveTCP(service, QLEN);
(void) signal(SIGCHLD, reaper);
while (1) {
alen = sizeof(fsin);
ssock = accept(msock, (struct sockaddr *)&fsin, &alen);
if (ssock < 0) {
if (errno == EINTR)
continue;
errexit("accept: %s\n", strerror(ssock));
}
printf("Accept connection %d from %s:%d\n", ssock, inet_ntoa(fsin.sin_addr), (int)ntohs(fsin.sin_port));
switch (fork()){
case 0:
(void) close(msock);
TCPechod(ssock);
close(ssock);
exit(0);
default:
close(ssock);
break;
case -1:
errexit("fork: %s\n", strerror(errno));
}
}
}
int TCPechod(int fd)
{
char buf[BUFSIZE];
int cc;
while (cc = read(fd, buf, sizeof(buf))) {
if (cc < 0)
errexit("echo read: %s\n", strerror(cc));
if (errno=write(fd, buf, cc) < 0)
errexit("echo write: %s\n", strerror(errno));
}
return 0;
}
任何抬头都会非常感激 我提前谢谢你。
答案 0 :(得分:3)
问题是你如何调用waitpid,因为你只是在发生错误时离开了一段时间(如果发生错误,waitpid返回&lt; 0)。当您使用WNOHANG标志调用waitpid时,如果没有任何子进程终止(它确实更改状态:已停止,已恢复或已终止),它将返回0。试试这个纠正:
void reaper(int sig)
{
int status;
pid_t pid;
while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
printf("Proces PID: %d Hash Finished With Status: %d", pid, status);
if (0 == pid) printf("No More Process Waiting");
if (pid < 0) printf("An Error Ocurred");
}
如果你想使用等待,收割者功能必须是:
void reaper(int sig)
{
int status;
pid_t pid;
pid = wait(&status); // Wait suspend the execution of the current process.
if (pid > 0) printf("Proces PID: %d Hash Finished With Status: %d", pid, status);
if (pid < 0) printf("An Error Ocurred");
}
有关wait(2)的其他信息,请转到:http://linux.die.net/man/2/wait
答案 1 :(得分:1)
我也遇到了这个问题。
带有>=0
测试的“收割者”功能在各地都有示例,但这可能最终成为一个无限循环,因为即使它清理了孩子,它也会一直循环,直到有没有了,但直到它出现某种错误。
此代码的Perl版本通常使用>0
代替>=0
来“修复”,但您可能希望使用此处所示的逻辑,您可以在其中明确测试感兴趣的案例。