]> git.proxmox.com Git - proxmox-acme.git/blame - src/PVE/ACME/DNSChallenge.pm
dns: cope with plugin json index not being available
[proxmox-acme.git] / src / PVE / ACME / DNSChallenge.pm
CommitLineData
98b96d9e
WL
1package PVE::ACME::DNSChallenge;
2
3use strict;
4use warnings;
5
6use Digest::SHA qw(sha256);
4195bf0a
TL
7use JSON;
8
98b96d9e
WL
9use PVE::Tools;
10
c617455e
WB
11use PVE::ACME;
12
98b96d9e
WL
13use base qw(PVE::ACME::Challenge);
14
15my $ACME_PATH = '/usr/share/proxmox-acme/proxmox-acme';
16
17sub supported_challenge_types {
122626b3 18 return ["dns-01"];
98b96d9e
WL
19}
20
21sub type {
22 return 'dns';
23}
24
4195bf0a 25my $DNS_API_CHALLENGE_SCHEMA_FN = '/usr/share/proxmox-acme/dns-challenge-schema.json';
6f5be4aa 26
e2483043 27my $plugin_cache;
e3924936 28sub get_supported_plugins {
e2483043
TL
29 if (!$plugin_cache) {
30 $plugin_cache = -e $DNS_API_CHALLENGE_SCHEMA_FN # we allow this to be optional as not all users require
31 ? from_json(PVE::Tools::file_get_contents($DNS_API_CHALLENGE_SCHEMA_FN))
32 : {};
33 }
34 return $plugin_cache;
e3924936 35}
98b96d9e
WL
36
37sub properties {
e2483043 38 my $plugins = get_supported_plugins();
98b96d9e
WL
39 return {
40 api => {
41 description => "API plugin name",
42 type => 'string',
6f5be4aa 43 enum => [sort keys %$plugins],
98b96d9e
WL
44 },
45 data => {
46 type => 'string',
6372e898 47 description => 'DNS plugin data. (base64 encoded)',
98b96d9e 48 },
4317ba99
TL
49 'validation-delay' => {
50 type => 'integer',
51 description => 'Extra delay in seconds to wait before requesting validation.'
52 .' Allows to cope with a long TTL of DNS records.',
53 # low default, but our bet is that the acme-challenge domain isn't
54 # cached at all, so it hopefully shouldn't run into TTL issues
55 default => 30,
56 optional => 1,
57 minimum => 0,
58 maximum => 2 * 24 * 60 * 60,
59 }
98b96d9e
WL
60 };
61}
62
63sub options {
64 return {
65 api => {},
13b63882 66 data => { optional => 1 },
98b96d9e
WL
67 nodes => { optional => 1 },
68 disable => { optional => 1 },
4317ba99 69 'validation-delay' => { optional => 1 },
98b96d9e
WL
70 };
71}
72
f00829fd
FG
73my $proxmox_acme_command = sub {
74 my ($self, $acme, $auth, $data, $action) = @_;
98b96d9e
WL
75
76 die "No plugin data for DNSChallenge\n" if !defined($data->{plugin});
f00829fd
FG
77
78 my $alias = $data->{alias};
79 my $domain = $auth->{identifier}->{value};
80
81 my $challenge = $self->extract_challenge($auth->{challenges});
82 my $key_auth = $acme->key_authorization($challenge->{token});
83
84 my $txtvalue = PVE::ACME::encode(sha256($key_auth));
98b96d9e
WL
85 my $dnsplugin = $data->{plugin}->{api};
86 my $plugin_conf_string = $data->{plugin}->{data};
87
88 # for security reasons, we execute the command as nobody
89 # we can't verify that the code of the DNSPlugins are harmless.
f0ed0733 90 my $cmd = ["setpriv", "--reuid", "nobody", "--regid", "nogroup", "--clear-groups", "--reset-env", "--"];
98b96d9e 91
f00829fd
FG
92 # The order of the parameters passed to proxmox-acme is important
93 # proxmox-acme <setup|teardown> $plugin <$domain|$alias> $txtvalue [$plugin_conf_string]
94 push @$cmd, "/bin/bash", $ACME_PATH, $action, $dnsplugin;
95 if ($alias) {
96 push @$cmd, $alias;
97 } else {
98 push @$cmd, $domain;
99 }
13bc64ea
FG
100 my $input = "$txtvalue\n";
101 $input .= "$plugin_conf_string\n" if $plugin_conf_string;
f00829fd 102
13bc64ea 103 PVE::Tools::run_command($cmd, input => $input);
f00829fd
FG
104
105 $data->{url} = $challenge->{url};
106
107 return $domain;
108};
109
110sub setup {
111 my ($self, $acme, $auth, $data) = @_;
112
113 my $domain = $proxmox_acme_command->($self, $acme, $auth, $data, 'setup');
98b96d9e 114 print "Add TXT record: _acme-challenge.$domain\n";
4317ba99 115
1192b595 116 my $delay = $data->{plugin}->{'validation-delay'} // 30;
4317ba99
TL
117 if ($delay > 0) {
118 print "Sleeping $delay seconds to wait for TXT record propagation\n";
119 sleep($delay); # don't care for EINTR
120 }
98b96d9e
WL
121}
122
98b96d9e 123sub teardown {
f00829fd 124 my ($self, $acme, $auth, $data) = @_;
98b96d9e 125
f00829fd 126 my $domain = $proxmox_acme_command->($self, $acme, $auth, $data, 'teardown');
98b96d9e
WL
127 print "Remove TXT record: _acme-challenge.$domain\n";
128}
129
1301;