-
Notifications
You must be signed in to change notification settings - Fork 53
/
minicurl.cc
193 lines (167 loc) · 5.84 KB
/
minicurl.cc
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
/*
* MIT License
*
* Copyright (c) 2018-2019 powerdns.com bv
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "minicurl.hh"
#include <curl/curl.h>
#include <stdexcept>
#include <vector>
#include "fmt/format.h"
#include "fmt/printf.h"
void MiniCurl::init()
{
static std::atomic_flag s_init = ATOMIC_FLAG_INIT;
if (s_init.test_and_set())
return;
CURLcode code = curl_global_init(CURL_GLOBAL_ALL);
if (code != 0) {
throw std::runtime_error("Error initializing libcurl");
}
}
MiniCurl::MiniCurl(const string& useragent)
{
d_curl = curl_easy_init();
if (d_curl == nullptr) {
throw std::runtime_error("Error creating a MiniCurl session");
}
curl_easy_setopt(d_curl, CURLOPT_USERAGENT, useragent.c_str());
}
MiniCurl::~MiniCurl()
{
// NEEDS TO CLEAN HOSTLIST
curl_easy_cleanup(d_curl);
}
size_t MiniCurl::write_callback(char *ptr, size_t size, size_t nmemb, void *userdata)
{
MiniCurl* us = (MiniCurl*)userdata;
us->d_data.append(ptr, size*nmemb);
return size*nmemb;
}
using namespace std;
static string extractHostFromURL(const std::string& url)
{
auto pos = url.find("://");
if(pos == string::npos)
throw std::runtime_error("Can't find host part of '"+url+"'");
pos += 3;
auto endpos = url.find('/', pos);
if(endpos == string::npos)
return url.substr(pos);
return url.substr(pos, endpos-pos);
}
void MiniCurl::setupURL(const std::string& str, const ComboAddress* rem, const ComboAddress* src)
{
if(rem) {
struct curl_slist *hostlist = nullptr; // THIS SHOULD BE FREED
// url = http://hostname.enzo/url
string host4=extractHostFromURL(str);
// doest the host contain port indication
std::size_t found = host4.find(':');
vector<uint16_t> ports{80, 443};
if (found != std::string::npos) {
int port = std::stoi(host4.substr(found + 1));
if (port <= 0 || port > 65535)
throw std::overflow_error("Invalid port number");
ports = {(uint16_t)port};
host4 = host4.substr(0, found);
}
for (const auto& port : ports) {
string hcode = fmt::format("%s:%u:%s", host4 , port , rem->toString());
hostlist = curl_slist_append(hostlist, hcode.c_str());
}
curl_easy_setopt(d_curl, CURLOPT_RESOLVE, hostlist);
}
if(src) {
curl_easy_setopt(d_curl, CURLOPT_INTERFACE, src->toString().c_str());
}
curl_easy_setopt(d_curl, CURLOPT_FOLLOWLOCATION, true);
/* only allow HTTP and HTTPS */
curl_easy_setopt(d_curl, CURLOPT_PROTOCOLS, CURLPROTO_HTTP | CURLPROTO_HTTPS);
curl_easy_setopt(d_curl, CURLOPT_SSL_VERIFYPEER, false);
curl_easy_setopt(d_curl, CURLOPT_SSL_VERIFYHOST, false);
// curl_easy_setopt(d_curl, CURLOPT_FAILONERROR, true);
curl_easy_setopt(d_curl, CURLOPT_URL, str.c_str());
curl_easy_setopt(d_curl, CURLOPT_WRITEFUNCTION, write_callback);
curl_easy_setopt(d_curl, CURLOPT_WRITEDATA, this);
curl_easy_setopt(d_curl, CURLOPT_TIMEOUT, 10L);
clearHeaders();
d_data.clear();
}
std::string MiniCurl::getURL(const std::string& str, const ComboAddress* rem, const ComboAddress* src)
{
setupURL(str, rem, src);
auto res = curl_easy_perform(d_curl);
long http_code = 0;
curl_easy_getinfo(d_curl, CURLINFO_RESPONSE_CODE, &http_code);
if(res != CURLE_OK || http_code != 200) {
throw std::runtime_error("Unable to retrieve URL ("+std::to_string(http_code)+"): "+string(curl_easy_strerror(res)));
}
std::string ret=d_data;
d_data.clear();
return ret;
}
std::string MiniCurl::postURL(const std::string& str, const std::string& postdata, MiniCurlHeaders& headers)
{
setupURL(str);
setHeaders(headers);
curl_easy_setopt(d_curl, CURLOPT_POSTFIELDSIZE, postdata.size());
curl_easy_setopt(d_curl, CURLOPT_POSTFIELDS, postdata.c_str());
auto res = curl_easy_perform(d_curl);
long http_code = 0;
curl_easy_getinfo(d_curl, CURLINFO_RESPONSE_CODE, &http_code);
if(res != CURLE_OK || http_code >= 300 ) {
cerr<<"Detailed error: "<<d_data<<endl;
cerr<<postdata<<endl;
throw std::runtime_error("Unable to post URL ("+std::to_string(http_code)+"): "+string(curl_easy_strerror(res))+", detail: "+d_data);
}
std::string ret=d_data;
d_data.clear();
return ret;
}
void MiniCurl::clearHeaders()
{
if (d_curl) {
curl_easy_setopt(d_curl, CURLOPT_HTTPHEADER, NULL);
if (d_header_list != nullptr) {
curl_slist_free_all(d_header_list);
d_header_list = nullptr;
}
}
}
void MiniCurl::setHeaders(const MiniCurlHeaders& headers)
{
if (d_curl) {
for (auto& header : headers) {
std::stringstream header_ss;
header_ss << header.first << ": " << header.second;
d_header_list = curl_slist_append(d_header_list, header_ss.str().c_str());
}
curl_easy_setopt(d_curl, CURLOPT_HTTPHEADER, d_header_list);
}
}
string MiniCurl::urlEncode(string_view str)
{
char *ptr= curl_easy_escape(d_curl , &str[0] , str.size() );
string ret(ptr);
curl_free(ptr);
return ret;
}