summaryrefslogtreecommitdiffstats
path: root/docs/coverage.html
blob: 883e4f635b5d2670455e6d5d0f269b6457b52a8c (plain)
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
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
<!DOCTYPE html>
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<style>
			body {
				background: black;
				color: rgb(80, 80, 80);
			}
			body, pre, #legend span {
				font-family: Menlo, monospace;
				font-weight: bold;
			}
			#topbar {
				background: black;
				position: fixed;
				top: 0; left: 0; right: 0;
				height: 42px;
				border-bottom: 1px solid rgb(80, 80, 80);
			}
			#content {
				margin-top: 50px;
			}
			#nav, #legend {
				float: left;
				margin-left: 10px;
			}
			#legend {
				margin-top: 12px;
			}
			#nav {
				margin-top: 10px;
			}
			#legend span {
				margin: 0 5px;
			}
			.cov0 { color: rgb(192, 0, 0) }
.cov1 { color: rgb(128, 128, 128) }
.cov2 { color: rgb(116, 140, 131) }
.cov3 { color: rgb(104, 152, 134) }
.cov4 { color: rgb(92, 164, 137) }
.cov5 { color: rgb(80, 176, 140) }
.cov6 { color: rgb(68, 188, 143) }
.cov7 { color: rgb(56, 200, 146) }
.cov8 { color: rgb(44, 212, 149) }
.cov9 { color: rgb(32, 224, 152) }
.cov10 { color: rgb(20, 236, 155) }

		</style>
	</head>
	<body>
		<div id="topbar">
			<div id="nav">
				<select id="files">
				
				<option value="file0">sms/auth/auth.go (79.8%)</option>
				
				<option value="file1">sms/backend/backend.go (80.0%)</option>
				
				<option value="file2">sms/backend/vault.go (68.6%)</option>
				
				<option value="file3">sms/config/config.go (78.6%)</option>
				
				<option value="file4">sms/handler/handler.go (62.0%)</option>
				
				<option value="file5">sms/log/logger.go (78.1%)</option>
				
				<option value="file6">sms/sms.go (77.8%)</option>
				
				</select>
			</div>
			<div id="legend">
				<span>not tracked</span>
			
				<span class="cov0">no coverage</span>
				<span class="cov1">low coverage</span>
				<span class="cov2">*</span>
				<span class="cov3">*</span>
				<span class="cov4">*</span>
				<span class="cov5">*</span>
				<span class="cov6">*</span>
				<span class="cov7">*</span>
				<span class="cov8">*</span>
				<span class="cov9">*</span>
				<span class="cov10">high coverage</span>
			
			</div>
		</div>
		<div id="content">
		
		<pre class="file" id="file0" style="display: none">/*
 * Copyright 2018 Intel Corporation, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package auth

import (
        "bytes"
        "crypto"
        "crypto/tls"
        "crypto/x509"
        "encoding/base64"
        "encoding/pem"
        "golang.org/x/crypto/openpgp"
        "golang.org/x/crypto/openpgp/packet"
        "io/ioutil"

        smsconfig "sms/config"
        smslogger "sms/log"
)

// GetTLSConfig initializes a tlsConfig using the CA's certificate
// This config is then used to enable the server for mutual TLS
func GetTLSConfig(caCertFile string, certFile string, keyFile string) (*tls.Config, error) <span class="cov8" title="3">{

        // Initialize tlsConfig once
        caCert, err := ioutil.ReadFile(caCertFile)

        if smslogger.CheckError(err, "Read CA Cert file") != nil </span><span class="cov1" title="1">{
                return nil, err
        }</span>

        <span class="cov5" title="2">caCertPool := x509.NewCertPool()
        caCertPool.AppendCertsFromPEM(caCert)

        tlsConfig := &amp;tls.Config{
                // Change to RequireAndVerify once we have mandatory certs
                ClientAuth: tls.VerifyClientCertIfGiven,
                ClientCAs:  caCertPool,
                MinVersion: tls.VersionTLS12,
        }

        certPEMBlk, err := readPEMBlock(certFile)
        if smslogger.CheckError(err, "Read Cert File") != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>

        <span class="cov5" title="2">keyPEMBlk, err := readPEMBlock(keyFile)
        if smslogger.CheckError(err, "Read Key File") != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>

        <span class="cov5" title="2">tlsConfig.Certificates = make([]tls.Certificate, 1)
        tlsConfig.Certificates[0], err = tls.X509KeyPair(certPEMBlk, keyPEMBlk)
        if smslogger.CheckError(err, "Load x509 cert and key") != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>

        <span class="cov5" title="2">tlsConfig.BuildNameToCertificate()
        return tlsConfig, nil</span>
}

func readPEMBlock(filename string) ([]byte, error) <span class="cov10" title="4">{

        pemData, err := ioutil.ReadFile(filename)

        if smslogger.CheckError(err, "Read PEM File") != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>

        <span class="cov10" title="4">pemBlock, rest := pem.Decode(pemData)
        if len(rest) &gt; 0 </span><span class="cov1" title="1">{
                smslogger.WriteWarn("Pemfile has extra data")
        }</span>

        <span class="cov10" title="4">if x509.IsEncryptedPEMBlock(pemBlock) </span><span class="cov1" title="1">{
                pByte, err := base64.StdEncoding.DecodeString(smsconfig.SMSConfig.Password)
                if smslogger.CheckError(err, "Decode PEM Password") != nil </span><span class="cov0" title="0">{
                        return nil, err
                }</span>

                <span class="cov1" title="1">pemData, err = x509.DecryptPEMBlock(pemBlock, pByte)
                if smslogger.CheckError(err, "Decrypt PEM Data") != nil </span><span class="cov0" title="0">{
                        return nil, err
                }</span>
                <span class="cov1" title="1">var newPEMBlock pem.Block
                newPEMBlock.Type = pemBlock.Type
                newPEMBlock.Bytes = pemData
                // Converting back to PEM from DER data you get from
                // DecryptPEMBlock
                pemData = pem.EncodeToMemory(&amp;newPEMBlock)</span>
        }

        <span class="cov10" title="4">return pemData, nil</span>
}

// GeneratePGPKeyPair produces a PGP key pair and returns
// two things:
// A base64 encoded form of the public part of the entity
// A base64 encoded form of the private key
func GeneratePGPKeyPair() (string, string, error) <span class="cov8" title="3">{

        var entity *openpgp.Entity
        config := &amp;packet.Config{
                DefaultHash: crypto.SHA256,
        }

        entity, err := openpgp.NewEntity("aaf.sms.init", "PGP Key for unsealing", "", config)
        if smslogger.CheckError(err, "Create Entity") != nil </span><span class="cov0" title="0">{
                return "", "", err
        }</span>

        // Sign the identity in the entity
        <span class="cov8" title="3">for _, id := range entity.Identities </span><span class="cov8" title="3">{
                err = id.SelfSignature.SignUserId(id.UserId.Id, entity.PrimaryKey, entity.PrivateKey, nil)
                if smslogger.CheckError(err, "Sign Entity") != nil </span><span class="cov0" title="0">{
                        return "", "", err
                }</span>
        }

        // Sign the subkey in the entity
        <span class="cov8" title="3">for _, subkey := range entity.Subkeys </span><span class="cov8" title="3">{
                err := subkey.Sig.SignKey(subkey.PublicKey, entity.PrivateKey, nil)
                if smslogger.CheckError(err, "Sign Subkey") != nil </span><span class="cov0" title="0">{
                        return "", "", err
                }</span>
        }

        <span class="cov8" title="3">buffer := new(bytes.Buffer)
        entity.Serialize(buffer)
        pbkey := base64.StdEncoding.EncodeToString(buffer.Bytes())

        buffer.Reset()
        entity.SerializePrivate(buffer, nil)
        prkey := base64.StdEncoding.EncodeToString(buffer.Bytes())

        return pbkey, prkey, nil</span>
}

// EncryptPGPString takes data and a public key and encrypts using that
// public key
func EncryptPGPString(data string, pbKey string) (string, error) <span class="cov5" title="2">{

        pbKeyBytes, err := base64.StdEncoding.DecodeString(pbKey)
        if smslogger.CheckError(err, "Decoding Base64 Public Key") != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        <span class="cov5" title="2">dataBytes := []byte(data)

        pbEntity, err := openpgp.ReadEntity(packet.NewReader(bytes.NewBuffer(pbKeyBytes)))
        if smslogger.CheckError(err, "Reading entity from PGP key") != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        // encrypt string
        <span class="cov5" title="2">buf := new(bytes.Buffer)
        out, err := openpgp.Encrypt(buf, []*openpgp.Entity{pbEntity}, nil, nil, nil)
        if smslogger.CheckError(err, "Creating Encryption Pipe") != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        <span class="cov5" title="2">_, err = out.Write(dataBytes)
        if smslogger.CheckError(err, "Writing to Encryption Pipe") != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        <span class="cov5" title="2">err = out.Close()
        if smslogger.CheckError(err, "Closing Encryption Pipe") != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        <span class="cov5" title="2">crp := base64.StdEncoding.EncodeToString(buf.Bytes())
        return crp, nil</span>
}

// DecryptPGPString decrypts a PGP encoded input string and returns
// a base64 representation of the decoded string
func DecryptPGPString(data string, prKey string) (string, error) <span class="cov1" title="1">{

        // Convert private key to bytes from base64
        prKeyBytes, err := base64.StdEncoding.DecodeString(prKey)
        if smslogger.CheckError(err, "Decoding Base64 Private Key") != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        <span class="cov1" title="1">dataBytes, err := base64.StdEncoding.DecodeString(data)
        if smslogger.CheckError(err, "Decoding base64 data") != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        <span class="cov1" title="1">prEntity, err := openpgp.ReadEntity(packet.NewReader(bytes.NewBuffer(prKeyBytes)))
        if smslogger.CheckError(err, "Read Entity") != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        <span class="cov1" title="1">prEntityList := &amp;openpgp.EntityList{prEntity}
        message, err := openpgp.ReadMessage(bytes.NewBuffer(dataBytes), prEntityList, nil, nil)
        if smslogger.CheckError(err, "Decrypting Message") != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        <span class="cov1" title="1">var retBuf bytes.Buffer
        retBuf.ReadFrom(message.UnverifiedBody)

        return retBuf.String(), nil</span>
}

// ReadFromFile reads a file and loads the PGP key into
// a string
func ReadFromFile(fileName string) (string, error) <span class="cov1" title="1">{

        data, err := ioutil.ReadFile(fileName)
        if smslogger.CheckError(err, "Read from file") != nil </span><span class="cov1" title="1">{
                return "", err
        }</span>
        <span class="cov0" title="0">return string(data), nil</span>
}

// WriteToFile writes a PGP key into a file.
// It will truncate the file if it exists
func WriteToFile(data string, fileName string) error <span class="cov5" title="2">{

        err := ioutil.WriteFile(fileName, []byte(data), 0600)
        if smslogger.CheckError(err, "Write to file") != nil </span><span class="cov0" title="0">{
                return err
        }</span>
        <span class="cov5" title="2">return nil</span>
}
</pre>
		
		<pre class="file" id="file1" style="display: none">/*
 * Copyright 2018 Intel Corporation, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package backend

import (
        smsconfig "sms/config"
        smslogger "sms/log"
)

// SecretDomain is where Secrets are stored.
// A single domain can have any number of secrets
type SecretDomain struct {
        UUID string `json:"uuid"`
        Name string `json:"name"`
}

// Secret is the struct that defines the structure of a secret
// It consists of a name and map containing key value pairs
type Secret struct {
        Name   string                 `json:"name"`
        Values map[string]interface{} `json:"values"`
}

// SecretBackend interface that will be implemented for various secret backends
type SecretBackend interface {
        Init() error
        GetStatus() (bool, error)
        Unseal(shard string) error
        RegisterQuorum(pgpkey string) (string, error)

        GetSecret(dom string, sec string) (Secret, error)
        ListSecret(dom string) ([]string, error)

        CreateSecretDomain(name string) (SecretDomain, error)
        CreateSecret(dom string, sec Secret) error

        DeleteSecretDomain(name string) error
        DeleteSecret(dom string, name string) error
}

// InitSecretBackend returns an interface implementation
func InitSecretBackend() (SecretBackend, error) <span class="cov8" title="1">{
        backendImpl := &amp;Vault{
                vaultAddress: smsconfig.SMSConfig.BackendAddress,
                vaultToken:   smsconfig.SMSConfig.VaultToken,
        }

        err := backendImpl.Init()
        if smslogger.CheckError(err, "InitSecretBackend") != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>

        <span class="cov8" title="1">return backendImpl, nil</span>
}

// LoginBackend Interface that will be implemented for various login backends
type LoginBackend interface {
}
</pre>
		
		<pre class="file" id="file2" style="display: none">/*
 * Copyright 2018 Intel Corporation, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package backend

import (
        uuid "github.com/hashicorp/go-uuid"
        vaultapi "github.com/hashicorp/vault/api"
        smsauth "sms/auth"
        smslogger "sms/log"

        "errors"
        "fmt"
        "strings"
        "sync"
        "time"
)

// Vault is the main Struct used in Backend to initialize the struct
type Vault struct {
        sync.Mutex
        initRoleDone          bool
        policyName            string
        roleID                string
        secretID              string
        vaultAddress          string
        vaultClient           *vaultapi.Client
        vaultMountPrefix      string
        internalDomain        string
        internalDomainMounted bool
        vaultTempTokenTTL     time.Time
        vaultToken            string
        shards                []string
        prkey                 string
}

// initVaultClient will create the initial
// Vault strcuture and populate it with the
// right values and it will also create
// a vault client
func (v *Vault) initVaultClient() error <span class="cov7" title="11">{

        vaultCFG := vaultapi.DefaultConfig()
        vaultCFG.Address = v.vaultAddress
        client, err := vaultapi.NewClient(vaultCFG)
        if smslogger.CheckError(err, "Create new vault client") != nil </span><span class="cov0" title="0">{
                return err
        }</span>

        <span class="cov7" title="11">v.initRoleDone = false
        v.policyName = "smsvaultpolicy"
        v.vaultClient = client
        v.vaultMountPrefix = "sms"
        v.internalDomain = "smsinternaldomain"
        v.internalDomainMounted = false
        v.prkey = ""
        return nil</span>
}

// Init will initialize the vault connection
// It will also initialize vault if it is not
// already initialized.
// The initial policy will also be created
func (v *Vault) Init() error <span class="cov1" title="1">{

        v.initVaultClient()
        // Initialize vault if it is not already
        // Returns immediately if it is initialized
        v.initializeVault()

        err := v.initRole()
        if smslogger.CheckError(err, "InitRole First Attempt") != nil </span><span class="cov0" title="0">{
                smslogger.WriteInfo("InitRole will try again later")
        }</span>

        <span class="cov1" title="1">return nil</span>
}

// GetStatus returns the current seal status of vault
func (v *Vault) GetStatus() (bool, error) <span class="cov2" title="2">{

        sys := v.vaultClient.Sys()
        sealStatus, err := sys.SealStatus()
        if smslogger.CheckError(err, "Getting Status") != nil </span><span class="cov0" title="0">{
                return false, errors.New("Error getting status")
        }</span>

        <span class="cov2" title="2">return sealStatus.Sealed, nil</span>
}

// RegisterQuorum registers the PGP public key for a quorum client
// We will return a shard to the client that is registering
func (v *Vault) RegisterQuorum(pgpkey string) (string, error) <span class="cov0" title="0">{

        v.Lock()
        defer v.Unlock()

        if v.shards == nil </span><span class="cov0" title="0">{
                smslogger.WriteError("Invalid operation in RegisterQuorum")
                return "", errors.New("Invalid operation")
        }</span>
        // Pop the slice
        <span class="cov0" title="0">var sh string
        sh, v.shards = v.shards[len(v.shards)-1], v.shards[:len(v.shards)-1]
        if len(v.shards) == 0 </span><span class="cov0" title="0">{
                v.shards = nil
        }</span>

        // Decrypt with SMS pgp Key
        <span class="cov0" title="0">sh, _ = smsauth.DecryptPGPString(sh, v.prkey)
        // Encrypt with Quorum client pgp key
        sh, _ = smsauth.EncryptPGPString(sh, pgpkey)

        return sh, nil</span>
}

// Unseal is a passthrough API that allows any
// unseal or initialization processes for the backend
func (v *Vault) Unseal(shard string) error <span class="cov0" title="0">{

        sys := v.vaultClient.Sys()
        _, err := sys.Unseal(shard)
        if smslogger.CheckError(err, "Unseal Operation") != nil </span><span class="cov0" title="0">{
                return errors.New("Unable to execute unseal operation with specified shard")
        }</span>

        <span class="cov0" title="0">return nil</span>
}

// GetSecret returns a secret mounted on a particular domain name
// The secret itself is referenced via its name which translates to
// a mount path in vault
func (v *Vault) GetSecret(dom string, name string) (Secret, error) <span class="cov2" title="2">{

        err := v.checkToken()
        if smslogger.CheckError(err, "Tocken Check") != nil </span><span class="cov0" title="0">{
                return Secret{}, errors.New("Token check failed")
        }</span>

        <span class="cov2" title="2">dom = strings.TrimSpace(dom)
        dom = v.vaultMountPrefix + "/" + dom

        sec, err := v.vaultClient.Logical().Read(dom + "/" + name)
        if smslogger.CheckError(err, "Read Secret") != nil </span><span class="cov0" title="0">{
                return Secret{}, errors.New("Unable to read Secret at provided path")
        }</span>

        // sec and err are nil in the case where a path does not exist
        <span class="cov2" title="2">if sec == nil </span><span class="cov0" title="0">{
                smslogger.WriteWarn("Vault read was empty. Invalid Path")
                return Secret{}, errors.New("Secret not found at the provided path")
        }</span>

        <span class="cov2" title="2">return Secret{Name: name, Values: sec.Data}, nil</span>
}

// ListSecret returns a list of secret names on a particular domain
// The values of the secret are not returned
func (v *Vault) ListSecret(dom string) ([]string, error) <span class="cov2" title="2">{

        err := v.checkToken()
        if smslogger.CheckError(err, "Token Check") != nil </span><span class="cov0" title="0">{
                return nil, errors.New("Token check failed")
        }</span>

        <span class="cov2" title="2">dom = strings.TrimSpace(dom)
        dom = v.vaultMountPrefix + "/" + dom

        sec, err := v.vaultClient.Logical().List(dom)
        if smslogger.CheckError(err, "Read Secret") != nil </span><span class="cov0" title="0">{
                return nil, errors.New("Unable to read Secret at provided path")
        }</span>

        // sec and err are nil in the case where a path does not exist
        <span class="cov2" title="2">if sec == nil </span><span class="cov0" title="0">{
                smslogger.WriteWarn("Vaultclient returned empty data")
                return nil, errors.New("Secret not found at the provided path")
        }</span>

        <span class="cov2" title="2">val, ok := sec.Data["keys"].([]interface{})
        if !ok </span><span class="cov0" title="0">{
                smslogger.WriteError("Secret not found at the provided path")
                return nil, errors.New("Secret not found at the provided path")
        }</span>

        <span class="cov2" title="2">retval := make([]string, len(val))
        for i, v := range val </span><span class="cov2" title="2">{
                retval[i] = fmt.Sprint(v)
        }</span>

        <span class="cov2" title="2">return retval, nil</span>
}

// Mounts the internal Domain if its not already mounted
func (v *Vault) mountInternalDomain(name string) error <span class="cov5" title="7">{

        if v.internalDomainMounted </span><span class="cov0" title="0">{
                return nil
        }</span>

        <span class="cov5" title="7">name = strings.TrimSpace(name)
        mountPath := v.vaultMountPrefix + "/" + name
        mountInput := &amp;vaultapi.MountInput{
                Type:        "kv",
                Description: "Mount point for domain: " + name,
                Local:       false,
                SealWrap:    false,
                Config:      vaultapi.MountConfigInput{},
        }

        err := v.vaultClient.Sys().Mount(mountPath, mountInput)
        if smslogger.CheckError(err, "Mount internal Domain") != nil </span><span class="cov0" title="0">{
                if strings.Contains(err.Error(), "existing mount") </span><span class="cov0" title="0">{
                        // It is already mounted
                        v.internalDomainMounted = true
                        return nil
                }</span>
                // Ran into some other error mounting it.
                <span class="cov0" title="0">return errors.New("Unable to mount internal Domain")</span>
        }

        <span class="cov5" title="7">v.internalDomainMounted = true
        return nil</span>
}

// Stores the UUID created for secretdomain in vault
// under v.vaultMountPrefix / smsinternal domain
func (v *Vault) storeUUID(uuid string, name string) error <span class="cov5" title="7">{

        // Check if token is still valid
        err := v.checkToken()
        if smslogger.CheckError(err, "Token Check") != nil </span><span class="cov0" title="0">{
                return errors.New("Token Check failed")
        }</span>

        <span class="cov5" title="7">err = v.mountInternalDomain(v.internalDomain)
        if smslogger.CheckError(err, "Mount Internal Domain") != nil </span><span class="cov0" title="0">{
                return err
        }</span>

        <span class="cov5" title="7">secret := Secret{
                Name: name,
                Values: map[string]interface{}{
                        "uuid": uuid,
                },
        }

        err = v.CreateSecret(v.internalDomain, secret)
        if smslogger.CheckError(err, "Write UUID to domain") != nil </span><span class="cov0" title="0">{
                return err
        }</span>

        <span class="cov5" title="7">return nil</span>
}

// CreateSecretDomain mounts the kv backend on a path with the given name
func (v *Vault) CreateSecretDomain(name string) (SecretDomain, error) <span class="cov5" title="7">{

        // Check if token is still valid
        err := v.checkToken()
        if smslogger.CheckError(err, "Token Check") != nil </span><span class="cov0" title="0">{
                return SecretDomain{}, errors.New("Token Check failed")
        }</span>

        <span class="cov5" title="7">name = strings.TrimSpace(name)
        mountPath := v.vaultMountPrefix + "/" + name
        mountInput := &amp;vaultapi.MountInput{
                Type:        "kv",
                Description: "Mount point for domain: " + name,
                Local:       false,
                SealWrap:    false,
                Config:      vaultapi.MountConfigInput{},
        }

        err = v.vaultClient.Sys().Mount(mountPath, mountInput)
        if smslogger.CheckError(err, "Create Domain") != nil </span><span class="cov0" title="0">{
                return SecretDomain{}, errors.New("Unable to create Secret Domain")
        }</span>

        <span class="cov5" title="7">uuid, _ := uuid.GenerateUUID()
        err = v.storeUUID(uuid, name)
        if smslogger.CheckError(err, "Store UUID") != nil </span><span class="cov0" title="0">{
                // Mount was successful at this point.
                // Rollback the mount operation since we could not
                // store the UUID for the mount.
                v.vaultClient.Sys().Unmount(mountPath)
                return SecretDomain{}, errors.New("Unable to store Secret Domain UUID. Retry")
        }</span>

        <span class="cov5" title="7">return SecretDomain{uuid, name}, nil</span>
}

// CreateSecret creates a secret mounted on a particular domain name
// The secret itself is mounted on a path specified by name
func (v *Vault) CreateSecret(dom string, sec Secret) error <span class="cov7" title="12">{

        err := v.checkToken()
        if smslogger.CheckError(err, "Token Check") != nil </span><span class="cov0" title="0">{
                return errors.New("Token check failed")
        }</span>

        <span class="cov7" title="12">dom = strings.TrimSpace(dom)
        dom = v.vaultMountPrefix + "/" + dom

        // Vault return is empty on successful write
        // TODO: Check if values is not empty
        _, err = v.vaultClient.Logical().Write(dom+"/"+sec.Name, sec.Values)
        if smslogger.CheckError(err, "Create Secret") != nil </span><span class="cov0" title="0">{
                return errors.New("Unable to create Secret at provided path")
        }</span>

        <span class="cov7" title="12">return nil</span>
}

// DeleteSecretDomain deletes a secret domain which translates to
// an unmount operation on the given path in Vault
func (v *Vault) DeleteSecretDomain(dom string) error <span class="cov2" title="2">{

        err := v.checkToken()
        if smslogger.CheckError(err, "Token Check") != nil </span><span class="cov0" title="0">{
                return errors.New("Token Check Failed")
        }</span>

        <span class="cov2" title="2">dom = strings.TrimSpace(dom)
        mountPath := v.vaultMountPrefix + "/" + dom

        err = v.vaultClient.Sys().Unmount(mountPath)
        if smslogger.CheckError(err, "Delete Domain") != nil </span><span class="cov0" title="0">{
                return errors.New("Unable to delete domain specified")
        }</span>

        <span class="cov2" title="2">return nil</span>
}

// DeleteSecret deletes a secret mounted on the path provided
func (v *Vault) DeleteSecret(dom string, name string) error <span class="cov2" title="2">{

        err := v.checkToken()
        if smslogger.CheckError(err, "Token Check") != nil </span><span class="cov0" title="0">{
                return errors.New("Token check failed")
        }</span>

        <span class="cov2" title="2">dom = strings.TrimSpace(dom)
        dom = v.vaultMountPrefix + "/" + dom

        // Vault return is empty on successful delete
        _, err = v.vaultClient.Logical().Delete(dom + "/" + name)
        if smslogger.CheckError(err, "Delete Secret") != nil </span><span class="cov0" title="0">{
                return errors.New("Unable to delete Secret at provided path")
        }</span>

        <span class="cov2" title="2">return nil</span>
}

// initRole is called only once during SMS bring up
// It initially creates a role and secret id associated with
// that role. Later restarts will use the existing role-id
// and secret-id stored on disk
func (v *Vault) initRole() error <span class="cov10" title="36">{

        if v.initRoleDone </span><span class="cov9" title="28">{
                return nil
        }</span>

        // Use the root token once here
        <span class="cov6" title="8">v.vaultClient.SetToken(v.vaultToken)
        defer v.vaultClient.ClearToken()

        // Check if roleID and secretID has already been created
        rID, error := smsauth.ReadFromFile("auth/role")
        if error != nil </span><span class="cov6" title="8">{
                smslogger.WriteWarn("Unable to find RoleID. Generating...")
        }</span> else<span class="cov0" title="0"> {
                sID, error := smsauth.ReadFromFile("auth/secret")
                if error != nil </span><span class="cov0" title="0">{
                        smslogger.WriteWarn("Unable to find secretID. Generating...")
                }</span> else<span class="cov0" title="0"> {
                        v.roleID = rID
                        v.secretID = sID
                        v.initRoleDone = true
                        return nil
                }</span>
        }

        <span class="cov6" title="8">rules := `path "sms/*" { capabilities = ["create", "read", "update", "delete", "list"] }
                        path "sys/mounts/sms*" { capabilities = ["update","delete","create"] }`
        err := v.vaultClient.Sys().PutPolicy(v.policyName, rules)
        if smslogger.CheckError(err, "Creating Policy") != nil </span><span class="cov0" title="0">{
                return errors.New("Unable to create policy for approle creation")
        }</span>

        //Check if applrole is mounted
        <span class="cov6" title="8">authMounts, err := v.vaultClient.Sys().ListAuth()
        if smslogger.CheckError(err, "Mount Auth Backend") != nil </span><span class="cov0" title="0">{
                return errors.New("Unable to get mounted auth backends")
        }</span>

        <span class="cov6" title="8">approleMounted := false
        for k, v := range authMounts </span><span class="cov6" title="8">{
                if v.Type == "approle" &amp;&amp; k == "approle/" </span><span class="cov0" title="0">{
                        approleMounted = true
                        break</span>
                }
        }

        // Mount approle in case its not already mounted
        <span class="cov6" title="8">if !approleMounted </span><span class="cov6" title="8">{
                v.vaultClient.Sys().EnableAuth("approle", "approle", "")
        }</span>

        <span class="cov6" title="8">rName := v.vaultMountPrefix + "-role"
        data := map[string]interface{}{
                "token_ttl": "60m",
                "policies":  [2]string{"default", v.policyName},
        }

        // Create a role-id
        v.vaultClient.Logical().Write("auth/approle/role/"+rName, data)
        sec, err := v.vaultClient.Logical().Read("auth/approle/role/" + rName + "/role-id")
        if smslogger.CheckError(err, "Create RoleID") != nil </span><span class="cov0" title="0">{
                return errors.New("Unable to create role ID for approle")
        }</span>
        <span class="cov6" title="8">v.roleID = sec.Data["role_id"].(string)

        // Create a secret-id to go with it
        sec, err = v.vaultClient.Logical().Write("auth/approle/role/"+rName+"/secret-id",
                map[string]interface{}{})
        if smslogger.CheckError(err, "Create SecretID") != nil </span><span class="cov0" title="0">{
                return errors.New("Unable to create secret ID for role")
        }</span>

        <span class="cov6" title="8">v.secretID = sec.Data["secret_id"].(string)
        v.initRoleDone = true
        /*
        * Revoke the Root token.
        * If a new Root Token is needed, it will need to be created
        * using the unseal shards.
         */
        err = v.vaultClient.Auth().Token().RevokeSelf(v.vaultToken)
        if smslogger.CheckError(err, "Revoke Root Token") != nil </span><span class="cov0" title="0">{
                smslogger.WriteWarn("Unable to Revoke Token")
        }</span> else<span class="cov6" title="8"> {
                // Revoked successfully and clear it
                v.vaultToken = ""
        }</span>

        // Store the role-id and secret-id
        // We will need this if SMS restarts
        <span class="cov6" title="8">smsauth.WriteToFile(v.roleID, "auth/role")
        smsauth.WriteToFile(v.secretID, "auth/secret")

        return nil</span>
}

