Asterisk - The Open Source Telephony Project GIT-master-f36a736
profile_config.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2022, Sangoma Technologies Corporation
5 *
6 * Ben Ford <bford@sangoma.com>
7 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
13 *
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
17 */
18
19#include "asterisk.h"
20
21#include "asterisk/cli.h"
22#include "asterisk/sorcery.h"
23#include "asterisk/acl.h"
24#include "asterisk/stasis.h"
26
27#include "stir_shaken.h"
28
29#define CONFIG_TYPE "profile"
30
31#define DEFAULT_endpoint_behavior endpoint_behavior_OFF
32
33#define DEFAULT_ca_file NULL
34#define DEFAULT_ca_path NULL
35#define DEFAULT_crl_file NULL
36#define DEFAULT_crl_path NULL
37#define DEFAULT_untrusted_cert_file NULL
38#define DEFAULT_untrusted_cert_path NULL
39#define DEFAULT_cert_cache_dir NULL
40
41#define DEFAULT_curl_timeout 0
42#define DEFAULT_max_iat_age 0
43#define DEFAULT_max_date_header_age 0
44#define DEFAULT_max_cache_entry_age 0
45#define DEFAULT_max_cache_size 0
46
47#define DEFAULT_stir_shaken_failure_action stir_shaken_failure_action_NOT_SET
48#define DEFAULT_use_rfc9410_responses use_rfc9410_responses_NOT_SET
49#define DEFAULT_relax_x5u_port_scheme_restrictions relax_x5u_port_scheme_restrictions_NOT_SET
50#define DEFAULT_relax_x5u_path_restrictions relax_x5u_path_restrictions_NOT_SET
51#define DEFAULT_load_system_certs load_system_certs_NOT_SET
52
53#define DEFAULT_check_tn_cert_public_url check_tn_cert_public_url_NOT_SET
54#define DEFAULT_private_key_file NULL
55#define DEFAULT_public_cert_url NULL
56#define DEFAULT_attest_level attest_level_NOT_SET
57#define DEFAULT_unknown_tn_attest_level attest_level_NOT_SET
58#define DEFAULT_send_mky send_mky_NOT_SET
59
60static void profile_destructor(void *obj)
61{
62 struct profile_cfg *cfg = obj;
64
67
69
70 return;
71}
72
73static void *profile_alloc(const char *name)
74{
75 struct profile_cfg *profile;
76
77 profile = ast_sorcery_generic_alloc(sizeof(*profile), profile_destructor);
78 if (!profile) {
79 return NULL;
80 }
81
82 if (ast_string_field_init(profile, 2048)) {
83 ao2_ref(profile, -1);
84 return NULL;
85 }
86
87 /*
88 * The memory for the commons actually comes from cfg
89 * due to the weirdness of the STRFLDSET macro used with
90 * sorcery. We just use a token amount of memory in
91 * this call so the initialize doesn't fail.
92 */
93 if (ast_string_field_init(&profile->acfg_common, 8)) {
94 ao2_ref(profile, -1);
95 return NULL;
96 }
97
98 if (ast_string_field_init(&profile->vcfg_common, 8)) {
99 ao2_ref(profile, -1);
100 return NULL;
101 }
102
103 return profile;
104}
105
107{
110}
111
112struct profile_cfg *profile_get_cfg(const char *id)
113{
114 if (ast_strlen_zero(id)) {
115 return NULL;
116 }
118}
119
121{
122 return ast_sorcery_retrieve_by_fields(get_sorcery(), "eprofile",
124}
125
126struct profile_cfg *eprofile_get_cfg(const char *id)
127{
128 if (ast_strlen_zero(id)) {
129 return NULL;
130 }
131 return ast_sorcery_retrieve_by_id(get_sorcery(), "eprofile", id);
132}
133
135 struct profile_cfg *base_profile)
136{
137 struct profile_cfg *eprofile;
138 struct profile_cfg *existing_eprofile;
141 const char *id = ast_sorcery_object_get_id(base_profile);
142 int rc = 0;
143
144 eprofile = ast_sorcery_alloc(get_sorcery(), "eprofile", id);
145 if (!eprofile) {
146 ast_log(LOG_ERROR, "%s: Unable to allocate memory for effective profile\n", id);
147 return NULL;
148 }
149
151 &vcfg->vcfg_common);
152 if (rc != 0) {
154 return NULL;
155 }
156
158 &base_profile->vcfg_common);
159 if (rc != 0) {
161 return NULL;
162 }
163
165 &acfg->acfg_common);
166 if (rc != 0) {
168 return NULL;
169 }
170
172 attest_level_NOT_SET, attest_level_UNKNOWN);
173
175 &base_profile->acfg_common);
176 if (rc != 0) {
178 return NULL;
179 }
180
182 attest_level_NOT_SET, attest_level_UNKNOWN);
183
184
186
187 if (eprofile->endpoint_behavior == endpoint_behavior_ON) {
188 if (acfg->global_disable && vcfg->global_disable) {
189 eprofile->endpoint_behavior = endpoint_behavior_OFF;
190 } else if (acfg->global_disable && !vcfg->global_disable) {
191 eprofile->endpoint_behavior = endpoint_behavior_VERIFY;
192 } else if (!acfg->global_disable && vcfg->global_disable) {
193 eprofile->endpoint_behavior = endpoint_behavior_ATTEST;
194 }
195 } else if (eprofile->endpoint_behavior == endpoint_behavior_ATTEST
196 && acfg->global_disable) {
197 eprofile->endpoint_behavior = endpoint_behavior_OFF;
198 } else if (eprofile->endpoint_behavior == endpoint_behavior_VERIFY
199 && vcfg->global_disable) {
200 eprofile->endpoint_behavior = endpoint_behavior_OFF;
201 }
202
203 existing_eprofile = ast_sorcery_retrieve_by_id(get_sorcery(), "eprofile", id);
204 if (existing_eprofile) {
205 ao2_cleanup(existing_eprofile);
207 } else {
209 }
210
211 /*
212 * This triggers eprofile_apply. We _could_ just call
213 * eprofile_apply directly but this seems more keeping
214 * with how sorcery works.
215 */
217
218 return eprofile;
219}
220
221static int profile_apply(const struct ast_sorcery *sorcery, void *obj)
222{
223 struct profile_cfg *cfg = obj;
224 const char *id = ast_sorcery_object_get_id(cfg);
225
226 if (PROFILE_ALLOW_ATTEST(cfg)
227 && as_check_common_config(id, &cfg->acfg_common) != 0) {
228 return -1;
229 }
230
231 if (PROFILE_ALLOW_VERIFY(cfg)
232 && vs_check_common_config(id, &cfg->vcfg_common) !=0) {
233 return -1;
234 }
235
237 if (!cfg->eprofile) {
238 return -1;
239 }
240
241 return 0;
242}
243
244static int eprofile_apply(const struct ast_sorcery *sorcery, void *obj)
245{
246 struct profile_cfg *cfg = obj;
247 const char *id = ast_sorcery_object_get_id(cfg);
248
249 if (PROFILE_ALLOW_VERIFY(cfg) && !cfg->vcfg_common.tcs) {
250 ast_log(LOG_ERROR, "%s: Neither this profile nor default"
251 " verification options specify ca_file or ca_path\n", id);
252 return -1;
253 }
254
255 return 0;
256}
259
262
265
266static char *cli_profile_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
267{
268 struct profile_cfg *profile;
269 struct config_object_cli_data data = {
270 .title = "Profile",
271 .object_type = config_object_type_profile,
272 };
273
274 switch(cmd) {
275 case CLI_INIT:
276 e->command = "stir_shaken show profile";
277 e->usage =
278 "Usage: stir_shaken show profile <id>\n"
279 " Show the stir/shaken profile settings for a given id\n";
280 return NULL;
281 case CLI_GENERATE:
282 if (a->pos == 3) {
284 } else {
285 return NULL;
286 }
287 }
288
289 if (a->argc != 4) {
290 return CLI_SHOWUSAGE;
291 }
292
293 profile = profile_get_cfg(a->argv[3]);
294 if (!profile) {
295 ast_log(LOG_ERROR,"Profile %s doesn't exist\n", a->argv[3]);
296 return CLI_FAILURE;
297 }
298 config_object_cli_show(profile, a, &data, 0);
299
300 ao2_cleanup(profile);
301
302 return CLI_SUCCESS;
303}
304
305static char *cli_profile_show_all(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
306{
307 struct ao2_container *container;
308 struct config_object_cli_data data = {
309 .title = "Profile",
310 .object_type = config_object_type_profile,
311 };
312
313 switch(cmd) {
314 case CLI_INIT:
315 e->command = "stir_shaken show profiles";
316 e->usage =
317 "Usage: stir_shaken show profiles\n"
318 " Show all profiles for stir/shaken\n";
319 return NULL;
320 case CLI_GENERATE:
321 return NULL;
322 }
323
324 if (a->argc != 3) {
325 return CLI_SHOWUSAGE;
326 }
327
330 ast_cli(a->fd, "No stir/shaken profiles found\n");
332 return CLI_SUCCESS;
333 }
334
336 ao2_ref(container, -1);
337
338 return CLI_SUCCESS;
339}
340
341static char *cli_eprofile_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
342{
343 struct profile_cfg *profile;
344 struct config_object_cli_data data = {
345 .title = "Effective Profile",
346 .object_type = config_object_type_profile,
347 };
348
349 switch(cmd) {
350 case CLI_INIT:
351 e->command = "stir_shaken show eprofile";
352 e->usage =
353 "Usage: stir_shaken show eprofile <id>\n"
354 " Show the stir/shaken eprofile settings for a given id\n";
355 return NULL;
356 case CLI_GENERATE:
357 if (a->pos == 3) {
359 } else {
360 return NULL;
361 }
362 }
363
364 if (a->argc != 4) {
365 return CLI_SHOWUSAGE;
366 }
367
368 profile = eprofile_get_cfg(a->argv[3]);
369 if (!profile) {
370 ast_log(LOG_ERROR,"Effective Profile %s doesn't exist\n", a->argv[3]);
371 return CLI_FAILURE;
372 }
373 config_object_cli_show(profile, a, &data, 0);
374
375 ao2_cleanup(profile);
376
377 return CLI_SUCCESS;
378}
379
380static char *cli_eprofile_show_all(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
381{
382 struct ao2_container *container;
383 struct config_object_cli_data data = {
384 .title = "Effective Profile",
385 .object_type = config_object_type_profile,
386 };
387
388 switch(cmd) {
389 case CLI_INIT:
390 e->command = "stir_shaken show eprofiles";
391 e->usage =
392 "Usage: stir_shaken show eprofiles\n"
393 " Show all eprofiles for stir/shaken\n";
394 return NULL;
395 case CLI_GENERATE:
396 return NULL;
397 }
398
399 if (a->argc != 3) {
400 return CLI_SHOWUSAGE;
401 }
402
405 ast_cli(a->fd, "No stir/shaken eprofiles found\n");
407 return CLI_SUCCESS;
408 }
409
411 ao2_ref(container, -1);
412
413 return CLI_SUCCESS;
414}
415
417 AST_CLI_DEFINE(cli_profile_show, "Show stir/shaken profile by id"),
418 AST_CLI_DEFINE(cli_profile_show_all, "Show all stir/shaken profiles"),
419 AST_CLI_DEFINE(cli_eprofile_show, "Show stir/shaken eprofile by id"),
420 AST_CLI_DEFINE(cli_eprofile_show_all, "Show all stir/shaken eprofiles"),
421};
422
424{
425 struct ast_sorcery *sorcery = get_sorcery();
428 return 0;
429}
430
432{
435
436 return 0;
437}
438
440{
441 struct ast_sorcery *sorcery = get_sorcery();
442 enum ast_sorcery_apply_result apply_rc;
443
444 /*
445 * eprofile MUST be registered first because profile needs it.
446 */
447 apply_rc = ast_sorcery_apply_default(sorcery, "eprofile", "memory", NULL);
448 if (apply_rc != AST_SORCERY_APPLY_SUCCESS) {
449 abort();
450 }
453 ast_log(LOG_ERROR, "stir/shaken - failed to register '%s' sorcery object\n", "eprofile");
454 return -1;
455 }
456
457 ast_sorcery_object_field_register_nodoc(sorcery, "eprofile", "type", "", OPT_NOOP_T, 0, 0);
458 enum_option_register(sorcery, "eprofile", endpoint_behavior, _nodoc);
459 enum_option_register_ex(sorcery, "eprofile", unknown_tn_attest_level,
460 unknown_tn_attest_level, attest_level,_nodoc);
461
464
465 /*
466 * Now we can do profile
467 */
468 ast_sorcery_apply_default(sorcery, CONFIG_TYPE, "config", "stir_shaken.conf,criteria=type=profile");
471 ast_log(LOG_ERROR, "stir/shaken - failed to register '%s' sorcery object\n", CONFIG_TYPE);
472 return -1;
473 }
474
476 enum_option_register(sorcery, CONFIG_TYPE, endpoint_behavior,);
477 enum_option_register_ex(sorcery, CONFIG_TYPE, unknown_tn_attest_level,
478 unknown_tn_attest_level, attest_level,);
479
482
484 ast_sorcery_load_object(sorcery, "eprofile");
485
488
489 return 0;
490}
Access Control of various sorts.
Asterisk main include file. File version handling, generic pbx functions.
#define ast_log
Definition: astobj2.c:42
int ao2_container_count(struct ao2_container *c)
Returns the number of elements in a container.
#define ao2_cleanup(obj)
Definition: astobj2.h:1934
#define ao2_callback_data(container, flags, cb_fn, arg, data)
Definition: astobj2.h:1723
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
Definition: astobj2.h:459
@ OBJ_NODATA
Definition: astobj2.h:1044
struct attestation_cfg * as_get_cfg(void)
int as_check_common_config(const char *id, struct attestation_cfg_common *acfg_common)
void acfg_cleanup(struct attestation_cfg_common *acfg_common)
int as_copy_cfg_common(const char *id, struct attestation_cfg_common *cfg_dst, struct attestation_cfg_common *cfg_src)
Standard Command Line Interface.
#define CLI_SHOWUSAGE
Definition: cli.h:45
#define CLI_SUCCESS
Definition: cli.h:44
int ast_cli_unregister_multiple(struct ast_cli_entry *e, int len)
Unregister multiple commands.
Definition: clicompat.c:30
#define AST_CLI_DEFINE(fn, txt,...)
Definition: cli.h:197
void ast_cli(int fd, const char *fmt,...)
Definition: clicompat.c:6
@ CLI_INIT
Definition: cli.h:152
@ CLI_GENERATE
Definition: cli.h:153
#define CLI_FAILURE
Definition: cli.h:46
#define ast_cli_register_multiple(e, len)
Register multiple commands.
Definition: cli.h:265
int config_object_cli_show(void *obj, void *arg, void *data, int flags)
Output configuration settings to the Asterisk CLI.
char * config_object_tab_complete_name(const char *word, struct ao2_container *container)
Tab completion for name matching with STIR/SHAKEN CLI commands.
struct ast_sorcery * get_sorcery(void)
Retrieve the stir/shaken sorcery context.
Definition: common_config.c:34
@ config_object_type_profile
#define register_common_verification_fields(sorcery, object, CONFIG_TYPE, nodoc)
struct verification_cfg * vs_get_cfg(void)
#define register_common_attestation_fields(sorcery, object, CONFIG_TYPE, nodoc)
#define PROFILE_ALLOW_VERIFY(__profile)
#define enum_option_register(sorcery, CONFIG_TYPE, name, nodoc)
int vs_copy_cfg_common(const char *id, struct verification_cfg_common *cfg_dst, struct verification_cfg_common *cfg_src)
#define PROFILE_ALLOW_ATTEST(__profile)
int vs_check_common_config(const char *id, struct verification_cfg_common *vcfg_common)
void vcfg_cleanup(struct verification_cfg_common *cfg)
#define enum_option_register_ex(sorcery, CONFIG_TYPE, name, field, function_prefix, nodoc)
#define cfg_enum_copy_ex(__cfg_dst, __cfg_src, __field, __not_set, __unknown)
cfg_enum_copy
@ OPT_NOOP_T
Type for a default handler that should do nothing.
static const char name[]
Definition: format_mp3.c:68
#define LOG_ERROR
generate_sorcery_enum_from_str(profile_cfg,, endpoint_behavior, UNKNOWN)
static char * cli_profile_show_all(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
static void profile_destructor(void *obj)
generate_vcfg_common_sorcery_handlers(profile_cfg)
static int eprofile_apply(const struct ast_sorcery *sorcery, void *obj)
int profile_unload(void)
static struct profile_cfg * create_effective_profile(struct profile_cfg *base_profile)
int profile_load(void)
static void * profile_alloc(const char *name)
static char * cli_eprofile_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
generate_sorcery_enum_to_str(profile_cfg,, endpoint_behavior)
generate_sorcery_enum_from_str_ex(profile_cfg,, unknown_tn_attest_level, attest_level, UNKNOWN)
struct profile_cfg * eprofile_get_cfg(const char *id)
struct ao2_container * eprofile_get_all(void)
struct profile_cfg * profile_get_cfg(const char *id)
struct ao2_container * profile_get_all(void)
static struct ast_cli_entry stir_shaken_profile_cli[]
static int profile_apply(const struct ast_sorcery *sorcery, void *obj)
int profile_reload(void)
static char * cli_profile_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
generate_sorcery_enum_to_str_ex(profile_cfg,, unknown_tn_attest_level, attest_level)
static char * cli_eprofile_show_all(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
#define CONFIG_TYPE
generate_acfg_common_sorcery_handlers(profile_cfg)
struct ao2_container * container
Definition: res_fax.c:501
@ UNKNOWN
Definition: res_pjsip.h:437
static struct ast_sorcery * sorcery
#define NULL
Definition: resample.c:96
Security Event Reporting API.
Sorcery Data Access Layer API.
const char * ast_sorcery_object_get_id(const void *object)
Get the unique identifier of a sorcery object.
Definition: sorcery.c:2317
#define ast_sorcery_object_field_register_nodoc(sorcery, type, name, default_val, opt_type, flags,...)
Register a field within an object without documentation.
Definition: sorcery.h:987
@ AST_RETRIEVE_FLAG_MULTIPLE
Return all matching objects.
Definition: sorcery.h:120
@ AST_RETRIEVE_FLAG_ALL
Perform no matching, return all objects.
Definition: sorcery.h:123
int ast_sorcery_create(const struct ast_sorcery *sorcery, void *object)
Create and potentially persist an object using an available wizard.
Definition: sorcery.c:2062
void * ast_sorcery_retrieve_by_id(const struct ast_sorcery *sorcery, const char *type, const char *id)
Retrieve an object using its unique identifier.
Definition: sorcery.c:1853
#define ast_sorcery_object_register(sorcery, type, alloc, transform, apply)
Register an object type.
Definition: sorcery.h:837
void ast_sorcery_load_object(const struct ast_sorcery *sorcery, const char *type)
Inform any wizards of a specific object type to load persistent objects.
Definition: sorcery.c:1393
#define ast_sorcery_internal_object_register(sorcery, type, alloc, transform, apply)
Register an internal, hidden object type.
Definition: sorcery.h:867
void * ast_sorcery_generic_alloc(size_t size, ao2_destructor_fn destructor)
Allocate a generic sorcery capable object.
Definition: sorcery.c:1728
#define ast_sorcery_object_field_register(sorcery, type, name, default_val, opt_type, flags,...)
Register a field within an object.
Definition: sorcery.h:955
void * ast_sorcery_alloc(const struct ast_sorcery *sorcery, const char *type, const char *id)
Allocate an object.
Definition: sorcery.c:1744
int ast_sorcery_update(const struct ast_sorcery *sorcery, void *object)
Update an object.
Definition: sorcery.c:2150
int ast_sorcery_objectset_apply(const struct ast_sorcery *sorcery, void *object, struct ast_variable *objectset)
Apply an object set (KVP list) to an object.
Definition: sorcery.c:1632
void ast_sorcery_force_reload_object(const struct ast_sorcery *sorcery, const char *type)
Inform any wizards of a specific object type to reload persistent objects even if no changes determin...
Definition: sorcery.c:1457
#define ast_sorcery_apply_default(sorcery, type, name, data)
Definition: sorcery.h:476
void * ast_sorcery_retrieve_by_fields(const struct ast_sorcery *sorcery, const char *type, unsigned int flags, struct ast_variable *fields)
Retrieve an object or multiple objects using specific fields.
Definition: sorcery.c:1897
ast_sorcery_apply_result
Definition: sorcery.h:423
@ AST_SORCERY_APPLY_SUCCESS
Definition: sorcery.h:427
Stasis Message Bus API. See Stasis Message Bus API for detailed documentation.
#define ast_string_field_init(x, size)
Initialize a field pool and fields.
Definition: stringfields.h:359
#define ast_string_field_free_memory(x)
free all memory - to be called before destroying the object
Definition: stringfields.h:374
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
Generic container type.
descriptor for a cli entry.
Definition: cli.h:171
char * command
Definition: cli.h:186
const char * usage
Definition: cli.h:177
Full structure for sorcery.
Definition: sorcery.c:230
Profile configuration for stir/shaken.
enum endpoint_behavior_enum endpoint_behavior
struct attestation_cfg_common acfg_common
struct profile_cfg * eprofile
enum attest_level_enum unknown_tn_attest_level
struct verification_cfg_common vcfg_common
struct crypto_cert_store * tcs
static struct test_val a
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.
Definition: utils.h:941
#define ARRAY_LEN(a)
Definition: utils.h:666