| /*****************************************************************************\ |
| * update_node.c - node update function for scontrol. |
| ***************************************************************************** |
| * Copyright (C) 2002-2007 The Regents of the University of California. |
| * Copyright (C) 2008-2010 Lawrence Livermore National Security. |
| * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). |
| * Written by Morris Jette <jette1@llnl.gov> |
| * CODE-OCEC-09-009. All rights reserved. |
| * |
| * This file is part of SLURM, a resource management program. |
| * For details, see <http://www.schedmd.com/slurmdocs/>. |
| * 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. |
| \*****************************************************************************/ |
| |
| #include "scontrol.h" |
| #include "src/common/uid.h" |
| |
| /* |
| * scontrol_update_node - update the slurm node configuration per the supplied |
| * arguments |
| * IN argc - count of arguments |
| * IN argv - list of arguments |
| * RET 0 if no slurm error, errno otherwise. parsing error prints |
| * error message and returns 0 |
| */ |
| extern int |
| scontrol_update_node (int argc, char *argv[]) |
| { |
| int i, j, k, rc = 0, update_cnt = 0; |
| |
| uint16_t state_val; |
| update_node_msg_t node_msg; |
| char *reason_str = NULL; |
| char *tag, *val; |
| int tag_len, val_len; |
| |
| slurm_init_update_node_msg(&node_msg); |
| for (i=0; i<argc; i++) { |
| tag = argv[i]; |
| val = strchr(argv[i], '='); |
| if (val) { |
| tag_len = val - argv[i]; |
| val++; |
| val_len = strlen(val); |
| } else { |
| exit_code = 1; |
| error("Invalid input: %s Request aborted", argv[i]); |
| return -1; |
| } |
| |
| if (strncasecmp(tag, "NodeAddr", MAX(tag_len, 5)) == 0) { |
| node_msg.node_addr = val; |
| update_cnt++; |
| } else if (strncasecmp(tag, "NodeHostName", MAX(tag_len, 5)) |
| == 0) { |
| node_msg.node_hostname = val; |
| update_cnt++; |
| } else if (strncasecmp(tag, "NodeName", MAX(tag_len, 1)) == 0) { |
| node_msg.node_names = val; |
| } else if (strncasecmp(tag, "Features", MAX(tag_len, 1)) == 0) { |
| node_msg.features = val; |
| update_cnt++; |
| } else if (strncasecmp(tag, "Gres", MAX(tag_len, 1)) == 0) { |
| node_msg.gres = val; |
| update_cnt++; |
| } else if (strncasecmp(tag, "Weight", MAX(tag_len,1)) == 0) { |
| /* Logic borrowed from function _handle_uint32 */ |
| char *endptr; |
| unsigned long num; |
| errno = 0; |
| num = strtoul(val, &endptr, 0); |
| if ((endptr[0] == 'k') || (endptr[0] == 'K')) { |
| num *= 1024; |
| endptr++; |
| } |
| if ((num == 0 && errno == EINVAL) |
| || (*endptr != '\0')) { |
| if ((strcasecmp(val, "UNLIMITED") == 0) || |
| (strcasecmp(val, "INFINITE") == 0)) { |
| num = (uint32_t) INFINITE; |
| } else { |
| error("Weight value (%s) is not a " |
| "valid number", val); |
| break; |
| } |
| } else if (errno == ERANGE) { |
| error("Weight value (%s) is out of range", |
| val); |
| break; |
| } else if (val[0] == '-') { |
| error("Weight value (%s) is less than zero", |
| val); |
| break; |
| } else if (num > 0xfffffff0) { |
| error("Weight value (%s) is greater than %u", |
| val, 0xfffffff0); |
| break; |
| } |
| node_msg.weight = num; |
| update_cnt++; |
| } else if (strncasecmp(tag, "Reason", MAX(tag_len, 1)) == 0) { |
| int len = strlen(val); |
| reason_str = xmalloc(len+1); |
| if (*val == '"') |
| strcpy(reason_str, val+1); |
| else |
| strcpy(reason_str, val); |
| |
| len = strlen(reason_str) - 1; |
| if ((len >= 0) && (reason_str[len] == '"')) |
| reason_str[len] = '\0'; |
| |
| node_msg.reason = reason_str; |
| if ((getlogin() == NULL) || |
| (uid_from_string(getlogin(), |
| &node_msg.reason_uid) < 0)) { |
| node_msg.reason_uid = getuid(); |
| } |
| update_cnt++; |
| } |
| else if (strncasecmp(tag, "State", MAX(tag_len, 1)) == 0) { |
| if (cluster_flags & CLUSTER_FLAG_CRAYXT) { |
| fprintf (stderr, "%s can not be changed through" |
| " SLURM. Use native Cray tools such as" |
| " xtprocadmin(8)\n", argv[i]); |
| fprintf (stderr, "Request aborted\n"); |
| exit_code = 1; |
| goto done; |
| } |
| if (strncasecmp(val, "NoResp", |
| MAX(val_len, 3)) == 0) { |
| node_msg.node_state = NODE_STATE_NO_RESPOND; |
| update_cnt++; |
| } else if (strncasecmp(val, "DRAIN", |
| MAX(val_len, 3)) == 0) { |
| node_msg.node_state = NODE_STATE_DRAIN; |
| update_cnt++; |
| } else if (strncasecmp(val, "FAIL", |
| MAX(val_len, 3)) == 0) { |
| node_msg.node_state = NODE_STATE_FAIL; |
| update_cnt++; |
| } else if (strncasecmp(val, "FUTURE", |
| MAX(val_len, 3)) == 0) { |
| node_msg.node_state = NODE_STATE_FUTURE; |
| update_cnt++; |
| } else if (strncasecmp(val, "RESUME", |
| MAX(val_len, 3)) == 0) { |
| node_msg.node_state = NODE_RESUME; |
| update_cnt++; |
| } else if (strncasecmp(val, "POWER_DOWN", |
| MAX(val_len, 7)) == 0) { |
| node_msg.node_state = NODE_STATE_POWER_SAVE; |
| update_cnt++; |
| } else if (strncasecmp(val, "POWER_UP", |
| MAX(val_len, 7)) == 0) { |
| node_msg.node_state = NODE_STATE_POWER_UP; |
| update_cnt++; |
| } else { |
| state_val = (uint16_t) NO_VAL; |
| for (j = 0; j < NODE_STATE_END; j++) { |
| if (strncasecmp (node_state_string(j), |
| val, |
| MAX(val_len, 3)) == 0){ |
| state_val = (uint16_t) j; |
| break; |
| } |
| } |
| if (j == NODE_STATE_END) { |
| exit_code = 1; |
| fprintf(stderr, "Invalid input: %s\n", |
| argv[i]); |
| fprintf (stderr, "Request aborted\n"); |
| fprintf (stderr, "Valid states are: "); |
| fprintf (stderr, |
| "NoResp DRAIN FAIL RESUME " |
| "POWER_DOWN POWER_UP "); |
| for (k = 0; k < NODE_STATE_END; k++) { |
| fprintf (stderr, "%s ", |
| node_state_string(k)); |
| } |
| fprintf (stderr, "\n"); |
| fprintf (stderr, |
| "Not all states are valid " |
| "given a node's prior " |
| "state\n"); |
| goto done; |
| } |
| node_msg.node_state = state_val; |
| update_cnt++; |
| } |
| } else { |
| exit_code = 1; |
| fprintf (stderr, "Update of this parameter is not " |
| "supported: %s\n", argv[i]); |
| fprintf (stderr, "Request aborted\n"); |
| goto done; |
| } |
| } |
| |
| if (((node_msg.node_state == NODE_STATE_DRAIN) || |
| (node_msg.node_state == NODE_STATE_FAIL)) && |
| ((node_msg.reason == NULL) || (strlen(node_msg.reason) == 0))) { |
| fprintf (stderr, "You must specify a reason when DRAINING a " |
| "node\nRequest aborted\n"); |
| goto done; |
| } |
| |
| if (update_cnt == 0) { |
| exit_code = 1; |
| fprintf (stderr, "No changes specified\n"); |
| return 0; |
| } |
| |
| rc = slurm_update_node(&node_msg); |
| |
| done: xfree(reason_str); |
| if (rc) { |
| exit_code = 1; |
| return slurm_get_errno (); |
| } else |
| return 0; |
| } |
| |
| /* |
| * scontrol_update_front_end - update the slurm front_end node configuration |
| * per the supplied arguments |
| * IN argc - count of arguments |
| * IN argv - list of arguments |
| * RET 0 if no slurm error, errno otherwise. parsing error prints |
| * error message and returns 0 |
| */ |
| extern int |
| scontrol_update_front_end (int argc, char *argv[]) |
| { |
| int i, rc = 0, update_cnt = 0; |
| update_front_end_msg_t front_end_msg; |
| char *reason_str = NULL; |
| char *tag, *val; |
| int tag_len, val_len; |
| |
| slurm_init_update_front_end_msg(&front_end_msg); |
| for (i=0; i<argc; i++) { |
| tag = argv[i]; |
| val = strchr(argv[i], '='); |
| if (val) { |
| tag_len = val - argv[i]; |
| val++; |
| val_len = strlen(val); |
| } else { |
| exit_code = 1; |
| error("Invalid input: %s Request aborted", argv[i]); |
| return -1; |
| } |
| if (strncasecmp(tag, "FrontendName", MAX(tag_len, 1)) == 0) |
| front_end_msg.name = val; |
| else if (strncasecmp(tag, "Reason", MAX(tag_len, 1)) == 0) { |
| int len = strlen(val); |
| reason_str = xmalloc(len+1); |
| if (*val == '"') |
| strcpy(reason_str, val+1); |
| else |
| strcpy(reason_str, val); |
| |
| len = strlen(reason_str) - 1; |
| if ((len >= 0) && (reason_str[len] == '"')) |
| reason_str[len] = '\0'; |
| |
| front_end_msg.reason = reason_str; |
| if ((getlogin() == NULL) || |
| (uid_from_string(getlogin(), |
| &front_end_msg.reason_uid) < 0)) { |
| front_end_msg.reason_uid = getuid(); |
| } |
| update_cnt++; |
| } |
| else if (strncasecmp(tag, "State", MAX(tag_len, 1)) == 0) { |
| if (strncasecmp(val, "DRAIN", |
| MAX(val_len, 3)) == 0) { |
| front_end_msg.node_state = NODE_STATE_DRAIN; |
| update_cnt++; |
| } else if (strncasecmp(val, "DOWN", |
| MAX(val_len, 3)) == 0) { |
| front_end_msg.node_state = NODE_STATE_DOWN; |
| update_cnt++; |
| } else if (strncasecmp(val, "RESUME", |
| MAX(val_len, 3)) == 0) { |
| front_end_msg.node_state = NODE_RESUME; |
| update_cnt++; |
| } else { |
| exit_code = 1; |
| fprintf(stderr, |
| "Invalid input: %s\n" |
| "Request aborted\n" |
| "Valid states are: DRAIN RESUME\n", |
| argv[i]); |
| goto done; |
| } |
| } else { |
| exit_code = 1; |
| fprintf(stderr, "Update of this parameter is not " |
| "supported: %s\n", argv[i]); |
| fprintf(stderr, "Request aborted\n"); |
| goto done; |
| } |
| } |
| |
| if ((front_end_msg.node_state == NODE_STATE_DOWN) && |
| ((front_end_msg.reason == NULL) || |
| (strlen(front_end_msg.reason) == 0))) { |
| fprintf (stderr, "You must specify a reason when DOWNING a " |
| "frontend node\nRequest aborted\n"); |
| goto done; |
| } |
| if ((front_end_msg.node_state == NODE_STATE_DRAIN) && |
| ((front_end_msg.reason == NULL) || |
| (strlen(front_end_msg.reason) == 0))) { |
| fprintf (stderr, "You must specify a reason when DRAINING a " |
| "frontend node\nRequest aborted\n"); |
| goto done; |
| } |
| |
| if (update_cnt == 0) { |
| exit_code = 1; |
| fprintf(stderr, "No changes specified\n"); |
| return 0; |
| } |
| |
| rc = slurm_update_front_end(&front_end_msg); |
| |
| done: xfree(reason_str); |
| if (rc) { |
| exit_code = 1; |
| return slurm_get_errno (); |
| } else |
| return 0; |
| } |