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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
#include <stdio.h> #include <stdlib.h>
#include <string.h> #include <arpa/inet.h>
#include <errno.h>
const char g_serv_listen_ip[INET_ADDRSTRLEN] = "0.0.0.0"; const uint16_t g_serv_listen_port = 6000; const int g_listen_max_count = 5; const int g_buff_size = 32;
void handle_request(int, struct sockaddr_in);
int main(int arg, char *argv[]) { int listen_fd; if ((listen_fd = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP)) == -1) { perror("socket() error"); exit(EXIT_FAILURE); }
struct sockaddr_in serv_addr; memset(&serv_addr, 0, sizeof(serv_addr)); serv_addr.sin_family = AF_INET; serv_addr.sin_port = htons(g_serv_listen_port); if ((inet_pton(AF_INET, g_serv_listen_ip, &serv_addr.sin_addr)) != 1) { perror("inet_pton() error"); exit(EXIT_FAILURE); }
if ((bind(listen_fd, (struct sockaddr *)(&serv_addr), sizeof(serv_addr))) == -1) { if ((close(listen_fd)) == -1) { perror("bind() close() error"); exit(EXIT_FAILURE); }
perror("bind() error"); exit(EXIT_FAILURE); }
if ((listen(listen_fd, g_listen_max_count)) == -1) { if ((close(listen_fd)) == -1) { perror("listen() close() error"); exit(EXIT_FAILURE); }
perror("listen() error"); exit(EXIT_FAILURE); }
struct sockaddr_in clie_addr; int clie_addr_size; int connect_fd; memset(&clie_addr, 0, sizeof(clie_addr)); clie_addr_size = sizeof(struct sockaddr); pid_t pid; while (1) { if ((connect_fd = accept(listen_fd, (struct sockaddr *)(&clie_addr), &clie_addr_size)) == -1) { perror("accept() error"); continue; }
pid = fork(); if (pid == -1) { perror("fork() error"); continue; } else if (pid == 0) { if ((close(listen_fd)) == -1) { if ((close(connect_fd)) == -1) { perror("fork() close() connect_fd child_process error"); exit(EXIT_FAILURE); }
perror("fork() close() listen_fd child_process error"); exit(EXIT_FAILURE); }
handle_request(connect_fd, clie_addr);
if ((close(connect_fd)) == -1) { perror("fork() close() connect_fd2 child_process error"); exit(EXIT_FAILURE); }
exit(EXIT_SUCCESS); } else if (pid > 0) { if ((close(connect_fd)) == -1) { perror("fork() close() connect_fd parent_process error"); continue; } } }
if ((close(listen_fd)) == -1) { perror("close() listen_fd error"); exit(EXIT_FAILURE); }
return 0; }
void handle_request(int connect_fd, struct sockaddr_in clie_addr) { char clie_ip[INET_ADDRSTRLEN]; uint16_t clie_port; char clie_port_str[5]; char clie_ip_port[INET_ADDRSTRLEN + 5];
if ((inet_ntop(AF_INET, &clie_addr.sin_addr, clie_ip, sizeof(clie_ip))) == NULL) { perror("inet_ntop() error"); return; } clie_port = ntohs(clie_addr.sin_port); sprintf(clie_port_str, "%d", clie_port); strcpy(clie_ip_port, clie_ip); strcat(clie_ip_port, ":"); strcat(clie_ip_port, clie_port_str); printf("Client connection: %s\n", clie_ip_port);
char msg_recv[g_buff_size]; char msg_send[g_buff_size]; int recv_byte;
while (1) { memset(&msg_recv, 0, sizeof(*msg_recv)); memset(&msg_send, 0, sizeof(*msg_send));
recv_byte = recv(connect_fd, msg_recv, g_buff_size, 0); if (recv_byte > 0) { printf("From %s received message: %s", clie_ip_port, msg_recv);
strcpy(msg_send, msg_recv); if ((send(connect_fd, msg_send, g_buff_size, 0)) == -1) { perror("send() error"); return; } } else if (recv_byte == 0) { printf("From %s received the end of file\n", clie_ip_port); return; } else if ((recv_byte == -1) && (errno == EINTR)) { continue; } else if (recv_byte == -1) { perror("recv() error"); return; } }
return; }
|