-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
main.go
528 lines (475 loc) · 15.5 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
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
package main
import (
"crypto/ecdsa"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"path/filepath"
"strings"
"time"
"github.com/asipto/secsipidx/secsipid"
)
const secsipidxVersion = "1.3.2"
// CLIOptions - structure for command line options
type CLIOptions struct {
httpsrv string
httpssrv string
httpspubkey string
httpsprvkey string
httpdir string
fprvkey string
fpubkey string
header string
fheader string
payload string
fpayload string
identity string
fidentity string
alg string
ppt string
typ string
x5u string
attest string
desttn string
origtn string
iat int
origid string
check bool
sign bool
signfull bool
jsonparse bool
expire int
timeout int
ltest bool
version bool
cachedir string
cacheexpire int
cafile string
cainter string
crlfile string
certverify int
verbosity int
}
var cliops = CLIOptions{
httpsrv: "",
httpssrv: "",
httpspubkey: "",
httpsprvkey: "",
httpdir: "",
fprvkey: "",
fpubkey: "",
header: "",
fheader: "",
payload: "",
fpayload: "",
identity: "",
fidentity: "",
alg: "ES256",
ppt: "shaken",
typ: "passport",
x5u: "",
attest: "C",
desttn: "",
origtn: "",
iat: 0,
origid: "",
check: false,
sign: false,
signfull: false,
jsonparse: false,
expire: 0,
timeout: 3,
ltest: false,
version: false,
cachedir: "",
cacheexpire: 3600,
cafile: "",
cainter: "",
crlfile: "",
certverify: 0,
verbosity: 0,
}
// initialize application components
func init() {
// command line arguments
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage of %s (v%s):\n", filepath.Base(os.Args[0]), secsipidxVersion)
fmt.Fprintf(os.Stderr, " (some options have short and long version)\n")
flag.PrintDefaults()
os.Exit(1)
}
flag.StringVar(&cliops.httpsrv, "http-srv", cliops.httpsrv, "http server bind address")
flag.StringVar(&cliops.httpsrv, "H", cliops.httpsrv, "http server bind address")
flag.StringVar(&cliops.httpssrv, "https-srv", cliops.httpssrv, "https server bind address")
flag.StringVar(&cliops.httpspubkey, "https-pubkey", cliops.httpspubkey, "https server public key")
flag.StringVar(&cliops.httpsprvkey, "https-prvkey", cliops.httpsprvkey, "https server private key")
flag.StringVar(&cliops.httpdir, "http-dir", cliops.httpdir, "directory to serve over http")
flag.StringVar(&cliops.fprvkey, "fprvkey", cliops.fprvkey, "path to private key")
flag.StringVar(&cliops.fprvkey, "k", cliops.fprvkey, "path to private key")
flag.StringVar(&cliops.fpubkey, "fpubkey", cliops.fpubkey, "path to public key")
flag.StringVar(&cliops.fpubkey, "p", cliops.fpubkey, "path to public key")
flag.StringVar(&cliops.fheader, "fheader", cliops.fheader, "path to file with header value in JSON format")
flag.StringVar(&cliops.header, "header", cliops.header, "header value in JSON format")
flag.StringVar(&cliops.fpayload, "fpayload", cliops.fpayload, "path to file with payload value in JSON format")
flag.StringVar(&cliops.payload, "payload", cliops.payload, "payload value in JSON format")
flag.StringVar(&cliops.fidentity, "fidentity", cliops.fidentity, "path to file with identity value")
flag.StringVar(&cliops.identity, "identity", cliops.identity, "identity value")
flag.StringVar(&cliops.alg, "alg", cliops.alg, "encryption algorithm")
flag.StringVar(&cliops.ppt, "ppt", cliops.ppt, "used extension")
flag.StringVar(&cliops.typ, "typ", cliops.typ, "token type")
flag.StringVar(&cliops.x5u, "x5u", cliops.x5u, "value of the field with the location of the certificate used to sign the token (default: '')")
flag.StringVar(&cliops.attest, "attest", cliops.attest, "attestation level")
flag.StringVar(&cliops.attest, "a", cliops.attest, "attestation level")
flag.StringVar(&cliops.desttn, "dest-tn", cliops.desttn, "destination (called) number (default: '')")
flag.StringVar(&cliops.desttn, "d", cliops.desttn, "destination (called) number (default: '')")
flag.StringVar(&cliops.origtn, "orig-tn", cliops.origtn, "origination (calling) number (default: '')")
flag.StringVar(&cliops.origtn, "o", cliops.origtn, "origination (calling) number (default: '')")
flag.IntVar(&cliops.iat, "iat", cliops.iat, "timestamp when the token was created")
flag.StringVar(&cliops.origid, "orig-id", cliops.origid, "origination identifier (default: '')")
flag.BoolVar(&cliops.check, "check", cliops.check, "check validity of the signature")
flag.BoolVar(&cliops.check, "c", cliops.check, "check validity of the signature")
flag.BoolVar(&cliops.sign, "sign", cliops.sign, "sign the header and payload given as full JSON documents")
flag.BoolVar(&cliops.sign, "s", cliops.sign, "sign the header and payload given as full JSON documents")
flag.BoolVar(&cliops.signfull, "sign-full", cliops.sign, "sign the header and payload build from the individual parameter values")
flag.BoolVar(&cliops.signfull, "S", cliops.sign, "sign the header and payload, with parameters")
flag.BoolVar(&cliops.jsonparse, "json-parse", cliops.jsonparse, "parse and re-serialize JSON header and payload values")
flag.IntVar(&cliops.expire, "expire", cliops.expire, "duration of token validity (in seconds)")
flag.IntVar(&cliops.timeout, "timeout", cliops.timeout, "http get timeout (in seconds)")
flag.BoolVar(&cliops.ltest, "ltest", cliops.ltest, "run local basic test")
flag.BoolVar(&cliops.ltest, "l", cliops.ltest, "run local basic test")
flag.BoolVar(&cliops.version, "version", cliops.version, "print version")
flag.StringVar(&cliops.cachedir, "cache-dir", cliops.cachedir, "path to the directory with cached certificates (default: '')")
flag.IntVar(&cliops.cacheexpire, "cache-expire", cliops.cacheexpire, "duration of cached certificates (in seconds)")
flag.StringVar(&cliops.cafile, "ca-file", cliops.cafile, "file with root CA certificates in pem format")
flag.StringVar(&cliops.cainter, "ca-inter", cliops.cainter, "file with intermediate CA certificates in pem format")
flag.StringVar(&cliops.crlfile, "crl-file", cliops.crlfile, "file with CRL in pem format")
flag.IntVar(&cliops.certverify, "cert-verify", cliops.certverify, "certificate verification mode (default 0)")
flag.IntVar(&cliops.verbosity, "verbosity", cliops.verbosity, "verbosity level (default 0)")
flag.IntVar(&cliops.verbosity, "vl", cliops.verbosity, "verbosity level (default 0)")
}
func localTest() {
var err error
header := secsipid.SJWTHeader{
Alg: "ES256",
Ppt: "shaken",
Typ: "passport",
X5u: "https://certs.kamailio.org/stir-shaken/cert01.crt",
}
payload := secsipid.SJWTPayload{
ATTest: "A",
Dest: secsipid.SJWTDest{
TN: []string{"493044444444"},
},
IAT: time.Now().Unix(),
Orig: secsipid.SJWTOrig{
TN: "493055555555",
},
OrigID: "32c7e392-33fc-11ea-840b-784f435c76a8",
}
prvkey, _ := ioutil.ReadFile("../test/certs/ec256-private.pem")
var ecdsaPrvKey *ecdsa.PrivateKey
if ecdsaPrvKey, _, err = secsipid.SJWTParseECPrivateKeyFromPEM(prvkey); err != nil {
fmt.Printf("Unable to parse ECDSA private key: %v\n", err)
return
}
pubkey, _ := ioutil.ReadFile("../test/certs/ec256-public.pem")
var ecdsaPubKey *ecdsa.PublicKey
if ecdsaPubKey, _, err = secsipid.SJWTParseECPublicKeyFromPEM(pubkey); err != nil {
fmt.Printf("Unable to parse ECDSA public key: %v\n", err)
return
}
token := secsipid.SJWTEncode(header, payload, ecdsaPrvKey)
fmt.Printf("Result: %s\n", token)
payloadOut, _ := secsipid.SJWTDecodeWithPubKey(token, cliops.expire, ecdsaPubKey)
jsonPayload, _ := json.Marshal(payloadOut)
fmt.Printf("Payload: %s\n", jsonPayload)
headerJSON, _ := json.Marshal(header)
payloadJSON, _ := json.Marshal(payload)
signatureText, _, _ := secsipid.SJWTEncodeText(string(headerJSON), string(payloadJSON), "certs/ec256-private.pem")
fmt.Printf("Signature: %s\n", signatureText)
}
func secsipidxCLISignFull() int {
token, _, err := secsipid.SJWTGetIdentity(cliops.origtn, cliops.desttn, cliops.attest, cliops.origid, cliops.x5u, cliops.fprvkey)
if err != nil {
fmt.Printf("error: %v\n", err)
return -1
}
fmt.Printf("%s\n", token)
return 0
}
func secsipidxCLISign() int {
var err error
var useStruct bool
var sHeader string
var sPayload string
var token string
if len(cliops.fprvkey) <= 0 {
fmt.Printf("path to private key not provided\n")
return -1
}
useStruct = false
header := secsipid.SJWTHeader{}
if len(cliops.fheader) > 0 {
vHeader, _ := ioutil.ReadFile(cliops.fheader)
if cliops.jsonparse {
err = json.Unmarshal(vHeader, &header)
if err != nil {
fmt.Printf("Failed to parse header json\n")
fmt.Println(err)
return -1
}
useStruct = true
} else {
sHeader = string(vHeader)
}
} else if len(cliops.header) > 0 {
if cliops.jsonparse {
err = json.Unmarshal([]byte(cliops.header), &header)
if err != nil {
fmt.Printf("Failed to parse header json\n")
fmt.Println(err)
return -1
}
useStruct = true
} else {
sHeader = cliops.header
}
} else {
header = secsipid.SJWTHeader{
Alg: cliops.alg,
Ppt: cliops.ppt,
Typ: cliops.typ,
X5u: cliops.x5u,
}
if len(header.X5u) <= 0 {
header.X5u = "https://127.0.0.1/cert.pem"
}
useStruct = true
}
payload := secsipid.SJWTPayload{}
if len(cliops.fpayload) > 0 {
vPayload, _ := ioutil.ReadFile(cliops.fpayload)
if cliops.jsonparse {
err = json.Unmarshal(vPayload, &payload)
if err != nil {
fmt.Printf("Failed to parse payload json\n")
fmt.Println(err)
return -1
}
useStruct = true
} else {
sPayload = string(vPayload)
}
} else if len(cliops.payload) > 0 {
if cliops.jsonparse {
err = json.Unmarshal([]byte(cliops.payload), &payload)
if err != nil {
fmt.Printf("Failed to parse payload json\n")
fmt.Println(err)
return -1
}
useStruct = true
} else {
sPayload = cliops.payload
}
} else {
payload = secsipid.SJWTPayload{
ATTest: cliops.attest,
Dest: secsipid.SJWTDest{
TN: []string{cliops.desttn},
},
IAT: int64(cliops.iat),
Orig: secsipid.SJWTOrig{
TN: cliops.origtn,
},
OrigID: cliops.origid,
}
if payload.IAT == 0 {
payload.IAT = time.Now().Unix()
}
useStruct = true
}
if useStruct {
if cliops.verbosity > 0 {
fmt.Printf("Signing using the structures build from parameter values\n")
}
prvkey, _ := ioutil.ReadFile(cliops.fprvkey)
var ecdsaPrvKey *ecdsa.PrivateKey
if ecdsaPrvKey, _, err = secsipid.SJWTParseECPrivateKeyFromPEM(prvkey); err != nil {
fmt.Printf("Unable to parse ECDSA private key: %v\n", err)
return -1
}
token = secsipid.SJWTEncode(header, payload, ecdsaPrvKey)
} else {
if cliops.verbosity > 0 {
fmt.Printf("Signing using the JSON documents from parameters\n")
}
token, _, _ = secsipid.SJWTEncodeText(sHeader, sPayload, cliops.fprvkey)
}
fmt.Printf("%s\n", token)
return 0
}
func secsipidxCLICheck() int {
var sIdentity string
var ret int
var err error
if len(cliops.fpubkey) <= 0 {
fmt.Printf("path to public key not provided\n")
return -1
}
if len(cliops.fidentity) > 0 {
vIdentity, _ := ioutil.ReadFile(cliops.fidentity)
sIdentity = string(vIdentity)
} else if len(cliops.identity) > 0 {
sIdentity = cliops.identity
} else {
fmt.Printf("Identity value not provided\n")
return -1
}
ret, err = secsipid.SJWTCheckFullIdentity(sIdentity, cliops.expire, cliops.fpubkey, cliops.timeout)
if err != nil {
fmt.Printf("error message: %v\n", err)
}
return ret
}
func httpHandleV1Check(w http.ResponseWriter, r *http.Request) {
var ret int
fmt.Printf("incoming request for identity check ...\n")
body, err := ioutil.ReadAll(r.Body)
if err != nil {
fmt.Printf("error reading body: %v", err)
http.Error(w, "cannot read body", http.StatusBadRequest)
return
}
ret, err = secsipid.SJWTCheckFullIdentity(string(body), cliops.expire, cliops.fpubkey, cliops.timeout)
if err != nil {
fmt.Printf("failed checking identity: %v\n", err)
http.Error(w, "FAILED\n", http.StatusInternalServerError)
return
}
fmt.Printf("valid identity - return code: %d\n", ret)
fmt.Fprintf(w, "OK\n")
}
func httpHandleV1SignCSV(w http.ResponseWriter, r *http.Request) {
fmt.Printf("incoming request for building identity ...\n")
body, err := ioutil.ReadAll(r.Body)
if err != nil {
fmt.Printf("error reading body: %v\n", err)
http.Error(w, "cannot read body", http.StatusBadRequest)
return
}
token := strings.Split(strings.TrimSpace(string(body)), ",")
if len(token) < 5 {
fmt.Printf("too few tokens in input body: %d\n", len(token))
http.Error(w, "too few tokens", http.StatusBadRequest)
return
}
var hdr string
hdr, _, err = secsipid.SJWTGetIdentity(token[0], token[1], token[2], token[3], token[4], cliops.fprvkey)
if err != nil {
fmt.Printf("error reading body: %v", err)
http.Error(w, "cannot read body", http.StatusBadRequest)
return
}
fmt.Fprintf(w, "%s\n", hdr)
}
func startHTTPServices() chan error {
errchan := make(chan error)
// starting HTTP server
if len(cliops.httpsrv) > 0 {
go func() {
log.Printf("starting HTTP service on: %s ...", cliops.httpsrv)
if err := http.ListenAndServe(cliops.httpsrv, nil); err != nil {
errchan <- err
}
}()
}
// starting HTTPS server
if len(cliops.httpssrv) > 0 && len(cliops.httpspubkey) > 0 && len(cliops.httpsprvkey) > 0 {
go func() {
log.Printf("Starting HTTPS service on: %s ...", cliops.httpssrv)
if err := http.ListenAndServeTLS(cliops.httpssrv, cliops.httpspubkey, cliops.httpsprvkey, nil); err != nil {
errchan <- err
}
}()
}
return errchan
}
func main() {
var ret int
flag.Parse()
if cliops.version {
fmt.Printf("%s v%s\n", filepath.Base(os.Args[0]), secsipidxVersion)
os.Exit(1)
}
if cliops.ltest {
localTest()
os.Exit(1)
}
if len(cliops.cachedir) > 0 {
secsipid.SetURLFileCacheOptions(cliops.cachedir, cliops.cacheexpire)
}
if len(cliops.cafile) > 0 {
secsipid.SJWTLibOptSetS("CertCAFile", cliops.cafile)
}
if len(cliops.cainter) > 0 {
secsipid.SJWTLibOptSetS("CertCAInter", cliops.cainter)
}
if len(cliops.crlfile) > 0 {
secsipid.SJWTLibOptSetS("CertCRLFile", cliops.crlfile)
}
if cliops.certverify > 0 {
secsipid.SJWTLibOptSetN("CertVerify", cliops.certverify)
}
if len(cliops.x5u) > 0 {
secsipid.SJWTLibOptSetS("x5u", cliops.x5u)
}
if (len(cliops.httpsrv) > 0) || (len(cliops.httpssrv) > 0 && len(cliops.httpspubkey) > 0 && len(cliops.httpsprvkey) > 0) {
http.HandleFunc("/v1/check", httpHandleV1Check)
http.HandleFunc("/v1/sign-csv", httpHandleV1SignCSV)
if len(cliops.httpdir) > 0 {
fmt.Printf("serving files over http from directory: %s\n", cliops.httpdir)
http.Handle("/v1/pub/", http.StripPrefix("/v1/pub/", http.FileServer(http.Dir(cliops.httpdir))))
}
fmt.Printf("starting http services ...\n")
errchan := startHTTPServices()
select {
case err := <-errchan:
log.Printf("unable to start http services due to (error: %v)", err)
}
os.Exit(1)
}
ret = 0
if cliops.check {
if cliops.verbosity > 0 {
fmt.Printf("Running with check command\n")
}
ret = secsipidxCLICheck()
if ret == 0 {
fmt.Printf("ok\n")
} else {
fmt.Printf("not-ok\n")
}
os.Exit(ret)
} else if cliops.signfull {
if cliops.verbosity > 0 {
fmt.Printf("Running with sign-full command\n")
}
ret = secsipidxCLISignFull()
os.Exit(ret)
} else if cliops.sign {
if cliops.verbosity > 0 {
fmt.Printf("Running with sign command\n")
}
ret = secsipidxCLISign()
os.Exit(ret)
} else {
fmt.Printf("%s v%s\n", filepath.Base(os.Args[0]), secsipidxVersion)
fmt.Printf("run '%s --help' to see the options\n", filepath.Base(os.Args[0]))
}
os.Exit(ret)
}