From: atheik <atteh.mailbox@gmail.com>
To: linux-cifs@vger.kernel.org
Cc: atheik <atteh.mailbox@gmail.com>
Subject: [PATCH v2 2/3] ksmbd-tools: cleanup config group handling
Date: Tue, 9 Aug 2022 01:02:15 +0300 [thread overview]
Message-ID: <20220808220216.17235-2-atteh.mailbox@gmail.com> (raw)
In-Reply-To: <20220808220216.17235-1-atteh.mailbox@gmail.com>
Rename cp_add_ipc_share() to cp_add_ipc_group() in order to better
describe its purpose. Use the ipc_group global variable so as to get
rid of the group name comparison in groups_callback(). Keep track of
used groups callback mode by saving it per-group. Move global group
checks to global_conf_* functions.
Signed-off-by: Atte Heikkilä <atteh.mailbox@gmail.com>
---
include/config_parser.h | 5 +++
lib/config_parser.c | 95 +++++++++++++++++++++++------------------
2 files changed, 59 insertions(+), 41 deletions(-)
diff --git a/include/config_parser.h b/include/config_parser.h
index b6c49b9..43212c8 100644
--- a/include/config_parser.h
+++ b/include/config_parser.h
@@ -10,7 +10,12 @@
#include <glib.h>
+#define GROUPS_CALLBACK_NONE (0)
+#define GROUPS_CALLBACK_INIT (1 << 0)
+#define GROUPS_CALLBACK_REINIT (1 << 1)
+
struct smbconf_group {
+ unsigned short cb_mode;
char *name;
GHashTable *kv;
};
diff --git a/lib/config_parser.c b/lib/config_parser.c
index 5e7a438..d311386 100644
--- a/lib/config_parser.c
+++ b/lib/config_parser.c
@@ -21,7 +21,7 @@
struct smbconf_global global_conf;
struct smbconf_parser parser;
-struct smbconf_group *global_group;
+struct smbconf_group *global_group, *ipc_group;
unsigned long long memparse(const char *v)
{
@@ -107,6 +107,7 @@ static int add_new_group(char *line)
}
group = g_malloc(sizeof(struct smbconf_group));
+ group->cb_mode = GROUPS_CALLBACK_NONE;
group->name = name;
group->kv = g_hash_table_new_full(g_str_hash,
g_str_equal,
@@ -561,6 +562,9 @@ static void global_conf_default(void)
static void global_conf_create(void)
{
+ if (!global_group || global_group->cb_mode != GROUPS_CALLBACK_INIT)
+ return;
+
/*
* This will transfer server options to global_conf, and leave behind
* in the global parser group, the options that must be applied to every
@@ -569,6 +573,23 @@ static void global_conf_create(void)
g_hash_table_foreach_remove(global_group->kv, global_group_kv, NULL);
}
+static void append_key_value(gpointer _k, gpointer _v, gpointer user_data)
+{
+ GHashTable *receiver = (GHashTable *) user_data;
+
+ /* Don't override local share options */
+ if (!g_hash_table_lookup(receiver, _k))
+ g_hash_table_insert(receiver, g_strdup(_k), g_strdup(_v));
+}
+
+static void global_conf_update(struct smbconf_group *group)
+{
+ if (!global_group)
+ return;
+
+ g_hash_table_foreach(global_group->kv, append_key_value, group->kv);
+}
+
static void global_conf_fixup_missing(void)
{
int ret;
@@ -607,39 +628,29 @@ static void global_conf_fixup_missing(void)
ret);
}
-static void append_key_value(gpointer _k, gpointer _v, gpointer user_data)
-{
- GHashTable *receiver = (GHashTable *) user_data;
-
- /* Don't override local share options */
- if (!g_hash_table_lookup(receiver, _k))
- g_hash_table_insert(receiver, g_strdup(_k), g_strdup(_v));
-}
-
-#define GROUPS_CALLBACK_STARTUP_INIT 0x1
-#define GROUPS_CALLBACK_REINIT 0x2
-
static void groups_callback(gpointer _k, gpointer _v, gpointer user_data)
{
- struct smbconf_group *group = (struct smbconf_group *)_v;
+ struct smbconf_group *group = (struct smbconf_group *) _v;
+ unsigned short cb_mode = *(unsigned short *) user_data;
- if (group != global_group) {
- if (global_group && g_ascii_strcasecmp(_k, "ipc$"))
- g_hash_table_foreach(global_group->kv,
- append_key_value,
- group->kv);
+ if (group == global_group)
+ return;
- shm_add_new_share(group);
- }
+ group->cb_mode = cb_mode;
+
+ if (group != ipc_group)
+ global_conf_update(group);
+
+ shm_add_new_share(group);
}
-static int cp_add_ipc_share(void)
+static int cp_add_ipc_group(void)
{
char *comment = NULL, *guest = NULL;
int ret = 0;
- if (g_hash_table_lookup(parser.groups, "ipc$"))
- return 0;
+ if (ipc_group)
+ return ret;
comment = g_strdup("comment = IPC share");
guest = g_strdup("guest ok = yes");
@@ -649,13 +660,18 @@ static int cp_add_ipc_share(void)
if (ret) {
pr_err("Unable to add IPC$ share\n");
ret = -EINVAL;
+ goto out;
}
+
+ ipc_group = g_hash_table_lookup(parser.groups, "ipc$");
+out:
g_free(comment);
g_free(guest);
return ret;
}
-static int __cp_parse_smbconfig(const char *smbconf, GHFunc cb, long flags)
+static int __cp_parse_smbconfig(const char *smbconf, GHFunc cb,
+ unsigned short cb_mode)
{
int ret;
@@ -665,35 +681,32 @@ static int __cp_parse_smbconfig(const char *smbconf, GHFunc cb, long flags)
if (ret)
return ret;
- ret = cp_add_ipc_share();
- if (!ret) {
- global_group = g_hash_table_lookup(parser.groups, "global");
+ ret = cp_add_ipc_group();
+ if (ret)
+ goto out;
- if (global_group && (flags == GROUPS_CALLBACK_STARTUP_INIT))
- global_conf_create();
+ global_group = g_hash_table_lookup(parser.groups, "global");
+ if (global_group)
+ global_group->cb_mode = cb_mode;
- g_hash_table_foreach(parser.groups,
- groups_callback,
- NULL);
-
- global_conf_fixup_missing();
- }
+ global_conf_create();
+ g_hash_table_foreach(parser.groups, groups_callback, &cb_mode);
+ global_conf_fixup_missing();
+out:
cp_smbconfig_destroy();
return ret;
}
int cp_parse_reload_smbconf(const char *smbconf)
{
- return __cp_parse_smbconfig(smbconf,
- groups_callback,
+ return __cp_parse_smbconfig(smbconf, groups_callback,
GROUPS_CALLBACK_REINIT);
}
int cp_parse_smbconf(const char *smbconf)
{
- return __cp_parse_smbconfig(smbconf,
- groups_callback,
- GROUPS_CALLBACK_STARTUP_INIT);
+ return __cp_parse_smbconfig(smbconf, groups_callback,
+ GROUPS_CALLBACK_INIT);
}
int cp_parse_pwddb(const char *pwddb)
--
2.37.1
next prev parent reply other threads:[~2022-08-08 22:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-08 22:02 [PATCH v2 1/3] ksmbd: request update to stale share config atheik
2022-08-08 22:02 ` atheik [this message]
2022-08-08 22:02 ` [PATCH v2 3/3] ksmbd-tools: inform ksmbd of " atheik
2022-08-10 8:06 ` Namjae Jeon
2022-08-09 0:38 ` [PATCH v2 1/3] ksmbd: request update to " Namjae Jeon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220808220216.17235-2-atteh.mailbox@gmail.com \
--to=atteh.mailbox@gmail.com \
--cc=linux-cifs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox