2015-08-14 01:09:29 +03:00
SOPS: Secrets OPerationS
========================
2015-09-24 21:31:35 +03:00
2015-11-16 17:06:04 +03:00
**sop** is an editor of encrypted files that supports YAML, JSON and BINARY formats and encrypts with AWS KMS and PGP (via GnuPG). Watch `the demo <https://www.youtube.com/watch?v=YTEVyLXFiq0> `_ .
2015-08-14 01:10:45 +03:00
2015-09-25 22:48:47 +03:00
.. image :: http://i.imgur.com/IL6dlhm.gif
2015-09-30 18:29:49 +03:00
.. image :: https://travis-ci.org/mozilla/sops.svg?branch=master
:target: https://travis-ci.org/mozilla/sops
.. sectnum ::
.. contents :: Table of Contents
2015-09-25 22:48:47 +03:00
2015-10-09 16:44:39 +03:00
Up and running in 60 seconds
----------------------------
2015-09-07 00:20:34 +03:00
First install some libraries from your package manager:
2015-08-14 01:10:45 +03:00
2015-09-07 00:20:34 +03:00
* RHEL family::
2015-08-14 01:10:45 +03:00
2015-09-16 19:57:44 +03:00
sudo yum install libyaml-devel python-devel libffi-devel pip
2015-08-14 01:10:45 +03:00
2015-09-07 00:20:34 +03:00
* Debian family::
2015-09-16 19:57:44 +03:00
sudo apt-get install libyaml-dev python-dev libffi-dev python-pip
2015-09-07 00:20:34 +03:00
2015-09-16 00:31:36 +03:00
* MacOS::
brew install libffi libyaml
2015-09-16 19:57:44 +03:00
sudo easy_install pip
2015-09-16 00:31:36 +03:00
2015-09-07 04:46:29 +03:00
Then install `sops` from pip::
2015-09-07 00:20:34 +03:00
2015-09-16 00:31:36 +03:00
sudo pip install --upgrade sops
2015-09-07 00:20:34 +03:00
2015-10-09 16:44:39 +03:00
Clone the repository, load the test PGP key and open the test files::
$ git clone https://github.com/mozilla/sops.git
$ cd sops
$ gpg --import tests/sops_functional_tests_key.asc
$ sops example.yaml
This last step will decrypt `example.yaml` using the test private key. To create
your own secrets files using keys under your control, keep reading.
2015-09-24 20:34:19 +03:00
2015-11-03 23:21:07 +03:00
Install in a virtualenv
~~~~~~~~~~~~~~~~~~~~~~~
Assuming you already have libffi and libyaml installed, the following commands will install sops in a virtualenv:
.. code :: bash
$ sudo pip install virtualenv --upgrade
$ virtualenv ~/sopsvenv
$ source ~/sopsvenv/bin/activate
$ pip install -U sops
$ sops -h | grep ^Version
Version 0.9
2015-09-07 00:20:34 +03:00
Usage
-----
If you're using AWS KMS, create one or multiple master keys in the IAM console
and export them, comma separated, in the **SOPS_KMS_ARN** env variable. It is
recommended to use at least two master keys in different regions.
2015-08-14 01:10:45 +03:00
.. code :: bash
2015-09-07 00:20:34 +03:00
export SOPS_KMS_ARN="arn:aws:kms:us-east-1:656532927350:key/920aff2e-c5f1-4040-943a-047fa387b27e,arn:aws:kms:ap-southeast-1:656532927350:key/9006a8aa-0fa6-4c14-930e-a2dfb916de1d"
2015-08-14 01:10:45 +03:00
2015-09-07 00:20:34 +03:00
Your AWS credentials must be present in `~/.aws/credentials` . sops uses boto3.
2015-08-14 01:10:45 +03:00
2015-09-07 00:20:34 +03:00
.. code ::
2015-08-14 01:10:45 +03:00
2015-11-24 17:23:01 +03:00
$ cat ~/.aws/credentials
2015-09-07 00:20:34 +03:00
[default]
aws_access_key_id = AKI.....
aws_secret_access_key = mw......
2015-08-14 01:10:45 +03:00
2015-09-07 00:20:34 +03:00
If you want to use PGP, export the fingerprints of the public keys, comma
separated, in the **SOPS_PGP_FP** env variable.
2015-08-14 01:10:45 +03:00
.. code :: bash
2015-09-07 00:20:34 +03:00
export SOPS_PGP_FP="85D77543B3D624B63CEA9E6DBC17301B491B3F21,E60892BB9BD89A69F759A1A0A3D652173B763E8F"
2015-08-14 01:10:45 +03:00
2015-09-07 00:20:34 +03:00
Note: you can use both PGP and KMS simultaneously.
2015-08-15 00:39:08 +03:00
2015-09-07 00:20:34 +03:00
Then simply call `sops` with a file path as argument. It will handle the
encryption/decryption transparently and open the cleartext file in an editor.
2015-08-15 00:39:08 +03:00
2015-09-07 00:20:34 +03:00
.. code :: bash
2015-08-15 00:39:08 +03:00
2015-09-07 00:20:34 +03:00
$ sops mynewtestfile.yaml
mynewtestfile.yaml doesn't exist, creating it.
please wait while an encryption key is being generated and stored in a secure fashion
[... editing happens in vim, or whatever $EDITOR is set to ...]
file written to mynewtestfile.yaml
2015-08-15 00:39:08 +03:00
2015-09-30 18:29:49 +03:00
The resulting encrypted file looks like this:
2015-08-15 00:39:08 +03:00
.. code :: yaml
2015-09-30 18:29:49 +03:00
myapp1: ENC[AES256_GCM,data:Tr7o=,iv:1=,aad:No=,tag:k=]
2015-08-15 00:39:08 +03:00
app2:
db:
2015-09-30 18:29:49 +03:00
user: ENC[AES256_GCM,data:CwE4O1s=,iv:2k=,aad:o=,tag:w==]
password: ENC[AES256_GCM,data:p673w==,iv:YY=,aad:UQ=,tag:A=]
2015-08-15 00:39:08 +03:00
# private key for secret operations in app2
key: |-
2015-09-30 18:29:49 +03:00
ENC[AES256_GCM,data:Ea3kL5O5U8=,iv:DM=,aad:FKA=,tag:EA==]
2015-08-15 00:39:08 +03:00
an_array:
2015-09-30 18:29:49 +03:00
- ENC[AES256_GCM,data:v8jQ=,iv:HBE=,aad:21c=,tag:gA==]
- ENC[AES256_GCM,data:X10=,iv:o8=,aad:CQ=,tag:Hw==]
- ENC[AES256_GCM,data:KN=,iv:160=,aad:fI4=,tag:tNw==]
2015-08-15 00:39:08 +03:00
sops:
kms:
2015-09-07 00:20:34 +03:00
- created_at: 1441570389.775376
2015-09-30 18:29:49 +03:00
enc: CiC....Pm1Hm
2015-08-15 00:39:08 +03:00
arn: arn:aws:kms:us-east-1:656532927350:key/920aff2e-c5f1-4040-943a-047fa387b27e
2015-09-07 00:20:34 +03:00
- created_at: 1441570391.925734
2015-09-30 18:29:49 +03:00
enc: Ci...awNx
2015-09-07 00:20:34 +03:00
arn: arn:aws:kms:ap-southeast-1:656532927350:key/9006a8aa-0fa6-4c14-930e-a2dfb916de1d
pgp:
- fp: 85D77543B3D624B63CEA9E6DBC17301B491B3F21
created_at: 1441570391.930042
enc: |
-----BEGIN PGP MESSAGE-----
hQIMA0t4uZHfl9qgAQ//UvGAwGePyHuf2/zayWcloGaDs0MzI+zw6CmXvMRNPUsA
2015-09-30 18:29:49 +03:00
...=oJgS
2015-09-07 00:20:34 +03:00
-----END PGP MESSAGE-----
A copy of the encryption/decryption key is stored securely in each KMS and PGP
block. As long as one of the KMS or PGP method is still usable, you will be able
2015-11-05 09:36:02 +03:00
to access your data.
2015-09-07 00:20:34 +03:00
To decrypt a file in a `cat` fashion, use the `-d` flag:
2015-08-15 00:39:08 +03:00
.. code :: bash
2015-09-07 00:20:34 +03:00
$ sops -d mynewtestfile.yaml
`sops` encrypted files contain the necessary information to decrypt their content.
2015-11-05 09:36:02 +03:00
All a user of `sops` needs is valid AWS credentials and the necessary
2015-09-07 00:20:34 +03:00
permissions on KMS keys.
2015-08-14 01:10:45 +03:00
2015-11-05 09:36:02 +03:00
Given that, the only command a `sops` user needs is:
2015-08-14 01:10:45 +03:00
.. code :: bash
2015-09-07 00:20:34 +03:00
$ sops <file>
2015-08-14 01:10:45 +03:00
2015-09-07 00:20:34 +03:00
`<file>` will be opened, decrypted, passed to a text editor (vim by default),
encrypted if modified, and saved back to its original location. All of these
steps, apart from the actual editing, are transparent to the user.
2015-08-14 01:10:45 +03:00
2015-09-30 18:29:49 +03:00
Adding and removing keys
~~~~~~~~~~~~~~~~~~~~~~~~
2015-11-24 17:23:01 +03:00
When creating new files, `sops` uses the PGP and KMS defined in the command
2015-09-30 18:29:49 +03:00
line arguments `--kms` and `--pgp` , or from the environment variables
`SOPS_KMS_ARN` and `SOPS_PGP_FP` . That information is stored in the file under
2015-11-24 17:23:01 +03:00
the `sops` section, such that decrypting files does not require providing those
parameters again.
2015-09-30 18:29:49 +03:00
2015-11-24 17:23:01 +03:00
Master PGP and KMS keys can be added and removed from a `sops` file in one of
two ways: by using command line flag, or by editing the file directly.
Command line flag `--add-kms` , `--add-pgp` , `--rm-kms` and `--rm-pgp` can be
used to add and remove keys from a file. These flags use the comma separated
syntax as the `--kms` and `--pgp` arguments when creating new files.
.. code :: bash
2015-11-25 03:51:35 +03:00
# add a new pgp key to the file and rotate the data key
$ sops -r --add-pgp 85D77543B3D624B63CEA9E6DBC17301B491B3F21 example.yaml
2015-11-24 17:23:01 +03:00
2015-11-25 03:51:35 +03:00
# remove a pgp key from the file and rotate the data key
$ sops -r --rm-pgp 85D77543B3D624B63CEA9E6DBC17301B491B3F21 example.yaml
2015-11-24 17:23:01 +03:00
Alternatively, invoking `sops` with the flag **-s** will display the master keys
while editing. This method can be used to add or remove kms or pgp keys under the
sops section.
For example, to add a KMS master key to a file, add the following entry while
editing:
2015-09-30 18:29:49 +03:00
.. code :: yaml
sops:
kms:
- arn: arn:aws:kms:us-east-1:656532927350:key/920aff2e-c5f1-4040-943a-047fa387b27e
And, similarly, to add a PGP master key, we add its fingerprint:
.. code :: yaml
sops:
pgp:
- fp: 85D77543B3D624B63CEA9E6DBC17301B491B3F21
When the file is saved, `sops` will update its metadata and encrypt the data key
with the freshly added master keys. The removed entries are simply deleted from
the file.
2015-11-25 03:51:35 +03:00
When removing keys, it is recommended to rotate the data key using `-r` ,
otherwise owners of the removed key may have add access to the data key in the
past.
2015-10-27 15:49:15 +03:00
Assuming roles and using KMS in various AWS accounts
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SOPS has the ability to use KMS in multiple AWS accounts by assuming roles in
each account. Being able to assume roles is a nice feature of AWS that allows
2015-11-05 09:36:02 +03:00
administrators to establish trust relationships between accounts, typically from
2015-10-27 15:49:15 +03:00
the most secure account to the least secure one. In our use-case, we use roles
to indicate that a user of the Master AWS account is allowed to make use of KMS
master keys in development and staging AWS accounts. Using roles, a single file
can be encrypted with KMS keys in multiple accounts, thus increasing reliability
and ease of use.
2015-09-30 18:29:49 +03:00
You can use keys in various accounts by tying each KMS master key to a role that
the user is allowed to assume in each account. The `IAM roles
<http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html> `_
documentation has full details on how this needs to be configured on AWS's side.
2015-10-27 15:49:15 +03:00
2015-09-30 18:29:49 +03:00
From the point of view of `sops` , you only need to specify the role a KMS key
must assume alongside its ARN, as follows:
.. code :: yaml
sops:
kms:
- arn: arn:aws:kms:us-east-1:656532927350:key/920aff2e-c5f1-4040-943a-047fa387b27e
role: arn:aws:iam::927034868273:role/sops-dev-xyz
The role must have permission to call Encrypt and Decrypt using KMS. An example
policy is shown below.
.. code :: json
{
"Sid": "Allow use of the key",
"Effect": "Allow",
"Action": [
"kms:Encrypt",
"kms:Decrypt",
"kms:ReEncrypt*",
"kms:GenerateDataKey*",
"kms:DescribeKey"
],
"Resource": "*",
"Principal": {
"AWS": [
"arn:aws:iam::927034868273:role/sops-dev-xyz"
]
}
}
You can specify a role in the `--kms` flag and `SOPS_KMS_ARN` variable by
appending it to the ARN of the master key, separated by a **+** sign::
<KMS ARN>+<ROLE ARN>
arn:aws:kms:us-west-2:927034868273:key/fe86dd69-4132-404c-ab86-4269956b4500+arn:aws:iam::927034868273:role/sops-dev-xyz
2015-09-24 21:31:35 +03:00
Key Rotation
~~~~~~~~~~~~
2015-11-05 09:36:02 +03:00
It is recommended to renew the data key on a regular basis. `sops` supports key
2015-11-25 03:51:35 +03:00
rotation via the `-r` flag. Invoking it on an existing file causes sops to
reencrypt the file with a new data key, which is then encrypted with the various
KMS and PGP master keys defined in the file.
2015-09-24 21:31:35 +03:00
.. code :: bash
2015-11-25 03:51:35 +03:00
sops -r example.yaml
2015-09-24 21:31:35 +03:00
2015-10-26 14:06:52 +03:00
Examples
--------
2015-10-26 21:32:20 +03:00
Creating a new file
~~~~~~~~~~~~~~~~~~~
2015-11-05 09:36:02 +03:00
The command below creates a new file with a data key encrypted by KMS and PGP.
2015-10-26 21:32:20 +03:00
.. code :: bash
$ sops --kms "arn:aws:kms:us-west-2:927034868273:key/fe86dd69-4132-404c-ab86-4269956b4500" --pgp C9CAB0AF1165060DB58D6D6B2653B624D620786D /path/to/new/file.yaml
Encrypting an existing file
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Similar to the previous command, we tell sops to use one KMS and one PGP key.
The path points to an existing cleartext file, so we give sops flag `-e` to
encrypt the file, and redirect the output to a destination file.
.. code :: bash
$ export SOPS_KMS+ARN="arn:aws:kms:us-west-2:927034868273:key/fe86dd69-4132-404c-ab86-4269956b4500"
$ export SOPS_PGP_FP="C9CAB0AF1165060DB58D6D6B2653B624D620786D"
$ sops -e /path/to/existing/file.yaml > /path/to/new/encrypted/file.yaml
Decrypt the file with `-d` .
.. code :: bash
$ sops -d /path/to/new/encrypted/file.yaml
Encrypt or decrypt a file in place
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Rather than redirecting the output of `-e` or `-d` , sops can replace the
original file after encrypting or decrypting it.
.. code :: bash
# file.yaml is in cleartext
$ sops -e -i /path/to/existing/file.yaml
# file.yaml is now encrypted
$ sops -d -i /path/to/existing/file.yaml
# file.yaml is back in cleartext
2015-10-26 23:29:23 +03:00
Encrypting binary files
~~~~~~~~~~~~~~~~~~~~~~~
`sops` primary use case is encrypting YAML and JSON configuration files, but it
also has the ability to manage binary files. When encrypting a binary, sops will
read the data as bytes, encrypt it, store the encrypted base64 under
`tree['data']` and write the result as JSON.
Note that the base64 encoding of encrypted data can actually make the encrypted
file larger than the cleartext one.
In-place encryption/decryption also works on binary files.
.. code ::
$ dd if=/dev/urandom of=/tmp/somerandom bs=1024
count=512
512+0 records in
512+0 records out
524288 bytes (524 kB) copied, 0.0466158 s, 11.2 MB/s
$ sha512sum /tmp/somerandom
9589bb20280e9d381f7a192000498c994e921b3cdb11d2ef5a986578dc2239a340b25ef30691bac72bdb14028270828dad7e8bd31e274af9828c40d216e60cbe /tmp/somerandom
2015-11-24 17:23:01 +03:00
$ sops -e -i /tmp/somerandom
2015-10-26 23:29:23 +03:00
please wait while a data encryption key is being generated and stored securely
2015-11-24 17:23:01 +03:00
$ sops -d -i /tmp/somerandom
2015-10-26 23:29:23 +03:00
$ sha512sum /tmp/somerandom
9589bb20280e9d381f7a192000498c994e921b3cdb11d2ef5a986578dc2239a340b25ef30691bac72bdb14028270828dad7e8bd31e274af9828c40d216e60cbe /tmp/somerandom
2015-10-26 14:06:52 +03:00
Extract a sub-part of a document tree
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
`sops` can extract a specific part of a YAML or JSON document, by provided the
path in the `--extract` command line flag. This is useful to extract specific
2015-11-05 09:36:02 +03:00
values, like keys, without needing an extra parser.
2015-10-26 14:06:52 +03:00
.. code :: bash
$ sops -d ~/git/svc/sops/example.yaml -t '["app2"]["key"]'
-----BEGIN RSA PRIVATE KEY-----
MIIBPAIBAAJBAPTMNIyHuZtpLYc7VsHQtwOkWYobkUblmHWRmbXzlAX6K8tMf3Wf
ImcbNkqAKnELzFAPSBeEMhrBN0PyOC9lYlMCAwEAAQJBALXD4sjuBn1E7Y9aGiMz
bJEBuZJ4wbhYxomVoQKfaCu+kH80uLFZKoSz85/ySauWE8LgZcMLIBoiXNhDKfQL
vHECIQD6tCG9NMFWor69kgbX8vK5Y+QL+kRq+9HK6yZ9a+hsLQIhAPn4Ie6HGTjw
fHSTXWZpGSan7NwTkIu4U5q2SlLjcZh/AiEA78NYRRBwGwAYNUqzutGBqyXKUl4u
Erb0xAEyVV7e8J0CIQC8VBY8f8yg+Y7Kxbw4zDYGyb3KkXL10YorpeuZR4LuQQIg
bKGPkMM4w5blyE1tqGN0T7sJwEx+EUOgacRNqM2ljVA=
-----END RSA PRIVATE KEY-----
2015-11-05 09:36:02 +03:00
The tree path syntax uses regular python dictionary syntax, without the
2015-10-26 14:06:52 +03:00
variable name. Extract keys by naming them, and array elements by numbering
them.
.. code :: bash
$ sops -d ~/git/svc/sops/example.yaml -t '["an_array"][1]'
secretuser2
2015-10-26 21:32:20 +03:00
Using sops as a library in a python script
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can import sops as a module and use it in your python program.
.. code :: python
import sops
pathtype = sops.detect_filetype(path)
tree = sops.load_file_into_tree(path, pathtype)
sops_key, tree = sops.get_key(tree)
tree = sops.walk_and_decrypt(tree, sops_key)
sops.write_file(tree, path=path, filetype=pathtype)
2015-10-31 16:30:07 +03:00
Showing diffs in cleartext in git
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You most likely want to store encrypted files in a version controlled repository.
Sops can be used with git to decrypt files when showing diffs between versions.
This is very handy for reviewing changes or visualizing history.
To configure sops to decrypt files during diff, create a `.gitattributes` file
at the root of your repository that contains a filter and a command.
... code::
*.yaml diff=sopsdiffer
Here we only care about YAML files. `sopsdiffer` is an arbitrary name that we map
to a sops command in the git configuration file of the repository.
.. code :: bash
$ git config diff.sopsdiffer.textconv "sops -d"
$ grep -A 1 sopsdiffer .git/config
[diff "sopsdiffer"]
textconv = "sops -d"
With this in place, calls to `git diff` will decrypt both previous and current
2015-11-05 09:36:02 +03:00
versions of the target file prior to displaying the diff. And it even works with
2015-10-31 16:30:07 +03:00
git client interfaces, because they call git diff under the hood!
2015-10-27 15:49:15 +03:00
Implementation details
2015-10-25 16:49:54 +03:00
----------------------
2015-10-05 18:50:58 +03:00
2015-10-27 15:49:15 +03:00
YAML types limitations
~~~~~~~~~~~~~~~~~~~~~~
2015-10-25 16:49:54 +03:00
`sops` only supports a subset of `YAML` 's many types. Encrypting YAML files that
contain strings, numbers and booleans will work fine.
2015-11-05 09:36:02 +03:00
Files that contain anchors will not work, because the anchors redefine the
2015-10-25 16:49:54 +03:00
structure of the file at load time. `sops` uses the path to a value as
additional data in the AEAD encryption, and thus dynamic paths generated by
anchors break the authentication step.
JSON and TEXT file types have no such feature and do not suffer this limitation.
2015-10-05 18:50:58 +03:00
2015-10-27 15:49:15 +03:00
Encryption method
~~~~~~~~~~~~~~~~~
2015-08-14 01:10:45 +03:00
2015-11-05 09:36:02 +03:00
When sops creates a file, it generates a random 256 bit data key and asks each
2015-09-07 00:20:34 +03:00
KMS and PGP master key to encrypt the data key. The encrypted version of the data
key is stored in the `sops` metadata under `sops.kms` and `sops.pgp` .
2015-08-14 01:10:45 +03:00
2015-09-07 00:20:34 +03:00
For KMS:
2015-08-15 00:39:08 +03:00
2015-09-07 00:20:34 +03:00
.. code :: yaml
sops:
kms:
- enc: CiC6yCOtzsnFhkfdIslYZ0bAf//gYLYCmIu87B3sy/5yYxKnAQEBAQB4usgjrc7JxYZH3SLJWGdGwH//4GC2ApiLvOwd7Mv+cmMAAAB+MHwGCSqGSIb3DQEHBqBvMG0CAQAwaAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyGdRODuYMHbA8Ozj8CARCAO7opMolPJUmBXd39Zlp0L2H9fzMKidHm1vvaF6nNFq0ClRY7FlIZmTm4JfnOebPseffiXFn9tG8cq7oi
enc_ts: 1439568549.245995
arn: arn:aws:kms:us-east-1:656532927350:key/920aff2e-c5f1-4040-943a-047fa387b27e
For PGP:
2015-08-15 00:39:08 +03:00
2015-09-07 00:20:34 +03:00
.. code :: yaml
sops:
pgp:
- fp: 85D77543B3D624B63CEA9E6DBC17301B491B3F21
created_at: 1441570391.930042
enc: |
-----BEGIN PGP MESSAGE-----
Version: GnuPG v1
hQIMA0t4uZHfl9qgAQ//UvGAwGePyHuf2/zayWcloGaDs0MzI+zw6CmXvMRNPUsA
pAgRKczJmDu4+XzN+cxX5Iq9xEWIbny9B5rOjwTXT3qcUYZ4Gkzbq4MWkjuPp/Iv
qO4MJaYzoH5YxC4YORQ2LvzhA2YGsCzYnljmatGEUNg01yJ6r5mwFwDxl4Nc80Cn
RwnHuGExK8j1jYJZu/juK1qRbuBOAuruIPPWVdFB845PA7waacG1IdUW3ZtBkOy3
O0BIfG2ekRg0Nik6sTOhDUA+l2bewCcECI8FYCEjwHm9Sg5cxmP2V5m1mby+uKAm
kewaoOyjbmV1Mh3iI1b/AQMr+/6ZE9MT2KnsoWosYamFyjxV5r1ZZM7cWKnOT+tu
KOvGhTV1TeOfVpajNTNwtV/Oyh3mMLQ0F0HgCTqomQVqw5+sj7OWAASuD3CU/dyo
pcmY5Qe0TNL1JsMNEH8LJDqSh+E0hsUxdY1ouVsg3ysf6mdM8ciWb3WRGxih1Vmf
unfLy8Ly3V7ZIC8EHV8aLJqh32jIZV4i2zXIoO4ZBKrudKcECY1C2+zb/TziVAL8
qyPe47q8gi1rIyEv5uirLZjgpP+JkDUgoMnzlX334FZ9pWtQMYW4Y67urAI4xUq6
/q1zBAeHoeeeQK+YKDB7Ak/Y22YsiqQbNp2n4CKSKAE4erZLWVtDvSp+49SWmS/S
XgGi+13MaXIp0ecPKyNTBjF+NOw/I3muyKr8EbDHrd2XgIT06QXqjYLsCb1TZ0zm
xgXsOTY3b+ONQ2zjhcovanDp7/k77B+gFitLYKg4BLZsl7gJB12T8MQnpfSmRT4=
=oJgS
-----END PGP MESSAGE-----
sops then opens a text editor on the newly created file. The user adds data to the
file and saves it when done.
2015-11-05 09:36:02 +03:00
Upon save, sops browses the entire file as a key/value tree. Every time sops
2015-09-07 00:20:34 +03:00
encounters a leaf value (a value that does not have children), it encrypts the
2015-11-05 09:36:02 +03:00
value with AES256_GCM using the data key and a 256 bit random initialization
2015-10-07 20:26:57 +03:00
vector.
Each file uses a single data key to encrypt all values of a document, but each
value receives a unique initialization vector and has unique authentication data.
Additional data is used to guarantee the integrity of the encrypted data
and of the tree structure: when encrypting the tree, key names are concatenated
into a byte string that is used as AEAD additional data (aad) when encrypting
2015-11-05 09:36:02 +03:00
values. We expect that keys do not carry sensitive information, and
2015-09-07 00:20:34 +03:00
keeping them in cleartext allows for better diff and overall readability.
Any valid KMS or PGP master key can later decrypt the data key and access the
data.
Multiple master keys allow for sharing encrypted files without sharing master
2015-11-05 09:36:02 +03:00
keys, and provide a disaster recovery solution. The recommended way to use sops
is to have two KMS master keys in different regions and one PGP public key with
2015-09-07 00:20:34 +03:00
the private key stored offline. If, by any chance, both KMS master keys are
lost, you can always recover the encrypted data using the PGP private key.
2015-08-14 01:10:45 +03:00
2015-10-07 20:26:57 +03:00
Message Authentication Code
~~~~~~~~~~~~~~~~~~~~~~~~~~~
In addition to authenticating branches of the tree using keys as additional
data, sops computes a MAC on all the values to ensure that no value has been
added or removed fraudulently. The MAC is stored encrypted with AES_GCM and
the data key under tree->`sops` ->`mac` .
2015-10-27 15:49:15 +03:00
Motivation
----------
Automating the distribution of secrets and credentials to components of an
infrastructure is a hard problem. We know how to encrypt secrets and share them
between humans, but extending that trust to systems is difficult. Particularly
when these systems follow devops principles and are created and destroyed
without human intervention. The issue boils down to establishing the initial
trust of a system that just joined the infrastructure, and providing it access
to the secrets it needs to configure itself.
The initial trust
~~~~~~~~~~~~~~~~~
In many infrastructures, even highly dynamic ones, the initial trust is
established by a human. An example is seen in Puppet by the way certificates are
issued: when a new system attempts to join a Puppetmaster, an administrator
must, by default, manually approve the issuance of the certificate the system
needs. This is cumbersome, and many puppetmasters are configured to auto-sign
new certificates to work around that issue. This is obviously not recommended
and far from ideal.
AWS provides a more flexible approach to trusting new systems. It uses a
powerful mechanism of roles and identities. In AWS, it is possible to verify
that a new system has been granted a specific role at creation, and it is
possible to map that role to specific resources. Instead of trusting new systems
directly, the administrator trusts the AWS permission model and its automation
infrastructure. As long as AWS keys are safe, and the AWS API is secure, we can
assume that trust is maintained and systems are who they say they are.
KMS, Trust and secrets distribution
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Using the AWS trust model, we can create fine grained access controls to
Amazon's Key Management Service (KMS). KMS is a service that encrypts and
decrypts data with AES_GCM, using keys that are never visible to users of the
service. Each KMS master key has a set of role-based access controls, and
individual roles are permitted to encrypt or decrypt using the master key. KMS
helps solve the problem of distributing keys, by shifting it into an access
control problem that can be solved using AWS's trust model.
Operational requirements
~~~~~~~~~~~~~~~~~~~~~~~~
When Mozilla's Services Operations team started revisiting the issue of
2015-11-05 09:36:02 +03:00
distributing secrets to EC2 instances, we set a goal to store these secrets
2015-10-27 15:49:15 +03:00
encrypted until the very last moment, when they need to be decrypted on target
systems. Not unlike many other organizations that operate sufficiently complex
automation, we found this to be a hard problem with a number of prerequisites:
1. Secrets must be stored in YAML files for easy integration into hiera
2015-11-24 17:23:01 +03:00
2015-10-27 15:49:15 +03:00
2. Secrets must be stored in GIT, and when a new CloudFormation stack is
built, the current HEAD is pinned to the stack. (This allows secrets to
be changed in GIT without impacting the current stack that may
autoscale).
3. Entries must be encrypted separately. Encrypting entire files as blobs makes
git conflict resolution almost impossible. Encrypting each entry
separately is much easier to manage.
4. Secrets must always be encrypted on disk (admin laptop, upstream
git repo, jenkins and S3) and only be decrypted on the target
systems
SOPS can be used to encrypt YAML, JSON and BINARY files. In BINARY mode, the
content of the file is treated as a blob, the same way PGP would encrypt an
entire file. In YAML and JSON modes, however, the content of the file is
manipulated as a tree where keys are stored in cleartext, and values are
encrypted. hiera-eyaml does something similar, and over the years we learned
to appreciate its benefits, namely:
2015-11-05 09:36:02 +03:00
* diffs are meaningful. If a single value of a file is modified, only that
2015-10-27 15:49:15 +03:00
value will show up in the diff. The diff is still limited to only showing
encrypted data, but that information is already more granular that
indicating that an entire file has changed.
* conflicts are easier to resolve. If multiple users are working on the
same encrypted files, as long as they don't modify the same values,
changes are easy to merge. This is an improvement over the PGP
encryption approach where unsolvable conflicts often happen when
multiple users work on the same file.
OpenPGP integration
~~~~~~~~~~~~~~~~~~~
OpenPGP gets a lot of bad press for being an outdated crypto protocol, and while
2015-11-05 09:36:02 +03:00
true, what really made us look for alternatives is the difficulty of managing and
distributing keys to systems. With KMS, we manage permissions to an API, not keys,
2015-10-27 15:49:15 +03:00
and that's a lot easier to do.
But PGP is not dead yet, and we still rely on it heavily as a backup solution:
all our files are encrypted with KMS and with one PGP public key, with its
private key stored securely for emergency decryption in the event that we lose
all our KMS master keys.
SOPS can be used without KMS entirely, the same way you would use an encrypted
PGP file: by referencing the pubkeys of each individual who has access to the file.
It can easily be done by providing sops with a comma-separated list of public keys
when creating a new file:
.. code :: bash
$ sops --pgp "E60892BB9BD89A69F759A1A0A3D652173B763E8F,84050F1D61AF7C230A12217687DF65059EF093D3,85D77543B3D624B63CEA9E6DBC17301B491B3F21" mynewfile.yaml
2015-09-07 00:49:33 +03:00
Threat Model
------------
The security of the data stored using sops is as strong as the weakest
cryptographic mechanism. Values are encrypted using AES256_GCM which is the
strongest symetric encryption algorithm known today. Data keys are encrypted
in either KMS, which also uses AES256_GCM, or PGP which uses either RSA or
2015-11-24 17:23:01 +03:00
ECDSA keys.
2015-09-07 00:49:33 +03:00
2015-11-05 09:36:02 +03:00
Going from the most likely to the least likely, the threats are as follows:
2015-09-07 00:49:33 +03:00
2015-11-03 23:21:07 +03:00
Compromised AWS credentials grant access to KMS master key
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-09-07 00:49:33 +03:00
An attacker with access to an AWS console can grant itself access to one of
2015-11-05 09:36:02 +03:00
the KMS master keys used to encrypt a sops data key. This threat should be
2015-09-07 00:49:33 +03:00
mitigated by protecting AWS accesses with strong controls, such as multi-factor
authentication, and also by performing regular audits of permissions granted
to AWS users.
2015-11-03 23:21:07 +03:00
Compromised PGP key
~~~~~~~~~~~~~~~~~~~
2015-09-07 00:49:33 +03:00
PGP keys are routinely mishandled, either because owners copy them from
machine to machine, or because the key is left forgotten on an unused machine
an attacker gains access to. When using PGP encryption, sops users should take
special care of PGP private keys, and store them on smart cards or offline
as often as possible.
2015-11-03 23:21:07 +03:00
Factorized RSA key
~~~~~~~~~~~~~~~~~~
2015-09-07 00:49:33 +03:00
sops doesn't apply any restriction on the size or type of PGP keys. A weak PGP
keys, for example 512 bits RSA, could be factorized by an attacker to gain
access to the private key and decrypt the data key. Users of sops should rely
on strong keys, such as 2048+ bits RSA keys, or 256+ bits ECDSA keys.
2015-11-03 23:21:07 +03:00
Weak AES cryptography
~~~~~~~~~~~~~~~~~~~~~
2015-09-07 00:49:33 +03:00
A vulnerability in AES256_GCM could potentially leak the data key or the KMS
master key used by a sops encrypted file. While no such vulnerability exists
today, we recommend that users keep their encrypted files reasonably private.
2015-08-14 01:10:45 +03:00
License
-------
Mozilla Public License Version 2.0
Authors
-------
2015-09-07 00:20:34 +03:00
* Julien Vehent <jvehent@mozilla.com>
2015-09-24 21:31:35 +03:00
* Daniel Thornton <dthornton@mozilla.com>
2015-09-25 19:19:12 +03:00
* Alexis Metaireau <alexis@mozilla.com>
* Rémy Hubscher <natim@mozilla.com>
2015-08-15 00:39:08 +03:00
Credits
-------
2015-09-24 21:31:35 +03:00
`sops` is inspired by `hiera-eyaml <https://github.com/TomPoulton/hiera-eyaml> `_ ,
`credstash <https://github.com/LuminalOSS/credstash> `_ ,
`sneaker <https://github.com/codahale/sneaker> `_ ,
`password store <http://www.passwordstore.org/> `_ and too many years managing
PGP encrypted files by hand...