123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983 |
- #include "config.h"
- #ifdef HAVE_LIBS3_H
- #include <kopano/platform.h>
- #include <algorithm>
- #include <mutex>
- #include <stdexcept>
- #include <cerrno>
- #include <unistd.h>
- #include <zlib.h>
- #include <mapidefs.h>
- #include <mapitags.h>
- #include <kopano/stringutil.h>
- #include "../../common/ECSerializer.h"
- #include "../common/SOAPUtils.h"
- #include "ECAttachmentStorage.h"
- #include "ECS3Attachment.h"
- #include "StreamUtil.h"
- namespace KC {
- /* Number of times the server should retry to send the command to the S3 servers, this is required to process redirects. */
- #define S3_RETRIES 5
- /* Number of seconds to sleep before trying again */
- #define S3_SLEEP_DELAY 1
- /* callback data */
- struct s3_cd {
- struct soap *soap;
- unsigned char *data;
- ECSerializer *sink;
- bool alloc_data;
- int size;
- int processed;
- int retries;
- S3Status status;
- };
- /* callback data wrapper */
- struct s3_cdw {
- ECS3Attachment *caller;
- void *cbdata;
- };
- static void *ec_libs3_handle;
- #define W(n) static decltype(S3_ ## n) *DY_ ## n;
- W(put_object)
- W(initialize)
- W(status_is_retryable)
- W(deinitialize)
- W(get_status_name)
- W(head_object)
- W(delete_object)
- W(get_object)
- #undef W
- /**
- * Static function used to forward the response properties callback to the
- * right object.
- *
- * @param properties the response properties of the S3 request.
- * @param cbdata contains the callback pointer to the ECS3Attachment instance and its callback data.
- *
- * @return The status of the response properties callback function.
- */
- S3Status ECS3Attachment::response_prop_cb(const S3ResponseProperties *properties, void *cbdata)
- {
- auto data = static_cast<struct s3_cdw *>(cbdata);
- return data->caller->response_prop(properties, data->cbdata);
- }
- /**
- * Static function used to forward the callback to the right object.
- *
- * @param status the S3 resonse code of our request
- * @param errorDetails can be NULL, otherwise it contains details on the error that occurred.
- * @param cbdata contains the callback pointer to the ECS3Attachment instance and its callback data.
- */
- void ECS3Attachment::response_complete_cb(S3Status status,
- const S3ErrorDetails *error, void *cbdata)
- {
- auto data = static_cast<struct s3_cdw *>(cbdata);
- return data->caller->response_complete(status, error, data->cbdata);
- }
- /**
- * Static function used to forward the callback to the right object.
- *
- * @param bufferSize the size of the buffer which we can read from
- * @param buffer is the buffer reference that we need to read from
- * @param cbdata contains the callback pointer to the ECS3Attachment instance and its callback data.
- *
- * @return The status of the reading more data from the buffer.
- */
- S3Status ECS3Attachment::get_obj_cb(int bufferSize, const char *buffer, void *cbdata)
- {
- auto data = static_cast<struct s3_cdw *>(cbdata);
- return data->caller->get_obj(bufferSize, buffer, data->cbdata);
- }
- /**
- * Static function used to forward the callback to the right object.
- *
- * @param bufferSize the size of the buffer which we can write to
- * @param buffer is the buffer reference that we need to write to
- * @param cbdata contains the callback pointer to the ECS3Attachment instance and its callback data.
- *
- * @return the number of bytes that have been written to the buffer.
- */
- int ECS3Attachment::put_obj_cb(int bufferSize, char *buffer, void *cbdata)
- {
- auto data = static_cast<struct s3_cdw *>(cbdata);
- return data->caller->put_obj(bufferSize, buffer, data->cbdata);
- }
- ECRESULT ECS3Attachment::StaticInit(ECConfig *cf)
- {
- ec_log_info("Initializing S3 Attachment Storage");
- /*
- * Do a dlopen of libs3.so.3 so that the implicit pull-in of
- * libldap-2.4.so.2 symbols does not pollute our namespace of
- * libldap_r-2.4.so.2 symbols.
- */
- void *h = ec_libs3_handle = dlopen("libs3.so.3", RTLD_LAZY | RTLD_LOCAL);
- const char *err;
- if (ec_libs3_handle == NULL) {
- ec_log_warn("dlopen libs3.so.3: %s", (err = dlerror()) ? err : "<none>");
- return KCERR_DATABASE_ERROR;
- }
- #define W(n) do { \
- DY_ ## n = reinterpret_cast<decltype(DY_ ## n)>(dlsym(h, "S3_" #n)); \
- if (DY_ ## n == NULL) { \
- ec_log_warn("dlsym S3_" #n ": %s", (err = dlerror()) ? err : "<none>"); \
- dlclose(h); \
- ec_libs3_handle = NULL; \
- return KCERR_DATABASE_ERROR; \
- } \
- } while (false)
- W(put_object);
- W(initialize);
- W(status_is_retryable);
- W(deinitialize);
- W(get_status_name);
- W(head_object);
- W(delete_object);
- W(get_object);
- #undef W
- S3Status status = DY_initialize("Kopano Mail", S3_INIT_ALL, cf->GetSetting("attachment_s3_hostname"));
- if (status != S3StatusOK) {
- ec_log_err("Error while initializing S3 Attachment Storage, error type: %s",
- DY_get_status_name(status));
- return KCERR_NETWORK_ERROR;
- }
- return erSuccess;
- }
- ECRESULT ECS3Attachment::StaticDeinit(void)
- {
- ec_log_info("Deinitializing S3 Attachment Storage");
- /* Deinitialize the S3 storage environment */
- if (ec_libs3_handle != NULL) {
- DY_deinitialize();
- dlclose(ec_libs3_handle);
- }
- return erSuccess;
- }
- /*
- * Locking requirements of ECAttachmentStorage: In the case of
- * ECAttachmentStorage locking to protect against concurrent access is futile.
- * The theory is as follows:
- *
- * If two users have a reference to the same attachment, neither can delete the
- * mail causing the other person to lose the attachment. This means that
- * concurrent copy and delete actions are possible on the same attachment. The
- * only case where this does not hold is the case when a user deletes the mail
- * he is copying at the same time and that this is the last mail which
- * references that specific attachment.
- *
- * The only race condition which might occur is that the dagent delivers a mail
- * with attachment, the server returns the attachment id back to the dagent,
- * but the user for whom the message was intended deletes the mail &
- * attachment. In this case the dagent will no longer send the attachment but
- * only the attachment id. When that happens the server can return an error and
- * simply request the dagent to resend the attachment and to obtain a new
- * attachment id.
- */
- /**
- * The ECS3Attachment Storage engine is used to store attachments as separate
- * files in the S3 storage cluster. This is useful to ensure you have enough
- * storage capacity on your servers and can be used to cluster multiple Kopano
- * servers together, allowing each of them to access the same storage for the
- * attachments.
- *
- * @param database The database connection of the Kopano Server
- * @param protocol sets the type of protocol that should be used to connect to the Amazon S3 cluster.
- * The options are http or https, of which https is the preferred option.
- * @param uriStyle The uri style of the bucket, allowed options are virtualhost or path,
- * @param accessKeyId The access key of your Amazon account for S3 storage.
- * @param secretAccessKey The secret access key of your Amazon account for S3 storage.
- * @param bucketName The name of the bucket in which you want to store all the attachments.
- * @param basepath In order to use the same bucket with different Kopano clusters, you can select
- * different basepaths for each cluster, this works like a separate directory where
- * all the files are stored in. NOTE: Use the same basepath for all the servers in
- * a single server cluster.
- * @param ulCompressionLevel the compression level used to gzip the attachment data.
- */
- ECS3Attachment::ECS3Attachment(ECDatabase *database, const char *protocol,
- const char *uri_style, const char *access_key_id,
- const char *secret_access_key, const char *bucket_name, const char *region,
- const char *basepath, unsigned int complvl) :
- ECAttachmentStorage(database, complvl), m_basepath(basepath)
- {
- memset(&m_bucket_ctx, 0, sizeof(m_bucket_ctx));
- m_bucket_ctx.bucketName = bucket_name;
- m_bucket_ctx.protocol = strncmp(protocol, "https", 5) == 0 ? S3ProtocolHTTPS : S3ProtocolHTTP;
- m_bucket_ctx.uriStyle = strncmp(uri_style, "path", 4) == 0 ? S3UriStylePath : S3UriStyleVirtualHost;
- m_bucket_ctx.accessKeyId = access_key_id;
- m_bucket_ctx.secretAccessKey = secret_access_key;
- m_bucket_ctx.authRegion = region;
- /* Set the handlers */
- m_response_handler.propertiesCallback = &ECS3Attachment::response_prop_cb;
- m_response_handler.completeCallback = &ECS3Attachment::response_complete_cb;
- m_put_obj_handler.responseHandler = m_response_handler;
- m_put_obj_handler.putObjectDataCallback = &ECS3Attachment::put_obj_cb;
- m_get_obj_handler.responseHandler = m_response_handler;
- m_get_obj_handler.getObjectDataCallback = &ECS3Attachment::get_obj_cb;
- m_get_conditions.ifModifiedSince = -1;
- m_get_conditions.ifNotModifiedSince = -1;
- m_get_conditions.ifMatchETag = NULL;
- m_get_conditions.ifNotMatchETag = NULL;
- }
- ECS3Attachment::~ECS3Attachment(void)
- {
- assert(!m_transact);
- }
- /**
- * As soon as the response properties are returned by S3, this callback will be
- * called to process them.
- *
- * @param properties the properties object that contains details on the request
- * @param cbdata the callback data reference that was given at the time the request fired.
- *
- * @return the status of processing the information. Generally, this will
- * return S3StatusOK, however, if it should allocate memory for the data
- * buffer, and fails to do so, it will return with S3StatusAbortedByCallback.
- */
- S3Status ECS3Attachment::response_prop(const S3ResponseProperties *properties, void *cbdata)
- {
- auto data = static_cast<struct s3_cd *>(cbdata);
- if (properties->contentLength != 0) {
- data->size = properties->contentLength;
- ec_log_debug("Received the response properties, content length: %d", data->size);
- } else {
- ec_log_debug("Received the response properties");
- }
- /*
- * Only allocate memory if we are not able to use a serializer sink, we
- * are instructed to alloc data->data and have not allocated it yet.
- */
- if (data->sink == NULL && data->alloc_data && data->data == NULL) {
- data->data = s_alloc_nothrow<unsigned char>(data->soap, data->size);
- if (data->data == NULL) {
- ec_log_err("Unable to claim memory of size: %d bytes.", data->size);
- return S3StatusAbortedByCallback;
- }
- }
- return S3StatusOK;
- }
- /**
- * Once the request has been processed by S3 and we received all the data, this
- * function will be called to react accordingly.
- *
- * @param status the S3 resonse code of our request
- * @param errorDetails can be NULL, otherwise it contains details on the error that occurred.
- * @param cbdata contains the callback pointer to the ECS3Attachment instance and its callback data.
- *
- * @return The status of the response properties callback function.
- */
- void ECS3Attachment::response_complete(S3Status status,
- const S3ErrorDetails *error, void *cbdata)
- {
- auto data = static_cast<struct s3_cd *>(cbdata);
- data->status = status;
- ec_log_debug("Response completed: %s.", DY_get_status_name(status));
- if (status == S3StatusOK)
- return;
- if (error == 0) {
- ec_log_err("Amazon S3 return status %s", DY_get_status_name(status));
- return;
- }
- ec_log_err("Amazon S3 return status %s, error: %s, resource: \"%s\"",
- DY_get_status_name(status),
- error->message ? error->message : "<unknown>",
- error->resource ? error->resource : "<none>");
- if (error->furtherDetails != NULL)
- ec_log_err("Amazon S3 error details: %s", error->furtherDetails);
- for (ssize_t i = 0; i < error->extraDetailsCount; ++i)
- ec_log_err("Amazon S3 error details: %s: %s",
- error->extraDetails[i].name, error->extraDetails[i].value);
- }
- /**
- * This callback function will read more data from the buffer used to receive
- * data from S3.
- *
- * @param bufferSize the size of the buffer which we can read from
- * @param buffer is the buffer reference that we need to read from
- * @param cbdata contains the callback pointer to the ECS3Attachment instance and its callback data.
- *
- * @return The status of the reading more data from the buffer.
- */
- S3Status ECS3Attachment::get_obj(int bufferSize, const char *buffer, void *cbdata)
- {
- auto data = static_cast<struct s3_cd *>(cbdata);
- ECRESULT er;
- /*
- * Check if we were able to acquire the memory. There are two cases
- * where this could go wrong: Either we ran out of memory, in which
- * case we should never have reached this call, so cancel it. Or S3 did
- * not return the properties of the object, and therefore we have not
- * allocated the memory yet, in this case we should abort too.
- */
- if (data->data == NULL && data->sink == NULL)
- return S3StatusAbortedByCallback;
- /*
- * Check if we are not trying to write outside the acquired memory
- * scope, if so abort.
- */
- if (data->processed + bufferSize > data->size)
- return S3StatusAbortedByCallback;
- ec_log_debug("Getting bytes from S3 callback: Remaining bytes to get: %d. Reading %d bytes",
- data->size - data->processed, bufferSize);
- if (data->sink != NULL) {
- er = data->sink->Write(buffer, 1, bufferSize);
- if (er != erSuccess) {
- ec_log_err("Unable to write to serializer sink");
- return S3StatusAbortedByCallback;
- }
- } else {
- memcpy(data->data + data->processed, buffer, bufferSize);
- }
- data->processed += bufferSize;
- return S3StatusOK;
- }
- /**
- * This callback function will write more data from the buffer used to write
- * data to S3.
- *
- * @param bufferSize the size of the buffer which we can write to
- * @param buffer is the buffer reference that we need to write to
- * @param cbdata contains the callback pointer to the ECS3Attachment instance and its callback data.
- *
- * @return the number of bytes that have been written to the buffer.
- */
- int ECS3Attachment::put_obj(int bufferSize, char *buffer, void *cbdata)
- {
- auto data = static_cast<struct s3_cd *>(cbdata);
- ECRESULT ret;
- int toRead = 0, remaining = 0;
- /*
- * Check if we have a data buffer or serializer to read from.
- */
- if (data->data == NULL && data->sink == NULL)
- return -1;
- /* Check if we are not trying to write outside the acquired memory scope, if so abort. */
- if (data->processed > data->size)
- return -1;
- remaining = data->size - data->processed;
- if (remaining > 0) {
- toRead = remaining > bufferSize ? bufferSize : remaining;
- ec_log_debug("Putting data using callback: "
- "Remaining bytes to put: %d - Writing %d bytes in %d buffer",
- remaining, toRead, bufferSize);
- if (data->sink != NULL) {
- ret = data->sink->Read(buffer, 1, toRead);
- if (ret != erSuccess) {
- ec_log_err("Unable to read from the serializer sink");
- return -1;
- }
- } else {
- memcpy(buffer, data->data + data->processed, toRead);
- }
- data->processed += toRead;
- } else {
- ec_log_debug("Putting data using callback: Remaining bytes to put: %d - We processed all the data, but S3 expects more", remaining);
- }
- return toRead;
- }
- /**
- * For a given instance id, check if this has valid attachment data present.
- *
- * @param[in] ins_id instance id to check validity
- *
- * @return instance present
- */
- bool ECS3Attachment::ExistAttachmentInstance(ULONG ins_id)
- {
- struct s3_cd cdata = create_cd();
- struct s3_cd *cdp = &cdata;
- struct s3_cdw cwdata;
- cwdata.caller = this;
- cwdata.cbdata = cdp;
- std::string filename = make_att_filename(ins_id, false);
- ec_log_debug("Checking whether the attachment exists: %s", filename.c_str());
- /*
- * Loop at most S3_RETRIES times, to make sure that if the servers of S3
- * reply with a redirect, we actually try again and process it.
- */
- cdp->retries = S3_RETRIES;
- do {
- DY_head_object(&m_bucket_ctx, filename.c_str(), 0,
- &m_response_handler, &cwdata);
- if (DY_status_is_retryable(cdp->status))
- ec_log_debug("Existence check result in while: %s",
- DY_get_status_name(cdp->status));
- } while (DY_status_is_retryable(cdp->status) && should_retry(cdp));
- ec_log_debug("Result of the existence check: %s",
- DY_get_status_name(cdp->status));
- return cdp->status == S3StatusOK;
- }
- /**
- * Load instance data using soap and return as blob.
- *
- * IMPORTANT: We allocated the data in referred to by data_p to store the
- * attachment. The caller of this function is responsible for freeing the
- * memory after its use.
- *
- * @param[in] soap soap to use memory allocations for
- * @param[in] ins_id InstanceID to load
- * @param[out] size_p size in data_p
- * @param[out] data_p data of instance
- *
- * @return Kopano error code
- */
- ECRESULT ECS3Attachment::LoadAttachmentInstance(struct soap *soap,
- ULONG ins_id, size_t *size_p, unsigned char **data_p)
- {
- ECRESULT ret = KCERR_NOT_FOUND;
- struct s3_cd cdata = create_cd();
- struct s3_cd *cdp = &cdata;
- cdp->sink = NULL;
- cdp->data = NULL;
- cdp->alloc_data = true;
- cdp->size = 0;
- cdp->processed = 0;
- cdp->soap = soap;
- struct s3_cdw cwdata;
- cwdata.caller = this;
- cwdata.cbdata = cdp;
- std::string filename = make_att_filename(ins_id, false);
- ec_log_debug("Load attachment instance: %s", filename.c_str());
- /*
- * Loop at most S3_RETRIES times, to make sure that if the servers of S3
- * reply with a redirect, we actually try again and process it.
- */
- cdp->retries = S3_RETRIES;
- do {
- DY_get_object(&m_bucket_ctx, filename.c_str(),
- &m_get_conditions, /*startByte*/ 0, /*byteCount*/ 0, 0,
- &m_get_obj_handler, &cwdata);
- if (DY_status_is_retryable(cdp->status))
- ec_log_debug("Load instance result in while: %s",
- DY_get_status_name(cdp->status));
- } while (DY_status_is_retryable(cdp->status) && should_retry(cdp));
- ec_log_debug("Result of the load instance: %s",
- DY_get_status_name(cdp->status));
- if (cdp->size != cdp->processed) {
- ec_log_err("Short read while reading attachment data, key: %s", filename.c_str());
- ret = KCERR_DATABASE_ERROR;
- goto exit;
- } else if (cdp->data == NULL) {
- ret = KCERR_NOT_ENOUGH_MEMORY;
- goto exit;
- } else if (cdp->status != S3StatusOK) {
- ret = KCERR_NETWORK_ERROR;
- goto exit;
- }
- /*
- * We allocated the data in cdp->data, which is referred to by
- * data_p. The caller of this function is responsible for freeing the
- * memory after its use.
- */
- *size_p = cdp->size;
- *data_p = cdp->data;
- ret = erSuccess;
- exit:
- if (ret != erSuccess && cdp->data != NULL && soap == NULL)
- delete cdp->data;
- /*
- * Make sure we clear the cdp->data variable so we cannot write
- * to it after it is freed externally.
- */
- cdp->data = NULL;
- return ret;
- }
- /**
- * Load instance data using a serializer.
- *
- * @param[in] ins_id InstanceID to load
- * @param[out] size_p size written in in sink
- * @param[in] sink serializer to write in
- *
- * @return erSuccess if we were able to load the instance, or the error code
- * if we could not.
- */
- ECRESULT ECS3Attachment::LoadAttachmentInstance(ULONG ins_id, size_t *size_p, ECSerializer *sink)
- {
- ECRESULT ret = KCERR_NOT_FOUND;
- struct s3_cd cdata = create_cd();
- struct s3_cd *cdp = &cdata;
- cdp->sink = sink;
- cdp->data = NULL;
- cdp->alloc_data = false;
- cdp->size = 0;
- cdp->processed = 0;
- struct s3_cdw cwdata;
- cwdata.caller = this;
- cwdata.cbdata = cdp;
- std::string filename = make_att_filename(ins_id, false);
- ec_log_debug("Load attachment instance: %s", filename.c_str());
- /*
- * Loop at most S3_RETRIES times, to make sure that if the servers of S3
- * reply with a redirect, we actually try again and process it.
- */
- cdp->retries = S3_RETRIES;
- do {
- DY_get_object(&m_bucket_ctx, filename.c_str(),
- &m_get_conditions, /*startByte*/ 0, /*byteCount*/ 0, 0,
- &m_get_obj_handler, &cwdata);
- if (DY_status_is_retryable(cdp->status))
- ec_log_debug("Load instance result in while: %s",
- DY_get_status_name(cdp->status));
- } while (DY_status_is_retryable(cdp->status) && should_retry(cdp));
- ec_log_debug("Result of the load instance: %s",
- DY_get_status_name(cdp->status));
- if (cdp->size != cdp->processed) {
- ec_log_err("Short read while reading attachment data from S3, key: %s", filename.c_str());
- ret = KCERR_DATABASE_ERROR;
- goto exit;
- } else if (cdp->status == S3StatusOK) {
- ret = erSuccess;
- goto exit;
- } else if (cdp->data == NULL) {
- ret = KCERR_NOT_ENOUGH_MEMORY;
- goto exit;
- }
- *size_p = cdp->size;
- exit:
- /*
- * Make sure we do not write to the sink accidentally, therefore reset
- * it to NULL.
- */
- cdp->sink = NULL;
- return ret;
- }
- /**
- * Save a property in a new instance from a blob
- *
- * @param[in] ins_id InstanceID to save data under
- * @param[in] propid unused, required by interface, see ECDatabaseAttachment
- * @param[in] size size of data
- * @param[in] data Data of property
- *
- * @return Kopano error code
- */
- ECRESULT ECS3Attachment::SaveAttachmentInstance(ULONG ins_id, ULONG propid,
- size_t size, unsigned char *data)
- {
- ECRESULT ret = KCERR_NOT_FOUND;
- bool comp = false;
- struct s3_cd cdata = create_cd();
- struct s3_cd *cdp = &cdata;
- cdp->sink = NULL;
- cdp->data = data;
- cdp->size = size;
- cdp->alloc_data = false;
- struct s3_cdw cwdata;
- cwdata.caller = this;
- cwdata.cbdata = cdp;
- std::string filename = make_att_filename(ins_id, comp && size != 0);
- ec_log_debug("Save attachment instance data: %s: %d of %ld", filename.c_str(), cdp->data != NULL, size);
- /*
- * Loop at most S3_RETRIES times, to make sure that if the servers of S3
- * reply with a redirect, we actually try again and process it.
- */
- cdp->retries = S3_RETRIES;
- do {
- DY_put_object(&m_bucket_ctx, filename.c_str(), size, NULL,
- NULL, &m_put_obj_handler, &cwdata);
- if (DY_status_is_retryable(cdp->status))
- ec_log_debug("Save attachment result in while: %s",
- DY_get_status_name(cdp->status));
- } while (DY_status_is_retryable(cdp->status) && should_retry(cdp));
- ec_log_debug("Result of the save attachment: %s",
- DY_get_status_name(cdp->status));
- /* set in transaction before disk full check to remove empty file */
- if (m_transact)
- m_new_att.insert(ins_id);
- if (cdp->size != cdp->processed) {
- ec_log_err("Unable to write attachment data to S3, key: %s", filename.c_str());
- ret = KCERR_DATABASE_ERROR;
- goto exit;
- } else if (cdp->status == S3StatusOK) {
- ret = erSuccess;
- goto exit;
- }
- exit:
- cdp->data = NULL;
- return ret;
- }
- /**
- * Save a property in a new instance from a serializer
- *
- * @param[in] ins_id InstanceID to save data under
- * @param[in] propid unused, required by interface, see ECDatabaseAttachment
- * @param[in] size size in source
- * @param[in] source serializer to read data from
- *
- * @return Kopano error code
- */
- ECRESULT ECS3Attachment::SaveAttachmentInstance(ULONG ins_id, ULONG propid,
- size_t size, ECSerializer *source)
- {
- ECRESULT ret = KCERR_NOT_FOUND;
- bool comp = false;
- struct s3_cd cdata = create_cd();
- struct s3_cd *cdp = &cdata;
- cdp->sink = source;
- cdp->data = NULL;
- cdp->alloc_data = false;
- cdp->size = size;
- struct s3_cdw cwdata;
- cwdata.caller = this;
- cwdata.cbdata = cdp;
- std::string filename = make_att_filename(ins_id, comp && size != 0);
- ec_log_debug("Save attachment instance source: %s: %d of %ld", filename.c_str(), cdp->sink != NULL, size);
- /*
- * Loop at most S3_RETRIES times, to make sure that if the servers of S3
- * reply with a redirect, we actually try again and process it.
- */
- cdp->retries = S3_RETRIES;
- do {
- DY_put_object(&m_bucket_ctx, filename.c_str(), size, NULL,
- NULL, &m_put_obj_handler, &cwdata);
- if (DY_status_is_retryable(cdp->status))
- ec_log_debug("Save attachment result in while: %s",
- DY_get_status_name(cdp->status));
- }
- while (DY_status_is_retryable(cdp->status) && should_retry(cdp));
- ec_log_debug("Result of the save attachment: %s",
- DY_get_status_name(cdp->status));
- /* set in transaction before disk full check to remove empty file */
- if (m_transact)
- m_new_att.insert(ins_id);
- if (cdp->size != cdp->processed) {
- ec_log_err("Unable to write attachment data to S3, key: %s", filename.c_str());
- ret = KCERR_DATABASE_ERROR;
- goto exit;
- } else if (cdp->status == S3StatusOK) {
- ret = erSuccess;
- goto exit;
- }
- exit:
- cdp->sink = NULL;
- return ret;
- }
- /**
- * Delete given instances from the filesystem
- *
- * @param[in] lstDeleteInstances List of instance ids to remove from the filesystem
- * @param[in] bReplace Transaction marker
- *
- * @return Kopano error code
- */
- ECRESULT ECS3Attachment::DeleteAttachmentInstances(const std::list<ULONG> &lstDeleteInstances, bool bReplace)
- {
- ECRESULT ret = erSuccess;
- int errors = 0;
- for (auto del_id : lstDeleteInstances) {
- ret = this->DeleteAttachmentInstance(del_id, bReplace);
- if (ret != erSuccess)
- ++errors;
- }
- return errors == 0 ? erSuccess : KCERR_DATABASE_ERROR;
- }
- /**
- * Mark a file deleted by renaming it
- *
- * @param[in] ins_id instance id to mark
- *
- * @return Kopano error code
- */
- ECRESULT ECS3Attachment::mark_att_for_del(ULONG ins_id)
- {
- ec_log_debug("Mark attachment for deletion");
- m_marked_att.insert(ins_id);
- return erSuccess;
- }
- /**
- * Revert a delete marked instance
- *
- * @param[in] ins_id instance id to restore
- *
- * @return Kopano error code
- */
- ECRESULT ECS3Attachment::restore_marked_att(ULONG ins_id)
- {
- ec_log_debug("Restored attachment, unmark for deletion");
- m_marked_att.erase(ins_id);
- return erSuccess;
- }
- /**
- * Delete a marked instance from the filesystem
- *
- * @param[in] ins_id instance id to remove
- *
- * @return Kopano error code
- */
- ECRESULT ECS3Attachment::del_marked_att(ULONG ins_id)
- {
- struct s3_cd cdata = create_cd();
- struct s3_cd *cdp = &cdata;
- struct s3_cdw cwdata;
- cwdata.caller = this;
- cwdata.cbdata = cdp;
- std::string filename = make_att_filename(ins_id, false);
- ec_log_debug("Delete marked attachment: %s", filename.c_str());
- /*
- * Loop at most S3_RETRIES times, to make sure that if the servers of
- * S3 reply with a redirect, we actually try again and process it.
- */
- cdp->retries = S3_RETRIES;
- do {
- DY_delete_object(&m_bucket_ctx, filename.c_str(), 0,
- &m_response_handler, &cwdata);
- if (DY_status_is_retryable(cdp->status))
- ec_log_debug("Delete marked attachment result in while: %s",
- DY_get_status_name(cdp->status));
- } while (DY_status_is_retryable(cdp->status) && should_retry(cdp));
- ec_log_debug("Result of the delete marked attachment: %s",
- DY_get_status_name(cdp->status));
- if (cdp->status == S3StatusOK)
- return erSuccess;
- return KCERR_NOT_FOUND;
- }
- /**
- * Delete a single instanceid from the filesystem
- *
- * @param[in] ins_id instance id to remove
- * @param[in] bReplace Transaction marker
- *
- * @return
- */
- ECRESULT ECS3Attachment::DeleteAttachmentInstance(ULONG ins_id,
- bool bReplace)
- {
- ECRESULT ret = erSuccess;
- std::string filename = make_att_filename(ins_id, m_bFileCompression);
- if (!m_transact)
- return del_marked_att(ins_id);
- ret = mark_att_for_del(ins_id);
- if (ret != erSuccess && ret != KCERR_NOT_FOUND) {
- assert(false);
- return ret;
- }
- return erSuccess;
- }
- /**
- * Return a filename for an instance id
- *
- * @param[in] ins_id instance id to convert to a filename
- * @param[in] bCompressed add compression marker to filename
- *
- * @return Kopano error code
- */
- std::string ECS3Attachment::make_att_filename(ULONG ins_id, bool comp)
- {
- std::string filename = m_basepath + PATH_SEPARATOR + stringify(ins_id);
- if (comp)
- filename += ".gz";
- return filename;
- }
- /**
- * This function will check whether we should give it one more try or not.
- *
- * @return whether we should retry
- */
- bool ECS3Attachment::should_retry(struct s3_cd *cdp)
- {
- if (cdp->retries <= 0)
- return false;
- --cdp->retries;
- sleep(S3_SLEEP_DELAY);
- return true;
- }
- /**
- * This function creates a nrew S3Attachment Callback Data struct instance,
- * this will make sure that all the variables are initialized to default
- * values.
- *
- * @return a new s3_cd struct instance
- */
- struct s3_cd ECS3Attachment::create_cd(void)
- {
- struct s3_cd c;
- c.soap = NULL;
- c.data = NULL;
- c.sink = NULL;
- c.alloc_data = false;
- c.size = 0;
- c.processed = 0;
- c.status = S3StatusOK;
- return c;
- }
- /**
- * Return the size of an instance
- *
- * @param[in] ins_id InstanceID to check the size for
- * @param[out] size_p Size of the instance
- * @param[out] compr_p the instance was compressed
- *
- * @return Kopano error code
- */
- ECRESULT ECS3Attachment::GetSizeInstance(ULONG ins_id, size_t *size_p,
- bool *compr_p)
- {
- ECRESULT ret = KCERR_NOT_FOUND;
- bool comp = false;
- struct s3_cd cdata = create_cd();
- struct s3_cd *cdp = &cdata;
- struct s3_cdw cwdata;
- cwdata.caller = this;
- cwdata.cbdata = cdp;
- std::string filename = make_att_filename(ins_id, comp);
- ec_log_debug("Get size attachment instance: %s", filename.c_str());
- /*
- * Loop at most S3_RETRIES times, to make sure that if the servers of
- * S3 reply with a redirect, we actually try again and process it.
- */
- cdp->retries = S3_RETRIES;
- do {
- DY_head_object(&m_bucket_ctx, filename.c_str(), 0,
- &m_response_handler, &cwdata);
- if (DY_status_is_retryable(cdp->status))
- ec_log_debug("Get size attachment result in while: %s",
- DY_get_status_name(cdp->status));
- } while (DY_status_is_retryable(cdp->status) && should_retry(cdp));
- ec_log_debug("Get size of attachment: %s -> %d",
- DY_get_status_name(cdp->status), cdp->size);
- if (cdp->status == S3StatusOK) {
- *size_p = cdp->size;
- if (compr_p != NULL)
- *compr_p = comp;
- ret = erSuccess;
- }
- return ret;
- }
- ECRESULT ECS3Attachment::Begin(void)
- {
- ec_log_debug("Begin transaction");
- if (m_transact) {
- /* Possible a duplicate begin call, don't destroy the data in production */
- assert(false);
- return erSuccess;
- }
- m_new_att.clear();
- m_deleted_att.clear();
- m_marked_att.clear();
- m_transact = true;
- return erSuccess;
- }
- ECRESULT ECS3Attachment::Commit(void)
- {
- bool error = false;
- ec_log_debug("Commit transaction");
- if (!m_transact) {
- assert(false);
- return erSuccess;
- }
- /* Disable the transaction */
- m_transact = false;
- /* Delete the attachments */
- for (auto att_id : m_deleted_att)
- if (DeleteAttachmentInstance(att_id, false) != erSuccess)
- error = true;
- /* Delete marked attachments */
- for (auto att_id : m_marked_att)
- if (del_marked_att(att_id) != erSuccess)
- error = true;
- m_new_att.clear();
- m_deleted_att.clear();
- m_marked_att.clear();
- return error ? KCERR_DATABASE_ERROR : erSuccess;
- }
- ECRESULT ECS3Attachment::Rollback(void)
- {
- bool error = false;
- ec_log_debug("Rollback transaction");
- if (!m_transact) {
- assert(false);
- return erSuccess;
- }
- /* Disable the transaction */
- m_transact = false;
- /* Do not delete the attachments */
- m_deleted_att.clear();
- /* Remove the created attachments */
- for (auto att_id : m_new_att)
- if (DeleteAttachmentInstance(att_id, false) != erSuccess)
- error = true;
- /* Restore marked attachment */
- for (auto att_id : m_marked_att)
- if (restore_marked_att(att_id) != erSuccess)
- error = true;
- m_new_att.clear();
- m_marked_att.clear();
- return error ? KCERR_DATABASE_ERROR : erSuccess;
- }
- } /* namespace */
- #endif /* LIBS3_H */
|