123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- /*
- * 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/platform.h>
- #include <chrono>
- #include <kopano/lockhelper.hpp>
- #include <pthread.h>
- #include "ECNotificationManager.h"
- #include "ECSession.h"
- #include "ECSessionManager.h"
- #include "ECStringCompat.h"
- #include "soapH.h"
- namespace KC {
- // Copied from generated soapServer.cpp
- static int soapresponse(struct notifyResponse notifications, struct soap *soap)
- {
- soap_serializeheader(soap);
- soap_serialize_notifyResponse(soap, ¬ifications);
- if (soap_begin_count(soap))
- return soap->error;
- if (soap->mode & SOAP_IO_LENGTH)
- { if (soap_envelope_begin_out(soap)
- || soap_putheader(soap)
- || soap_body_begin_out(soap)
- || soap_put_notifyResponse(soap, ¬ifications, "ns:notifyResponse", NULL)
- || soap_body_end_out(soap)
- || soap_envelope_end_out(soap))
- return soap->error;
- };
- if (soap_end_count(soap)
- || soap_response(soap, SOAP_OK)
- || soap_envelope_begin_out(soap)
- || soap_putheader(soap)
- || soap_body_begin_out(soap)
- || soap_put_notifyResponse(soap, ¬ifications, "ns:notifyResponse", NULL)
- || soap_body_end_out(soap)
- || soap_envelope_end_out(soap)
- || soap_end_send(soap))
- return soap->error;
- return soap_closesock(soap);
- }
- void (*kopano_notify_done)(struct soap *) = [](struct soap *) {};
- ECNotificationManager::ECNotificationManager(void)
- {
- pthread_create(&m_thread, NULL, Thread, this);
- set_thread_name(m_thread, "NotificationManager");
- }
- ECNotificationManager::~ECNotificationManager()
- {
- ulock_normal l_ses(m_mutexSessions);
- m_bExit = true;
- m_condSessions.notify_all();
- l_ses.unlock();
- ec_log_info("Shutdown notification manager");
- pthread_join(m_thread, NULL);
- // Close and free any pending requests (clients will receive EOF)
- for (const auto &p : m_mapRequests) {
- // we can't call kopano_notify_done here, race condition on shutdown in ECSessionManager vs ECDispatcher
- kopano_end_soap_connection(p.second.soap);
- soap_destroy(p.second.soap);
- soap_end(p.second.soap);
- soap_free(p.second.soap);
- }
- }
- // Called by the SOAP handler
- HRESULT ECNotificationManager::AddRequest(ECSESSIONID ecSessionId, struct soap *soap)
- {
- struct soap *lpItem = NULL;
- ulock_normal l_req(m_mutexRequests);
- auto iterRequest = m_mapRequests.find(ecSessionId);
- if (iterRequest != m_mapRequests.cend()) {
- // Hm. There is already a SOAP request waiting for this session id. Apparently a second SOAP connection has now
- // requested notifications. Since this should only happen if the client thinks it has lost its connection and has
- // restarted the request, we will replace the existing request with this one.
- ec_log_warn("Replacing notification request for ID %llu",
- static_cast<unsigned long long>(ecSessionId));
-
- // Return the previous request as an error
- struct notifyResponse notifications;
- soap_default_notifyResponse(iterRequest->second.soap, ¬ifications);
- notifications.er = KCERR_NOT_FOUND; // Should be something like 'INTERRUPTED' or something
- if (soapresponse(notifications, iterRequest->second.soap))
- // Handle error on the response
- soap_send_fault(iterRequest->second.soap);
- soap_destroy(iterRequest->second.soap);
- soap_end(iterRequest->second.soap);
- lpItem = iterRequest->second.soap;
-
- // Pass the socket back to the socket manager (which will probably close it since the client should not be holding two notification sockets)
- kopano_notify_done(lpItem);
- }
-
- NOTIFREQUEST req;
- req.soap = soap;
- time(&req.ulRequestTime);
-
- m_mapRequests[ecSessionId] = req;
- l_req.unlock();
-
- // There may already be notifications waiting for this session, so post a change on this session so that the
- // thread will attempt to get notifications on this session
- NotifyChange(ecSessionId);
-
- return hrSuccess;
- }
- // Called by a session when it has a notification to send
- HRESULT ECNotificationManager::NotifyChange(ECSESSIONID ecSessionId)
- {
- // Simply mark the session in our set of active sessions
- scoped_lock l_ses(m_mutexSessions);
- m_setActiveSessions.insert(ecSessionId);
- m_condSessions.notify_all(); /* Wake up thread due to activity */
- return hrSuccess;
- }
- void * ECNotificationManager::Thread(void *lpParam)
- {
- return static_cast<ECNotificationManager *>(lpParam)->Work();
- }
- void *ECNotificationManager::Work() {
- ECRESULT er = erSuccess;
- ECSession *lpecSession = NULL;
- struct notifyResponse notifications;
- std::set<ECSESSIONID> setActiveSessions;
- struct soap *lpItem;
- time_t ulNow = 0;
-
- // Keep looping until we should exit
- while(1) {
- ulock_normal l_ses(m_mutexSessions);
- if (m_bExit)
- break;
- if (m_setActiveSessions.size() == 0)
- /* Wait for events for maximum of 1 sec */
- m_condSessions.wait_for(l_ses, std::chrono::seconds(1));
-
- // Make a copy of the session list so we can release the lock ASAP
- setActiveSessions = m_setActiveSessions;
- m_setActiveSessions.clear();
- l_ses.unlock();
-
- // Look at all the sessions that have signalled a change
- for (const auto &ses : setActiveSessions) {
- lpItem = NULL;
- ulock_normal l_req(m_mutexRequests);
-
- // Find the request for the session that had something to say
- auto iterRequest = m_mapRequests.find(ses);
- if (iterRequest != m_mapRequests.cend()) {
- // Reset notification response to default values
- soap_default_notifyResponse(iterRequest->second.soap, ¬ifications);
- if(g_lpSessionManager->ValidateSession(iterRequest->second.soap, ses, &lpecSession, true) == erSuccess) {
- // Get the notifications from the session
- er = lpecSession->GetNotifyItems(iterRequest->second.soap, ¬ifications);
-
- if(er == KCERR_NOT_FOUND) {
- if(time(NULL) - iterRequest->second.ulRequestTime < m_ulTimeout) {
- // No notifications - this means we have to wait. This can happen if the session was marked active since
- // the request was just made, and there may have been notifications still waiting for us
- l_req.unlock();
- lpecSession->Unlock();
- continue; // Totally ignore this item == wait
- } else {
- // No notifications and we're out of time, just respond OK with 0 notifications
- er = erSuccess;
- notifications.pNotificationArray = (struct notificationArray *)soap_malloc(iterRequest->second.soap, sizeof(notificationArray));
- soap_default_notificationArray(iterRequest->second.soap, notifications.pNotificationArray);
- }
- }
- ULONG ulCapabilities = lpecSession->GetCapabilities();
- if (er == erSuccess && (ulCapabilities & KOPANO_CAP_UNICODE) == 0) {
- ECStringCompat stringCompat(false);
- er = FixNotificationsEncoding(iterRequest->second.soap, stringCompat, notifications.pNotificationArray);
- }
-
- notifications.er = er;
-
- lpecSession->Unlock();
- } else {
- // The session is dead
- notifications.er = KCERR_END_OF_SESSION;
- }
- // Send the SOAP data
- if (soapresponse(notifications, iterRequest->second.soap))
- // Handle error on the response
- soap_send_fault(iterRequest->second.soap);
- // Free allocated SOAP data (in GetNotifyItems())
- soap_destroy(iterRequest->second.soap);
- soap_end(iterRequest->second.soap);
- // Since we have responded, remove the item from our request list and pass it back to the active socket list so
- // that the next SOAP call can be handled (probably another notification request)
- lpItem = iterRequest->second.soap;
-
- m_mapRequests.erase(iterRequest);
-
- } else {
- // Nobody was listening to this session, just ignore it
- }
- l_req.unlock();
- if(lpItem)
- kopano_notify_done(lpItem);
-
- }
-
- /* Find all notification requests which have not received any data for m_ulTimeout seconds. This makes sure
- * that the client get a response, even if there are no notifications. Since the client has a hard-coded
- * TCP timeout of 70 seconds, we need to respond well within those 70 seconds. We therefore use a timeout
- * value of 60 seconds here.
- */
- ulock_normal l_req(m_mutexRequests);
- time(&ulNow);
- for (const auto &req : m_mapRequests)
- if (ulNow - req.second.ulRequestTime > m_ulTimeout)
- // Mark the session as active so it will be processed in the next loop
- NotifyChange(req.first);
- }
-
- return NULL;
- }
- } /* namespace */
|