forked from ArmyCyberInstitute/cmgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
501 lines (427 loc) · 11.4 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
package main
import (
"archive/tar"
"compress/gzip"
"encoding/json"
"errors"
"flag"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"strconv"
"strings"
"github.com/picoCTF/cmgr/cmgr"
)
type state struct {
mgr *cmgr.Manager
}
var artifact_dir string
func main() {
var iface string
var port int
var help bool
var version bool
flag.IntVar(&port, "port", 4200, "listening port for cmgrd")
flag.StringVar(&iface, "address", "", "listening address for cmgrd")
flag.BoolVar(&help, "help", false, "display usage information")
flag.BoolVar(&version, "version", false, "display version information")
flag.Parse()
if version {
fmt.Printf("Version: %s\n", cmgr.Version())
os.Exit(0)
}
if help {
printUsage()
os.Exit(0)
}
artifact_dir, _ = os.LookupEnv(cmgr.ARTIFACT_DIR_ENV)
if artifact_dir == "" {
artifact_dir = "."
}
mgr := cmgr.NewManager(cmgr.INFO)
if mgr == nil {
log.Fatal("failed to initialize cmgr library")
}
s := state{mgr: mgr}
http.HandleFunc("/challenges", s.listHandler)
http.HandleFunc("/challenges/", s.challengeHandler)
http.HandleFunc("/builds/", s.buildHandler)
http.HandleFunc("/instances/", s.instanceHandler)
http.HandleFunc("/schemas", s.schemaHandler)
http.HandleFunc("/schemas/", s.existingSchemaHandler)
connStr := fmt.Sprintf("%s:%d", iface, port)
log.Fatal(http.ListenAndServe(connStr, nil))
}
func printUsage() {
fmt.Printf(`
Usage: %s [<options>]
--address the network address to listen on (default: 0.0.0.0)
--port the port to listen on (default: 4200)
--help display this message
--version display version information and exit
Relevant environment variables:
CMGR_DB - path to cmgr's database file (defaults to 'cmgr.db')
CMGR_DIR - directory containing all challenges (defaults to '.')
CMGR_ARTIFACT_DIR - directory for storing artifact bundles (defaults to '.')
CMGR_LOGGING - controls the verbosity of the internal logging infrastructure
and should be one of the following: debug, info, warn, error, or disabled
(defaults to 'info')
CMGR_PORTS - the range of ports that are dedicated for serving challenges;
cmgr will assume that it fully owns these ports and nothing else will
try to use them (i.e., not in ephemeral range or overlapping with a
service running on the host); format is '1000-1000'
CMGR_INTERFACE - the host interface/address to which published challenge
ports should be bound (defaults to '0.0.0.0'); if the specified interface
does not exist on the host running the Docker daemon, Docker will silently
ignore this value and instead bind to the loopback address
Note: The Docker client is configured via Docker's standard environment
variables. See https://docs.docker.com/engine/reference/commandline/cli/
for specific details.
`, os.Args[0])
}
type ChallengeListElement struct {
Id cmgr.ChallengeId `json:"id"`
SourceChecksum uint32 `json:"source_checksum"`
MetadataChecksum uint32 `json:"metadata_checksum"`
SolveScript bool `json:"solve_script"`
}
func (s state) listHandler(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" {
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
query := r.URL.Query()
tags, ok := query["tags"]
var challenges []*cmgr.ChallengeMetadata
if !ok {
challenges = s.mgr.ListChallenges()
} else {
challenges = s.mgr.SearchChallenges(tags)
}
respList := make([]ChallengeListElement, len(challenges))
for i, challenge := range challenges {
respList[i].Id = challenge.Id
respList[i].SourceChecksum = challenge.SourceChecksum
respList[i].MetadataChecksum = challenge.MetadataChecksum
respList[i].SolveScript = challenge.SolveScript
}
body, err := json.Marshal(respList)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(err.Error()))
return
}
w.Write(body)
}
type BuildChallengeRequest struct {
FlagFormat string `json:"flag_format"`
Seeds []int `json:"seeds"`
}
func (s state) challengeHandler(w http.ResponseWriter, r *http.Request) {
path := strings.Split(r.URL.Path, "/")
pathLen := len(path)
if len(path) < 2 {
w.WriteHeader(http.StatusNotFound)
return
}
chalStr := ""
idx := pathLen - 1
for idx >= 0 && path[idx] != "challenges" {
chalStr = path[idx] + "/" + chalStr
idx--
}
if idx < 0 || chalStr == "" {
w.WriteHeader(http.StatusNotFound)
return
}
challenge := cmgr.ChallengeId(chalStr[:len(chalStr)-1])
var err error
respCode := http.StatusOK
var body []byte
switch r.Method {
case "GET":
var meta *cmgr.ChallengeMetadata
meta, err = s.mgr.GetChallengeMetadata(challenge)
if err == nil {
body, err = json.Marshal(meta)
}
case "POST":
var data []byte
var buildReq BuildChallengeRequest
data, err = ioutil.ReadAll(r.Body)
if err == nil {
err = json.Unmarshal(data, &buildReq)
}
var builds []*cmgr.BuildMetadata
if err == nil {
if buildReq.FlagFormat == "" {
buildReq.FlagFormat = "flag{%s}"
}
builds, err = s.mgr.Build(challenge, buildReq.Seeds, buildReq.FlagFormat)
}
if err == nil {
body, err = json.Marshal(builds)
}
default:
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
if err != nil {
respCode = http.StatusInternalServerError
if _, ok := err.(*cmgr.UnknownIdentifierError); ok {
respCode = http.StatusNotFound
}
body = []byte(err.Error())
}
w.WriteHeader(respCode)
w.Write(body)
}
func (s state) buildHandler(w http.ResponseWriter, r *http.Request) {
path := strings.Split(r.URL.Path, "/")
pathLen := len(path)
if pathLen == 4 {
s.artifactsHandler(w, r)
return
}
if len(path) < 2 || path[pathLen-2] != "builds" {
w.WriteHeader(http.StatusNotFound)
return
}
buildInt, err := strconv.Atoi(path[pathLen-1])
if err != nil {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte(err.Error()))
}
build := cmgr.BuildId(buildInt)
var body []byte
var respCode int
switch r.Method {
case "GET":
var meta *cmgr.BuildMetadata
meta, err = s.mgr.GetBuildMetadata(build)
respCode = http.StatusOK
if err == nil {
body, err = json.Marshal(meta)
}
case "POST":
var instance cmgr.InstanceId
instance, err = s.mgr.Start(build)
respCode = http.StatusCreated
var iMeta *cmgr.InstanceMetadata
if err == nil {
iMeta, err = s.mgr.GetInstanceMetadata(instance)
}
if err == nil {
body, err = json.Marshal(iMeta)
}
case "DELETE":
err = s.mgr.Destroy(build)
respCode = http.StatusNoContent
default:
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
if err != nil {
respCode = http.StatusInternalServerError
if _, ok := err.(*cmgr.UnknownIdentifierError); ok {
respCode = http.StatusNotFound
}
body = []byte(err.Error())
}
w.WriteHeader(respCode)
w.Write(body)
}
func (s state) artifactsHandler(w http.ResponseWriter, r *http.Request) {
path := strings.Split(r.URL.Path, "/")
pathLen := len(path)
if pathLen < 4 || path[pathLen-3] != "builds" {
w.WriteHeader(http.StatusNotFound)
return
}
buildInt, err := strconv.Atoi(path[pathLen-2])
if err != nil {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte(err.Error()))
return
}
build := cmgr.BuildId(buildInt)
meta, err := s.mgr.GetBuildMetadata(build)
_, ok := err.(*cmgr.UnknownIdentifierError)
if ok || (err != nil && !meta.HasArtifacts) {
w.WriteHeader(http.StatusNotFound)
return
}
f, err := os.Open(fmt.Sprintf("%s/%d.tar.gz", artifact_dir, build))
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(err.Error()))
return
}
defer f.Close()
if path[pathLen-1] == "artifacts.tar.gz" {
io.Copy(w, f)
return
}
srcGz, err := gzip.NewReader(f)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(err.Error()))
return
}
defer srcGz.Close()
srcTar := tar.NewReader(srcGz)
var h *tar.Header
for h, err = srcTar.Next(); err == nil; h, err = srcTar.Next() {
if h.Name == path[pathLen-1] {
io.Copy(w, srcTar)
return
}
}
if err == io.EOF {
w.WriteHeader(http.StatusNotFound)
return
}
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(err.Error()))
}
func (s state) instanceHandler(w http.ResponseWriter, r *http.Request) {
path := strings.Split(r.URL.Path, "/")
pathLen := len(path)
if len(path) < 2 || path[pathLen-2] != "instances" {
w.WriteHeader(http.StatusNotFound)
return
}
instInt, err := strconv.Atoi(path[pathLen-1])
if err != nil {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte(err.Error()))
return
}
instance := cmgr.InstanceId(instInt)
var body []byte
var respCode int
switch r.Method {
case "GET":
var meta *cmgr.InstanceMetadata
meta, err = s.mgr.GetInstanceMetadata(instance)
respCode = http.StatusOK
if err == nil {
body, err = json.Marshal(meta)
}
case "POST":
err = s.mgr.CheckInstance(instance)
respCode = http.StatusNoContent
case "DELETE":
err = s.mgr.Stop(instance)
respCode = http.StatusNoContent
default:
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
if err != nil {
respCode = http.StatusInternalServerError
if _, ok := err.(*cmgr.UnknownIdentifierError); ok {
respCode = http.StatusNotFound
}
body = []byte(err.Error())
}
w.WriteHeader(respCode)
w.Write(body)
}
func (s state) existingSchemaHandler(w http.ResponseWriter, r *http.Request) {
path := strings.Split(r.URL.Path, "/")
pathLen := len(path)
if len(path) < 2 || path[pathLen-2] != "schemas" {
w.WriteHeader(http.StatusNotFound)
return
}
schema := path[pathLen-1]
var body []byte
var err error
respCode := http.StatusOK
switch r.Method {
case "GET":
var meta []*cmgr.ChallengeMetadata
meta, err = s.mgr.GetSchemaState(schema)
if err == nil {
body, err = json.Marshal(meta)
}
case "POST":
var data []byte
data, err = ioutil.ReadAll(r.Body)
respCode = http.StatusNoContent
var schemaDef *cmgr.Schema
if err == nil {
err = json.Unmarshal(data, &schemaDef)
}
if err == nil {
if schemaDef.Name != schema {
respCode = http.StatusBadRequest // Bad Request
err = errors.New("mismatch between endpoint and schema name")
} else {
errs := s.mgr.UpdateSchema(schemaDef)
if len(errs) > 0 {
err = fmt.Errorf("%v", errs)
}
}
}
case "DELETE":
err = s.mgr.DeleteSchema(schema)
respCode = http.StatusNoContent
default:
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
if err != nil {
respCode = http.StatusInternalServerError
if _, ok := err.(*cmgr.UnknownIdentifierError); ok {
respCode = http.StatusNotFound
}
body = []byte(err.Error())
}
w.WriteHeader(respCode)
w.Write(body)
}
func (s state) schemaHandler(w http.ResponseWriter, r *http.Request) {
var body []byte
var err error
respCode := http.StatusOK
switch r.Method {
case "GET":
var schemaList []string
schemaList, err = s.mgr.ListSchemas()
if err == nil {
body, err = json.Marshal(schemaList)
}
case "POST":
var data []byte
data, err = ioutil.ReadAll(r.Body)
var schemaDef *cmgr.Schema
if err == nil {
err = json.Unmarshal(data, &schemaDef)
}
if err == nil {
errs := s.mgr.CreateSchema(schemaDef)
if len(errs) > 0 {
err = fmt.Errorf("%v", errs)
} else {
respCode = http.StatusCreated
}
}
default:
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
if err != nil {
respCode = http.StatusInternalServerError
if _, ok := err.(*cmgr.UnknownIdentifierError); ok {
respCode = http.StatusNotFound
}
body = []byte(err.Error())
}
w.WriteHeader(respCode)
w.Write(body)
}