/*- * Copyright (c) 2015 Kai Wang * All rights reserved. * * 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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. */ #include #include #include #include #include #include "_libpe.h" ELFTC_VCSID("$Id: libpe_init.c 3312 2016-01-10 09:23:51Z kaiwang27 $"); int libpe_open_object(PE *pe) { struct stat sb; mode_t mode; char magic[sizeof(PE_DosHdr)]; if (fstat(pe->pe_fd, &sb) < 0) return (-1); mode = sb.st_mode; pe->pe_fsize = (size_t) sb.st_size; /* Reject unsupported file types. */ if (!S_ISREG(mode) && !S_ISCHR(mode) && !S_ISFIFO(mode) && !S_ISSOCK(mode)) { errno = EINVAL; return (-1); } /* Read/Write mode is not supported for non-regular file. */ if (pe->pe_cmd == PE_C_RDWR && !S_ISREG(mode)) { errno = EINVAL; return (-1); } /* The minimal file should at least contain a COFF header. */ if (S_ISREG(mode) && pe->pe_fsize < sizeof(PE_CoffHdr)) { errno = ENOENT; return (-1); } /* * Search for MS-DOS header or COFF header. */ if (read(pe->pe_fd, magic, 2) != 2) { errno = EIO; return (-1); } if (magic[0] == 'M' && magic[1] == 'Z') { pe->pe_obj = PE_O_PE32; if (read(pe->pe_fd, &magic[2], sizeof(PE_DosHdr) - 2) != (ssize_t) sizeof(PE_DosHdr) - 2) { errno = EIO; return (-1); } return (libpe_parse_msdos_header(pe, magic)); } else if (magic[0] == 'P' && magic[1] == 'E') { if (read(pe->pe_fd, magic, 2) != 2) { errno = EIO; return (-1); } if (magic[0] == '\0' && magic[1] == '\0') { pe->pe_obj = PE_O_PE32; if (read(pe->pe_fd, magic, sizeof(PE_CoffHdr)) != (ssize_t) sizeof(PE_CoffHdr)) { errno = EIO; return (-1); } return (libpe_parse_coff_header(pe, magic)); } errno = ENOENT; return (-1); } else { pe->pe_obj = PE_O_COFF; if (read(pe->pe_fd, &magic[2], sizeof(PE_CoffHdr) - 2) != (ssize_t) sizeof(PE_CoffHdr) - 2) { errno = EIO; return (-1); } return (libpe_parse_coff_header(pe, magic)); } } void libpe_release_object(PE *pe) { PE_Scn *ps, *_ps; if (pe->pe_dh) free(pe->pe_dh); if (pe->pe_rh) { free(pe->pe_rh->rh_compid); free(pe->pe_rh->rh_cnt); free(pe->pe_rh); } if (pe->pe_ch) free(pe->pe_ch); if (pe->pe_oh) free(pe->pe_oh); if (pe->pe_dd) free(pe->pe_dd); if (pe->pe_stub) free(pe->pe_stub); STAILQ_FOREACH_SAFE(ps, &pe->pe_scn, ps_next, _ps) libpe_release_scn(ps); free(pe); }