-
Notifications
You must be signed in to change notification settings - Fork 3
/
dmvpn-ca
executable file
·1532 lines (1321 loc) · 30.6 KB
/
dmvpn-ca
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
#!/usr/bin/lua5.2
--[[
Certificate Authority tool for Dynamic Multipoint VPN
Copyright (c) 2014-2020 Kaarle Ritvanen
Copyright (c) 2015 Timo Teräs
Copyright (c) 2017 Natanael Copa
See LICENSE file for license details
]]--
conf_file = io.open(os.getenv('DMVPN_CA_CONF') or '/etc/dmvpn-ca.conf')
config = require('lyaml').load(conf_file:read('*a'))
conf_file:close()
asn1 = require('asn1')
rfc3779 = require('asn1.rfc3779')
rfc5280 = require('asn1.rfc5280')
dmvpn = require('dmvpn')
pkcs12 = require('openssl.pkcs12')
pkey = require('openssl.pkey')
x509 = require('openssl.x509')
x509an = require('openssl.x509.altname')
x509ch = require('openssl.x509.chain')
x509crl = require('openssl.x509.crl')
x509ext = require('openssl.x509.extension')
x509n = require('openssl.x509.name')
stat = require('posix.sys.stat')
unistd = require('posix.unistd')
stringy = require('stringy')
dev = io.open('/dev/urandom')
s = dev:read(4)
dev:close()
assert(s:len() == 4)
seed = 0
for i=1,4 do seed = seed * 256 + s:byte(i) end
math.randomseed(seed)
function set_config_defaults(config, defaults)
for k, v in pairs(defaults) do
if not config[k] then config[k] = v
elseif type(v) == 'table' then
set_config_defaults(config[k], v)
end
end
end
set_config_defaults(
config,
{
db={file='/var/lib/misc/dmvpn-ca.sqlite3'},
cert={
lifetime=365 * 24 * 60 * 60,
renewal=30 * 24 * 60 * 60,
['hash-alg']='SHA256',
key={type='EC', curve='secp384r1'}
},
ca={dn='O=DMVPN'},
hub={
dn='$ROOT,OU=Hubs,CN=$NAME',
['default-name']='Hub-$ID',
subnets={'10.0.0.0/8'}
},
spoke={
dn='$ROOT,OU=$SITE,CN=$NAME',
['default-name']='VPNc-$ID'
},
crl={},
['password-length']=16,
['default-asn']=65000
}
)
for _, ct in ipairs{'ca', 'hub', 'spoke', 'crl'} do
set_config_defaults(config[ct], config.cert)
end
if config.db['encrypt-keys'] == true then
config.db['encrypt-keys'] = 'aes128'
end
now = os.time()
stat.umask(bit32.bor(stat.S_IRWXG, stat.S_IRWXO))
function connection()
if not sql then
sql = require('luasql.sqlite3').sqlite3()
conn = sql:connect(config.db.file)
if not conn then
error('Cannot open database file: '..config.db.file)
end
conn:setautocommit(false)
end
return conn
end
function execute(statement)
local res, err = connection():execute(statement)
if res then return res end
error(err)
end
function escape(s)
if not s then return 'NULL' end
return type(s) == 'string' and "'"..connection():escape(s).."'" or s
end
function value_list(values)
local res = {}
for k, v in pairs(values) do table.insert(res, k..' = '..escape(v)) end
return res
end
function insert(tbl, values)
local columns = {}
local escaped = {}
for k, v in pairs(values) do
table.insert(columns, k)
table.insert(escaped, escape(v))
end
execute(
'INSERT INTO '..tbl..'('..table.concat(columns, ',')..
') VALUES ('..table.concat(escaped, ',')..')'
)
end
function where(filter)
if not filter then return '' end
if type(filter) == 'table' then
filter = value_list(filter)
if not next(filter) then return '' end
filter = table.concat(filter, ' AND ')
end
return ' WHERE '..filter
end
function update(tbl, values, filter)
execute(
'UPDATE '..tbl..' SET '..
table.concat(value_list(values), ', ')..where(filter)
)
end
function delete(tbl, filter) execute('DELETE FROM '..tbl..where(filter)) end
function select_many(what, from, filter, mode, order)
local cur = execute(
'SELECT '..what..' FROM '..from..where(filter)..
(order and ' ORDER BY '..order or '')
)
return function()
local row = cur:fetch(mode and {}, mode)
if row == nil then cur:close() end
return row
end
end
function select_certs(filter, order)
return select_many('*', 'certificate', filter, 'a', order)
end
function select_one(...)
local res
for row in select_many(...) do
assert(res == nil)
res = row
end
return res
end
function exists(tbl, filter, active_only)
if active_only then filter.active = '1' end
return select_one('0', tbl, filter) and true or false
end
function next_key(tbl, key, filter)
return (select_one('MAX('..key..')', tbl, filter) or 0) + 1
end
function select_cert(serial)
return select_one('*', 'certificate', {serial=serial}, 'a')
end
function user_error(msg) error{false, msg} end
function syntax_error(msg) error{true, msg} end
function toint(s, min, max, desc)
local i = tonumber(s)
if i and i == math.floor(i) and i >= min and (not max or i <= max) then
return i
end
if desc then user_error('Invalid '..desc..': '..s) end
end
function toid(s) return toint(s, 1, nil, 'ID') end
function detect_afi(s)
x509an.new():add('IP', s)
return s:find(':') and 2 or 1
end
function detect_prefix_afi(s)
local function fail() user_error('Invalid network address: '..s) end
local comps = stringy.split(s, '/')
if #comps ~= 2 then fail() end
local afi = detect_afi(comps[1])
if not (afi and toint(comps[2], 0, ({32, 128})[afi])) then fail() end
return afi
end
passwords = {}
function get_password(new, id)
if not id then id = 'default' end
if not passwords[id] then passwords[id] = dmvpn.get_password(new) end
return passwords[id]
end
function decrypt_key(key)
return pkey.new(
key, {format='PEM', type='private', password=get_password}
)
end
function load_cert(row)
return x509.new(row.data, 'PEM'), decrypt_key(row.privateKey)
end
function load_ca_cert()
if not ca_cert then ca_cert, ca_key = load_cert(select_cert(0)) end
return ca_cert, ca_key
end
function encrypt_key(key, new_pw, pw_id)
return key:toPEM{
type='private',
cipher=config.db['encrypt-keys'] or nil,
password=function() return get_password(new_pw, pw_id) end
}
end
function sign(object, hash_alg, cert, key)
if not cert then cert, key = load_ca_cert() end
object:setIssuer(cert:getSubject())
object:addExtension(
x509ext.new(
'authorityKeyIdentifier',
'DER',
rfc5280.AuthorityKeyIdentifier.encode{
keyIdentifier=rfc5280.KeyIdentifier.decode(
cert:getExtension(
'subjectKeyIdentifier'
):getData()
)
}
)
)
return object:sign(key, hash_alg)
end
function issue_cert(attrs, func)
local key = pkey.new(attrs.params.key)
local ca = attrs.usage and attrs.usage.keyCertSign
attrs.serial = ca and 0 or next_key('certificate', 'serial')
local cert = x509.new()
cert:setVersion(3)
cert:setSerial(attrs.serial)
cert:setPublicKey(key)
local dn = x509n.new()
for _, rdn in ipairs(stringy.split(attrs.dn, ',')) do
local attr, value = string.match(rdn, '^%s*(%a+)=(.*)$')
if not attr then user_error('Invalid RDN: '..rdn) end
dn:add(attr, value)
end
cert:setSubject(dn)
cert:setBasicConstraints{CA=attrs.usage}
cert:setBasicConstraintsCritical(true)
local issued = cert:getLifetime()
local expires = issued + attrs.params.lifetime
cert:setLifetime(issued, expires)
attrs.issued = issued
attrs.expires = expires
attrs.privateKey = (ca or not attrs.usage) and encrypt_key(key, ca) or
key:toPEM{type='private'}
cert:addExtension(
x509ext.new(
'subjectKeyIdentifier',
'DER',
rfc5280.KeyIdentifier.encode(cert:getPublicKeyDigest())
)
)
if attrs.usage then
cert:addExtension(
x509ext.new(
'keyUsage',
'DER',
rfc5280.KeyUsage.encode(attrs.usage)
)
)
attrs.usage = nil
end
local crl_dp = config.crl['dist-point']
if crl_dp then
cert:addExtension(
x509ext.new(
'crlDistributionPoints',
'DER',
rfc5280.CRLDistributionPoints.encode{
{
distributionPoint={
fullName={{uniformResourceIdentifier=crl_dp}}
}
}
}
)
)
end
if func then func(cert, attrs) end
sign(cert, attrs.params['hash-alg'], ca and cert, ca and key)
attrs.data = tostring(cert)
attrs.dn = tostring(dn)
attrs.params = nil
attrs.sname = nil
attrs.vname = nil
insert('certificate', attrs)
return attrs
end
function issue_ca_cert(usage)
return issue_cert{dn=config.ca.dn, params=config.ca, usage=usage}
end
function export_cert(cert)
local password = {}
for i=1,config['password-length'] do
local r = math.random(0, 61)
if r > 35 then r = r + 61
elseif r > 9 then r = r + 55
else r = r + 48 end
password[i] = r
end
password = string.char(table.unpack(password))
local chain = x509ch.new()
chain:add(load_ca_cert())
if config.db['encrypt-keys'] then chain:add(load_crl_cert()) end
chain:add(x509.new(cert.data, 'PEM'))
local file = io.open(
('%s_%s.%s.pfx'):format(cert.site, cert.vpnc, password), 'w'
)
file:write(
tostring(
pkcs12.new{
key=decrypt_key(cert.privateKey),
certs=chain,
password=password
}
)
)
file:close()
end
function add_header(tbl, columns)
if tbl[1] then table.insert(tbl, 1, columns) end
return tbl
end
function format_cert_info(certs)
local res = {}
local function format_ts(timestamp) return
os.date('%x %X', timestamp)
end
for _, cert in ipairs(certs) do
local exp_info
if cert.revoked then
exp_info = 'Revoked '..format_ts(cert.revoked)
else
exp_info = 'Expire'..
(cert.expires < now and 'd' or 's')..' '..
format_ts(cert.expires)
end
table.insert(
res,
{cert.serial, cert.dn, format_ts(cert.issued), exp_info}
)
end
return add_header(res, {'serial', 'dn', 'issued', 'validity'})
end
function print_cert(cert)
print(x509.new(cert.data, 'PEM'):text{'ext_parse'})
end
function is_valid(cert, margin)
return not cert.revoked and now < cert.expires - (margin or 0)
end
function revoke(filter)
local revoked = {}
for cert in select_certs(filter) do
if is_valid(cert) then
update(
'certificate',
{revoked=now},
{serial=cert.serial}
)
cert.revoked = now
table.insert(revoked, cert)
end
end
if #revoked > 0 then update('crl', {expires=now}) end
return revoked
end
function scan_next(desc)
if #arg == 0 then
if desc then syntax_error('Missing '..desc) end
return
end
local res = arg[1]
table.remove(arg, 1)
return res
end
function scan_addr()
local addr = scan_next('IP address')
detect_afi(addr)
return addr
end
function scan_subnet()
local addr = scan_next('network address')
detect_prefix_afi(addr)
return addr
end
function scan_name_token()
local token = scan_next('attribute')
if token ~= 'name' then syntax_error('Invalid attribute: '..token) end
end
function scan_param(choices, desc, optional)
if type(choices) == 'string' then choices = {choices} end
local k = scan_next(not optional and desc)
if not k then return end
for _, v in ipairs(choices) do
if k == v then return k, scan_next(k..' specification') end
end
syntax_error('Invalid '..desc..': '..k)
end
function scan_site_code() return scan_next('site code'):upper() end
function validate_site(code, retired)
code = code:upper()
if exists('site', {code=code}, not retired) then return code end
user_error('Invalid site code: '..code)
end
function scan_site(retired) return validate_site(scan_site_code(), retired) end
function scan_site_selector(options)
options = options or {}
local _, code = scan_param(
options.param or 'site', 'selector', options.required == false
)
if code then return validate_site(code, options.retired) end
end
function scan_site_filter(options)
options = options or {}
options.required = false
local code = scan_site_selector(options)
if code then return {code=code} end
end
function site_filter(filter, column)
if not filter then return end
if not column then column = 'site' end
return {[column]=filter.code}
end
function scan_vpnc(options)
options = options or {}
if options.multiple and arg[1] == 'hubs' then return {site=''} end
local k, v = scan_param({'hub', 'site'}, 'selector', options.multiple)
if not k then return end
local res, obj
if k == 'hub' then
res = {site='', id=v}
obj = 'hub'
else
local _, vpnc = scan_param(
options.id_attr or 'vpnc', 'selector', true
)
if not (vpnc or options.multiple) then vpnc = 1 end
res = {site=validate_site(v, options.retired), id=vpnc}
obj = 'VPNc'
end
if res.id and not exists('vpnc', res, not options.retired) then
user_error('Invalid '..obj..' number: '..res.id)
end
return res
end
function vpnc_filter(filter, site_column, id_column)
if not filter then return end
if not site_column then site_column = 'site' end
if not id_column then id_column = 'vpnc' end
return {[site_column]=filter.site, [id_column]=filter.id}
end
function scan_finished()
if #arg > 0 then syntax_error('Invalid parameter: '..scan_next()) end
end
function display_active(value) return ({['0']='no', ['1']='yes'})[value] end
function show(tbl, columns, filter, mangle)
local output = {columns}
for row in select_many(table.concat(columns, ','), tbl, filter, 'a') do
if row.active then row.active = display_active(row.active) end
if mangle then mangle(row) end
local line = {}
for _, column in ipairs(columns) do
table.insert(line, row[column] or '')
end
table.insert(output, line)
end
return output
end
function show_site(filter)
return show('site', {'code', 'name', 'asn', 'active'}, filter)
end
function show_vpnc(site, vpnc)
local filter = site and site_filter(site, 'v.site') or "v.site > ''"
if vpnc then filter['v.id'] = vpnc end
local columns = {
'v.id', 'v.name', 'v.active', 'a1.address', 'a2.address'
}
local titles = {'vpnc', 'name', 'active','ipv4Address', 'ipv6Address'}
local i = 2
if not site then
table.insert(columns, 1, 'v.site')
table.insert(titles, 1, 'site')
i = 3
elseif site.code == '' then titles[1] = 'hub' end
local output = {}
for row in select_many(
table.concat(columns, ', '),
[[
vpnc v
LEFT JOIN greAddress a1
ON v.site = a1.site AND
v.id = a1.vpnc AND a1.family = 1
LEFT JOIN greAddress a2
ON v.site = a2.site AND
v.id = a2.vpnc AND a2.family = 2
]],
filter,
'n'
) do
if not row[i] then row[i] = '' end
row[i + 1] = display_active(row[i + 1])
table.insert(output, row)
end
return add_header(output, titles)
end
function add_subnet(site, addr)
insert(
'subnet',
{site=site, family=detect_prefix_afi(addr), address=addr}
)
end
function retire_vpnc(site, id)
local filter = {site=site, id=id}
local vf = vpnc_filter(filter)
local revoked = revoke(vf)
delete('greAddress', vf)
update('vpnc', {active='0'}, filter)
return format_cert_info(revoked)
end
function add_site(attrs)
if not attrs.asn then attrs.asn = config['default-asn'] end
insert('site', attrs)
end
function get_cert_by_serial(serial)
scan_finished()
serial = toint(serial, 0, nil, 'serial number')
local cert = select_cert(serial)
if not cert then user_error('Invalid serial number') end
return cert
end
function get_certs()
if arg[1] == 'serial' then
local _, serial = scan_param('serial', 'serial number')
return function(cert, v)
return not v and cert or nil
end, get_cert_by_serial(serial)
end
if arg[1] == 'crl' then
return select_certs('site IS NULL AND serial > 0')
end
return select_certs(
vpnc_filter(scan_vpnc{multiple=true, retired=true}) or
'serial > 0'
)
end
function try_load_crl_cert()
if not config.db['encrypt-keys'] then
return table.unpack{load_ca_cert()}
end
if not crl_cert then
for row in select_certs(
'site IS NULL and serial > 0', 'serial DESC'
) do
if not crl_cert then
local cert, key = load_cert(row)
if is_valid(row) then
crl_cert = cert
crl_key = key
end
end
end
end
return crl_cert, crl_key
end
function load_crl_cert()
local cert, key = try_load_crl_cert()
if not cert then user_error('No valid CRL signing key found') end
return cert, key
end
function generate_crl()
local crl = x509crl.new()
crl:setVersion(2)
local old_serial = select_one('serial', 'crl')
local new_serial = (old_serial or 0) + 1
crl:addExtension(
x509ext.new(
'crlNumber', 'DER', rfc5280.CRLNumber.encode(new_serial)
)
)
local timestamp = crl:getLastUpdate()
local expires = timestamp + config.crl.lifetime
crl:setNextUpdate(expires)
for cert in select_certs() do
if cert.expires > timestamp and cert.revoked then
crl:add(cert.serial, cert.revoked)
end
end
sign(crl, config.crl['hash-alg'], table.unpack{load_crl_cert()})
insert('crl', {serial=new_serial, expires=expires, data=tostring(crl)})
if old_serial then delete('crl', {serial=old_serial}) end
return crl
end
function get_crl()
local row = select_one('expires, data', 'crl', nil, 'n')
return row and now < row[1] - config.crl.renewal and x509crl.new(row[2])
or generate_crl()
end
function print_table(tbl)
local colwidth = {}
for _, row in ipairs(tbl) do
for i, col in ipairs(row) do
colwidth[i] = math.max(
colwidth[i] or 0, string.len(col)
)
end
end
for _, row in ipairs(tbl) do
for i = 1,#row do
if i > 1 then io.write(' ') end
io.write(row[i])
if i < #row then
for _ = 1,colwidth[i] - string.len(row[i]) do
io.write(' ')
end
end
end
io.write('\n')
end
end
function simple_confirm(func)
if not unistd.isatty(0) then return end
func()
io.write('\nContinue (y/n)? ')
io.stdout:flush()
local input = io.read()
if not input or input:lower() ~= 'y' then os.exit() end
io.write('\n')
end
function confirm(object, action, tbl)
if #tbl == 0 then user_error('No such '..object..' to be '..action) end
simple_confirm(
function()
io.write('The following '..object..' will be '..action..':\n\n')
print_table(tbl)
end
)
end
cert_select_syntax = '[serial <num>|hubs|hub <id>|site <abbr> [vpnc <id>]|crl]'
commands = {
site={
add={
'<abbr>',
function()
local site = scan_site_code()
scan_finished()
add_site{code=site}
end
},
set={
'{asn|name} <value> <abbr>',
function()
local k, v = scan_param(
{'asn', 'name'}, 'attribute'
)
local site = scan_site()
scan_finished()
if k == 'asn' then
v = toint(
v,
0,
math.pow(2, 16) - 1,
'AS number'
)
end
update('site', {[k]=v}, {code=site})
end
},
unset={
'name <abbr>',
function()
scan_name_token()
local site = scan_site()
scan_finished()
update('site', {name=false}, {code=site})
end
},
show={
'[code <abbr>]',
function()
local site = scan_site_filter{
param='code', retired=true
}
scan_finished()
return show_site(site or "code > ''")
end
},
retire={
'<abbr>',
function()
local site = scan_site()
scan_finished()
confirm('site', 'retired', show_site{code=site})
delete('subnet', {site=site})
local output = retire_vpnc(site)
update('site', {active='0'}, {code=site})
return output
end
}
},
subnet={
add={
'<addr> site <abbr>',
function()
local addr = scan_subnet()
local site = scan_site_selector()
scan_finished()
add_subnet(site, addr)
end
},
show={
'[site <abbr>]',
function()
local site = scan_site_filter()
scan_finished()
return show(
'subnet',
{'site', 'address'},
site and site_filter(site) or
"site > ''"
)
end
},
del={
'<addr> [site <abbr>]',
function()
local addr = scan_subnet()
local filter = site_filter(scan_site_filter())
scan_finished()
if not filter then filter = {} end
filter.address = addr
if not exists('subnet', filter) then
user_error(
'Address does not exist: '..addr
)
end
delete('subnet', filter)
end
}
},
vpnc={
create={
'site <abbr> [id <num>]',
function()
local site = scan_site_selector()
local _, id = scan_param('id', 'VPNc ID', true)
scan_finished()
insert(
'vpnc',
{
site=site,
id=id and toid(id) or
next_key(
'vpnc',
'id',
{site=site}
)
}
)
end
},
set={
'name <value> site <abbr> id <num>',
function()
local _, name = scan_param('name', 'attribute')
local vpnc = scan_vpnc{id_attr='id'}
scan_finished()
update('vpnc', {name=name}, vpnc)
end
},
unset={
'name site <abbr> id <num>',
function()
scan_name_token()
local vpnc = scan_vpnc{id_attr='id'}
scan_finished()
update('vpnc', {name=false}, vpnc)
end
},
show={
'[site <abbr>]',
function()
local site = scan_site_filter{retired=true}
scan_finished()
return show_vpnc(site)
end
},
retire={
'<id> site <abbr>',
function()
local id = toid(scan_next('VPNc number'))
local site = scan_site_selector()
scan_finished()
confirm(
'VPNc',
'retired',
show_vpnc({code=site}, id)
)
return retire_vpnc(site, id)
end
}
},
['gre-addr']={
add={
'<addr> {hub <id>|site <abbr> [vpnc <id>]}',
function()
local addr = scan_addr()
local vpnc = scan_vpnc()
scan_finished()
insert(
'greAddress',
{
site=vpnc.site,
vpnc=vpnc.id,
family=detect_afi(addr),
address=addr
}
)
end
},
del={
'<addr>',
function()
local addr = scan_addr()
scan_finished()