-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext_orig.py
238 lines (206 loc) · 7.37 KB
/
context_orig.py
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
# Copyright Members of the EMI Collaboration, 2013.
# Copyright 2020 CERN
#
# 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.
from datetime import datetime
import getpass
import json
import logging
import os
import sys
from urllib.parse import quote
from M2Crypto import X509, RSA, EVP, BIO
from M2Crypto.ASN1 import UTC
from fts3 import __version__ as CLIENT_VERSION
from .exceptions import *
from .request import Request
log = logging.getLogger(__name__)
# Return a list of certificates from the file
def _get_x509_list(cert):
x509_list = []
fd = BIO.openfile(cert, "rb")
cert = X509.load_cert_bio(fd)
try:
while True:
x509_list.append(cert)
log.debug("Loaded " + cert.get_subject().as_text())
cert = X509.load_cert_bio(fd)
except X509.X509Error:
# When there are no more certs, this is what we get, so it is fine
pass
except BIO.BIOError:
# When there are no more certs, this is what we get, so it is fine
# Python 2.4
pass
del fd
return x509_list
def _get_default_proxy():
"""
Returns the default proxy location
"""
return "/tmp/x509up_u%d" % os.geteuid() # nosec
class Context(object):
def _read_passwd_from_stdin(self, *args, **kwargs):
if not self.passwd:
self.passwd = getpass.getpass("Private key password: ")
return self.passwd
def _set_x509(self, ucert, ukey):
default_proxy_location = _get_default_proxy()
# User certificate and key locations
if ucert and not ukey:
ukey = ucert
elif not ucert:
if "X509_USER_PROXY" in os.environ:
ukey = ucert = os.environ["X509_USER_PROXY"]
elif os.path.exists(default_proxy_location):
ukey = ucert = default_proxy_location
elif "X509_USER_CERT" in os.environ:
ucert = os.environ["X509_USER_CERT"]
ukey = os.environ.get("X509_USER_KEY", ucert)
elif os.path.exists("/etc/grid-security/hostcert.pem") and os.path.exists(
"/etc/grid-security/hostkey.pem"
):
ucert = "/etc/grid-security/hostcert.pem"
ukey = "/etc/grid-security/hostkey.pem"
if ucert and ukey:
self.x509_list = _get_x509_list(ucert)
self.x509 = self.x509_list[0]
not_after = self.x509.get_not_after()
try:
not_after = not_after.get_datetime()
except Exception:
# Ugly hack for Python 2.4
import time
not_after = datetime.fromtimestamp(
time.mktime(time.strptime(str(not_after), "%b %d %H:%M:%S %Y %Z")),
tz=UTC,
)
if not_after < datetime.now(UTC):
raise Exception("Proxy expired!")
try:
self.rsa_key = RSA.load_key(ukey, self._read_passwd_from_stdin)
except RSA.RSAError as e:
raise RSA.RSAError("Could not load %s: %s" % (ukey, str(e)))
except Exception as e:
raise Exception("Could not load %s: %s" % (ukey, str(e)))
self.evp_key = EVP.PKey()
self.evp_key.assign_rsa(self.rsa_key)
self.ucert = ucert
self.ukey = ukey
else:
self.ucert = self.ukey = None
if not self.ucert and not self.ukey:
log.warning("No user certificate given!")
else:
log.debug("User certificate: %s" % self.ucert)
log.debug("User private key: %s" % self.ukey)
def _set_endpoint(self, endpoint):
self.endpoint = endpoint
if self.endpoint.endswith("/"):
self.endpoint = self.endpoint[:-1]
def _validate_endpoint(self):
try:
endpoint_info = json.loads(self.get("/"))
endpoint_info["url"] = self.endpoint
except FTS3ClientException:
raise
except Exception as e:
raise BadEndpoint("%s (%s)" % (self.endpoint, str(e))).with_traceback(
sys.exc_info()[2]
)
return endpoint_info
def _set_user_agent(self, user_agent=None):
if user_agent is None:
self.user_agent = "fts-python-bindings/" + CLIENT_VERSION
else:
self.user_agent = user_agent
def __init__(
self,
endpoint,
ucert=None,
ukey=None,
verify=True,
access_token=None,
no_creds=False,
capath=None,
request_class=Request,
connectTimeout=30,
timeout=30,
user_agent=None,
):
self.passwd = None
self.access_method = None
self._set_user_agent(user_agent)
self._set_endpoint(endpoint)
if no_creds:
self.ucert = self.ukey = self.access_token = None
else:
self.access_token = access_token
if self.access_token:
self.ucert = None
self.ukey = None
self.access_method = "oauth2"
else:
self._set_x509(ucert, ukey)
self.access_method = "X509"
self._requester = request_class(
self.ucert,
self.ukey,
passwd=self.passwd,
verify=verify,
access_token=self.access_token,
capath=capath,
connectTimeout=connectTimeout,
timeout=timeout,
)
self.endpoint_info = self._validate_endpoint()
# Log obtained information
log.debug("Using endpoint: %s" % self.endpoint_info["url"])
log.debug(
"REST API version: %(major)d.%(minor)d.%(patch)d"
% self.endpoint_info["api"]
)
def get_endpoint_info(self):
return self.endpoint_info
def get(self, path, args=None):
if args:
query = "&".join("%s=%s" % (k, quote(v)) for k, v in args.items())
path += "?" + query
return self._requester.method(
"GET",
"%s/%s" % (self.endpoint, path),
headers={"User-Agent": self.user_agent},
)
def put(self, path, body):
return self._requester.method(
"PUT",
"%s/%s" % (self.endpoint, path),
body=body,
headers={"User-Agent": self.user_agent},
)
def delete(self, path):
return self._requester.method(
"DELETE",
"%s/%s" % (self.endpoint, path),
headers={"User-Agent": self.user_agent},
)
def post_json(self, path, body):
if not isinstance(body, str):
body = json.dumps(body)
headers = {"Content-Type": "application/json", "User-Agent": self.user_agent}
return self._requester.method(
"POST",
"%s/%s" % (self.endpoint, path),
body=body,
headers=headers,
)