Newer
Older
/*****************************************************************************\
* checkpoint_xlch.c - XLCH slurm checkpoint plugin.
* $Id: checkpoint_xlch.c 0001 2006-10-31 10:55:11Z hjcao $
*****************************************************************************
* Derived from checkpoint_aix.c
* Copyright (C) 2007-2009 National University of Defense Technology, China.
* Written by Hongia Cao.

Moe Jette
committed
* CODE-OCEC-09-009. All rights reserved.
*
* This file is part of SLURM, a resource management program.

Moe Jette
committed
* For details, see <https://computing.llnl.gov/linux/slurm/>.
* Please also read the included file: DISCLAIMER.
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* In addition, as a special exception, the copyright holders give permission
* to link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two. You must obey the GNU
* General Public License in all respects for all of the code used other than
* OpenSSL. If you modify file(s) with this exception, you may extend this
* exception to your version of the file(s), but you are not obligated to do
* so. If you do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source files in
* the program, then also delete it here.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#endif
#ifdef WITH_PTHREADS
# include <pthread.h>
#endif
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include <slurm/slurm.h>
#include <slurm/slurm_errno.h>
#include "src/common/list.h"
#include "src/common/log.h"
#include "src/common/pack.h"
#include "src/common/xassert.h"
#include "src/common/xstring.h"
#include "src/common/xmalloc.h"
#include "src/slurmctld/agent.h"
#include "src/slurmctld/slurmctld.h"
#include "src/slurmd/slurmstepd/slurmstepd_job.h"
#define SIGCKPT SIGUSR2
struct check_job_info {
uint16_t disabled; /* counter, checkpointable only if zero */
uint16_t task_cnt;
uint16_t reply_cnt;
uint16_t wait_time;
time_t time_stamp; /* begin or end checkpoint time */
uint32_t error_code;
char *error_msg;
uint16_t sig_done;
bitstr_t *replied; /* which task has replied the checkpoint.
XXX: only valid if in operation */
pthread_mutex_t mutex;
};
static void _send_sig(uint32_t job_id, uint32_t step_id, uint16_t signal,
char *nodelist);
static int _step_ckpt(struct step_record * step_ptr, uint16_t wait,
char *image_dir, uint16_t sig_timeout);
/* checkpoint request timeout processing */
static pthread_t ckpt_agent_tid = 0;
static pthread_mutex_t ckpt_agent_mutex = PTHREAD_MUTEX_INITIALIZER;
static List ckpt_timeout_list = NULL;
struct ckpt_timeout_info {
uint32_t job_id;
uint32_t step_id;
uint16_t signal;
time_t start_time;
time_t end_time;
char* nodelist;
};
static void *_ckpt_agent_thr(void *arg);
static void _ckpt_enqueue_timeout(uint32_t job_id, uint32_t step_id,
time_t start_time, uint16_t signal,
uint16_t wait_time, char *nodelist);
static void _ckpt_dequeue_timeout(uint32_t job_id, uint32_t step_id,
time_t start_time);
static void _ckpt_timeout_free(void *rec);
static void _ckpt_signal_step(struct ckpt_timeout_info *rec);
static int _on_ckpt_complete(struct step_record *step_ptr, uint32_t error_code);
static char *scch_path = SLURM_PREFIX "/sbin/scch";
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/*
* These variables are required by the generic plugin interface. If they
* are not found in the plugin, the plugin loader will ignore it.
*
* plugin_name - a string giving a human-readable description of the
* plugin. There is no maximum length, but the symbol must refer to
* a valid string.
*
* plugin_type - a string suggesting the type of the plugin or its
* applicability to a particular form of data or method of data handling.
* If the low-level plugin API is used, the contents of this string are
* unimportant and may be anything. SLURM uses the higher-level plugin
* interface which requires this string to be of the form
*
* <application>/<method>
*
* where <application> is a description of the intended application of
* the plugin (e.g., "checkpoint" for SLURM checkpoint) and <method>
* is a description of how this plugin satisfies that application. SLURM will
* only load checkpoint plugins if the plugin_type string has a
* prefix of "checkpoint/".
*
* plugin_version - an unsigned 32-bit integer giving the version number
* of the plugin. If major and minor revisions are desired, the major
* version number may be multiplied by a suitable magnitude constant such
* as 100 or 1000. Various SLURM versions will likely require a certain
* minimum versions for their plugins as the checkpoint API matures.
*/
const char plugin_name[] = "XLCH checkpoint plugin";
const char plugin_type[] = "checkpoint/xlch";
const uint32_t plugin_version = 100;
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
* init() is called when the plugin is loaded, before any other functions
* are called. Put global initialization here.
*/
extern int init ( void )
{
pthread_attr_t attr;
slurm_attr_init(&attr);
if (pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED))
error("pthread_attr_setdetachstate: %m");
if (pthread_create(&ckpt_agent_tid, &attr, _ckpt_agent_thr, NULL)) {
error("pthread_create: %m");
return SLURM_ERROR;
}
slurm_attr_destroy(&attr);
return SLURM_SUCCESS;
}
extern int fini ( void )
{
int i;
if (!ckpt_agent_tid)
return SLURM_SUCCESS;
for (i=0; i<4; i++) {
if (pthread_cancel(ckpt_agent_tid)) {
ckpt_agent_tid = 0;
return SLURM_SUCCESS;
}
usleep(1000);
}
error("Could not kill checkpoint pthread");
return SLURM_ERROR;
}
/*
* The remainder of this file implements the standard SLURM checkpoint API.
*/
extern int slurm_ckpt_op (uint32_t job_id, uint32_t step_id,
struct step_record *step_ptr, uint16_t op,
uint16_t data, char *image_dir, time_t * event_time,
uint32_t *error_code, char **error_msg )
{
int rc = SLURM_SUCCESS;
struct check_job_info *check_ptr;
/* checkpoint/xlch does not support checkpoint batch jobs */
if (step_id == SLURM_BATCH_SCRIPT)
return ESLURM_NOT_SUPPORTED;
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
xassert(step_ptr);
check_ptr = (struct check_job_info *) step_ptr->check_job;
check_ptr->task_cnt = step_ptr->step_layout->task_cnt; /* set it early */
xassert(check_ptr);
slurm_mutex_lock (&check_ptr->mutex);
switch (op) {
case CHECK_ABLE:
if (check_ptr->disabled)
rc = ESLURM_DISABLED;
else {
if (check_ptr->reply_cnt < check_ptr->task_cnt)
*event_time = check_ptr->time_stamp;
rc = SLURM_SUCCESS;
}
break;
case CHECK_DISABLE:
check_ptr->disabled++;
break;
case CHECK_ENABLE:
check_ptr->disabled--;
break;
case CHECK_CREATE:
if (check_ptr->time_stamp != 0) {
rc = EALREADY;
break;
}
check_ptr->time_stamp = time(NULL);
check_ptr->reply_cnt = 0;
check_ptr->replied = bit_alloc(check_ptr->task_cnt);
check_ptr->error_code = 0;
check_ptr->sig_done = 0;
xfree(check_ptr->error_msg);
rc = _step_ckpt(step_ptr, data, image_dir, SIGKILL);
break;
case CHECK_VACATE:
if (check_ptr->time_stamp != 0) {
rc = EALREADY;
break;
}
check_ptr->time_stamp = time(NULL);
check_ptr->reply_cnt = 0;
check_ptr->replied = bit_alloc(check_ptr->task_cnt);
check_ptr->error_code = 0;
check_ptr->sig_done = SIGTERM; /* exit elegantly */
xfree(check_ptr->error_msg);
rc = _step_ckpt(step_ptr, data, image_dir, SIGKILL);
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
break;
case CHECK_RESTART:
rc = ESLURM_NOT_SUPPORTED;
break;
case CHECK_ERROR:
xassert(error_code);
xassert(error_msg);
*error_code = check_ptr->error_code;
xfree(*error_msg);
*error_msg = xstrdup(check_ptr->error_msg);
break;
default:
error("Invalid checkpoint operation: %d", op);
rc = EINVAL;
}
slurm_mutex_unlock (&check_ptr->mutex);
return rc;
}
/* this function will not be called by us */
extern int slurm_ckpt_comp ( struct step_record * step_ptr, time_t event_time,
uint32_t error_code, char *error_msg )
{
error("checkpoint/xlch: slurm_ckpt_comp not implemented");
return ESLURM_NOT_SUPPORTED;
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
}
extern int slurm_ckpt_task_comp ( struct step_record * step_ptr, uint32_t task_id,
time_t event_time, uint32_t error_code, char *error_msg )
{
struct check_job_info *check_ptr;
int rc = SLURM_SUCCESS;
xassert(step_ptr);
check_ptr = (struct check_job_info *) step_ptr->check_job;
xassert(check_ptr);
/* XXX: we need a mutex here, since in proc_req only JOB_READ locked */
debug3("slurm_ckpt_task_comp: job %u.%hu, task %u, error %d",
step_ptr->job_ptr->job_id, step_ptr->step_id, task_id,
error_code);
slurm_mutex_lock (&check_ptr->mutex);
/*
* for now we do not use event_time to identify operation and always
* set it 0
* TODO: consider send event_time to the task via sigqueue().
*/
if (event_time && (event_time != check_ptr->time_stamp)) {
rc = ESLURM_ALREADY_DONE;
goto out;
}
if (!check_ptr->replied || bit_test (check_ptr->replied, task_id)) {
rc = ESLURM_ALREADY_DONE;
goto out;
}
if ((uint16_t)task_id >= check_ptr->task_cnt) {
error("invalid task_id %u, task_cnt: %hu", task_id,
check_ptr->task_cnt);
rc = EINVAL;
goto out;
}
bit_set (check_ptr->replied, task_id);
check_ptr->reply_cnt ++;
/* TODO: check the error_code */
if (error_code > check_ptr->error_code) {
info("slurm_ckpt_task_comp error %u: %s", error_code, error_msg);
check_ptr->error_code = error_code;
xfree(check_ptr->error_msg);
check_ptr->error_msg = xstrdup(error_msg);
}
/* We need an error-free reply from each task to note completion */
if (check_ptr->reply_cnt == check_ptr->task_cnt) { /* all tasks done */
time_t now = time(NULL);
long delay = (long) difftime(now, check_ptr->time_stamp);
info("Checkpoint complete for job %u.%u in %ld seconds",
step_ptr->job_ptr->job_id, step_ptr->step_id,
delay);
/* remove the timeout */
_ckpt_dequeue_timeout(step_ptr->job_ptr->job_id,
step_ptr->step_id, check_ptr->time_stamp);
/* free the replied bitstr */
FREE_NULL_BITMAP (check_ptr->replied);
if (check_ptr->sig_done) {
info ("checkpoint step %u.%hu done, sending signal %hu",
step_ptr->job_ptr->job_id,
step_ptr->step_id, check_ptr->sig_done);
_send_sig(step_ptr->job_ptr->job_id, step_ptr->step_id,
check_ptr->sig_done,
step_ptr->step_layout->node_list);
}
_on_ckpt_complete(step_ptr, check_ptr->error_code); /* how about we execute a program? */
check_ptr->time_stamp = 0; /* this enables checkpoint again */
}
out:
slurm_mutex_unlock (&check_ptr->mutex);
return rc;
}
extern int slurm_ckpt_alloc_job(check_jobinfo_t *jobinfo)
{
struct check_job_info *check_ptr;
check_ptr = xmalloc(sizeof(struct check_job_info));
slurm_mutex_init (&check_ptr->mutex);
*jobinfo = (check_jobinfo_t) check_ptr;
return SLURM_SUCCESS;
}
extern int slurm_ckpt_free_job(check_jobinfo_t jobinfo)
{
struct check_job_info *check_ptr = (struct check_job_info *)jobinfo;
if (check_ptr) {
xfree (check_ptr->error_msg);
FREE_NULL_BITMAP (check_ptr->replied);
}
xfree(jobinfo);
return SLURM_SUCCESS;
}
extern int slurm_ckpt_pack_job(check_jobinfo_t jobinfo, Buf buffer)
{
struct check_job_info *check_ptr =
(struct check_job_info *)jobinfo;
pack16(check_ptr->disabled, buffer);
pack16(check_ptr->task_cnt, buffer);
pack16(check_ptr->reply_cnt, buffer);
pack16(check_ptr->wait_time, buffer);
pack_bit_fmt(check_ptr->replied, buffer);
pack32(check_ptr->error_code, buffer);
packstr(check_ptr->error_msg, buffer);
pack_time(check_ptr->time_stamp, buffer);
return SLURM_SUCCESS;
}
extern int slurm_ckpt_unpack_job(check_jobinfo_t jobinfo, Buf buffer)
{
uint32_t uint32_tmp;
char *task_inx_str;
struct check_job_info *check_ptr =
(struct check_job_info *)jobinfo;
safe_unpack16(&check_ptr->disabled, buffer);
safe_unpack16(&check_ptr->task_cnt, buffer);
safe_unpack16(&check_ptr->reply_cnt, buffer);
safe_unpack16(&check_ptr->wait_time, buffer);
safe_unpackstr_xmalloc(&task_inx_str, &uint32_tmp, buffer);
if (task_inx_str == NULL)
check_ptr->replied = NULL;
else {
check_ptr->replied = bit_alloc(check_ptr->task_cnt);
bit_unfmt(check_ptr->replied, task_inx_str);
xfree(task_inx_str);
}
safe_unpack32(&check_ptr->error_code, buffer);
safe_unpackstr_xmalloc(&check_ptr->error_msg, &uint32_tmp, buffer);
safe_unpack_time(&check_ptr->time_stamp, buffer);
return SLURM_SUCCESS;
unpack_error:
xfree(check_ptr->error_msg);
return SLURM_ERROR;
}
/* Send a signal RPC to a list of nodes */
static void _send_sig(uint32_t job_id, uint32_t step_id, uint16_t signal,
char *nodelist)
{
agent_arg_t *agent_args;
kill_tasks_msg_t *kill_tasks_msg;
kill_tasks_msg = xmalloc(sizeof(kill_tasks_msg_t));
kill_tasks_msg->job_id = job_id;
kill_tasks_msg->job_step_id = step_id;
kill_tasks_msg->signal = signal;
agent_args = xmalloc(sizeof(agent_arg_t));
agent_args->msg_type = REQUEST_SIGNAL_TASKS;
agent_args->retry = 1;
agent_args->msg_args = kill_tasks_msg;
agent_args->hostlist = hostlist_create(nodelist);
agent_args->node_count = hostlist_count(agent_args->hostlist);
agent_queue_request(agent_args);
}
/* Send checkpoint request to the processes of a job step.
* If the request times out, send sig_timeout. */
static int _step_ckpt(struct step_record * step_ptr, uint16_t wait,
char *image_dir, uint16_t sig_timeout)
{
struct check_job_info *check_ptr;
struct job_record *job_ptr;
xassert(step_ptr);
check_ptr = (struct check_job_info *) step_ptr->check_job;
xassert(check_ptr);
job_ptr = step_ptr->job_ptr;
xassert(job_ptr);
if (IS_JOB_FINISHED(job_ptr))
return ESLURM_ALREADY_DONE;
if (check_ptr->disabled)
return ESLURM_DISABLED;
if (!check_ptr->task_cnt) {
error("_step_ckpt: job %u.%u has no tasks to checkpoint",
job_ptr->job_id,
step_ptr->step_id);
return ESLURM_INVALID_NODE_NAME;
}
char* nodelist = xstrdup (step_ptr->step_layout->node_list);
check_ptr->wait_time = wait; /* TODO: how about change wait_time according to task_cnt? */
checkpoint_tasks(step_ptr->job_ptr->job_id, step_ptr->step_id,
check_ptr->time_stamp, image_dir, wait, nodelist);
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
_ckpt_enqueue_timeout(step_ptr->job_ptr->job_id,
step_ptr->step_id, check_ptr->time_stamp,
sig_timeout, check_ptr->wait_time, nodelist);
info("checkpoint requested for job %u.%u", job_ptr->job_id,
step_ptr->step_id);
xfree (nodelist);
return SLURM_SUCCESS;
}
static void _ckpt_signal_step(struct ckpt_timeout_info *rec)
{
/* debug("signal %u.%u %u", rec->job_id, rec->step_id, rec->signal); */
_send_sig(rec->job_id, rec->step_id, rec->signal, rec->nodelist);
}
/* Checkpoint processing pthread
* Never returns, but is cancelled on plugin termiantion */
static void *_ckpt_agent_thr(void *arg)
{
ListIterator iter;
struct ckpt_timeout_info *rec;
time_t now;
while (1) {
sleep(1);
if (!ckpt_timeout_list)
continue;
now = time(NULL);
iter = list_iterator_create(ckpt_timeout_list);
slurm_mutex_lock(&ckpt_agent_mutex);
/* look for and process any timeouts */
while ((rec = list_next(iter))) {
if (rec->end_time > now)
continue;
info("checkpoint timeout for %u.%u",
rec->job_id, rec->step_id);
_ckpt_signal_step(rec);
list_delete_item(iter);
}
slurm_mutex_unlock(&ckpt_agent_mutex);
list_iterator_destroy(iter);
}
}
/* Queue a checkpoint request timeout */
static void _ckpt_enqueue_timeout(uint32_t job_id, uint32_t step_id,
time_t start_time, uint16_t signal,
uint16_t wait_time, char *nodelist)
{
struct ckpt_timeout_info *rec;
if ((wait_time == 0) || (signal == 0)) /* if signal == 0, don't enqueue it */
return;
slurm_mutex_lock(&ckpt_agent_mutex);
if (!ckpt_timeout_list)
ckpt_timeout_list = list_create(_ckpt_timeout_free);
rec = xmalloc(sizeof(struct ckpt_timeout_info));
rec->job_id = job_id;
rec->step_id = step_id;
rec->signal = signal;
rec->start_time = start_time;
rec->end_time = start_time + wait_time;
rec->nodelist = xstrdup(nodelist);
/* debug("enqueue %u.%u %u", job_id, step_id, wait_time); */
list_enqueue(ckpt_timeout_list, rec);
slurm_mutex_unlock(&ckpt_agent_mutex);
}
static void _ckpt_timeout_free(void *rec)
{
struct ckpt_timeout_info *ckpt_rec = (struct ckpt_timeout_info *)rec;
if (ckpt_rec) {
xfree(ckpt_rec->nodelist);
xfree(ckpt_rec);
}
}
/* De-queue a checkpoint timeout request. The operation completed */
static void _ckpt_dequeue_timeout(uint32_t job_id, uint32_t step_id,
time_t start_time)
{
ListIterator iter;
struct ckpt_timeout_info *rec;
slurm_mutex_lock(&ckpt_agent_mutex);
if (!ckpt_timeout_list)
goto fini;
iter = list_iterator_create(ckpt_timeout_list);
while ((rec = list_next(iter))) {
if ((rec->job_id != job_id) || (rec->step_id != step_id)
|| (start_time && (rec->start_time != start_time)))
continue;
/* debug("dequeue %u.%u", job_id, step_id); */
list_delete_item(iter);
break;
}
list_iterator_destroy(iter);
fini:
slurm_mutex_unlock(&ckpt_agent_mutex);
}
/* a checkpoint completed, process the images files */
static int _on_ckpt_complete(struct step_record *step_ptr, uint32_t error_code)
{
int status;
pid_t cpid;
if (access(scch_path, R_OK | X_OK) < 0) {
info("Access denied for %s: %m", scch_path);
return SLURM_ERROR;
}
if ((cpid = fork()) < 0) {
error ("_on_ckpt_complete: fork: %m");
return SLURM_ERROR;
}
if (cpid == 0) {
/*
* We don't fork and wait the child process because the job
* read lock is held. It could take minutes to delete/move
* the checkpoint image files. So there is a race condition
* of the user requesting another checkpoint before SCCH
* finishes.
*/
/* fork twice to avoid zombies */
if ((cpid = fork()) < 0) {
error ("_on_ckpt_complete: second fork: %m");
exit(127);
}
/* grand child execs */
if (cpid == 0) {
char *args[6];
char str_job[11];
char str_step[11];
char str_err[11];
/*
* XXX: if slurmctld is running as root, we must setuid here.
* But what if slurmctld is running as SlurmUser?
* How about we make scch setuid and pass the user/group to it?
*/
if (geteuid() == 0) { /* root */
if (setgid(step_ptr->job_ptr->group_id) < 0) {
error ("_on_ckpt_complete: failed to "
"setgid: %m");
exit(127);
}
if (setuid(step_ptr->job_ptr->user_id) < 0) {
error ("_on_ckpt_complete: failed to "
"setuid: %m");
exit(127);
}
}
snprintf(str_job, sizeof(str_job), "%u",
step_ptr->job_ptr->job_id);
snprintf(str_step, sizeof(str_step), "%hu",
step_ptr->step_id);
snprintf(str_err, sizeof(str_err), "%u",
error_code);
args[0] = scch_path;
args[1] = str_job;
args[2] = str_step;
args[3] = str_err;
args[4] = step_ptr->ckpt_dir;
args[5] = NULL;
execv(scch_path, args);
error("help! %m");
exit(127);
}
/* child just exits */
exit(0);
}
while(1) {
if (waitpid(cpid, &status, 0) < 0 && errno == EINTR)
continue;
break;
}
return SLURM_SUCCESS;
}
extern int slurm_ckpt_stepd_prefork(void *slurmd_job)
{
return SLURM_SUCCESS;
}
extern int slurm_ckpt_signal_tasks(void *slurmd_job)
{
/* send SIGCKPT to all tasks */
return killpg(((slurmd_job_t *)slurmd_job)->pgid, SIGCKPT);
}
extern int slurm_ckpt_restart_task(void *slurmd_job, char *image_dir, int gtid)
{
char buf[256];
if (snprintf(buf, sizeof(buf), "%s/task.%d.ckpt", image_dir, gtid) >= sizeof(buf)) {
error("slurm buffer size too small");
return SLURM_FAILURE;
}
/* restart the task and update its environment */
#if 0
restart(buf, ((slurmd_job_t *)slurmd_job)->env);
#endif
error("restart() failed: rank=%d, file=%s: %m", gtid, buf);
return SLURM_FAILURE;