[Asterisk-code-review] res_crypto: use ast_file_read_dirs() to iterate (asterisk[20])
Philip Prindeville
asteriskteam at digium.com
Tue Oct 4 16:34:33 CDT 2022
Philip Prindeville has uploaded this change for review. ( https://gerrit.asterisk.org/c/asterisk/+/19397 )
Change subject: res_crypto: use ast_file_read_dirs() to iterate
......................................................................
res_crypto: use ast_file_read_dirs() to iterate
ASTERISK-30213
Change-Id: I115f5f8942ffcfb23cd2559a55bac8a2eba081e0
---
M res/res_crypto.c
1 file changed, 29 insertions(+), 21 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/97/19397/1
diff --git a/res/res_crypto.c b/res/res_crypto.c
index bc66318..82014b6 100644
--- a/res/res_crypto.c
+++ b/res/res_crypto.c
@@ -51,6 +51,7 @@
#include "asterisk/options.h" /* for ast_opt_init_keys */
#include "asterisk/paths.h" /* for ast_config_AST_KEY_DIR */
#include "asterisk/utils.h" /* for ast_copy_string, ast_base64decode */
+#include "asterisk/file.h" /* for ast_file_read_dirs */
#define AST_API_MODULE
#include "asterisk/crypto.h" /* for AST_KEY_PUBLIC, AST_KEY_PRIVATE */
@@ -761,6 +762,20 @@
return res;
}
+struct crypto_load_on_file {
+ int ifd;
+ int ofd;
+ int note;
+};
+
+static int crypto_load_cb(const char *directory, const char *file, void *obj)
+{
+ struct crypto_load_on_file *on_file = obj;
+
+ try_load_key(directory, file, on_file->ifd, on_file->ofd, &on_file->note);
+ return 0;
+}
+
/*!
* \brief refresh RSA keys from file
* \param ifd file descriptor
@@ -769,9 +784,7 @@
static void crypto_load(int ifd, int ofd)
{
struct ast_key *key;
- DIR *dir = NULL;
- struct dirent *ent;
- int note = 0;
+ struct crypto_load_on_file on_file = { ifd, ofd, 0 };
AST_RWLIST_WRLOCK(&keys);
@@ -780,27 +793,11 @@
key->delme = 1;
}
- /* Load new keys */
- if ((dir = opendir(ast_config_AST_KEY_DIR))) {
- while ((ent = readdir(dir))) {
- if (!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..")) {
- continue;
- }
- if (ent->d_type == DT_DIR) {
- continue;
- }
- if (ent->d_type != DT_REG) {
- ast_log(LOG_WARNING, "Non-regular file '%s' in keys directory\n", ent->d_name);
- continue;
- }
- try_load_key(ast_config_AST_KEY_DIR, ent->d_name, ifd, ofd, ¬e);
- }
- closedir(dir);
- } else {
+ if (ast_file_read_dirs(ast_config_AST_KEY_DIR, crypto_load_cb, &on_file, 1) == -1) {
ast_log(LOG_WARNING, "Unable to open key directory '%s'\n", ast_config_AST_KEY_DIR);
}
- if (note) {
+ if (on_file.note) {
ast_log(LOG_NOTICE, "Please run the command 'keys init' to enter the passcodes for the keys\n");
}
--
To view, visit https://gerrit.asterisk.org/c/asterisk/+/19397
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 20
Gerrit-Change-Id: I115f5f8942ffcfb23cd2559a55bac8a2eba081e0
Gerrit-Change-Number: 19397
Gerrit-PatchSet: 1
Gerrit-Owner: Philip Prindeville <philipp at redfish-solutions.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20221004/894535ad/attachment.html>
More information about the asterisk-code-review
mailing list