Skip to content
Snippets Groups Projects
Commit abcc869f authored by Moe Jette's avatar Moe Jette
Browse files

Add new allocator context to spank plugin framework

PATCH 3/9 from Mark Grondona
parent 8256e317
No related branches found
No related tags found
No related merge requests found
...@@ -166,7 +166,8 @@ typedef enum spank_err spank_err_t; ...@@ -166,7 +166,8 @@ typedef enum spank_err spank_err_t;
enum spank_context { enum spank_context {
S_CTX_ERROR, /* Error obtaining current context */ S_CTX_ERROR, /* Error obtaining current context */
S_CTX_LOCAL, /* Local context (srun) */ S_CTX_LOCAL, /* Local context (srun) */
S_CTX_REMOTE /* Remote context (slurmd) */ S_CTX_REMOTE, /* Remote context (slurmd) */
S_CTX_ALLOCATOR /* Allocator context (sbatch/salloc) */
}; };
typedef enum spank_context spank_context_t; typedef enum spank_context spank_context_t;
......
...@@ -128,8 +128,9 @@ static List option_cache = NULL; ...@@ -128,8 +128,9 @@ static List option_cache = NULL;
*/ */
enum spank_context_type { enum spank_context_type {
S_TYPE_NONE, S_TYPE_NONE,
S_TYPE_LOCAL, /* LOCAL == srun */ S_TYPE_LOCAL, /* LOCAL == srun */
S_TYPE_REMOTE /* REMOTE == slurmd */ S_TYPE_REMOTE, /* REMOTE == slurmd */
S_TYPE_ALLOCATOR /* ALLOCATOR == sbatch/salloc */
}; };
/* /*
...@@ -272,7 +273,11 @@ static struct spank_plugin *_spank_plugin_create(char *path, int ac, ...@@ -272,7 +273,11 @@ static struct spank_plugin *_spank_plugin_create(char *path, int ac,
plugin->argv = av; plugin->argv = av;
plugin->ops = ops; plugin->ops = ops;
plugin->opts = plugin_get_sym(p, "spank_options"); /*
* Do not load static plugin options table in allocator context.
*/
if (spank_ctx != S_TYPE_ALLOCATOR)
plugin->opts = plugin_get_sym(p, "spank_options");
return (plugin); return (plugin);
} }
...@@ -634,17 +639,14 @@ static int _do_call_stack(step_fn_t type, void * job, int taskid) ...@@ -634,17 +639,14 @@ static int _do_call_stack(step_fn_t type, void * job, int taskid)
return (rc); return (rc);
} }
int spank_init(slurmd_job_t * job) int _spank_init(enum spank_context_type context, slurmd_job_t * job)
{ {
slurm_ctl_conf_t *conf = slurm_conf_lock(); slurm_ctl_conf_t *conf = slurm_conf_lock();
const char *path = conf->plugstack; const char *path = conf->plugstack;
default_spank_path = conf->plugindir; default_spank_path = conf->plugindir;
slurm_conf_unlock(); slurm_conf_unlock();
if (job) spank_ctx = context;
spank_ctx = S_TYPE_REMOTE;
else
spank_ctx = S_TYPE_LOCAL;
if (_spank_stack_create(path, &spank_stack) < 0) { if (_spank_stack_create(path, &spank_stack) < 0) {
/* No error if spank config doesn't exist */ /* No error if spank config doesn't exist */
...@@ -668,6 +670,18 @@ int spank_init(slurmd_job_t * job) ...@@ -668,6 +670,18 @@ int spank_init(slurmd_job_t * job)
return (0); return (0);
} }
int spank_init (slurmd_job_t * job)
{
if (job)
return _spank_init (S_TYPE_REMOTE, job);
else
return _spank_init (S_TYPE_LOCAL, NULL);
}
int spank_init_allocator (void)
{
return _spank_init (S_TYPE_ALLOCATOR, NULL);
}
int spank_user(slurmd_job_t * job) int spank_user(slurmd_job_t * job)
{ {
...@@ -1254,23 +1268,49 @@ static int _valid_in_local_context (spank_item_t item) ...@@ -1254,23 +1268,49 @@ static int _valid_in_local_context (spank_item_t item)
return (rc); return (rc);
} }
/* static int _valid_in_allocator_context (spank_item_t item)
* Return 1 if spank_item_t is just getting version (valid anywhere)
*/
static int _version_check (spank_item_t item)
{ {
int rc = 0;
switch (item) { switch (item) {
case S_SLURM_VERSION: case S_JOB_UID:
case S_SLURM_VERSION_MAJOR: case S_JOB_GID:
case S_SLURM_VERSION_MINOR: return 1;
case S_SLURM_VERSION_MICRO: default:
rc = 1; return 0;
break;
default:
rc = 0;
} }
return (rc); }
static spank_err_t _check_spank_item_validity (spank_item_t item)
{
/*
* Valid in all contexts:
*/
switch (item) {
case S_SLURM_VERSION:
case S_SLURM_VERSION_MAJOR:
case S_SLURM_VERSION_MINOR:
case S_SLURM_VERSION_MICRO:
return ESPANK_SUCCESS;
default:
break; /* fallthru */
}
if (spank_ctx == S_TYPE_LOCAL) {
if (_valid_in_local_context (item))
return ESPANK_SUCCESS;
else
return ESPANK_NOT_REMOTE;
}
else if (spank_ctx == S_TYPE_ALLOCATOR) {
if (_valid_in_allocator_context (item))
return ESPANK_SUCCESS;
else if (_valid_in_local_context (item))
return ESPANK_BAD_ARG;
else
return ESPANK_NOT_REMOTE;
}
/* All items presumably valid in remote context */
return ESPANK_SUCCESS;
} }
/* /*
...@@ -1309,7 +1349,9 @@ spank_context_t spank_context (void) ...@@ -1309,7 +1349,9 @@ spank_context_t spank_context (void)
return S_CTX_REMOTE; return S_CTX_REMOTE;
case S_TYPE_LOCAL: case S_TYPE_LOCAL:
return S_CTX_LOCAL; return S_CTX_LOCAL;
case S_TYPE_NONE: case S_TYPE_ALLOCATOR:
return S_CTX_ALLOCATOR;
default:
return S_CTX_ERROR; return S_CTX_ERROR;
} }
...@@ -1338,20 +1380,16 @@ spank_err_t spank_get_item(spank_t spank, spank_item_t item, ...) ...@@ -1338,20 +1380,16 @@ spank_err_t spank_get_item(spank_t spank, spank_item_t item, ...)
if ((spank == NULL) || (spank->magic != SPANK_MAGIC)) if ((spank == NULL) || (spank->magic != SPANK_MAGIC))
return (ESPANK_BAD_ARG); return (ESPANK_BAD_ARG);
if (!_version_check(item)) { /*
/* Need job pointer to process other items */ * Check for validity of the given item in the current context
if ( (spank_ctx != S_TYPE_REMOTE) */
&& (!_valid_in_local_context(item))) if ((rc = _check_spank_item_validity (item)) != ESPANK_SUCCESS)
return (ESPANK_NOT_REMOTE); return (rc);
if (spank->job == NULL)
return (ESPANK_BAD_ARG);
if (spank_ctx == S_TYPE_LOCAL) if (spank_ctx == S_TYPE_LOCAL)
launcher_job = spank->job; launcher_job = spank->job;
else else if (spank_ctx == S_TYPE_REMOTE)
slurmd_job = spank->job; slurmd_job = spank->job;
}
va_start(vargs, item); va_start(vargs, item);
switch (item) { switch (item) {
...@@ -1359,15 +1397,19 @@ spank_err_t spank_get_item(spank_t spank, spank_item_t item, ...) ...@@ -1359,15 +1397,19 @@ spank_err_t spank_get_item(spank_t spank, spank_item_t item, ...)
p2uid = va_arg(vargs, uid_t *); p2uid = va_arg(vargs, uid_t *);
if (spank_ctx == S_TYPE_LOCAL) if (spank_ctx == S_TYPE_LOCAL)
*p2uid = launcher_job->uid; *p2uid = launcher_job->uid;
else else if (spank_ctx == S_TYPE_REMOTE)
*p2uid = slurmd_job->uid; *p2uid = slurmd_job->uid;
else
*p2uid = getuid();
break; break;
case S_JOB_GID: case S_JOB_GID:
p2gid = va_arg(vargs, gid_t *); p2gid = va_arg(vargs, gid_t *);
if (spank_ctx == S_TYPE_LOCAL) if (spank_ctx == S_TYPE_LOCAL)
*p2gid = launcher_job->gid; *p2gid = launcher_job->gid;
else else if (spank_ctx == S_TYPE_REMOTE)
*p2gid = slurmd_job->gid; *p2gid = slurmd_job->gid;
else
*p2gid = getgid();
break; break;
case S_JOB_SUPPLEMENTARY_GIDS: case S_JOB_SUPPLEMENTARY_GIDS:
p2gids = va_arg(vargs, gid_t **); p2gids = va_arg(vargs, gid_t **);
......
...@@ -66,6 +66,8 @@ struct spank_launcher_job_info { ...@@ -66,6 +66,8 @@ struct spank_launcher_job_info {
int spank_init (slurmd_job_t *job); int spank_init (slurmd_job_t *job);
int spank_init_allocator (void);
int spank_user (slurmd_job_t *job); int spank_user (slurmd_job_t *job);
int spank_local_user (struct spank_launcher_job_info *job); int spank_local_user (struct spank_launcher_job_info *job);
......
...@@ -74,6 +74,11 @@ static int _test_opt_process(int val, const char *optarg, int remote) ...@@ -74,6 +74,11 @@ static int _test_opt_process(int val, const char *optarg, int remote)
/* Called from both srun and slurmd */ /* Called from both srun and slurmd */
int slurm_spank_init(spank_t sp, int ac, char **av) int slurm_spank_init(spank_t sp, int ac, char **av)
{ {
spank_context_t context;
context = spank_context();
if ((context != S_CTX_LOCAL) && (context != S_CTX_REMOTE))
slurm_error("spank_context error");
if (spank_option_register(sp, spank_options_reg) != ESPANK_SUCCESS) if (spank_option_register(sp, spank_options_reg) != ESPANK_SUCCESS)
slurm_error("spank_option_register error"); slurm_error("spank_option_register error");
if (spank_remote(sp) && (ac == 1)) if (spank_remote(sp) && (ac == 1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment