A maliciously secure framework for efficient 3-party protocols tailored for neural networks. This work builds off SecureNN, ABY3 and other prior works. This work is published in Privacy Enhancing Technologies Symposium (PETS) 2021. Paper available here.
This codebase is released solely as a reference for other developers, as a proof-of-concept, and for benchmarking purposes. In particular, it has not had any security review, has a number of implementational TODOs and should be used at your own risk. You can contribute to this project by creating pull requests and submitting fixes and implementations.
-
The code should work on most Linux distributions (It has been developed and tested with Ubuntu 16.04 and 18.04).
-
Required packages for Falcon:
Install these packages with your favorite package manager, e.g,
sudo apt-get install <package-name>
.
files/
- Shared keys, IP addresses and data files.files/preload
- Contains data for pretrained network from SecureML. The other networks can be generated usingscripts
and functions insecondary.cpp
lib_eigen/
- Eigen library for faster matrix multiplication.src/
- Source code.util/
- Dependencies for AES randomness.scripts/
- Contains python code to generate trained models for accuracy testing over a batch.- The
god
script makes remote runs simpler (as well as themakefile
)
To build Falcon, run the following commands:
git clone https://github.com/snwagh/falcon-public.git Falcon
cd Falcon
make -j
To run the code, simply choose one of the following options:
-
make terminal
: Runs the 3PC code on localhost with output from$P_0$ printed to standard output. -
make file
: : Runs the 3PC code on localhost with output from$P_0$ printed to a file (inoutput/3PC.txt
) -
make valg
: Useful for debugging the code for set faults. Note that the -03 optimization flag needs to be suppressed (toggle lines 9, 10 inmakefile
) -
make command
: Enables running a specific network, dataset, adversarial model, and run type (localhost/LAN/WAN) specified through themakefile
. This takes precedence over choices in thesrc/main.cpp
file. - To run the code over tmux over multiple terminals,
make zero
,make one
, andmake two
come in handy.
Comparison with SecureNN
While a bulk of the Falcon code builds on SecureNN, it differs in two important characterastics (1) Building on replicated secret sharing (RSS) (2) Modularity of the design. The latter enables each layer to self contained in forward and backward pass (in contrast to SecureNN where layers are merged for the networks to be tested). The functions are reasonably tested (including ReLU) however they are more tested for 32-bit datatype so the 64-bit might have minor bugs.
- Remove size argument from all functions (generate it inside functions)
- Clean-up tools and functionalities file -- move reconstruction functions to tools
- Pointers to layer configurations are never deleted --> needs to be fixed
- Precompute implementation
You can cite the paper using the following bibtex entry (the paper links to this repo):
@inproceedings{wagh2021falcon,
title={FALCON: Honest-Majority Maliciously Secure Framework for Private Deep Learning},
author={Wagh, Sameer and Tople, Shruti and Benhamouda, Fabrice and Kushilevitz, Eyal and Mittal, Prateek and Rabin, Tal},
journal={Proceedings on Privacy Enhancing Technologies},
year={2021}
}
For questions, please create git issues; for eventual replies, you can also reach out to [email protected]