123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- /*
- * Copyright 2005 - 2016 Zarafa and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- #include <kopano/zcdefs.h>
- #include <kopano/platform.h>
- #include <mutex>
- #include <pthread.h>
- #include <kopano/ECLogger.h>
- #include <kopano/lockhelper.hpp>
- #include "ECDatabase.h"
- #include "ECSessionManager.h"
- #include "ECStatsCollector.h"
- #include "ECDatabaseFactory.h"
- #include "ECServerEntrypoint.h"
- #include "ECS3Attachment.h"
- namespace KC {
- pthread_key_t database_key;
- pthread_key_t plugin_key;
- _kc_export ECSessionManager *g_lpSessionManager;
- _kc_export ECStatsCollector *g_lpStatsCollector;
- static std::set<ECDatabase *> g_lpDBObjectList;
- static std::mutex g_hMutexDBObjectList;
- static bool g_bInitLib = false;
- void AddDatabaseObject(ECDatabase* lpDatabase)
- {
- scoped_lock lk(g_hMutexDBObjectList);
- g_lpDBObjectList.insert(std::set<ECDatabase*>::value_type(lpDatabase));
- }
- static void database_destroy(void *lpParam)
- {
- auto lpDatabase = static_cast<ECDatabase *>(lpParam);
- ulock_normal l_obj(g_hMutexDBObjectList);
- g_lpDBObjectList.erase(std::set<ECDatabase*>::key_type(lpDatabase));
- l_obj.unlock();
- lpDatabase->ThreadEnd();
- delete lpDatabase;
- }
- static void plugin_destroy(void *lpParam)
- {
- delete static_cast<UserPlugin *>(lpParam);
- }
- ECRESULT kopano_initlibrary(const char *lpDatabaseDir, const char *lpConfigFile)
- {
- ECRESULT er;
- if (g_bInitLib == true)
- return KCERR_CALL_FAILED;
- // This is a global key that we can reference from each thread with a different value. The
- // database_destroy routine is called when the thread terminates.
- pthread_key_create(&database_key, database_destroy);
- pthread_key_create(&plugin_key, plugin_destroy); // same goes for the userDB-plugin
- // Init mutex for database object list
- er = ECDatabase::InitLibrary(lpDatabaseDir, lpConfigFile);
- g_lpStatsCollector = new ECStatsCollector();
-
- //TODO: with an error remove all variables and g_bInitLib = false
- g_bInitLib = true;
- return er;
- }
- ECRESULT kopano_unloadlibrary(void)
- {
- if (!g_bInitLib)
- return KCERR_NOT_INITIALIZED;
- // Delete the global key,
- // on this position, there are zero or more threads exist.
- // As you delete the keys, the function database_destroy and plugin_destroy will never called
- //
- pthread_key_delete(database_key);
- pthread_key_delete(plugin_key);
- // Remove all exist database objects
- ulock_normal l_obj(g_hMutexDBObjectList);
- auto iterDBObject = g_lpDBObjectList.cbegin();
- while (iterDBObject != g_lpDBObjectList.cend())
- {
- auto iNext = iterDBObject;
- ++iNext;
- delete (*iterDBObject);
- g_lpDBObjectList.erase(iterDBObject);
- iterDBObject = iNext;
- }
- l_obj.unlock();
- // remove mutex for database object list
- ECDatabase::UnloadLibrary();
- g_bInitLib = false;
- return erSuccess;
- }
- ECRESULT kopano_init(ECConfig *lpConfig, ECLogger *lpAudit, bool bHostedKopano, bool bDistributedKopano)
- {
- ECRESULT er;
- if (!g_bInitLib)
- return KCERR_NOT_INITIALIZED;
- g_lpSessionManager = new ECSessionManager(lpConfig, lpAudit, bHostedKopano, bDistributedKopano);
- er = g_lpSessionManager->LoadSettings();
- if(er != erSuccess)
- return er;
- er = g_lpSessionManager->CheckUserLicense();
- if (er != erSuccess)
- return er;
- #ifdef HAVE_LIBS3_H
- if (strcmp(lpConfig->GetSetting("attachment_storage"), "s3") == 0)
- ECS3Attachment::StaticInit(lpConfig);
- #endif
- return erSuccess;
- }
- void kopano_removeallsessions()
- {
- if (g_lpSessionManager != nullptr)
- g_lpSessionManager->RemoveAllSessions();
- }
- ECRESULT kopano_exit()
- {
- if (!g_bInitLib)
- return KCERR_NOT_INITIALIZED;
- #ifdef HAVE_LIBS3_H
- if (g_lpSessionManager && strcmp(g_lpSessionManager->GetConfig()->GetSetting("attachment_storage"), "s3") == 0)
- ECS3Attachment::StaticDeinit();
- #endif
- // delete our plugin of the mainthread: requires ECPluginFactory to be alive, because that holds the dlopen() result
- plugin_destroy(pthread_getspecific(plugin_key));
- delete g_lpSessionManager;
- g_lpSessionManager = NULL;
- delete g_lpStatsCollector;
- g_lpStatsCollector = NULL;
- // Close all database connections
- scoped_lock l_obj(g_hMutexDBObjectList);
- for (auto dbobjp : g_lpDBObjectList)
- dbobjp->Close();
- return erSuccess;
- }
- /**
- * Called for each HTTP header in a request, handles the proxy header
- * and marks the connection as using the proxy if it is found. The value
- * of the header is ignored. The special value '*' for proxy_header is
- * not searched for here, but it is used in GetBestServerPath()
- *
- * We use the soap->user->fparsehdr to daisy chain the request to, which
- * is the original gSoap header parsing code. This is needed to decode
- * normal headers like content-type, etc.
- *
- * @param[in] soap Soap structure of the incoming call
- * @param[in] key Key part of the header (left of the :)
- * @param[in] vak Value part of the header (right of the :)
- * @return SOAP_OK or soap error
- */
- static int kopano_fparsehdr(struct soap *soap, const char *key,
- const char *val)
- {
- const char *szProxy = g_lpSessionManager->GetConfig()->GetSetting("proxy_header");
- if (strlen(szProxy) > 0 && strcasecmp(key, szProxy) == 0)
- soap_info(soap)->bProxy = true;
- return soap_info(soap)->fparsehdr(soap, key, val);
- }
- // Called just after a new soap connection is established
- void kopano_new_soap_connection(CONNECTION_TYPE ulType, struct soap *soap)
- {
- const char *szProxy = g_lpSessionManager->GetConfig()->GetSetting("proxy_header");
- auto lpInfo = new SOAPINFO;
- lpInfo->ulConnectionType = ulType;
- lpInfo->bProxy = false;
- soap->user = (void *)lpInfo;
-
- if (szProxy[0] == '\0')
- return;
- if (strcmp(szProxy, "*") == 0) {
- // Assume everything is proxied
- lpInfo->bProxy = true;
- return;
- }
- // Parse headers to determine if the connection is proxied
- lpInfo->fparsehdr = soap->fparsehdr; // daisy-chain the existing code
- soap->fparsehdr = kopano_fparsehdr;
- }
- void kopano_end_soap_connection(struct soap *soap)
- {
- delete soap_info(soap);
- }
- void kopano_new_soap_listener(CONNECTION_TYPE ulType, struct soap *soap)
- {
- auto lpInfo = new SOAPINFO;
- lpInfo->ulConnectionType = ulType;
- lpInfo->bProxy = false;
- soap->user = (void *)lpInfo;
- }
- void kopano_end_soap_listener(struct soap *soap)
- {
- delete soap_info(soap);
- }
- // Called just before the socket is reset, with the server-side socket still
- // open
- void kopano_disconnect_soap_connection(struct soap *soap)
- {
- if (SOAP_CONNECTION_TYPE_NAMED_PIPE(soap))
- // Mark the persistent session as exited
- g_lpSessionManager->RemoveSessionPersistentConnection((unsigned int)soap->socket);
- }
- // Export functions
- ECRESULT GetDatabaseObject(ECDatabase **lppDatabase)
- {
- if (g_lpSessionManager == NULL)
- return KCERR_UNKNOWN;
- if (lppDatabase == NULL)
- return KCERR_INVALID_PARAMETER;
- ECDatabaseFactory db(g_lpSessionManager->GetConfig());
- return GetThreadLocalDatabase(&db, lppDatabase);
- }
- } /* namespace */
|