Spaces:
Running
Running
File size: 34,527 Bytes
b5d3a91 | 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 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 | # built-in dependencies
import os
import pickle
from typing import List, Union, Optional, Dict, Any, Set, IO, cast, Tuple
import time
import ast
# 3rd party dependencies
import numpy as np
from numpy.typing import NDArray
import pandas as pd
from tqdm import tqdm
from lightdsa import LightDSA
# project dependencies
from deepface.commons import image_utils
from deepface.modules import representation, detection, verification
from deepface.modules.exceptions import (
ImgNotFound,
PathNotFound,
EmptyDatasource,
SpoofDetected,
DimensionMismatchError,
)
from deepface.commons.logger import Logger
logger = Logger()
# pylint: disable=too-many-arguments, too-many-positional-arguments
def find(
img_path: Union[str, NDArray[Any], IO[bytes]],
db_path: str,
model_name: str = "VGG-Face",
distance_metric: str = "cosine",
enforce_detection: bool = True,
detector_backend: str = "opencv",
align: bool = True,
similarity_search: bool = False,
k: Optional[int] = None,
expand_percentage: int = 0,
threshold: Optional[float] = None,
normalization: str = "base",
silent: bool = False,
refresh_database: bool = True,
anti_spoofing: bool = False,
batched: bool = False,
credentials: Optional[Union[LightDSA, Dict[str, Any]]] = None,
) -> Union[List[pd.DataFrame], List[List[Dict[str, Any]]]]:
"""
Identify individuals in a database
Args:
img_path (str or np.ndarray): The exact path to the image, a numpy array in BGR format,
or a base64 encoded image. If the source image contains multiple faces, the result will
include information for each detected face.
db_path (string): Path to the folder containing image files. All detected faces
in the database will be considered in the decision-making process.
model_name (str): Model for face recognition. Options: VGG-Face, Facenet, Facenet512,
OpenFace, DeepFace, DeepID, Dlib, ArcFace, SFace and GhostFaceNet (default is VGG-Face).
distance_metric (string): Metric for measuring similarity. Options: 'cosine',
'euclidean', 'euclidean_l2', 'angular'.
enforce_detection (boolean): If no face is detected in an image, raise an exception.
Default is True. Set to False to avoid the exception for low-resolution images.
detector_backend (string): face detector backend. Options: 'opencv', 'retinaface',
'mtcnn', 'ssd', 'dlib', 'mediapipe', 'yolov8n', 'yolov8m', 'yolov8l', 'yolov11n',
'yolov11s', 'yolov11m', 'yolov11l', 'yolov12n', 'yolov12s', 'yolov12m', 'yolov12l',
'centerface' or 'skip'.
align (boolean): Perform alignment based on the eye positions.
similarity_search (boolean): If False, performs identity verification and returns images of
the same person. If True, performs similarity search and returns visually similar faces
(e.g., celebrity or parental look-alikes). Default is False.
k (int): Number of top similar faces to retrieve from the database for each detected face.
If not specified, all faces within the threshold will be returned (default is None).
expand_percentage (int): expand detected facial area with a percentage (default is 0).
threshold (float): Specify a threshold to determine whether a pair represents the same
person or different individuals. This threshold is used for comparing distances.
If left unset, default pre-tuned threshold values will be applied based on the specified
model name and distance metric (default is None).
normalization (string): Normalize the input image before feeding it to the model.
Default is base. Options: base, raw, Facenet, Facenet2018, VGGFace, VGGFace2, ArcFace
silent (boolean): Suppress or allow some log messages for a quieter analysis process.
refresh_database (boolean): Synchronizes the images representation (pkl) file with the
directory/db files, if set to false, it will ignore any file changes inside the db_path
directory (default is True).
anti_spoofing (boolean): Flag to enable anti spoofing (default is False).
credentials (LightDSA or dict): public - private key pair. This will be used to sign
and verify the integrity of the datastore pickle file. Since pickle files are not safe
to load from untrusted sources, signing helps detect tampering and prevents loading a
modified datastore that could execute arbitrary code.
```
from lightdsa import LightDSA
cs = LightDSA(algorithm_name = "eddsa")
DeepFace.find(..., credentials=cs)
# DeepFace.find(..., credentials={**cs.dsa.keys, "algorithm_name": cs.algorithm_name})
```
See LightDSA repo for more details: https://github.com/serengil/LightDSA
Returns:
results (List[pd.DataFrame] or List[List[Dict[str, Any]]]):
A list of pandas dataframes (if `batched=False`) or
a list of dicts (if `batched=True`).
Each dataframe or dict corresponds to the identity information for
an individual detected in the source image.
Note: If you have a large database and/or a source photo with many faces,
use `batched=True`, as it is optimized for large batch processing.
Please pay attention that when using `batched=True`, the function returns
a list of dicts (not a list of DataFrames),
but with the same keys as the columns in the DataFrame.
The DataFrame columns or dict keys include:
- 'identity': Identity label of the detected individual.
- 'target_x', 'target_y', 'target_w', 'target_h': Bounding box coordinates of the
target face in the database.
- 'source_x', 'source_y', 'source_w', 'source_h': Bounding box coordinates of the
detected face in the source image.
- 'threshold': threshold to determine a pair whether same person or different persons
- 'distance': Similarity score between the faces based on the
specified model and distance metric
- 'confidence': Confidence score indicating the likelihood that the faces belong to
the same individual. This is calculated based on the distance and the threshold.
"""
tic = time.time()
if not os.path.isdir(db_path):
raise PathNotFound(f"Passed path {db_path} does not exist!")
img, _ = image_utils.load_image(img_path)
if img is None:
raise ImgNotFound(f"Passed image path {img_path} does not exist!")
file_parts = [
"ds",
"model",
model_name,
"detector",
detector_backend,
"aligned" if align else "unaligned",
"normalization",
normalization,
"expand",
str(expand_percentage),
]
file_name = "_".join(file_parts) + ".pkl"
file_name = file_name.replace("-", "").lower()
datastore_path = os.path.join(db_path, file_name)
representations = []
# required columns for representations
df_cols = {
"identity",
"hash",
"embedding",
"target_x",
"target_y",
"target_w",
"target_h",
}
# Ensure the proper datastore file exists
if not os.path.exists(datastore_path):
__save_representations(datastore_path=datastore_path, credentials=credentials)
# Load the representations from the existing datastore
representations = __load_representations(datastore_path=datastore_path, credentials=credentials)
# check each item of representations list has required keys
for i, current_representation in enumerate(representations):
missing_keys = df_cols - set(current_representation.keys())
if len(missing_keys) > 0:
raise ValueError(
f"{i}-th item does not have some required keys - {missing_keys}."
f"Consider to delete {datastore_path}"
)
# Get the list of images on storage
storage_images = set(image_utils.yield_images(path=db_path))
if len(storage_images) == 0 and refresh_database is True:
raise EmptyDatasource(f"No item found in {db_path}")
if len(representations) == 0 and refresh_database is False:
raise EmptyDatasource(f"Nothing is found in {datastore_path}")
must_save_pickle = False
new_images, old_images, replaced_images = set(), set(), set()
if not refresh_database:
logger.info(
f"Could be some changes in {db_path} not tracked."
"Set refresh_database to true to assure that any changes will be tracked."
)
# Enforce data consistency amongst on disk images and pickle file
if refresh_database:
# embedded images
pickled_images = {representation["identity"] for representation in representations}
new_images = storage_images - pickled_images # images added to storage
old_images = pickled_images - storage_images # images removed from storage
# detect replaced images
for current_representation in representations:
identity = current_representation["identity"]
if identity in old_images:
continue
alpha_hash = current_representation["hash"]
beta_hash = image_utils.find_image_hash(identity)
if alpha_hash != beta_hash:
logger.debug(f"Even though {identity} represented before, it's replaced later.")
replaced_images.add(identity)
if not silent and (len(new_images) > 0 or len(old_images) > 0 or len(replaced_images) > 0):
logger.info(
f"Found {len(new_images)} newly added image(s)"
f", {len(old_images)} removed image(s)"
f", {len(replaced_images)} replaced image(s)."
)
# append replaced images into both old and new images. these will be dropped and re-added.
new_images.update(replaced_images)
old_images.update(replaced_images)
# remove old images first
if len(old_images) > 0:
representations = [rep for rep in representations if rep["identity"] not in old_images]
must_save_pickle = True
# find representations for new images
if len(new_images) > 0:
representations += __find_bulk_embeddings(
employees=new_images,
model_name=model_name,
detector_backend=detector_backend,
enforce_detection=enforce_detection,
align=align,
expand_percentage=expand_percentage,
normalization=normalization,
silent=silent,
) # add new images
must_save_pickle = True
if must_save_pickle:
__save_representations(
datastore_path=datastore_path, representations=representations, credentials=credentials
)
if not silent:
logger.info(f"There are now {len(representations)} representations in {file_name}")
# Should we have no representations bailout
if len(representations) == 0:
if not silent:
toc = time.time()
logger.info(f"find function duration {toc - tic} seconds")
return []
# ----------------------------
# now, we got representations for facial database
# img path might have more than once face
source_objs: List[Dict[str, Any]] = cast(
List[Dict[str, Any]],
detection.extract_faces(
img_path=img_path,
detector_backend=detector_backend,
grayscale=False,
enforce_detection=enforce_detection,
align=align,
expand_percentage=expand_percentage,
anti_spoofing=anti_spoofing,
),
)
pretuned_threshold = verification.find_threshold(model_name, distance_metric)
target_threshold = threshold or pretuned_threshold
if batched:
return find_batched(
representations=representations,
source_objs=source_objs,
model_name=model_name,
distance_metric=distance_metric,
enforce_detection=enforce_detection,
align=align,
threshold=target_threshold,
normalization=normalization,
anti_spoofing=anti_spoofing,
similarity_search=similarity_search,
k=k,
)
df = pd.DataFrame(representations)
if silent is False:
logger.info(f"Searching {img_path} in {df.shape[0]} length datastore")
resp_obj = []
for source_obj in source_objs:
if anti_spoofing is True and source_obj.get("is_real", True) is False:
raise SpoofDetected("Spoof detected in the given image.")
source_img = source_obj["face"]
source_region = source_obj["facial_area"]
target_embedding_obj = representation.represent(
img_path=source_img,
model_name=model_name,
enforce_detection=enforce_detection,
detector_backend="skip",
align=align,
normalization=normalization,
)
target_embedding_obj = cast(List[Dict[str, Any]], target_embedding_obj)
target_representation = target_embedding_obj[0]["embedding"]
result_df = df.copy() # df will be filtered in each img
result_df["threshold"] = target_threshold
result_df["source_x"] = source_region["x"]
result_df["source_y"] = source_region["y"]
result_df["source_w"] = source_region["w"]
result_df["source_h"] = source_region["h"]
distances: List[float] = []
confidences: List[float] = []
for _, instance in df.iterrows():
source_representation = instance["embedding"]
if source_representation is None:
# no representation for this image
distances.append(float("inf"))
confidences.append(0.0)
continue
target_dims = len(list(target_representation))
source_dims = len(list(source_representation))
if target_dims != source_dims:
raise DimensionMismatchError(
"Source and target embeddings must have same dimensions but "
+ f"{target_dims}:{source_dims}. Model structure may change"
+ " after pickle created. Delete the {file_name} and re-run."
)
distance: float = float(
cast(
np.float64,
verification.find_distance(
source_representation, target_representation, distance_metric
),
)
)
confidence = verification.find_confidence(
distance=distance,
model_name=model_name,
distance_metric=distance_metric,
verified=bool(distance <= pretuned_threshold),
)
distances.append(distance)
confidences.append(confidence)
# ---------------------------
result_df["distance"] = distances
result_df["confidence"] = confidences
result_df = result_df.drop(columns=["embedding"])
# pylint: disable=unsubscriptable-object
if similarity_search is False:
result_df = result_df[result_df["distance"] <= result_df["threshold"]]
result_df = result_df.sort_values(by=["distance"], ascending=True).reset_index(drop=True)
if k is not None and len(result_df) > k:
result_df = result_df.head(k)
resp_obj.append(result_df)
# -----------------------------------
if not silent:
toc = time.time()
logger.info(f"find function duration {toc - tic} seconds")
return resp_obj
def __find_bulk_embeddings(
employees: Set[str],
model_name: str = "VGG-Face",
detector_backend: str = "opencv",
enforce_detection: bool = True,
align: bool = True,
expand_percentage: int = 0,
normalization: str = "base",
silent: bool = False,
) -> List[Dict["str", Any]]:
"""
Find embeddings of a list of images
Args:
employees (list): list of exact image paths
model_name (str): Model for face recognition. Options: VGG-Face, Facenet, Facenet512,
OpenFace, DeepFace, DeepID, Dlib, ArcFace, SFace and GhostFaceNet (default is VGG-Face).
detector_backend (str): face detector model name
enforce_detection (bool): set this to False if you
want to proceed when you cannot detect any face
align (bool): enable or disable alignment of image
before feeding to facial recognition model
expand_percentage (int): expand detected facial area with a
percentage (default is 0).
normalization (bool): normalization technique
silent (bool): enable or disable informative logging
Returns:
representations (list): pivot list of dict with
image name, hash, embedding and detected face area's coordinates
"""
representations = []
for employee in tqdm(
employees,
desc="Finding representations",
disable=silent,
):
file_hash = image_utils.find_image_hash(employee)
try:
img_objs: List[Dict[str, Any]] = cast(
List[Dict[str, Any]],
detection.extract_faces(
img_path=employee,
detector_backend=detector_backend,
grayscale=False,
enforce_detection=enforce_detection,
align=align,
expand_percentage=expand_percentage,
color_face="bgr", # `represent` expects images in bgr format.
),
)
except ValueError as err:
logger.error(f"Exception while extracting faces from {employee}: {str(err)}")
img_objs = []
if len(img_objs) == 0:
representations.append(
{
"identity": employee,
"hash": file_hash,
"embedding": None,
"target_x": 0,
"target_y": 0,
"target_w": 0,
"target_h": 0,
}
)
else:
for img_obj in img_objs:
img_content = img_obj["face"]
img_region = img_obj["facial_area"]
embedding_obj = representation.represent(
img_path=img_content,
model_name=model_name,
enforce_detection=enforce_detection,
detector_backend="skip",
align=align,
normalization=normalization,
)
embedding_obj = cast(List[Dict[str, Any]], embedding_obj)
img_representation = embedding_obj[0]["embedding"]
representations.append(
{
"identity": employee,
"hash": file_hash,
"embedding": img_representation,
"target_x": img_region["x"],
"target_y": img_region["y"],
"target_w": img_region["w"],
"target_h": img_region["h"],
}
)
return representations
def find_batched(
representations: List[Dict[str, Any]],
source_objs: List[Dict[str, Any]],
model_name: str = "VGG-Face",
distance_metric: str = "cosine",
enforce_detection: bool = True,
align: bool = True,
threshold: Optional[float] = None,
normalization: str = "base",
anti_spoofing: bool = False,
similarity_search: bool = False,
k: Optional[int] = None,
) -> List[List[Dict[str, Any]]]:
"""
Perform batched face recognition by comparing source face embeddings with a set of
target embeddings. It calculates pairwise distances between the source and target
embeddings using the specified distance metric.
The function uses batch processing for efficient computation of distances.
Args:
representations (List[Dict[str, Any]]):
A list of dictionaries containing precomputed target embeddings and associated metadata.
Each dictionary should have at least the key `embedding`.
source_objs (List[Dict[str, Any]]):
A list of dictionaries representing the source images to compare against
the target embeddings. Each dictionary should contain:
- `face`: The image data or path to the source face image.
- `facial_area`: A dictionary with keys `x`, `y`, `w`, `h`
indicating the facial region.
- Optionally, `is_real`: A boolean indicating if the face is real
(used for anti-spoofing).
model_name (str): Model for face recognition. Options: VGG-Face, Facenet, Facenet512,
OpenFace, DeepFace, DeepID, Dlib, ArcFace, SFace and GhostFaceNet (default is VGG-Face).
distance_metric (string): Metric for measuring similarity. Options: 'cosine',
'euclidean', 'euclidean_l2', 'angular'.
enforce_detection (boolean): If no face is detected in an image, raise an exception.
Default is True. Set to False to avoid the exception for low-resolution images.
detector_backend (string): face detector backend. Options: 'opencv', 'retinaface',
'mtcnn', 'ssd', 'dlib', 'mediapipe', 'yolov8', 'yolov11n', 'yolov11s',
'yolov11m', 'centerface' or 'skip'.
align (boolean): Perform alignment based on the eye positions.
threshold (float): Specify a threshold to determine whether a pair represents the same
person or different individuals. This threshold is used for comparing distances.
If left unset, default pre-tuned threshold values will be applied based on the specified
model name and distance metric (default is None).
normalization (string): Normalize the input image before feeding it to the model.
Default is base. Options: base, raw, Facenet, Facenet2018, VGGFace, VGGFace2, ArcFace
silent (boolean): Suppress or allow some log messages for a quieter analysis process.
anti_spoofing (boolean): Flag to enable anti spoofing (default is False).
similarity_search (boolean): If False, performs identity verification and returns images of
the same person. If True, performs similarity search and returns visually similar faces
(e.g., celebrity or parental look-alikes). Default is False.
k (int): Number of top similar faces to retrieve from the database for each detected face.
If not specified, all faces within the threshold will be returned (default is None).
Returns:
List[List[Dict[str, Any]]]:
A list where each element corresponds to a source face and
contains a list of dictionaries with matching faces.
"""
embeddings_list = []
valid_mask_lst = []
metadata: Set[str] = set()
for item in representations:
emb = item.get("embedding")
if emb is not None:
embeddings_list.append(emb)
valid_mask_lst.append(True)
else:
embeddings_list.append(np.zeros_like(representations[0]["embedding"]))
valid_mask_lst.append(False)
metadata.update(item.keys())
# remove embedding key from other keys
metadata.discard("embedding")
metadata_lst = list(metadata)
embeddings = np.array(embeddings_list) # (N, D)
valid_mask = np.array(valid_mask_lst) # (N,)
data = {
key: np.array([item.get(key, None) for item in representations]) for key in metadata_lst
}
target_embeddings = []
source_regions = []
target_thresholds = []
target_threshold = threshold if similarity_search is False else np.inf
for source_obj in source_objs:
if anti_spoofing and not source_obj.get("is_real", True):
raise SpoofDetected("Spoof detected in the given image.")
source_img = source_obj["face"]
source_region = source_obj["facial_area"]
target_embedding_obj = representation.represent(
img_path=source_img,
model_name=model_name,
enforce_detection=enforce_detection,
detector_backend="skip",
align=align,
normalization=normalization,
)
# it is safe to access 0 index because we already fed detected face to represent function
target_embedding_obj = cast(List[Dict[str, Any]], target_embedding_obj)
target_representation = target_embedding_obj[0]["embedding"]
target_embeddings.append(target_representation)
source_regions.append(source_region)
target_thresholds.append(target_threshold)
target_embeddings_np = np.array(target_embeddings) # (M, D)
target_thresholds_np = np.array(target_thresholds) # (M,)
source_regions_arr = {
"source_x": np.array([region["x"] for region in source_regions]),
"source_y": np.array([region["y"] for region in source_regions]),
"source_w": np.array([region["w"] for region in source_regions]),
"source_h": np.array([region["h"] for region in source_regions]),
}
distances: NDArray[Any] = cast(
NDArray[Any],
verification.find_distance(embeddings, target_embeddings_np, distance_metric),
) # (M, N)
distances[:, ~valid_mask] = np.inf
resp_obj = []
for i in range(len(target_embeddings_np)):
target_distances = distances[i] # (N,)
target_threshold = target_thresholds_np[i]
N = embeddings.shape[0]
result_data = dict(data)
result_data.update(
{
"source_x": np.full(N, source_regions_arr["source_x"][i]),
"source_y": np.full(N, source_regions_arr["source_y"][i]),
"source_w": np.full(N, source_regions_arr["source_w"][i]),
"source_h": np.full(N, source_regions_arr["source_h"][i]),
"threshold": np.full(N, target_threshold),
"distance": target_distances,
}
)
mask = target_distances <= target_threshold
filtered_data = {key: value[mask] for key, value in result_data.items()}
sorted_indices = np.argsort(filtered_data["distance"])
sorted_data = {key: value[sorted_indices] for key, value in filtered_data.items()}
num_results = len(sorted_data["distance"])
result_dicts = [
{key: sorted_data[key][i] for key in sorted_data} for i in range(num_results)
]
if k is not None and len(result_dicts) > k:
result_dicts = result_dicts[:k]
resp_obj.append(result_dicts)
return resp_obj
def __save_representations(
datastore_path: str,
representations: Optional[List[Dict[str, Any]]] = None,
credentials: Optional[Union[LightDSA, Dict[str, Any]]] = None,
) -> None:
"""
Save representations to a pickle file
Args:
datastore_path (str): path to the pickle file
representations (list): list of representations to be saved
credentials (LightDSA or dict): public - private key pair as LightDSA object or dictionary.
This is going to be used to sign the integrity of the datastore pickle file.
If not provided, the datastore will not be signed.
"""
with open(datastore_path, "wb") as f:
pickle.dump(representations or [], f, pickle.HIGHEST_PROTOCOL)
__sign_datastore(datastore_path=datastore_path, credentials=credentials)
def __load_representations(
datastore_path: str, credentials: Optional[Union[LightDSA, Dict[str, Any]]] = None
) -> List[Dict[str, Any]]:
"""
Load representations from a pickle file
Args:
datastore_path (str): path to the pickle file
credentials (LightDSA or dict): public - private key pair as LightDSA object or dictionary.
This is going to be used to sign the integrity of the datastore pickle file.
If not provided, the datastore will not be signed.
Returns:
representations (list): list of loaded representations
"""
__verify_signature(datastore_path=datastore_path, credentials=credentials)
with open(datastore_path, "rb") as f:
representations = pickle.load(f)
if not isinstance(representations, list) or not all(
isinstance(x, dict) for x in representations
):
raise ValueError("Invalid datastore format")
return cast(List[Dict[str, Any]], representations)
def __build_dsa(credentials: Union[LightDSA, Dict[str, Any]]) -> LightDSA:
"""
Build LightDSA object from credentials
Args:
credentials (LightDSA or dict): public - private key pair as LightDSA object or dictionary.
Returns:
dsa (LightDSA): LightDSA object
"""
if isinstance(credentials, dict):
if "algorithm_name" not in credentials:
raise ValueError("credentials dictionary must have 'algorithm_name' key.")
dsa = LightDSA(
algorithm_name=credentials["algorithm_name"],
form_name=credentials.get("form_name"),
curve_name=credentials.get("curve_name"),
keys=credentials,
)
elif isinstance(credentials, LightDSA):
dsa = credentials
else:
raise ValueError("credentials must be either LightDSA or dict type.")
return dsa
def __sign_datastore(
datastore_path: str, credentials: Optional[Union[LightDSA, Dict[str, Any]]] = None
) -> None:
"""
Sign the datastore pickle file
Args:
datastore_path (str): path to the pickle file
credentials (LightDSA or dict): public - private key pair as LightDSA object or dictionary.
This is going to be used to sign the integrity of the datastore pickle file.
If not provided, the datastore will not be signed.
"""
if credentials is None:
logger.debug("No credentials provided. Skipping datastore signing.")
return
dsa = __build_dsa(credentials=credentials)
with open(datastore_path, "rb") as f:
data: bytes = f.read()
signature = dsa.sign(message=data)
with open(datastore_path + ".ldsa", "w", encoding="utf-8") as f:
f.write(repr(signature))
logger.debug(f"Datastore pickle {datastore_path} signed successfully.")
def __verify_signature(
datastore_path: str, credentials: Optional[Union[LightDSA, Dict[str, Any]]] = None
) -> None:
"""
Verify the signature of a datastore pickle file
Args:
datastore_path (str): path to the pickle file
credentials (LightDSA or dict): public - private key pair as LightDSA object or dictionary.
This is going to be used to sign the integrity of the datastore pickle file.
If not provided, the datastore will not be signed.
"""
signature_path = datastore_path + ".ldsa"
if credentials is None:
if not os.path.exists(signature_path):
logger.debug("No credentials provided. Skipping signature verification.")
return
raise ValueError(
f"Credentials not provided but signature file {signature_path} exists."
"Cannot verify the datastore without credentials."
)
dsa = __build_dsa(credentials=credentials)
algorithm_name = dsa.algorithm_name
with open(datastore_path, "rb") as f:
data: bytes = f.read()
if not os.path.exists(signature_path):
raise ValueError(
f"Signature file {signature_path} not found."
"You may need to re-create the pickle by deleting the existing one."
)
with open(signature_path, "r", encoding="utf-8") as f:
signature_unified = f.read()
try:
signature: Union[Tuple[int, int], Tuple[Tuple[int, int], int], int] = ast.literal_eval(
signature_unified
)
except SyntaxError as err:
raise ValueError(
f"Signature content must be python literal. Verify the signature {signature_path}"
) from err
if algorithm_name == "rsa":
if not isinstance(signature, int):
raise ValueError(
f"Invalid signature format for RSA algorithm. Verify the signature {signature_path}"
)
elif algorithm_name == "dsa":
if (
not isinstance(signature, tuple)
or len(signature) != 2
or not all(isinstance(x, int) for x in signature)
):
raise ValueError(
f"DSA signature must be Tuple[int, int]. Verify the signature {signature_path}"
)
elif algorithm_name == "eddsa":
if (
not isinstance(signature, tuple) # pylint: disable=too-many-boolean-expressions
or len(signature) != 2
or not isinstance(signature[0], tuple)
or len(signature[0]) != 2
or not all(isinstance(x, int) for x in signature[0])
or not isinstance(signature[1], int)
):
raise ValueError(
"EdDSA signature must be Tuple[Tuple[int, int], int]."
f"Verify the signature {signature_path}"
)
elif algorithm_name == "ecdsa":
if (
not isinstance(signature, tuple)
or len(signature) != 2
or not all(isinstance(x, int) for x in signature)
):
raise ValueError(
f"ECDSA signature must be Tuple[int, int]. Verify the signature {signature_path}"
)
else:
raise ValueError(f"Unsupported algorithm_name: {algorithm_name}")
# this will raise exception if verification fails
is_verified = dsa.verify(message=data, signature=signature)
# still check the boolean result
if not is_verified:
raise ValueError("Datastore pickle signature verification failed.")
logger.info(f"Datastore pickle {datastore_path} signature verified successfully.")
|