This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
agent_curl.cpp
277 lines (204 loc) · 6.73 KB
/
agent_curl.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
/*
Copyright 2018 Intel Corporation
This software and the related documents are Intel copyrighted materials,
and your use of them is governed by the express license under which they
were provided to you (License). Unless the License provides otherwise,
you may not use, modify, copy, publish, distribute, disclose or transmit
this software or the related documents without Intel's prior written
permission.
This software and the related documents are provided as is, with no
express or implied warranties, other than those that are expressly stated
in the License.
*/
#include <sys/types.h>
#include <curl/curl.h>
#include "httpparser/response.h"
#include "httpparser/httpresponseparser.h"
#include "agent_curl.h"
#include "agent.h"
#include "common.h"
#include "iasrequest.h"
extern "C" {
extern char debug;
};
using namespace std;
using namespace httpparser;
#include <string>
static size_t _header_callback(char *ptr, size_t sz, size_t n, void *data);
static size_t _write_callback(char *ptr, size_t sz, size_t n, void *data);
static size_t _read_callback(char *buffer, size_t size, size_t nitems,
void *instream);
string AgentCurl::name= "libcurl";
AgentCurl::AgentCurl (IAS_Connection *conn_in) : Agent(conn_in)
{
curl= NULL;
sresponse= "";
header_len= header_pos= 0;
flag_eoh= 0;
}
AgentCurl::~AgentCurl ()
{
curl_easy_cleanup(curl);
}
int AgentCurl::initialize ()
{
size_t pwlen;
char *passwd= NULL;
// Calls curl_global_init() if it hasn't been already. This is
// not a thread-safe approach, but we are single-threaded.
curl= curl_easy_init();
if ( curl == NULL ) return 0;
if ( debug ) {
if ( curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L) != CURLE_OK )
return 0;
}
// General client configuration options
//------------------------------------------------------------
// HTTPS only
if ( curl_easy_setopt(curl, CURLOPT_PROTOCOLS, CURLPROTO_HTTPS) !=
CURLE_OK ) return 0;
// Include the server response headers
if ( curl_easy_setopt(curl, CURLOPT_HEADER, 1L) != CURLE_OK ) return 0;
#ifdef CURL_OPT_SUPPRESS_CONNECT_HEADERS
// Suppress the proxy CONNECT headers.
if ( curl_easy_setopt(curl, CURLOPT_SUPPRESS_CONNECT_HEADERS, 1L) !=
CURLE_OK ) return 0;
#else
// Sigh. Our version of libcurl is too old so we need to detect
// proxy headers by hand.
if ( curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, _header_callback)
!= CURLE_OK) return 0;
if ( curl_easy_setopt(curl, CURLOPT_HEADERDATA, this) != CURLE_OK)
return 0;
#endif
curl_easy_setopt(curl, CURLOPT_BUFFERSIZE, 102400L);
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1L);
// Configure proxy
//------------------------------------------------------------
if ( conn->proxy_mode() == IAS_PROXY_NONE ) {
// Setting this to an empty string will force the proxy off
// regardless of any proxy environment vars.
if ( curl_easy_setopt(curl, CURLOPT_PROXY, "") != CURLE_OK )
return 0;
} else if ( conn->proxy_mode() == IAS_PROXY_FORCE ) {
string proxy_url= conn->proxy_url();
// First, are we overriding the proxy environment vars?
if ( proxy_url != "" ) {
if ( curl_easy_setopt(curl, CURLOPT_PROXY, proxy_url.c_str())
!= CURLE_OK )
return 0;
}
// Now force the use of the proxy by overriding no_proxy
// environment vars.
if ( curl_easy_setopt(curl, CURLOPT_NOPROXY, "") != CURLE_OK )
return 0;
}
// Specify your certificate stores
if ( curl_easy_setopt(curl, CURLOPT_CAINFO, conn->ca_bundle().c_str())
!= CURLE_OK ) return 0;
// Set the write callback.
if ( curl_easy_setopt(curl, CURLOPT_WRITEDATA, this) != CURLE_OK )
return 0;
if ( curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, _write_callback)
!= CURLE_OK ) return 0;
return 1;
}
int AgentCurl::request(string const &url, string const &postdata,
Response &response)
{
sresponse= "";
HttpResponseParser parser;
HttpResponseParser::ParseResult result;
const char *bp;
header_len= header_pos= 0;
flag_eoh= 0;
curl_slist *slist= NULL;
// construct then add the Ocp-Apim-Subscription-Key subscription key header
string subscriptionKeyHeader = "Ocp-Apim-Subscription-Key: ";
subscriptionKeyHeader.append(conn->getSubscriptionKey());
if ( (slist = curl_slist_append(slist, subscriptionKeyHeader.c_str())) == NULL )
return 0;
if ( postdata != "" ) {
curl_slist *slist= NULL;
// Set our POST specific headers
if ( (slist= curl_slist_append(slist, "Content-Type: application/json")) == NULL )
return 0;
if ( (slist= curl_slist_append(slist, "Expect:")) == NULL )
return 0;
// Set our method to POST and send the length
bp= postdata.c_str();
if ( curl_easy_setopt(curl, CURLOPT_POSTFIELDS,
postdata.c_str()) != CURLE_OK ) return 0;
}
if ( curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist)
!= CURLE_OK ) return 0;
if ( curl_easy_setopt(curl, CURLOPT_URL, url.c_str()) != CURLE_OK )
return 0;
if ( curl_easy_perform(curl) != 0 ) {
return 0;
}
if (slist != NULL) {
curl_slist_free_all(slist);
slist = NULL;
}
result= parser.parse(response, sresponse.substr(header_pos).c_str(),
sresponse.c_str()+sresponse.length());
return ( result == HttpResponseParser::ParsingCompleted );
}
size_t AgentCurl::header_callback(char *ptr, size_t sz, size_t n)
{
size_t len= sz*n;
string header;
size_t idx;
// Look for a blank header that occurs in the middle of the
// headers: that's the separator between the proxy and server
// headers. We want the last header block.
header.assign(ptr, len);
// Find where newline chars begin
idx= header.find_first_of("\n\r");
if ( flag_eoh ) {
if ( idx != 0 ) {
// We got a non-blank header line after receiving the
// end of a header block, so we have started a new
// header block.
header_pos= header_len;
flag_eoh= 0;
}
} else {
// If we have a blank line, we reached the end of a header
// block.
if ( idx == 0 ) flag_eoh= 1;
}
header_len+= len;
return len;
}
size_t AgentCurl::write_callback(char *ptr, size_t sz, size_t n)
{
size_t len= sz*n;
sresponse.append(ptr, len);
return len;
}
static size_t _header_callback(char *ptr, size_t sz, size_t n, void *data)
{
AgentCurl *agent= (AgentCurl *) data;
return agent->header_callback(ptr, sz, n);
}
static size_t _write_callback(char *ptr, size_t sz, size_t n, void *data)
{
AgentCurl *agent= (AgentCurl *) data;
return agent->write_callback(ptr, sz, n);
}
static size_t _read_callback(char *buffer, size_t sz, size_t n, void *instream)
{
// We need to write no more than sz*n bytes into "buffer", so we need
// to keep track of where we are in our internal postdata buffer.
char **bp= (char **) instream;
size_t len= sz*n;
size_t slen= strlen(*bp);
if ( !slen ) return 0;
len= ( slen < len ) ? slen : len;
memcpy(buffer, *bp, len);
for (slen= 0; slen< len; ++slen) fputc(buffer[slen], stderr);
*bp+= len;
return len;
}