You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
154 lines
3.5 KiB
154 lines
3.5 KiB
7 years ago
|
autofs-5.1.1 - implement reinit in program lookup module
|
||
|
|
||
|
From: Ian Kent <raven@themaw.net>
|
||
|
|
||
|
Refactor the program lookup module to add an implementation for the newly
|
||
|
added reinit entry point.
|
||
|
|
||
|
Signed-off-by: Ian Kent <raven@themaw.net>
|
||
|
---
|
||
|
modules/lookup_program.c | 98 ++++++++++++++++++++++++++++++++++++----------
|
||
|
1 file changed, 76 insertions(+), 22 deletions(-)
|
||
|
|
||
|
diff --git a/modules/lookup_program.c b/modules/lookup_program.c
|
||
|
index fa4f54d..3e9c448 100644
|
||
|
--- a/modules/lookup_program.c
|
||
|
+++ b/modules/lookup_program.c
|
||
|
@@ -49,53 +49,82 @@ struct parse_context {
|
||
|
|
||
|
int lookup_version = AUTOFS_LOOKUP_VERSION; /* Required by protocol */
|
||
|
|
||
|
-int lookup_init(const char *mapfmt,
|
||
|
- int argc, const char *const *argv, void **context)
|
||
|
+static int do_init(const char *mapfmt,
|
||
|
+ int argc, const char *const *argv,
|
||
|
+ struct lookup_context *ctxt, unsigned int reinit)
|
||
|
{
|
||
|
- struct lookup_context *ctxt;
|
||
|
- char buf[MAX_ERR_BUF];
|
||
|
-
|
||
|
- *context = NULL;
|
||
|
-
|
||
|
- ctxt = malloc(sizeof(struct lookup_context));
|
||
|
- if (!ctxt) {
|
||
|
- char *estr = strerror_r(errno, buf, MAX_ERR_BUF);
|
||
|
- logerr(MODPREFIX "malloc: %s", estr);
|
||
|
- return 1;
|
||
|
- }
|
||
|
+ int ret = 0;
|
||
|
|
||
|
if (argc < 1) {
|
||
|
logmsg(MODPREFIX "No map name");
|
||
|
- free(ctxt);
|
||
|
- return 1;
|
||
|
+ ret = 1;
|
||
|
+ goto out;
|
||
|
}
|
||
|
ctxt->mapname = argv[0];
|
||
|
|
||
|
if (ctxt->mapname[0] != '/') {
|
||
|
logmsg(MODPREFIX "program map %s is not an absolute pathname",
|
||
|
ctxt->mapname);
|
||
|
- free(ctxt);
|
||
|
- return 1;
|
||
|
+ ret = 1;
|
||
|
+ goto out;
|
||
|
}
|
||
|
|
||
|
if (access(ctxt->mapname, X_OK)) {
|
||
|
logmsg(MODPREFIX "program map %s missing or not executable",
|
||
|
ctxt->mapname);
|
||
|
- free(ctxt);
|
||
|
- return 1;
|
||
|
+ ret = 1;
|
||
|
+ goto out;
|
||
|
}
|
||
|
|
||
|
if (!mapfmt)
|
||
|
mapfmt = MAPFMT_DEFAULT;
|
||
|
|
||
|
ctxt->mapfmt = strdup(mapfmt);
|
||
|
+ if (!ctxt->mapfmt) {
|
||
|
+ logmsg(MODPREFIX "failed to allocate storage for map format");
|
||
|
+ ret = 1;
|
||
|
+ goto out;
|
||
|
+ }
|
||
|
|
||
|
- ctxt->parse = open_parse(mapfmt, MODPREFIX, argc - 1, argv + 1);
|
||
|
- if (!ctxt->parse) {
|
||
|
- logmsg(MODPREFIX "failed to open parse context");
|
||
|
+ if (reinit) {
|
||
|
+ ret = reinit_parse(ctxt->parse, mapfmt, MODPREFIX, argc - 1, argv + 1);
|
||
|
+ if (ret)
|
||
|
+ logmsg(MODPREFIX "failed to reinit parse context");
|
||
|
+ } else {
|
||
|
+ ctxt->parse = open_parse(mapfmt, MODPREFIX, argc - 1, argv + 1);
|
||
|
+ if (!ctxt->parse) {
|
||
|
+ logmsg(MODPREFIX "failed to open parse context");
|
||
|
+ ret = 1;
|
||
|
+ }
|
||
|
+ }
|
||
|
+out:
|
||
|
+ if (ret && ctxt->mapfmt)
|
||
|
+ free(ctxt->mapfmt);
|
||
|
+
|
||
|
+ return ret;
|
||
|
+}
|
||
|
+
|
||
|
+int lookup_init(const char *mapfmt,
|
||
|
+ int argc, const char *const *argv, void **context)
|
||
|
+{
|
||
|
+ struct lookup_context *ctxt;
|
||
|
+ char buf[MAX_ERR_BUF];
|
||
|
+
|
||
|
+ *context = NULL;
|
||
|
+
|
||
|
+ ctxt = malloc(sizeof(struct lookup_context));
|
||
|
+ if (!ctxt) {
|
||
|
+ char *estr = strerror_r(errno, buf, MAX_ERR_BUF);
|
||
|
+ logerr(MODPREFIX "malloc: %s", estr);
|
||
|
+ return 1;
|
||
|
+ }
|
||
|
+ memset(ctxt, 0, sizeof(struct lookup_context));
|
||
|
+
|
||
|
+ if (do_init(mapfmt, argc, argv, ctxt, 0)) {
|
||
|
free(ctxt);
|
||
|
return 1;
|
||
|
}
|
||
|
+
|
||
|
*context = ctxt;
|
||
|
|
||
|
return 0;
|
||
|
@@ -104,6 +133,31 @@ int lookup_init(const char *mapfmt,
|
||
|
int lookup_reinit(const char *mapfmt,
|
||
|
int argc, const char *const *argv, void **context)
|
||
|
{
|
||
|
+ struct lookup_context *ctxt = (struct lookup_context *) *context;
|
||
|
+ struct lookup_context *new;
|
||
|
+ char buf[MAX_ERR_BUF];
|
||
|
+ int ret;
|
||
|
+
|
||
|
+ new = malloc(sizeof(struct lookup_context));
|
||
|
+ if (!new) {
|
||
|
+ char *estr = strerror_r(errno, buf, MAX_ERR_BUF);
|
||
|
+ logerr(MODPREFIX "malloc: %s", estr);
|
||
|
+ return 1;
|
||
|
+ }
|
||
|
+ memset(new, 0, sizeof(struct lookup_context));
|
||
|
+
|
||
|
+ new->parse = ctxt->parse;
|
||
|
+ ret = do_init(mapfmt, argc, argv, new, 1);
|
||
|
+ if (ret) {
|
||
|
+ free(new);
|
||
|
+ return 1;
|
||
|
+ }
|
||
|
+
|
||
|
+ *context = new;
|
||
|
+
|
||
|
+ free(ctxt->mapfmt);
|
||
|
+ free(ctxt);
|
||
|
+
|
||
|
return 0;
|
||
|
}
|
||
|
|