/usr/include/dmtcp.h is in dmtcp 2.3.1-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 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 149 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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 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 240 241 242 243 244 245 246 247 248 249 250 251 252 253 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 280 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 | /****************************************************************************
* TODO: Replace this header with appropriate header showing MIT OR BSD *
* License *
* Copyright (C) 2006-2008 by Jason Ansel, Kapil Arya, and Gene Cooperman *
* jansel@csail.mit.edu, kapil@ccs.neu.edu, gene@ccs.neu.edu *
* *
* This file, dmtcp.h, is placed in the public domain. *
* The motivation for this is to allow anybody to freely use this file *
* without restriction to statically link this file with any software. *
* This allows that software to communicate with the DMTCP libraries. *
* - Jason Ansel, Kapil Arya, and Gene Cooperman *
* jansel@csail.mit.edu, kapil@ccs.neu.edu, gene@ccs.neu.edu *
****************************************************************************/
#ifndef DMTCP_H
#define DMTCP_H
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/ip.h>
#ifndef __USE_GNU
# define __USE_GNU_NOT_SET
# define __USE_GNU
#endif
#include <dlfcn.h> /* for NEXT_FNC() */
#ifdef __USE_GNU_NOT_SET
# undef __USE_GNU_NOT_SET
# undef __USE_GNU
#endif
#ifndef EXTERNC
# ifdef __cplusplus
# define EXTERNC extern "C"
# else
# define EXTERNC
# endif
#endif
#define SYSCALL_ARG_RET_TYPE long int
#define POLL_TIMEOUT_TYPE int
#define EVENTFD_VAL_TYPE int
#define DELETED_FILE_SUFFIX " (deleted)"
#define LIB_PRIVATE __attribute__ ((visibility ("hidden")))
typedef enum eDmtcpEvent {
//DMTCP_EVENT_WRAPPER_INIT, // Future Work :-).
DMTCP_EVENT_INIT,
DMTCP_EVENT_EXIT,
DMTCP_EVENT_PRE_EXEC,
DMTCP_EVENT_POST_EXEC,
DMTCP_EVENT_ATFORK_PREPARE,
DMTCP_EVENT_ATFORK_PARENT,
DMTCP_EVENT_ATFORK_CHILD,
DMTCP_EVENT_WAIT_FOR_SUSPEND_MSG,
DMTCP_EVENT_THREADS_SUSPEND,
DMTCP_EVENT_LEADER_ELECTION,
DMTCP_EVENT_DRAIN,
DMTCP_EVENT_WRITE_CKPT,
DMTCP_EVENT_RESTART,
DMTCP_EVENT_RESUME,
DMTCP_EVENT_REGISTER_NAME_SERVICE_DATA,
DMTCP_EVENT_SEND_QUERIES,
DMTCP_EVENT_REFILL,
DMTCP_EVENT_THREADS_RESUME,
DMTCP_EVENT_PRE_SUSPEND_USER_THREAD,
DMTCP_EVENT_RESUME_USER_THREAD,
DMTCP_EVENT_THREAD_START,
DMTCP_EVENT_THREAD_CREATED,
DMTCP_EVENT_PTHREAD_START,
DMTCP_EVENT_PTHREAD_EXIT,
DMTCP_EVENT_PTHREAD_RETURN,
nDmtcpEvents
} DmtcpEvent_t;
typedef union _DmtcpEventData_t {
struct {
int fd;
} serializerInfo;
struct {
int isRestart;
} resumeUserThreadInfo, refillInfo, resumeInfo, nameserviceInfo;
} DmtcpEventData_t;
typedef struct DmtcpUniqueProcessId {
uint64_t _hostid; //gethostid()
uint64_t _time; //time()
pid_t _pid; //getpid()
uint32_t _generation; //generation()
} DmtcpUniqueProcessId;
EXTERNC int dmtcp_unique_pids_equal(DmtcpUniqueProcessId a,
DmtcpUniqueProcessId b);
EXTERNC int dmtcp_plugin_disable_ckpt(void);
EXTERNC void dmtcp_plugin_enable_ckpt(void);
EXTERNC void dmtcp_event_hook(DmtcpEvent_t event, DmtcpEventData_t *data)
__attribute((weak));
EXTERNC int dmtcp_send_key_val_pair_to_coordinator(const char *id,
const void *key,
uint32_t key_len,
const void *val,
uint32_t val_len);
EXTERNC int dmtcp_send_key_val_pair_to_coordinator_sync(const char *id,
const void *key,
uint32_t key_len,
const void *val,
uint32_t val_len);
EXTERNC int dmtcp_send_query_to_coordinator(const char *id,
const void *key, uint32_t key_len,
void *val, uint32_t *val_len);
EXTERNC void dmtcp_get_local_ip_addr(struct in_addr *in);
EXTERNC const char* dmtcp_get_tmpdir(void);
//EXTERNC void dmtcp_set_tmpdir(const char *);
EXTERNC const char* dmtcp_get_ckpt_dir(void);
EXTERNC void dmtcp_set_ckpt_dir(const char *);
EXTERNC const char* dmtcp_get_coord_ckpt_dir(void);
EXTERNC void dmtcp_set_coord_ckpt_dir(const char* dir);
EXTERNC const char* dmtcp_get_ckpt_filename(void) __attribute__((weak));
EXTERNC const char* dmtcp_get_ckpt_files_subdir(void);
EXTERNC int dmtcp_should_ckpt_open_files(void);
EXTERNC int dmtcp_get_ckpt_signal(void);
EXTERNC const char* dmtcp_get_uniquepid_str(void) __attribute__((weak));
/*
* ComputationID
* ComputationID of a computation is the unique-pid of the first process of
* the computation. Even if that process dies, the rest of the computation
* retains the same computation ID.
*
* With --enable-unique-checkpoint-filenames, the ComputationID also includes
* the checkpoint generation number (starting from 1). This number is same
* for the entire computation at a given point in time. Dmtcp coordinator
* increments this number prior to sending the SUSPEND message and is sent to
* the workers as a part of the SUSPEND message.
*/
EXTERNC const char* dmtcp_get_computation_id_str(void);
EXTERNC uint64_t dmtcp_get_coordinator_timestamp(void);
EXTERNC uint32_t dmtcp_get_generation(void);
EXTERNC int dmtcp_is_running_state(void);
EXTERNC int dmtcp_is_initializing_wrappers(void);
EXTERNC int dmtcp_is_protected_fd(int fd);
EXTERNC int dmtcp_get_restart_env(char *name, char *value, int maxvaluelen);
EXTERNC int dmtcp_no_coordinator(void);
EXTERNC DmtcpUniqueProcessId dmtcp_get_uniquepid();
EXTERNC DmtcpUniqueProcessId dmtcp_get_coord_id();
EXTERNC DmtcpUniqueProcessId dmtcp_get_computation_id();
EXTERNC const char* dmtcp_get_executable_path();
EXTERNC int dmtcp_get_ptrace_fd(void);
EXTERNC int dmtcp_get_readlog_fd(void);
EXTERNC void dmtcp_block_ckpt_signal(void);
EXTERNC void dmtcp_unblock_ckpt_signal(void);
EXTERNC void *dmtcp_get_libc_dlsym_addr(void);
EXTERNC void dmtcp_close_protected_fd(int fd);
EXTERNC int dmtcp_protected_environ_fd(void);
EXTERNC pid_t dmtcp_real_to_virtual_pid(pid_t realPid) __attribute((weak));
EXTERNC pid_t dmtcp_virtual_to_real_pid(pid_t virtualPid) __attribute((weak));
EXTERNC int dmtcp_is_bq_file(const char *path)
__attribute((weak));
EXTERNC int dmtcp_bq_should_ckpt_file(const char *path, int *type)
__attribute((weak));
EXTERNC int dmtcp_bq_restore_file(const char *path, const char *savedFilePath,
int fcntlFlags, int type)
__attribute((weak));
EXTERNC int dmtcp_must_ckpt_file(const char *path)
__attribute((weak));
EXTERNC void dmtcp_get_new_file_path(const char *abspath, const char *cwd,
char *newpath)
__attribute((weak));
EXTERNC void dmtcp_prepare_wrappers(void) __attribute((weak));
#define dmtcp_process_event(e,d) \
__REPLACE_dmtcp_process_event_WITH_dmtcp_event_hook()__
// To be used by plugins
#define DMTCP_PLUGIN_DISABLE_CKPT() \
bool __dmtcp_plugin_ckpt_disabled = dmtcp_plugin_disable_ckpt()
#define DMTCP_PLUGIN_ENABLE_CKPT() \
if (__dmtcp_plugin_ckpt_disabled) dmtcp_plugin_enable_ckpt()
#define NEXT_FNC(func) \
({ \
static __typeof__(&func) _real_##func = (__typeof__(&func)) -1; \
if (_real_##func == (__typeof__(&func)) -1) { \
__typeof__(&dlsym) dlsym_fnptr; \
if (dmtcp_prepare_wrappers) dmtcp_prepare_wrappers(); \
dlsym_fnptr = (__typeof__(&dlsym)) dmtcp_get_libc_dlsym_addr(); \
_real_##func = (__typeof__(&func)) (*dlsym_fnptr) (RTLD_NEXT, #func);\
} \
_real_##func;})
#define DMTCP_NEXT_EVENT_HOOK(event, data) \
do { \
static __typeof__(&dmtcp_event_hook) fn \
= (__typeof__(&dmtcp_event_hook)) -1; \
if ((void*) fn == (void*) -1) { \
fn = NEXT_FNC(dmtcp_event_hook); \
} \
if (fn != NULL) { \
(*fn) (event, data); \
} \
} while (0)
//===================================================================
// DMTCP utilities
#ifndef DMTCP_AFTER_CHECKPOINT
// Return value of dmtcpCheckpoint
# define DMTCP_AFTER_CHECKPOINT 1
// Return value of dmtcpCheckpoint
# define DMTCP_AFTER_RESTART 2
#endif
#ifndef DMTCP_NOT_PRESENT
# define DMTCP_NOT_PRESENT 3
#endif
// C++ takes null arg, while C takes void arg.
#ifdef __cplusplus
# define VOID
#else
# define VOID void
#endif
#define dmtcp_get_ckpt_filename() \
(dmtcp_get_ckpt_filename ? dmtcp_get_ckpt_filename() : NULL)
#define dmtcp_get_uniquepid_str() \
(dmtcp_get_uniquepid_str ? dmtcp_get_uniquepid_str() : NULL)
//FIXME:
// If a plugin is not compiled with defined(__PIC__) and we can verify
// that we're using DMTCP (environment variables), and dmtcpIsEnabled
// or dmtcpCheckpoint expands to 0, then we should print a warning
// at run-time.
// These utility functions require compiling the target app with -fPIC
/**
* Returns 1 if executing under dmtcp_launch, 0 otherwise
*/
EXTERNC int dmtcp_is_enabled(VOID) __attribute ((weak));
#define dmtcp_is_enabled() (dmtcp_is_enabled ? dmtcp_is_enabled() : 0)
/**
* Checkpoint the entire distributed computation, block until checkpoint is
* complete.
* - returns DMTCP_AFTER_CHECKPOINT if the checkpoint succeeded.
* - returns DMTCP_AFTER_RESTART after a restart.
* - returns <=0 on error.
*/
EXTERNC int dmtcp_checkpoint(VOID) __attribute__ ((weak));
#define dmtcp_checkpoint() \
(dmtcp_checkpoint ? dmtcp_checkpoint() : DMTCP_NOT_PRESENT)
/**
* Prevent a checkpoint from starting until dmtcp_enable_checkpoint() is
* called.
* - Has (recursive) lock semantics, only one thread may acquire it at time.
* - Only prevents checkpoints locally, remote processes may be suspended.
* Thus, send or recv to another checkpointed process may create deadlock.
* - Returns 1 on success, <=0 on error
*/
EXTERNC int dmtcp_disable_ckpt(VOID) __attribute__ ((weak));
#define dmtcp_disable_ckpt() \
(dmtcp_disable_ckpt ? dmtcp_disable_ckpt() : DMTCP_NOT_PRESENT)
/**
* Re-allow checkpoints, opposite of dmtcp_disable_checkpoint().
* - Returns 1 on success, <=0 on error
*/
EXTERNC int dmtcp_enable_ckpt(VOID) __attribute__ ((weak));
#define dmtcp_enable_ckpt() \
(dmtcp_enable_ckpt ? dmtcp_enable_ckpt() : DMTCP_NOT_PRESENT)
/// Pointer to a "void foo();" function
typedef void (*dmtcp_fnptr_t)(void);
/**
* Sets the hook functions that DMTCP calls when it checkpoints/restarts.
* - These functions are called from the DMTCP thread while all user threads
* are suspended.
* - First preCheckpoint() is called, then either postCheckpoint() or
* postRestart() is called.
* - Set to NULL to disable.
* - Returns 1 on success, <=0 on error
*/
EXTERNC int dmtcp_install_hooks(dmtcp_fnptr_t preCheckpoint,
dmtcp_fnptr_t postCheckpoint,
dmtcp_fnptr_t postRestart)
__attribute__((weak));
#define dmtcp_install_hooks(a,b,c) \
(dmtcp_install_hooks ? dmtcp_install_hooks(a,b,c) : DMTCP_NOT_PRESENT)
/**
* Gets the coordinator-specific status of DMTCP.
* - Returns 0 on success and -1 on error.
*
* Args:
* numPeers: Number of processes connected to dmtcp_coordinator
* isRunning: 1 if all processes connected to dmtcp_coordinator are in a
* running state
*/
EXTERNC int dmtcp_get_coordinator_status(int *numPeers, int *isRunning)
__attribute__((weak));
#define dmtcp_get_coordinator_status(p,r) \
(dmtcp_get_coordinator_status ? dmtcp_get_coordinator_status(p,r) \
: DMTCP_NOT_PRESENT)
/**
* Gets the local-node-specific status of DMTCP.
* - Returns 0 on success and -1 on error.
*
* Args:
* numCheckpoints: The number of times this process has been checkpointed
* (excludes restarts)
* numRestarts: The number of times this process has been restarted
*/
EXTERNC int dmtcp_get_local_status(int *numCheckpoints, int *numRestarts)
__attribute__((weak));
#define dmtcp_get_local_status(c,r) \
(dmtcp_get_local_status ? dmtcp_get_local_status(c,r) : DMTCP_NOT_PRESENT)
#endif
|