Blame src/driver/pe_unit_ctx.c
|
|
81e8b3 |
#include <stdint.h>
|
|
|
81e8b3 |
#include <stdlib.h>
|
|
|
81e8b3 |
#include <string.h>
|
|
|
81e8b3 |
#include <sys/mman.h>
|
|
|
81e8b3 |
#include <perk/perk.h>
|
|
|
81e8b3 |
|
|
|
81e8b3 |
static int pe_free_unit_ctx_impl(struct pe_unit_ctx * ctx, int status)
|
|
|
81e8b3 |
{
|
|
|
81e8b3 |
if (ctx) {
|
|
|
81e8b3 |
pe_free_image_meta(ctx->meta);
|
|
|
81e8b3 |
pe_unmap_raw_image(&ctx->map);
|
|
|
81e8b3 |
free(ctx);
|
|
|
81e8b3 |
}
|
|
|
81e8b3 |
|
|
|
81e8b3 |
return status;
|
|
|
81e8b3 |
}
|
|
|
81e8b3 |
|
|
|
81e8b3 |
int pe_get_unit_ctx(
|
|
|
81e8b3 |
struct pe_driver_ctx * dctx,
|
|
|
81e8b3 |
const char * path,
|
|
|
81e8b3 |
struct pe_unit_ctx ** pctx)
|
|
|
81e8b3 |
{
|
|
|
81e8b3 |
struct pe_unit_ctx * ctx;
|
|
|
81e8b3 |
int prot;
|
|
|
81e8b3 |
|
|
|
81e8b3 |
if (!dctx || !(ctx = calloc(sizeof(*ctx),1)))
|
|
|
81e8b3 |
return -1;
|
|
|
81e8b3 |
|
|
|
8fd1f5 |
prot = (dctx->cctx.actflags & PERK_ACTION_MAP_READWRITE)
|
|
|
81e8b3 |
? PROT_READ | PROT_WRITE
|
|
|
81e8b3 |
: PROT_READ;
|
|
|
81e8b3 |
|
|
|
81e8b3 |
if (pe_map_raw_image(dctx->cctx.fdin,path,prot,&ctx->map))
|
|
|
81e8b3 |
return pe_free_unit_ctx_impl(ctx,-1);
|
|
|
81e8b3 |
|
|
|
81e8b3 |
if (pe_get_image_meta(&ctx->map,&ctx->meta))
|
|
|
81e8b3 |
return pe_free_unit_ctx_impl(ctx,-1);
|
|
|
81e8b3 |
|
|
|
81e8b3 |
memcpy(&ctx->cctx,&dctx->cctx,
|
|
|
81e8b3 |
sizeof(ctx->cctx));
|
|
|
81e8b3 |
|
|
|
81e8b3 |
ctx->path = path;
|
|
|
81e8b3 |
ctx->cctx.prot = prot;
|
|
|
81e8b3 |
|
|
|
81e8b3 |
*pctx = ctx;
|
|
|
81e8b3 |
return 0;
|
|
|
81e8b3 |
}
|
|
|
81e8b3 |
|
|
|
81e8b3 |
void pe_free_unit_ctx(struct pe_unit_ctx * ctx)
|
|
|
81e8b3 |
{
|
|
|
81e8b3 |
pe_free_unit_ctx_impl(ctx,0);
|
|
|
81e8b3 |
}
|