annotate Sphinx/source/plugins/object-storage.rst @ 451:938206110483

added object storage
author Alain Mazy <alain@mazy.be>
date Fri, 03 Jul 2020 12:52:11 +0200
parents
children aef5c8b74381
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
451
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
1 .. _object-storage:
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
2
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
3
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
4 Cloud Object Storage plugins
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
5 ============================
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
6
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
7 .. contents::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
8
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
9
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
10 Introduction
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
11 ------------
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
12
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
13 Osimis freely provides the `source code
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
14 <https://hg.orthanc-server.com/orthanc-object-storage/file/default/>`__ of 3 plugins
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
15 to store the Orthanc files in `Object Storage <https://en.wikipedia.org/wiki/Object_storage>`__
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
16 at the 3 main providers: `AWS <https://aws.amazon.com/s3/>`__,
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
17 `Azure <https://azure.microsoft.com/en-us/services/storage/blobs/>`__ &
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
18 `Google Cloud <https://cloud.google.com/storage>`__
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
19
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
20 Storing Orthanc files in object storage and your index SQL in a
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
21 managed database allows you to have a stateless Orthanc that does
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
22 not store any data in its local file system which is highly recommended
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
23 when deploying an application in the cloud.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
24
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
25
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
26 Compilation
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
27 -----------
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
28
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
29 .. highlight:: text
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
30
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
31 The procedure to compile the plugins is quite similar of that for the
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
32 :ref:`core of Orthanc <compiling>` although they usually require
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
33 some prerequisites. The documented procedure has been tested only
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
34 on a Debian Buster machine.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
35
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
36 The compilation of each plugin produces a shared library that contains
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
37 the plugin.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
38
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
39 Given thes plugins are used to interface with a commercial & proprietary
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
40 service, pre-compiled Windows/Docker binaries are available only for
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
41 companies who have subscribed for a `support contract <https://www.osimis.io/en/services.html#cloud-plugins>`__ at Osimis.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
42
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
43
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
44 AWS S3 plugin
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
45 ^^^^^^^^^^^^^
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
46
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
47 Prerequisites: Compile the AWS C++ SDK::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
48
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
49 $ mkdir ~/aws
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
50 $ cd ~/aws
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
51 $ git clone https://github.com/aws/aws-sdk-cpp.git
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
52 $
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
53 $ mkdir -p ~/aws/builds/aws-sdk-cpp
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
54 $ cd ~/aws/builds/aws-sdk-cpp
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
55 $ cmake -DBUILD_ONLY="s3;transfer" ~/aws/aws-sdk-cpp
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
56 $ make -j 4
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
57 $ make install
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
58
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
59 Prerequisites: Install `vcpkg <https://github.com/Microsoft/vcpkg>`__ dependencies::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
60
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
61 $ ./vcpkg install cryptopp
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
62
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
63 Compile::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
64
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
65 $ mkdir -p build/aws
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
66 $ cd build/aws
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
67 $ cmake -DCMAKE_TOOLCHAIN_FILE=[vcpkg root]\scripts\buildsystems\vcpkg.cmake ../../orthanc-object-storage/Aws
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
68
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
69 Azure Blob Storage plugin
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
70 ^^^^^^^^^^^^^^^^^^^^^^^^^
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
71
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
72 Prerequisites: Install `vcpkg <https://github.com/Microsoft/vcpkg>`__ dependencies::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
73
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
74 $ ./vcpkg install cpprestsdk
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
75
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
76
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
77 Compile::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
78
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
79 $ mkdir -p build/azure
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
80 $ cd build/azure
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
81 $ cmake -DCMAKE_TOOLCHAIN_FILE=[vcpkg root]\scripts\buildsystems\vcpkg.cmake ../../orthanc-object-storage/Azure
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
82
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
83 Google Storage plugin
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
84 ^^^^^^^^^^^^^^^^^^^^^
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
85
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
86 Prerequisites: Install `vcpkg <https://github.com/Microsoft/vcpkg>`__ dependencies::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
87
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
88 $ ./vcpkg install google-cloud-cpp
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
89 $ ./vcpkg install cryptopp
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
90
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
91 Compile::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
92
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
93 $ mkdir -p build/google
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
94 $ cd build/google
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
95 $ cmake -DCMAKE_TOOLCHAIN_FILE=[vcpkg root]\scripts\buildsystems\vcpkg.cmake ../../orthanc-object-storage/google
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
96
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
97
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
98 Configuration
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
99 -------------
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
100
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
101 .. highlight:: json
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
102
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
103 AWS S3 plugin
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
104 ^^^^^^^^^^^^^
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
105
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
106 Sample configuration::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
107
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
108 "AwsS3Storage" : {
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
109 "BucketName": "test-orthanc-s3-plugin",
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
110 "Region" : "eu-central-1",
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
111 "AccessKey" : "AKXXX",
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
112 "SecretKey" : "RhYYYY"
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
113 }
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
114
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
115 Azure Blob Storage plugin
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
116 ^^^^^^^^^^^^^^^^^^^^^^^^^
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
117
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
118 Sample configuration::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
119
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
120 "AzureBlobStorage" : {
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
121 "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=xxxxxxxxx;AccountKey=yyyyyyyy===;EndpointSuffix=core.windows.net",
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
122 "ContainerName" : "test-orthanc-storage-plugin"
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
123 }
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
124
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
125
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
126 Google Storage plugin
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
127 ^^^^^^^^^^^^^^^^^^^^^
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
128
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
129 Sample configuration::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
130
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
131 "GoogleCloudStorage" : {
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
132 "ServiceAccountFile": "/path/to/googleServiceAccountFile.json",
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
133 "BucketName": "test-orthanc-storage-plugin"
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
134 }
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
135
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
136
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
137 Client-side encryption
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
138 ----------------------
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
139
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
140 Although all cloud providers already provide encryption at rest, the plugins provide
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
141 an optional layer of client-side encryption . It is very important that you understand
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
142 the scope and benefits of this additional layer of encryption.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
143
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
144 Rationale
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
145 ^^^^^^^^^
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
146
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
147 Encryption at rest provided by cloud providers basically compares with a file-system disk encryption.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
148 If someone has access to the disk, he won't have access to your data without the encryption key.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
149
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
150 With cloud encryption at rest only, if someone has access to the "api-key" of your storage or if one
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
151 of your admin inadvertently make your storage public, `PHI <https://en.wikipedia.org/wiki/Protected_health_information>`__ will leak.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
152
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
153 Once you use client-side encryption, you'll basically store packets of meaningless bytes on the cloud infrastructure.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
154 So, if an "api-key" leaks or if the storage is misconfigured, packets of bytes will leak but not PHI since
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
155 no one will be able to decrypt them.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
156
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
157 Another advantage is that these packets of bytes might eventually not be considered as PHI anymore and eventually
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
158 help you meet your local regulations (Please check your local regulations).
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
159
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
160 However, note that, if you're running entirely in a cloud environment, your decryption keys will still
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
161 be stored on the cloud infrastructure (VM disks - process RAM) and an attacker could still eventually gain access to this keys.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
162 Furthermore, in the scope of the `Cloud Act <https://en.wikipedia.org/wiki/CLOUD_Act>`__ , the cloud provider might still have
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
163 the possibility to retrieve your data and encryption key (while it will still be more complex than with standard encryption at rest).
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
164
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
165 If Orthanc is running in your infrastructure with the Index DB on your infrastructure, and files are store in the cloud,
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
166 the master keys will remain on your infrastructure only and there's no way the data stored in the cloud could be decrypted outside your infrastructure.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
167
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
168 Also note that, although the cloud providers also provide client-side encryption, we, as an open-source project,
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
169 wanted to provide our own implementation on which you'll have full control and extension capabilities.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
170 This also allows us to implement the same logic on all cloud providers.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
171
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
172 Our encryption is based on well-known standards (see below). Since it is documented and the source code is open-source,
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
173 feel-free to have your security expert review it before using it in a production environment.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
174
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
175 Technical details
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
176 ^^^^^^^^^^^^^^^^^
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
177
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
178 Orthanc saves 2 kind of files: DICOM files and JSON summaries of DICOM files. Both files contain PHI.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
179
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
180 When configuring the plugin, you'll have to provide a `Master Key` that we can also call the `Key Encryption Key` (KEK).
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
181
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
182 For each file being saved, the plugin will generate a new `Data Encryption Key` (DEK). This DEK, encrypted with the KEK will be pre-pended to the file.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
183
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
184 If, at any point, your KEK leaks or you want to rotate your KEKs, you'll be able to use a new one to encrypt new files that are being added
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
185 and still use the old ones to decrypt data. You could then eventually start a side script to remove usages of the leaked/obsolete KEKs.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
186
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
187 To summarize:
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
188
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
189 - We use `Crypto++<https://www.cryptopp.com/>`__ to perform all encryptions.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
190 - All keys (KEK and DEK) are AES-256 keys.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
191 - DEKs and IVs are encrypted by KEK using CTR block cipher using a null IV.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
192 - data is encrypted by DEK using GCM block cipher that will also perform integrity check on the whole file.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
193
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
194 The format of data stored on disk is therefore the following:
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
195
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
196 - **VERSION HEADER**: 2 bytes: identify the structure of the following data currently `A1`
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
197 - **MASTER KEY ID**: 4 bytes: a numerical ID of the KEK that was used to encrypt the DEK
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
198 - **EIV**: 32 bytes: IV used by DEK for data encryption; encrypted by KEK
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
199 - **EDEK**: 32 bytes: the DEK encrypted by the KEK.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
200 - **CIPHER TEXT**: variable length: the DICOM/JSON file encrypted by the DEK
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
201 - **TAG**: 16 bytes: integrity check performed on the whole encrypted file (including header, master key id, EIV and EDEK)
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
202
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
203 Configuration
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
204 ^^^^^^^^^^^^^
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
205
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
206 .. highlight:: text
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
207
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
208 AES Keys shall be 32 bytes long (256 bits) and encoded in base64. Here's a sample OpenSSL command to generate such a key::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
209
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
210 openssl rand -base64 -out /tmp/test.key 32
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
211
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
212 Each key must have a unique id that is a uint32 number.
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
213
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
214 .. highlight:: json
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
215
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
216 Here's a sample configuration file of the `StorageEncryption` section of the plugins::
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
217
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
218 {
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
219 "StorageEncryption" : {
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
220 "Enable": true,
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
221 "MasterKey": [3, "/path/to/master.key"], // key id - path to the base64 encoded key
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
222 "PreviousMasterKeys" : [
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
223 [1, "/path/to/previous1.key"],
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
224 [2, "/path/to/previous2.key"]
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
225 ],
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
226 "MaxConcurrentInputSize" : 1024 // size in MB
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
227 }
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
228 }
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
229
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
230 **MaxConcurrentInputSize**: Since the memory used during encryption/decryption can grow up to a bit more
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
231 than 2 times the input, we want to limit the number of threads doing concurrent processing according
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
232 to the available memory instead of the number of concurrent threads. Therefore, if you're currently
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
233 ingesting small files, you can have a lot of thread working together while, if you're ingesting large
938206110483 added object storage
Alain Mazy <alain@mazy.be>
parents:
diff changeset
234 files, threads might have to wait before receiving a "slot" to access the encryption module.