1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
//
// Open Service Platform
// Copyright (c) 2012 Samsung Electronics Co., Ltd.
//
// Licensed under the Apache License, Version 2.0 (the License);
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
/**
* @file SignatureHandler.cpp
* @brief This is the implementation file for %SignatureHandler class.
*/
#include "SignatureHandler.h"
using namespace Tizen::Base;
using namespace Tizen::Base::Collection;
SignatureHandler::SignatureHandler(void)
:__pContext(null)
,__pAuthorCertChain(null)
,__pDistributorCertChain(null)
,__isAuthorSignature(false)
,__isDistributorSignature(false)
{
}
SignatureHandler::~SignatureHandler(void)
{
if (__pAuthorCertChain)
{
__pAuthorCertChain->RemoveAll(true);
delete __pAuthorCertChain;
}
if (__pDistributorCertChain)
{
__pDistributorCertChain->RemoveAll(true);
delete __pDistributorCertChain;
}
}
bool
SignatureHandler::Construct(InstallationContext* pContext)
{
__pContext = pContext;
return true;
}
bool
SignatureHandler::Parse(const char *pFilepath)
{
return ParseNormalizedDocument(pFilepath);
}
bool
SignatureHandler::OnStartElement(const char *pName)
{
TryReturn(pName, true, "[osp-installer] pName is null.");
bool status = true;
if (strcasecmp(pName, "Signature") == 0)
{
AppLogTag(OSP_INSTALLER, "------------------------------------------");
AppLogTag(OSP_INSTALLER, "signature.xml");
AppLogTag(OSP_INSTALLER, "------------------------------------------");
AppLogTag(OSP_INSTALLER, "<%s>", pName);
status = OnSignatureElement();
}
if (!status)
{
return false;
}
return true;
}
bool
SignatureHandler::OnEndElement(const char *pName)
{
TryReturn(pName, true, "[osp-installer] pName is null.");
if (strcasecmp(pName, "Signature") == 0)
{
__isDistributorSignature = false;
__isAuthorSignature = false;
AppLogTag(OSP_INSTALLER, "</%s>", pName);
}
return true;
}
bool
SignatureHandler::OnCharacters(const char *pCharacters)
{
bool status = true;
char *pName = 0;
pName = GetElementName();
TryReturn(pName, false, "[osp-installer] pName is null.");
if (strcasecmp(pName, "X509Certificate") == 0)
{
status = OnCertificateValue(pCharacters);
}
if (!status)
{
return false;
}
return true;
}
bool
SignatureHandler::OnSignatureElement(void)
{
XmlAttribute *pAttr = null;
char *pId = null;
pAttr = GetAttribute();
TryReturn(pAttr, true, "[osp-installer] pAttr is null");
pId = pAttr->Find("Id");
if (pId)
{
AppLogTag(OSP_INSTALLER, "<Id = %s>", pId);
if (strcasecmp(pId, "AuthorSignature") == 0)
{
__isAuthorSignature = true;
}
else if (strcasecmp(pId, "DistributorSignature") == 0)
{
__isDistributorSignature = true;
}
}
return true;
}
bool
SignatureHandler::OnCertificateValue(const char *pCharacters)
{
AppLogTag(OSP_INSTALLER, "<X509Certificate>%s</X509Certificate>", pCharacters);
result r = E_SUCCESS;
bool res = true;
ByteBuffer* pByteBuffer = null;
if (__isAuthorSignature == true)
{
if (__pAuthorCertChain == null)
{
__pAuthorCertChain = new ArrayList;
TryCatch(__pAuthorCertChain, res = false, "[osp-installer] __pAuthorCertChain is null");
}
pByteBuffer = new ByteBuffer;
TryCatch(pByteBuffer, res = false, "[osp-installer] pByteBuffer is null");
int length = strlen(pCharacters);
pByteBuffer->Construct(length);
r = pByteBuffer->SetArray((byte*)pCharacters, 0, length);
TryCatch(!IsFailed(r), res = false, "[osp-installer] SetArray() is failed.");
pByteBuffer->Flip();
__pAuthorCertChain->Add(*pByteBuffer);
pByteBuffer = null;
}
else if (__isDistributorSignature == true)
{
if (__pDistributorCertChain == null)
{
__pDistributorCertChain = new ArrayList;
TryCatch(__pDistributorCertChain, res = false, "[osp-installer] __pDistributorCertChain is null");
}
pByteBuffer = new ByteBuffer;
TryCatch(pByteBuffer, res = false, "[osp-installer] pByteBuffer is null");
int length = strlen(pCharacters);
pByteBuffer->Construct(length);
r = pByteBuffer->SetArray((byte*)pCharacters, 0, length);
TryCatch(!IsFailed(r), res = false, "[osp-installer] SetArray() is failed.");
pByteBuffer->Flip();
__pDistributorCertChain->Add(*pByteBuffer);
pByteBuffer = null;
}
CATCH:
delete pByteBuffer;
return res;
}
ArrayList*
SignatureHandler::GetAuthorCertChain(void)
{
return __pAuthorCertChain;
}
ArrayList*
SignatureHandler::GetDistributorCertChain(void)
{
return __pDistributorCertChain;
}
|