我编写了一个基于posix套接字的客户端程序。该程序创建多个线程,并将锁定服务器。但是在gdb时间调试期间,程序会给出一个信息(错误)
(gdb) n Program received signal SIGPIPE, Broken pipe. [Switching to Thread 0xb74c0b40 (LWP 4864)] 0xb7fdd424 in __kernel_vsyscall () (gdb)
以下是代码:
#include <arpa/inet.h>
#include <netdb.h>
#include <netinet/in.h>
#include <pthread.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
int get_hostname_by_ip(char* h , char* ip)
{
struct hostent *he;
struct in_addr **addr_list;
int i;
if ((he = gethostbyname(h)) == NULL)
{
perror("gethostbyname");
return 1;
}
addr_list = (struct in_addr **) he->h_addr_list;
for(i = 0; addr_list[i] != NULL; i++)
{
strcpy(ip , inet_ntoa(*addr_list[i]) );
return 0;
}
return 1;
}
void client(char* h, int s)
{
int fd;
struct sockaddr_in addr;
char ch[]="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
fd = socket(AF_INET, SOCK_STREAM, 0);
addr.sin_family=AF_INET;
char* ip = new char[20];
get_hostname_by_ip(h, ip);
addr.sin_addr.s_addr=inet_addr(ip);
int port = 80;
addr.sin_port=htons(port);
if(connect(fd, (struct sockaddr*)&addr, sizeof(addr)) < 0)
{
perror("connect error");
return;
}
while(1)
{
if(send(fd, ch, sizeof(ch), 0) < 0)
{
perror("send");
}
}
//char buffer[1024];
//if(recv(fd, &buffer, sizeof(buffer), 0) < 0)
//{
// perror("recive");
//}
//printf("nReply from Server: %s\n", buffer);
close(fd);
}
struct info
{
char* h;
int c;
};
void* thread_entry_point(void* i)
{
info* in = (info*)i;
client(in->h, in->c);
}
int main(int argc, char** argv)
{
int s = atoi(argv[2]);
pthread_t t[s];
info in = {argv[1], s};
for(int i = 0; i < s; ++i)
{
pthread_create(&t[i], NULL, thread_entry_point, (void*)&in);
}
pthread_join(t[0], NULL);
return 0;
}
它是什么,该做什么?
答案 0 :(得分:40)
该过程收到了SIGPIPE
。此信号的默认行为是结束该过程。
如果SIGPIPE
尝试写入已关闭以进行写入或未连接的套接字,则会向该进程发送SIGPIPE
。
为了避免程序在这种情况下结束,你可以
让流程忽略#include <signal.h>
int main(void)
{
sigaction(SIGPIPE, &(struct sigaction){SIG_IGN}, NULL);
...
SIGPIPE
或
为#include <signal.h>
void sigpipe_handler(int unused)
{
}
int main(void)
{
sigaction(SIGPIPE, &(struct sigaction){sigpipe_handler}, NULL);
...
安装显式处理程序(通常不执行任何操作):
send*()
在这两种情况下,write()
/ -1
都会返回errno
并将EPIPE
设置为{{1}}。
答案 1 :(得分:17)
使用'gdb'进行调试时,可以按如下方式手动禁用SIGPIPE:
(gdb)处理SIGPIPE nostop
答案 2 :(得分:12)
SIGPIPE的解决方法,您可以通过以下代码忽略此信号:
#include <signal.h>
/* Catch Signal Handler functio */
void signal_callback_handler(int signum){
printf("Caught signal SIGPIPE %d\n",signum);
}
代码中的(主要或全局)
/* Catch Signal Handler SIGPIPE */
signal(SIGPIPE, signal_callback_handler);
答案 3 :(得分:4)
您已写入已由对等方关闭的连接。
答案 4 :(得分:3)
我遇到了同样的问题,它让我这个SO帖子。我得到零星的SIGPIPE信号导致我的fastcgi C程序崩溃,由nginx运行。我试图signal(SIGPIPE, SIG_IGN);
没有运气,它一直在崩溃。
原因是nginx的临时目录有权限问题。修复权限解决了SIGPIPE问题。 Details here on how to fix和more here。