mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
acl: implement a centralized ACL output mechanism for HAs and ACLs.
named_acl.c (which is really a named_ha) now uses ast_ha_output. I've also updated main/manager.c to output the actual ACL on "manager show user <username>" if one is set. If this works then we can add similar to other modules as required. Change-Id: I0ec9876a90dddd379c80ec078d48e3ee6991eb0f
This commit is contained in:
29
main/acl.c
29
main/acl.c
@@ -48,6 +48,7 @@
|
||||
#include "asterisk/utils.h"
|
||||
#include "asterisk/lock.h"
|
||||
#include "asterisk/srv.h"
|
||||
#include "asterisk/cli.h"
|
||||
|
||||
#if (!defined(SOLARIS) && !defined(HAVE_GETIFADDRS))
|
||||
static int get_local_address(struct ast_sockaddr *ourip)
|
||||
@@ -1082,3 +1083,31 @@ int ast_find_ourip(struct ast_sockaddr *ourip, const struct ast_sockaddr *bindad
|
||||
ast_sockaddr_set_port(ourip, port);
|
||||
return res;
|
||||
}
|
||||
|
||||
void ast_ha_output(int fd, const struct ast_ha *ha, const char *prefix)
|
||||
{
|
||||
char addr[AST_SOCKADDR_BUFLEN];
|
||||
char *mask;
|
||||
int index = 0;
|
||||
for (; ha; ha = ha->next, ++index) {
|
||||
strcpy(addr, ast_sockaddr_stringify_addr(&ha->addr));
|
||||
mask = ast_sockaddr_stringify_addr(&ha->netmask);
|
||||
ast_cli(fd, "%s%3d: %s - %s/%s\n", prefix ?: "", index, ha->sense == AST_SENSE_ALLOW ? "allow" : " deny", addr, mask);
|
||||
}
|
||||
}
|
||||
|
||||
void ast_acl_output(int fd, struct ast_acl_list *acl_list, const char *prefix)
|
||||
{
|
||||
struct ast_acl *acl;
|
||||
|
||||
AST_LIST_LOCK(acl_list);
|
||||
AST_LIST_TRAVERSE(acl_list, acl, list) {
|
||||
ast_cli(fd, "%sACL: %s%s\n---------------------------------------------\n",
|
||||
prefix ?: "", ast_strlen_zero(acl->name) ? "(unnamed)" : acl->name,
|
||||
acl->is_realtime ? " (realtime)" : "");
|
||||
|
||||
ast_ha_output(fd, acl->acl, prefix);
|
||||
}
|
||||
AST_LIST_UNLOCK(acl_list);
|
||||
|
||||
}
|
||||
|
@@ -2550,6 +2550,9 @@ static char *handle_showmanager(struct ast_cli_entry *e, int cmd, struct ast_cli
|
||||
for (v = user->chanvars ; v ; v = v->next) {
|
||||
ast_cli(a->fd, " %s = %s\n", v->name, v->value);
|
||||
}
|
||||
if (!ast_acl_list_is_empty(user->acl)) {
|
||||
ast_acl_output(a->fd, user->acl, NULL);
|
||||
}
|
||||
|
||||
AST_RWLIST_UNLOCK(&users);
|
||||
|
||||
|
@@ -411,8 +411,6 @@ publish_failure:
|
||||
*/
|
||||
static void cli_display_named_acl(int fd, const char *name)
|
||||
{
|
||||
struct ast_ha *ha;
|
||||
int ha_index = 0;
|
||||
int is_realtime = 0;
|
||||
|
||||
RAII_VAR(struct named_acl_config *, cfg, ao2_global_obj_ref(globals), ao2_cleanup);
|
||||
@@ -437,12 +435,7 @@ static void cli_display_named_acl(int fd, const char *name)
|
||||
}
|
||||
|
||||
ast_cli(fd, "\nACL: %s%s\n---------------------------------------------\n", name, is_realtime ? " (realtime)" : "");
|
||||
for (ha = named_acl->ha; ha; ha = ha->next) {
|
||||
char *addr = ast_strdupa(ast_sockaddr_stringify_addr(&ha->addr));
|
||||
char *mask = ast_sockaddr_stringify_addr(&ha->netmask);
|
||||
ast_cli(fd, "%3d: %s - %s/%s\n", ha_index, ha->sense == AST_SENSE_ALLOW ? "allow" : " deny", addr, mask);
|
||||
ha_index++;
|
||||
}
|
||||
ast_ha_output(fd, named_acl->ha, NULL);
|
||||
}
|
||||
|
||||
/*!
|
||||
|
Reference in New Issue
Block a user