-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathhttp.c
185 lines (164 loc) · 3.75 KB
/
http.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
/*
* Copyright 2014-2023 The GmSSL Project. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the License); you may
* not use this file except in compliance with the License.
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <limits.h>
#include <gmssl/socket.h>
#include <gmssl/http.h>
#include <gmssl/error.h>
int http_parse_uri(const char *uri, char host[128], int *port, char path[256])
{
if (!uri || !host || !port || !path) {
error_print();
return -1;
}
*host = 0;
*port = 80;
*path++ = '/';
*path = 0;
if (sscanf(uri, "http://%127[^:]:%i/%254[^\n]", host, port, path) == 3);
else if (sscanf(uri, "http://%127[^/]/%254[^\n]", host, path) == 2);
else if (sscanf(uri, "http://%127[^:]:%i[^/][^\n]", host, port) == 2);
else if (sscanf(uri, "http://%127[^/][^\n]", host) == 1);
else {
error_print();
return -1;
}
if (!host[0] || strchr(host, '/') || strchr(host, ':')) {
error_print();
return -1;
}
if (*port <= 0) {
error_print();
return -1;
}
return 1;
}
static int socket_recv_all(int sock, uint8_t *buf, size_t len)
{
size_t n;
while (len) {
if ((n = recv(sock, buf, len, 0)) <= 0) {
error_print();
return -1;
}
buf += n;
len -= n;
}
return 1;
}
int http_parse_response(char *buf, size_t buflen, uint8_t **content, size_t *contentlen, size_t *left)
{
char *ok = "HTTP/1.1 200 OK\r\n";
char *p;
size_t headerlen;
if (buflen < strlen(ok) || memcmp(buf, ok, strlen(ok)) != 0) {
error_print();
return -1;
}
if (buf[buflen] != 0) {
error_print();
return -1;
}
if (!(p = strstr(buf, "\r\n\r\n"))) {
error_print();
return -1;
}
*content = (uint8_t *)(p + 4);
headerlen = *content - (uint8_t *)buf;
*p = 0;
if (!(p = strstr(buf, "\r\nContent-Length: "))) {
error_print();
return -1;
}
p += strlen("\r\nContent-Length: ");
*contentlen = atoi(p);
if (*contentlen <= 0 || *contentlen > INT_MAX) {
error_print();
return -1;
}
buflen -= headerlen;
if (buflen < *contentlen)
*left = *contentlen - buflen;
else *left = 0;
return 1;
}
#define HTTP_GET_TEMPLATE "GET %s HTTP/1.1\r\n" "Host: %s\r\n" "\r\n\r\n"
int http_get(const char *uri, uint8_t *buf, size_t *contentlen, size_t buflen)
{
int ret = -1;
char host[128];
int port;
char path[256];
struct hostent *hp;
struct sockaddr_in server;
tls_socket_t sock;
char get[sizeof(HTTP_GET_TEMPLATE) + sizeof(host) + sizeof(path)];
int getlen;
char response[1024];
uint8_t *p;
size_t len;
size_t left;
// parse uri and compose request
if (http_parse_uri(uri, host, &port, path) != 1) {
error_print();
return -1;
}
if ((getlen = snprintf(get, sizeof(get), HTTP_GET_TEMPLATE, path, host)) <= 0) {
error_print();
return -1;
}
// connect and send request
if (!(hp = gethostbyname(host))) {
error_print();
return -1;
}
server.sin_addr = *((struct in_addr *)hp->h_addr_list[0]);
server.sin_family = AF_INET;
server.sin_port = htons(port);
if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
error_print();
return -1;
}
if (connect(sock, (struct sockaddr *)&server , sizeof(server)) < 0) {
error_print();
goto end;
}
if (send(sock, get, strlen(get), 0) != getlen) {
error_print();
goto end;
}
if ((len = recv(sock, response, sizeof(response) - 1, 0)) <= 0) {
error_print();
goto end;
}
response[len] = 0;
// process response header and retrieve left
if (http_parse_response(response, len, &p, contentlen, &left) != 1) {
error_print();
goto end;
}
if (!buf || buflen < *contentlen) {
ret = 0;
goto end;
}
memcpy(buf, p, *contentlen - left);
if (left) {
if (socket_recv_all(sock, buf + *contentlen - left, left) != 1) {
error_print();
goto end;
}
}
ret = 1;
end:
close(sock);
return ret;
}