Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: net/server/http_server.cc

Issue 296053012: Replace StreamListenSocket with StreamSocket in HttpServer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed unittest failures. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/server/http_server.h" 5 #include "net/server/http_server.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/stl_util.h" 9 #include "base/stl_util.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
11 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
12 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
13 #include "base/sys_byteorder.h" 13 #include "base/sys_byteorder.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "net/base/net_errors.h" 15 #include "net/base/net_errors.h"
16 #include "net/server/http_connection.h" 16 #include "net/server/http_connection.h"
17 #include "net/server/http_server_request_info.h" 17 #include "net/server/http_server_request_info.h"
18 #include "net/server/http_server_response_info.h" 18 #include "net/server/http_server_response_info.h"
19 #include "net/server/web_socket.h" 19 #include "net/server/web_socket.h"
20 #include "net/socket/tcp_listen_socket.h" 20 #include "net/socket/server_socket.h"
21 #include "net/socket/stream_socket.h"
22 #include "net/socket/tcp_server_socket.h"
21 23
22 namespace net { 24 namespace net {
23 25
24 HttpServer::HttpServer(const StreamListenSocketFactory& factory, 26 HttpServer::HttpServer(scoped_ptr<ServerSocket> server_socket,
25 HttpServer::Delegate* delegate) 27 HttpServer::Delegate* delegate)
26 : delegate_(delegate), 28 : server_socket_(server_socket.Pass()),
27 server_(factory.CreateAndListen(this)) { 29 delegate_(delegate),
30 last_id_(0),
31 weak_ptr_factory_(this) {
32 DCHECK(server_socket_);
33 DoAcceptLoop();
34 }
35
36 HttpServer::~HttpServer() {
37 STLDeleteContainerPairSecondPointers(
38 id_to_connection_.begin(), id_to_connection_.end());
28 } 39 }
29 40
30 void HttpServer::AcceptWebSocket( 41 void HttpServer::AcceptWebSocket(
31 int connection_id, 42 int connection_id,
32 const HttpServerRequestInfo& request) { 43 const HttpServerRequestInfo& request) {
33 HttpConnection* connection = FindConnection(connection_id); 44 HttpConnection* connection = FindConnection(connection_id);
34 if (connection == NULL) 45 if (connection == NULL)
35 return; 46 return;
36 47 DCHECK(connection->web_socket());
37 DCHECK(connection->web_socket_.get()); 48 connection->web_socket()->Accept(request);
38 connection->web_socket_->Accept(request);
39 } 49 }
40 50
41 void HttpServer::SendOverWebSocket(int connection_id, 51 void HttpServer::SendOverWebSocket(int connection_id,
42 const std::string& data) { 52 const std::string& data) {
43 HttpConnection* connection = FindConnection(connection_id); 53 HttpConnection* connection = FindConnection(connection_id);
44 if (connection == NULL) 54 if (connection == NULL)
45 return; 55 return;
46 DCHECK(connection->web_socket_.get()); 56 DCHECK(connection->web_socket());
47 connection->web_socket_->Send(data); 57 connection->web_socket()->Send(data);
48 } 58 }
49 59
50 void HttpServer::SendRaw(int connection_id, const std::string& data) { 60 void HttpServer::SendRaw(int connection_id, const std::string& data) {
51 HttpConnection* connection = FindConnection(connection_id); 61 HttpConnection* connection = FindConnection(connection_id);
52 if (connection == NULL) 62 if (connection == NULL)
53 return; 63 return;
54 connection->Send(data); 64
65 bool writing_in_progress = !connection->write_buf()->IsEmpty();
66 if (connection->write_buf()->Append(data) && !writing_in_progress)
67 DoWriteLoop(connection);
55 } 68 }
56 69
57 void HttpServer::SendResponse(int connection_id, 70 void HttpServer::SendResponse(int connection_id,
58 const HttpServerResponseInfo& response) { 71 const HttpServerResponseInfo& response) {
59 HttpConnection* connection = FindConnection(connection_id); 72 SendRaw(connection_id, response.Serialize());
60 if (connection == NULL)
61 return;
62 connection->Send(response);
63 } 73 }
64 74
65 void HttpServer::Send(int connection_id, 75 void HttpServer::Send(int connection_id,
66 HttpStatusCode status_code, 76 HttpStatusCode status_code,
67 const std::string& data, 77 const std::string& data,
68 const std::string& content_type) { 78 const std::string& content_type) {
69 HttpServerResponseInfo response(status_code); 79 HttpServerResponseInfo response(status_code);
70 response.SetBody(data, content_type); 80 response.SetContentHeaders(data.size(), content_type);
71 SendResponse(connection_id, response); 81 SendResponse(connection_id, response);
82 SendRaw(connection_id, data);
72 } 83 }
73 84
74 void HttpServer::Send200(int connection_id, 85 void HttpServer::Send200(int connection_id,
75 const std::string& data, 86 const std::string& data,
76 const std::string& content_type) { 87 const std::string& content_type) {
77 Send(connection_id, HTTP_OK, data, content_type); 88 Send(connection_id, HTTP_OK, data, content_type);
78 } 89 }
79 90
80 void HttpServer::Send404(int connection_id) { 91 void HttpServer::Send404(int connection_id) {
81 SendResponse(connection_id, HttpServerResponseInfo::CreateFor404()); 92 SendResponse(connection_id, HttpServerResponseInfo::CreateFor404());
82 } 93 }
83 94
84 void HttpServer::Send500(int connection_id, const std::string& message) { 95 void HttpServer::Send500(int connection_id, const std::string& message) {
85 SendResponse(connection_id, HttpServerResponseInfo::CreateFor500(message)); 96 SendResponse(connection_id, HttpServerResponseInfo::CreateFor500(message));
86 } 97 }
87 98
88 void HttpServer::Close(int connection_id) { 99 void HttpServer::Close(int connection_id) {
89 HttpConnection* connection = FindConnection(connection_id); 100 // The call stack might have callbacks which still have the pointer of
90 if (connection == NULL) 101 // connection. Instead of referencing connection with ID all the time,
91 return; 102 // destroys the connection in next run loop to make sure any pending
92 103 // callbacks in the call stack return.
93 // Initiating close from server-side does not lead to the DidClose call. 104 base::MessageLoopProxy::current()->PostTask(
94 // Do it manually here. 105 FROM_HERE,
95 DidClose(connection->socket_.get()); 106 base::Bind(&HttpServer::CloseConnection,
107 weak_ptr_factory_.GetWeakPtr(), connection_id));
mmenke 2014/08/15 14:23:16 This is my remaining concern - this is really weir
byungchul 2014/08/15 17:12:17 Took the first approach because delegate_ is priva
96 } 108 }
97 109
98 int HttpServer::GetLocalAddress(IPEndPoint* address) { 110 int HttpServer::GetLocalAddress(IPEndPoint* address) {
99 if (!server_) 111 return server_socket_->GetLocalAddress(address);
100 return ERR_SOCKET_NOT_CONNECTED;
101 return server_->GetLocalAddress(address);
102 } 112 }
103 113
104 void HttpServer::DidAccept(StreamListenSocket* server, 114 void HttpServer::SetReceiveBufferSize(int connection_id, int32 size) {
105 scoped_ptr<StreamListenSocket> socket) { 115 HttpConnection* connection = FindConnection(connection_id);
106 HttpConnection* connection = new HttpConnection(this, socket.Pass()); 116 DCHECK(connection);
107 id_to_connection_[connection->id()] = connection; 117 connection->read_buf()->set_max_buffer_size(size);
108 // TODO(szym): Fix socket access. Make HttpConnection the Delegate.
109 socket_to_connection_[connection->socket_.get()] = connection;
110 } 118 }
111 119
112 void HttpServer::DidRead(StreamListenSocket* socket, 120 void HttpServer::SetSendBufferSize(int connection_id, int32 size) {
113 const char* data, 121 HttpConnection* connection = FindConnection(connection_id);
114 int len) { 122 DCHECK(connection);
115 HttpConnection* connection = FindConnection(socket); 123 connection->write_buf()->set_max_buffer_size(size);
116 DCHECK(connection != NULL); 124 }
117 if (connection == NULL) 125
126 void HttpServer::DoAcceptLoop() {
127 int rv;
128 do {
129 rv = server_socket_->Accept(&accepted_socket_,
130 base::Bind(&HttpServer::OnAcceptCompleted,
131 weak_ptr_factory_.GetWeakPtr()));
132 if (rv == ERR_IO_PENDING)
133 return;
134 rv = HandleAcceptResult(rv);
135 } while (rv == OK);
136 }
137
138 void HttpServer::OnAcceptCompleted(int rv) {
139 if (HandleAcceptResult(rv) == OK)
140 DoAcceptLoop();
141 }
142
143 int HttpServer::HandleAcceptResult(int rv) {
144 if (rv < 0) {
145 LOG(ERROR) << "Accept error: rv=" << rv;
146 return rv;
147 }
148
149 HttpConnection* connection =
150 new HttpConnection(++last_id_, accepted_socket_.Pass());
151 id_to_connection_[connection->id()] = connection;
152 DoReadLoop(connection);
153 return OK;
154 }
155
156 void HttpServer::DoReadLoop(HttpConnection* connection) {
157 int rv;
158 do {
159 HttpConnection::ReadIOBuffer* read_buf = connection->read_buf();
160 // Increases read buffer size if necessary.
161 if (read_buf->RemainingCapacity() == 0 && !read_buf->IncreaseCapacity()) {
162 Close(connection->id());
163 return;
164 }
165
166 rv = connection->socket()->Read(
167 read_buf,
168 read_buf->RemainingCapacity(),
169 base::Bind(&HttpServer::OnReadCompleted,
170 weak_ptr_factory_.GetWeakPtr(), connection->id()));
171 if (rv == ERR_IO_PENDING)
172 return;
173 rv = HandleReadResult(connection, rv);
174 } while (rv == OK);
175 }
176
177 void HttpServer::OnReadCompleted(int connection_id, int rv) {
178 HttpConnection* connection = FindConnection(connection_id);
179 if (!connection) // It might be closed right before by write error.
118 return; 180 return;
119 181
120 connection->recv_data_.append(data, len); 182 if (HandleReadResult(connection, rv) == OK)
121 while (connection->recv_data_.length()) { 183 DoReadLoop(connection);
122 if (connection->web_socket_.get()) { 184 }
185
186 int HttpServer::HandleReadResult(HttpConnection* connection, int rv) {
187 if (rv <= 0) {
188 Close(connection->id());
189 return rv == 0 ? ERR_CONNECTION_CLOSED : rv;
190 }
191
192 HttpConnection::ReadIOBuffer* read_buf = connection->read_buf();
193 read_buf->DidRead(rv);
194
195 // Handles http requests or websocket messages.
196 while (read_buf->GetSize() > 0) {
197 if (connection->web_socket()) {
123 std::string message; 198 std::string message;
124 WebSocket::ParseResult result = connection->web_socket_->Read(&message); 199 WebSocket::ParseResult result = connection->web_socket()->Read(&message);
125 if (result == WebSocket::FRAME_INCOMPLETE) 200 if (result == WebSocket::FRAME_INCOMPLETE)
126 break; 201 break;
127 202
128 if (result == WebSocket::FRAME_CLOSE || 203 if (result == WebSocket::FRAME_CLOSE ||
129 result == WebSocket::FRAME_ERROR) { 204 result == WebSocket::FRAME_ERROR) {
130 Close(connection->id()); 205 Close(connection->id());
131 break; 206 break;
132 } 207 }
133 delegate_->OnWebSocketMessage(connection->id(), message); 208 delegate_->OnWebSocketMessage(connection->id(), message);
134 continue; 209 continue;
135 } 210 }
136 211
137 HttpServerRequestInfo request; 212 HttpServerRequestInfo request;
138 size_t pos = 0; 213 size_t pos = 0;
139 if (!ParseHeaders(connection, &request, &pos)) 214 if (!ParseHeaders(read_buf->StartOfBuffer(), read_buf->GetSize(),
215 &request, &pos)) {
140 break; 216 break;
217 }
141 218
142 // Sets peer address if exists. 219 // Sets peer address if exists.
143 socket->GetPeerAddress(&request.peer); 220 connection->socket()->GetPeerAddress(&request.peer);
144 221
145 if (request.HasHeaderValue("connection", "upgrade")) { 222 if (request.HasHeaderValue("connection", "upgrade")) {
146 connection->web_socket_.reset(WebSocket::CreateWebSocket(connection, 223 scoped_ptr<WebSocket> websocket(
147 request, 224 WebSocket::CreateWebSocket(this, connection, request, &pos));
148 &pos)); 225 if (!websocket) // Not enough data was received.
149
150 if (!connection->web_socket_.get()) // Not enough data was received.
151 break; 226 break;
227 connection->SetWebSocket(websocket.Pass());
228 read_buf->DidConsume(pos);
152 delegate_->OnWebSocketRequest(connection->id(), request); 229 delegate_->OnWebSocketRequest(connection->id(), request);
153 connection->Shift(pos);
154 continue; 230 continue;
155 } 231 }
156 232
157 const char kContentLength[] = "content-length"; 233 const char kContentLength[] = "content-length";
158 if (request.headers.count(kContentLength)) { 234 if (request.headers.count(kContentLength) > 0) {
159 size_t content_length = 0; 235 size_t content_length = 0;
160 const size_t kMaxBodySize = 100 << 20; 236 const size_t kMaxBodySize = 100 << 20;
161 if (!base::StringToSizeT(request.GetHeaderValue(kContentLength), 237 if (!base::StringToSizeT(request.GetHeaderValue(kContentLength),
162 &content_length) || 238 &content_length) ||
163 content_length > kMaxBodySize) { 239 content_length > kMaxBodySize) {
164 connection->Send(HttpServerResponseInfo::CreateFor500( 240 SendResponse(connection->id(),
165 "request content-length too big or unknown: " + 241 HttpServerResponseInfo::CreateFor500(
166 request.GetHeaderValue(kContentLength))); 242 "request content-length too big or unknown: " +
167 DidClose(socket); 243 request.GetHeaderValue(kContentLength)));
244 Close(connection->id());
168 break; 245 break;
169 } 246 }
170 247
171 if (connection->recv_data_.length() - pos < content_length) 248 if (read_buf->GetSize() - pos < content_length)
172 break; // Not enough data was received yet. 249 break; // Not enough data was received yet.
173 request.data = connection->recv_data_.substr(pos, content_length); 250 request.data.assign(read_buf->StartOfBuffer() + pos, content_length);
174 pos += content_length; 251 pos += content_length;
175 } 252 }
176 253
254 read_buf->DidConsume(pos);
177 delegate_->OnHttpRequest(connection->id(), request); 255 delegate_->OnHttpRequest(connection->id(), request);
178 connection->Shift(pos); 256 }
257
258 return OK;
259 }
260
261 void HttpServer::DoWriteLoop(HttpConnection* connection) {
262 int rv = OK;
263 HttpConnection::QueuedWriteIOBuffer* write_buf = connection->write_buf();
264 while (rv == OK && write_buf->GetSizeToWrite() > 0) {
265 rv = connection->socket()->Write(
266 write_buf,
267 write_buf->GetSizeToWrite(),
268 base::Bind(&HttpServer::OnWriteCompleted,
269 weak_ptr_factory_.GetWeakPtr(), connection->id()));
270 if (rv == ERR_IO_PENDING || rv == OK)
271 return;
272 rv = HandleWriteResult(connection, rv);
179 } 273 }
180 } 274 }
181 275
182 void HttpServer::DidClose(StreamListenSocket* socket) { 276 void HttpServer::OnWriteCompleted(int connection_id, int rv) {
183 HttpConnection* connection = FindConnection(socket); 277 HttpConnection* connection = FindConnection(connection_id);
184 DCHECK(connection != NULL); 278 if (!connection) // It might be closed right before by read error.
185 id_to_connection_.erase(connection->id()); 279 return;
186 socket_to_connection_.erase(connection->socket_.get()); 280
187 delete connection; 281 if (HandleWriteResult(connection, rv) == OK)
282 DoWriteLoop(connection);
188 } 283 }
189 284
190 HttpServer::~HttpServer() { 285 int HttpServer::HandleWriteResult(HttpConnection* connection, int rv) {
191 STLDeleteContainerPairSecondPointers( 286 if (rv < 0) {
192 id_to_connection_.begin(), id_to_connection_.end()); 287 Close(connection->id());
288 return rv;
289 }
290
291 connection->write_buf()->DidConsume(rv);
292 return OK;
193 } 293 }
194 294
295 void HttpServer::CloseConnection(int connection_id) {
296 HttpConnection* connection = FindConnection(connection_id);
297 if (connection == NULL)
298 return;
299
300 id_to_connection_.erase(connection_id);
301 delete connection;
302 delegate_->OnClose(connection_id);
303 }
304
305 namespace {
306
195 // 307 //
196 // HTTP Request Parser 308 // HTTP Request Parser
197 // This HTTP request parser uses a simple state machine to quickly parse 309 // This HTTP request parser uses a simple state machine to quickly parse
198 // through the headers. The parser is not 100% complete, as it is designed 310 // through the headers. The parser is not 100% complete, as it is designed
199 // for use in this simple test driver. 311 // for use in this simple test driver.
200 // 312 //
201 // Known issues: 313 // Known issues:
202 // - does not handle whitespace on first HTTP line correctly. Expects 314 // - does not handle whitespace on first HTTP line correctly. Expects
203 // a single space between the method/url and url/protocol. 315 // a single space between the method/url and url/protocol.
204 316
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 case '\r': 360 case '\r':
249 return INPUT_CR; 361 return INPUT_CR;
250 case '\n': 362 case '\n':
251 return INPUT_LF; 363 return INPUT_LF;
252 case ':': 364 case ':':
253 return INPUT_COLON; 365 return INPUT_COLON;
254 } 366 }
255 return INPUT_DEFAULT; 367 return INPUT_DEFAULT;
256 } 368 }
257 369
258 bool HttpServer::ParseHeaders(HttpConnection* connection, 370 } // namespace
371
372 bool HttpServer::ParseHeaders(const char* data,
373 size_t data_len,
259 HttpServerRequestInfo* info, 374 HttpServerRequestInfo* info,
260 size_t* ppos) { 375 size_t* ppos) {
261 size_t& pos = *ppos; 376 size_t& pos = *ppos;
262 size_t data_len = connection->recv_data_.length();
263 int state = ST_METHOD; 377 int state = ST_METHOD;
264 std::string buffer; 378 std::string buffer;
265 std::string header_name; 379 std::string header_name;
266 std::string header_value; 380 std::string header_value;
267 while (pos < data_len) { 381 while (pos < data_len) {
268 char ch = connection->recv_data_[pos++]; 382 char ch = data[pos++];
269 int input = charToInput(ch); 383 int input = charToInput(ch);
270 int next_state = parser_state[state][input]; 384 int next_state = parser_state[state][input];
271 385
272 bool transition = (next_state != state); 386 bool transition = (next_state != state);
273 HttpServerRequestInfo::HeadersMap::iterator it; 387 HttpServerRequestInfo::HeadersMap::iterator it;
274 if (transition) { 388 if (transition) {
275 // Do any actions based on state transitions. 389 // Do any actions based on state transitions.
276 switch (state) { 390 switch (state) {
277 case ST_METHOD: 391 case ST_METHOD:
278 info->method = buffer; 392 info->method = buffer;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 return false; 444 return false;
331 } 445 }
332 446
333 HttpConnection* HttpServer::FindConnection(int connection_id) { 447 HttpConnection* HttpServer::FindConnection(int connection_id) {
334 IdToConnectionMap::iterator it = id_to_connection_.find(connection_id); 448 IdToConnectionMap::iterator it = id_to_connection_.find(connection_id);
335 if (it == id_to_connection_.end()) 449 if (it == id_to_connection_.end())
336 return NULL; 450 return NULL;
337 return it->second; 451 return it->second;
338 } 452 }
339 453
340 HttpConnection* HttpServer::FindConnection(StreamListenSocket* socket) {
341 SocketToConnectionMap::iterator it = socket_to_connection_.find(socket);
342 if (it == socket_to_connection_.end())
343 return NULL;
344 return it->second;
345 }
346
347 } // namespace net 454 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698