summaryrefslogtreecommitdiffstats
path: root/src/man/sssd-secrets.5.xml
blob: 80e9c405921e1fb46a3d172d9873deebfa5ed2ce (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<reference>
<title>SSSD Manual pages</title>
<refentry>
    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="include/upstream.xml" />

    <refmeta>
        <refentrytitle>sssd-secrets</refentrytitle>
        <manvolnum>5</manvolnum>
        <refmiscinfo class="manual">File Formats and Conventions</refmiscinfo>
    </refmeta>

    <refnamediv id='name'>
        <refname>sssd-secrets</refname>
        <refpurpose>SSSD Secrets responder</refpurpose>
    </refnamediv>

    <refsect1 id='description'>
        <title>DESCRIPTION</title>
        <para>
            This manual page describes the configuration of the Secrets responder
            for
            <citerefentry>
                <refentrytitle>sssd</refentrytitle>
                <manvolnum>8</manvolnum>
            </citerefentry>.
            For a detailed syntax reference, refer to the <quote>FILE FORMAT</quote> section of the
            <citerefentry>
                <refentrytitle>sssd.conf</refentrytitle>
                <manvolnum>5</manvolnum>
            </citerefentry> manual page.
        </para>
        <para>
             Many system and user applications need to store private
             information such as passwords or service keys and have no good
             way to properly deal with them. The simple approach is to embed
             these <quote>secrets</quote> into configuration files
             potentially ending up exposing sensitive key material to
             backups, config management system and in general making it
             harder to secure data.
         </para>
         <para>
             The <ulink url="https://github.com/latchset/custodia">custodia</ulink>
             project was born to deal with this problem in cloud like
             environments, but we found the idea compelling even at a
             single system level. As a security service, SSSD is ideal to
             host this capability while offering the same API via a Unix
             Socket. This will make it possible to use local calls and have
             them transparently routed to a local or a remote key management
             store like IPA Vault for storage, escrow and recovery.
         </para>
         <para>
             The secrets are simple key-value pairs. Each user's secrets are
             namespaced using their user ID, which means the secrets will never
             collide between users. Secrets can be stored inside
             <quote>containers</quote> which can be nested.
         </para>
    </refsect1>

    <refsect1 id='usage'>
        <title>USING THE SECRETS RESPONDER</title>
        <para>
            The UNIX socket the SSSD responder listens on is located at
            <filename>/var/run/secrets.socket</filename>.
        </para>
        <para>
            The secrets responder is socket-activated by
            <citerefentry>
                <refentrytitle>systemd</refentrytitle>
                <manvolnum>1</manvolnum>
            </citerefentry>.
            Unlike
            other SSSD responders, it cannot be started by adding the
            <quote>secrets</quote> string to the <quote>service</quote>
            directive.
            The systemd socket unit is called
            <quote>sssd-secrets.socket</quote> and the corresponding service
            file is called <quote>sssd-secrets.service</quote>. In order
            for the service to be socket-activated, make sure the socket
            is enabled and active and the service is enabled:
            <programlisting>
systemctl start sssd-secrets.socket
systemctl enable sssd-secrets.socket
systemctl enable sssd-secrets.service
            </programlisting>
            Please note your distribution may already configure the units
            for you.
        </para>
    </refsect1>

    <refsect1 id='options'>
        <title>CONFIGURATION OPTIONS</title>
        <para>
            The generic SSSD responder options such as
            <quote>debug_level</quote> or <quote>fd_limit</quote> are
            accepted by the secrets responder.  Please refer to the
            <citerefentry>
                <refentrytitle>sssd.conf</refentrytitle>
                <manvolnum>5</manvolnum>
            </citerefentry> manual page for a complete list. In addition,
            there are some secrets-specific options as well.
        </para>
        <variablelist>
            <varlistentry>
                <term>provider (string)</term>
                <listitem>
                <para>
                    This option specifies where should the secrets
                    be stored. The secrets responder can configure a
                    per-user subsections that define which provider store
                    the secrets for this particular user. The per-user
                    subsections should contain all options for that user's
                    provider. If a per-user section does not exist, the
                    global settings from the secret responder's section
                    are used.  The following providers are supported:
                    <variablelist>
                        <varlistentry>
                            <term>local</term>
                            <listitem>
                                <para>
                                    The secrets are stored in a local database,
                                    encrypted at rest with a master key. The local
                                    provider does not have any additional config options
                                    at the moment.
                                </para>
                            </listitem>
                        </varlistentry>
                        <varlistentry>
                            <term>proxy</term>
                            <listitem>
                                <para>
                                    The secrets responder forwards the requests to
                                    a Custodia server. The proxy provider supports
                                    several additional options (see below).
                                </para>
                            </listitem>
                        </varlistentry>
                    </variablelist>
                </para>
                <para>
                    Default: local
                </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>containers_nest_level (integer)</term>
                <listitem>
                <para>
                    This option specifies the maximum allowed number of nested
                    containers.
                </para>
                <para>
                    Default: 4
                </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>max_secrets (integer)</term>
                <listitem>
                <para>
                    This option specifies the maximum number of secrets that
                    can be stored.
                </para>
                <para>
                    Default: 1024
                </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>max_payload_size (integer)</term>
                <listitem>
                <para>
                    This option specifies the maximum payload size allowed for
                    a secret payload in kilobytes.
                </para>
                <para>
                    Default: 16
                </para>
                </listitem>
            </varlistentry>
        </variablelist>
        <para>
            The following options are only applicable for configurations that
            use the <quote>proxy</quote> provider.
        </para>
        <variablelist>
            <varlistentry>
                <term>proxy_url (string)</term>
                <listitem>
                <para>
                    The URL the Custodia server is listening on. At the moment,
                    http and https protocols are supported.
                </para>
                <para>
                    The format of the URI must match the format defined in RFC 2732:
                </para>
                <para>
                    http[s]://&lt;host&gt;[:port]
                </para>
                <para>
                    Example: http://localhost:8080
                </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>auth_type (string)</term>
                <listitem>
                <para>
                    The method to use when authenticating to a Custodia server. The
                    following authentication methods are supported:
                </para>
                <variablelist>
                    <varlistentry>
                        <term>basic_auth</term>
                        <listitem>
                            <para>
                                Authenticate with a username and a password as set
                                in the <quote>username</quote> and
                                <quote>password</quote> options.
                            </para>
                        </listitem>
                    </varlistentry>
                    <varlistentry>
                        <term>header</term>
                        <listitem>
                            <para>
                                Authenticate with HTTP header value as defined in
                                the <quote>auth_header_name</quote> and
                                <quote>auth_header_value</quote>
                                configuration options.
                            </para>
                        </listitem>
                    </varlistentry>
                </variablelist>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>auth_header_name (string)</term>
                <listitem>
                <para>
                    If set, the secrets responder would put a header with this name
                    into the HTTP request with the value defined in the
                    <quote>auth_header_value</quote> configuration option.
                </para>
                <para>
                    Example: MYSECRETNAME
                </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>auth_header_value (string)</term>
                <listitem>
                <para>
                    The value sssd-secrets would use for the
                    <quote>auth_header_name</quote>.
                </para>
                <para>
                    Example: mysecret
                </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term>forward_headers (list of strings)</term>
                <listitem>
                <para>
                    The list of HTTP headers to forward to the Custodia server
                    together with the request.
                </para>
                <para>
                    Default: not set
                </para>
                </listitem>
            </varlistentry>
        </variablelist>
    </refsect1>
    <refsect1 id='restapi'>
        <title>USING THE REST API</title>
        <para>
            This section lists the available commands and includes examples using the
            <citerefentry>
                <refentrytitle>curl</refentrytitle>
                <manvolnum>1</manvolnum>
            </citerefentry> utility.
            All requests towards the proxy provider must set the Content
            Type header to <quote>application/json</quote>. In addition,
            the local provider also supports Content Type set to
            <quote>application/octet-stream</quote>.
            Secrets stored with requests that set the Content Type header
            to <quote>application/octet-stream</quote> are base64-encoded
            when stored and decoded when retrieved, so it's not possible to
            store a secret with one Content Type and retrieve with another.
            The secret URI must begin with <filename>/secrets/</filename>.
        </para>
            <variablelist>
                <varlistentry>
                    <term>Listing secrets</term>
                    <listitem>
                    <para>
                        To list the available secrets, send a HTTP GET request
                        with a trailing slash appended to the container path.
                    </para>
                    <para>
                        Example:
                        <programlisting>
curl -H "Content-Type: application/json" \
     --unix-socket /var/run/secrets.socket \
     -XGET http://localhost/secrets/
                        </programlisting>
                    </para>
                    </listitem>
                </varlistentry>
                <varlistentry>
                    <term>Retrieving a secret</term>
                    <listitem>
                    <para>
                        To read a value of a single secret, send a HTTP GET request
                        without a trailing slash. The last portion of the URI is the name
                        of the secret.
                    </para>
                    <para>
                        Examples:
                        <programlisting>
curl -H "Content-Type: application/json" \
     --unix-socket /var/run/secrets.socket \
     -XGET http://localhost/secrets/foo
                        </programlisting>
                        <programlisting>
curl -H "Content-Type: application/octet-stream" \
     --unix-socket /var/run/secrets.socket \
     -XGET http://localhost/secrets/bar
                        </programlisting>
                    </para>
                    </listitem>
                </varlistentry>
                <varlistentry>
                    <term>Setting a secret</term>
                    <listitem>
                    <para>
                        To set a secret using the <quote>application/json</quote>
                        type, send a HTTP PUT request with a
                        JSON payload that includes type and value. The type
                        should be set to "simple" and the value should be
                        set to the secret value. If a secret with that name
                        already exists, the response is a 409 HTTP error.
                    </para>
                    <para>
                        The <quote>application/json</quote> type just sends
                        the secret as the message payload.
                    </para>
                    <para>
                        The following example sets a secret named 'foo'
                        to a value of 'foosecret' and a secret named 'bar'
                        to a value of 'barsecret' using a different
                        Content Type.
                        <programlisting>
curl -H "Content-Type: application/json" \
     --unix-socket /var/run/secrets.socket \
     -XPUT http://localhost/secrets/foo \
     -d'{"type":"simple","value":"foosecret"}'
                        </programlisting>
                        <programlisting>
curl -H "Content-Type: application/octet-stream" \
     --unix-socket /var/run/secrets.socket \
     -XPUT http://localhost/secrets/bar \
     -d'barsecret'
                        </programlisting>
                    </para>
                    </listitem>
                </varlistentry>
                <varlistentry>
                    <term>Creating a container</term>
                    <listitem>
                    <para>
                        Containers provide an additional namespace for
                        this user's secrets. To create a container, send
                        a HTTP POST request, whose URI ends with the
                        container name. Please note the URI must end with
                        a trailing slash.
                    </para>
                    <para>
                        The following example creates a container named
                        'mycontainer':
                        <programlisting>
curl -H "Content-Type: application/json" \
     --unix-socket /var/run/secrets.socket \
     -XPOST http://localhost/secrets/mycontainer/
                        </programlisting>
                    </para>
                    <para>
                        To manipulate secrets under this container, just nest the
                        secrets underneath the container path:
                        <programlisting>
http://localhost/secrets/mycontainer/mysecret
                        </programlisting>
                    </para>
                    </listitem>
                </varlistentry>
                <varlistentry>
                    <term>Deleting a secret or a container</term>
                    <listitem>
                    <para>
                        To delete a secret or a container, send a HTTP DELETE
                        request with a path to the secret or the container.
                    </para>
                    <para>
                        The following example deletes a secret named 'foo'.
                        <programlisting>
curl -H "Content-Type: application/json" \
     --unix-socket /var/run/secrets.socket \
     -XDELETE http://localhost/secrets/foo
                        </programlisting>
                    </para>
                    </listitem>
                </varlistentry>
            </variablelist>
    </refsect1>
    <refsect1 id='custodia_example'>
        <title>EXAMPLE CUSTODIA AND PROXY PROVIDER CONFIGURATION</title>
        <para>
            For testing the proxy provider, you need to set up a Custodia server
            to proxy requests to. Please always consult the Custodia documentation,
            the configuration directives might change with different Custodia versions.
        </para>
        <para>
            This configuration will set up a Custodia server listening on
            http://localhost:8080, allowing anyone with header named MYSECRETNAME
            set to mysecretkey to communicate with the Custodia server.
            Place the contents into a file (for example,
            <replaceable>custodia.conf</replaceable>):
            <programlisting>
[global]
server_version = "Secret/0.0.7"
server_url = http://localhost:8080/
auditlog = /var/log/custodia.log
debug = True

[store:simple]
handler = custodia.store.sqlite.SqliteStore
dburi = /var/lib/custodia.db
table = secrets

[auth:header]
handler = custodia.httpd.authenticators.SimpleHeaderAuth
header = MYSECRETNAME
value = mysecretkey

[authz:paths]
handler = custodia.httpd.authorizers.SimplePathAuthz
paths = /secrets

[/]
handler = custodia.root.Root
store = simple
            </programlisting>
        </para>
        <para>
            Then run the <replaceable>custodia</replaceable> command, pointing it
            at the config file as a command line argument.
        </para>
        <para>
            Please note that currently it's not possible to proxy all
            requests globally to a Custodia instance. Instead, per-user
            subsections for user IDs that should proxy requests to Custodia
            must be defined. The following example illustrates a configuration,
            where the user with UID 123 would proxy their requests to Custodia,
            but all other user's requests would be handled by a local provider.
        </para>
        <programlisting>
[secrets]

[secrets/users/123]
provider = proxy
proxy_url = http://localhost:8080/secrets/
auth_type = header
auth_header_name = MYSECRETNAME
auth_header_value = mysecretkey
        </programlisting>
    </refsect1>
</refentry>
</reference>