-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHTTPServerforSingleFile.cpp
473 lines (400 loc) · 10.8 KB
/
HTTPServerforSingleFile.cpp
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
#ifndef UNICODE
#define UNICODE
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0A00
#endif
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#include <http.h>
#include <wchar.h>
#pragma comment(lib, "httpapi.lib")
//
// Macros.
//
#define INITIALIZE_HTTP_RESPONSE(resp, status, reason) \
do \
{ \
RtlZeroMemory((resp), sizeof(*(resp))); \
(resp)->StatusCode = (status); \
(resp)->pReason = (reason); \
(resp)->ReasonLength = (USHORT)strlen(reason); \
} while (FALSE)
#define ADD_KNOWN_HEADER(Response, HeaderId, RawValue) \
do \
{ \
(Response).Headers.KnownHeaders[(HeaderId)].pRawValue = (RawValue); \
(Response).Headers.KnownHeaders[(HeaderId)].RawValueLength = (USHORT)strlen(RawValue); \
} while (FALSE)
#define ALLOC_MEM(cb) HeapAlloc(GetProcessHeap(), 0, (cb))
#define FREE_MEM(ptr) HeapFree(GetProcessHeap(), 0, (ptr))
//
// Prototypes.
//
DWORD ReadSingleFile(
IN PCWSTR lpFileName,
OUT PSTR* pBuffer);
DWORD ReceiveRequests(
IN HANDLE hReqQueue,
IN PSTR pBuffer);
DWORD SendResponse(
IN HANDLE hReqQueue,
IN PHTTP_REQUEST pRequest,
IN USHORT StatusCode,
IN PSTR pReason,
IN PSTR pEntityString);
/******************************************************************************
Main routine for the simple HTTP server.
This server listens for requests on a single URL specified as a command line
parameter. It reads a single file specified as a command line parameter and sends
it back as the response.
This server is for demonstration purposes only. It does not implement any
security best practices and is not intended to be used in production.
******************************************************************************/
int __cdecl wmain(
int argc,
wchar_t* argv[])
{
ULONG retCode;
HANDLE hReqQueue = NULL;
PSTR pBuffer = NULL;
HTTPAPI_VERSION HttpApiVersion = HTTPAPI_VERSION_1;
if (argc < 2)
{
wprintf(L"Parameters: <Listen Url> <File Path>\n");
return ERROR_INVALID_PARAMETER;
}
//
// Initialize HTTP Server APIs
//
retCode = HttpInitialize(
HttpApiVersion,
HTTP_INITIALIZE_SERVER, // Flags
NULL // Reserved
);
if (retCode != NO_ERROR)
{
wprintf(L"HttpInitialize failed with %lu \n", retCode);
return retCode;
}
//
// Create a Request Queue Handle
//
retCode = HttpCreateHttpHandle(
&hReqQueue, // Req Queue
0 // Reserved
);
if (retCode != NO_ERROR)
{
wprintf(L"HttpCreateHttpHandle failed with %lu \n", retCode);
goto CleanUp;
}
//
// The command line arguments represent URIs that to
// listen on. Call HttpAddUrl for each URI.
//
// The URI is a fully qualified URI and must include the
// terminating (/) character.
//
wprintf(L"listening for requests on the following url: %s\n", argv[1]);
retCode = HttpAddUrl(
hReqQueue, // Req Queue
argv[1], // Fully qualified URL
NULL // Reserved
);
if (retCode != NO_ERROR)
{
wprintf(L"HttpAddUrl failed with %lu \n", retCode);
goto CleanUp;
}
retCode = ReadSingleFile(
argv[2],
&pBuffer
);
if (retCode != NO_ERROR)
{
wprintf(L"ReadSingleFile failed with %lu \n", retCode);
goto CleanUp;
}
ReceiveRequests(hReqQueue, pBuffer);
CleanUp:
//
// Call FREE_MEM for all allocated memory.
//
if (pBuffer)
{
FREE_MEM(pBuffer);
}
//
// Call HttpRemoveUrl for all added URLs.
//
HttpRemoveUrl(
hReqQueue, // Req Queue
argv[1] // Fully qualified URL
);
//
// Close the Request Queue handle.
//
if (hReqQueue)
{
CloseHandle(hReqQueue);
}
//
// Call HttpTerminate.
//
HttpTerminate(HTTP_INITIALIZE_SERVER, NULL);
return retCode;
}
/**
* Read data from a single file and store it in a buffer.
*
* @param lpFileName pointer to a null-terminated string that specifies the name of the file to be read.
* @param pBuffer pointer to a pointer that receives the address of the buffer allocated to receive the file data.
*
* @return If the function succeeds, the return value is ERROR_SUCCESS.
*
* @throws None
*/
DWORD ReadSingleFile(
IN PCWSTR lpFileName,
OUT PSTR* pBuffer)
{
DWORD dwBytesRead;
//
// Open the existing file.
//
HANDLE hFile = CreateFileW(lpFileName, // file to open
GENERIC_READ, // open for reading
0, // do not share
NULL, // default security
OPEN_EXISTING, // existing file only
FILE_ATTRIBUTE_NORMAL, // normal file
NULL); // no attr. template
if (hFile == INVALID_HANDLE_VALUE)
{
wprintf(L"Could not open file : %s\n", lpFileName);
return GetLastError();
}
//
// Read data from the file.
//
DWORD dwFileSize = GetFileSize(hFile, NULL);
*pBuffer = new char[dwFileSize + 1];
if (!ReadFile(hFile, *pBuffer, dwFileSize, &dwBytesRead, NULL))
{
wprintf(L"Could not read file : %s\n", lpFileName);
CloseHandle(hFile);
FREE_MEM(*pBuffer);
return GetLastError();
}
//
// Null-terminate the buffer.
//
(*pBuffer)[dwFileSize] = NULL;
//
// Close the file.
//
CloseHandle(hFile);
return ERROR_SUCCESS;
}
/**
* Receives requests from the specified request queue.
*
* @param hReqQueue handle to the request queue
* @param pBuffer pointer to the buffer for the request data
*
* @return DWORD indicating the result of the function
*
* @throws N/A
*/
DWORD ReceiveRequests(
IN HANDLE hReqQueue,
IN PSTR pBuffer)
{
ULONG result;
HTTP_REQUEST_ID requestId;
DWORD bytesRead;
PHTTP_REQUEST pRequest;
PCHAR pRequestBuffer;
ULONG RequestBufferLength;
//
// Allocate a 2 KB buffer. This size should work for most
// requests. The buffer size can be increased if required. Space
// is also required for an HTTP_REQUEST structure.
//
RequestBufferLength = sizeof(HTTP_REQUEST) + 2048;
pRequestBuffer = (PCHAR)ALLOC_MEM(RequestBufferLength);
if (pRequestBuffer == NULL)
{
wprintf(L"Failed to allocate memory\n");
return ERROR_NOT_ENOUGH_MEMORY;
}
pRequest = (PHTTP_REQUEST)pRequestBuffer;
//
// Wait for a new request. This is indicated by a NULL
// request ID.
//
HTTP_SET_NULL_ID(&requestId);
for (;;)
{
RtlZeroMemory(pRequest, RequestBufferLength);
result = HttpReceiveHttpRequest(
hReqQueue, // Req Queue
requestId, // Req ID
0, // Flags
pRequest, // HTTP request buffer
RequestBufferLength, // req buffer length
&bytesRead, // bytes received
NULL // LPOVERLAPPED
);
if (NO_ERROR == result)
{
//
// Worked!
//
switch (pRequest->Verb)
{
case HttpVerbGET:
wprintf(L"Got a GET request for %ws \n",
pRequest->CookedUrl.pFullUrl);
result = SendResponse(
hReqQueue,
pRequest,
200,
"OK",
pBuffer);
break;
default:
wprintf(L"Got a unknown request for %ws \n",
pRequest->CookedUrl.pFullUrl);
result = SendResponse(
hReqQueue,
pRequest,
503,
"Not Implemented",
NULL);
break;
}
if (result != NO_ERROR)
{
break;
}
//
// Reset the Request ID to handle the next request.
//
HTTP_SET_NULL_ID(&requestId);
} else if (result == ERROR_MORE_DATA)
{
//
// The input buffer was too small to hold the request
// headers. Increase the buffer size and call the
// API again.
//
// When calling the API again, handle the request
// that failed by passing a RequestID.
//
// This RequestID is read from the old buffer.
//
requestId = pRequest->RequestId;
//
// Free the old buffer and allocate a new buffer.
//
RequestBufferLength = bytesRead;
FREE_MEM(pRequestBuffer);
pRequestBuffer = (PCHAR)ALLOC_MEM(RequestBufferLength);
if (pRequestBuffer == NULL)
{
wprintf(L"Failed to allocate memory\n");
result = ERROR_NOT_ENOUGH_MEMORY;
break;
}
pRequest = (PHTTP_REQUEST)pRequestBuffer;
} else if (ERROR_CONNECTION_INVALID == result && !HTTP_IS_NULL_ID(&requestId))
{
// The TCP connection was corrupted by the peer when
// attempting to handle a request with more buffer.
// Continue to the next request.
HTTP_SET_NULL_ID(&requestId);
} else
{
break;
}
}
if (pRequestBuffer)
{
FREE_MEM(pRequestBuffer);
}
return result;
}
/**
* Sends an HTTP response.
*
* @param hReqQueue handle to the request queue
* @param pRequest pointer to the HTTP request structure
* @param StatusCode status code of the response
* @param pReason reason phrase of the response
* @param pEntityString pointer to the entity body of the response
*
* @return result of the function call
*
* @throws None
*/
DWORD SendResponse(
IN HANDLE hReqQueue,
IN PHTTP_REQUEST pRequest,
IN USHORT StatusCode,
IN PSTR pReason,
IN PSTR pEntityString)
{
HTTP_RESPONSE response;
HTTP_DATA_CHUNK dataChunk;
DWORD result;
DWORD bytesSent;
//
// Initialize the HTTP response structure.
//
INITIALIZE_HTTP_RESPONSE(&response, StatusCode, pReason);
//
// Add a known header.
//
ADD_KNOWN_HEADER(response, HttpHeaderServer, "HTTPServer");
ADD_KNOWN_HEADER(response, HttpHeaderAcceptCharset, "UTF-8");
ADD_KNOWN_HEADER(response, HttpHeaderAcceptRanges, "bytes");
ADD_KNOWN_HEADER(response, HttpHeaderConnection, "close");
ADD_KNOWN_HEADER(response, HttpHeaderContentType, "text/html");
if (pEntityString)
{
//
// Add an entity chunk.
//
dataChunk.DataChunkType = HttpDataChunkFromMemory;
dataChunk.FromMemory.pBuffer = pEntityString;
dataChunk.FromMemory.BufferLength =
(ULONG)strlen(pEntityString);
response.EntityChunkCount = 1;
response.pEntityChunks = &dataChunk;
}
//
// Because the entity body is sent in one call, it is not
// required to specify the Content-Length.
//
result = HttpSendHttpResponse(
hReqQueue, // ReqQueueHandle
pRequest->RequestId, // Request ID
0, // Flags
&response, // HTTP response
NULL, // pReserved1
&bytesSent, // bytes sent (OPTIONAL)
NULL, // pReserved2 (must be NULL)
0, // Reserved3 (must be 0)
NULL, // LPOVERLAPPED(OPTIONAL)
NULL // pReserved4 (must be NULL)
);
if (result != NO_ERROR)
{
wprintf(L"HttpSendHttpResponse failed with %lu \n", result);
}
return result;
}