This branch contains the new generation of the SWAN framework.
The SWAN version described in our ESEC/FSE 2020 paper is located on this branch. This paper no longer represents the current state of SWAN because we have redesigned it entirely.
SWAN is a static program analysis framework that enables deep dataflow analysis for Swift applications (incl. iOS/macOS). Its applications include finding API misuses using typestate analysis and detecting security vulnerabilities using taint analysis.
We aim to provide developers and researchers with an easy-to-use and well-documented platform for analyzing Swift applications.
🚧 SWAN is very much WIP. It is an academic project created by the Maple Lab at the University of Alberta. Please feel free to file an issue if you have any questions or problems.
- Wrappers for
xcodebuild
andswiftc
that build and dump SIL - SIL parser (estimated 99% coverage, up to 100k lines/second)
- Well documented intermediate representation (IR), called SWIRL
- Ability to write models for black-box functions with SWIRL
- Partial language and Swift Standard Library models
- Modular IR translation pipeline (for integration with other engines)
- Development tool for viewing Swift, SIL, and SWIRL side-by-side
- Optimizations: multi-threaded module processing (also working on caching and selective parsing)
- Cross-module analysis support (i.e. library analysis)
- Synchronized Pushdown Systems (SPDS) integration for quick pointer analysis queries
- A suite of call graph construction algorithms that handle dynamic dispatch and function pointers (we adapted adapted CHA, VTA, and our own algorithm called UCG)
- Configurable taint analysis using JSON configuration files
- Configurable typestate analysis using JSON configuration files or programmable typestate analysis for more robust analyses
- Analysis for Visits Location Service and Standard Location Service for finding energy inefficient configuration
- Analysis for finding crypto API misuses in apps using the CryptoSwift library
- Annotation checker for regression testing
- SWIRL
- SIL To SWIRL Spec
- IDE Configuration
- Writing Analyses
- Detecting Inefficient Location API Configurations
For now, you will need to build the framework to use SWAN.
We have tested SWAN on macOS Big Sur with Xcode 13 and Ubuntu 20.04 with Swift 5.4. You need Xcode Command Line Tools installed for macOS, or the latest Swift release for Linux (see this). Anything involving Xcode will not work on Linux, but you should be able to build Swift Package Manager projects. You also need Java 8.
git clone https://github.com/themaplelab/swan.git -b spds
In jvm/gradle.properties
, set USER
to your GitHub username and Password
to a personal access token (with read:packages). The SPDS dependency requires this. Do not push these credentials. Run git update-index --assume-unchanged jvm/gradle.properties
to avoid committing these credentials.
Create a symbolic link for swift-demangle
in /usr/local/bin/
or add it to $PATH
. On Linux, swift-demangle
is distributed alongside swiftc
, so you do not need to do this step. You also need swiftc
and xcodebuild
to be on $PATH
.
sudo ln -s /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-demangle /usr/local/bin/swift-demangle
Run build.sh
in the repo root. You can also run the nested build.sh
scripts from root to build separate toolchain components.
All toolchain components should now be available in lib/
. If you want to make sure everything works, you can run ./gradlew build
in jvm/
and ./test.bash
in tests/
.
SWAN's toolchain uses a three-step process:
- Build the Swift application and dump SIL to a directory
- Analyze the SIL in the directory
- Process analysis results
You can dump SIL for Xcode projects with swan-xcodebuild
. Give it the same arguments you give xcodebuild
, but put them after --
(swan-xcodebuild
specific arguments go before --
). If you specify a single architecture with -arch
, the build time will be faster and swan-xcodebuild
will have less output to parse.
It will build your project and then dump the SIL to the swan-dir/
directory. You can optionally specify an alternative directory name with --swan-dir
.
swan-xcodebuild -- -project MyProject.xcodeproj -scheme MyScheme -arch arm64
The same idea applies for swan-swiftc
, which dumps SIL for single .swift
files, and you only need to specify the Swift file.
swan-swiftc -- MyFile.swift
To build your project with (swan-)xcodebuild
you need an .xcodeproj
. If your project uses the Swift Package Manager (SPM), you will need to generate a .xcodeproj
for your project, which you can do with swift package generate-xcodeproj
. If you use CocoaPods, make sure to use -workspace
instead of -project
. You can also look into adding XcodeGen to your project to generate the .xcodeproj
. If you are unsure what schemes or targets you can build, you can use -list
.
Use driver.jar
to analyze the SIL in the swan-dir/
. You can use -h
to view the driver options.
You can learn about how to write analysis for SWAN here. Use -t
to give the driver a taint analysis specification. Use -e
to give the driver a typestate specification. You can view some example specifications in specifications/
.
The driver writes analysis results to swan-dir/*-results.json
.
Annotations
You can annotate the source code and verify the results are correct automatically with annotation.jar
.
Taint analysis example:
let sourced = source(); //!testing!source
sink(sunk: sourced); //!testing!sink
Typestate analysis example:
let f = File()
f.open() //?FileOpenClose?error
Once you run the driver, you can run the following to check the annotations against the results.
java -jar annotation.jar swan-dir/
This is intended for automatic regression testing. You can take a look inside tests/
to get a better idea of how annotation testing works. tests/README.md
contains more information about testing.
Open jvm/
in IntelliJ. Be sure to select Import as Gradle Project.
Install the Scala plugin (Preferences -> Plugins, Search for Scala).
See IDE Configuration if you would like to configure syntax highlighting for SWIRL and SIL.
You can use the Playground run configurations to debug specific Swift, SIL, and SWIRL cases. Just paste the code in question to the appropriate playground.*
in jvm/resources/playground/
.