a2095da81338be5c545e686c78d86191f6030595
[framework/web/wrt-installer.git] / src / jobs / widget_install / wac_security.h
1 /*
2  * Copyright (c) 2011 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    wac_security.h
18  * @author  Krzysztof Jackiewicz(k.jackiewicz@samsung.com)
19  * @version 1.0
20  * @brief
21  */
22
23 #ifndef WACSECURITY_H_
24 #define WACSECURITY_H_
25
26 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
27 #include <vcore/Certificate.h>
28 #include <vcore/CertificateCollection.h>
29
30 namespace Jobs {
31 namespace WidgetInstall {
32
33 class WacSecurity : public WrtDB::IWacSecurity
34 {
35   public:
36     WacSecurity() :
37         mRecognized(false),
38         mDistributorSigned(false),
39         mWacSigned(false)
40     {
41     }
42
43     // from IWacSecurity
44     virtual const WrtDB::WidgetCertificateDataList& getCertificateList() const
45     {
46         return mCertificateList;
47     }
48
49     virtual bool isRecognized() const { return mRecognized; }
50
51     virtual bool isDistributorSigned() const { return mDistributorSigned; }
52
53     virtual bool isWacSigned() const { return mWacSigned; }
54
55     virtual void getCertificateChainList(
56             WrtDB::CertificateChainList& list,
57             WrtDB::CertificateSource source) const;
58
59     void setRecognized(bool recognized) { mRecognized = recognized; }
60     void setDistributorSigned(bool distributorSigned)
61     {
62         mDistributorSigned = distributorSigned;
63     }
64     void setWacSigned(bool wacSigned) { mWacSigned = wacSigned; }
65
66     ValidationCore::CertificatePtr getAuthorCertificatePtr() const { return mAuthorCertificate;}
67     ValidationCore::CertificateCollectionList& getCertificateChainListRef()
68     {
69         return mCertificateChainList;
70     }
71
72     ValidationCore::CertificateCollectionList& getAuthorsCertificateChainListRef()
73     {
74         return mAuthorsCertificateChainList;
75     }
76
77     WrtDB::WidgetCertificateDataList& getCertificateListRef()
78     {
79         return mCertificateList;
80     }
81
82   private:
83     // This data are used to evaluate policy
84     WrtDB::WidgetCertificateDataList mCertificateList;
85
86     // author signature verified
87     bool mRecognized;
88     // known distribuor
89     bool mDistributorSigned;
90     // distributor is wac
91     bool mWacSigned;
92     // Author end entity certificate.
93     // Information from this certificate are shown to user
94     // during installation process.
95     ValidationCore::CertificatePtr mAuthorCertificate;
96     // This certificates are used by OCSP/CRL
97     ValidationCore::CertificateCollectionList mCertificateChainList;
98     // This authors certificates are used by tizen
99     ValidationCore::CertificateCollectionList mAuthorsCertificateChainList;
100 };
101
102 } // namespace WidgetInstall
103 } // namespace Jobs
104
105 #endif /* WACSECURITY_H_ */