summaryrefslogtreecommitdiff
path: root/doc/source/admin/event_notifications.rst
blob: 9df8d50f8b9777f3dba3303f9df37bcc6cbf2e98 (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
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

..
      Copyright 2013 IBM Corp.

      Licensed under the Apache License, Version 2.0 (the "License"); you may
      not use this file except in compliance with the License. You may obtain
      a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
      WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
      License for the specific language governing permissions and limitations
      under the License.

============================
Keystone Event Notifications
============================

Keystone provides notifications about usage data so that 3rd party applications
can use the data for billing, monitoring, or quota purposes. This document
describes the current inclusions and exclusions for Keystone notifications.

Keystone currently supports two notification formats: a Basic Notification,
and a Cloud Auditing Data Federation (`CADF`_) Notification.
The supported operations between the two types of notification formats are
documented below.

Common Notification Structure
=============================

Notifications generated by Keystone are generated in JSON format. An external
application can format them into ATOM format and publish them as a feed.
Currently, all notifications are immediate, meaning they are generated when a
specific event happens. Notifications all adhere to a specific top level
format:

.. code-block:: javascript

    {
        "event_type": "identity.<resource_type>.<operation>",
        "message_id": "<message_id>",
        "payload": {},
        "priority": "INFO",
        "publisher_id": "identity.<hostname>",
        "timestamp": "<timestamp>"
    }

Where ``<resource_type>`` is a Keystone resource, such as user or project, and
``<operation>`` is a Keystone operation, such as created, deleted.

The key differences between the two notification formats (Basic and CADF), lie
within the ``payload`` portion of the notification.

The ``priority`` of the notification being sent is not configurable through
the Keystone configuration file. This value is defaulted to INFO for all
notifications sent in Keystone's case.

Auditing with CADF
==================

Keystone uses the `PyCADF`_ library to emit CADF notifications, these events
adhere to the DMTF `CADF`_ specification. This standard provides auditing
capabilities for compliance with security, operational, and business processes
and supports normalized and categorized event data for federation and
aggregation.

.. _PyCADF: https://docs.openstack.org/pycadf/latest
.. _CADF: http://www.dmtf.org/standards/cadf

CADF notifications include additional context data around the ``resource``,
the ``action`` and the ``initiator``.

CADF notifications may be emitted by changing the ``notification_format`` to
``cadf`` in the configuration file.

The ``payload`` portion of a CADF Notification is a CADF ``event``, which
is represented as a JSON dictionary. For example:

.. code-block:: javascript

    {
        "typeURI": "http://schemas.dmtf.org/cloud/audit/1.0/event",
        "initiator": {
            "typeURI": "service/security/account/user",
            "host": {
                "agent": "curl/7.22.0(x86_64-pc-linux-gnu)",
                "address": "127.0.0.1"
            },
            "id": "<initiator_id>"
        },
        "target": {
            "typeURI": "<target_uri>",
            "id": "openstack:1c2fc591-facb-4479-a327-520dade1ea15"
        },
        "observer": {
            "typeURI": "service/security",
            "id": "openstack:3d4a50a9-2b59-438b-bf19-c231f9c7625a"
        },
        "eventType": "activity",
        "eventTime": "2014-02-14T01:20:47.932842+00:00",
        "action": "<action>",
        "outcome": "success",
        "id": "openstack:f5352d7b-bee6-4c22-8213-450e7b646e9f",
    }

Where the following are defined:

* ``<initiator_id>``: ID of the user that performed the operation
* ``<target_uri>``: CADF specific target URI, (i.e.:  data/security/project)
* ``<action>``: The action being performed, typically:
  ``<operation>``. ``<resource_type>``

.. note::
   The ``eventType`` property of the CADF payload is different from the
   ``event_type`` property of a notifications. The former (``eventType``) is a
   CADF keyword which designates the type of event that is being measured, this
   can be: `activity`, `monitor` or `control`. Whereas the latter
   (``event_type``) is described in previous sections as:
   `identity.<resource_type>.<operation>`

Additionally there may be extra keys present depending on the operation being
performed, these will be discussed below.

Reason
------

There is a specific ``reason`` object that will be present for the following
PCI-DSS related events:

.. list-table::
   :widths: 45 10 45
   :header-rows: 1

   * - PCI-DSS Section
     - reasonCode
     - reasonType
   * - 8.1.6 Limit repeated access attempts by locking out the user after more than X failed attempts.
     - 401
     - Maximum number of <number> login attempts exceeded.
   * - 8.2.3 Passwords must meet the established criteria.
     - 400
     - Password does not meet expected requirements: <regex_description>
   * - 8.2.4 Password must be changed every X days.
     - 401
     - Password for <user> expired and must be changed
   * - 8.2.5 Do not let users reuse the last X passwords.
     - 400
     - Changed password cannot be identical to the last <number> passwords.
   * - Other - Prevent passwords from being changed for a minimum of X days.
     - 401
     - Cannot change password before minimum age <number> days is met

The reason object will contain the following keys:

* ``reasonType``: Description of the PCI-DSS event
* ``reasonCode``: HTTP response code for the event

For more information, see
:ref:`security_compliance`
for configuring PCI-DSS in keystone.

Supported Events
----------------

The following table displays the compatibility between resource types and
operations.

.. list-table::
   :widths: 6 8 8
   :header-rows: 1

   * - Resource Type
     - Supported Operations
     - typeURI
   * - group
     - create,update,delete
     - data/security/group
   * - project
     - create,update,delete
     - data/security/project
   * - role
     - create,update,delete
     - data/security/role
   * - domain
     - create,update,delete
     - data/security/domain
   * - user
     - create,update,delete
     - data/security/account/user
   * - trust
     - create,delete
     - data/security/trust
   * - region
     - create,update,delete
     - data/security/region
   * - endpoint
     - create,update,delete
     - data/security/endpoint
   * - service
     - create,update,delete
     - data/security/service
   * - policy
     - create,update,delete
     - data/security/policy
   * - role assignment
     - add,remove
     - data/security/account/user
   * - None
     - authenticate
     - data/security/account/user

Example Notification - Project Create
-------------------------------------

The following is an example of a notification that is sent when a project is
created. This example can be applied for any ``create``, ``update`` or
``delete`` event that is seen in the table above. The ``<action>`` and
``typeURI`` fields will be change.

The difference to note is the inclusion of the ``resource_info`` field which
contains the ``<resource_id>`` that is undergoing the operation. Thus creating
a common element between the CADF and Basic notification formats.

.. code-block:: javascript

    {
        "event_type": "identity.project.created",
        "message_id": "0156ee79-b35f-4cef-ac37-d4a85f231c69",
        "payload": {
            "typeURI": "http://schemas.dmtf.org/cloud/audit/1.0/event",
            "initiator": {
                "typeURI": "service/security/account/user",
                "host": {
                    "agent": "curl/7.22.0(x86_64-pc-linux-gnu)",
                    "address": "127.0.0.1"
                },
                "id": "c9f76d3c31e142af9291de2935bde98a"
            },
            "target": {
                "typeURI": "data/security/project",
                "id": "openstack:1c2fc591-facb-4479-a327-520dade1ea15"
            },
            "observer": {
                "typeURI": "service/security",
                "id": "openstack:3d4a50a9-2b59-438b-bf19-c231f9c7625a"
            },
            "eventType": "activity",
            "eventTime": "2014-02-14T01:20:47.932842+00:00",
            "action": "created.project",
            "outcome": "success",
            "id": "openstack:f5352d7b-bee6-4c22-8213-450e7b646e9f",
            "resource_info": "671da331c47d4e29bb6ea1d270154ec3"
        },
        "priority": "INFO",
        "publisher_id": "identity.host1234",
        "timestamp": "2013-08-29 19:03:45.960280"
    }

Example Notification - Authentication
-------------------------------------

The following is an example of a notification that is sent when a user
authenticates with Keystone.

Note that this notification will be emitted if a user successfully
authenticates, and when a user fails to authenticate.

.. code-block:: javascript

    {
        "event_type": "identity.authenticate",
        "message_id": "1371a590-d5fd-448f-b3bb-a14dead6f4cb",
        "payload": {
            "typeURI": "http://schemas.dmtf.org/cloud/audit/1.0/event",
            "initiator": {
                "typeURI": "service/security/account/user",
                "host": {
                    "agent": "curl/7.22.0(x86_64-pc-linux-gnu)",
                    "address": "127.0.0.1"
                },
                "id": "c9f76d3c31e142af9291de2935bde98a"
            },
            "target": {
                "typeURI": "service/security/account/user",
                "id": "openstack:1c2fc591-facb-4479-a327-520dade1ea15"
            },
            "observer": {
                "typeURI": "service/security",
                "id": "openstack:3d4a50a9-2b59-438b-bf19-c231f9c7625a"
            },
            "eventType": "activity",
            "eventTime": "2014-02-14T01:20:47.932842+00:00",
            "action": "authenticate",
            "outcome": "success",
            "id": "openstack:f5352d7b-bee6-4c22-8213-450e7b646e9f"
        },
        "priority": "INFO",
        "publisher_id": "identity.host1234",
        "timestamp": "2014-02-14T01:20:47.932842"
    }

Example Notification - Federated Authentication
-----------------------------------------------

The following is an example of a notification that is sent when a user
authenticates with Keystone via Federation.

This example is similar to the one seen above, however the ``initiator``
portion of the ``payload`` contains a new ``credential`` section.

.. code-block:: javascript

    {
        "event_type": "identity.authenticate",
        "message_id": "1371a590-d5fd-448f-b3bb-a14dead6f4cb",
        "payload": {
            "typeURI": "http://schemas.dmtf.org/cloud/audit/1.0/event",
            "initiator": {
                "credential": {
                    "type": "http://docs.oasis-open.org/security/saml/v2.0",
                    "token": "671da331c47d4e29bb6ea1d270154ec3",
                    "identity_provider": "ACME",
                    "user": "c9f76d3c31e142af9291de2935bde98a",
                    "groups": [
                        "developers"
                    ]
                },
                "typeURI": "service/security/account/user",
                "host": {
                    "agent": "curl/7.22.0(x86_64-pc-linux-gnu)",
                    "address": "127.0.0.1"
                },
                "id": "c9f76d3c31e142af9291de2935bde98a"
            },
            "target": {
                "typeURI": "service/security/account/user",
                "id": "openstack:1c2fc591-facb-4479-a327-520dade1ea15"
            },
            "observer": {
                "typeURI": "service/security",
                "id": "openstack:3d4a50a9-2b59-438b-bf19-c231f9c7625a"
            },
            "eventType": "activity",
            "eventTime": "2014-02-14T01:20:47.932842+00:00",
            "action": "authenticate",
            "outcome": "success",
            "id": "openstack:f5352d7b-bee6-4c22-8213-450e7b646e9f"
        },
        "priority": "INFO",
        "publisher_id": "identity.host1234",
        "timestamp": "2014-02-14T01:20:47.932842"
    }

Example Notification - Role Assignment
--------------------------------------

The following is an example of a notification that is sent when a role is
granted or revoked to a project or domain, for a user or group.

It is important to note that this type of notification has many new keys
that convey the necessary information. Expect the following in the ``payload``:
``role``, ``inherited_to_project``, ``project`` or ``domain``, ``user`` or
``group``. With the exception of ``inherited_to_project``, each will represent
the unique identifier of the resource type.

.. code-block:: javascript

    {
        "event_type": "identity.role_assignment.created",
        "message_id": "a5901371-d5fd-b3bb-448f-a14dead6f4cb",
        "payload": {
            "typeURI": "http://schemas.dmtf.org/cloud/audit/1.0/event",
            "initiator": {
                "typeURI": "service/security/account/user",
                "host": {
                    "agent": "curl/7.22.0(x86_64-pc-linux-gnu)",
                    "address": "127.0.0.1"
                },
                "id": "c9f76d3c31e142af9291de2935bde98a"
            },
            "target": {
                "typeURI": "service/security/account/user",
                "id": "openstack:1c2fc591-facb-4479-a327-520dade1ea15"
            },
            "observer": {
                "typeURI": "service/security",
                "id": "openstack:3d4a50a9-2b59-438b-bf19-c231f9c7625a"
            },
            "eventType": "activity",
            "eventTime": "2014-08-20T01:20:47.932842+00:00",
            "role": "0e6b990380154a2599ce6b6e91548a68",
            "project": "24bdcff1aab8474895dbaac509793de1",
            "inherited_to_projects": false,
            "group": "c1e22dc67cbd469ea0e33bf428fe597a",
            "action": "created.role_assignment",
            "outcome": "success",
            "id": "openstack:f5352d7b-bee6-4c22-8213-450e7b646e9f"
        },
        "priority": "INFO",
        "publisher_id": "identity.host1234",
        "timestamp": "2014-08-20T01:20:47.932842"
    }

Example Notification - Expired Password
---------------------------------------

The following is an example of a notification that is sent when a user
attempts to authenticate but their password has expired.

In this example, the ``payload`` contains a ``reason`` portion which contains
both a ``reasonCode`` and ``reasonType``.

.. code-block:: javascript

   {
       "priority": "INFO",
       "_unique_id": "222441bdc958423d8af6f28f9c558614",
       "event_type": "identity.authenticate",
       "timestamp": "2016-11-11 18:31:11.290821",
       "publisher_id": "identity.host1234",
       "payload": {
           "typeURI": "http://schemas.dmtf.org/cloud/audit/1.0/event",
           "initiator": {
               "typeURI": "service/security/account/user",
               "host": {
                   "address": "127.0.0.1"
               },
               "id": "73a19db6-e26b-5313-a6df-58d297fa652e"
           },
           "target": {
               "typeURI": "service/security/account/user",
               "id": "c23e6cb7-abe0-5e42-b7f7-4c4104ea77b0"
           },
           "observer": {
               "typeURI": "service/security",
               "id": "9bdddeda6a0b451e9e0439646e532afd"
           },
           "eventType": "activity",
           "eventTime": "2016-11-11T18:31:11.156356+0000",
           "reason": {
               "reasonCode": 401,
               "reasonType": "The password is expired and needs to be reset for user: ed1ab0b40f284fb48fea9e25d0d157fc"
           },
           "action": "authenticate",
           "outcome": "failure",
           "id": "78cd795f-5850-532f-9ab1-5adb04e30c0f"
       },
       "message_id": "9a97e9d0-fef1-4852-8e82-bb693358bc46"
   }

Basic Notifications
===================

All basic notifications contain a limited amount of information, specifically,
just the resource type, operation, and resource id.

The ``payload`` portion of a Basic Notification is a single key-value pair.

.. code-block:: javascript

    {
        "resource_info": <resource_id>
    }

Where ``<resource_id>`` is the unique identifier assigned to the
``resource_type`` that is undergoing the ``<operation>``.

Supported Events
----------------

The following table displays the compatibility between resource types and
operations.

.. list-table::
   :widths: 6 8
   :header-rows: 1

   * - Resource Type
     - Supported Operations
   * - group
     - create,update,delete
   * - project
     - create,update,delete
   * - role
     - create,update,delete
   * - domain
     - create,update,delete
   * - user
     - create,update,delete
   * - trust
     - create,delete
   * - region
     - create,update,delete
   * - endpoint
     - create,update,delete
   * - service
     - create,update,delete
   * - policy
     - create,update,delete

Note, ``trusts`` are an immutable resource, they do not support ``update``
operations.

Example Notification
--------------------

This is an example of a notification sent for a newly created user:

.. code-block:: javascript

    {
        "event_type": "identity.user.created",
        "message_id": "0156ee79-b35f-4cef-ac37-d4a85f231c69",
        "payload": {
            "resource_info": "671da331c47d4e29bb6ea1d270154ec3"
        },
        "priority": "INFO",
        "publisher_id": "identity.host1234",
        "timestamp": "2013-08-29 19:03:45.960280"
    }

If the operation fails, the notification won't be sent, and no special error
notification will be sent. Information about the error is handled through
normal exception paths.

Recommendations for consumers
=============================

One of the most important notifications that Keystone emits is for project
deletions (``event_type`` = ``identity.project.deleted``). This event should
indicate to the rest of OpenStack that all resources (such as virtual machines)
associated with the project should be deleted.

Projects can also have update events (``event_type`` =
``identity.project.updated``), wherein the project has been disabled. Keystone
ensures this has an immediate impact on the accessibility of the project's
resources by revoking tokens with authorization on the project, but should
**not** have a direct impact on the projects resources (in other words, virtual
machines should **not** be deleted).

Opting out of certain notifications
===================================

There are many notifications that Keystone emits and some deployers may only
care about certain events. In Keystone there is a way to opt-out of certain
notifications. In ``/etc/keystone/keystone.conf`` you can set ``opt_out`` to
the event you wish to opt-out of. It is possible to opt-out of multiple events.

Example:

.. code-block:: ini

    [DEFAULT]
    notification_opt_out = identity.user.created
    notification_opt_out = identity.role_assignment.created
    notification_opt_out = identity.authenticate.pending

This will opt-out notifications for user creation, role assignment creation and
successful authentications. For a list of event types that can be used, refer
to: `Telemetry Measurements`_.

By default, messages for the following authentication events are suppressed
since they are too noisy: ``identity.authenticate.success``,
``identity.authenticate.pending`` and ``identity.authenticate.failed``.

.. _Telemetry Measurements: https://docs.openstack.org/ceilometer/latest/admin/telemetry-measurements.html#openstack-identity