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 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 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 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
|
/*
* extcmd.c
*
* MontaVista IPMI IPMI LAN interface extern command handler
*
* Author: MontaVista Software, Inc.
* Corey Minyard <minyard@mvista.com>
* source@mvista.com
*
* Copyright 2012 MontaVista Software Inc.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* Lesser General Public License (GPL) Version 2 or the modified BSD
* license below. The following disclamer applies to both licenses:
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* GNU Lesser General Public Licence
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Modified BSD Licence
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*/
#include <config.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <ctype.h>
#include <string.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <OpenIPMI/lanserv.h>
#include <OpenIPMI/extcmd.h>
#ifdef HAVE_NETINET_ETHER_H
#include <netinet/ether.h>
#elif defined(HAVE_SYS_ETHERNET_H)
#include <sys/ethernet.h>
#else
#include <stdint.h>
#include <stdio.h>
struct ether_addr {
uint8_t ether_addr_octet[6];
};
static char *
ether_ntoa_r(const struct ether_addr *addr, char *buf)
{
sprintf(buf, "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x",
addr->ether_addr_octet[0],
addr->ether_addr_octet[1],
addr->ether_addr_octet[2],
addr->ether_addr_octet[3],
addr->ether_addr_octet[4],
addr->ether_addr_octet[5]);
return buf;
}
static struct ether_addr *
ether_aton_r(const char *asc, struct ether_addr *addr)
{
int rv;
unsigned int v[6], i;
rv = sscanf(asc, "%x:%x:%x:%x:%x:%x",
&v[0], &v[1], &v[2], &v[3], &v[4], &v[5]);
if (rv < 6)
return NULL;
for (i = 0; i < 6; i++) {
if (v[i] > 255)
return NULL;
}
for (i = 0; i < 6; i++)
addr->ether_addr_octet[i] = v[i];
return addr;
}
#endif
static int
extcmd_getval(void *baseloc, extcmd_info_t *t, char *val)
{
unsigned char *loc = baseloc;
char *end;
int ival;
struct in_addr iaddr;
while (isspace(*val))
val++;
loc += t->offset;
switch (t->type) {
case extcmd_ip:
if (inet_aton(val, &iaddr) == 0)
return EINVAL;
loc[3] = (iaddr.s_addr >> 24) & 0xff;
loc[2] = (iaddr.s_addr >> 16) & 0xff;
loc[1] = (iaddr.s_addr >> 8) & 0xff;
loc[0] = (iaddr.s_addr >> 0) & 0xff;
break;
case extcmd_mac:
if (ether_aton_r(val, (struct ether_addr *) loc) == 0)
return EINVAL;
break;
case extcmd_uchar:
if (*val == '\0')
return EINVAL;
if (t->map) {
char *eval = val;
unsigned int i;
while (*eval && !isspace(*eval))
eval++;
for (i = 0; t->map[i].name; i++) {
if (strncmp(t->map[i].name, val, eval - val) == 0)
break;
}
if (!t->map[i].name)
return EINVAL;
ival = t->map[i].value;
} else {
ival = strtol(val, &end, 0);
if (!isspace(*end) && (*end != '\0'))
return EINVAL;
}
*((unsigned char *) loc) = ival;
break;
case extcmd_int:
if (*val == '\0')
return EINVAL;
if (t->map) {
char *eval = val;
unsigned int i;
while (*eval && !isspace(*eval))
eval++;
for (i = 0; t->map[i].name; i++) {
if (strncmp(t->map[i].name, val, eval - val) == 0)
break;
}
if (!t->map[i].name)
return EINVAL;
ival = t->map[i].value;
} else {
ival = strtol(val, &end, 0);
if (!isspace(*end) && (*end != '\0'))
return EINVAL;
}
*((int *) loc) = ival;
break;
default:
return EINVAL;
}
return 0;
}
static char *
extcmd_setval(sys_data_t *sys, void *baseloc, extcmd_info_t *t)
{
unsigned char *loc = baseloc;
char cbuf[20]; /* Big enough to hold IP, MAC and src */
char *buf = cbuf;
struct in_addr iaddr;
loc += t->offset;
switch (t->type) {
case extcmd_ip:
iaddr.s_addr = loc[3] << 24;
iaddr.s_addr |= loc[2] << 16;
iaddr.s_addr |= loc[1] << 8;
iaddr.s_addr |= loc[0] << 0;
if (!inet_ntop(AF_INET, &iaddr, buf, sizeof(cbuf)))
return NULL;
break;
case extcmd_ident:
sprintf(buf, "%u %u", (unsigned char)loc[0], (unsigned char)loc[1]);
break;
case extcmd_mac:
if (!ether_ntoa_r((struct ether_addr *) loc, buf))
return NULL;
break;
case extcmd_uchar:
if (t->map) {
unsigned int i;
buf = NULL;
for (i = 0; t->map[i].name; i++) {
if (t->map[i].value == *((unsigned char *) loc)) {
buf = t->map[i].name;
break;
}
}
if (!buf)
return NULL;
} else {
sprintf(buf, "%u", *((unsigned char *) loc));
}
break;
case extcmd_int:
if (t->map) {
unsigned int i;
buf = NULL;
for (i = 0; t->map[i].name; i++) {
if (t->map[i].value == *((int *) loc)) {
buf = t->map[i].name;
break;
}
}
if (!buf)
return NULL;
} else {
sprintf(buf, "%d", *((int *) loc));
}
break;
default:
return NULL;
}
return sys_strdup(sys, buf);
}
static int
process_extcmd_value(void *baseloc, extcmd_info_t *t, char *buf)
{
unsigned int len = strlen(t->name);
while (buf) {
while (*buf == '\n')
buf++;
if ((strncmp(buf, t->name, len) == 0) && buf[len] == ':')
return extcmd_getval(baseloc, t, buf + len + 1);
buf = strchr(buf, '\n');
}
return EEXIST;
}
static int
add_cmd(sys_data_t *sys,
char **cmd, const char *name, char *value, int freevalue)
{
unsigned int size;
char *newcmd;
int rv = 0;
if (freevalue && !value) {
rv = EINVAL;
goto out;
}
size = strlen(name) + 1;
if (value)
size += strlen(value) + 3;
size += strlen(*cmd);
newcmd = sys->alloc(sys, size + 1);
if (!newcmd) {
rv = ENOMEM;
goto out;
}
strcpy(newcmd, *cmd);
sys->free(sys, *cmd);
strcat(newcmd, " ");
strcat(newcmd, name);
if (value) {
strcat(newcmd, " \"");
strcat(newcmd, value);
strcat(newcmd, "\"");
}
*cmd = newcmd;
out:
if (freevalue)
sys->free(sys, value);
return rv;
}
int
extcmd_getvals(sys_data_t *sys,
void *baseloc, const char *incmd, extcmd_info_t *ts,
unsigned int count)
{
int rv;
char *cmd;
FILE *f = NULL;
unsigned int i;
char buf[2048];
unsigned int buflen = sizeof(buf);
if (!incmd)
return 0;
cmd = sys->alloc(sys, strlen(incmd) + 5);
if (!cmd)
return ENOMEM;
strcpy(cmd, incmd);
strcat(cmd, " get");
for (i = 0; i < count; i++) {
rv = add_cmd(sys, &cmd, ts[i].name, NULL, 0);
if (rv) {
sys->log(sys, OS_ERROR, NULL,
"Out of memory in extcmd read command\n");
goto out;
}
}
f = popen(cmd, "r");
if (!f) {
sys->log(sys, OS_ERROR, NULL,
"Unable to execute extcmd read command (%s): %s\n",
cmd, strerror(errno));
rv = errno;
goto out;
}
rv = fread(buf, 1, buflen - 1, f);
if ((unsigned int) rv == buflen - 1) {
sys->log(sys, OS_ERROR, NULL,
"Output of extcmd config read command (%s) is too big", cmd);
rv = EINVAL;
goto out;
}
buf[rv] = '\0';
rv = pclose(f);
f = NULL;
if (rv) {
sys->log(sys, OS_ERROR, NULL,
"extcmd read command (%s) failed: %x: %s", cmd, rv, buf);
goto out;
}
for (i = 0; i < count; i++) {
rv = process_extcmd_value(baseloc, ts + i, buf);
if (rv) {
sys->log(sys, OS_ERROR, NULL,
"Setting extern command value of %s failed: %s",
ts[i].name, strerror(rv));
goto out;
}
}
out:
if (f)
pclose(f);
sys->free(sys, cmd);
return rv;
}
int
extcmd_setvals(sys_data_t *sys,
void *baseloc, const char *incmd, extcmd_info_t *ts,
unsigned char *setit, unsigned int count)
{
int rv = 0;
char *cmd;
FILE *f = NULL;
unsigned int i;
char buf[2048];
unsigned int buflen = sizeof(buf);
int oneset = 0;
if (!incmd)
return 0;
cmd = sys->alloc(sys, strlen(incmd) + 5);
if (!cmd)
return ENOMEM;
strcpy(cmd, incmd);
strcat(cmd, " set");
for (i = 0; i < count; i++) {
if (setit && !setit[i])
continue;
oneset = 1;
rv = add_cmd(sys, &cmd, ts[i].name,
extcmd_setval(sys, baseloc, ts + i), 1);
if (rv) {
sys->log(sys, OS_ERROR, NULL,
"Out of memory in extcmd write command (%d) %s\n",
rv, strerror(rv));
goto out;
}
}
if (!oneset)
goto out;
f = popen(cmd, "r");
if (!f) {
sys->log(sys, OS_ERROR, NULL,
"Unable to execute extcmd write command (%s): %s\n",
cmd, strerror(errno));
rv = errno;
goto out;
}
rv = fread(buf, 1, buflen - 1, f);
if ((unsigned int) rv == buflen - 1) {
sys->log(sys, OS_ERROR, NULL,
"Output of extcmd config write command (%s) is too big", cmd);
rv = EINVAL;
goto out;
}
buf[rv] = '\0';
rv = pclose(f);
f = NULL;
if (rv) {
sys->log(sys, OS_ERROR, NULL,
"extcmd write command (%s) failed: %x: %s", cmd, rv, buf);
goto out;
}
out:
if (f)
pclose(f);
sys->free(sys, cmd);
return rv;
}
int
extcmd_checkvals(sys_data_t *sys,
void *baseloc, const char *incmd, extcmd_info_t *ts,
unsigned int count)
{
int rv = 0;
char *cmd;
FILE *f = NULL;
unsigned int i;
char buf[2048];
unsigned int buflen = sizeof(buf);
if (!incmd)
return 0;
cmd = sys->alloc(sys, strlen(incmd) + 7);
if (!cmd)
return ENOMEM;
strcpy(cmd, incmd);
strcat(cmd, " check");
for (i = 0; i < count; i++) {
rv = add_cmd(sys, &cmd, ts[i].name,
extcmd_setval(sys, baseloc, ts + i), 1);
if (rv == ENOMEM) {
sys->log(sys, OS_ERROR, NULL,
"Out of memory in extcmd check command\n");
goto out;
} else if (rv) {
sys->log(sys, OS_ERROR, NULL,
"Invalid value in extcmd check command for %s\n",
ts[i].name);
goto out;
}
}
f = popen(cmd, "r");
if (!f) {
sys->log(sys, OS_ERROR, NULL,
"Unable to execute extcmd check command (%s): %s\n",
cmd, strerror(errno));
rv = errno;
goto out;
}
rv = fread(buf, 1, buflen - 1, f);
if ((unsigned int) rv == buflen - 1) {
sys->log(sys, OS_ERROR, NULL,
"Output of extcmd config check command (%s) is too big", cmd);
rv = EINVAL;
goto out;
}
buf[rv] = '\0';
/* Return value should tell us if it's ok. */
rv = pclose(f);
f = NULL;
out:
if (f)
pclose(f);
sys->free(sys, cmd);
return rv;
}
|