]> git.proxmox.com Git - pve-access-control.git/blame - src/PVE/API2/AccessControl.pm
perm check: forbid undefined/empty ACL path
[pve-access-control.git] / src / PVE / API2 / AccessControl.pm
CommitLineData
2c3a6c0a
DM
1package PVE::API2::AccessControl;
2
3use strict;
4use warnings;
5
2b4c98ab
WB
6use JSON;
7use MIME::Base64;
8
e240695b 9use PVE::Exception qw(raise raise_perm_exc raise_param_exc);
2c3a6c0a
DM
10use PVE::SafeSyslog;
11use PVE::RPCEnvironment;
a427cecb 12use PVE::Cluster qw(cfs_read_file);
158514a8 13use PVE::DataCenterConfig;
2c3a6c0a
DM
14use PVE::RESTHandler;
15use PVE::AccessControl;
16use PVE::JSONSchema qw(get_standard_option);
17use PVE::API2::Domains;
18use PVE::API2::User;
19use PVE::API2::Group;
20use PVE::API2::Role;
21use PVE::API2::ACL;
ac344d7d 22use PVE::API2::OpenId;
dc547a13 23use PVE::API2::TFA;
8967f86f 24use PVE::Auth::Plugin;
47d731c7 25use PVE::OTP;
2c3a6c0a 26
2b4c98ab
WB
27my $u2f_available = 0;
28eval {
29 require PVE::U2F;
30 $u2f_available = 1;
31};
32
2c3a6c0a
DM
33use base qw(PVE::RESTHandler);
34
35__PACKAGE__->register_method ({
30dd4869 36 subclass => "PVE::API2::User",
2c3a6c0a
DM
37 path => 'users',
38});
39
40__PACKAGE__->register_method ({
30dd4869 41 subclass => "PVE::API2::Group",
2c3a6c0a
DM
42 path => 'groups',
43});
44
45__PACKAGE__->register_method ({
30dd4869 46 subclass => "PVE::API2::Role",
2c3a6c0a
DM
47 path => 'roles',
48});
49
50__PACKAGE__->register_method ({
30dd4869 51 subclass => "PVE::API2::ACL",
2c3a6c0a
DM
52 path => 'acl',
53});
54
55__PACKAGE__->register_method ({
30dd4869 56 subclass => "PVE::API2::Domains",
2c3a6c0a
DM
57 path => 'domains',
58});
59
ac344d7d
DM
60__PACKAGE__->register_method ({
61 subclass => "PVE::API2::OpenId",
62 path => 'openid',
63});
64
dc547a13
WB
65__PACKAGE__->register_method ({
66 subclass => "PVE::API2::TFA",
67 path => 'tfa',
68});
69
2c3a6c0a 70__PACKAGE__->register_method ({
30dd4869
TM
71 name => 'index',
72 path => '',
2c3a6c0a
DM
73 method => 'GET',
74 description => "Directory index.",
30dd4869 75 permissions => {
82b63965
DM
76 user => 'all',
77 },
2c3a6c0a
DM
78 parameters => {
79 additionalProperties => 0,
80 properties => {},
81 },
82 returns => {
83 type => 'array',
84 items => {
85 type => "object",
86 properties => {
87 subdir => { type => 'string' },
88 },
89 },
90 links => [ { rel => 'child', href => "{subdir}" } ],
91 },
92 code => sub {
93 my ($param) = @_;
30dd4869 94
2c3a6c0a
DM
95 my $res = [];
96
97 my $ma = __PACKAGE__->method_attributes();
98
99 foreach my $info (@$ma) {
100 next if !$info->{subclass};
101
102 my $subpath = $info->{match_re}->[0];
103
104 push @$res, { subdir => $subpath };
105 }
106
107 push @$res, { subdir => 'ticket' };
37d45deb 108 push @$res, { subdir => 'password' };
2c3a6c0a
DM
109
110 return $res;
111 }});
112
adf8d771 113
afb10353
WB
114my sub verify_auth : prototype($$$$$$$) {
115 my ($rpcenv, $username, $pw_or_ticket, $otp, $path, $privs, $new_format) = @_;
adf8d771
DM
116
117 my $normpath = PVE::AccessControl::normalize_path($path);
37d3c16b 118 die "invalid path - $path\n" if defined($path) && !defined($normpath);
adf8d771
DM
119
120 my $ticketuser;
121 if (($ticketuser = PVE::AccessControl::verify_ticket($pw_or_ticket, 1)) &&
122 ($ticketuser eq $username)) {
123 # valid ticket
124 } elsif (PVE::AccessControl::verify_vnc_ticket($pw_or_ticket, $username, $normpath, 1)) {
125 # valid vnc ticket
126 } else {
afb10353
WB
127 $username = PVE::AccessControl::authenticate_user(
128 $username,
129 $pw_or_ticket,
130 $otp,
131 $new_format,
132 );
adf8d771
DM
133 }
134
135 my $privlist = [ PVE::Tools::split_list($privs) ];
136 if (!($normpath && scalar(@$privlist) && $rpcenv->check($username, $normpath, $privlist))) {
137 die "no permission ($path, $privs)\n";
138 }
139
140 return { username => $username };
141};
142
afb10353
WB
143my sub create_ticket_do : prototype($$$$$$) {
144 my ($rpcenv, $username, $pw_or_ticket, $otp, $new_format, $tfa_challenge) = @_;
145
146 die "TFA response should be in 'password', not 'otp' when 'tfa-challenge' is set\n"
147 if defined($otp) && defined($tfa_challenge);
148
149 my ($ticketuser, undef, $tfa_info);
150 if (!defined($tfa_challenge)) {
151 # We only verify this ticket if we're not responding to a TFA challenge, as in that case
152 # it is a TFA-data ticket and will be verified by `authenticate_user`.
153
154 ($ticketuser, undef, $tfa_info) = PVE::AccessControl::verify_ticket($pw_or_ticket, 1);
155 }
adf8d771 156
f25628d3
WB
157 if (defined($ticketuser) && ($ticketuser eq 'root@pam' || $ticketuser eq $username)) {
158 if (defined($tfa_info)) {
159 die "incomplete ticket\n";
160 }
adf8d771
DM
161 # valid ticket. Note: root@pam can create tickets for other users
162 } else {
afb10353
WB
163 ($username, $tfa_info) = PVE::AccessControl::authenticate_user(
164 $username,
165 $pw_or_ticket,
166 $otp,
167 $new_format,
168 $tfa_challenge,
169 );
18f8ba18
WB
170 }
171
172 my %extra;
173 my $ticket_data = $username;
afb10353
WB
174 my $aad;
175 if ($new_format) {
176 if (defined($tfa_info)) {
177 $extra{NeedTFA} = 1;
178 $ticket_data = "!tfa!$tfa_info";
179 $aad = $username;
180 }
181 } elsif (defined($tfa_info)) {
f25628d3
WB
182 $extra{NeedTFA} = 1;
183 if ($tfa_info->{type} eq 'u2f') {
184 my $u2finfo = $tfa_info->{data};
185 my $u2f = get_u2f_instance($rpcenv, $u2finfo->@{qw(publicKey keyHandle)});
186 my $challenge = $u2f->auth_challenge()
187 or die "failed to get u2f challenge\n";
188 $challenge = decode_json($challenge);
189 $extra{U2FChallenge} = $challenge;
190 $ticket_data = "u2f!$username!$challenge->{challenge}";
191 } else {
192 # General half-login / 'missing 2nd factor' ticket:
193 $ticket_data = "tfa!$username";
194 }
adf8d771
DM
195 }
196
afb10353 197 my $ticket = PVE::AccessControl::assemble_ticket($ticket_data, $aad);
adf8d771
DM
198 my $csrftoken = PVE::AccessControl::assemble_csrf_prevention_token($username);
199
200 return {
201 ticket => $ticket,
202 username => $username,
203 CSRFPreventionToken => $csrftoken,
18f8ba18 204 %extra,
adf8d771
DM
205 };
206};
207
39e4e363 208__PACKAGE__->register_method ({
30dd4869
TM
209 name => 'get_ticket',
210 path => 'ticket',
39e4e363
DM
211 method => 'GET',
212 permissions => { user => 'world' },
36dd9dbd 213 description => "Dummy. Useful for formatters which want to provide a login page.",
39e4e363
DM
214 parameters => {
215 additionalProperties => 0,
216 },
217 returns => { type => "null" },
218 code => sub { return undef; }});
30dd4869 219
2c3a6c0a 220__PACKAGE__->register_method ({
30dd4869
TM
221 name => 'create_ticket',
222 path => 'ticket',
2c3a6c0a 223 method => 'POST',
30dd4869 224 permissions => {
96919234 225 description => "You need to pass valid credientials.",
30dd4869 226 user => 'world'
96919234 227 },
2c3a6c0a 228 protected => 1, # else we can't access shadow files
49372390 229 allowtoken => 0, # we don't want tokens to create tickets
adf8d771 230 description => "Create or verify authentication ticket.",
2c3a6c0a
DM
231 parameters => {
232 additionalProperties => 0,
233 properties => {
234 username => {
3a5ae7a0
SI
235 description => "User name",
236 type => 'string',
237 maxLength => 64,
238 completion => \&PVE::AccessControl::complete_username,
2c3a6c0a
DM
239 },
240 realm => get_standard_option('realm', {
241 description => "You can optionally pass the realm using this parameter. Normally the realm is simply added to the username <username>\@<relam>.",
3e5bfdf6
DM
242 optional => 1,
243 completion => \&PVE::AccessControl::complete_realm,
244 }),
30dd4869 245 password => {
2c3a6c0a
DM
246 description => "The secret password. This can also be a valid ticket.",
247 type => 'string',
248 },
96f8ebd6
DM
249 otp => {
250 description => "One-time password for Two-factor authentication.",
251 type => 'string',
252 optional => 1,
253 },
2c3a6c0a 254 path => {
adf8d771 255 description => "Verify ticket, and check if user have access 'privs' on 'path'",
2c3a6c0a
DM
256 type => 'string',
257 requires => 'privs',
258 optional => 1,
259 maxLength => 64,
260 },
30dd4869 261 privs => {
adf8d771 262 description => "Verify ticket, and check if user have access 'privs' on 'path'",
2c3a6c0a
DM
263 type => 'string' , format => 'pve-priv-list',
264 requires => 'path',
265 optional => 1,
266 maxLength => 64,
267 },
afb10353
WB
268 'new-format' => {
269 type => 'boolean',
270 description =>
271 'With webauthn the format of half-authenticated tickts changed.'
272 .' New clients should pass 1 here and not worry about the old format.'
273 .' The old format is deprecated and will be retired with PVE-8.0',
274 optional => 1,
275 default => 0,
276 },
277 'tfa-challenge' => {
278 type => 'string',
279 description => "The signed TFA challenge string the user wants to respond to.",
280 optional => 1,
281 },
2c3a6c0a
DM
282 }
283 },
284 returns => {
285 type => "object",
286 properties => {
2c3a6c0a 287 username => { type => 'string' },
adf8d771
DM
288 ticket => { type => 'string', optional => 1},
289 CSRFPreventionToken => { type => 'string', optional => 1 },
e842fec5 290 clustername => { type => 'string', optional => 1 },
18f8ba18 291 # cap => computed api permissions, unless there's a u2f challenge
2c3a6c0a
DM
292 }
293 },
294 code => sub {
295 my ($param) = @_;
30dd4869 296
2c3a6c0a
DM
297 my $username = $param->{username};
298 $username .= "\@$param->{realm}" if $param->{realm};
299
eb41d200 300 $username = PVE::AccessControl::lookup_username($username);
2c3a6c0a 301 my $rpcenv = PVE::RPCEnvironment::get();
2c3a6c0a 302
adf8d771 303 my $res;
adf8d771 304 eval {
7070c1ae
DM
305 # test if user exists and is enabled
306 $rpcenv->check_user_enabled($username);
307
2c3a6c0a 308 if ($param->{path} && $param->{privs}) {
afb10353
WB
309 $res = verify_auth($rpcenv, $username, $param->{password}, $param->{otp},
310 $param->{path}, $param->{privs}, $param->{'new-format'});
2c3a6c0a 311 } else {
afb10353
WB
312 $res = create_ticket_do(
313 $rpcenv,
314 $username,
315 $param->{password},
316 $param->{otp},
317 $param->{'new-format'},
318 $param->{'tfa-challenge'},
319 );
2c3a6c0a 320 }
2c3a6c0a
DM
321 };
322 if (my $err = $@) {
adf8d771 323 my $clientip = $rpcenv->get_client_ip() || '';
2c3a6c0a 324 syslog('err', "authentication failure; rhost=$clientip user=$username msg=$err");
6126ab75 325 # do not return any info to prevent user enumeration attacks
fe2defd9 326 die PVE::Exception->new("authentication failure\n", code => 401);
2c3a6c0a
DM
327 }
328
ac344d7d 329 $res->{cap} = $rpcenv->compute_api_permission($username)
f25628d3 330 if !defined($res->{NeedTFA});
dd2cfee0 331
0fb0c62d
FG
332 my $clinfo = PVE::Cluster::get_clinfo();
333 if ($clinfo->{cluster}->{name} && $rpcenv->check($username, '/', ['Sys.Audit'], 1)) {
334 $res->{clustername} = $clinfo->{cluster}->{name};
e842fec5
TL
335 }
336
2c3a6c0a
DM
337 PVE::Cluster::log_msg('info', 'root@pam', "successful auth for user '$username'");
338
adf8d771 339 return $res;
2c3a6c0a
DM
340 }});
341
37d45deb 342__PACKAGE__->register_method ({
765305e2 343 name => 'change_password',
30dd4869 344 path => 'password',
37d45deb 345 method => 'PUT',
30dd4869 346 permissions => {
82b63965 347 description => "Each user is allowed to change his own password. A user can change the password of another user if he has 'Realm.AllocateUser' (on the realm of user <userid>) and 'User.Modify' permission on /access/groups/<group> on a group where user <userid> is member of.",
30dd4869 348 check => [ 'or',
12683df7 349 ['userid-param', 'self'],
82b63965
DM
350 [ 'and',
351 [ 'userid-param', 'Realm.AllocateUser'],
352 [ 'userid-group', ['User.Modify']]
353 ]
12683df7
DM
354 ],
355 },
37d45deb 356 protected => 1, # else we can't access shadow files
49372390 357 allowtoken => 0, # we don't want tokens to change the regular user password
37d45deb
DM
358 description => "Change user password.",
359 parameters => {
360 additionalProperties => 0,
361 properties => {
3a5ae7a0 362 userid => get_standard_option('userid-completed'),
30dd4869 363 password => {
37d45deb
DM
364 description => "The new password.",
365 type => 'string',
30dd4869 366 minLength => 5,
37d45deb
DM
367 maxLength => 64,
368 },
369 }
370 },
371 returns => { type => "null" },
372 code => sub {
373 my ($param) = @_;
374
375 my $rpcenv = PVE::RPCEnvironment::get();
376 my $authuser = $rpcenv->get_user();
377
378 my ($userid, $ruid, $realm) = PVE::AccessControl::verify_username($param->{userid});
379
12683df7 380 $rpcenv->check_user_exist($userid);
37d45deb
DM
381
382 if ($authuser eq 'root@pam') {
383 # OK - root can change anything
384 } else {
385 if ($authuser eq $userid) {
386 $rpcenv->check_user_enabled($userid);
387 # OK - each user can change its own password
388 } else {
12683df7 389 # only root may change root password
37d45deb 390 raise_perm_exc() if $userid eq 'root@pam';
59321f26
DM
391 # do not allow to change system user passwords
392 raise_perm_exc() if $realm eq 'pam';
37d45deb
DM
393 }
394 }
395
396 PVE::AccessControl::domain_set_password($realm, $ruid, $param->{password});
397
398 PVE::Cluster::log_msg('info', 'root@pam', "changed password for user '$userid'");
399
400 return undef;
401 }});
402
2b4c98ab
WB
403sub get_u2f_config() {
404 die "u2f support not available\n" if !$u2f_available;
405
406 my $dc = cfs_read_file('datacenter.cfg');
407 my $u2f = $dc->{u2f};
408 die "u2f not configured in datacenter.cfg\n" if !$u2f;
2b4c98ab
WB
409 return $u2f;
410}
411
412sub get_u2f_instance {
413 my ($rpcenv, $publicKey, $keyHandle) = @_;
414
415 # We store the public key base64 encoded (as the api provides it in binary)
416 $publicKey = decode_base64($publicKey) if defined($publicKey);
417
418 my $u2fconfig = get_u2f_config();
419 my $u2f = PVE::U2F->new();
420
421 # via the 'Host' header (in case a node has multiple hosts available).
422 my $origin = $u2fconfig->{origin};
423 if (!defined($origin)) {
424 $origin = $rpcenv->get_request_host(1);
425 if ($origin) {
426 $origin = "https://$origin";
427 } else {
428 die "failed to figure out u2f origin\n";
429 }
430 }
431
432 my $appid = $u2fconfig->{appid} // $origin;
433 $u2f->set_appid($appid);
434 $u2f->set_origin($origin);
435 $u2f->set_publicKey($publicKey) if defined($publicKey);
436 $u2f->set_keyHandle($keyHandle) if defined($keyHandle);
437 return $u2f;
438}
439
47d731c7
WB
440sub verify_user_tfa_config {
441 my ($type, $tfa_cfg, $value) = @_;
442
443 if (!defined($type)) {
444 die "missing tfa 'type'\n";
445 }
446
447 if ($type ne 'oath') {
448 die "invalid type for custom tfa authentication\n";
449 }
450
451 my $secret = $tfa_cfg->{keys}
452 or die "missing TOTP secret\n";
453 $tfa_cfg = $tfa_cfg->{config};
454 # Copy the hash to verify that we have no unexpected keys without modifying the original hash.
455 $tfa_cfg = {%$tfa_cfg};
456
457 # We can only verify 1 secret but oath_verify_otp allows multiple:
458 if (scalar(PVE::Tools::split_list($secret)) != 1) {
459 die "only exactly one secret key allowed\n";
460 }
461
462 my $digits = delete($tfa_cfg->{digits}) // 6;
463 my $step = delete($tfa_cfg->{step}) // 30;
464 # Maybe also this?
465 # my $algorithm = delete($tfa_cfg->{algorithm}) // 'sha1';
466
467 if (length(my $more = join(', ', keys %$tfa_cfg))) {
468 die "unexpected tfa config keys: $more\n";
469 }
470
471 PVE::OTP::oath_verify_otp($value, $secret, $step, $digits);
472}
473
2b4c98ab 474
c3fa8a36
FG
475__PACKAGE__->register_method({
476 name => 'permissions',
477 path => 'permissions',
478 method => 'GET',
479 description => 'Retrieve effective permissions of given user/token.',
480 permissions => {
481 description => "Each user/token is allowed to dump their own permissions. A user can dump the permissions of another user if they have 'Sys.Audit' permission on /access.",
482 user => 'all',
483 },
484 parameters => {
485 additionalProperties => 0,
486 properties => {
487 userid => {
488 type => 'string',
489 description => "User ID or full API token ID",
490 pattern => $PVE::AccessControl::userid_or_token_regex,
491 optional => 1,
492 },
493 path => get_standard_option('acl-path', {
494 description => "Only dump this specific path, not the whole tree.",
495 optional => 1,
496 }),
497 },
498 },
499 returns => {
500 type => 'object',
501 description => 'Map of "path" => (Map of "privilege" => "propagate boolean").',
502 },
503 code => sub {
504 my ($param) = @_;
505
506 my $rpcenv = PVE::RPCEnvironment::get();
507
508 my $userid = $param->{userid};
509 if (defined($userid)) {
510 $rpcenv->check($rpcenv->get_user(), '/access', ['Sys.Audit']);
511 } else {
512 $userid = $rpcenv->get_user();
513 }
514
515 my $res;
516
517 if (my $path = $param->{path}) {
518 my $perms = $rpcenv->permissions($userid, $path);
519 if ($perms) {
520 $res = { $path => $perms };
521 } else {
522 $res = {};
523 }
524 } else {
525 $res = $rpcenv->get_effective_permissions($userid);
526 }
527
528 return $res;
529 }});
530
2c3a6c0a 5311;