]> git.proxmox.com Git - pve-manager.git/blame - PVE/HTTPServer.pm
fix #3430: handle hook script paths better
[pve-manager.git] / PVE / HTTPServer.pm
CommitLineData
57f93db1
DM
1package PVE::HTTPServer;
2
3use strict;
4use warnings;
d06a1c62 5
b996e6c0
DM
6use PVE::SafeSyslog;
7use PVE::INotify;
8use PVE::Tools;
9use PVE::APIServer::AnyEvent;
7af404b2 10use PVE::Exception qw(raise_param_exc raise_perm_exc raise);
c2e9823c 11
b996e6c0
DM
12use PVE::RPCEnvironment;
13use PVE::AccessControl;
0f9ac2df 14use PVE::CertCache;
b996e6c0 15use PVE::Cluster;
3c54bc91 16use PVE::API2Tools;
c2e9823c 17
b996e6c0 18use Data::Dumper;
57f93db1 19
b996e6c0 20use base('PVE::APIServer::AnyEvent');
353fef24 21
b996e6c0 22use HTTP::Status qw(:constants);
353fef24 23
57f93db1
DM
24sub new {
25 my ($this, %args) = @_;
26
27 my $class = ref($this) || $this;
b996e6c0 28 my $self = $class->SUPER::new(%args);
e45f98ef 29
f91072d5 30 $self->{rpcenv} = PVE::RPCEnvironment->init(
e45f98ef
TL
31 $self->{trusted_env} ? 'priv' : 'pub',
32 atfork => sub { $self->atfork_handler() },
33 );
f91072d5 34
b996e6c0
DM
35 return $self;
36}
02667982 37
b996e6c0
DM
38sub verify_spice_connect_url {
39 my ($self, $connect_str) = @_;
57f93db1 40
9d3f059f 41 my $rpcenv = $self->{rpcenv};
9d3f059f
DM
42 $rpcenv->init_request();
43
b996e6c0 44 my ($vmid, $node, $port) = PVE::AccessControl::verify_spice_connect_url($connect_str);
57f93db1 45
b996e6c0
DM
46 return ($vmid, $node, $port);
47}
57f93db1 48
b996e6c0
DM
49sub generate_csrf_prevention_token {
50 my ($username) = @_;
b996e6c0 51 return PVE::AccessControl::assemble_csrf_prevention_token($username);
57f93db1
DM
52}
53
430b554f 54sub auth_handler {
84811327 55 my ($self, $method, $rel_uri, $ticket, $token, $api_token, $peer_host) = @_;
430b554f
DM
56
57 my $rpcenv = $self->{rpcenv};
58
9d3f059f
DM
59 # set environment variables
60 $rpcenv->set_user(undef);
61 $rpcenv->set_language('C');
62 $rpcenv->set_client_ip($peer_host);
63
46095dd4
TL
64 eval { $rpcenv->init_request() };
65 raise("RPCEnvironment init request failed: $@\n") if $@;
a2e669fe 66
430b554f
DM
67 my $require_auth = 1;
68
69 # explicitly allow some calls without auth
70 if (($rel_uri eq '/access/domains' && $method eq 'GET') ||
71 ($rel_uri eq '/access/ticket' && ($method eq 'GET' || $method eq 'POST'))) {
72 $require_auth = 0;
73 }
74
75 my ($username, $age);
76
77 my $isUpload = 0;
78
79 if ($require_auth) {
84811327 80 if ($api_token) {
e45f98ef 81 # the token-ID `<user>@<realm>!<tokenname>` is the user for token based authentication
84811327 82 $username = PVE::AccessControl::verify_token($api_token);
84811327
FG
83 } else {
84 die "No ticket\n" if !$ticket;
85
86 ($username, $age, my $tfa_info) = PVE::AccessControl::verify_ticket($ticket);
86f64e0d 87 $rpcenv->check_user_enabled($username);
84811327
FG
88
89 if (defined($tfa_info)) {
90 if (defined(my $challenge = $tfa_info->{challenge})) {
91 $rpcenv->set_u2f_challenge($challenge);
92 }
e45f98ef 93 die "No ticket\n" if ($rel_uri ne '/access/tfa' || $method ne 'POST');
84811327 94 }
d9fc56ef 95 }
430b554f 96
d9fc56ef 97 $rpcenv->set_user($username);
430b554f 98
d9fc56ef
LS
99 if ($method eq 'POST' && $rel_uri =~ m|^/nodes/([^/]+)/storage/([^/]+)/upload$|) {
100 my ($node, $storeid) = ($1, $2);
e45f98ef 101 # CSRF check are omitted if $isUpload is set, so check user upload permission here
d9fc56ef
LS
102 my $perm = { check => ['perm', "/storage/$storeid", ['Datastore.AllocateTemplate']] };
103 $rpcenv->check_api2_permissions($perm, $username, {});
104 $isUpload = 1;
430b554f 105 }
d9fc56ef 106
736b919d
TL
107 # Skip CSRF check for file upload (difficult to pass CSRF header with native html forms).
108 # Also skip the check with API tokens, as one of the design goals of API tokens was to
109 # provide stateless API access without requiring round-trips to get such CSRF tokens.
110 # CSRF-prevention also does not make much sense outside of the browser context.
111 if ($method ne 'GET' && !($api_token || $isUpload)) {
7d11059e 112 my $euid = $>;
736b919d 113 PVE::AccessControl::verify_csrf_prevention_token($username, $token) if $euid != 0;
7d11059e 114 }
430b554f
DM
115 }
116
117 return {
118 ticket => $ticket,
119 token => $token,
120 userid => $username,
121 age => $age,
122 isUpload => $isUpload,
84811327 123 api_token => $api_token,
430b554f
DM
124 };
125}
126
2261f249
DM
127sub rest_handler {
128 my ($self, $clientip, $method, $rel_uri, $auth, $params) = @_;
129
130 my $rpcenv = $self->{rpcenv};
131
70473e51
DM
132 my $resp = {
133 status => HTTP_NOT_IMPLEMENTED,
134 message => "Method '$method $rel_uri' not implemented",
135 };
136
137 my ($handler, $info);
138
139 eval {
140 my $uri_param = {};
141 ($handler, $info) = PVE::API2->find_handler($method, $rel_uri, $uri_param);
142 return if !$handler || !$info;
2261f249 143
e45f98ef 144 for my $p (sort keys %{$params}) {
a2beaf13
TL
145 if (defined($uri_param->{$p}) && $uri_param->{$p} ne $params->{$p}) {
146 raise_param_exc({
147 $p => "duplicate parameter (already defined in URI) with conflicting values!"
148 });
70473e51
DM
149 }
150 $uri_param->{$p} = $params->{$p};
2261f249 151 }
2261f249 152
7af404b2
FG
153 raise_perm_exc("URI '$rel_uri' not available with API token, need proper ticket.\n")
154 if $auth->{api_token} && !$info->{allowtoken};
155
70473e51
DM
156 # check access permissions
157 $rpcenv->check_api2_permissions($info->{permissions}, $auth->{userid}, $uri_param);
2261f249 158
3c54bc91
DM
159 if ($info->{proxyto} || $info->{proxyto_callback}) {
160 my $node = PVE::API2Tools::resolve_proxyto(
161 $rpcenv, $info->{proxyto_callback}, $info->{proxyto}, $uri_param);
2261f249
DM
162
163 if ($node ne 'localhost' && $node ne PVE::INotify::nodename()) {
164 die "unable to proxy file uploads" if $auth->{isUpload};
70473e51
DM
165 my $remip = $self->remote_node_ip($node);
166 $resp = { proxy => $remip, proxynode => $node, proxy_params => $params };
167 return;
2261f249 168 }
2261f249 169 }
2261f249 170
70473e51
DM
171 my $euid = $>;
172 if ($info->{protected} && ($euid != 0)) {
173 $resp = { proxy => 'localhost' , proxy_params => $params };
174 return;
175 }
2261f249 176
70473e51
DM
177 $resp = {
178 data => $handler->handle($info, $uri_param),
179 info => $info, # useful to format output
180 status => HTTP_OK,
181 };
2261f249
DM
182
183 if (my $count = $rpcenv->get_result_attrib('total')) {
184 $resp->{total} = $count;
185 }
70473e51 186
2261f249
DM
187 if (my $diff = $rpcenv->get_result_attrib('changes')) {
188 $resp->{changes} = $diff;
189 }
190 };
70473e51 191 my $err = $@;
2261f249 192
9d3f059f 193 $rpcenv->set_user(undef); # clear after request
70473e51
DM
194
195 if ($err) {
196 $resp = { info => $info };
197 if (ref($err) eq "PVE::Exception") {
198 $resp->{status} = $err->{code} || HTTP_INTERNAL_SERVER_ERROR;
199 $resp->{errors} = $err->{errors} if $err->{errors};
200 $resp->{message} = $err->{msg};
201 } else {
202 $resp->{status} = HTTP_INTERNAL_SERVER_ERROR;
203 $resp->{message} = $err;
204 }
205 }
206
2261f249
DM
207 return $resp;
208}
430b554f 209
7e5f7c61
DM
210sub check_cert_fingerprint {
211 my ($self, $cert) = @_;
0f9ac2df 212 return PVE::CertCache::check_cert_fingerprint($cert);
7e5f7c61
DM
213}
214
215sub initialize_cert_cache {
216 my ($self, $node) = @_;
0f9ac2df 217 PVE::CertCache::initialize_cert_cache($node);
7e5f7c61
DM
218}
219
220sub remote_node_ip {
221 my ($self, $node) = @_;
222
223 my $remip = PVE::Cluster::remote_node_ip($node);
7e5f7c61
DM
224 die "unable to get remote IP address for node '$node'\n" if !$remip;
225
226 return $remip;
227}
228
57f93db1 2291;