CloudExec is a management tool for running computation jobs on DigitalOcean via the command line. It is general purpose; Cloudexec can set up the server with arbitrary dependencies and then run an arbitrary workload process, but it is designed to run a single long-running code analysis job such as a fuzz testing or mutation testing campaign. Output data and runtime logs are uploaded to DigitalOcean's S3-style object storage for later analysis and, when the job is complete, the server is automatically destroyed. The client-side management engine of CloudExec is written in Golang and the server itself is managed by a Bash script.
Features:
- 1Password CLI support for secure DigitalOcean API key management. CloudExec will help you configure these credentials and verify that they are valid.
- Launch config file allows specification of:
- An input folder which is uploaded to the runtime server and also to DigitalOcean's S3-style object storage for later reference. This folder is zipped for speedy uploads.
- A job name, providing human-readable tags for each job.
- A timeout, after which the workload process will be terminated if it hasn't finished already, output will be uploaded to persistent storage, and the server will be destroyed so you will stop being charged for it.
- A setup command which uses bash to install dependencies and prepare the server to run the workload process.
- A run command which will kick off the workload process
- An
initsubcommand for creating a new, default launch config file - Output is periodically uploaded to DigitalOcean's S3-style object storage so you can pull results incrementally from a running job
- Jobs can be cancelled early if the workload process hasn't completed or the timeout hasn't been reached yet
- Monitoring the runtime logs of a specific job or the status of all jobs
- Automatic
ssh_configadditions allowing you to access a running server by executingssh cloudexec - Tracks the cumulative costs incurred for running processes and the total cost of completed processes
Run cloudexec help to list available subcommands or cloudexec <subcommand> --help for information regarding a specific subcommand:
$ cloudexec help
NAME:
cloudexec - easily run cloud based jobs
USAGE:
cloudexec [global options] command [command options] [arguments...]
COMMANDS:
check, c Verifies cloud authentication
configure Configure credentials
init Create a new cloudexec.toml launch configuration in the current directory
launch, l Launch a droplet and start a job
logs Stream logs from a running job
cancel Cancels any running cloudexec jobs
clean Cleans up any running cloudexec droplets and clears the spaces bucket
pull Pulls down the results of the latest successful job
status, s Get status of running jobs
state Manage state file
attach, a Attach to a running job
version, v Gets the version of the app
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--help, -h show help
Example job status output:
$ cloudexec status --all
+--------+----------------+-----------+----------------+---------+------+-------+---------------------+---------------------+--------------+-------------+------------+
| JOB ID | JOB NAME | STATUS | DROPLET IP | MEMORY | CPUS | DISK | STARTED AT | UPDATED AT | TIME ELAPSED | HOURLY COST | TOTAL COST |
+--------+----------------+-----------+----------------+---------+------+-------+---------------------+---------------------+--------------+-------------+------------+
| 1 | medusa fuzz | completed | 12.34.56.78 | 4096 MB | 4 | 50 GB | 2024-01-01 13:55:53 | 2024-01-02 14:05:29 | 2 days | $0.125 | $6.0100 |
+--------+----------------+-----------+----------------+---------+------+-------+---------------------+---------------------+--------------+-------------+------------+
| 2 | experiment | failed | 12.34.56.79 | 2048 MB | 2 | 25 GB | 2024-01-01 14:04:50 | 2024-01-01 14:08:03 | 3 minutes | $0.0625 | $0.0034 |
+--------+----------------+-----------+----------------+---------+------+-------+---------------------+---------------------+--------------+-------------+------------+
| 3 | slither-mutate | running | 12.34.56.80 | 2048 MB | 2 | 25 GB | 2024-01-02 10:04:50 | 2024-01-02 12:08:03 | 2 hours | $0.0625 | $0.125 |
+--------+----------------+-----------+----------------+---------+------+-------+---------------------+---------------------+--------------+-------------+------------+
brew tap trailofbits/tools
brew install cloudexecbrew update && brew upgrade cloudexecalternatively, you can install from a GitHub release:
Download the latest release for your platform from the releases page.
Releases are signed with sigstore. You can verify using cosign with the following example command:
cosign verify-blob \
--certificate-identity-regexp "https://github.com/crytic/cloudexec.*" \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
--bundle cloudexec-<version>-<os>-<arch>.tar.gz.bundle \
cloudexec-<version>-<os>-<arch>.tar.gztar -xzf cloudexec-<version>-<os>-<arch>.tar.gz
mv cloudexec /usr/local/binRunning the command below will build the CLI tool from source with a binary named cloudexec in a dist folder:
make buildThen, move the resulting binary from ./dist/clouexec into your PATH.
Nix users can run nix build and then nix profile install ./result to install cloudexec. A helper command make nix-install is available which performs these steps for you and also upgrades an existing version of cloudexec that might already be installed.
CloudExec requires DigitalOcean API credentials to manage droplets, and Spaces credentials to store state and job data. The recommended method for storing and providing your credentials securely is by using the 1Password CLI.
CloudExec supports natively integrating with 1Password, allowing you to reference your credentials stored in your 1Password vault. However, you can also choose to provide plaintext credentials using the cloudexec configure command. Additionally, you can override individual values or the entire configuration by setting the corresponding environment variables.
Save the above tokens in your 1Password vault and install the 1password CLI.
brew install --cask 1password/tap/1password-cli # see the link above for installation instructions on other platformsSign in to your 1Password account.
eval $(op signin)Note what your 1Password secret references are and use them in place of your actual secret values during the cloudexec configure or env var setup steps described in the next section.
These references generally follow the format: op://<vault-name>/<item-name>/<field-name>. For example, if you saved your keys to a vault called Private, in an item called DigitalOcean and the api key field is called ApiKey, then the secret reference to use is op://Private/DigitalOcean/ApiKey.
cloudexec configureor set environment variables:
DIGITALOCEAN_API_KEY
DIGITALOCEAN_SPACES_ACCESS_KEY
DIGITALOCEAN_SPACES_SECRET_ACCESS_KEY
DIGITALOCEAN_SPACES_REGIONRemember, if you save secret values to a .env file, never commit it to any version control system. Add such .env files to your project's .gitignore file to help prevent mistakes. Even when not committed, plaintext secrets in a .env file can pose security risks so we recommend using a dedicated secret management tool such as 1Password.
Confirm cloudexec is authorized to access to DigitalOcean.
cloudexec checkGenerate a cloudexec.toml configuration file in the current directory.
cloudexec initUpdate this cloudexec.toml file as needed. The following fields are available:
[input]:
jobName: an arbitrary, human-readable label that can help identify this jobdirectory: the path to the input directory which will be uploaded to the cloud runner and from which the run command will be executedtimeout: a string specifying a maximum duration for which the job can run. After this timeout is reached, results will be uploaded to s3-style storage and the server will be destroyed. For example, "6h" for six hours or "3d" for three days.
[commands]:
setup: A bash string that can be used to instal arbitrary software prior to the start of the job. These setup commands are run at the beginning of each job and time elapsed does not count towards the timeout.run: A bash string that executes the workload command
Run cloudexec launch from the directory containing the launch config.
# default nyc3 region and c-2 size droplet, using a cloudexec.toml file in the current directory
cloudexec launch
# Or, specify a custom region and droplet size
cloudexec launch --size c-4 --region sfo2cloudexec logsNote that the logs subcommand will continue to stream logs until you stop with ctrl-c, even after the job is finished and stops producing new logs. This is a read-only command and it is safe to kill it at any point.
cloudexec logs --job 1cloudexec attach
# or
ssh -t cloudexec tmux attach -s cloudexecssh cloudexec# show only runnning jobs, and the last completed job
cloudexec status
# show all jobs
cloudexec status --allThe DigitalOcean dashboard will also provide helpful info including the droplet status, cpu and memory usage, and more; look for a droplet with a name that starts with cloudexec-.
# pull from the latest successful job
cloudexec pull example/output
# pull from any job ID
cloudexec pull --job 1 example/output
cloudexec cancelcloudexec cleanNote that there is a delay of up to 2 weeks while deleting files from Digital Ocean Spaces buckets. Be aware that during this delay, the files will continue to occupy space in your bucket and may incur storage costs. If you need to manage your storage usage or costs, consider this delay when planning your data management strategy. This delay is managed by Digital Ocean, cloudexec is not able to influence it.
Building and uploading a dedicated DigitalOcean image for cloudexec will simplify your launch configuration and improve startup times.
To do so, install packer with brew install packer. If you're using nix and direnv, it's added to your PATH via the flake's dev shell.
To build and upload a docker image, run the following command. Make sure your DigitalOcean API key is either in your env vars or replace it with the actual token.
packer build -var do_api_token=$DIGITALOCEAN_API_KEY cloudexec.pkr.hcl
This will take care of everything and if you visit the DigitalOcean snapshots page, you'll see a snapshot called cloudexec-20230920164605 or similar. cloudexec will search for snapshots starts with a cloudexec- prefix and it will use the one with the most recent timestamp string.
Now, you can remove everything from the setup command in the example launch config or replace it to install additional tools.