summaryrefslogtreecommitdiffhomepage
path: root/src/driver/mdso_driver_ctx.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-12-20 08:44:27 -0500
committermidipix <writeonce@midipix.org>2016-11-11 00:22:30 -0500
commit938a475adc16f90139cb6227f3e54e6aa743d528 (patch)
treef0ae9e5cd689654a48eee0d4c95995955b805ca8 /src/driver/mdso_driver_ctx.c
parente06ea0687ebd85f070ec983af43c39a328f10aa7 (diff)
downloadmdso-938a475adc16f90139cb6227f3e54e6aa743d528.tar.bz2
mdso-938a475adc16f90139cb6227f3e54e6aa743d528.tar.xz
driver: dstdir,asmbase: initial implementation.
Diffstat (limited to 'src/driver/mdso_driver_ctx.c')
-rw-r--r--src/driver/mdso_driver_ctx.c87
1 files changed, 79 insertions, 8 deletions
diff --git a/src/driver/mdso_driver_ctx.c b/src/driver/mdso_driver_ctx.c
index 3560538..21715fb 100644
--- a/src/driver/mdso_driver_ctx.c
+++ b/src/driver/mdso_driver_ctx.c
@@ -7,6 +7,9 @@
#include <stdint.h>
#include <unistd.h>
#include <fcntl.h>
+#include <stdbool.h>
+#include <string.h>
+#include <sys/stat.h>
#define ARGV_DRIVER
@@ -58,7 +61,10 @@ static int mdso_driver_usage(
return MDSO_USAGE;
}
-static struct mdso_driver_ctx_impl * mdso_driver_ctx_alloc(struct argv_meta * meta, size_t nunits)
+static struct mdso_driver_ctx_impl * mdso_driver_ctx_alloc(
+ struct argv_meta * meta,
+ const struct mdso_common_ctx * cctx,
+ size_t nunits)
{
struct mdso_driver_ctx_alloc * ictx;
size_t size;
@@ -71,6 +77,9 @@ static struct mdso_driver_ctx_impl * mdso_driver_ctx_alloc(struct argv_meta * me
if (!(ictx = calloc(size,1)))
return 0;
+ if (cctx)
+ memcpy(&ictx->ctx.cctx,cctx,sizeof(*cctx));
+
for (entry=meta->entries,units=ictx->units; entry->fopt || entry->arg; entry++)
if (!entry->fopt)
*units++ = entry->arg;
@@ -80,8 +89,41 @@ static struct mdso_driver_ctx_impl * mdso_driver_ctx_alloc(struct argv_meta * me
return &ictx->ctx;
}
-static int mdso_get_driver_ctx_fail(struct argv_meta * meta)
+static int mdso_dstdir_open(const struct mdso_common_ctx * cctx, const char * asmbase)
+{
+ int fdtop;
+ int fddst;
+ const int dirmode = S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH;
+
+ if ((fdtop = openat(AT_FDCWD,cctx->dstdir,O_DIRECTORY)) < 0) {
+ if (mkdirat(AT_FDCWD,cctx->dstdir,dirmode) < 0)
+ return -1;
+ else if ((fdtop = openat(AT_FDCWD,cctx->dstdir,O_DIRECTORY)) < 0)
+ return -1;
+ }
+
+ if ((fddst = openat(fdtop,asmbase,O_DIRECTORY)) < 0) {
+ if (mkdirat(fdtop,asmbase,dirmode) < 0)
+ return -1;
+ else if ((fddst = openat(fdtop,asmbase,O_DIRECTORY)) < 0)
+ return -1;
+ }
+
+ close(fdtop);
+ return fddst;
+}
+
+static int mdso_get_driver_ctx_fail(
+ struct argv_meta * meta,
+ char * asmbase,
+ int fddst)
{
+ if (fddst >= 0)
+ close(fddst);
+
+ if (asmbase)
+ free(asmbase);
+
argv_free(meta);
return -1;
}
@@ -100,6 +142,9 @@ int mdso_get_driver_ctx(
size_t nunits;
const char * program;
const char * pretty;
+ char * asmbase;
+ char * dot;
+ int fddst;
options = mdso_default_options;
@@ -108,6 +153,8 @@ int mdso_get_driver_ctx(
nunits = 0;
pretty = 0;
+ asmbase = 0;
+ fddst = -1;
program = argv_program_name(argv[0]);
memset(&cctx,0,sizeof(cctx));
@@ -149,13 +196,28 @@ int mdso_get_driver_ctx(
if (pretty && !strcmp(pretty,"yaml"))
cctx.fmtflags |= MDSO_PRETTY_YAML;
- if (!(ctx = mdso_driver_ctx_alloc(meta,nunits)))
- return mdso_get_driver_ctx_fail(meta);
+ if (!cctx.libname)
+ cctx.libname = "win32any";
+
+ if (!(asmbase = strdup(cctx.libname)))
+ return mdso_get_driver_ctx_fail(meta,asmbase,fddst);
+
+ if ((dot = strchr(asmbase,'.')))
+ *dot = '\0';
+
+ if (cctx.dstdir && (fddst = mdso_dstdir_open(&cctx,asmbase)) < 0)
+ return mdso_get_driver_ctx_fail(meta,asmbase,fddst);
+
+ if (!(ctx = mdso_driver_ctx_alloc(meta,&cctx,nunits)))
+ return mdso_get_driver_ctx_fail(meta,asmbase,fddst);
+ ctx->asmbase = asmbase;
+ ctx->cctx.asmbase = asmbase;
+
+ ctx->fddst = fddst;
ctx->ctx.program = program;
ctx->ctx.cctx = &ctx->cctx;
- memcpy(&ctx->cctx,&cctx,sizeof(cctx));
*pctx = &ctx->ctx;
return MDSO_OK;
}
@@ -166,22 +228,31 @@ int mdso_create_driver_ctx(
{
struct argv_meta * meta;
struct mdso_driver_ctx_impl * ctx;
+ int fddst = -1;
const char * argv[] = {"mdso_driver",0};
if (!(meta = argv_get(argv,mdso_default_options,0)))
return -1;
- if (!(ctx = mdso_driver_ctx_alloc(meta,0)))
- return mdso_get_driver_ctx_fail(0);
+ if (cctx->dstdir && (fddst = mdso_dstdir_open(cctx,cctx->asmbase)) < 0)
+ return mdso_get_driver_ctx_fail(meta,0,fddst);
+
+ if (!(ctx = mdso_driver_ctx_alloc(meta,cctx,0)))
+ return mdso_get_driver_ctx_fail(meta,0,fddst);
ctx->ctx.cctx = &ctx->cctx;
- memcpy(&ctx->cctx,cctx,sizeof(*cctx));
*pctx = &ctx->ctx;
return MDSO_OK;
}
static void mdso_free_driver_ctx_impl(struct mdso_driver_ctx_alloc * ictx)
{
+ if (ictx->ctx.fddst >= 0)
+ close(ictx->ctx.fddst);
+
+ if (ictx->ctx.asmbase)
+ free(ictx->ctx.asmbase);
+
argv_free(ictx->meta);
free(ictx);
}