forked from Wendyl42/proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.c
243 lines (207 loc) · 7.39 KB
/
proxy.c
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
#include <stdio.h>
#include "cache.h"
#include "csapp.h"
#include "sbuf.h"
/* Recommended max cache and object sizes */
#define MAX_CACHE_SIZE 1049000
#define MAX_OBJECT_SIZE 102400
/* Size of thread pool and sbuf */
#define NTHREADS 8
#define SBUFSIZE 32
/* You won't lose style points for including this long line in your code */
static const char *user_agent_hdr =
"User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.3) Gecko/20120305 "
"Firefox/10.0.3\r\n";
static const char *conn_hdr = "Connection: close\r\n";
static const char *prox_hdr = "Proxy-Connection: close\r\n";
static const char *host_hdr_format = "Host: %s\r\n";
static const char *request_line_f = "GET %s HTTP/1.0\r\n";
static const char *endof_hdr = "\r\n";
static const char *connection_key = "Connection";
static const char *user_agent_key = "User-Agent";
static const char *proxy_connection_key = "Proxy-Connection";
static const char *host_key = "Host";
sbuf_t sbuf; /* Shared buffer of connfd */
void *thread(void *vargp);
void doit(int connfd);
void parse_uri(char *uri, char *hostname, char *path, int *port);
void build_http_msg(char *http_msg, char *hostname, char *path, int port,
rio_t *client_rio);
int connect_endServer(char *hostname, int port);
int main(int argc, char **argv) {
int listenfd, connfd;
pthread_t tid;
socklen_t clientlen;
char hostname[MAXLINE], port[MAXLINE];
struct sockaddr_storage clientaddr;
if (argc != 2) {
fprintf(stderr, "usage :%s <port> \n", argv[0]);
exit(1);
}
signal(SIGPIPE, SIG_IGN);
listenfd = Open_listenfd(argv[1]);
cache_init();
sbuf_init(&sbuf, SBUFSIZE);
for (int i = 0; i < NTHREADS; ++i) Pthread_create(&tid, NULL, thread, NULL);
while (1) {
clientlen = sizeof(clientaddr);
connfd = Accept(listenfd, (SA *)&clientaddr, &clientlen);
/* print accepted message */
Getnameinfo((SA *)&clientaddr, clientlen, hostname, MAXLINE, port,
MAXLINE, 0);
printf("Accepted connection from (%s %s).\n", hostname, port);
/* insert connfd into sbuf */
sbuf_insert(&sbuf, connfd);
}
Close(listenfd);
sbuf_deinit(&sbuf);
cache_deinit();
return 0;
}
void *thread(void *vargp) {
Pthread_detach(pthread_self());
int connfd = sbuf_remove(&sbuf);
doit(connfd);
Close(connfd);
}
/*handle the client HTTP transaction*/
void doit(int connfd) {
int end_serverfd; /* the end server file descriptor */
char buf[MAXLINE], method[MAXLINE], uri[MAXLINE], version[MAXLINE];
char endserver_http_msg[MAXLINE];
/* store the request line arguments */
char hostname[MAXLINE], path[MAXLINE];
int port;
rio_t rio,
server_rio; /* rio is client's rio,server_rio is endserver's rio */
Rio_readinitb(&rio, connfd);
Rio_readlineb(&rio, buf, MAXLINE);
sscanf(buf, "%s %s %s", method, uri,
version); /* read the client request line */
if (strcasecmp(method, "GET")) {
clienterror(connfd, method, "501", "Not Implemented",
"Proxy does not implement this method");
return;
}
if (cache_read(uri, connfd)) return;
/* parse the uri to get hostname, file path, port */
parse_uri(uri, hostname, path, &port);
/*build the http header which will send to the end server*/
build_http_msg(endserver_http_msg, hostname, path, port, &rio);
/*connect to the end server*/
end_serverfd = connect_endServer(hostname, port);
if (end_serverfd < 0) {
printf("connection failed\n");
return;
}
Rio_readinitb(&server_rio, end_serverfd);
/*write the http header to endserver*/
Rio_writen(end_serverfd, endserver_http_msg, strlen(endserver_http_msg));
/*receive message from end server and send to the client*/
size_t n, size = 0;
char data[MAX_OBJECT_SIZE];
/* whether write to cache */
int use_cache = 1;
while ((n = Rio_readlineb(&server_rio, buf, MAXLINE)) != 0) {
if (((size + n) <= MAX_OBJECT_SIZE) && use_cache) {
memcpy(data + size, buf, n);
size += n;
} else {
use_cache = 0;
}
printf("proxy received %d bytes,then send\n", n);
printf("proxy has received %d bytes\n", size);
Rio_writen(connfd, buf, n);
}
if (use_cache) {
printf("recived %d bytes in total, writing it to cache\n", size);
cache_write(uri, data, size);
}
Close(end_serverfd);
}
void build_http_msg(char *http_msg, char *hostname, char *path, int port,
rio_t *client_rio) {
char buf[MAXLINE], request_line[MAXLINE], other_hdr[MAXLINE],
host_hdr[MAXLINE];
/* request line */
sprintf(request_line, request_line_f, path);
/*get other request header for client rio and change it */
while (Rio_readlineb(client_rio, buf, MAXLINE) > 0) {
if (strcmp(buf, endof_hdr) == 0) break; /*EOF*/
if (!strncasecmp(buf, host_key, strlen(host_key))) /*Host:*/
{
strcpy(host_hdr, buf);
continue;
}
if (!strncasecmp(buf, connection_key, strlen(connection_key)) &&
!strncasecmp(buf, proxy_connection_key,
strlen(proxy_connection_key)) &&
!strncasecmp(buf, user_agent_key, strlen(user_agent_key))) {
strcat(other_hdr, buf);
}
}
if (strlen(host_hdr) == 0) {
sprintf(host_hdr, host_hdr_format, hostname);
}
sprintf(http_msg, "%s%s%s%s%s%s%s", request_line, host_hdr, conn_hdr,
prox_hdr, user_agent_hdr, other_hdr, endof_hdr);
return;
}
/* Connect to the end server */
inline int connect_endServer(char *hostname, int port) {
char portStr[100];
sprintf(portStr, "%d", port);
return Open_clientfd(hostname, portStr);
}
void parse_uri(char *uri, char *hostname, char *path, int *port) {
*port = 80;
char *pos = strstr(uri, "//");
pos = pos != NULL ? pos + 2 : uri;
char *pos2 = strstr(pos, ":");
if (pos2 != NULL) {
*pos2 = '\0';
sscanf(pos, "%s", hostname);
sscanf(pos2 + 1, "%d%s", port, path);
*pos2 = ':';
} else {
pos2 = strstr(pos, "/");
if (pos2 != NULL) {
*pos2 = '\0';
sscanf(pos, "%s", hostname);
*pos2 = '/';
sscanf(pos2, "%s", path);
} else {
sscanf(pos, "%s", hostname);
sscanf("/", "%s", path);
}
}
return;
}
/*
* clienterror - returns an error message to the client
*/
/* $begin clienterror */
void clienterror(int fd, char *cause, char *errnum, char *shortmsg,
char *longmsg) {
char buf[MAXLINE];
/* Print the HTTP response headers */
sprintf(buf, "HTTP/1.0 %s %s\r\n", errnum, shortmsg);
Rio_writen(fd, buf, strlen(buf));
sprintf(buf, "Content-type: text/html\r\n\r\n");
Rio_writen(fd, buf, strlen(buf));
/* Print the HTTP response body */
sprintf(buf, "<html><title>Tiny Error</title>");
Rio_writen(fd, buf, strlen(buf));
sprintf(buf,
"<body bgcolor="
"ffffff"
">\r\n");
Rio_writen(fd, buf, strlen(buf));
sprintf(buf, "%s: %s\r\n", errnum, shortmsg);
Rio_writen(fd, buf, strlen(buf));
sprintf(buf, "<p>%s: %s\r\n", longmsg, cause);
Rio_writen(fd, buf, strlen(buf));
sprintf(buf, "<hr><em>The Tiny Web server</em>\r\n");
Rio_writen(fd, buf, strlen(buf));
}
/* $end clienterror */