71c76e71386a425cef8d131b3d4ee890e6dfabb8
[platform/core/security/key-manager.git] / src / manager / main / key-manager-main.cpp
1 /*
2  *  Copyright (c) 2000 - 2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16 /*
17  * @file        ckm-manager-main.cpp
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       Implementation of central key manager
21  */
22 #include <stdlib.h>
23 #include <signal.h>
24
25 #include <openssl/ssl.h>
26 #include <openssl/conf.h>
27 #include <openssl/err.h>
28 #include <openssl/evp.h>
29
30 #include <dpl/log/log.h>
31 #include <dpl/singleton.h>
32
33 #include <socket-manager.h>
34
35 #include <ckm-service.h>
36 #include <ocsp-service.h>
37
38 #include <key-provider.h>
39 #include <file-system.h>
40
41 #define REGISTER_SOCKET_SERVICE(manager, service) \
42     registerSocketService<service>(manager, #service)
43
44 template<typename T>
45 void registerSocketService(CKM::SocketManager &manager, const std::string& serviceName)
46 {
47     T *service = NULL;
48     try {
49         service = new T();
50         service->Start();
51         manager.RegisterSocketService(service);
52         service = NULL;
53     } catch (const CKM::Exception &exception) {
54         LogError("Error in creating service " << serviceName <<
55                  ", details:\n" << exception.DumpToString());
56     } catch (const std::exception& e) {
57         LogError("Error in creating service " << serviceName <<
58                  ", details:\n" << e.what());
59     } catch (...) {
60         LogError("Error in creating service " << serviceName <<
61                  ", unknown exception occured");
62     }
63     if (service)
64         delete service;
65 }
66
67 int main(void) {
68     UNHANDLED_EXCEPTION_HANDLER_BEGIN
69     {
70         CKM::Singleton<CKM::Log::LogSystem>::Instance().SetTag("CKM");
71
72         int retCode = CKM::FileSystem::init();
73         if (retCode) {
74             LogError("Fatal error in FileSystem::init()");
75             return 1;
76         }
77
78         CKM::FileLock fl = CKM::FileSystem::lock();
79
80         sigset_t mask;
81         sigemptyset(&mask);
82         sigaddset(&mask, SIGTERM);
83         sigaddset(&mask, SIGPIPE);
84         if (-1 == pthread_sigmask(SIG_BLOCK, &mask, NULL)) {
85             LogError("Error in pthread_sigmask");
86             return 1;
87         }
88         LogInfo("Init external libraries SKMM and openssl");
89
90         SSL_load_error_strings();
91         SSL_library_init();
92         OpenSSL_add_all_ciphers();
93         OPENSSL_config(NULL);
94
95         CKM::KeyProvider::initializeLibrary();
96
97         {
98             LogInfo("Start!");
99             CKM::SocketManager manager;
100
101             REGISTER_SOCKET_SERVICE(manager, CKM::CKMService);
102             REGISTER_SOCKET_SERVICE(manager, CKM::OCSPService);
103
104             manager.MainLoop();
105         }
106         // Manager has been destroyed and we may close external libraries.
107         LogInfo("Deinit SKMM and openssl");
108         CKM::KeyProvider::closeLibrary();
109         // Deinit OPENSSL ?
110         EVP_cleanup();
111         ERR_free_strings();
112     }
113     catch (const std::runtime_error& e)
114     {
115         LogError(e.what());
116     }
117     UNHANDLED_EXCEPTION_HANDLER_END
118     return 0;
119 }
120