-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxy.c
More file actions
200 lines (176 loc) · 6.45 KB
/
proxy.c
File metadata and controls
200 lines (176 loc) · 6.45 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
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 "csapp.h"
/* Recommended max cache and object sizes */
#define MAX_CACHE_SIZE 1049000
#define MAX_OBJECT_SIZE 102400
/* 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 *requestlint_hdr_format = "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";
// commnuication from client to server
void doit(int connfd);
// parsing the uri that client requests
void parse_uri(char *uri, char *hostname, char *path, int *port);
void build_http_header(char *http_header, char *hostname, char *path, int port, rio_t *client_rio);
// int connect_endServer(char *hostname, int port, char *http_header);
int connect_endServer(char *hostname, int port);
/* 쓰레드가 생성될 때 수행하게 될 함수를 선언한다. */
void *thread(void *vargsp);
/*
main() : 클라이언트를 연결할 때마다 그 연결을 수행하는 쓰레드를 만들어준다.
*/
int main(int argc, char **argv)
{
int listenfd, p_connfd;
char hostname[MAXLINE], port[MAXLINE];
socklen_t clientlen;
struct sockaddr_storage clientaddr; /*generic sockaddr struct which is 28 Bytes.The same use as sockaddr*/
if (argc != 2)
{
fprintf(stderr, "usage :%s <port> \n", argv[0]);
exit(1);
}
/* 해당 포트 번호에 해당하는 듣기 소켓 식별자를 열어준다. */
listenfd = Open_listenfd(argv[1]);
/* 클라이언트의 요청이 올 때마다 새로 연결 소켓을 만들어 doit()호출 */
while (1)
{
clientlen = sizeof(clientaddr);
/* 클라이언트에게서 받은 연결 요청을 accept한다. p_connfd = proxy의 connfd*/
p_connfd = Accept(listenfd, (SA *)&clientaddr, &clientlen);
/* 연결이 성공했다는 메세지를 위해. Getnameinfo를 호출하면서 hostname과 port가 채워진다.*/
Getnameinfo((SA *)&clientaddr, clientlen, hostname, MAXLINE, port, MAXLINE, 0);
printf("Accepted connection from (%s %s).\n", hostname, port);
doit(p_connfd);
Close(p_connfd);
}
return 0;
}
void doit(int connfd)
{
// proxy 뒤에 존재하는 end server
int end_serverfd;
int port;
char buf[MAXLINE], method[MAXLINE], uri[MAXLINE], version[MAXLINE];
char endserver_http_header[MAXLINE];
char hostname[MAXLINE], path[MAXLINE];
/*rio is client's rio,server_rio is endserver's rio*/
rio_t rio, server_rio;
Rio_readinitb(&rio, connfd);
// read the client's rio into buffer
Rio_readlineb(&rio, buf, MAXLINE);
sscanf(buf, "%s %s %s", method, uri, version);
// request의 method가 GET이 아니면 error 처리
if (strcasecmp(method, "GET"))
{
printf("Proxy does not implement the method");
return;
}
parse_uri(uri, hostname, path, &port);
/*build the http header which will send to the end server*/
build_http_header(endserver_http_header, hostname, path, port, &rio);
/*connect to the end server*/
// end_serverfd = connect_endServer(hostname, port, endserver_http_header);
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_header, strlen(endserver_http_header));
/*receive message from end server and send to the client*/
size_t n;
while ((n = Rio_readlineb(&server_rio, buf, MAXLINE)) != 0)
{
printf("proxy received %ld bytes,then send\n", n);
Rio_writen(connfd, buf, n);
}
Close(end_serverfd);
}
// http_header 인자에 만들어서 반환
void build_http_header(char *http_header, char *hostname, char *path, int port, rio_t *client_rio)
{
char buf[MAXLINE], request_hdr[MAXLINE], other_hdr[MAXLINE], host_hdr[MAXLINE];
// request_hdr에 reqquestlint_hdr_format을 담음(path인자는 reqquestlint_hdr_format에 들어갈 값)
// path는 request source 경로
sprintf(request_hdr, requestlint_hdr_format, path);
/*get other request header for client rio and change it */
while (Rio_readlineb(client_rio, buf, MAXLINE) > 0)
{
// 읽어들인 값(buf)가 /r/n이면 break
if (strcmp(buf, endof_hdr) == 0)
{
break;
}
// host header값 만들어주기
if (!strncasecmp(buf, host_key, strlen(host_key))) /*Host:*/
{
// buf를 host_hdr에서 지정한 위치로 복사
strcpy(host_hdr, buf);
continue;
}
// host header 이외의 header 만들어주기
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);
}
}
// request header에 host header가 없다면 hostname으로 만들어주기
if (strlen(host_hdr) == 0)
{
sprintf(host_hdr, host_hdr_format, hostname);
}
// 완전체 만들어주기
sprintf(http_header, "%s%s%s%s%s%s%s", request_hdr, 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 *http_header){
inline int connect_endServer(char *hostname, int port)
{
char portStr[100];
// portstr에 port 넣어주기
sprintf(portStr, "%d", port);
// 해당 hostname과 portStr로 end_server에게 가는 요청만들어주기
return Open_clientfd(hostname, portStr);
}
/*parse the uri to get hostname,file path ,port*/
void parse_uri(char *uri, char *hostname, char *path, int *port)
{
*port = 80;
// uri에서 "//"의 첫 번째 표시 시작 위치에 대한 포인터를 리턴
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);
}
else
{
pos2 = strstr(pos, "/");
if (pos2 != NULL)
{
*pos2 = '\0';
sscanf(pos, "%s", hostname);
*pos2 = '/';
sscanf(pos2, "%s", path);
}
else
{
sscanf(pos, "%s", hostname);
}
}
return;
}