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
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
|
{-# LANGUAGE DoAndIfThenElse #-}
{-# LANGUAGE ViewPatterns #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE CPP #-}
module Main where
import Debug.Trace
import GHC.Exts (Down(..))
import GHC.IO.Exception ( ioException, IOErrorType(..) )
import Data.IORef
import Data.Tuple
import Data.Binary
import Data.OpenPGP as OpenPGP
import qualified Data.ByteString.Lazy as L
import qualified Data.ByteString.Lazy.Char8 as Char8
import qualified Data.ByteString as S
import qualified Data.ByteString.Char8 as S8
import Control.Monad
import qualified Text.Show.Pretty as PP
import Text.PrettyPrint as PP hiding ((<>))
import Data.List
import Data.OpenPGP.Util (verify,fingerprint,decryptSecretKey,pgpSign)
import Data.Ord
import Data.Maybe
import Data.Bits
import qualified Data.Text as T
import Data.Text.Encoding
import qualified Codec.Binary.Base32 as Base32
import qualified Codec.Binary.Base64 as Base64
import qualified Crypto.Hash.SHA1 as SHA1
import qualified Crypto.Hash.SHA256 as SHA256
import qualified Crypto.Hash.RIPEMD160 as RIPEMD160
import qualified Crypto.Types.PubKey.ECC as ECC
-- import qualified Crypto.Types.PubKey.ECDSA as ECDSA
-- import qualified Crypto.PubKey.ECC.ECDSA as ECDSA
import Data.Char (toLower)
import qualified Crypto.PubKey.RSA as RSA
-- import Crypto.Random (newGenIO,SystemRandom)
import Data.ASN1.Types
import Data.ASN1.Encoding
import Data.ASN1.BinaryEncoding
import Data.ASN1.BitArray
import qualified Data.Foldable as Foldable
import qualified Data.Sequence as Sequence
import Control.Applicative
import System.Environment
import System.Directory
import System.FilePath
import System.Exit
import System.Process
import System.Posix.IO (fdToHandle,fdRead)
import System.Posix.Files
import System.Posix.Signals
import System.Posix.Types (EpochTime)
import System.Process.Internals (runGenProcess_,defaultSignal)
import System.IO (hPutStrLn,stderr,withFile,IOMode(..))
import System.IO.Error
import ControlMaybe
import Data.Char
import Control.Arrow (first,second)
import Data.Traversable hiding (mapM,forM,sequence)
import qualified Data.Traversable as Traversable (mapM,forM,sequence)
-- import System.Console.CmdArgs
-- import System.Posix.Time
import Data.Time.Clock.POSIX
import Data.Monoid ((<>))
-- import Data.X509
import qualified Data.Map as Map
import DotLock
-- import Codec.Crypto.ECC.Base -- hecc package
import Text.Printf
import qualified CryptoCoins as CryptoCoins
import qualified Hosts
import Network.Socket -- (SockAddr)
import LengthPrefixedBE
import Data.Binary.Put (putWord32be,runPut,putByteString)
import Data.Binary.Get (runGet)
import KeyRing
import Base58
-- instance Default S.ByteString where def = S.empty
-- DER-encoded elliptic curve ids
nistp256_id = 0x2a8648ce3d030107
secp256k1_id = 0x2b8104000a
warn str = hPutStrLn stderr str
{-
RSAPrivateKey ::= SEQUENCE {
version Version,
modulus INTEGER, -- n
publicExponent INTEGER, -- e
privateExponent INTEGER, -- d
prime1 INTEGER, -- p
prime2 INTEGER, -- q
exponent1 INTEGER, -- d mod (p1) -- ?? d mod (p-1)
exponent2 INTEGER, -- d mod (q-1)
coefficient INTEGER, -- (inverse of q) mod p
otherPrimeInfos OtherPrimeInfos OPTIONAL
}
-}
sshrsa :: Integer -> Integer -> Char8.ByteString
sshrsa e n = runPut $ do
putWord32be 7
putByteString "ssh-rsa"
put (LengthPrefixedBE e)
put (LengthPrefixedBE n)
decode_sshrsa :: Char8.ByteString -> Maybe RSAPublicKey
decode_sshrsa bs = do
let (pre,bs1) = Char8.splitAt 11 bs
guard $ pre == runPut (putWord32be 7 >> putByteString "ssh-rsa")
let rsakey = flip runGet bs1 $ do
LengthPrefixedBE e <- get
LengthPrefixedBE n <- get
return $ RSAKey (MPI n) (MPI e)
return rsakey
{-
getPackets :: IO [Packet]
getPackets = do
input <- L.getContents
case decodeOrFail input of
Right (_,_,Message pkts) -> return pkts
Left (_,_,_) -> return []
-}
isEmbeddedSignature (EmbeddedSignaturePacket {}) = True
isEmbeddedSignature _ = False
isCertificationSig (CertificationSignature {}) = True
isCertificationSig _ = True
issuer (IssuerPacket issuer) = Just issuer
issuer _ = Nothing
backsig (EmbeddedSignaturePacket s) = Just s
backsig _ = Nothing
isSubkeySignature (SubkeySignature {}) = True
isSubkeySignature _ = False
isPublicMaster k@(PublicKeyPacket {}) = not $ is_subkey k
isPublicMaster _ = False
verifyBindings keys nonkeys = (top ++ filter isSubkeySignature embedded,othersigs)
where
verified = do
sig <- signatures (Message nonkeys)
let v = verify (Message keys) sig
guard (not . null $ signatures_over v)
return v
(top,othersigs) = partition isSubkeySignature verified
embedded = do
sub <- top
let sigover = signatures_over sub
unhashed = sigover >>= unhashed_subpackets
subsigs = mapMaybe backsig unhashed
-- This should consist only of 0x19 values
-- subtypes = map signature_type subsigs
-- trace ("subtypes = "++show subtypes) (return ())
-- trace ("issuers: "++show (map signature_issuer subsigs)) (return ())
sig <- signatures (Message ([topkey sub,subkey sub]++subsigs))
let v = verify (Message [subkey sub]) sig
guard (not . null $ signatures_over v)
return v
grip k = drop 32 $ fingerprint k
smallpr k = drop 24 $ fingerprint k
disjoint_fp ks = {- concatMap group2 $ -} transpose grouped
where
grouped = groupBy samepr . sortBy (comparing smallpr) $ ks
samepr a b = smallpr a == smallpr b
{-
-- useful for testing
group2 :: [a] -> [[a]]
group2 (x:y:ys) = [x,y]:group2 ys
group2 [x] = [[x]]
group2 [] = []
-}
verifyBindingsEx :: [Packet] -> ([SignatureOver], [SignatureOver]) -- ^ (binding signatures, other signatures)
verifyBindingsEx pkts = bicat . unzip $ do
let (keys,_) = partition isKey pkts
keys <- disjoint_fp keys
return $ verifyBindings keys pkts
where
bicat (xs,ys) = (concat xs,concat ys)
getBindings ::
[Packet]
->
( [([Packet],[SignatureOver])] -- ^ other signatures with key sets
-- that were used for the verifications
, [(Word8,
(Packet, Packet), -- (topkey,subkey)
[String], -- usage flags
[SignatureSubpacket], -- hashed data
[Packet])] -- ^ binding signatures
)
getBindings pkts = (sigs,bindings)
where
(sigs,concat->bindings) = unzip $ do
let (keys,_) = partition isKey pkts
keys <- disjoint_fp keys
let (bs,sigs) = verifyBindings keys pkts
return . ((keys,sigs),) $ do
b <- bs -- trace ("sigs = "++show (map (map signature_issuer . signatures_over) sigs)) bs
i <- map signature_issuer (signatures_over b)
i <- maybeToList i
who <- maybeToList $ find_key fingerprint (Message keys) i
let (code,claimants) =
case () of
_ | who == topkey b -> (1,[])
_ | who == subkey b -> (2,[])
_ -> (0,[who])
let hashed = signatures_over b >>= hashed_subpackets
kind = guard (code==1) >> hashed >>= maybeToList . usage
return (code,(topkey b,subkey b), kind, hashed,claimants)
-- Returned data is simmilar to getBindings but the Word8 codes
-- are ORed together.
accBindings ::
Bits t =>
[(t, (Packet, Packet), [a], [a1], [a2])]
-> [(t, (Packet, Packet), [a], [a1], [a2])]
accBindings bs = as
where
gs = groupBy samePair . sortBy (comparing bindingPair) $ bs
as = map (foldl1 combine) gs
bindingPair (_,p,_,_,_) = pub2 p
where
pub2 (a,b) = (pub a, pub b)
pub a = fingerprint_material a
samePair a b = bindingPair a == bindingPair b
combine (ac,p,akind,ahashed,aclaimaints)
(bc,_,bkind,bhashed,bclaimaints)
= (ac .|. bc,p,akind++bkind,ahashed++bhashed,aclaimaints++bclaimaints)
fpmatch grip key =
(==) Nothing
(fmap (backend (fingerprint key)) grip >>= guard . not)
where
backend xs ys = and $ zipWith (==) (reverse xs) (reverse ys)
listKeys pkts = listKeysFiltered [] pkts
ecc_curve k = printf "%x" num :: String
where unmpi (MPI num) = num
num = maybe 0 unmpi $ lookup 'c' (key k)
listKeysFiltered grips pkts = do
let (certs,bs) = getBindings pkts
as = accBindings bs
defaultkind (k:_) hs = k
defaultkind [] hs = maybe "subkey"
id
( listToMaybe
. mapMaybe (fmap usageString . keyflags)
$ hs)
kinds = map (\(_,_,k,h,_)->defaultkind k h) as
kindwidth = maximum $ map length kinds
kindcol = min 20 kindwidth
code (c,(m,s),_,_,_) = (fingerprint_material m,-c)
ownerkey (_,(a,_),_,_,_) = a
sameMaster (ownerkey->a) (ownerkey->b) = fingerprint_material a==fingerprint_material b
matchgrip _ | null grips = True
matchgrip ((code,(top,sub), kind, hashed,claimants):_) | any (flip fpmatch top . Just) grips = True
matchgrip _ = False
gs = filter matchgrip $ groupBy sameMaster (sortBy (comparing code) as)
showsigs claimants = map (\k -> " " ++ "^ signed: " ++ fingerprint k) claimants
subs@((_,(top,_),_,_,_):_) <- gs
let subkeys = do
(code,(top,sub), kind, hashed,claimants) <- subs
let ar = case code of
0 -> " ??? "
1 -> " --> "
2 -> " <-- "
3 -> " <-> "
formkind = take kindcol $ defaultkind kind hashed ++ repeat ' '
-- torhash = maybe "" id $ derToBase32 <$> derRSA sub
(netid,kind') = maybe (0x0,"bitcoin")
(\n->(CryptoCoins.publicByteFromName n,n))
$ listToMaybe kind
unlines $
concat [ " "
-- , grip top
, ar
, formkind
, " "
, fingerprint sub
-- , " " ++ torhash
-- , " " ++ (concatMap (printf "%02X") $ S.unpack (ecc_curve sub))
] -- ++ ppShow hashed
: if isCryptoCoinKey sub
-- then (" " ++ "B⃦ " ++ bitcoinAddress sub) : showsigs claimants
-- then (" " ++ "BTC " ++ bitcoinAddress sub) : showsigs claimants
then (" " ++ "¢ "++kind'++":" ++ bitcoinAddress netid sub) : showsigs claimants
else showsigs claimants
torkeys = do
(code,(top,sub), kind, hashed,claimants) <- subs
guard ("tor" `elem` kind)
guard (code .&. 0x2 /= 0)
maybeToList $ derToBase32 <$> derRSA sub
uid = {- maybe "" id . listToMaybe $ -} do
(keys,sigs) <- certs
sig <- sigs
guard (isCertificationSig sig)
guard (topkey sig == top)
let issuers = do
sig_over <- signatures_over sig
i <- maybeToList $ signature_issuer sig_over
maybeToList $ find_key (matchpr i) (Message keys) (reverse (take 16 (reverse i)))
(primary,secondary) = partition (==top) issuers
-- trace ("PRIMARY: "++show (map fingerprint primary)) $ return ()
-- trace ("SECONDARY: "++show (map fingerprint secondary)) $ return ()
guard (not (null primary))
let UserIDPacket uid = user_id sig
parsed = parseUID uid
ar = maybe " --> " (const " <-> ") $ do
guard (uid_topdomain parsed == "onion" )
guard ( uid_realname parsed `elem` ["","Anonymous"])
guard ( uid_user parsed == "root" )
let subdom0 = L.fromChunks [encodeUtf8 (uid_subdomain parsed)]
len = L.length subdom0
subdom = Char8.unpack subdom0
match = ( (==subdom) . take (fromIntegral len))
guard (len >= 16)
listToMaybe $ filter match torkeys
unlines $ [ " " ++ ar ++ "@" ++ " " ++ uid_full parsed ]
++ showsigs secondary
-- (_,sigs) = unzip certs
"master-key " ++ fingerprint top ++ "\n" ++ uid ++" ...\n" ++ subkeys ++ "\n"
modifyUID (UserIDPacket str) = UserIDPacket str'
where
(fstname,rst) = break (==' ') str
str' = mod fstname ++ rst
mod "Bob" = "Bob Fucking"
mod x = x
modifyUID other = other
todo = error "unimplemented"
#if MIN_VERSION_base(4,6,0)
#else
lookupEnv var =
handleIO_ (return Nothing) $ fmap Just (getEnv var)
#endif
unmaybe def = fmap (maybe def id)
expandPath path (c:cs) | c/='/' = path ++ "/" ++ (c:cs)
| otherwise = c:cs
expandPath path [] = []
-- type TimeStamp = Word32
-- | Attempts to lock each file in the list.
-- Returns a list of locks and a list of filenames
-- that could not be locked.
lockFiles :: [FilePath] -> IO ( [(DotLock,FilePath)], [FilePath] )
lockFiles fs = do
ls <- forM fs $ \f -> do
lk <- dotlock_create f 0
v <- flip (maybe $ return Nothing) lk $ \lk -> do
e <- dotlock_take lk (-1)
return $ if e==0 then Just lk
else Nothing
return (v,f)
let (lks, fails) = partition (isJust . fst) ls
return (map (\(lk,f)->(fromJust lk,f)) lks, map snd fails)
unlockFiles lks = forM_ lks $ \(lk,f) -> do
-- warn $ "unlocking "++show f
dotlock_release lk
{-
options_from_file ::
(forall a. [String] -> Term a -> IO (Either EvalExit a))
-> Term b
-> (String,String,Term (Maybe String))
-> ([String],Term (Maybe String))
-> IO [String]
options_from_file unwrapCmd term (homevar,appdir,home) (optfile_alts,options_file) = doit
where
homedir = envhomedir <$> home
envhomedir opt = do
gnupghome <- lookupEnv homevar >>=
\d -> return $ d >>= guard . (/="") >> d
home <- flip fmap getHomeDirectory $
\d -> fmap (const d) $ guard (d/="")
let homegnupg = (++('/':appdir)) <$> home
let val = (opt `mplus` gnupghome `mplus` homegnupg)
return $ val
doit = do
args <- getArgs
{-
let wants_help =
not . null $ filter cryForHelp args
where cryForHelp "--help" = True
cryForHelp "--version" = True
cryForHelp x =
and (zipWith (==) x "--help=")
-}
(o,h) <- do
val <- unwrapCmd args (liftA2 (,) options_file homedir)
case val of
Left e -> return (Nothing,Nothing)
Right (o,h) -> (o,) <$> h
ofile <- fmap listToMaybe . flip (maybe (return [])) h $ \h ->
let optfiles = map (second ((h++"/")++))
(maybe optfile_alts' (:[]) o')
optfile_alts' = zip (False:repeat True) optfile_alts
o' = fmap (False,) o
in filterM (doesFileExist . snd) optfiles
args <- flip (maybe $ return args) ofile $ \(forgive,fname) -> do
let h' = fromJust h
newargs <- (:) <$> pure ("homedir "++h') <*> parseOptionFile fname
let toArgs = toHead ("--"++) . words
toHead f (x:xs) = f x : xs
toHead f [] = []
voidTerm = fmap (const ())
appendArgs as [] = return as
appendArgs as (configline:cs) = do
let xs = toArgs configline
w <-unwrap (xs++as) (voidTerm term,defTI)
case w of
Left _ -> appendArgs as cs
Right _ -> appendArgs (xs++as) cs
-- TODO: check errors if forgive = False
appendArgs args newargs
return args
runWithOptionsFile :: (Term (IO b), TermInfo) -> IO b
runWithOptionsFile (term,ti) = do
as <- options_from_file unwrapCmd
term
("GNUPGHOME",".gnupg",opt_homedir)
(["keys.conf","gpg.conf-2","gpg.conf"]
,opt_options)
q <- eval as (term , ti)
q
where
unwrapCmd args term = unwrap args (term,defTI)
runChoiceWithOptionsFile ::
(Term (IO b), TermInfo) -> [(Term (IO b), TermInfo)] -> IO b
runChoiceWithOptionsFile (realterm,ti) choices = do
as <- options_from_file unwrapCmd
realterm
("GNUPGHOME",".gnupg",opt_homedir)
(["keys.conf","gpg.conf-2","gpg.conf"]
,opt_options)
-- putStrLn $ "as = " ++ show as
q <- evalChoice as (realterm , ti) choices
q
where
unwrapCmd args t =
unwrapChoice args (realterm <:> t,ti) (map (neuter t) choices)
neuter term (t,ti) = (t <:> term, ti)
data Command =
List
| Autosign
deriving (Eq,Show,Read,Enum)
capitolizeFirstLetter (x:xs) = toUpper x : xs
capitolizeFirstLetter xs = xs
instance ArgVal Command where
converter =
( maybe (Left $ text "unknown command") Right
. fmap fst . listToMaybe . reads
. capitolizeFirstLetter . map toLower
, text . map toLower . show
)
class AutoMaybe a
instance AutoMaybe Command
instance (ArgVal a, AutoMaybe a) => ArgVal (Maybe a) where
converter =
( toRight Just . fst converter
, maybe (text "(unspecified)") id . fmap (snd converter)
)
toRight f (Right x) = Right (f x)
toRight f (Left y) = Left y
cmd :: Term Command
cmd = required . pos 0 Nothing $ posInfo
{ posName = "command"
, posDoc = "What action to perform."
}
a <:> b = flip const <$> a <*> b
infixr 2 <:>
selectAction cmd actions = actions !! fromEnum cmd
cmdInfo :: ArgVal cmd =>
cmd -> String -> Term a -> (cmd, (Term a, TermInfo))
cmdInfo cmd doc action =
( cmd
, ( action
, defTI { termName = print cmd
, termDoc = doc } ) )
where
print = show . snd converter
cmdlist :: (Command, (Term (IO ()), TermInfo))
cmdlist = cmdInfo List "list key pairs for which secrets are known" $
(>>= putStrLn . listKeys . unMessage) <$> secret_packets
where unMessage (Message pkts) = pkts
cmdautosign = cmdInfo Autosign "auto-sign tor-style uids" $
pure (putStrLn "autosign")
multiCommand ::
TermInfo
-> [(Command, (Term a, TermInfo))]
-> ( (Term a, TermInfo)
, [(Term a, TermInfo)] )
multiCommand ti choices =
( ( selectAction <$> cmd <*> sequenceA (map strip choices)
, ti )
, map snd choices )
where
selectAction cmd choices =
fromJust $ lookup (cmd::Command) choices
strip (cmd,(action,_)) = fmap (cmd,) action
-}
trimCR bs = fst $ S.spanEnd (\x -> x==10 || x==13) bs
guessKeyFormat 'P' "ssh-client" = "SSH"
guessKeyFormat 'S' "ssh-client" = "PEM"
guessKeyFormat 'S' "ssh-host" = "PEM"
guessKeyFormat _ _ = "PEM" -- "PGP"
readPublicKey :: Char8.ByteString -> RSAPublicKey
readPublicKey bs = maybe er id $ do
let (pre,bs1) = Char8.splitAt 7 bs
guard $ pre == "ssh-rsa"
let (sp,bs2) = Char8.span isSpace bs1
guard $ not (Char8.null sp)
bs3 <- listToMaybe $ Char8.words bs2
qq <- L.pack `fmap` Base64.decode (Char8.unpack bs3)
decode_sshrsa qq
where
er = error "Unsupported key format"
{-
getPassphrase cmd =
case passphrase_fd cmd of
Just fd -> do pwh <- fdToHandle (toEnum fd)
fmap trimCR $ S.hGetContents pwh
Nothing -> return ""
-}
#define HOMEOPTION (def &= explicit &= name "homedir" &= typDir )
writeOutKeyrings :: Map.Map FilePath t -> KeyDB -> IO ()
writeOutKeyrings lkmap db = do
let ks = Map.elems db
fs = Map.keys (foldr unionfiles Map.empty ks)
where unionfiles (KeyData p _ _ _) m =
Map.union m (locations p)
fromfile f (KeyData p _ _ _) = Map.member f $ locations p
let s = do
f <- fs
let x = do
d@(KeyData p _ _ _) <- filter (fromfile f) (sortByHint f keyMappedPacket ks)
n <- maybeToList $ Map.lookup f (locations p)
flattenTop f (originallyPublic n) d
changes = filter isnew x
where isnew p = isNothing (Map.lookup f $ locations p)
{-
trace (unlines $ ( (f ++ ":") : map (showPacket . packet) x) ++
( "CHANGES: " : map ((" "++) . showPacket . packet) changes)) $ do
-}
return (f,(changes,x))
towrites <- fmap catMaybes $ Control.Monad.forM s $ \(f,(changes,x)) -> do
let noop = return Nothing
write f = return (Just f)
case changes of
[] -> noop -- warn (f ++": nothing to do.") >> noop
cs -> case Map.lookup f lkmap of
Just lk -> do
forM_ cs $ \c -> warn $ f++": new "++showPacket (packet c)
write (f,lk,x)
Nothing -> do
forM_ cs $ \c -> warn $ f++": missing "++showPacket (packet c)
noop
forM_ towrites $ \(f,lk,x) -> do
let m = Message $ map packet x
-- warn $ "writing "++f
L.writeFile f (encode m)
toLast f [] = []
toLast f [x] = [f x]
toLast f (x:xs) = x : toLast f xs
partitionStaticArguments specs args = psa args
where
smap = Map.fromList specs
psa [] = ([],[])
psa (a:as) =
case Map.lookup a smap of
Nothing -> second (a:) $ psa as
Just n -> first ((a:take n as):) $ psa (drop n as)
show_wk secring_file grip db = do
let sec_db = Map.filter gripmatch db
gripmatch (KeyData p _ _ _) =
Map.member secring_file (locations p)
Message sec = flattenKeys False sec_db
putStrLn $ listKeysFiltered (maybeToList grip) sec
show_all db = do
let Message packets = flattenKeys True db
putStrLn $ listKeys packets
show_whose_key input_key db = do
flip (maybe $ return ()) input_key $ \input_key -> do
let ks = whoseKey input_key db
case ks of
[KeyData k _ uids _] -> do
putStrLn $ fingerprint (packet k)
mapM_ putStrLn $ Map.keys uids
(_:_) -> error "ambiguous"
[] -> return ()
show_pem keyspec wkgrip db = do
let s = parseSpec wkgrip keyspec
flip (maybe $ warn (keyspec ++ ": not found") >> return ())
(selectPublicKey s db)
$ \k -> do
let rsa = pkcs8 . fromJust $ rsaKeyFromPacket k
der = encodeASN1 DER (toASN1 rsa [])
qq = Base64.encode (L.unpack der)
putStrLn $
writePEM "PUBLIC KEY" qq -- ("TODO "++show keyspec)
show_ssh keyspec wkgrip db = do
let s = parseSpec wkgrip keyspec
flip (maybe $ warn (keyspec ++ ": not found") >> return ())
(selectPublicKey s db)
$ \k -> do
let Just (RSAKey (MPI n) (MPI e)) = rsaKeyFromPacket k
bs = sshrsa e n
blob = Base64.encode (L.unpack bs)
putStrLn $ "ssh-rsa " ++ blob
show_key keyspec wkgrip db = do
let s = parseSpec "" keyspec
let ps = do
(_,k) <- filterMatches (fst s) (Map.toList db)
mp <- flattenTop "" True k
return $ packet mp
-- putStrLn $ "show key " ++ show s
putStrLn $ listKeys ps
show_wip keyspec wkgrip db = do
let s = parseSpec wkgrip keyspec
flip (maybe $ warn (keyspec ++ ": not found") >> return ())
(selectSecretKey s db)
$ \k -> do
let nwb = maybe 0x80 CryptoCoins.secretByteFromName $ snd s
putStrLn $ walletImportFormat nwb k
{-
applyCurve curve x = x*x*x + x*a + b where (a,b)=(geta curve,getb curve)
secp256k1_oid = [1,3,132,0,10]
secp256k1_curve = ECi l a b p r
where
-- y² = x³ + 7 (mod p)
p = 0x0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F
a = 0
b = 7
-- group order (also order of base point G)
r = n
n = 0x0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141
-- cofactor
h = 1
-- bit length
l = 256
secp256k1_G = ECPa secp256k1_curve
0x79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798
0x483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8
{-
The base point G in compressed form is:
G = 02 79BE667E F9DCBBAC 55A06295 CE870B07 029BFCDB 2DCE28D9 59F2815B 16F81798
and in uncompressed form is:
G = 04 79BE667E F9DCBBAC 55A06295 CE870B07 029BFCDB 2DCE28D9 59F2815B 16F81798
483ADA77 26A3C465 5DA4FBFC 0E1108A8 FD17B448 A6855419 9C47D08F FB10D4B8
-}
-}
cannonical_eckey x y = 0x4:pad32(numToBytes x) ++ pad32(numToBytes y) :: [Word8]
where
numToBytes n = reverse $ unfoldr getbyte n
where
getbyte d = do
guard (d/=0)
let (q,b) = d `divMod` 256
return (fromIntegral b,q)
pad32 xs = replicate zlen 0 ++ xs
where
zlen = 32 - length xs
oidToDER ns = S.pack $ b1 : concatMap encode ys
where
(xs,ys) = splitAt 2 ns
b1 = fromIntegral $ foldl' (\a b->a*40+b) 0 xs
encode x | x <= 127 = [fromIntegral x]
| otherwise = (\(x:xs)-> reverse (x:map (0x80 .|.) xs))
(base128r x)
base128r n = unfoldr getbyte n
where
getbyte d = do
guard (d/=0)
let (q,b) = d `divMod` 128
return (fromIntegral b,q)
nistp256=[1,2,840,10045,3,1,7]
nistp256_der=[0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x07]
-- "\x2a\x86\x48\xce\x3d\x03\x01\x07"
{- OID Curve description Curve name
----------------------------------------------------------------
1.2.840.10045.3.1.7 NIST Curve P-256 [FIPS 186-2] "NIST P-256"
1.3.132.0.34 NIST Curve P-384 [FIPS 186-2] "NIST P-384"
1.3.132.0.35 NIST Curve P-521 [FIPS 186-2] "NIST P-521"
Implementations MUST implement "NIST P-256", "NIST P-384" and "NIST
P-521". The hexadecimal representation used in the public and
private key encodings are:
Curve Name Len Hexadecimal representation of the OID
----------------------------------------------------------------
"NIST P-256" 8 0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x03, 0x01, 0x07
"NIST P-384" 6 0x05, 0x2B, 0x81, 0x04, 0x00, 0x22
"NIST P-521" 6 0x05, 0x2B, 0x81, 0x04, 0x00, 0x23
-}
bitcoinAddress network_id k = address
where
Just (MPI x) = lookup 'x' (key k)
Just (MPI y) = lookup 'y' (key k)
pub = cannonical_eckey x y
hash = S.cons network_id . RIPEMD160.hash . SHA256.hash . S.pack $ pub
address = base58_encode hash
-- gpg supported ECDSA curve: 2A8648CE3D030107
-- 2A 86 48 CE 3D 03 01 07
-- 1,2,134,72,206,61,3,1,7
-- 6*128+0x48 840
-- 0x4e*128+0x3d 10045
-- 1.2.840.10045.3.1.7 --> NIST P-256
--
{-
doBTCImport doDecrypt db (ms,subspec,content) = do
let fetchkey = do
timestamp <- now
let mbk = fmap discardNetworkID $ decode_btc_key timestamp content
discardNetworkID = snd
return $ maybe (Message []) id mbk
let error s = do
warn s
exitFailure
flip (maybe $ error "Cannot import master key.")
subspec $ \tag -> do
Message parsedkey <- fetchkey
flip (maybe $ return db)
(listToMaybe parsedkey) $ \key -> do
let (m0,tailms) = splitAt 1 ms
when (not (null tailms) || null m0)
$ error "Key specification is ambiguous."
doImportG doDecrypt db m0 tag "" key
-}
-- We return into IO in case we want to make a signature here.
setHostnames :: (SockAddr -> Bool) -> Hosts.Hosts -> KeyData -> IO KeyData
setHostnames pred hosts kd@(KeyData topmp topsigs uids subs) =
-- TODO: we are removing the origin from the UID OriginMap,
-- when we should be removing origins from the locations
-- field of the sig's MappedPacket records.
-- Call getHostnames and compare to see if no-op.
if not (pred addr) || names0 == names \\ onions
then {- trace (unlines [ "setHostnames NO-OP: gpg: "++show (map Char8.unpack onions, map Char8.unpack names0)
, " file: "++show (map Char8.unpack names)
, " pred: "++show (pred addr)]) -}
(return kd)
else do
-- We should be sure to remove origins so that the data is written
-- (but only if something changed).
-- Filter all hostnames present in uids
-- Write notations into first uid
{-
trace (unlines [ "setHostnames ACTION: gpg: "++show (map Char8.unpack onions, map Char8.unpack names0)
, " file: "++show (map Char8.unpack names) ]) $ do
-}
return $ KeyData topmp topsigs uids1 subs
where
topk = packet topmp
addr = fingerdress topk
names :: [Char8.ByteString]
names = Hosts.namesForAddress addr hosts
(_,(onions,names0)) = getHostnames kd
notations = map (NotationDataPacket True "hostname@" . Char8.unpack) (names \\ onions)
isName (NotationDataPacket True "hostname@" _) = True
isName _ = False
uids0 = fmap zapIfHasName uids
fstuid = head $ do
p <- map packet $ flattenAllUids "" True uids
guard $ isUserID p
return $ uidkey p
uids1 = Map.adjust addnames fstuid uids0
addnames (sigs,om) = (fmap f ss ++ ts, om ) -- XXX: removed om=Map.empty, preserve UserId origin
where
(ss,ts) = splitAt 1 sigs
f (sig,tm) = if isSignaturePacket (packet sig) then (sig { packet = p', locations=Map.empty }, tm)
else (sig, tm)
where p' = (packet sig) { unhashed_subpackets=uh }
uh = unhashed_subpackets (packet sig) ++ notations
zapIfHasName (sigs,om) = if or bs then (sigs',om) -- XXX: removed om=Map.empty to preserve UserID origin
else (sigs,om)
where
(bs, sigs') = unzip $ map unhash sigs
unhash (sig,tm) = ( not (null ns)
, ( sig { packet = p', locations = Map.empty }
, tm ) )
where
psig = packet sig
p' = if isSignaturePacket psig then psig { unhashed_subpackets = ps }
else psig
uh = unhashed_subpackets $ psig
(ns,ps) = partition isName uh
socketFamily (SockAddrInet _ _) = AF_INET
socketFamily (SockAddrInet6 _ _ _ _) = AF_INET6
socketFamily (SockAddrUnix _) = AF_UNIX
hasFingerDress :: KeyDB -> SockAddr -> Bool
hasFingerDress db addr | socketFamily addr/=AF_INET6 = False
hasFingerDress db addr = pre=="fd" && isJust (selectPublicKey (KeyGrip g',Nothing) db)
where
(pre,g) = splitAt 2 $ filter (/=':') $ Hosts.inet_ntop addr
g' = map toUpper g
fingerdress :: Packet -> SockAddr
fingerdress topk = maybe zero id $ Hosts.inet_pton addr_str
where
zero = SockAddrInet 0 0
addr_str = colons $ "fd" ++ (drop 10 $ map toLower $ fingerprint topk)
colons (a:b:c:d:xs@(_:_)) = [a,b,c,d,':'] ++ colons xs
colons xs = xs
{-
onionName :: KeyData -> (SockAddr,L.ByteString)
onionName kd = (addr,name)
where
(addr,(name:_,_)) = getHostnames kd
-}
getHostnames :: KeyData -> (SockAddr, ([L.ByteString],[L.ByteString]))
getHostnames (KeyData topmp _ uids subs) = (addr,(onames,othernames))
where
othernames = do
mp <- flattenAllUids "" True uids
let p = packet mp
guard $ isSignaturePacket p
uh <- unhashed_subpackets p
case uh of
NotationDataPacket True "hostname@" v
-> return $ Char8.pack v
_ -> mzero
addr = fingerdress topk
-- name = maybe "" id $ listToMaybe onames -- TODO: more than one tor key?
topk = packet topmp
torkeys = do
SubKey k sigs <- Map.elems subs
let subk = packet k
let sigs' = do
torsig <- filter (has_tag "tor") $ map (packet . fst) sigs
sig <- (signatures $ Message [topk,subk,torsig])
let v = verify (Message [topk]) sig
-- Require parent's signature
guard (not . null $ signatures_over v)
let unhashed = unhashed_subpackets torsig
subsigs = mapMaybe backsig unhashed
-- This should consist only of 0x19 values
-- subtypes = map signature_type subsigs
sig' <- signatures . Message $ [topk,subk]++subsigs
let v' = verify (Message [subk]) sig'
-- Require subkey's signature
guard . not . null $ signatures_over v'
return torsig
guard (not $ null sigs')
return $ subk
has_tag tag p = isSignaturePacket p
&& or [ tag `elem` mapMaybe usage (hashed_subpackets p)
, tag `elem` map usageString (mapMaybe keyflags (hashed_subpackets p)) ]
-- subkeyPacket (SubKey k _ ) = k
onames :: [L.ByteString]
onames = map ( (<> ".onion")
. Char8.pack
. take 16
. torhash )
torkeys
whoseKey :: RSAPublicKey -> KeyDB -> [KeyData]
whoseKey rsakey db = filter matchkey (Map.elems db)
where
matchkey (KeyData k _ _ subs) =
not . null . filter (ismatch k) $ Map.elems subs
ismatch k (SubKey mp sigs) =
Just rsakey == rsaKeyFromPacket (packet mp)
&& any (check (packet k) (packet mp)) sigs
check k sub (sig,_) = not . null $ do
s <- signatures . Message $ [k,sub,packet sig]
fw <- signatures_over $ verify (Message [k]) s
subsig <- mapMaybe backsig (unhashed_subpackets $ packet sig)
subsig_so <- signatures (Message [k,sub,subsig])
guard ( isSubkeySignature subsig_so
&& isSameKey (topkey subsig_so) k
&& isSameKey (subkey subsig_so) sub )
s2 <- signatures . Message $ [k,sub,subsig]
signatures_over $ verify (Message [sub]) s2
workingKey grip use_db = listToMaybe $ do
fp <- maybeToList grip
elm <- Map.toList use_db
guard $ matchSpec (KeyGrip fp) elm
return $ keyPacket (snd elm)
has_good_sig wk (KeyData k sigs uids subs) = any goodsig $ Map.toList uids
where
goodsig (uidstr,(sigs,_)) = not . null $ do
sig0 <- fmap (packet . fst) sigs
pre_ov <- signatures (Message [packet k, UserIDPacket uidstr, sig0])
signatures_over $ verify (Message [wk]) pre_ov
markForImport
:: Ord d =>
Map.Map String a
-> Maybe String
-> FilePath
-> Map.Map d KeyData
-> IO (Map.Map d KeyData)
markForImport margs grip pubring db = maybe (return db) import_db $ wantToImport
where wantToImport = mplus import_f importifauth_f
where
import_f = do Map.lookup "--import" margs
return dont_have
importifauth_f = do Map.lookup "--import-if-authentic" margs
return isauth
dont_have (KeyData p _ _ _) = not . Map.member pubring
$ locations p
isauth keydata = dont_have keydata && maybe False (`has_good_sig` keydata) wk
where wk = workingKey grip db
import_db dont_have = do
forM_ to_alters $ \(_,KeyData c _ _ _) ->
warn $ pubring ++ ": new "++showPacket (packet c)
let db' = Map.union (Map.fromList altered)
db
return db'
where
to_alters = filter (dont_have . snd) $ Map.toList db
altered = map (second append_loc) to_alters
append_loc (KeyData p a b c) = KeyData p' a b c
where p' = p { locations = Map.insert pubring
(origin (secretToPublic (packet p)) (-1))
(locations p)
}
kiki_usage = do
putStr . unlines $
["kiki - a pgp key editing utility"
,""
,"kiki [OPTIONS]"
,""
," kiki merges a set of keyring files into a combined database and then"
," uses the database to update the files so that they have the most complete"
," information."
,""
," The files pubring.gpg and subring.gpg in the directory specified by the "
," --homedir option are implicitly included in the keyring set."
,""
," kiki can also import or export secret subkeys by using the --keypairs option."
,""
," Subkeys that are imported with kiki are given an annotation \"usage@\" which"
," indicates what the key is for. This tag can be used as a SPEC to select a"
," particular key. Master keys may be specified by using fingerprints or by"
," specifying a substring of an associated UID."
,""
,"Flags:"
," --homedir DIR"
," Where to find the the files secring.gpg and pubring.gpg. The "
," default location is taken from the environment variable "
," GNUPGHOME."
,""
," --passphrase-fd N"
," Read passphrase from the given file descriptor."
,""
," --import Add master keys to pubring.gpg. Without this option, only UID"
," and subkey data is updated. "
,""
," --import-if-authentic"
," Add signed master keys to pubring.gpg. Like --import except that"
," only keys with signatures from the working key (--show-wk) are"
," imported."
,""
," --autosign Sign all cross-certified tor-style UIDs."
," A tor-style UID is of the form:"
," Anonymous <root@HOSTNAME.onion>"
," It is considered cross certified if there exists a cross-certified"
," 'tor' subkey corresponding to the address HOSTNAME.onion."
,""
,"Merging:"
," --keyrings FILE FILE..."
," Provide keyring files other than the implicit secring.gpg and"
," pubring.gpg in the --homedir. This option is implicit unless"
," --keypairs or --wallets is used."
,""
," --wallets FILE FILE..."
," Provide wallet files with secret crypto-coin keys in Wallet"
," Import Format. The keys will be treated as subkeys of your"
," current working key (the one shown by --show-wk)."
,""
," --keypairs KEYSPEC KEYSPEC..."
," Each KEYSPEC specifies that a key should match the content and"
," timestamp of an external PKCS #1 private RSA key file."
," "
," KEYSPEC ::= SPEC=FILE{CMD} "
,""
," If neither SPEC or FILE match any keys, then the CMD will be "
," executed in order to create the FILE."
,""
,"Output:"
," --show-wk Show fingerprints for the working key (which will be used to"
," make signatures) and all its subkeys and UID."
,""
," --show-key SPEC"
," Show fingerprints for the specified key and all its subkeys"
," and UID."
,""
," --show-all Show fingerprints and UIDs and usage tags for all known keys."
,""
," --show-whose-key"
," Shows the fingerprint and UIDs of the key that owns the one that"
," is input on stdin in ssh-rsa format."
,""
," --show-pem SPEC"
," Outputs the PKCS #8 public key corresponding to SPEC."
,""
," --show-ssh SPEC"
," Outputs the ssh-rsa blob for the specified public key."
,""
," --show-wip SPEC"
," Outputs the secret crypto-coin key in Wallet Input Format."
,""
," --help Shows this help screen."
]
main = do
dotlock_init
{-
args <- cmdArgs $ modes
[ Cross_Merge HOMEOPTION
(def &= opt ("passphrase"::String)
&= typ "FD"
&= (help . concat) ["file descriptor from "
,"which to read passphrase"])
(def &= args &= typFile)
&= help "Merge multiple secret keyrings to stdout."
]
&= program "kiki"
&= summary "kiki - a pgp key editing utility"
doCmd args
-}
args_raw <- getArgs
let (args,trail1) = break (=="--") args_raw
trail = drop 1 trail1
(sargs,margs) =
(sargs, foldl' (\m (k:xs)->Map.alter (appendArgs k xs) k m)
Map.empty
gargs)
where (sargs,vargs) = partitionStaticArguments sargspec args
sargspec = [ ("--homedir",1)
, ("--passphrase-fd",1)
, ("--import",0)
, ("--autosign",0)
, ("--import-if-authentic",0)
, ("--show-wk",0)
, ("--show-all",0)
, ("--show-whose-key",0)
, ("--show-key",1)
, ("--show-pem",1)
, ("--show-ssh",1)
, ("--show-wip",1)
, ("--help",0)
]
argspec = map fst sargspec ++ ["--keyrings"
,"--keypairs"
,"--wallets"
,"--hosts"]
-- "--bitcoin-keypairs"
-- Disabled. We shouldn't accept private key
-- data on the command line.
args' = if map (take 1) (take 1 vargs) == ["-"]
then vargs
else "--keyrings":vargs
gargs = (sargs ++)
. toLast (++trail)
. groupBy (\_ s-> take 1 s /= "-")
$ args'
appendArgs k xs opt =
if k `elem` argspec
then Just . maybe xs (++xs) $ opt
else error . unlines $ [ "unrecognized option "++k
, "Use --help for usage." ]
-- putStrLn $ "margs = " ++ show (Map.assocs margs)
unkeysRef <- newIORef Map.empty
pwRef <- newIORef Nothing
let keypairs0 =
flip map (maybe [] id $ Map.lookup "--keypairs" margs) $ \specfile -> do
let (spec,efilecmd) = break (=='=') specfile
guard $ take 1 efilecmd=="="
let filecmd = drop 1 efilecmd
let (file,bcmdb0) = break (=='{') filecmd
bcmdb = if null bcmdb0 then "{}" else bcmdb0
guard $ take 1 bcmdb=="{"
let bdmcb = (dropWhile isSpace . reverse) bcmdb
guard $ take 1 bdmcb == "}"
let cmd = (drop 1 . reverse . drop 1) bdmcb
Just (spec,file,cmd)
btcpairs0 =
flip map (maybe [] id $ Map.lookup "--bitcoin-keypairs" margs) $ \specfile -> do
let (spec,efilecmd) = break (=='=') specfile
(spec,protocnt) <- do
return $ if take 1 efilecmd=="=" then (spec,drop 1 efilecmd)
else ("",spec)
let (proto,content) = break (==':') protocnt
spec <- return $ if null spec then "bitcoin" else spec
return $
if take 1 content =="=" then (spec,proto,drop 1 content)
else (spec,"base58",proto)
{-
publics =
flip map (maybe [] id $ Map.lookup "--public" margs) $ \specfile -> do
let (spec,efile) = break (=='=') specfile
guard $ take 1 efile=="="
let file= drop 1 efile
Just (spec,file)
-}
keyrings_ = maybe [] id $ Map.lookup "--keyrings" margs
wallets = maybe [] id $ Map.lookup "--wallets" margs
passphrase_fd = concat <$> Map.lookup "--passphrase-fd" margs
decrypt wk = do
-- warn $ "decryptKey "++fingerprint wk
unkeys <- readIORef unkeysRef
let kk = keykey wk
flip (flip maybe $ return . Just) (Map.lookup kk unkeys) $ do
let ret wkun = do writeIORef unkeysRef (Map.insert kk wkun unkeys)
return (Just wkun)
if symmetric_algorithm wk == Unencrypted then ret wk else do
pw <- do
pw <- readIORef pwRef
flip (flip maybe return) pw $ do
case passphrase_fd of
Just fd -> do pwh <- fdToHandle (read fd)
pw <- fmap trimCR $ S.hGetContents pwh
writeIORef pwRef (Just pw)
return pw
Nothing -> return ""
let wkun = do
k <- decryptSecretKey pw wk
guard (symmetric_algorithm k == Unencrypted)
return k
maybe (return Nothing) ret wkun
when (not . null $ filter isNothing keypairs0) $ do
warn "syntax error"
exitFailure
input_key <- maybe (return Nothing)
(const $ fmap (Just . readPublicKey) Char8.getContents)
$ Map.lookup "--show-whose-key" margs
let keypairs = catMaybes keypairs0
btcpairs = catMaybes btcpairs0
{-
putStrLn $ "wallets = "++show wallets
putStrLn $ "keypairs = "++show keypairs
putStrLn $ "keyrings = "++show keyrings_
putStrLn $ "publics = "++show publics
-}
let auto_sign_feature rt = do
use_db <-
flip (maybe $ return (rtKeyDB rt))
(lookup "--autosign" $ map (\(x:xs)->(x,xs)) sargs)
$ \_ -> do
let keys = map keyPacket $ Map.elems (rtKeyDB rt)
wk = workingKey (rtGrip rt) (rtKeyDB rt)
-- g <- newGenIO
-- stamp <- now
wkun <- flip (maybe $ return Nothing) wk $ \wk -> do
wkun <- decrypt wk
maybe (error $ "Bad passphrase?") (return . Just) wkun
-- return . snd $ Map.mapAccum (signTorIds stamp wkun keys) g use_db
Traversable.mapM (signTorIds wkun keys) (rtKeyDB rt)
return use_db
let doHostNames db = do
let hns = maybe [] id $ Map.lookup "--hosts" margs
hostdbs0 <- mapM (fmap Hosts.decode . L.readFile) hns
let gpgnames = map getHostnames $ Map.elems db
os = do
(addr,(ns,_)) <- gpgnames
n <- ns
return (addr,n)
setOnions hosts = foldl' (flip $ uncurry Hosts.assignName) hosts os
-- we ensure .onion names are set properly
hostdbs = map setOnions hostdbs0
outgoing_names = do
(addr,(_,gns)) <- gpgnames
guard . not $ null gns
guard $ all (null . Hosts.namesForAddress addr) hostdbs0
return addr
-- putStrLn $ "hostdbs = " ++ show hostdbs
-- 1. let U = union all the host dbs
-- preserving whitespace and comments of the first
let u0 = foldl' Hosts.plus Hosts.empty hostdbs
-- we filter U to be only finger-dresses
u1 = Hosts.filterAddrs (hasFingerDress db) u0
-- let nf h = map Char8.unpack $ Hosts.namesForAddress (fromJust $ Hosts.inet_pton "fdf4:ed98:29c7:6226:9bde:a5b4:d564:3321") h
{-
putStrLn $ "_ = {\n" ++ show (head hostdbs) ++ "}"
putStrLn $ "--> " ++ show (nf (head hostdbs))
putStrLn $ "u0 = {\n" ++ show u0 ++ "}"
putStrLn $ "--> " ++ show (nf u0)
putStrLn $ "u1 = {\n" ++ show u1 ++ "}"
putStrLn $ "--> " ++ show (nf u1)
-}
-- 2. replace gpg annotations with those in U
-- forM use_db
db' <- Traversable.mapM (setHostnames (\a -> not $ elem a outgoing_names) u1) db
-- 3. add hostnames from gpg for addresses not in U
let u = foldl' f u1 ans
ans = reverse $ do
(addr,(_,ns)) <- gpgnames
guard $ addr `elem` outgoing_names -- . null $ Hosts.namesForAddress addr u0
n <- ns
return (addr,n)
f h (addr,n) = Hosts.assignNewName addr n h
{-
putStrLn $ "u = {\n" ++ show u ++ "}"
putStrLn $ "--> " ++ show (nf u)
-}
-- 4. for each host db H, union H with U and write it out as H'
-- only if there is a non-empty diff
forM_ (zip hns $ zip hostdbs0 hostdbs) $ \(fname,(h0,h1)) -> do
let h = h1 `Hosts.plus` u
d = Hosts.diff h0 h
fnamecolon = Char8.pack fname <> ": "
{-
putStrLn $ "h = {\n" ++ show h ++ "}"
putStrLn $ "--> " ++ show (nf h)
-}
Char8.hPutStrLn stderr $ Char8.unlines (map (fnamecolon <>) d)
when (not $ null d) $ L.writeFile fname $ Hosts.encode h
return ()
return db'
let homespec = join . take 1 <$> Map.lookup "--homedir" margs
passfd = fmap (FileDesc . read) passphrase_fd
pems = flip map keypairs
$ \(usage,path,cmd) ->
let cmd' = guard (not $ null cmd) >> return cmd
in (ArgFile path, (MutableRef cmd', PEMFile usage))
walts = map (\fname -> (ArgFile fname, (MutableRef Nothing, WalletFile)))
wallets
rings = map (\fname -> (ArgFile fname, (MutableRef Nothing, KeyRingFile passfd)))
keyrings_
kikiOp = KeyRingData
{ kFiles = Map.fromList $
[ ( HomeSec, (MutableRef Nothing, KeyRingFile passfd) )
, ( HomePub, (MutableRef Nothing, KeyRingFile Nothing) )
]
++ rings
++ pems
++ walts
, kImports = Map.empty
, homeSpec = homespec
}
KikiResult rt report <- runKeyRing kikiOp
case rt of
KikiSuccess rt -> do -- interpret --show-* commands.
let grip = rtGrip rt
let shspec = Map.fromList [("--show-wk", const $ show_wk (rtSecring rt) grip)
,("--show-all",const $ show_all)
,("--show-whose-key", const $ show_whose_key input_key)
,("--show-key",\[x] -> show_key x $ maybe "" id grip)
,("--show-pem",\[x] -> show_pem x $ maybe "" id grip)
,("--show-ssh",\[x] -> show_ssh x $ maybe "" id grip)
,("--show-wip",\[x] -> show_wip x $ maybe "" id grip)
,("--help", \_ _ ->kiki_usage)]
shargs = mapMaybe (\(x:xs) -> (,xs) <$> Map.lookup x shspec) sargs
forM_ shargs $ \(cmd,args) -> cmd args (rtKeyDB rt)
e -> putStrLn $ show (fmap (const ()) e)
putStrLn $ show report
return()
where
getTorKeys pub = do
xs <- groupBindings pub
(_,(top,sub),us,_,_) <- xs
guard ("tor" `elem` us)
let torhash = maybe "" id $ derToBase32 <$> derRSA sub
return (top,(torhash,sub))
signTorIds selfkey keys kd@(KeyData k ksigs umap submap) = do
umap' <- Traversable.mapM signIfTor (Map.mapWithKey (,) umap)
return (KeyData k ksigs umap' submap) :: IO KeyData
where
mkey = packet k
signIfTor (str,ps) =
if isTorID str
then do
let uidxs0 = map packet $ flattenUid "" True (str,ps)
-- addition<- signSelfAuthTorKeys' selfkey g keys grip timestamp mkey uidxs0
additional <- signSelfAuthTorKeys' selfkey keys grip mkey uidxs0
let ps' = ( map ( (,tmap) . toMappedPacket om) additional
++ fst ps
, Map.union om (snd ps) )
toMappedPacket om p = (mappedPacket "" p) {locations=om}
om = Map.singleton "--autosign" (origin p (-1)) where p = UserIDPacket str
tmap = Map.empty
return ps'
else return ps
torbindings = getTorKeys (map packet $ flattenTop "" True kd)
isTorID str = and [ uid_topdomain parsed == "onion"
, uid_realname parsed `elem` ["","Anonymous"]
, uid_user parsed == "root"
, fmap (match . fst) (lookup mkey torbindings)
== Just True ]
where parsed = parseUID str
match = ( (==subdom) . take (fromIntegral len))
subdom0 = L.fromChunks [encodeUtf8 (uid_subdomain parsed)]
subdom = Char8.unpack subdom0
len = T.length (uid_subdomain parsed)
signSelfAuthTorKeys' selfkey keys grip mainpubkey (uid:xs') = do
new_sig <- let wkun = fromJust selfkey
tor_ov = torSigOver mainpubkey wkun uid flgs
in pgpSign (Message [wkun])
tor_ov
SHA1
(fingerprint wkun)
return (additional new_sig) -- (uid:sigs,additional,xs'',g')
where
(sigs, _) = span isSignaturePacket xs'
overs sig = signatures $ Message (keys++[mainpubkey,uid,sig])
vs :: [ ( Packet -- signature
, Maybe SignatureOver -- Nothing means non-verified
, Packet ) -- key who signed
]
vs = do
sig <- sigs
o <- overs sig
k <- keys
let ov = verify (Message [k]) $ o
signatures_over ov
return (sig,Just ov,k)
selfsigs = filter (\(sig,v,whosign) -> isJust (v >> selfkey >>= guard
. (== keykey whosign)
. keykey))
vs
additional new_sig = do
new_sig <- maybeToList new_sig
guard $ {- trace (unlines $ [ "selfsigs = "++show (map ((\(_,_,k)->fingerprint k)) selfsigs)
, " for mainkey = "++fingerprint mainpubkey] )
-}
(null $ selfsigs)
signatures_over new_sig
{-
modsig sig = sig { signature = map id (signature sig) }
where plus1 (MPI x) = MPI (x+1)
params newtop = public ++ map fst (key newtop) ++ "}"
where
public = case newtop of
PublicKeyPacket {} -> "public{"
SecretKeyPacket {} -> if L.null (encrypted_data newtop )
then "secret{"
else "encrypted{"
_ -> "??????{"
traceSig newtop newuid new_sig = (unlines ["mainpubkey:"++ show (fingerprint mainpubkey)
,"new_sig topkey:"++ (show . fingerprint $ newtop)
,"new_sig topkey params: "++ params newtop
,"new_sig user_id:"++ (show newuid)
,"new_sig |over| = " ++ (show . length $ new_sig)
,"new_sig hashed = " ++ (PP.ppShow . concatMap hashed_subpackets $ new_sig)
,"new_sig unhashed = " ++ (show . concatMap unhashed_subpackets $ new_sig)
,"new_sig type: " ++ (show . map signature_type $ new_sig)
,"new_sig signature:" ++ (show . concatMap signature $ new_sig)
,"new_sig isSignaturePacket(over) = " ++ (show . map isSignaturePacket $ new_sig)
,"issuer = " ++ show (map signature_issuer new_sig)
])
-}
flgs = if keykey mainpubkey == keykey (fromJust selfkey)
then keyFlags0 mainpubkey (map (\(x,_,_)->x) selfsigs)
else []
isSameKey a b = sort (key apub) == sort (key bpub)
where
apub = secretToPublic a
bpub = secretToPublic b
groupBindings pub =
let (_,bindings) = getBindings pub
bindings' = accBindings bindings
code (c,(m,s),_,_,_) = (fingerprint_material m,-c)
ownerkey (_,(a,_),_,_,_) = a
sameMaster (ownerkey->a) (ownerkey->b) = fingerprint_material a==fingerprint_material b
-- matchgrip ((code,(top,sub), kind, hashed,claimants):_) | fpmatch grip top = True
-- matchgrip _ = False
gs = {- filter matchgrip $ -} groupBy sameMaster (sortBy (comparing code) bindings')
in gs
isTopKey p@(SecretKeyPacket {}) | not (is_subkey p) = True
isTopKey p@(PublicKeyPacket {}) | not (is_subkey p) = True
isTopKey _ = False
groupTops ps = groupBy (\_ b -> not (isTopKey b)) ps
{-
makeTorUID g timestamp wkun keyflags topkey torkey = uid:signatures_over sig
where
torhash sub = maybe "" id $ derToBase32 <$> derRSA sub
s = "Anonymous <root@" ++ take 16 (torhash torkey) ++ ".onion>"
uid = UserIDPacket s
sig = fst $ torsig g topkey wkun uid timestamp keyflags
-}
|