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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
|
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | Manifest schema and S3 operations for the mini-PaaS deployment system.
--
-- Uses aws CLI for S3 operations (simpler than amazonka, already available).
--
-- : out deploy-manifest
-- : dep aeson
-- : dep time
-- : dep directory
-- : dep temporary
-- : run awscli2
module Omni.Deploy.Manifest
( Artifact (..),
Exec (..),
Http (..),
Systemd (..),
Hardening (..),
Service (..),
Manifest (..),
findService,
updateService,
createEmptyManifest,
loadManifestFromS3,
saveManifestToS3,
archiveManifest,
listArchivedManifests,
rollbackToManifest,
s3Bucket,
s3Endpoint,
main,
test,
)
where
import Alpha
import Data.Aeson ((.!=), (.:), (.:?), (.=))
import qualified Data.Aeson as Aeson
import qualified Data.ByteString.Lazy as BL
import qualified Data.Text as Text
import qualified Data.Text.Encoding as TE
import Data.Time (UTCTime, getCurrentTime)
import Data.Time.Format.ISO8601 (iso8601Show)
import qualified Omni.Cli as Cli
import qualified Omni.Log as Log
import qualified Omni.Test as Test
import qualified System.Exit as Exit
import qualified System.IO as IO
import qualified System.IO.Temp as Temp
import qualified System.Process as Process
s3Bucket :: Text
s3Bucket = "omni-nix-cache"
s3Endpoint :: Text
s3Endpoint = "https://nyc3.digitaloceanspaces.com"
data Artifact = Artifact
{ artifactType :: Text,
storePath :: Text
}
deriving (Show, Eq, Generic)
instance Aeson.FromJSON Artifact where
parseJSON =
Aeson.withObject "Artifact" <| \o ->
Artifact
</ o
.:? "type"
.!= "nix-closure"
<*> o
.: "storePath"
instance Aeson.ToJSON Artifact where
toJSON Artifact {..} =
Aeson.object
[ "type" .= artifactType,
"storePath" .= storePath
]
data Exec = Exec
{ execCommand :: Maybe Text,
execUser :: Text,
execGroup :: Text
}
deriving (Show, Eq, Generic)
instance Aeson.FromJSON Exec where
parseJSON =
Aeson.withObject "Exec" <| \o ->
Exec
</ o
.:? "command"
<*> o
.:? "user"
.!= "root"
<*> o
.:? "group"
.!= "root"
instance Aeson.ToJSON Exec where
toJSON Exec {..} =
Aeson.object
[ "command" .= execCommand,
"user" .= execUser,
"group" .= execGroup
]
defaultExec :: Exec
defaultExec = Exec Nothing "root" "root"
data Http = Http
{ httpDomain :: Text,
httpPath :: Text,
httpInternalPort :: Int
}
deriving (Show, Eq, Generic)
instance Aeson.FromJSON Http where
parseJSON =
Aeson.withObject "Http" <| \o ->
Http
</ o
.: "domain"
<*> o
.:? "path"
.!= "/"
<*> o
.: "internalPort"
instance Aeson.ToJSON Http where
toJSON Http {..} =
Aeson.object
[ "domain" .= httpDomain,
"path" .= httpPath,
"internalPort" .= httpInternalPort
]
data Systemd = Systemd
{ systemdAfter :: [Text],
systemdRequires :: [Text],
systemdRestart :: Text,
systemdRestartSec :: Int
}
deriving (Show, Eq, Generic)
instance Aeson.FromJSON Systemd where
parseJSON =
Aeson.withObject "Systemd" <| \o ->
Systemd
</ o
.:? "after"
.!= ["network-online.target"]
<*> o
.:? "requires"
.!= []
<*> o
.:? "restart"
.!= "on-failure"
<*> o
.:? "restartSec"
.!= 5
instance Aeson.ToJSON Systemd where
toJSON Systemd {..} =
Aeson.object
[ "after" .= systemdAfter,
"requires" .= systemdRequires,
"restart" .= systemdRestart,
"restartSec" .= systemdRestartSec
]
defaultSystemd :: Systemd
defaultSystemd = Systemd ["network-online.target"] [] "on-failure" 5
data Hardening = Hardening
{ hardeningDynamicUser :: Bool,
hardeningPrivateTmp :: Bool,
hardeningProtectSystem :: Text,
hardeningProtectHome :: Bool
}
deriving (Show, Eq, Generic)
instance Aeson.FromJSON Hardening where
parseJSON =
Aeson.withObject "Hardening" <| \o ->
Hardening
</ o
.:? "dynamicUser"
.!= False
<*> o
.:? "privateTmp"
.!= True
<*> o
.:? "protectSystem"
.!= "strict"
<*> o
.:? "protectHome"
.!= True
instance Aeson.ToJSON Hardening where
toJSON Hardening {..} =
Aeson.object
[ "dynamicUser" .= hardeningDynamicUser,
"privateTmp" .= hardeningPrivateTmp,
"protectSystem" .= hardeningProtectSystem,
"protectHome" .= hardeningProtectHome
]
defaultHardening :: Hardening
defaultHardening = Hardening False True "strict" True
data Service = Service
{ serviceName :: Text,
serviceArtifact :: Artifact,
serviceHosts :: [Text],
serviceExec :: Exec,
serviceEnv :: Map Text Text,
serviceEnvFile :: Maybe Text,
serviceHttp :: Maybe Http,
serviceSystemd :: Systemd,
serviceHardening :: Hardening,
serviceRevision :: Maybe Text
}
deriving (Show, Eq, Generic)
instance Aeson.FromJSON Service where
parseJSON =
Aeson.withObject "Service" <| \o ->
Service
</ o
.: "name"
<*> o
.: "artifact"
<*> o
.:? "hosts"
.!= ["biz"]
<*> o
.:? "exec"
.!= defaultExec
<*> o
.:? "env"
.!= mempty
<*> o
.:? "envFile"
<*> o
.:? "http"
<*> o
.:? "systemd"
.!= defaultSystemd
<*> o
.:? "hardening"
.!= defaultHardening
<*> o
.:? "revision"
instance Aeson.ToJSON Service where
toJSON Service {..} =
Aeson.object
[ "name" .= serviceName,
"artifact" .= serviceArtifact,
"hosts" .= serviceHosts,
"exec" .= serviceExec,
"env" .= serviceEnv,
"envFile" .= serviceEnvFile,
"http" .= serviceHttp,
"systemd" .= serviceSystemd,
"hardening" .= serviceHardening,
"revision" .= serviceRevision
]
data Manifest = Manifest
{ manifestVersion :: Int,
manifestGeneration :: UTCTime,
manifestServices :: [Service]
}
deriving (Show, Eq, Generic)
instance Aeson.FromJSON Manifest where
parseJSON =
Aeson.withObject "Manifest" <| \o ->
Manifest
</ o
.:? "version"
.!= 1
<*> o
.: "generation"
<*> o
.:? "services"
.!= []
instance Aeson.ToJSON Manifest where
toJSON Manifest {..} =
Aeson.object
[ "version" .= manifestVersion,
"generation" .= manifestGeneration,
"services" .= manifestServices
]
findService :: Text -> Manifest -> Maybe Service
findService name manifest =
find (\s -> serviceName s == name) (manifestServices manifest)
updateService :: Text -> Text -> Maybe Text -> Manifest -> Either Text Manifest
updateService name newStorePath revision manifest =
case findService name manifest of
Nothing -> Left <| "Service '" <> name <> "' not found in manifest"
Just _ -> Right <| manifest {manifestServices = updatedServices}
where
updatedServices = map updateIfMatch (manifestServices manifest)
updateIfMatch svc
| serviceName svc == name =
svc
{ serviceArtifact = (serviceArtifact svc) {storePath = newStorePath},
serviceRevision = revision
}
| otherwise = svc
createEmptyManifest :: IO Manifest
createEmptyManifest = do
now <- getCurrentTime
pure <| Manifest 1 now []
awsS3Args :: [String]
awsS3Args =
[ "--endpoint-url",
Text.unpack s3Endpoint,
"--profile",
"digitalocean"
]
s3Get :: Text -> FilePath -> IO Bool
s3Get key destPath = do
let url = "s3://" <> Text.unpack s3Bucket <> "/" <> Text.unpack key
args = ["s3", "cp"] ++ awsS3Args ++ [url, destPath]
(exitCode, _, _) <- Process.readProcessWithExitCode "aws" args ""
pure <| exitCode == Exit.ExitSuccess
s3Put :: FilePath -> Text -> IO Bool
s3Put srcPath key = do
let url = "s3://" <> Text.unpack s3Bucket <> "/" <> Text.unpack key
args = ["s3", "cp"] ++ awsS3Args ++ [srcPath, url]
(exitCode, _, _) <- Process.readProcessWithExitCode "aws" args ""
pure <| exitCode == Exit.ExitSuccess
s3List :: Text -> IO [Text]
s3List prefix = do
let url = "s3://" <> Text.unpack s3Bucket <> "/" <> Text.unpack prefix
args = ["s3", "ls"] ++ awsS3Args ++ [url]
(exitCode, stdout', _) <- Process.readProcessWithExitCode "aws" args ""
case exitCode of
Exit.ExitSuccess ->
pure <| parseS3ListOutput (Text.pack stdout')
Exit.ExitFailure _ -> pure []
parseS3ListOutput :: Text -> [Text]
parseS3ListOutput output =
output
|> Text.lines
|> map extractFilename
|> filter (not <. Text.null)
where
extractFilename line =
case Text.words line of
[_, _, _, filename] -> filename
_ -> ""
loadManifestFromS3 :: IO (Maybe Manifest)
loadManifestFromS3 = loadManifestFromS3' "manifest.json"
loadManifestFromS3' :: Text -> IO (Maybe Manifest)
loadManifestFromS3' key = do
Temp.withSystemTempFile "manifest.json" <| \tmpPath tmpHandle -> do
IO.hClose tmpHandle
success <- s3Get key tmpPath
if success
then do
contents <- BL.readFile tmpPath
case Aeson.eitherDecode contents of
Left _ -> pure Nothing
Right manifest -> pure <| Just manifest
else pure Nothing
archiveManifest :: Manifest -> IO Text
archiveManifest manifest = do
let timestamp =
iso8601Show (manifestGeneration manifest)
|> filter (\c -> c /= ':' && c /= '-')
|> Text.pack
archiveKey = "manifests/manifest-" <> timestamp <> ".json"
Temp.withSystemTempFile "manifest.json" <| \tmpPath tmpHandle -> do
BL.hPut tmpHandle (Aeson.encode manifest)
IO.hClose tmpHandle
_ <- s3Put tmpPath archiveKey
pure archiveKey
listArchivedManifests :: IO [Text]
listArchivedManifests = do
files <- s3List "manifests/"
pure <| filter (Text.isSuffixOf ".json") files
rollbackToManifest :: Text -> IO Bool
rollbackToManifest archiveKey = do
let fullKey =
if "manifests/" `Text.isPrefixOf` archiveKey
then archiveKey
else "manifests/" <> archiveKey
archived <- loadManifestFromS3' fullKey
case archived of
Nothing -> pure False
Just manifest -> do
saveManifestToS3 manifest
pure True
saveManifestToS3 :: Manifest -> IO ()
saveManifestToS3 = saveManifestToS3' "manifest.json"
saveManifestToS3' :: Text -> Manifest -> IO ()
saveManifestToS3' key manifest = do
existing <- loadManifestFromS3' key
case existing of
Just old -> void <| archiveManifest old
Nothing -> pure ()
now <- getCurrentTime
let updatedManifest = manifest {manifestGeneration = now}
Temp.withSystemTempFile "manifest.json" <| \tmpPath tmpHandle -> do
BL.hPut tmpHandle (Aeson.encode updatedManifest)
IO.hClose tmpHandle
_ <- s3Put tmpPath key
pure ()
help :: Cli.Docopt
help =
[Cli.docopt|
deploy-manifest - Manage deployment manifest in S3
Usage:
deploy-manifest test
deploy-manifest init
deploy-manifest show
deploy-manifest update <name> <store-path> [<revision>]
deploy-manifest add-service <json>
deploy-manifest list
deploy-manifest rollback <archive>
deploy-manifest (-h | --help)
Commands:
test Run tests
init Initialize empty manifest in S3
show Show current manifest
update Update service store path in manifest
add-service Add a new service from JSON
list List archived manifest generations
rollback Restore a previous manifest version
Options:
-h --help Show this help
|]
move :: Cli.Arguments -> IO ()
move args
| args `Cli.has` Cli.command "init" = do
existing <- loadManifestFromS3
case existing of
Just _ -> do
Log.fail ["manifest", "already exists"]
Exit.exitWith (Exit.ExitFailure 1)
Nothing -> do
manifest <- createEmptyManifest
saveManifestToS3 manifest
Log.good ["manifest", "initialized empty manifest"]
| args `Cli.has` Cli.command "show" = do
manifest <- loadManifestFromS3
case manifest of
Nothing -> putStrLn ("no manifest found" :: String)
Just m -> BL.putStr <| Aeson.encode m
| args `Cli.has` Cli.command "update" = do
let name =
Cli.getArg args (Cli.argument "name")
|> fromMaybe ""
|> Text.pack
storePath' =
Cli.getArg args (Cli.argument "store-path")
|> fromMaybe ""
|> Text.pack
revision =
Cli.getArg args (Cli.argument "revision")
/> Text.pack
manifest <- loadManifestFromS3
case manifest of
Nothing -> do
Log.fail ["manifest", "no manifest found in S3"]
Exit.exitWith (Exit.ExitFailure 1)
Just m -> case updateService name storePath' revision m of
Left err -> do
Log.fail ["manifest", err]
Exit.exitWith (Exit.ExitFailure 1)
Right updated -> do
saveManifestToS3 updated
Log.good ["manifest", "updated", name, "->", storePath']
| args `Cli.has` Cli.command "add-service" = do
let jsonStr =
Cli.getArg args (Cli.argument "json")
|> fromMaybe ""
case Aeson.eitherDecode (BL.fromStrict <| TE.encodeUtf8 <| Text.pack jsonStr) of
Left err -> do
Log.fail ["manifest", "invalid JSON:", Text.pack err]
Exit.exitWith (Exit.ExitFailure 1)
Right svc -> do
manifest <- loadManifestFromS3
m <- maybe createEmptyManifest pure manifest
case findService (serviceName svc) m of
Just _ -> do
Log.fail ["manifest", "service already exists:", serviceName svc]
Exit.exitWith (Exit.ExitFailure 1)
Nothing -> do
let newManifest = m {manifestServices = manifestServices m ++ [svc]}
saveManifestToS3 newManifest
Log.good ["manifest", "added service", serviceName svc]
| args `Cli.has` Cli.command "list" = do
archives <- listArchivedManifests
if null archives
then putStrLn ("no archived manifests found" :: String)
else
forM_ archives <| \archive -> do
putStrLn <| Text.unpack archive
| args `Cli.has` Cli.command "rollback" = do
let archive =
Cli.getArg args (Cli.argument "archive")
|> fromMaybe ""
|> Text.pack
success <- rollbackToManifest archive
if success
then Log.good ["manifest", "rolled back to", archive]
else do
Log.fail ["manifest", "failed to rollback to", archive]
Exit.exitWith (Exit.ExitFailure 1)
| otherwise = do
Log.fail ["manifest", "unknown command"]
Exit.exitWith (Exit.ExitFailure 1)
test :: Test.Tree
test =
Test.group
"Omni.Deploy.Manifest"
[ test_artifactDefaults,
test_serviceDefaults,
test_manifestJsonRoundtrip,
test_updateService,
test_findService
]
test_artifactDefaults :: Test.Tree
test_artifactDefaults =
Test.unit "artifact defaults type to nix-closure" <| do
let json = "{\"storePath\": \"/nix/store/abc123\"}"
case Aeson.eitherDecode json of
Left err -> Test.assertFailure err
Right (artifact :: Artifact) ->
artifactType artifact Test.@=? "nix-closure"
test_serviceDefaults :: Test.Tree
test_serviceDefaults =
Test.unit "service has correct defaults" <| do
let json = "{\"name\": \"test-svc\", \"artifact\": {\"storePath\": \"/nix/store/xyz\"}}"
case Aeson.eitherDecode json of
Left err -> Test.assertFailure err
Right (svc :: Service) -> do
serviceHosts svc Test.@=? ["biz"]
execUser (serviceExec svc) Test.@=? "root"
systemdRestart (serviceSystemd svc) Test.@=? "on-failure"
hardeningPrivateTmp (serviceHardening svc) Test.@=? True
test_manifestJsonRoundtrip :: Test.Tree
test_manifestJsonRoundtrip =
Test.unit "manifest JSON roundtrip" <| do
now <- getCurrentTime
let manifest =
Manifest
{ manifestVersion = 1,
manifestGeneration = now,
manifestServices =
[ Service
{ serviceName = "test-svc",
serviceArtifact = Artifact "nix-closure" "/nix/store/abc123",
serviceHosts = ["biz"],
serviceExec = defaultExec,
serviceEnv = mempty,
serviceEnvFile = Nothing,
serviceHttp = Just (Http "example.com" "/" 8000),
serviceSystemd = defaultSystemd,
serviceHardening = defaultHardening,
serviceRevision = Nothing
}
]
}
encoded = Aeson.encode manifest
case Aeson.eitherDecode encoded of
Left err -> Test.assertFailure err
Right decoded -> do
length (manifestServices decoded) Test.@=? 1
case head <| manifestServices decoded of
Nothing -> Test.assertFailure "no services"
Just svc -> serviceName svc Test.@=? "test-svc"
test_updateService :: Test.Tree
test_updateService =
Test.unit "updateService updates store path" <| do
now <- getCurrentTime
let manifest =
Manifest
{ manifestVersion = 1,
manifestGeneration = now,
manifestServices =
[ Service
"svc-a"
(Artifact "nix-closure" "/nix/store/old")
["biz"]
defaultExec
mempty
Nothing
Nothing
defaultSystemd
defaultHardening
Nothing,
Service
"svc-b"
(Artifact "nix-closure" "/nix/store/other")
["biz"]
defaultExec
mempty
Nothing
Nothing
defaultSystemd
defaultHardening
Nothing
]
}
case updateService "svc-a" "/nix/store/new" (Just "abc123") manifest of
Left err -> Test.assertFailure (Text.unpack err)
Right updated -> case head <| manifestServices updated of
Nothing -> Test.assertFailure "no services"
Just svcA -> do
storePath (serviceArtifact svcA) Test.@=? "/nix/store/new"
serviceRevision svcA Test.@=? Just "abc123"
test_findService :: Test.Tree
test_findService =
Test.unit "findService finds service by name" <| do
now <- getCurrentTime
let manifest =
Manifest
{ manifestVersion = 1,
manifestGeneration = now,
manifestServices =
[ Service
"svc-a"
(Artifact "nix-closure" "/nix/store/a")
["biz"]
defaultExec
mempty
Nothing
Nothing
defaultSystemd
defaultHardening
Nothing
]
}
case findService "svc-a" manifest of
Nothing -> Test.assertFailure "service not found"
Just svc -> serviceName svc Test.@=? "svc-a"
case findService "nonexistent" manifest of
Nothing -> pure ()
Just _ -> Test.assertFailure "found nonexistent service"
main :: IO ()
main = Cli.main <| Cli.Plan help move test pure
|