我在边缘触发模式下使用 epoll。为了避免饥饿,代码一次从一个套接字读取 MAX_FREAD_LENGTH 个字节。稍后组装碎片,直到出现 EOL。我注意到当 MAX_FREAD_LENGTH 很小时,epoll 卡住了。我认为它应该适用于任何大小的读取块。它适用于 512 字节,但有时会挂起(意味着没有 EPOLLIN 事件)。如果我增加 MAX_FREAD_LENGTH 它变得更加稳定。我该如何解决这个问题?
非常感谢您考虑我的问题!
EPOLL 初始化
int res;
epFd = epoll_create(EPOLL_SIZE);
event.data.fd = serverFd;
event.events = EPOLLIN|EPOLLET;
res=epoll_ctl(epFd, EPOLL_CTL_ADD, serverFd, &event);
if (res == -1){
perror ("epoll_ctl error: ");
return EH_ERROR;
}
events = calloc (MAX_EVENTS, sizeof event);
注册网络事件:
while (TRUE){
int nfds;
do{
nfds = epoll_wait(epFd, events, MAX_EVENTS, -1);
} while (nfds < 0 && errno == EINTR);
int i = 0;
for (;i<nfds;i++){
if ( (events[i].data.fd == serverFd) && (events[i].events & EPOLLIN)){
if ((clientFd = accept(serverFd,(struct sockaddr *) &clientAddr, &clientLen)) < 0){
char log[255];
sprintf(log,"dispatch_net_event: Socket accept failed: %s",strerror(errno));
logger->log(LOGG_ERROR,log);
}
if(newclient(clientFd)!=EH_ERROR){
/* client created */
setnonblocking(fd,NONBLOCKING);
event.data.fd = clientFd;
event.events = EPOLLIN |EPOLLET;
if(epoll_ctl(epFd, EPOLL_CTL_ADD, fd, &event)<0){
fprintf(stderr,"Epoll insertion error (fd=%d): ",clientFd);
return EH_ERROR;
}
continue;
}
else{
logger->log(LOGG_ERROR,"Client creation error");
continue;
}
}
else{
dispatch_event(events[i].data.fd,NET_EVENT);
}
}
}
处理一个网络事件
#define SMTP_MAX_LINE_LENGTH MAX_FREAD_LENGTH
ssize_t count;
char buf[SMTP_MAX_LINE_LENGTH];
memset(buf,'\0', SMTP_MAX_LINE_LENGTH);
count = read (fd, buf,MAX_FREAD_LENGTH );
if (count==-1){
if (errno == EAGAIN)
return KEEP_IT;
else if (errno == EWOULDBLOCK)
return KEEP_IT;
else{
char log[255];
sprintf(log,"handle_net_event: Read error: %s",strerror(errno));
logger->log(LOGG_ERROR,log);
}
}
else{ /* count > 0 there are data in the buffer */
/* assemble possible partial lines, TRUE if line is whole (end with \r\n)*/
whole=assemble_line(count,client,&buf[0]);
}
/* process the line */
编辑:
我忘了提,epoll 在一个单独的线程中运行,而不是其他部分