]> git.proxmox.com Git - pve-access-control.git/blame - PVE/API2/AccessControl.pm
use new syntax for permission checks
[pve-access-control.git] / PVE / API2 / AccessControl.pm
CommitLineData
2c3a6c0a
DM
1package PVE::API2::AccessControl;
2
3use strict;
4use warnings;
5
37d45deb 6use PVE::Exception qw(raise raise_perm_exc);
2c3a6c0a
DM
7use PVE::SafeSyslog;
8use PVE::RPCEnvironment;
a427cecb 9use PVE::Cluster qw(cfs_read_file);
2c3a6c0a
DM
10use PVE::RESTHandler;
11use PVE::AccessControl;
12use PVE::JSONSchema qw(get_standard_option);
13use PVE::API2::Domains;
14use PVE::API2::User;
15use PVE::API2::Group;
16use PVE::API2::Role;
17use PVE::API2::ACL;
18
19use base qw(PVE::RESTHandler);
20
21__PACKAGE__->register_method ({
22 subclass => "PVE::API2::User",
23 path => 'users',
24});
25
26__PACKAGE__->register_method ({
27 subclass => "PVE::API2::Group",
28 path => 'groups',
29});
30
31__PACKAGE__->register_method ({
32 subclass => "PVE::API2::Role",
33 path => 'roles',
34});
35
36__PACKAGE__->register_method ({
37 subclass => "PVE::API2::ACL",
38 path => 'acl',
39});
40
41__PACKAGE__->register_method ({
42 subclass => "PVE::API2::Domains",
43 path => 'domains',
44});
45
46__PACKAGE__->register_method ({
47 name => 'index',
48 path => '',
49 method => 'GET',
50 description => "Directory index.",
51 parameters => {
52 additionalProperties => 0,
53 properties => {},
54 },
55 returns => {
56 type => 'array',
57 items => {
58 type => "object",
59 properties => {
60 subdir => { type => 'string' },
61 },
62 },
63 links => [ { rel => 'child', href => "{subdir}" } ],
64 },
65 code => sub {
66 my ($param) = @_;
67
68 my $res = [];
69
70 my $ma = __PACKAGE__->method_attributes();
71
72 foreach my $info (@$ma) {
73 next if !$info->{subclass};
74
75 my $subpath = $info->{match_re}->[0];
76
77 push @$res, { subdir => $subpath };
78 }
79
80 push @$res, { subdir => 'ticket' };
37d45deb 81 push @$res, { subdir => 'password' };
2c3a6c0a
DM
82
83 return $res;
84 }});
85
adf8d771
DM
86
87my $verify_auth = sub {
88 my ($rpcenv, $username, $pw_or_ticket, $path, $privs) = @_;
89
90 my $normpath = PVE::AccessControl::normalize_path($path);
91
92 my $ticketuser;
93 if (($ticketuser = PVE::AccessControl::verify_ticket($pw_or_ticket, 1)) &&
94 ($ticketuser eq $username)) {
95 # valid ticket
96 } elsif (PVE::AccessControl::verify_vnc_ticket($pw_or_ticket, $username, $normpath, 1)) {
97 # valid vnc ticket
98 } else {
99 $username = PVE::AccessControl::authenticate_user($username, $pw_or_ticket);
100 }
101
102 my $privlist = [ PVE::Tools::split_list($privs) ];
103 if (!($normpath && scalar(@$privlist) && $rpcenv->check($username, $normpath, $privlist))) {
104 die "no permission ($path, $privs)\n";
105 }
106
107 return { username => $username };
108};
109
110my $create_ticket = sub {
111 my ($rpcenv, $username, $pw_or_ticket) = @_;
112
113 my $ticketuser;
114 if (($ticketuser = PVE::AccessControl::verify_ticket($pw_or_ticket, 1)) &&
115 ($ticketuser eq 'root@pam' || $ticketuser eq $username)) {
116 # valid ticket. Note: root@pam can create tickets for other users
117 } else {
118 $username = PVE::AccessControl::authenticate_user($username, $pw_or_ticket);
119 }
120
121 my $ticket = PVE::AccessControl::assemble_ticket($username);
122 my $csrftoken = PVE::AccessControl::assemble_csrf_prevention_token($username);
123
124 return {
125 ticket => $ticket,
126 username => $username,
127 CSRFPreventionToken => $csrftoken,
128 };
129};
130
2c3a6c0a
DM
131__PACKAGE__->register_method ({
132 name => 'create_ticket',
133 path => 'ticket',
134 method => 'POST',
135 permissions => { user => 'world' },
136 protected => 1, # else we can't access shadow files
adf8d771 137 description => "Create or verify authentication ticket.",
2c3a6c0a
DM
138 parameters => {
139 additionalProperties => 0,
140 properties => {
141 username => {
142 description => "User name",
143 type => 'string',
144 maxLength => 64,
145 },
146 realm => get_standard_option('realm', {
147 description => "You can optionally pass the realm using this parameter. Normally the realm is simply added to the username <username>\@<relam>.",
148 optional => 1}),
149 password => {
150 description => "The secret password. This can also be a valid ticket.",
151 type => 'string',
152 },
153 path => {
adf8d771 154 description => "Verify ticket, and check if user have access 'privs' on 'path'",
2c3a6c0a
DM
155 type => 'string',
156 requires => 'privs',
157 optional => 1,
158 maxLength => 64,
159 },
160 privs => {
adf8d771 161 description => "Verify ticket, and check if user have access 'privs' on 'path'",
2c3a6c0a
DM
162 type => 'string' , format => 'pve-priv-list',
163 requires => 'path',
164 optional => 1,
165 maxLength => 64,
166 },
167 }
168 },
169 returns => {
170 type => "object",
171 properties => {
2c3a6c0a 172 username => { type => 'string' },
adf8d771
DM
173 ticket => { type => 'string', optional => 1},
174 CSRFPreventionToken => { type => 'string', optional => 1 },
2c3a6c0a
DM
175 }
176 },
177 code => sub {
178 my ($param) = @_;
179
180 my $username = $param->{username};
181 $username .= "\@$param->{realm}" if $param->{realm};
182
183 my $rpcenv = PVE::RPCEnvironment::get();
2c3a6c0a 184
adf8d771 185 my $res;
2c3a6c0a 186
adf8d771 187 eval {
7070c1ae
DM
188 # test if user exists and is enabled
189 $rpcenv->check_user_enabled($username);
190
2c3a6c0a 191 if ($param->{path} && $param->{privs}) {
adf8d771
DM
192 $res = &$verify_auth($rpcenv, $username, $param->{password},
193 $param->{path}, $param->{privs});
2c3a6c0a 194 } else {
adf8d771 195 $res = &$create_ticket($rpcenv, $username, $param->{password});
2c3a6c0a 196 }
2c3a6c0a
DM
197 };
198 if (my $err = $@) {
adf8d771 199 my $clientip = $rpcenv->get_client_ip() || '';
2c3a6c0a
DM
200 syslog('err', "authentication failure; rhost=$clientip user=$username msg=$err");
201 die $err;
202 }
203
204 PVE::Cluster::log_msg('info', 'root@pam', "successful auth for user '$username'");
205
adf8d771 206 return $res;
2c3a6c0a
DM
207 }});
208
37d45deb
DM
209__PACKAGE__->register_method ({
210 name => 'change_passsword',
211 path => 'password',
212 method => 'PUT',
12683df7
DM
213 permissions => {
214 description => "Each user is allowed to change his own password. A user can change the password of another user if he has modify permission on /access/groups/<group> on a group where user <userid> is member of.",
215 check => [ 'or',
216 ['userid-param', 'self'],
217 ['userid-group', ['User.Modify']],
218 ],
219 },
37d45deb
DM
220 protected => 1, # else we can't access shadow files
221 description => "Change user password.",
222 parameters => {
223 additionalProperties => 0,
224 properties => {
225 userid => get_standard_option('userid'),
226 password => {
227 description => "The new password.",
228 type => 'string',
229 minLength => 5,
230 maxLength => 64,
231 },
232 }
233 },
234 returns => { type => "null" },
235 code => sub {
236 my ($param) = @_;
237
238 my $rpcenv = PVE::RPCEnvironment::get();
239 my $authuser = $rpcenv->get_user();
240
241 my ($userid, $ruid, $realm) = PVE::AccessControl::verify_username($param->{userid});
242
12683df7 243 $rpcenv->check_user_exist($userid);
37d45deb
DM
244
245 if ($authuser eq 'root@pam') {
246 # OK - root can change anything
247 } else {
248 if ($authuser eq $userid) {
249 $rpcenv->check_user_enabled($userid);
250 # OK - each user can change its own password
251 } else {
12683df7 252 # only root may change root password
37d45deb 253 raise_perm_exc() if $userid eq 'root@pam';
37d45deb
DM
254 }
255 }
256
257 PVE::AccessControl::domain_set_password($realm, $ruid, $param->{password});
258
259 PVE::Cluster::log_msg('info', 'root@pam', "changed password for user '$userid'");
260
261 return undef;
262 }});
263
2c3a6c0a 2641;