/usr/lib/python2.7/dist-packages/pki/system.py is in pki-base 10.6.0-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Authors:
# Endi S. Dewata <edewata@redhat.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the Lesser GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License or
# (at your option) any later version.
#
# 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright (C) 2013 Red Hat, Inc.
# All rights reserved.
#
from __future__ import absolute_import
import pki.encoder as encoder
import xml.etree.ElementTree as ETree
import os
import pki.nssdb
SYSTEM_TYPE = "Fedora/RHEL"
if os.path.exists("/etc/debian_version"):
SYSTEM_TYPE = "debian"
class SecurityDomainHost(object):
"""
Class representing a security domain host.
"""
def __init__(self):
""" constructor """
self.id = None
self.clone = False
self.domain_manager = False
self.hostname = None
self.unsecure_port = None
self.admin_port = None
self.agent_port = None
self.ee_client_auth_port = None
self.secure_port = None
self.subsystem_name = None
@classmethod
def from_json(cls, json_value):
"""
Constructs a SecurityDomainHost object from JSON.
:param json_value: JSON string representing a security domain host.
:type json_value: str
:returns: SecurityDomainHost
"""
host = cls()
try:
# 10.2.x
host.id = json_value['id']
except KeyError:
# 10.1.x
host.id = json_value['@id']
host.admin_port = json_value['SecureAdminPort']
host.agent_port = json_value['SecureAgentPort']
host.clone = json_value['Clone']
host.domain_manager = json_value['DomainManager']
host.ee_client_auth_port = json_value['SecureEEClientAuthPort']
host.hostname = json_value['Hostname']
host.secure_port = json_value['SecurePort']
host.subsystem_name = json_value['SubsystemName']
host.unsecure_port = json_value['Port']
return host
class SecurityDomainSubsystem(object):
"""
Class representing a security domain subsystem.
This is essentially a list of SecurityDomainHost objects of a
particular subsystem type (ca, kra, tps, tks, ocsp).
"""
def __init__(self):
self.name = None
self.hosts = {}
@classmethod
def from_json(cls, json_value):
"""
Constructs a SecurityDomainSubsystem from a JSON representation.
:param json_value: JSON representation of the Security Domain Subsystem
:type json_value: str
:returns: SecurityDomainSubsystem
"""
subsystem = cls()
try:
# 10.2.x
subsystem.name = json_value['id']
except KeyError:
# 10.1.x
subsystem.name = json_value['@id']
hosts = json_value['Host']
if isinstance(hosts, dict):
hosts = [hosts]
for h in hosts:
host = SecurityDomainHost.from_json(h)
subsystem.hosts[host.id] = host
return subsystem
class SecurityDomainInfo(object):
"""
Class representing the entire security domain.
This is essentially a list of SecurityDomainSubsystem components.
"""
def __init__(self):
self.name = None
self.systems = {}
@classmethod
def from_json(cls, json_value):
"""
Create a SecurityDomainInfo object from JSON.
:param json_value: JSON representation of a security domain.
:type json_value: str
:returns: SecurityDomainInfo
"""
security_domain = cls()
try:
# 10.2.x
security_domain.name = json_value['id']
subsystems = json_value['Subsystem']
except KeyError:
# 10.1.x
domain_info = json_value['DomainInfo']
security_domain.name = domain_info['@id']
subsystems = domain_info['Subsystem']
if isinstance(subsystems, dict):
subsystems = [subsystems]
for s in subsystems:
subsystem = SecurityDomainSubsystem.from_json(s)
security_domain.systems[subsystem.name] = subsystem
return security_domain
class SecurityDomainClient(object):
"""
Client used to get the security domain from a security domain CA.
The connection details for the security domain CA are specified in
a PKIConnection object used to construct this client.
"""
def __init__(self, connection):
self.connection = connection
def get_security_domain_info(self):
"""
Contact the security domain CA specified in the connection object
used to construct this client and get the security domain using the
REST API.
:returns: pki.system.SecurityDomainInfo
"""
response = self.connection.get('/rest/securityDomain/domainInfo')
info = SecurityDomainInfo.from_json(response.json())
return info
def get_old_security_domain_info(self):
"""
Contact the security domain CA specified in the connection object
used to construct this client and get the security domain using the
old servlet-based interface. This method is useful when contacting
old servers which do not provide the REST API.
:returns: pki.system.SecurityDomainInfo
"""
response = self.connection.get('/admin/ca/getDomainXML')
root = ETree.fromstring(response.text)
domaininfo = ETree.fromstring(root.find("DomainInfo").text)
info = SecurityDomainInfo()
info.name = domaininfo.find("Name").text
return info
class ConfigurationRequest(object):
"""
Class used to represent a configuration request to be submitted to the
Java installation servlet during the execution of pkispawn.
This class is the python equivalent of the Java class:
com.netscape.certsrv.system.ConfigurationRequest
"""
def __init__(self):
self.token = pki.nssdb.INTERNAL_TOKEN_FULL_NAME
self.isClone = "false"
self.secureConn = "off"
self.importAdminCert = "false"
self.generateServerCert = "true"
class ConfigurationResponse(object):
"""
Class used to represent the response from the Java configuration
servlet during the execution of pkispawn.
This class is the python equivalent of the Java class:
com.netscape.certsrv.system.ConfigurationRequest
"""
def __init__(self):
pass
class SystemCertData(object):
"""
Class used to represent the data for a system certificate, which is
used in the data passed into and returned from the Java installation
servlet during the execution of pkispawn.
This class is the python equivalent of the Java class:
com.netscape.certsrv.system.SystemCertData
"""
def __init__(self):
pass
class SystemConfigClient(object):
"""
Client used to interact with the Java configuration servlet to configure
a Dogtag subsystem during the execution of pkispawn.
The connection details for the system being configured are passed in
the PKIConnection object used when constructing this object.
"""
def __init__(self, connection):
self.connection = connection
def configure(self, data):
"""
Contacts the server and invokes the Java configuration REST API to
configure a Dogtag subsystem.
:param data: Configuration request containing all the input needed to
configure the subsystem
:type data: ConfigurationRequest
:return: ConfigurationResponse -- response from configuration servlet.
"""
headers = {'Content-type': 'application/json',
'Accept': 'application/json'}
response = self.connection.post('/rest/installer/configure', data,
headers)
return response.json()
class SystemStatusClient(object):
"""
Client used to check the status of a Dogtag subsystem.
"""
def __init__(self, connection):
self.connection = connection
def get_status(self, timeout=None):
"""
Checks the status of the subsystem by calling the getStatus()
servlet. This is used to determine if the server is up and ready to
receive and process requests.
:return: str - getStatus response
"""
response = self.connection.get(
'/admin/' + self.connection.subsystem + '/getStatus',
timeout=timeout,
)
return response.text
encoder.NOTYPES['ConfigurationRequest'] = ConfigurationRequest
encoder.NOTYPES['ConfigurationResponse'] = ConfigurationResponse
encoder.NOTYPES['SystemCertData'] = SystemCertData
|