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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
|
//*****************************************************************************
//
// http.c - HTTP request creation functions.
//
// Copyright (c) 2013-2014 Texas Instruments Incorporated. All rights reserved.
// Software License Agreement
//
// Texas Instruments (TI) is supplying this software for use solely and
// exclusively on TI's microcontroller products. The software is owned by
// TI and/or its suppliers, and is protected under applicable copyright
// laws. You may not combine this software with "viral" open-source
// software in order to form a larger program.
//
// THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
// NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
// NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
// CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
// DAMAGES, FOR ANY REASON WHATSOEVER.
//
// This is part of revision 2.1.0.12573 of the EK-TM4C1294XL Firmware Package.
//
//*****************************************************************************
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include "inc/hw_types.h"
#include "utils/ustdlib.h"
#include "http.h"
//*****************************************************************************
//
// Buffer used to store temporary strings for constructing/parsing requests.
//
//*****************************************************************************
static char g_pcTempData[256];
//*****************************************************************************
//
// Declarations for request type strings.
//
//*****************************************************************************
static char g_pcHttpConnect[] = "CONNECT ";
static char g_pcHttpGet[] = "GET ";
static char g_pcHttpPost[] = "POST ";
static char g_pcHttpPut[] = "PUT ";
static char g_pcHttpDelete[] = "DELETE ";
static char g_pcHttpHead[] = "HEAD ";
static char g_pcHttpTrace[] = "TRACE ";
static char g_pcHttpOptions[] = "OPTIONS ";
static char g_pcHttpPatch[] = "PATCH ";
//*****************************************************************************
//
// HTTP suffixes used by HTTPMessageTypeSet(). Default is HTTP 1.1.
//
//*****************************************************************************
#ifdef USE_HTTP_1_0
static const char g_pcSuffixHttp10[] = " HTTP/1.0\r\n\r\n";
#else
static const char g_pcSuffixHttp11[] = " HTTP/1.1\r\n\r\n";
#endif
//*****************************************************************************
//
//! Extract the portion of a string up to a specified character.
//!
//! \param cWhichOne specifies the character to compare against.
//! \param pcSource is a pointer to the source/input string.
//! \param pcOutput is a pointer to the destination/output string.
//! \param pui32Size is a pointer to a variable that will receive the size of
//! the destination/output string.
//!
//! \return None.
//
//*****************************************************************************
static void
BufferFillToCharacter(char cWhichOne, char *pcSource, char *pcOutput,
uint32_t *pui32Size)
{
//
// Search the string until the character is found.
//
*pui32Size = 0;
while(*pcSource)
{
if(*pcSource == cWhichOne)
{
pcOutput[*pui32Size] = 0;
pcSource++;
return;
}
else
{
pcOutput[*pui32Size] = *pcSource;
pcSource++;
*pui32Size += 1;
}
}
return;
}
//*****************************************************************************
//
//! Extract the portion of a string up to end-of-line (EOL).
//!
//! \param pcSource is a pointer to the source/input string.
//! \param pcOutput is a pointer to the destination/output string.
//! \param pui32Size is a pointer to a variable that will receive the size of
//! the destination/output string.
//!
//! \return None.
//
//*****************************************************************************
static void
BufferFillToEOL(char *pcSource, char *pcOutput, uint32_t *pui32Size)
{
//
// Search the string until EOL is found.
//
*pui32Size = 0;
while(*pcSource)
{
if((*pcSource == '\r') && (*(pcSource+ 1) == '\n'))
{
pcOutput[*pui32Size] = 0;
pcSource += 2;
return;
}
else
{
pcOutput[*pui32Size] = *pcSource;
pcSource++;
*pui32Size += 1;
}
}
return;
}
static void
InsertRequest(char *pcDest, char *pcRequest)
{
uint32_t i;
uint32_t ui32ReqSize;
uint32_t ui32DstSize;
ui32ReqSize = strlen(pcRequest);
ui32DstSize = strlen(pcDest);
pcDest[ui32DstSize + ui32ReqSize] = 0;
for(i = ui32DstSize; i-- > 0; )
{
pcDest[ui32ReqSize + i] = pcDest[i];
}
for(i = 0; i < ui32ReqSize; i++)
{
pcDest[i] = pcRequest[i];
}
}
//*****************************************************************************
//
//! Set the HTTP message type.
//!
//! \param pcDest is a pointer to the destination/output string.
//! \param ui8Type is the HTTP request type. Macros such as HTTP_MESSAGE_GET
//! are defined in http.h.
//! \param pcResource is a pointer to a string containing the resource portion
//! of the HTTP message. The resource goes in between the type (ex: GET) and
//! HTTP suffix on the first line of a HTTP request. An example would be
//! index.html.
//!
//! This function should be called to start off a new HTTP request.
//!
//! \return None.
//
//*****************************************************************************
void
HTTPMessageTypeSet(char *pcDest, uint8_t ui8Type, char *pcResource)
{
//
// Check to see if the resource and destination pointers are the same. If
// yes, insert the request type at the beginning of the resource string.
//
if(pcDest == pcResource)
{
//
// Add the request type to the buffer.
//
switch(ui8Type)
{
case HTTP_MESSAGE_CONNECT:
{
InsertRequest(pcDest, g_pcHttpConnect);
break;
}
case HTTP_MESSAGE_GET:
{
InsertRequest(pcDest, g_pcHttpGet);
break;
}
case HTTP_MESSAGE_POST:
{
InsertRequest(pcDest, g_pcHttpPost);
break;
}
case HTTP_MESSAGE_PUT:
{
InsertRequest(pcDest, g_pcHttpPut);
break;
}
case HTTP_MESSAGE_DELETE:
{
InsertRequest(pcDest, g_pcHttpDelete);
break;
}
case HTTP_MESSAGE_HEAD:
{
InsertRequest(pcDest, g_pcHttpHead);
break;
}
case HTTP_MESSAGE_TRACE:
{
InsertRequest(pcDest, g_pcHttpTrace);
break;
}
case HTTP_MESSAGE_OPTIONS:
{
InsertRequest(pcDest, g_pcHttpOptions);
break;
}
case HTTP_MESSAGE_PATCH:
{
InsertRequest(pcDest, g_pcHttpPatch);
break;
}
}
}
else
{
//
// Add the request type to the buffer.
//
switch(ui8Type)
{
case HTTP_MESSAGE_CONNECT:
{
usprintf(pcDest, g_pcHttpConnect);
break;
}
case HTTP_MESSAGE_GET:
{
usprintf(pcDest, g_pcHttpGet);
break;
}
case HTTP_MESSAGE_POST:
{
usprintf(pcDest, g_pcHttpPost);
break;
}
case HTTP_MESSAGE_PUT:
{
usprintf(pcDest, g_pcHttpPut);
break;
}
case HTTP_MESSAGE_DELETE:
{
usprintf(pcDest, g_pcHttpDelete);
break;
}
case HTTP_MESSAGE_HEAD:
{
usprintf(pcDest, g_pcHttpHead);
break;
}
case HTTP_MESSAGE_TRACE:
{
usprintf(pcDest, g_pcHttpTrace);
break;
}
case HTTP_MESSAGE_OPTIONS:
{
usprintf(pcDest, g_pcHttpOptions);
break;
}
case HTTP_MESSAGE_PATCH:
{
usprintf(pcDest, g_pcHttpPatch);
break;
}
}
//
// Add the resource to the buffer.
//
strcat(pcDest, pcResource);
}
//
// Finish the first "line" by adding the HTTP suffix.
//
#ifdef USE_HTTP_1_0
strcat(pcDest, g_pcSuffixHttp10);
#else
strcat(pcDest, g_pcSuffixHttp11);
#endif
}
//*****************************************************************************
//
//! Add a header to a HTTP request.
//!
//! \param pcDest is a pointer to the destination/output string.
//! \param pcHeaderName is a pointer to a string containing the header name.
//! \param pcHeaderValue is a pointer to a string containing the header data.
//!
//! Note that this function must be called after HTTPMessageTypeSet() as it
//! simply appends a header to an existing string/buffer.
//!
//! \return None.
//
//*****************************************************************************
void
HTTPMessageHeaderAdd(char *pcDest, char *pcHeaderName, char *pcHeaderValue)
{
//
// Add the header name to the buffer.
//
strcat(pcDest, pcHeaderName);
//
// Add ":" and space.
//
strcat(pcDest, ": ");
//
// Add header value.
//
strcat(pcDest, pcHeaderValue);
//
// Add \r and \n.
//
strcat(pcDest, "\r\n");
}
//*****************************************************************************
//
//! Add body data to to a HTTP request.
//!
//! \param pcDest is a pointer to the destination/output string.
//! \param pcBodyData is a pointer to a string containing the body data. This
//! can be anything from HTML to encoded data (such as JSON).
//!
//! Note that this function must be called after HTTPMessageTypeSet() and
//! HTTPMessageHeaderAdd() as it simply appends the body data to an existing
//! string/buffer.
//!
//! \return None.
//
//*****************************************************************************
void
HTTPMessageBodyAdd(char *pcDest, char *pcBodyData)
{
//
// First, insert blank line between header section and body.
//
strcat(pcDest, "\r\n");
//
// Add body content.
//
strcat(pcDest, pcBodyData);
//
// Add blank line.
//
strcat(pcDest, "\r\n\r\n");
}
//*****************************************************************************
//
//! Parse a HTTP response.
//!
//! \param pcData is a pointer to the source string/buffer.
//! \param pcResponseText is a pointer to a string that will receive the
//! response text from the first line of the HTTP response.
//! \param pui32NumHeaders is a pointer to a variable that will receive the
//! number of headers detected in pcData.
//!
//! Note that this function must be called after HTTPMessageTypeSet() as it
//! simply appends a header to an existing string/buffer.
//!
//! \return Returns the HTTP response code. If parsing error occurs, returns 0.
//
//*****************************************************************************
uint32_t
HTTPResponseParse(char *pcData, char *pcResponseText, uint32_t *pui32NumHeaders)
{
uint32_t ui32Response = 0;
uint32_t ui32Size;
//
// Look for "HTTP/n.n" piece.
//
BufferFillToCharacter(' ', pcData, g_pcTempData, &ui32Size);
pcData += (ui32Size + 1);
//
// Fail if not a HTTP response.
//
if(ustrncmp(g_pcTempData, "HTTP/", 5))
{
*pcResponseText = 0;
*pui32NumHeaders = 0;
return 0;
}
//
// Get the return code.
//
BufferFillToCharacter(' ', pcData, g_pcTempData, &ui32Size);
pcData += (ui32Size + 1);
//
// Convert return code to unsigned long.
//
ui32Response = ustrtoul(g_pcTempData, 0, 10);
//
// Get the response text.
//
BufferFillToEOL(pcData, pcResponseText, &ui32Size);
pcData += (ui32Size + 2);
//
// Parse the remainder of the packet.
//
*pui32NumHeaders = 0;
while(*pcData)
{
//
// Search line by line and count headers. Search until there is a blank
// line, which means end of headers.
//
BufferFillToEOL(pcData, g_pcTempData, &ui32Size);
pcData += (ui32Size + 2);
//
// Blank line. For the purposes of this function, we're done.
//
if(ui32Size == 0)
{
break;
}
else
{
//
// Increment header counter.
//
*pui32NumHeaders += 1;
}
}
return ui32Response;
}
//*****************************************************************************
//
//! Extract a specified header from a HTTP response string/buffer.
//!
//! \param pcData is a pointer to the source string/buffer.
//! \param ui32HeaderIdx specifies the index of the header to extract.
//! \param pcHeaderName is a pointer to a string that will receive the name of
//! the header specified by ui32HeaderIdx.
//! \param pcHeaderValue is a pointer to a string that will receive the value of
//! the header specified by ui32HeaderIdx.
//!
//! Note that this function should be used in conjunction with
//! HTTPResponseParse() since it notifies the application of the number of
//! headers in a string/buffer.
//!
//! \return None.
//
//*****************************************************************************
void
HTTPResponseHeaderExtract(char *pcData, uint32_t ui32HeaderIdx,
char *pcHeaderName, char *pcHeaderValue)
{
uint32_t ui32Size;
uint32_t ui32HeaderNumber = 0;
//
// Read first line and discard.
//
BufferFillToEOL(pcData, g_pcTempData, &ui32Size);
pcData += (ui32Size + 2);
//
// Find and return the requested header.
//
while(*pcData)
{
BufferFillToEOL(pcData, g_pcTempData, &ui32Size);
pcData += (ui32Size + 2);
//
// Blank line, end of header section.
//
if(ui32Size == 0)
{
break;
}
else
{
if(ui32HeaderNumber == ui32HeaderIdx)
{
BufferFillToCharacter(':', g_pcTempData, pcHeaderName,
&ui32Size);
BufferFillToCharacter(0, &g_pcTempData[ui32Size + 2],
pcHeaderValue, &ui32Size);
pcHeaderValue[ui32Size] = 0;
break;
}
else
{
//
// Increment header counter.
//
ui32HeaderNumber++;
}
}
}
}
//*****************************************************************************
//
//! Extract the body from a HTTP response string/buffer.
//!
//! \param pcData is a pointer to the source string/buffer.
//! \param pcDest is a pointer to a string that will receive the body data.
//!
//! \return None.
//
//*****************************************************************************
void
HTTPResponseBodyExtract(char *pcData, char *pcDest)
{
bool bBodyFound = false;
uint32_t ui32Size;
//
// Find and return the body.
//
while(*pcData)
{
//
// Read lines until a blank line is found. This is the start of the
// body.
//
BufferFillToEOL(pcData, g_pcTempData, &ui32Size);
pcData += (ui32Size + 2);
//
// Blank line, end of header section.
//
if(ui32Size == 0)
{
bBodyFound = true;
}
//
// If the body has been found, start filling the buffer.
//
if(bBodyFound)
{
pcDest[0] = 0;
strcat(pcDest, pcData);
break;
}
}
}
|