// Function checkToken() gets called multiple times to create
// temporary tokens
func (v *Vault) checkToken() error <span class="cov9" title="34">{

        v.Lock()
        defer v.Unlock()

        // Init Role if it is not yet done
        // Role needs to be created before token can be created
        err := v.initRole()
        if err != nil </span><span class="cov0" title="0">{
                smslogger.WriteError(err.Error())
                return errors.New("Unable to initRole in checkToken")
        }</span>

        // Return immediately if token still has life
        <span class="cov9" title="34">if v.vaultClient.Token() != "" &amp;&amp;
                time.Since(v.vaultTempTokenTTL) &lt; time.Minute*50 </span><span class="cov9" title="27">{
                return nil
        }</span>

        // Create a temporary token using our roleID and secretID
        <span class="cov5" title="7">out, err := v.vaultClient.Logical().Write("auth/approle/login",
                map[string]interface{}{"role_id": v.roleID, "secret_id": v.secretID})
        if smslogger.CheckError(err, "Create Temp Token") != nil </span><span class="cov0" title="0">{
                return errors.New("Unable to create Temporary Token for Role")
        }</span>

        <span class="cov5" title="7">tok, err := out.TokenID()

        v.vaultTempTokenTTL = time.Now()
        v.vaultClient.SetToken(tok)
        return nil</span>
}

