-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathutils.py
595 lines (501 loc) · 18 KB
/
utils.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
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
import asyncio
import base64
import errno
import hashlib
import hmac
import json
import logging
import os
import subprocess
from datetime import date, datetime, time
from decimal import Context, Decimal, InvalidOperation
from enum import Enum
from pathlib import Path
from shutil import make_archive
from typing import (
Any,
Dict,
Iterable,
Mapping,
Optional,
Protocol,
Tuple,
Type,
TypeVar,
Union,
get_args,
)
from uuid import UUID
from zipfile import BadZipFile, ZipFile
import pydantic_core
from aleph_message.models import (
Chain,
InstanceContent,
ItemHash,
MachineType,
MessageType,
ProgramContent,
)
from aleph_message.models.execution.base import Payment, PaymentType
from aleph_message.models.execution.environment import (
FunctionEnvironment,
FunctionTriggers,
HostRequirements,
HypervisorType,
InstanceEnvironment,
MachineResources,
Subscription,
TrustedExecutionEnvironment,
)
from aleph_message.models.execution.instance import RootfsVolume
from aleph_message.models.execution.program import (
CodeContent,
Encoding,
FunctionRuntime,
)
from aleph_message.models.execution.volume import (
MachineVolume,
ParentVolume,
PersistentVolume,
VolumePersistence,
)
from aleph_message.utils import Mebibytes
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
from jwcrypto.jwa import JWA
from aleph.sdk.conf import settings
from aleph.sdk.types import GenericMessage, SEVInfo, SEVMeasurement
logger = logging.getLogger(__name__)
try:
import magic
except ImportError:
logger.info("Could not import library 'magic', MIME type detection disabled")
magic = None # type:ignore
def try_open_zip(path: Path) -> None:
"""Try opening a zip to check if it is valid"""
assert path.is_file()
with open(path, "rb") as archive_file:
with ZipFile(archive_file, "r") as archive:
if not archive.namelist():
raise BadZipFile("No file in the archive.")
def create_archive(path: Path) -> Tuple[Path, Encoding]:
"""Create a zip archive from a directory"""
if os.path.isdir(path):
if settings.CODE_USES_SQUASHFS:
logger.debug("Creating squashfs archive...")
archive_path = Path(f"{path}.squashfs")
os.system(f"mksquashfs {path} {archive_path} -noappend")
assert archive_path.is_file()
return archive_path, Encoding.squashfs
else:
logger.debug("Creating zip archive...")
make_archive(str(path), "zip", path)
archive_path = Path(f"{path}.zip")
return archive_path, Encoding.zip
elif os.path.isfile(path):
if path.suffix == ".squashfs" or (
magic and magic.from_file(path).startswith("Squashfs filesystem")
):
return path, Encoding.squashfs
else:
try_open_zip(Path(path))
return path, Encoding.zip
else:
raise FileNotFoundError("No file or directory to create the archive from")
def get_message_type_value(message_type: Type[GenericMessage]) -> MessageType:
"""Returns the value of the 'type' field of a message type class."""
type_literal = message_type.__annotations__["type"]
return type_literal.__args__[0] # Get the value from a Literal
def check_unix_socket_valid(unix_socket_path: str) -> bool:
"""Check that a unix socket exists at the given path, or raise a FileNotFoundError."""
path = Path(unix_socket_path)
if not path.exists():
raise FileNotFoundError(
errno.ENOENT, os.strerror(errno.ENOENT), unix_socket_path
)
if not path.is_socket():
raise FileNotFoundError(
errno.ENOTSOCK,
os.strerror(errno.ENOENT),
unix_socket_path,
)
return True
T = TypeVar("T", str, bytes, covariant=True)
U = TypeVar("U", str, bytes, contravariant=True)
class AsyncReadable(Protocol[T]):
async def read(self, n: int = -1) -> T: ...
class Writable(Protocol[U]):
def write(self, buffer: U) -> int: ...
async def copy_async_readable_to_buffer(
readable: AsyncReadable[T], buffer: Writable[T], chunk_size: int
):
while True:
chunk = await readable.read(chunk_size)
if not chunk:
break
buffer.write(chunk)
def enum_as_str(obj: Optional[Union[str, Enum]]) -> Optional[str]:
"""Returns the value of an Enum, or the string itself when passing a string.
Python 3.11 adds a new formatting of string enums.
`str(MyEnum.value)` becomes `MyEnum.value` instead of `value`.
"""
if not obj:
return None
if not isinstance(obj, str):
raise TypeError(f"Unsupported enum type: {type(obj)}")
if isinstance(obj, Enum):
return obj.value
return obj
def serialize_list(values: Optional[Iterable[str]]) -> Optional[str]:
if values:
return ",".join(values)
else:
return None
def _date_field_to_timestamp(date: Optional[Union[datetime, float]]) -> Optional[str]:
if date is None:
return None
elif isinstance(date, float):
return str(date)
elif hasattr(date, "timestamp"):
return str(date.timestamp())
else:
raise TypeError(f"Invalid type: `{type(date)}`")
def extended_json_encoder(obj: Any) -> Any:
"""
Extended JSON encoder for dumping objects that contain pydantic models and datetime objects.
"""
if isinstance(obj, datetime):
return obj.timestamp()
elif isinstance(obj, date):
return obj.toordinal()
elif isinstance(obj, time):
return obj.hour * 3600 + obj.minute * 60 + obj.second + obj.microsecond / 1e6
else:
return pydantic_core.to_jsonable_python(obj)
def parse_volume(volume_dict: Union[Mapping, MachineVolume]) -> MachineVolume:
if any(
isinstance(volume_dict, volume_type) for volume_type in get_args(MachineVolume)
):
return volume_dict # type: ignore
for volume_type in get_args(MachineVolume):
try:
return volume_type.model_validate(volume_dict)
except ValueError:
pass
raise ValueError(f"Could not parse volume: {volume_dict}")
def compute_sha256(s: str) -> str:
"""Compute the SHA256 hash of a string."""
return hashlib.sha256(s.encode()).hexdigest()
def to_0x_hex(b: bytes) -> str:
return "0x" + bytes.hex(b)
def bytes_from_hex(hex_string: str) -> bytes:
if hex_string.startswith("0x"):
hex_string = hex_string[2:]
hex_string = bytes.fromhex(hex_string)
return hex_string
def create_vm_control_payload(
vm_id: ItemHash, operation: str, domain: str, method: str
) -> Dict[str, str]:
path = f"/control/machine/{vm_id}/{operation}"
payload = {
"time": datetime.utcnow().isoformat() + "Z",
"method": method.upper(),
"path": path,
"domain": domain,
}
return payload
def sign_vm_control_payload(payload: Dict[str, str], ephemeral_key) -> str:
payload_as_bytes = json.dumps(payload).encode("utf-8")
payload_signature = JWA.signing_alg("ES256").sign(ephemeral_key, payload_as_bytes)
signed_operation = json.dumps(
{
"payload": payload_as_bytes.hex(),
"signature": payload_signature.hex(),
}
)
return signed_operation
async def run_in_subprocess(
command: list[str], check: bool = True, stdin_input: Optional[bytes] = None
) -> bytes:
"""Run the specified command in a subprocess, returns the stdout of the process."""
logger.debug(f"command: {' '.join(command)}")
process = await asyncio.create_subprocess_exec(
*command,
stdin=asyncio.subprocess.PIPE,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
)
stdout, stderr = await process.communicate(input=stdin_input)
if check and process.returncode:
logger.error(
f"Command failed with error code {process.returncode}:\n"
f" stdin = {stdin_input!r}\n"
f" command = {command}\n"
f" stdout = {stderr!r}"
)
raise subprocess.CalledProcessError(
process.returncode, str(command), stderr.decode()
)
return stdout
def get_vm_measure(sev_data: SEVMeasurement) -> Tuple[bytes, bytes]:
launch_measure = base64.b64decode(sev_data.launch_measure)
vm_measure = launch_measure[0:32]
nonce = launch_measure[32:48]
return vm_measure, nonce
def calculate_firmware_hash(firmware_path: Path) -> str:
"""Calculate the hash of the firmware (OVMF) file to be used in validating the measurements
Returned as hex encoded string"""
# https://www.qemu.org/docs/master/system/i386/amd-memory-encryption.html
# The value of GCTX.LD is SHA256(firmware_blob || kernel_hashes_blob || vmsas_blob), where:
# firmware_blob is the content of the entire firmware flash file (for example, OVMF.fd). [...]
# and verified again sevctl, see tests
firmware_content = firmware_path.read_bytes()
hash_calculator = hashlib.sha256(firmware_content)
return hash_calculator.hexdigest()
def compute_confidential_measure(
sev_info: SEVInfo, tik: bytes, expected_hash: str, nonce: bytes
) -> hmac.HMAC:
"""
Computes the SEV measurement using the CRN SEV data and local variables like the OVMF firmware hash,
and the session key generated.
"""
h = hmac.new(tik, digestmod="sha256")
##
# calculated per section 6.5.2
##
h.update(bytes([0x04]))
h.update(sev_info.api_major.to_bytes(1, byteorder="little"))
h.update(sev_info.api_minor.to_bytes(1, byteorder="little"))
h.update(sev_info.build_id.to_bytes(1, byteorder="little"))
h.update(sev_info.policy.to_bytes(4, byteorder="little"))
expected_hash_bytes = bytearray.fromhex(expected_hash)
h.update(expected_hash_bytes)
h.update(nonce)
return h
def make_secret_table(secret: str) -> bytearray:
"""
Makes the disk secret table to be sent to the Confidential CRN
"""
##
# Construct the secret table: two guids + 4 byte lengths plus string
# and zero terminator
#
# Secret layout is guid, len (4 bytes), data
# with len being the length from start of guid to end of data
#
# The table header covers the entire table then each entry covers
# only its local data
#
# our current table has the header guid with total table length
# followed by the secret guid with the zero terminated secret
##
# total length of table: header plus one entry with trailing \0
length = 16 + 4 + 16 + 4 + len(secret) + 1
# SEV-ES requires rounding to 16
length = (length + 15) & ~15
secret_table = bytearray(length)
secret_table[0:16] = UUID("{1e74f542-71dd-4d66-963e-ef4287ff173b}").bytes_le
secret_table[16:20] = len(secret_table).to_bytes(4, byteorder="little")
secret_table[20:36] = UUID("{736869e5-84f0-4973-92ec-06879ce3da0b}").bytes_le
secret_table[36:40] = (16 + 4 + len(secret) + 1).to_bytes(4, byteorder="little")
secret_table[40 : 40 + len(secret)] = secret.encode()
return secret_table
def encrypt_secret_table(secret_table: bytes, tek: bytes, iv: bytes) -> bytes:
"""Encrypt the secret table with the TEK in CTR mode using a random IV"""
# Initialize the cipher with AES algorithm and CTR mode
cipher = Cipher(algorithms.AES(tek), modes.CTR(iv), backend=default_backend())
encryptor = cipher.encryptor()
# Encrypt the secret table
encrypted_secret = encryptor.update(secret_table) + encryptor.finalize()
return encrypted_secret
def make_packet_header(
vm_measure: bytes,
encrypted_secret_table: bytes,
secret_table_size: int,
tik: bytes,
iv: bytes,
) -> bytearray:
"""
Creates a packet header using the encrypted disk secret table to be sent to the Confidential CRN
"""
##
# ultimately needs to be an argument, but there's only
# compressed and no real use case
##
flags = 0
##
# Table 55. LAUNCH_SECRET Packet Header Buffer
##
header = bytearray(52)
header[0:4] = flags.to_bytes(4, byteorder="little")
header[4:20] = iv
h = hmac.new(tik, digestmod="sha256")
h.update(bytes([0x01]))
# FLAGS || IV
h.update(header[0:20])
h.update(secret_table_size.to_bytes(4, byteorder="little"))
h.update(secret_table_size.to_bytes(4, byteorder="little"))
h.update(encrypted_secret_table)
h.update(vm_measure)
header[20:52] = h.digest()
return header
def safe_getattr(obj, attr, default=None):
for part in attr.split("."):
obj = getattr(obj, part, default)
if obj is default:
break
return obj
def displayable_amount(
amount: Union[str, int, float, Decimal], decimals: int = 18
) -> str:
"""Returns the amount as a string without unnecessary decimals."""
str_amount = ""
try:
dec_amount = Decimal(amount)
if decimals:
dec_amount = dec_amount.quantize(
Decimal(1) / Decimal(10**decimals), context=Context(prec=36)
)
str_amount = str(format(dec_amount.normalize(), "f"))
except ValueError:
logger.error(f"Invalid amount to display: {amount}")
exit(1)
except InvalidOperation:
logger.error(f"Invalid operation on amount to display: {amount}")
exit(1)
return str_amount
def make_instance_content(
rootfs: str,
rootfs_size: int,
payment: Optional[Payment] = None,
environment_variables: Optional[dict[str, str]] = None,
address: Optional[str] = None,
memory: Optional[int] = None,
vcpus: Optional[int] = None,
timeout_seconds: Optional[float] = None,
allow_amend: bool = False,
internet: bool = True,
aleph_api: bool = True,
hypervisor: Optional[HypervisorType] = None,
trusted_execution: Optional[TrustedExecutionEnvironment] = None,
volumes: Optional[list[Mapping]] = None,
ssh_keys: Optional[list[str]] = None,
metadata: Optional[dict[str, Any]] = None,
requirements: Optional[HostRequirements] = None,
) -> InstanceContent:
"""
Create InstanceContent object given the provided fields.
"""
address = address or "0x0000000000000000000000000000000000000000"
payment = payment or Payment(chain=Chain.ETH, type=PaymentType.hold, receiver=None)
selected_hypervisor: HypervisorType = hypervisor or HypervisorType.qemu
vcpus = vcpus or settings.DEFAULT_VM_VCPUS
memory = memory or settings.DEFAULT_VM_MEMORY
timeout_seconds = timeout_seconds or settings.DEFAULT_VM_TIMEOUT
volumes = volumes if volumes is not None else []
return InstanceContent(
address=address,
allow_amend=allow_amend,
environment=InstanceEnvironment(
internet=internet,
aleph_api=aleph_api,
hypervisor=selected_hypervisor,
trusted_execution=trusted_execution,
),
variables=environment_variables,
resources=MachineResources(
vcpus=vcpus,
memory=Mebibytes(memory),
seconds=int(timeout_seconds),
),
rootfs=RootfsVolume(
parent=ParentVolume(
ref=ItemHash(rootfs),
use_latest=True,
),
size_mib=PersistentVolume.model_validate(
{"size_mib": rootfs_size}
).size_mib,
persistence=VolumePersistence.host,
),
volumes=[parse_volume(volume) for volume in volumes],
requirements=requirements,
time=datetime.now().timestamp(),
authorized_keys=ssh_keys,
metadata=metadata,
payment=payment,
)
def make_program_content(
program_ref: str,
entrypoint: str,
runtime: str,
metadata: Optional[dict[str, Any]] = None,
address: Optional[str] = None,
vcpus: Optional[int] = None,
memory: Optional[int] = None,
timeout_seconds: Optional[float] = None,
internet: bool = False,
aleph_api: bool = True,
allow_amend: bool = False,
encoding: Encoding = Encoding.zip,
persistent: bool = False,
volumes: Optional[list[Mapping]] = None,
environment_variables: Optional[dict[str, str]] = None,
subscriptions: Optional[list[dict]] = None,
payment: Optional[Payment] = None,
) -> ProgramContent:
"""
Create ProgramContent object given the provided fields.
"""
address = address or "0x0000000000000000000000000000000000000000"
payment = payment or Payment(chain=Chain.ETH, type=PaymentType.hold, receiver=None)
vcpus = vcpus or settings.DEFAULT_VM_VCPUS
memory = memory or settings.DEFAULT_VM_MEMORY
timeout_seconds = timeout_seconds or settings.DEFAULT_VM_TIMEOUT
volumes = volumes if volumes is not None else []
subscriptions = (
[Subscription(**sub) for sub in subscriptions]
if subscriptions is not None
else None
)
return ProgramContent(
type=MachineType.vm_function,
address=address,
allow_amend=allow_amend,
code=CodeContent(
encoding=encoding,
entrypoint=entrypoint,
ref=ItemHash(program_ref),
use_latest=True,
),
on=FunctionTriggers(
http=True,
persistent=persistent,
message=subscriptions,
),
environment=FunctionEnvironment(
reproducible=False,
internet=internet,
aleph_api=aleph_api,
),
variables=environment_variables,
resources=MachineResources(
vcpus=vcpus,
memory=Mebibytes(memory),
seconds=int(timeout_seconds),
),
runtime=FunctionRuntime(
ref=ItemHash(runtime),
use_latest=True,
comment=(
"Official aleph.im runtime"
if runtime == settings.DEFAULT_RUNTIME_ID
else ""
),
),
volumes=[parse_volume(volume) for volume in volumes],
time=datetime.now().timestamp(),
metadata=metadata,
authorized_keys=[],
payment=payment,
)