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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
/*
* XSEC
*
* DSIGTransformC14n := Class that performs C14n canonicalisation
*
* $Id: DSIGTransformC14n.cpp 1125514 2011-05-20 19:08:33Z scantor $
*
*/
#include <xsec/dsig/DSIGTransformC14n.hpp>
#include <xsec/framework/XSECException.hpp>
#include <xsec/transformers/TXFMC14n.hpp>
#include <xsec/transformers/TXFMChain.hpp>
#include <xsec/framework/XSECError.hpp>
#include <xsec/framework/XSECEnv.hpp>
#include <xsec/dsig/DSIGSignature.hpp>
#include <xercesc/util/Janitor.hpp>
XERCES_CPP_NAMESPACE_USE
// --------------------------------------------------------------------------------
// Constructors and Destructors
// --------------------------------------------------------------------------------
DSIGTransformC14n::DSIGTransformC14n(const XSECEnv * env, DOMNode * node) :
DSIGTransform(env, node) {
m_cMethod = CANON_NONE;
mp_inclNSNode = NULL;
mp_inclNSStr = NULL;
}
DSIGTransformC14n::DSIGTransformC14n(const XSECEnv * env) :
DSIGTransform(env) {
m_cMethod = CANON_NONE;
mp_inclNSNode = NULL;
mp_inclNSStr = NULL;
}
DSIGTransformC14n::~DSIGTransformC14n() {};
// --------------------------------------------------------------------------------
// Interface Methods
// --------------------------------------------------------------------------------
transformType DSIGTransformC14n::getTransformType() {
if ((m_cMethod == CANON_C14NE_NOC) || (m_cMethod == CANON_C14NE_COM))
return TRANSFORM_EXC_C14N;
else if ((m_cMethod == CANON_C14N11_NOC) || (m_cMethod == CANON_C14N11_COM))
return TRANSFORM_C14N11;
return TRANSFORM_C14N;
}
void DSIGTransformC14n::appendTransformer(TXFMChain * input) {
TXFMC14n * c;
XSECnew(c, TXFMC14n(mp_txfmNode->getOwnerDocument()));
input->appendTxfm(c);
switch (m_cMethod) {
case (CANON_C14N_NOC) :
case (CANON_C14N11_NOC) :
case (CANON_C14NE_NOC) :
c->stripComments();
break;
case (CANON_C14N_COM) :
case (CANON_C14N11_COM) :
case (CANON_C14NE_COM) :
c->activateComments();
break;
default:
break;
}
// Check for exclusive and 1.1
if (m_cMethod == CANON_C14NE_COM || m_cMethod == CANON_C14NE_NOC) {
if (mp_inclNSStr == NULL) {
c->setExclusive();
}
else {
safeBuffer incl;
incl << (*(mp_env->getSBFormatter()) << mp_inclNSStr);
c->setExclusive(incl);
}
}
else if (m_cMethod == CANON_C14N11_COM || m_cMethod == CANON_C14N11_NOC) {
c->setInclusive11();
}
}
DOMElement * DSIGTransformC14n::createBlankTransform(DOMDocument * parentDoc) {
safeBuffer str;
const XMLCh * prefix;
DOMElement *ret;
DOMDocument *doc = mp_env->getParentDocument();
prefix = mp_env->getDSIGNSPrefix();
// Create the transform node
makeQName(str, prefix, "Transform");
ret = doc->createElementNS(DSIGConstants::s_unicodeStrURIDSIG, str.rawXMLChBuffer());
ret->setAttributeNS(NULL,DSIGConstants::s_unicodeStrAlgorithm, DSIGConstants::s_unicodeStrURIC14N_NOC);
mp_txfmNode = ret;
mp_inclNSStr = NULL;
mp_inclNSNode = NULL;
return ret;
}
void DSIGTransformC14n::load(void) {
const XMLCh * uri;
DOMNamedNodeMap * atts;
DOMNode *att;
// Read the URI for the type
if (mp_txfmNode == NULL) {
throw XSECException(XSECException::ExpectedDSIGChildNotFound,
"Expected <Transform> Node in DSIGTrasnformC14n::load");
}
atts = mp_txfmNode->getAttributes();
if (atts == NULL ||
((att = atts->getNamedItem(DSIGConstants::s_unicodeStrAlgorithm)) == NULL)) {
throw XSECException(XSECException::ExpectedDSIGChildNotFound,
"Expected to find Algorithm attribute in <Transform> node");
}
uri = att->getNodeValue();
if (strEquals(uri, DSIGConstants::s_unicodeStrURIC14N_COM)) {
m_cMethod = CANON_C14N_COM;
}
else if (strEquals(uri, DSIGConstants::s_unicodeStrURIC14N_NOC)) {
m_cMethod = CANON_C14N_NOC;
}
else if (strEquals(uri, DSIGConstants::s_unicodeStrURIC14N11_COM)) {
m_cMethod = CANON_C14N11_COM;
}
else if (strEquals(uri, DSIGConstants::s_unicodeStrURIC14N11_NOC)) {
m_cMethod = CANON_C14N11_NOC;
}
else if (strEquals(uri, DSIGConstants::s_unicodeStrURIEXC_C14N_COM)) {
m_cMethod = CANON_C14NE_COM;
}
else if (strEquals(uri, DSIGConstants::s_unicodeStrURIEXC_C14N_NOC)) {
m_cMethod = CANON_C14NE_NOC;
}
else {
throw XSECException(XSECException::ExpectedDSIGChildNotFound,
"Unexpected URI found in canonicalisation <Transform>");
}
// Determine whether there is an InclusiveNamespaces list
if (m_cMethod == CANON_C14NE_NOC || m_cMethod == CANON_C14NE_COM) {
// Exclusive, so there may be an InclusiveNamespaces node
DOMNode * inclNSNode = mp_txfmNode->getFirstChild();
while (inclNSNode != NULL && (inclNSNode->getNodeType() != DOMNode::ELEMENT_NODE ||
!strEquals(getECLocalName(inclNSNode), "InclusiveNamespaces")))
inclNSNode = inclNSNode->getNextSibling();
if (inclNSNode != 0) {
mp_inclNSNode = static_cast<DOMElement *>(inclNSNode);
// Have a prefix list
atts = mp_inclNSNode->getAttributes();
safeBuffer inSB;
if (atts == 0 || ((att = atts->getNamedItem(MAKE_UNICODE_STRING("PrefixList"))) == NULL)) {
throw XSECException(XSECException::ExpectedDSIGChildNotFound,
"Expected PrefixList in InclusiveNamespaces");
}
mp_inclNSStr = att->getNodeValue();
}
}
}
// --------------------------------------------------------------------------------
// Canonicalization Specific Methods
// --------------------------------------------------------------------------------
void DSIGTransformC14n::setCanonicalizationMethod(canonicalizationMethod method) {
const XMLCh * m = canonicalizationMethod2UNICODEURI(method);
if (strEquals(m, DSIGConstants::s_unicodeStrEmpty) || mp_txfmNode == NULL) {
throw XSECException(XSECException::TransformError,
"Either method unknown or Node not set in setCanonicalizationMethod");
}
if (method == CANON_C14N_NOC || method == CANON_C14N_COM || method == CANON_C14N11_NOC || method == CANON_C14N11_COM) {
if (m_cMethod == CANON_C14NE_NOC || m_cMethod == CANON_C14NE_COM) {
if (mp_inclNSNode != 0) {
mp_txfmNode->removeChild(mp_inclNSNode);
mp_inclNSNode->release(); // No longer required
mp_inclNSNode = NULL;
mp_inclNSStr = NULL;
}
}
}
// Now do the set.
((DOMElement *) mp_txfmNode)->setAttributeNS(NULL,MAKE_UNICODE_STRING("Algorithm"), m);
m_cMethod = method;
}
canonicalizationMethod DSIGTransformC14n::getCanonicalizationMethod(void) {
return m_cMethod;
}
void DSIGTransformC14n::createInclusiveNamespaceNode(void) {
// Creates an empty inclusiveNamespace node. Does _not_ set the prefixlist attribute
if (mp_inclNSNode != NULL)
return; // Already exists
safeBuffer str;
const XMLCh * prefix;
DOMDocument *doc = mp_env->getParentDocument();
// Use the Exclusive Canonicalisation prefix
prefix = mp_env->getECNSPrefix();
// Create the transform node
makeQName(str, prefix, "InclusiveNamespaces");
mp_inclNSNode = doc->createElementNS(DSIGConstants::s_unicodeStrURIEC, str.rawXMLChBuffer());
// Add the node to the owner element
mp_env->doPrettyPrint(mp_txfmNode);
mp_txfmNode->appendChild(mp_inclNSNode);
mp_env->doPrettyPrint(mp_txfmNode);
// Set the namespace attribute
if (prefix[0] == '\0') {
str.sbTranscodeIn("xmlns");
}
else {
str.sbTranscodeIn("xmlns:");
str.sbXMLChCat(prefix);
}
mp_inclNSNode->setAttributeNS(DSIGConstants::s_unicodeStrURIXMLNS,
str.rawXMLChBuffer(),
DSIGConstants::s_unicodeStrURIEC);
}
void DSIGTransformC14n::setInclusiveNamespaces(const XMLCh * ns) {
// Set all the namespaces at once
if (m_cMethod != CANON_C14NE_COM && m_cMethod != CANON_C14NE_NOC) {
throw XSECException(XSECException::TransformError,
"Cannot set inclusive namespaces on non Exclusive Canonicalisation");
}
if (mp_inclNSNode == NULL) {
// Create the transform node
createInclusiveNamespaceNode();
}
// Now create the prefix list
mp_inclNSNode->setAttributeNS(NULL,MAKE_UNICODE_STRING("PrefixList"), ns);
mp_inclNSStr = mp_inclNSNode->getAttributes()->getNamedItem(MAKE_UNICODE_STRING("PrefixList"))->getNodeValue();
}
void DSIGTransformC14n::addInclusiveNamespace(const char * ns) {
if (m_cMethod != CANON_C14NE_COM && m_cMethod != CANON_C14NE_NOC) {
throw XSECException(XSECException::TransformError,
"Cannot set inclusive namespaces on non Exclusive Canonicalisation");
}
if (mp_inclNSNode == NULL) {
// Create the transform node
createInclusiveNamespaceNode();
// Now create the prefix list
mp_inclNSNode->setAttributeNS(NULL,MAKE_UNICODE_STRING("PrefixList"), MAKE_UNICODE_STRING(ns));
mp_inclNSStr = mp_inclNSNode->getAttributes()->getNamedItem(MAKE_UNICODE_STRING("PrefixList"))->getNodeValue();
}
else {
// More tricky
safeBuffer str;
str << (*(mp_env->getSBFormatter()) << mp_inclNSStr);
str.sbStrcatIn(" ");
str.sbStrcatIn((char *) ns);
mp_inclNSNode->setAttributeNS(NULL,MAKE_UNICODE_STRING("PrefixList"), str.sbStrToXMLCh());
mp_inclNSStr = mp_inclNSNode->getAttributes()->getNamedItem(MAKE_UNICODE_STRING("PrefixList"))->getNodeValue();
}
}
const XMLCh * DSIGTransformC14n::getPrefixList(void) {
return mp_inclNSStr;
}
void DSIGTransformC14n::clearInclusiveNamespaces(void) {
if (mp_inclNSNode != 0) {
mp_txfmNode->removeChild(mp_inclNSNode);
mp_inclNSNode->release(); // No longer required
mp_inclNSNode = NULL;
mp_inclNSStr = NULL;
}
}
|