// vaultInit() is used to initialize the vault in cases where it is not
// initialized. This happens once during intial bring up.
func (v *Vault) initializeVault() error <span class="cov2" title="2">{

        // Check for vault init status and don't exit till it is initialized
        for </span><span class="cov2" title="2">{
                init, err := v.vaultClient.Sys().InitStatus()
                if smslogger.CheckError(err, "Get Vault Init Status") != nil </span><span class="cov0" title="0">{
                        smslogger.WriteInfo("Trying again in 10s...")
                        time.Sleep(time.Second * 10)
                        continue</span>
                }
                // Did not get any error
                <span class="cov2" title="2">if init == true </span><span class="cov1" title="1">{
                        smslogger.WriteInfo("Vault is already Initialized")
                        return nil
                }</span>

                // init status is false
                // break out of loop and finish initialization
                <span class="cov1" title="1">smslogger.WriteInfo("Vault is not initialized. Initializing...")
                break</span>
        }

        // Hardcoded this to 3. We should make this configurable
        // in the future
        <span class="cov1" title="1">initReq := &amp;vaultapi.InitRequest{
                SecretShares:    3,
                SecretThreshold: 3,
        }

        pbkey, prkey, err := smsauth.GeneratePGPKeyPair()

        if smslogger.CheckError(err, "Generating PGP Keys") != nil </span><span class="cov0" title="0">{
                smslogger.WriteError("Error Generating PGP Keys. Vault Init will not use encryption!")
        }</span> else<span class="cov1" title="1"> {
                initReq.PGPKeys = []string{pbkey, pbkey, pbkey}
                initReq.RootTokenPGPKey = pbkey
        }</span>

        <span class="cov1" title="1">resp, err := v.vaultClient.Sys().Init(initReq)
        if smslogger.CheckError(err, "Initialize Vault") != nil </span><span class="cov0" title="0">{
                return errors.New("FATAL: Unable to initialize Vault")
        }</span>

        <span class="cov1" title="1">if resp != nil </span><span class="cov1" title="1">{
                v.prkey = prkey
                v.shards = resp.KeysB64
                v.vaultToken, _ = smsauth.DecryptPGPString(resp.RootToken, prkey)
                return nil
        }</span>

        <span class="cov0" title="0">return errors.New("FATAL: Init response was empty")</span>
}
</pre>
		
		<pre class="file" id="file3" style="display: none">/*
 * Copyright 2018 Intel Corporation, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package config

import (
        "encoding/json"
        "os"
        smslogger "sms/log"
)

// SMSConfiguration loads up all the values that are used to configure
// backend implementations
// TODO: Review these and see if they can be created/discovered dynamically
type SMSConfiguration struct {
        CAFile     string `json:"cafile"`
        ServerCert string `json:"servercert"`
        ServerKey  string `json:"serverkey"`
        Password   string `json:"password"`

        BackendAddress            string `json:"smsdbaddress"`
        VaultToken                string `json:"vaulttoken"`
        DisableTLS                bool   `json:"disable_tls"`
        BackendAddressEnvVariable string `json:"smsdburlenv"`
}

// SMSConfig is the structure that stores the configuration
var SMSConfig *SMSConfiguration

// ReadConfigFile reads the specified smsConfig file to setup some env variables
func ReadConfigFile(file string) (*SMSConfiguration, error) <span class="cov10" title="3">{
        if SMSConfig == nil </span><span class="cov10" title="3">{
                f, err := os.Open(file)
                if err != nil </span><span class="cov1" title="1">{
                        return nil, err
                }</span>
                <span class="cov6" title="2">defer f.Close()

                // Default behaviour is to enable TLS
                SMSConfig = &amp;SMSConfiguration{DisableTLS: false}
                decoder := json.NewDecoder(f)
                err = decoder.Decode(SMSConfig)
                if err != nil </span><span class="cov0" title="0">{
                        return nil, err
                }</span>

                <span class="cov6" title="2">if SMSConfig.BackendAddress == "" &amp;&amp; SMSConfig.BackendAddressEnvVariable != "" </span><span class="cov0" title="0">{
                        // Get the value from ENV variable
                        smslogger.WriteInfo("Using Environment Variable: " + SMSConfig.BackendAddressEnvVariable)
                        SMSConfig.BackendAddress = os.Getenv(SMSConfig.BackendAddressEnvVariable)
                }</span>
        }

        <span class="cov6" title="2">return SMSConfig, nil</span>
}
</pre>
		
		<pre class="file" id="file4" style="display: none">/*
 * Copyright 2018 Intel Corporation, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package handler

import (
        "encoding/json"
        "github.com/gorilla/mux"
        "net/http"

        uuid "github.com/hashicorp/go-uuid"
        smsbackend "sms/backend"
        smslogger "sms/log"
)

// handler stores two interface implementations that implement
// the backend functionality
type handler struct {
        secretBackend smsbackend.SecretBackend
        loginBackend  smsbackend.LoginBackend
}

// createSecretDomainHandler creates a secret domain with a name provided
func (h handler) createSecretDomainHandler(w http.ResponseWriter, r *http.Request) <span class="cov6" title="2">{
        var d smsbackend.SecretDomain

        err := json.NewDecoder(r.Body).Decode(&amp;d)
        if smslogger.CheckError(err, "CreateSecretDomainHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusBadRequest)
                return
        }</span>

        <span class="cov6" title="2">dom, err := h.secretBackend.CreateSecretDomain(d.Name)
        if smslogger.CheckError(err, "CreateSecretDomainHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        <span class="cov6" title="2">w.Header().Set("Content-Type", "application/json")
        w.WriteHeader(http.StatusCreated)
        err = json.NewEncoder(w).Encode(dom)
        if smslogger.CheckError(err, "CreateSecretDomainHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>
}

// deleteSecretDomainHandler deletes a secret domain with the name provided
func (h handler) deleteSecretDomainHandler(w http.ResponseWriter, r *http.Request) <span class="cov6" title="2">{
        vars := mux.Vars(r)
        domName := vars["domName"]

        err := h.secretBackend.DeleteSecretDomain(domName)
        if smslogger.CheckError(err, "DeleteSecretDomainHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        <span class="cov6" title="2">w.WriteHeader(http.StatusNoContent)</span>
}

// createSecretHandler handles creation of secrets on a given domain name
func (h handler) createSecretHandler(w http.ResponseWriter, r *http.Request) <span class="cov6" title="2">{
        // Get domain name from URL
        vars := mux.Vars(r)
        domName := vars["domName"]

        // Get secrets to be stored from body
        var b smsbackend.Secret
        err := json.NewDecoder(r.Body).Decode(&amp;b)
        if smslogger.CheckError(err, "CreateSecretHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusBadRequest)
                return
        }</span>

        <span class="cov6" title="2">err = h.secretBackend.CreateSecret(domName, b)
        if smslogger.CheckError(err, "CreateSecretHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        <span class="cov6" title="2">w.WriteHeader(http.StatusCreated)</span>
}

// getSecretHandler handles reading a secret by given domain name and secret name
func (h handler) getSecretHandler(w http.ResponseWriter, r *http.Request) <span class="cov6" title="2">{
        vars := mux.Vars(r)
        domName := vars["domName"]
        secName := vars["secretName"]

        sec, err := h.secretBackend.GetSecret(domName, secName)
        if smslogger.CheckError(err, "GetSecretHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        <span class="cov6" title="2">w.Header().Set("Content-Type", "application/json")
        err = json.NewEncoder(w).Encode(sec)
        if smslogger.CheckError(err, "GetSecretHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>
}

// listSecretHandler handles listing all secrets under a particular domain name
func (h handler) listSecretHandler(w http.ResponseWriter, r *http.Request) <span class="cov6" title="2">{
        vars := mux.Vars(r)
        domName := vars["domName"]

        secList, err := h.secretBackend.ListSecret(domName)
        if smslogger.CheckError(err, "ListSecretHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        // Creating an anonymous struct to store the returned list of data
        <span class="cov6" title="2">var retStruct = struct {
                SecretNames []string `json:"secretnames"`
        }{
                secList,
        }

        w.Header().Set("Content-Type", "application/json")
        err = json.NewEncoder(w).Encode(retStruct)
        if smslogger.CheckError(err, "ListSecretHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>
}

// deleteSecretHandler handles deleting a secret by given domain name and secret name
func (h handler) deleteSecretHandler(w http.ResponseWriter, r *http.Request) <span class="cov6" title="2">{
        vars := mux.Vars(r)
        domName := vars["domName"]
        secName := vars["secretName"]

        err := h.secretBackend.DeleteSecret(domName, secName)
        if smslogger.CheckError(err, "DeleteSecretHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        <span class="cov6" title="2">w.WriteHeader(http.StatusNoContent)</span>
}

// statusHandler returns information related to SMS and SMS backend services
func (h handler) statusHandler(w http.ResponseWriter, r *http.Request) <span class="cov10" title="3">{
        s, err := h.secretBackend.GetStatus()
        if smslogger.CheckError(err, "StatusHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        <span class="cov10" title="3">status := struct {
                Seal bool `json:"sealstatus"`
        }{
                s,
        }

        w.Header().Set("Content-Type", "application/json")
        err = json.NewEncoder(w).Encode(status)
        if smslogger.CheckError(err, "StatusHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>
}

// loginHandler handles login via password and username
func (h handler) loginHandler(w http.ResponseWriter, r *http.Request) {<span class="cov0" title="0">

}</span>

// unsealHandler is a pass through that sends requests from quorum client
// to the backend.
func (h handler) unsealHandler(w http.ResponseWriter, r *http.Request) <span class="cov0" title="0">{
        // Get shards to be used for unseal
        type unsealStruct struct {
                UnsealShard string `json:"unsealshard"`
        }

        var inp unsealStruct
        decoder := json.NewDecoder(r.Body)
        decoder.DisallowUnknownFields()
        err := decoder.Decode(&amp;inp)
        if smslogger.CheckError(err, "UnsealHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, "Bad input JSON", http.StatusBadRequest)
                return
        }</span>

        <span class="cov0" title="0">err = h.secretBackend.Unseal(inp.UnsealShard)
        if smslogger.CheckError(err, "UnsealHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>
}

// registerHandler allows the quorum clients to register with SMS
// with their PGP public keys that are then used by sms for backend
// initialization
func (h handler) registerHandler(w http.ResponseWriter, r *http.Request) <span class="cov1" title="1">{

        // Get shards to be used for unseal
        type registerStruct struct {
                PGPKey   string `json:"pgpkey"`
                QuorumID string `json:"quorumid"`
        }

        var inp registerStruct
        decoder := json.NewDecoder(r.Body)
        decoder.DisallowUnknownFields()
        err := decoder.Decode(&amp;inp)
        if smslogger.CheckError(err, "RegisterHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, "Bad input JSON", http.StatusBadRequest)
                return
        }</span>

        <span class="cov1" title="1">sh, err := h.secretBackend.RegisterQuorum(inp.PGPKey)
        if smslogger.CheckError(err, "RegisterHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        // Creating a struct for return data
        <span class="cov1" title="1">shStruct := struct {
                Shard string `json:"shard"`
        }{
                sh,
        }

        w.Header().Set("Content-Type", "application/json")
        err = json.NewEncoder(w).Encode(shStruct)
        if smslogger.CheckError(err, "RegisterHandler") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>
}

// healthCheckHandler runs a few commands on the backend and returns
// OK or not depending on the status of the backend
func (h handler) healthCheckHandler(w http.ResponseWriter, r *http.Request) <span class="cov1" title="1">{

        sealed, err := h.secretBackend.GetStatus()
        if smslogger.CheckError(err, "HealthCheck") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        // backend is sealed
        <span class="cov1" title="1">if sealed == true </span><span class="cov0" title="0">{
                http.Error(w, "Secret Backend is not ready for operations", http.StatusInternalServerError)
                return
        }</span>

        // backend is not sealed
        <span class="cov1" title="1">dname, _ := uuid.GenerateUUID()
        dom, err := h.secretBackend.CreateSecretDomain(dname)
        if smslogger.CheckError(err, "HealthCheck Create Domain") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        <span class="cov1" title="1">err = h.secretBackend.DeleteSecretDomain(dom.UUID)
        if smslogger.CheckError(err, "HealthCheck Delete Domain") != nil </span><span class="cov0" title="0">{
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
        }</span>

        <span class="cov1" title="1">w.WriteHeader(http.StatusOK)</span>
}

// CreateRouter returns an http.Handler for the registered URLs
// Takes an interface implementation as input
func CreateRouter(b smsbackend.SecretBackend) http.Handler <span class="cov6" title="2">{
        h := handler{secretBackend: b}

        // Create a new mux to handle URL endpoints
        router := mux.NewRouter()

        router.HandleFunc("/v1/sms/login", h.loginHandler).Methods("POST")

        // Initialization APIs which will be used by quorum client
        // to unseal and to provide root token to sms service
        router.HandleFunc("/v1/sms/quorum/status", h.statusHandler).Methods("GET")
        router.HandleFunc("/v1/sms/quorum/unseal", h.unsealHandler).Methods("POST")
        router.HandleFunc("/v1/sms/quorum/register", h.registerHandler).Methods("POST")

        router.HandleFunc("/v1/sms/healthcheck", h.healthCheckHandler).Methods("GET")
        router.HandleFunc("/v1/sms/domain", h.createSecretDomainHandler).Methods("POST")
        router.HandleFunc("/v1/sms/domain/{domName}", h.deleteSecretDomainHandler).Methods("DELETE")

        router.HandleFunc("/v1/sms/domain/{domName}/secret", h.createSecretHandler).Methods("POST")
        router.HandleFunc("/v1/sms/domain/{domName}/secret", h.listSecretHandler).Methods("GET")
        router.HandleFunc("/v1/sms/domain/{domName}/secret/{secretName}", h.getSecretHandler).Methods("GET")
        router.HandleFunc("/v1/sms/domain/{domName}/secret/{secretName}", h.deleteSecretHandler).Methods("DELETE")

        return router
}</span>
</pre>
		
		<pre class="file" id="file5" style="display: none">/*
 * Copyright 2018 Intel Corporation, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package log

import (
        "fmt"
        "log"
        "os"
)

var errL, warnL, infoL *log.Logger
var stdErr, stdWarn, stdInfo *log.Logger

// Init will be called by sms.go before any other packages use it
func Init(filePath string) <span class="cov1" title="1">{

        stdErr = log.New(os.Stderr, "ERROR: ", log.Lshortfile|log.LstdFlags)
        stdWarn = log.New(os.Stdout, "WARNING: ", log.Lshortfile|log.LstdFlags)
        stdInfo = log.New(os.Stdout, "INFO: ", log.Lshortfile|log.LstdFlags)

        if filePath == "" </span><span class="cov0" title="0">{
                // We will just to std streams
                return
        }</span>

        <span class="cov1" title="1">f, err := os.Create(filePath)
        if err != nil </span><span class="cov0" title="0">{
                stdErr.Println("Unable to create log file: " + err.Error())
                return
        }</span>

        <span class="cov1" title="1">errL = log.New(f, "ERROR: ", log.Lshortfile|log.LstdFlags)
        warnL = log.New(f, "WARNING: ", log.Lshortfile|log.LstdFlags)
        infoL = log.New(f, "INFO: ", log.Lshortfile|log.LstdFlags)</span>
}

// WriteError writes output to the writer we have
// defined during its creation with ERROR prefix
func WriteError(msg string) <span class="cov0" title="0">{
        if errL != nil </span><span class="cov0" title="0">{
                errL.Output(2, fmt.Sprintln(msg))
        }</span>
        <span class="cov0" title="0">if stdErr != nil </span><span class="cov0" title="0">{
                stdErr.Output(2, fmt.Sprintln(msg))
        }</span>
}

// WriteWarn writes output to the writer we have
// defined during its creation with WARNING prefix
func WriteWarn(msg string) <span class="cov2" title="2">{
        if warnL != nil </span><span class="cov2" title="2">{
                warnL.Output(2, fmt.Sprintln(msg))
        }</span>
        <span class="cov2" title="2">if stdWarn != nil </span><span class="cov2" title="2">{
                stdWarn.Output(2, fmt.Sprintln(msg))
        }</span>
}

// WriteInfo writes output to the writer we have
// defined during its creation with INFO prefix
func WriteInfo(msg string) <span class="cov1" title="1">{
        if infoL != nil </span><span class="cov1" title="1">{
                infoL.Output(2, fmt.Sprintln(msg))
        }</span>
        <span class="cov1" title="1">if stdInfo != nil </span><span class="cov1" title="1">{
                stdInfo.Output(2, fmt.Sprintln(msg))
        }</span>
}

//CheckError is a helper function to reduce
//repetition of error checking blocks of code
func CheckError(err error, topic string) error <span class="cov10" title="55">{
        if err != nil </span><span class="cov1" title="1">{
                msg := topic + ": " + err.Error()
                if errL != nil </span><span class="cov1" title="1">{
                        errL.Output(2, fmt.Sprintln(msg))
                }</span>
                <span class="cov1" title="1">if stdErr != nil </span><span class="cov1" title="1">{
                        stdErr.Output(2, fmt.Sprintln(msg))
                }</span>
                <span class="cov1" title="1">return err</span>
        }
        <span class="cov9" title="54">return nil</span>
}
</pre>
		
		<pre class="file" id="file6" style="display: none">/*
 * Copyright 2018 Intel Corporation, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package main

import (
        "context"
        "log"
        "net/http"
        "os"
        "os/signal"

        smsauth "sms/auth"
        smsbackend "sms/backend"
        smsconfig "sms/config"
        smshandler "sms/handler"
        smslogger "sms/log"
)

func main() <span class="cov8" title="1">{
        // Initialize logger
        smslogger.Init("sms.log")

        // Read Configuration File
        smsConf, err := smsconfig.ReadConfigFile("smsconfig.json")
        if err != nil </span><span class="cov0" title="0">{
                log.Fatal(err)
        }</span>

        <span class="cov8" title="1">backendImpl, err := smsbackend.InitSecretBackend()
        if err != nil </span><span class="cov0" title="0">{
                log.Fatal(err)
        }</span>

        <span class="cov8" title="1">httpRouter := smshandler.CreateRouter(backendImpl)

        httpServer := &amp;http.Server{
                Handler: httpRouter,
                Addr:    ":10443",
        }

        // Listener for SIGINT so that it returns cleanly
        connectionsClose := make(chan struct{})
        go func() </span><span class="cov8" title="1">{
                c := make(chan os.Signal, 1)
                signal.Notify(c, os.Interrupt)
                &lt;-c
                httpServer.Shutdown(context.Background())
                close(connectionsClose)
        }</span>()

        // Start in TLS mode by default
        <span class="cov8" title="1">if smsConf.DisableTLS == true </span><span class="cov0" title="0">{
                smslogger.WriteWarn("TLS is Disabled")
                err = httpServer.ListenAndServe()
        }</span> else<span class="cov8" title="1"> {
                // Populate TLSConfig with the certificates and privatekey
                // information
                tlsConfig, err := smsauth.GetTLSConfig(smsConf.CAFile, smsConf.ServerCert, smsConf.ServerKey)
                if smslogger.CheckError(err, "Get TLS Configuration") != nil </span><span class="cov0" title="0">{
                        log.Fatal(err)
                }</span>

                <span class="cov8" title="1">httpServer.TLSConfig = tlsConfig
                // empty strings because tlsconfig already has this information
                err = httpServer.ListenAndServeTLS("", "")</span>
        }

        <span class="cov8" title="1">if err != nil &amp;&amp; err != http.ErrServerClosed </span><span class="cov0" title="0">{
                log.Fatal(err)
        }</span>

        <span class="cov8" title="1">&lt;-connectionsClose</span>
}
</pre>
		
		</div>
	</body>
	<script>
	(function() {
		var files = document.getElementById('files');
		var visible;
		files.addEventListener('change', onChange, false);
		function select(part) {
			if (visible)
				visible.style.display = 'none';
			visible = document.getElementById(part);
			if (!visible)
				return;
			files.value = part;
			visible.style.display = 'block';
			location.hash = part;
		}
		function onChange() {
			select(files.value);
			window.scrollTo(0, 0);
		}
		if (location.hash != "") {
			select(location.hash.substr(1));
		}
		if (!visible) {
			select("file0");
		}
	})();
	</script>
</html>