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
|
// --------------------------------------------------------------------------
//
// File
// Name: S3Client.cpp
// Purpose: Amazon S3 client helper implementation class
// Created: 09/01/2009
//
// --------------------------------------------------------------------------
#include "Box.h"
#include <cstring>
// #include <cstdio>
// #include <ctime>
#include <openssl/hmac.h>
#include "HTTPRequest.h"
#include "HTTPResponse.h"
#include "HTTPServer.h"
#include "autogen_HTTPException.h"
#include "IOStream.h"
#include "Logging.h"
#include "S3Client.h"
#include "decode.h"
#include "encode.h"
#include "MemLeakFindOn.h"
// --------------------------------------------------------------------------
//
// Function
// Name: S3Client::GetObject(const std::string& rObjectURI)
// Purpose: Retrieve the object with the specified URI (key)
// from your S3 bucket.
// Created: 09/01/2009
//
// --------------------------------------------------------------------------
HTTPResponse S3Client::GetObject(const std::string& rObjectURI)
{
return FinishAndSendRequest(HTTPRequest::Method_GET, rObjectURI);
}
// --------------------------------------------------------------------------
//
// Function
// Name: S3Client::HeadObject(const std::string& rObjectURI)
// Purpose: Retrieve the metadata for the object with the
// specified URI (key) from your S3 bucket.
// Created: 03/08/2015
//
// --------------------------------------------------------------------------
HTTPResponse S3Client::HeadObject(const std::string& rObjectURI)
{
return FinishAndSendRequest(HTTPRequest::Method_HEAD, rObjectURI);
}
HTTPResponse HeadObject(const std::string& rObjectURI);
// --------------------------------------------------------------------------
//
// Function
// Name: S3Client::PutObject(const std::string& rObjectURI,
// IOStream& rStreamToSend, const char* pContentType)
// Purpose: Upload the stream to S3, creating or overwriting the
// object with the specified URI (key) in your S3
// bucket.
// Created: 09/01/2009
//
// --------------------------------------------------------------------------
HTTPResponse S3Client::PutObject(const std::string& rObjectURI,
IOStream& rStreamToSend, const char* pContentType)
{
return FinishAndSendRequest(HTTPRequest::Method_PUT, rObjectURI,
&rStreamToSend, pContentType);
}
// --------------------------------------------------------------------------
//
// Function
// Name: S3Client::FinishAndSendRequest(
// HTTPRequest::Method Method,
// const std::string& rRequestURI,
// IOStream* pStreamToSend,
// const char* pStreamContentType)
// Purpose: Internal method which creates an HTTP request to S3,
// populates the date and authorization header fields,
// and sends it to S3 (or the simulator), attaching
// the specified stream if any to the request. Opens a
// connection to the server if necessary, which may
// throw a ConnectionException. Returns the HTTP
// response returned by S3, which may be a 500 error.
// Created: 09/01/2009
//
// --------------------------------------------------------------------------
HTTPResponse S3Client::FinishAndSendRequest(HTTPRequest::Method Method,
const std::string& rRequestURI, IOStream* pStreamToSend,
const char* pStreamContentType)
{
HTTPRequest request(Method, rRequestURI);
request.SetHostName(mHostName);
std::ostringstream date;
time_t tt = time(NULL);
struct tm *tp = gmtime(&tt);
if (!tp)
{
BOX_ERROR("Failed to get current time");
THROW_EXCEPTION(HTTPException, Internal);
}
const char *dow[] = {"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
date << dow[tp->tm_wday] << ", ";
const char *month[] = {"Jan","Feb","Mar","Apr","May","Jun",
"Jul","Aug","Sep","Oct","Nov","Dec"};
date << std::internal << std::setfill('0') <<
std::setw(2) << tp->tm_mday << " " <<
month[tp->tm_mon] << " " <<
(tp->tm_year + 1900) << " ";
date << std::setw(2) << tp->tm_hour << ":" <<
std::setw(2) << tp->tm_min << ":" <<
std::setw(2) << tp->tm_sec << " GMT";
request.AddHeader("Date", date.str());
if (pStreamContentType)
{
request.AddHeader("Content-Type", pStreamContentType);
}
std::string s3suffix = ".s3.amazonaws.com";
std::string bucket;
if (mHostName.size() > s3suffix.size())
{
std::string suffix = mHostName.substr(mHostName.size() -
s3suffix.size(), s3suffix.size());
if (suffix == s3suffix)
{
bucket = mHostName.substr(0, mHostName.size() -
s3suffix.size());
}
}
std::ostringstream data;
data << request.GetVerb() << "\n";
data << "\n"; /* Content-MD5 */
data << request.GetContentType() << "\n";
data << date.str() << "\n";
if (! bucket.empty())
{
data << "/" << bucket;
}
data << request.GetRequestURI();
std::string data_string = data.str();
unsigned char digest_buffer[EVP_MAX_MD_SIZE];
unsigned int digest_size = sizeof(digest_buffer);
/* unsigned char* mac = */ HMAC(EVP_sha1(),
mSecretKey.c_str(), mSecretKey.size(),
(const unsigned char*)data_string.c_str(),
data_string.size(), digest_buffer, &digest_size);
std::string digest((const char *)digest_buffer, digest_size);
base64::encoder encoder;
std::string auth_code = "AWS " + mAccessKey + ":" +
encoder.encode(digest);
if (auth_code[auth_code.size() - 1] == '\n')
{
auth_code = auth_code.substr(0, auth_code.size() - 1);
}
request.AddHeader("Authorization", auth_code);
if (mpSimulator)
{
if (pStreamToSend)
{
pStreamToSend->CopyStreamTo(request);
}
request.SetForReading();
CollectInBufferStream response_buffer;
HTTPResponse response(&response_buffer);
mpSimulator->Handle(request, response);
return response;
}
else
{
try
{
if (!mapClientSocket.get())
{
mapClientSocket.reset(new SocketStream());
mapClientSocket->Open(Socket::TypeINET,
mHostName, mPort);
}
return SendRequest(request, pStreamToSend,
pStreamContentType);
}
catch (ConnectionException &ce)
{
if (ce.GetType() == ConnectionException::SocketWriteError)
{
// server may have disconnected us,
// try to reconnect, just once
mapClientSocket->Open(Socket::TypeINET,
mHostName, mPort);
return SendRequest(request, pStreamToSend,
pStreamContentType);
}
else
{
BOX_TRACE("S3Client: " << mHostName << " ! " << ce.what());
throw;
}
}
}
}
// --------------------------------------------------------------------------
//
// Function
// Name: S3Client::SendRequest(HTTPRequest& rRequest,
// IOStream* pStreamToSend,
// const char* pStreamContentType)
// Purpose: Internal method which sends a pre-existing HTTP
// request to S3. Attaches the specified stream if any
// to the request. Opens a connection to the server if
// necessary, which may throw a ConnectionException.
// Returns the HTTP response returned by S3, which may
// be a 500 error.
// Created: 09/01/2009
//
// --------------------------------------------------------------------------
HTTPResponse S3Client::SendRequest(HTTPRequest& rRequest,
IOStream* pStreamToSend, const char* pStreamContentType)
{
HTTPResponse response;
if (pStreamToSend)
{
rRequest.SendWithStream(*mapClientSocket, mNetworkTimeout,
pStreamToSend, response);
}
else
{
rRequest.Send(*mapClientSocket, mNetworkTimeout);
response.Receive(*mapClientSocket, mNetworkTimeout);
}
if(!response.IsKeepAlive())
{
BOX_TRACE("Server will close the connection, closing our end too.");
mapClientSocket.reset();
}
else
{
BOX_TRACE("Server will keep the connection open for more requests.");
}
return response;
}
// --------------------------------------------------------------------------
//
// Function
// Name: S3Client::CheckResponse(HTTPResponse&,
// std::string& message)
// Purpose: Check the status code of an Amazon S3 response, and
// throw an exception with a useful message (including
// the supplied message) if it's not a 200 OK response.
// Created: 26/07/2015
//
// --------------------------------------------------------------------------
void S3Client::CheckResponse(const HTTPResponse& response, const std::string& message) const
{
if(response.GetResponseCode() != HTTPResponse::Code_OK)
{
THROW_EXCEPTION_MESSAGE(HTTPException, RequestFailedUnexpectedly,
message);
}
}
|