/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: fpart/src/command.c $ */ /* */ /* OpenPOWER FFS Project */ /* */ /* Contributors Listed Below - COPYRIGHT 2014,2015 */ /* [+] International Business Machines Corp. */ /* */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ /* You may obtain a copy of the License at */ /* */ /* http://www.apache.org/licenses/LICENSE-2.0 */ /* */ /* Unless required by applicable law or agreed to in writing, software */ /* distributed under the License is distributed on an "AS IS" BASIS, */ /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */ /* implied. See the License for the specific language governing */ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ /* * File: command.c * Author: Shaun Wetzstein * Descr: generic -- wrapper * Date: 01/30/2013 */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include // --target aa: //#include // --target rw: #include "main.h" int parse_offset(const char *str, off_t *offset) { assert(offset != NULL); if (str == NULL) { *offset = 0; return 0; } char *end = NULL; errno = 0; *offset = strtoull(str, &end, 0); if (errno != 0) { ERRNO(errno); return -1; } if (*end != '\0') { if (!strcmp(end, "KiB") || !strcasecmp(end, "KB") || !strcasecmp(end, "K")) *offset <<= 10; else if (!strcmp(end, "MiB") || !strcasecmp(end, "MB") || !strcasecmp(end, "M")) *offset <<= 20; else if (!strcmp(end, "GiB") || !strcasecmp(end, "GB") || !strcasecmp(end, "G")) *offset <<= 30; else { UNEXPECTED("invalid offset specified '%s'", end); return -1; } } return 0; } int parse_size(const char *str, uint32_t *size) { assert(size != NULL); if (str == NULL) { *size = 0; return 0; } char *end = NULL; errno = 0; *size = strtoul(str, &end, 0); if (errno != 0) { ERRNO(errno); return -1; } if (*end != '\0') { if (!strcmp(end, "KiB") || !strcasecmp(end, "K") || !strcasecmp(end, "KB")) *size <<= 10; else if (!strcmp(end, "MiB") || !strcasecmp(end, "M") || !strcasecmp(end, "MB")) *size <<= 20; else if (!strcmp(end, "GiB") || !strcasecmp(end, "G") || !strcasecmp(end, "GB")) *size <<= 30; else { UNEXPECTED("invalid size specified '%s'", end); return -1; } } return 0; } int parse_number(const char *str, uint32_t *num) { assert(num != NULL); if (str == NULL) { *num = 0; return 0; } char *end = NULL; errno = 0; *num = strtoul(str, &end, 0); if (errno != 0) { ERRNO(errno); return -1; } if (*end != '\0') { UNEXPECTED("invalid number specified '%s'", end); return -1; } return 0; } bool check_extension(const char *path, const char *ext) { int len = strlen(path), ext_len = strlen(ext); return (ext_len < len) && (strncasecmp(path + len - ext_len, ext, ext_len) == 0); } int create_regular_file(const char *path, size_t size, char pad) { assert(path != NULL); int fd = open(path, O_CREAT|O_TRUNC|O_WRONLY, S_IRUSR|S_IWUSR); if (fd == -1) { ERRNO(errno); return -1; } if (ftruncate(fd, size) < 0) { ERRNO(errno); close(fd); return -1; } uint32_t page_size = sysconf(_SC_PAGESIZE); char buf[page_size]; memset(buf, pad, page_size); while (0 < size) { ssize_t rc = write(fd, buf, min(sizeof(buf), size)); if (rc <= 0) { ERRNO(errno); close(fd); return -1; } size -= rc; } close(fd); return 0; } int command(args_t * args, int (*cmd)(args_t *, off_t)) { assert(args != NULL); assert(cmd != NULL); int rc = 0; char * end = (char *)args->poffset; while (rc == 0 && end != NULL && *end != '\0') { errno = 0; off_t poffset = strtoull(end, &end, 0); if (end == NULL || errno != 0) { UNEXPECTED("invalid --partition-offset specified '%s'", args->poffset); return -1; } if (*end != ',' && *end != ':' && *end != '\0') { UNEXPECTED("invalid --partition-offset separator " "character '%c'", *end); return -1; } if (cmd != NULL) rc = cmd(args, poffset); if (*end == '\0') break; end++; } return rc; } FILE *fopen_generic(const char *path, const char *mode, int debug) { assert(path != NULL); assert(mode != NULL); FILE *file = NULL; uint32_t port = 0; if (strncasecmp(path, "aa:", 3) == 0) { if (parse_number(path + 3, &port) == 0) assert(0); //file = fopen_aaflash(port, mode, debug); } else if (strncasecmp(path, "rw:", 3) == 0) { assert(0); //file = fopen_rwflash(path + 3, mode, debug); } else { file = fopen(path, mode); } if (file == NULL) ERRNO(errno); return file; } int verify_operation(const char * name, ffs_t * in, ffs_entry_t * in_e, ffs_t * out, ffs_entry_t * out_e) { if (in->hdr->block_size != out->hdr->block_size) { UNEXPECTED("block sizes differ '%x' != '%x'", in->hdr->block_size, out->hdr->block_size); return -1; } if (in->hdr->block_count != out->hdr->block_count) { UNEXPECTED("block counts differ '%x' != '%x'", in->hdr->block_size, out->hdr->block_size); return -1; } if (in->hdr->entry_size != out->hdr->entry_size) { UNEXPECTED("entry sizes differ '%x' != '%x'", in->hdr->entry_size, out->hdr->entry_size); return -1; } if (in->hdr->entry_count != out->hdr->entry_count) { UNEXPECTED("entry counts differ '%x' != '%x'", in->hdr->entry_size, out->hdr->entry_size); return -1; } if (in_e->base != out_e->base) { UNEXPECTED("partition '%s' offsets differ '%x' != '%x'", name, in_e->base, out_e->base); return -1; } if (in_e->size != out_e->size) { UNEXPECTED("partition '%s' sizes differ '%x' != '%x'", name, in_e->size, out_e->size); return -1; } return 0; }