-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
644 changed files
with
91,045 additions
and
91,466 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
FROM ubuntu:16.04 | ||
MAINTAINER Shaobo He <[email protected]> | ||
|
||
ENV SMACKDIR /home/user/smack | ||
|
||
RUN apt-get update && \ | ||
apt-get -y install \ | ||
software-properties-common \ | ||
wget \ | ||
sudo | ||
|
||
# Borrowed from JFS | ||
# Create `user` user for container with password `user`. and give it | ||
# password-less sudo access | ||
RUN useradd -m user && \ | ||
echo user:user | chpasswd && \ | ||
cp /etc/sudoers /etc/sudoers.bak && \ | ||
echo 'user ALL=(root) NOPASSWD: ALL' >> /etc/sudoers | ||
|
||
USER user | ||
|
||
# Add the current directory to `/home/user/smack` | ||
ADD --chown=user . $SMACKDIR | ||
|
||
# Set the work directory | ||
WORKDIR $SMACKDIR | ||
|
||
# Build SMACK | ||
RUN sudo bin/build.sh | ||
|
||
# Add envinronment | ||
RUN echo "source /home/user/smack.environment" >> ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
The MIT License | ||
|
||
Copyright (c) 2008-2018 Zvonimir Rakamaric ([email protected]), | ||
Copyright (c) 2008-2019 Zvonimir Rakamaric ([email protected]), | ||
Michael Emmi ([email protected]) | ||
Modified work Copyright (c) 2013-2018 Montgomery Carter, | ||
Modified work Copyright (c) 2013-2019 Marek Baranowski, | ||
Montgomery Carter, | ||
Pantazis Deligiannis, | ||
Jack J. Garzella, | ||
Dietrich Geisler, | ||
Arvind Haran, | ||
Shaobo He, | ||
Liam Machado, | ||
Jiten Thakkar, | ||
Jonathan Whitaker | ||
|
||
|
@@ -32,25 +35,26 @@ THE SOFTWARE. | |
Copyrights and Licenses for Third Party Software Distributed with SMACK: | ||
============================================================================== | ||
SMACK contains code written by third parties. Such software will have its own | ||
individual LICENSE.TXT file in the directory in which it appears. This file | ||
individual LICENSE file in the directory in which it appears. This file | ||
will describe the copyrights, license, and restrictions which apply to that | ||
code. | ||
|
||
The following pieces of software have additional or alternate copyrights, | ||
licenses, and/or restrictions: | ||
|
||
Program Directories | ||
------- ----------- | ||
poolalloc include/assistDS | ||
Program Directories License | ||
------- ----------- ------- | ||
poolalloc include/assistDS lib/DSA/LICENSE | ||
include/dsa | ||
lib/AssistDS | ||
lib/DSA | ||
run-clang-format format format/LICENSE | ||
|
||
In addition, a binary distribution of SMACK contains at least the following | ||
tools and packages, which come with their own licenses: | ||
- LLVM, clang, LLVM runtime (http://llvm.org/) | ||
- mono (http://www.mono-project.com/) | ||
- Boogie (https://github.com/boogie-org/boogie/) | ||
- Corral (https://github.com/boogie-org/corral/) | ||
- Z3 (https://github.com/Z3Prover/z3/) | ||
- LLVM, clang, LLVM runtime (http://llvm.org) | ||
- Boogie (https://github.com/boogie-org/boogie) | ||
- Corral (https://github.com/boogie-org/corral) | ||
- lockpwn (https://github.com/smackers/lockpwn) | ||
- Z3 (https://github.com/Z3Prover/z3) | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
MONO_VERSION=5.0.0.100 | ||
Z3_SHORT_VERSION=4.8.1 | ||
Z3_FULL_VERSION=4.8.1.016872a5e0f6 | ||
BOOGIE_COMMIT=cd0609f660 | ||
CORRAL_COMMIT=d7d389f22d | ||
Z3_SHORT_VERSION=4.8.5 | ||
Z3_FULL_VERSION=4.8.5 | ||
BOOGIE_COMMIT=5c829b6340 | ||
CORRAL_COMMIT=c446f5e827 | ||
SYMBOOGLIX_COMMIT=7210e5d09b | ||
LOCKPWN_COMMIT=73eddf97bd | ||
LLVM_SHORT_VERSION=3.9 | ||
LLVM_FULL_VERSION=3.9.1 | ||
LLVM_SHORT_VERSION=4.0 | ||
LLVM_FULL_VERSION=4.0.1 | ||
RUST_VERSION=2016-12-16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.