| /*****************************************************************************\ |
| * jobacct_common.h - common functions for almost all jobacct plugins. |
| ***************************************************************************** |
| * |
| * Copyright (C) 2005 Hewlett-Packard Development Company, L.P. |
| * Written by Danny Auble, <da@llnl.gov> |
| * CODE-OCEC-09-009. All rights reserved. |
| * |
| * This file is part of SLURM, a resource management program. |
| * For details, see <https://computing.llnl.gov/linux/slurm/>. |
| * Please also read the included file: DISCLAIMER. |
| * |
| * 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. |
| * |
| * This file is patterned after jobcomp_linux.c, written by Morris Jette and |
| * Copyright (C) 2002 The Regents of the University of California. |
| \*****************************************************************************/ |
| |
| #ifndef _HAVE_JOBACCT_COMMON_H |
| #define _HAVE_JOBACCT_COMMON_H |
| |
| #ifdef HAVE_CONFIG_H |
| # include "config.h" |
| #endif |
| |
| #if HAVE_STDINT_H |
| # include <stdint.h> |
| #endif |
| #if HAVE_INTTYPES_H |
| # include <inttypes.h> |
| #endif |
| |
| #include <dirent.h> |
| #include <sys/stat.h> |
| |
| #include "src/common/xmalloc.h" |
| #include "src/common/list.h" |
| #include "src/common/xstring.h" |
| #include "src/common/node_select.h" |
| |
| |
| #include <ctype.h> |
| |
| #define BUFFER_SIZE 4096 |
| #define FDUMP_FLAG 0x04 |
| |
| typedef struct { |
| uint16_t taskid; /* contains which task number it was on */ |
| uint32_t nodeid; /* contains which node number it was on */ |
| } jobacct_id_t; |
| |
| typedef struct { |
| uint32_t max_vsize; |
| jobacct_id_t max_vsize_id; |
| double ave_vsize; |
| uint32_t max_rss; |
| jobacct_id_t max_rss_id; |
| double ave_rss; |
| uint32_t max_pages; |
| jobacct_id_t max_pages_id; |
| double ave_pages; |
| uint32_t min_cpu; |
| jobacct_id_t min_cpu_id; |
| double ave_cpu; |
| } sacct_t; |
| |
| typedef struct { |
| uint32_t alloc_cpus; |
| uint32_t alloc_nodes; |
| char *account; |
| uint32_t associd; |
| char *blockid; |
| char *cluster; |
| uint32_t elapsed; |
| time_t eligible; |
| time_t end; |
| int32_t exitcode; |
| void *first_step_ptr; /* this pointer to a jobacct_step_rec_t |
| is set up on the |
| client side so does not need to |
| be packed */ |
| uint32_t gid; |
| uint32_t jobid; |
| char *jobname; |
| uint32_t lft; |
| char *partition; |
| char *nodes; |
| uint32_t priority; |
| uint16_t qos; |
| uint32_t req_cpus; |
| uint32_t requid; |
| uint32_t resvid; |
| sacct_t sacct; |
| uint32_t show_full; |
| time_t start; |
| enum job_states state; |
| List steps; /* list of jobacct_step_rec_t *'s */ |
| time_t submit; |
| uint32_t suspended; |
| uint32_t sys_cpu_sec; |
| uint32_t sys_cpu_usec; |
| uint32_t timelimit; |
| uint32_t tot_cpu_sec; |
| uint32_t tot_cpu_usec; |
| uint16_t track_steps; |
| uint32_t uid; |
| char *user; |
| uint32_t user_cpu_sec; |
| uint32_t user_cpu_usec; |
| char *wckey; |
| uint32_t wckeyid; |
| } jobacct_job_rec_t; |
| |
| typedef struct { |
| uint32_t elapsed; |
| time_t end; |
| int32_t exitcode; |
| jobacct_job_rec_t *job_ptr; /* this pointer is set up on the |
| client side so does not need to |
| be packed */ |
| uint32_t ncpus; |
| uint32_t nnodes; |
| char *nodes; |
| uint32_t ntasks; |
| uint32_t requid; |
| sacct_t sacct; |
| time_t start; |
| enum job_states state; |
| uint32_t stepid; /* job's step number */ |
| char *stepname; |
| uint32_t suspended; |
| uint32_t sys_cpu_sec; |
| uint32_t sys_cpu_usec; |
| uint16_t task_dist; |
| uint32_t tot_cpu_sec; |
| uint32_t tot_cpu_usec; |
| uint32_t user_cpu_sec; |
| uint32_t user_cpu_usec; |
| } jobacct_step_rec_t; |
| |
| typedef struct selected_step_t { |
| uint32_t jobid; |
| uint32_t stepid; |
| } jobacct_selected_step_t; |
| |
| struct jobacctinfo { |
| pid_t pid; |
| uint32_t sys_cpu_sec; |
| uint32_t sys_cpu_usec; |
| uint32_t user_cpu_sec; |
| uint32_t user_cpu_usec; |
| uint32_t max_vsize; /* max size of virtual memory */ |
| jobacct_id_t max_vsize_id; /* contains which task number it was on */ |
| uint32_t tot_vsize; /* total virtual memory |
| (used to figure out ave later) */ |
| uint32_t max_rss; /* max Resident Set Size */ |
| jobacct_id_t max_rss_id; /* contains which task it was on */ |
| uint32_t tot_rss; /* total rss |
| (used to figure out ave later) */ |
| uint32_t max_pages; /* max pages */ |
| jobacct_id_t max_pages_id; /* contains which task it was on */ |
| uint32_t tot_pages; /* total pages |
| (used to figure out ave later) */ |
| uint32_t min_cpu; /* min cpu time */ |
| jobacct_id_t min_cpu_id; /* contains which task it was on */ |
| uint32_t tot_cpu; /* total cpu time |
| (used to figure out ave later) */ |
| }; |
| |
| /* Define jobacctinfo_t below to avoid including extraneous slurm headers */ |
| #ifndef __jobacctinfo_t_defined |
| # define __jobacctinfo_t_defined |
| typedef struct jobacctinfo jobacctinfo_t; /* opaque data type */ |
| #endif |
| |
| extern jobacct_step_rec_t *create_jobacct_step_rec(); |
| extern jobacct_job_rec_t *create_jobacct_job_rec(); |
| extern void free_jobacct_header(void *object); |
| extern void destroy_jobacct_job_rec(void *object); |
| extern void destroy_jobacct_step_rec(void *object); |
| extern void destroy_jobacct_selected_step(void *object); |
| |
| extern void pack_jobacct_job_rec(void *object, |
| uint16_t rpc_version, Buf buffer); |
| extern int unpack_jobacct_job_rec(void **object, uint16_t rpc_version, |
| Buf buffer); |
| |
| extern void pack_jobacct_step_rec(jobacct_step_rec_t *step, |
| uint16_t rpc_version, Buf buffer); |
| extern int unpack_jobacct_step_rec(jobacct_step_rec_t **step, |
| uint16_t rpc_version, Buf buffer); |
| |
| extern void pack_jobacct_selected_step(jobacct_selected_step_t *step, |
| uint16_t rpc_version, Buf buffer); |
| extern int unpack_jobacct_selected_step(jobacct_selected_step_t **step, |
| uint16_t rpc_version, Buf buffer); |
| |
| /* These should only be called from the jobacct-gather plugin */ |
| extern int jobacct_common_init_struct(struct jobacctinfo *jobacct, |
| jobacct_id_t *jobacct_id); |
| extern struct jobacctinfo *jobacct_common_alloc_jobacct( |
| jobacct_id_t *jobacct_id); |
| extern void jobacct_common_free_jobacct(void *object); |
| extern int jobacct_common_setinfo(struct jobacctinfo *jobacct, |
| enum jobacct_data_type type, void *data); |
| extern int jobacct_common_getinfo(struct jobacctinfo *jobacct, |
| enum jobacct_data_type type, void *data); |
| extern void jobacct_common_aggregate(struct jobacctinfo *dest, |
| struct jobacctinfo *from); |
| extern void jobacct_common_2_sacct(sacct_t *sacct, |
| struct jobacctinfo *jobacct); |
| extern void jobacct_common_pack(struct jobacctinfo *jobacct, |
| uint16_t rpc_version, Buf buffer); |
| extern int jobacct_common_unpack(struct jobacctinfo **jobacct, |
| uint16_t rpc_version, Buf buffer); |
| |
| extern int jobacct_common_set_mem_limit(uint32_t job_id, uint32_t mem_limit); |
| extern int jobacct_common_add_task(pid_t pid, jobacct_id_t *jobacct_id, |
| List task_list); |
| extern struct jobacctinfo *jobacct_common_stat_task(pid_t pid, List task_list); |
| extern struct jobacctinfo *jobacct_common_remove_task(pid_t pid, |
| List task_list); |
| /***************************************************************/ |
| |
| |
| /* defined in common_jobacct.c */ |
| extern pthread_mutex_t jobacct_lock; |
| extern uint32_t jobacct_job_id; |
| extern uint32_t jobacct_mem_limit; /* job's memory limit in KB */ |
| |
| #endif |