2020-11-07 21:42:43 +00:00
|
|
|
<!--
|
|
|
|
crossfire: distributed brute force infrastructure
|
|
|
|
|
|
|
|
Copyright (C) 2020 haskal
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2020-11-07 21:12:53 +00:00
|
|
|
# crossfire
|
2020-10-25 05:49:31 +00:00
|
|
|
|
2020-11-07 21:12:53 +00:00
|
|
|
distributed brute force infrastructure
|
2020-10-25 05:49:31 +00:00
|
|
|
|
2020-11-07 21:12:53 +00:00
|
|
|
takes the difficulty out of creating custom brute force jobs
|
2020-10-25 05:49:31 +00:00
|
|
|
|
2020-11-07 21:12:53 +00:00
|
|
|
## status
|
|
|
|
|
|
|
|
### base
|
|
|
|
- 🚧 input space manipulation functions
|
2020-11-16 23:38:49 +00:00
|
|
|
- ✅ data types: using data/integer-set, pattern (vector of integer-set)
|
|
|
|
- ✅ basic manipulation functions
|
|
|
|
- ✅ representation of input space as a flat integer
|
2020-11-07 21:12:53 +00:00
|
|
|
- 🚧 #lang for configuration/definitions
|
|
|
|
- (input) mode
|
|
|
|
- stdio: user program gets input by stdio, integers separated by space, one per line
|
|
|
|
- callback: input generator compiled into user program, user main calls `crossfire_main`
|
|
|
|
with callback function that returns true or false
|
|
|
|
- other modes??
|
|
|
|
- SMP: performed by crossfire or performed by the user code
|
|
|
|
- "performed by user code" can also mean GPU, for example
|
|
|
|
- 🚧 codegen for input generator (in C)
|
2020-11-16 23:38:49 +00:00
|
|
|
- ✅ stdio mode
|
2020-11-07 21:12:53 +00:00
|
|
|
- 🚧 callback mode
|
|
|
|
- success reporting mechanism
|
|
|
|
- low priority: configurable "character" type -- currently a "character" is a uint64\_t
|
|
|
|
|
|
|
|
### server: distribute jobs to workers
|
2020-11-16 23:38:49 +00:00
|
|
|
- ✅ base definitions of input classes and how to divide them
|
2020-11-28 05:40:34 +00:00
|
|
|
- ✅ dynamic slicing and scheduling based on agents' reported work rate
|
2020-11-07 21:12:53 +00:00
|
|
|
- low priority: randomized input space distribution
|
2020-11-23 06:51:26 +00:00
|
|
|
- low priority: store common configuration templates for clients
|
|
|
|
- low priority: track upload/download progress
|
|
|
|
- streaming interface for file transfers
|
2020-11-28 05:40:34 +00:00
|
|
|
- ✅ accept submitted projects (with client-compiled input generator) and distribute to agents
|
2020-11-16 23:38:49 +00:00
|
|
|
- ✅ low priority: support for multiple architectures
|
2020-11-13 04:22:20 +00:00
|
|
|
- ✅ agent authentication
|
|
|
|
- ✅ client authentication
|
2020-11-07 21:12:53 +00:00
|
|
|
|
2020-12-27 08:13:43 +00:00
|
|
|
### agent: accept and run jobs
|
2020-11-13 04:22:20 +00:00
|
|
|
- ✅ securely connect to server
|
2020-12-26 09:00:42 +00:00
|
|
|
- ✅ retrieve assigned tasks
|
|
|
|
- handle smp correctly
|
|
|
|
- ✅ report completions
|
|
|
|
- 🚧 report errors
|
|
|
|
- ✅ report successes
|
2020-11-07 21:12:53 +00:00
|
|
|
- low priority: defer to external brute force program (eg, hashcat on GPU)
|
2020-11-30 08:05:40 +00:00
|
|
|
- this could be implemented on top of the existing project format
|
2020-11-23 06:51:26 +00:00
|
|
|
- low priority: support finding _all_ matching inputs for a project, rather than just the first one
|
2020-11-30 08:05:40 +00:00
|
|
|
- the architecture currently doesn't stop on the first match so it could be a thing
|
2020-11-07 21:12:53 +00:00
|
|
|
|
2020-12-27 08:13:43 +00:00
|
|
|
### client: submit jobs and view progress
|
2020-11-13 04:22:20 +00:00
|
|
|
- ✅securely connect to server
|
2020-11-07 21:12:53 +00:00
|
|
|
- command line interface
|
|
|
|
- `crossfire new`: create new crossfire project
|
|
|
|
- `crossfire test`: test project locally, replicates configuration of server with single local
|
|
|
|
agent to debug issues
|
2020-11-16 23:38:49 +00:00
|
|
|
- low priority: `crossfire node-test`: submit a mini-task to a node that has the necessary
|
|
|
|
resources to debug issues
|
2020-11-07 21:12:53 +00:00
|
|
|
- `crossfire submit`: submit task to server
|
2020-11-16 23:38:49 +00:00
|
|
|
- `crossfire cancel`: cancels submitted task
|
2020-11-07 21:12:53 +00:00
|
|
|
- `crossfire status`: check status of task (or network as a whole)
|
2020-11-16 23:38:49 +00:00
|
|
|
- low priority: gui interface (racket/gui & framework time)
|
2020-12-27 08:13:43 +00:00
|
|
|
|
|
|
|
## misc
|
|
|
|
|
|
|
|
### porting
|
|
|
|
|
|
|
|
currently only linux is supported for the server and agent. the server might run on macOS but it's
|
|
|
|
not guaranteed. if you are interested in porting this to a new platform, take a look at
|
|
|
|
`agent-deployment` for the embedded build of racket for the all-in-one agent binary, and perhaps
|
|
|
|
create additional makefiles for other platforms. additionally, platform-specific racket code is
|
|
|
|
marked with an `XXX` comment
|