Skip to content

Commit 1dc2c53

Browse files
woodruffwekilmer
andauthored
Release 1.0 prep work (#113)
Co-authored-by: Eric Kilmer <[email protected]>
1 parent c5e9a09 commit 1dc2c53

File tree

15 files changed

+411
-372
lines changed

15 files changed

+411
-372
lines changed

.github/workflows/ci.yml

+64-10
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ on:
1010
- cron: '0 12 * * *'
1111

1212
jobs:
13-
test:
13+
pe-parse:
1414
strategy:
1515
matrix:
1616
platform: ["ubuntu-latest", "macos-latest"]
17+
build-type: ["Debug", "Release"]
1718
compiler:
1819
- { CC: "clang", CXX: "clang++" }
1920
- { CC: "gcc", CXX: "g++" }
@@ -23,27 +24,80 @@ jobs:
2324
runs-on: ${{ matrix.platform }}
2425
steps:
2526
- uses: actions/checkout@v2
26-
- name: Build C
27+
- name: build
2728
env:
2829
CC: ${{ matrix.compiler.CC }}
2930
CXX: ${{ matrix.compiler.CXX }}
3031
run: |
3132
mkdir build
3233
cd build
33-
cmake ..
34-
make
35-
- name: Build Python
34+
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ..
35+
cmake --build .
36+
- name: test
37+
run: |
38+
./build/dump-pe/dump-pe ./test/assets/example.exe
39+
40+
pepy:
41+
strategy:
42+
matrix:
43+
platform: ["ubuntu-latest", "macos-latest"]
44+
python:
45+
- "3.6"
46+
- "3.7"
47+
- "3.8"
48+
runs-on: ${{ matrix.platform }}
49+
steps:
50+
- uses: actions/checkout@v2
51+
- uses: actions/setup-python@v1
52+
with:
53+
python-version: ${{ matrix.python }}
54+
- name: build
3655
run: |
37-
cd python
38-
python2 setup.py build
3956
python3 setup.py build
40-
test-windows:
57+
- name: sdist and install
58+
run: |
59+
python3 setup.py sdist
60+
python3 -m pip install --user dist/*.tar.gz
61+
- name: test
62+
run: |
63+
python3 test/test_pepy.py test/assets/example.exe
64+
65+
pe-parse-windows:
66+
strategy:
67+
matrix:
68+
build-type: ["Debug", "Release"]
4169
runs-on: windows-latest
4270
steps:
4371
- uses: actions/checkout@v2
44-
- name: Build C
72+
- name: build
4573
run: |
4674
mkdir build
4775
cd build
4876
cmake -G "Visual Studio 16 2019" -A x64 ..
49-
cmake --build .
77+
cmake --build . --config ${{ matrix.build-type }}
78+
- name: test
79+
run: |
80+
.\build\dump-pe\${{ matrix.build-type }}\dump-pe.exe .\test\assets\example.exe
81+
82+
pepy-windows:
83+
strategy:
84+
matrix:
85+
python:
86+
- "3.6"
87+
- "3.7"
88+
- "3.8"
89+
runs-on: windows-latest
90+
steps:
91+
- uses: actions/checkout@v2
92+
- uses: actions/setup-python@v1
93+
with:
94+
python-version: ${{ matrix.python }}
95+
- name: build
96+
run: |
97+
python setup.py build
98+
- name: install
99+
run: |
100+
python -m pip install --user .
101+
- name: test
102+
run: |
103+
python test/test_pepy.py test/assets/example.exe

.gitignore

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Makefile
22
cmake_install.cmake
33
dump-prog/dump-prog
44
*.swp
5-
python/build
5+
build/
66
.idea
77
cmake-build-debug
88
cmake-build-release
@@ -11,4 +11,7 @@ CMakeSettings.json
1111
.vs
1212
.vscode
1313
examples_build
14-
14+
.DS_Store
15+
dist/
16+
MANIFEST
17+
*.egg-info/

LICENSE.txt LICENSE

File renamed without changes.

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include VERSION
2+
include pepy/README.md
3+
include pe-parser-library/include/parser-library/*.h

README.md

+58-27
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
pe-parse
2-
=========================================
2+
========
33

44
[![Build Status](https://img.shields.io/github/workflow/status/trailofbits/pe-parse/CI/master)](https://github.com/trailofbits/pe-parse/actions?query=workflow%3ACI)
55

6-
pe-parse is a principled, lightweight parser for windows portable executable files. It was created to assist in compiled program analysis, potentially of programs of unknown origins. This means that it should be resistant to malformed or maliciously crafted PE files, and it should support questions that analysis software would ask of an executable program container. For example, listing relocations, describing imports and exports, and supporting byte reads from virtual addresses as well as file offsets.
6+
pe-parse is a principled, lightweight parser for windows portable executable files.
7+
It was created to assist in compiled program analysis, potentially of programs of unknown origins.
8+
This means that it should be resistant to malformed or maliciously crafted PE files, and it should
9+
support questions that analysis software would ask of an executable program container.
10+
For example, listing relocations, describing imports and exports, and supporting byte reads from
11+
virtual addresses as well as file offsets.
712

813
pe-parse supports these use cases via a minimal API that provides methods for
914
* Opening and closing a PE file
@@ -15,20 +20,34 @@ pe-parse supports these use cases via a minimal API that provides methods for
1520
* Reading bytes from specified virtual addresses
1621
* Retrieving the program entry point
1722

18-
The interface is defined in `parser-library/parse.h`. The program in `dump-prog/dump.cpp` is an example of using the parser-library API to dump information about a PE file.
23+
The interface is defined in `parser-library/parse.h`.
1924

20-
Internally, the parser-library uses a bounded buffer abstraction to access information stored in the PE file. This should help in constructing a sane parser that allows for detection of the use of bogus values in the PE that would result in out of bounds accesses of the input buffer. Once data is read from the file it is sanitized and placed in C++ STL containers of internal types.
25+
The program in `dump-prog/dump.cpp` is an example of using the parser-library API to dump
26+
information about a PE file.
27+
28+
Internally, the parser-library uses a bounded buffer abstraction to access information stored in
29+
the PE file. This should help in constructing a sane parser that allows for detection of the use
30+
of bogus values in the PE that would result in out of bounds accesses of the input buffer.
31+
Once data is read from the file it is sanitized and placed in C++ STL containers of internal types.
32+
33+
pe-parse includes Python bindings via `pepy`, which can be installed via `pip`:
34+
35+
```bash
36+
$ pip3 install pepy
37+
```
38+
39+
More information about `pepy` can be found in its [README](./pepy/README.md).
40+
41+
## Dependencies
2142

22-
Dependencies
23-
========
2443
### CMake
2544
* Debian/Ubuntu: `sudo apt-get install cmake`
2645
* RedHat/Fedora: `sudo yum install cmake`
2746
* OSX: `brew install cmake`
2847
* Windows: Download the installer from the [CMake page](https://cmake.org/download/)
2948

30-
Building
31-
========
49+
## Building
50+
3251
### Generic instructions
3352
```
3453
git clone https://github.com/trailofbits/pe-parse.git
@@ -38,37 +57,48 @@ mkdir build
3857
cd build
3958
4059
cmake -DCMAKE_BUILD_TYPE=Release ..
41-
cmake --build . --config Release
60+
cmake --build .
4261
4362
# optional
44-
cmake --build . --config Release --target install
63+
cmake --build . --target install
4564
```
4665

47-
PE files that have a Resource section with strings for the Type are encoded in UTF-16, but that `std::string` expects UTF-8. Some cross-platform solution
48-
is desired. You can let cmake choose one it finds in your build environment or you can choose one from the following options yourself and specify it with
49-
the `-DUNICODE_LIBRARY` argument when generating the project files with cmake:
50-
* `icu` (preferred) - "[ICU](http://site.icu-project.org/) is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization support for software applications"
51-
* `codecvt` - A C++ library header file ([now deprecated](http://open-std.org/JTC1/SC22/WG21/docs/papers/2017/p0618r0.html)) supported by some C++ runtimes
66+
PE files that have a Resource section with strings for the Type are encoded in UTF-16, but that
67+
`std::string` expects UTF-8. Some cross-platform solution is desired.
68+
69+
You can let `cmake` choose one it finds in your build environment or you can choose one from the
70+
following options yourself and specify it with the `-DUNICODE_LIBRARY` argument when generating the
71+
project files with `cmake`:
72+
73+
* `icu` (preferred) - "[ICU](http://site.icu-project.org/) is a mature, widely used set of C/C++
74+
and Java libraries providing Unicode and Globalization support for software applications"
75+
* `codecvt` - A C++ library header file
76+
([now deprecated](http://open-std.org/JTC1/SC22/WG21/docs/papers/2017/p0618r0.html)) supported
77+
by some C++ runtimes
5278

5379
### Notes about Windows
5480

55-
If you are building on Windows with Visual Studio, the generator option can be used to select the compiler version and the output architecture:
81+
If you are building on Windows with Visual Studio, the generator option can be used to select the
82+
compiler version and the output architecture:
5683

5784
```
5885
# Compile 64-bit binaries with Visual Studio 2017
59-
cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=Release ..
86+
cmake -G "Visual Studio 15 2017 Win64" ..
6087
6188
# Compile 32-bit binaries with Visual Studio 2017
62-
cmake -G "Visual Studio 15 2017" -DCMAKE_BUILD_TYPE=Release ..
89+
cmake -G "Visual Studio 15 2017" ..
6390
```
6491

65-
Visual Studio 2015 or higher is required to use codecvt, but you also have the option of using [ICU](http://site.icu-project.org/). The easiest way to
66-
get started with ICU in Windows is with [vcpkg](https://vcpkg.readthedocs.io/): `vcpkg install icu`. Then add the
67-
`-DCMAKE_TOOLCHAIN_FILE=C:\src\vcpkg\scripts\buildsystems\vcpkg.cmake` argument when generating the project files with cmake to add the appropriate
68-
library and include directories to the project.
92+
Visual Studio 2015 or higher is required to use codecvt, but you also have the option of using
93+
[ICU](http://site.icu-project.org/). The easiest way to get started with ICU in Windows is with
94+
[vcpkg](https://vcpkg.readthedocs.io/): `vcpkg install icu`.
95+
96+
Then, add the `-DCMAKE_TOOLCHAIN_FILE=C:\src\vcpkg\scripts\buildsystems\vcpkg.cmake` argument when
97+
generating the project files with cmake to add the appropriate library and include directories to
98+
the project.
99+
100+
## Using the library
69101

70-
Using the library
71-
=======
72102
Once the library is installed, linking to it is easy! Add the following lines in your CMake project:
73103

74104
```
@@ -80,6 +110,7 @@ target_include_directories(your_target_name PRIVATE ${PEPARSE_INCLUDE_DIRS})
80110

81111
You can see a full example in the examples/peaddrconv folder.
82112

83-
Authors
84-
=======
85-
pe-parse was designed and implemented by Andrew Ruef ([email protected]), with significant contributions from [Wesley Shields](https://github.com/wxsBSD).
113+
## Authors
114+
115+
pe-parse was designed and implemented by Andrew Ruef ([email protected]), with significant
116+
contributions from [Wesley Shields](https://github.com/wxsBSD).

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.0.0-rc.2

pe-parser-library/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
cmake_minimum_required(VERSION 3.7)
22
project(pe-parser-library)
33

4+
message(STATUS "VERSION file: ${CMAKE_SOURCE_DIR}/VERSION")
5+
6+
file(READ "${CMAKE_SOURCE_DIR}/VERSION" PEPARSE_VERSION)
7+
string(STRIP "${PEPARSE_VERSION}" PEPARSE_VERSION)
8+
add_compile_definitions(PEPARSE_VERSION="${PEPARSE_VERSION}")
9+
410
set(UNICODE_LIBRARY "any" CACHE STRING "Select a unicode library")
511
set_property(CACHE UNICODE_LIBRARY PROPERTY STRINGS "any" "icu" "codecvt")
612

0 commit comments

Comments
 (0)