-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxy_v1_singlethread.cpp
More file actions
165 lines (136 loc) · 4.23 KB
/
Copy pathproxy_v1_singlethread.cpp
File metadata and controls
165 lines (136 loc) · 4.23 KB
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
// proxy_v1_singlethread.cpp
// Usage: ./proxy_v1 <listen_port> <backend_host> <backend_port>
#include <arpa/inet.h>
#include <cstring>
#include <iostream>
#include <netdb.h>
#include <netinet/in.h>
#include <string>
#include <sys/socket.h>
#include <unistd.h>
namespace {
constexpr int kListenBacklog = 128;
constexpr size_t kBufferSize = 4096;
// Establishes connection to backend; returns socket fd or -1 on error.
int connect_to_backend(const std::string &host, int port) {
addrinfo hints{};
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
addrinfo *result = nullptr;
std::string port_str = std::to_string(port);
int rc = getaddrinfo(host.c_str(), port_str.c_str(), &hints, &result);
if (rc != 0) {
std::cerr << "getaddrinfo failed for " << host << ":" << port << " - "
<< gai_strerror(rc) << "\n";
return -1;
}
int fd = -1;
for (addrinfo *p = result; p != nullptr; p = p->ai_next) {
fd = socket(p->ai_family, p->ai_socktype, p->ai_protocol);
if (fd < 0)
continue;
if (connect(fd, p->ai_addr, p->ai_addrlen) == 0) {
break; // Connected successfully
}
close(fd);
fd = -1;
}
freeaddrinfo(result);
return fd;
}
// Reads available data from src_fd and guarantees full write to dst_fd.
ssize_t forward_once(int src_fd, int dst_fd) {
char buffer[kBufferSize];
ssize_t n_read = recv(src_fd, buffer, sizeof(buffer), 0);
if (n_read <= 0) {
return n_read; // 0 = EOF, <0 = error
}
// Loop to handle potential partial sends
ssize_t total_sent = 0;
while (total_sent < n_read) {
ssize_t n_sent = send(dst_fd, buffer + total_sent, n_read - total_sent, 0);
if (n_sent < 0) {
perror("send");
return -1;
}
total_sent += n_sent;
}
return total_sent;
}
// Relays request then response for a single client connection.
void handle_client(int client_fd, const std::string &backend_host,
int backend_port) {
int backend_fd = connect_to_backend(backend_host, backend_port);
if (backend_fd < 0) {
std::cerr << "[proxy] failed to connect to backend " << backend_host << ":"
<< backend_port << "\n";
close(client_fd);
return;
}
// Forward request (client -> backend)
ssize_t forwarded = forward_once(client_fd, backend_fd);
if (forwarded <= 0) {
close(client_fd);
close(backend_fd);
return;
}
// Forward response (backend -> client)
forward_once(backend_fd, client_fd);
close(backend_fd);
close(client_fd);
}
} // namespace
int main(int argc, char *argv[]) {
if (argc < 4) {
std::cerr << "Usage: " << argv[0]
<< " <listen_port> <backend_host> <backend_port>\n";
return 1;
}
int listen_port = std::stoi(argv[1]);
std::string backend_host = argv[2];
int backend_port = std::stoi(argv[3]);
int listen_fd = socket(AF_INET, SOCK_STREAM, 0);
if (listen_fd < 0) {
perror("socket");
return 1;
}
int opt = 1;
if (setsockopt(listen_fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) < 0) {
perror("setsockopt");
}
sockaddr_in addr{};
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = INADDR_ANY;
addr.sin_port = htons(listen_port);
if (bind(listen_fd, reinterpret_cast<sockaddr *>(&addr), sizeof(addr)) < 0) {
perror("bind");
close(listen_fd);
return 1;
}
if (listen(listen_fd, kListenBacklog) < 0) {
perror("listen");
close(listen_fd);
return 1;
}
std::cout << "[proxy v1 - single-threaded] listening on port " << listen_port
<< ", forwarding to " << backend_host << ":" << backend_port
<< std::endl;
while (true) {
sockaddr_in client_addr{};
socklen_t client_len = sizeof(client_addr);
int client_fd = accept(
listen_fd, reinterpret_cast<sockaddr *>(&client_addr), &client_len);
if (client_fd < 0) {
perror("accept");
continue;
}
char client_ip[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &client_addr.sin_addr, client_ip, sizeof(client_ip));
std::cout << "[proxy] accepted connection from " << client_ip << ":"
<< ntohs(client_addr.sin_port) << std::endl;
// Handles request synchronously before moving to the next accept()
handle_client(client_fd, backend_host, backend_port);
}
close(listen_fd);
return 0;
}