1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include <sys/epoll.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <fcntl.h>
const int MAX_PROC_NUM = 4;
const int MAX_EVENTS = 128;
const int PORT = 8081;
const int BUF_SIZE = 1024;
const int CLIENT_SIZE = 128;
int g_pids[MAX_PROC_NUM] = {0};
void sig_handler(int signo) {
int i;
for (i = 0; i < MAX_PROC_NUM; i++) {
kill(g_pids[i], SIGKILL);
}
}
int child_procedure(int listenfd) {
struct epoll_event ev;
struct epoll_event events[MAX_EVENTS];
int epfd = 0;
int pid = 0;
char buf[BUF_SIZE];
int cnt = 0;
int i = 0;
pid = getpid();
epfd = epoll_create(CLIENT_SIZE + 1);
if (0 == epfd) {
printf("Create epoll failed\n");
return -1;
}
ev.events = EPOLLIN | EPOLLET;
ev.data.fd = listenfd;
if (epoll_ctl(epfd, EPOLL_CTL_ADD, listenfd, &ev) < 0) {
printf("Add ev failed\n");
return -1;
}
printf("Epoll init finished, process pid: %d\n", pid);
while (1) {
cnt = epoll_wait(epfd, events, MAX_EVENTS, 0);
if (cnt <= 0) {
continue;
}
for (i = 0; i < cnt; i++) {
if (events[i].data.fd == listenfd) {
// 新连接请求
int newfd;
printf("Process %d receive a connection request\n", pid);
newfd = accept(listenfd, NULL, 0);
if(newfd <=0) {
printf("Process %d accept failed\n", pid);
continue;
}
fcntl(newfd, F_SETFL, fcntl(newfd, F_GETFD, 0)|O_NONBLOCK);
ev.events = EPOLLIN | EPOLLET;
ev.data.fd = newfd;
epoll_ctl(epfd, EPOLL_CTL_ADD, newfd, &ev);
} else {
int n = read(events[i].data.fd, buf, 1024);
printf("Process %d receive a msg, length %d\n", pid, n);
if (n != 0) {
write(events[i].data.fd, buf, n);
}
close(events[i].data.fd);
epoll_ctl(epfd, EPOLL_CTL_DEL, events[i].data.fd, NULL);
}
}
}
return 0;
}
int main()
{
int listenfd = 0;
int cnt = 0;
int i = 0;
struct sockaddr_in servaddr;
// signal(SIGINT, sig_handler);
// signal(SIGKILL, sig_handler);
listenfd = socket(AF_INET, SOCK_STREAM, 0);
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
servaddr.sin_port = htons(PORT);
fcntl(listenfd, F_SETFL, fcntl(listenfd, F_GETFD, 0)|O_NONBLOCK);
if (bind(listenfd, (struct sockaddr *) &servaddr, sizeof(struct sockaddr)) == -1) {
printf("bind error\n");
return -1;
}
if (listen(listenfd, CLIENT_SIZE) == -1) {
printf("Listen failed\n");
return -1;
}
for (i = 0; i < MAX_PROC_NUM; i++) {
g_pids[i] = fork();
if (0 == g_pids[i]) {
// 子进程
break;
}
}
if (i == MAX_PROC_NUM) {
// 注册信号,父进程退出,子进程一起kill掉
signal(SIGINT, sig_handler);
signal(SIGKILL, sig_handler);
// 父进程,阻塞
while(1) {
sleep(100);
}
} else {
// 子进程,进入子进程流程
return child_procedure(listenfd);
}
return 0;
}
|