XRootD
Loading...
Searching...
No Matches
XrdMacaroonsAuthz.cc
Go to the documentation of this file.
3
4#include "XrdOuc/XrdOucEnv.hh"
8
9#include <ctime>
10#include <sstream>
11#include <stdexcept>
12
13#include <macaroons.h>
14
15using namespace Macaroons;
16
17namespace {
18
19class AuthzCheck
20{
21public:
22 AuthzCheck(const char *req_path, const Access_Operation req_oper, ssize_t max_duration, XrdSysError &log);
23
24 const std::string &GetSecName() const {return m_sec_name;}
25 const std::string &GetErrorMessage() const {return m_emsg;}
26
27 static int verify_before_s(void *authz_ptr,
28 const unsigned char *pred,
29 size_t pred_sz);
30
31 static int verify_activity_s(void *authz_ptr,
32 const unsigned char *pred,
33 size_t pred_sz);
34
35 static int verify_path_s(void *authz_ptr,
36 const unsigned char *pred,
37 size_t pred_sz);
38
39 static int verify_name_s(void *authz_ptr,
40 const unsigned char *pred,
41 size_t pred_sz);
42
43private:
44 int verify_before(const unsigned char *pred, size_t pred_sz);
45 int verify_activity(const unsigned char *pred, size_t pred_sz);
46 int verify_path(const unsigned char *pred, size_t pred_sz);
47 int verify_name(const unsigned char *pred, size_t pred_sz);
48
49 ssize_t m_max_duration;
50 XrdSysError &m_log;
51 std::string m_emsg;
52 const std::string m_path;
53 std::string m_desired_activity;
54 std::string m_sec_name;
55 Access_Operation m_oper;
56 time_t m_now;
57};
58
59static XrdAccPrivs AddPriv(Access_Operation op, XrdAccPrivs privs)
60{
61 int new_privs = privs;
62 switch (op) {
63 case AOP_Any:
64 break;
65 case AOP_Chmod:
66 new_privs |= static_cast<int>(XrdAccPriv_Chmod);
67 break;
68 case AOP_Chown:
69 new_privs |= static_cast<int>(XrdAccPriv_Chown);
70 break;
71 case AOP_Excl_Create: // fallthrough
72 case AOP_Create:
73 new_privs |= static_cast<int>(XrdAccPriv_Create);
74 break;
75 case AOP_Delete:
76 new_privs |= static_cast<int>(XrdAccPriv_Delete);
77 break;
78 case AOP_Excl_Insert: // fallthrough
79 case AOP_Insert:
80 new_privs |= static_cast<int>(XrdAccPriv_Insert);
81 break;
82 case AOP_Lock:
83 new_privs |= static_cast<int>(XrdAccPriv_Lock);
84 break;
85 case AOP_Mkdir:
86 new_privs |= static_cast<int>(XrdAccPriv_Mkdir);
87 break;
88 case AOP_Read:
89 new_privs |= static_cast<int>(XrdAccPriv_Read);
90 break;
91 case AOP_Readdir:
92 new_privs |= static_cast<int>(XrdAccPriv_Readdir);
93 break;
94 case AOP_Rename:
95 new_privs |= static_cast<int>(XrdAccPriv_Rename);
96 break;
97 case AOP_Stat:
98 new_privs |= static_cast<int>(XrdAccPriv_Lookup);
99 break;
100 case AOP_Update:
101 new_privs |= static_cast<int>(XrdAccPriv_Update);
102 break;
103 case AOP_Stage:
104 new_privs |= static_cast<int>(XrdAccPriv_Stage);
105 break;
106 case AOP_Poll:
107 new_privs |= static_cast<int>(XrdAccPriv_Poll);
108 break;
109 };
110 return static_cast<XrdAccPrivs>(new_privs);
111}
112
113// Accept any value of the path, name, or activity caveats
114int validate_verify_empty(void *emsg_ptr,
115 const unsigned char *pred,
116 size_t pred_sz)
117{
118 if ((pred_sz >= 5) && (!memcmp(reinterpret_cast<const char *>(pred), "path:", 5) ||
119 !memcmp(reinterpret_cast<const char *>(pred), "name:", 5)))
120 {
121 return 0;
122 }
123 if ((pred_sz >= 9) && (!memcmp(reinterpret_cast<const char *>(pred), "activity:", 9)))
124 {
125 return 0;
126 }
127 return 1;
128}
129
130} // unnamed namespace
131
132Authz::Authz(XrdSysLogger *log, char const *config, XrdAccAuthorize *chain)
133 : m_max_duration(86400),
134 m_chain(chain),
135 m_log(log, "macarons_"),
136 m_authz_behavior(static_cast<int>(Handler::AuthzBehavior::PASSTHROUGH))
137{
139 XrdOucEnv env;
140 if (!Handler::Config(config, &env, &m_log, m_location, m_secret, m_max_duration, behavior))
141 {
142 throw std::runtime_error("Macaroon authorization config failed.");
143 }
144 m_authz_behavior = static_cast<int>(behavior);
145}
146
148Authz::OnMissing(const XrdSecEntity *Entity, const char *path,
149 const Access_Operation oper, XrdOucEnv *env)
150{
151 switch (m_authz_behavior) {
153 return m_chain ? m_chain->Access(Entity, path, oper, env) : XrdAccPriv_None;
155 return AddPriv(oper, XrdAccPriv_None);;
157 return XrdAccPriv_None;
158 }
159 // Code should be unreachable.
160 return XrdAccPriv_None;
161}
162
164Authz::Access(const XrdSecEntity *Entity, const char *path,
165 const Access_Operation oper, XrdOucEnv *env)
166{
167 // We don't allow any testing to occur in this authz module, preventing
168 // a macaroon to be used to receive further macaroons.
169 if (oper == AOP_Any)
170 {
171 return m_chain ? m_chain->Access(Entity, path, oper, env) : XrdAccPriv_None;
172 }
173
174 const char *authz = env ? env->Get("authz") : nullptr;
175 if (authz && !strncmp(authz, "Bearer%20", 9))
176 {
177 authz += 9;
178 }
179
180 // If there's no request-specific token, check for a ZTN session token
181 if (!authz && Entity && !strcmp("ztn", Entity->prot) && Entity->creds &&
182 Entity->credslen && Entity->creds[Entity->credslen] == '\0')
183 {
184 authz = Entity->creds;
185 }
186
187 if (!authz) {
188 return OnMissing(Entity, path, oper, env);
189 }
190
191 macaroon_returncode mac_err = MACAROON_SUCCESS;
192 struct macaroon* macaroon = macaroon_deserialize(
193 authz,
194 &mac_err);
195 if (!macaroon)
196 {
197 // Do not log - might be other token type!
198 //m_log.Emsg("Access", "Failed to parse the macaroon");
199 return OnMissing(Entity, path, oper, env);
200 }
201
202 struct macaroon_verifier *verifier = macaroon_verifier_create();
203 if (!verifier)
204 {
205 m_log.Emsg("Access", "Failed to create a new macaroon verifier");
206 return XrdAccPriv_None;
207 }
208 if (!path)
209 {
210 m_log.Emsg("Access", "Request with no provided path.");
211 macaroon_verifier_destroy(verifier);
212 return XrdAccPriv_None;
213 }
214
215 AuthzCheck check_helper(path, oper, m_max_duration, m_log);
216
217 if (macaroon_verifier_satisfy_general(verifier, AuthzCheck::verify_before_s, &check_helper, &mac_err) ||
218 macaroon_verifier_satisfy_general(verifier, AuthzCheck::verify_activity_s, &check_helper, &mac_err) ||
219 macaroon_verifier_satisfy_general(verifier, AuthzCheck::verify_name_s, &check_helper, &mac_err) ||
220 macaroon_verifier_satisfy_general(verifier, AuthzCheck::verify_path_s, &check_helper, &mac_err))
221 {
222 m_log.Emsg("Access", "Failed to configure caveat verifier:");
223 macaroon_verifier_destroy(verifier);
224 return XrdAccPriv_None;
225 }
226
227 const unsigned char *macaroon_loc;
228 size_t location_sz;
229 macaroon_location(macaroon, &macaroon_loc, &location_sz);
230 if (strncmp(reinterpret_cast<const char *>(macaroon_loc), m_location.c_str(), location_sz))
231 {
232 std::string location_str(reinterpret_cast<const char *>(macaroon_loc), location_sz);
233 m_log.Emsg("Access", "Macaroon is for incorrect location", location_str.c_str());
234 macaroon_verifier_destroy(verifier);
235 macaroon_destroy(macaroon);
236 return m_chain ? m_chain->Access(Entity, path, oper, env) : XrdAccPriv_None;
237 }
238
239 if (macaroon_verify(verifier, macaroon,
240 reinterpret_cast<const unsigned char *>(m_secret.c_str()),
241 m_secret.size(),
242 nullptr, 0, // discharge macaroons
243 &mac_err))
244 {
245 m_log.Log(LogMask::Debug, "Access", "Macaroon verification failed");
246 macaroon_verifier_destroy(verifier);
247 macaroon_destroy(macaroon);
248 // This token is from our server (location matched) but caveats or HMAC
249 // failed. Falling through to the chain would let a path-restricted
250 // macaroon bypass its own restrictions. Deny unconditionally.
251 return XrdAccPriv_None;
252 }
253 macaroon_verifier_destroy(verifier);
254
255 const unsigned char *macaroon_id;
256 size_t id_sz;
257 macaroon_identifier(macaroon, &macaroon_id, &id_sz);
258
259 std::string macaroon_id_str(reinterpret_cast<const char *>(macaroon_id), id_sz);
260 m_log.Log(LogMask::Info, "Access", "Macaroon verification successful; ID", macaroon_id_str.c_str());
261 macaroon_destroy(macaroon);
262
263 // Copy the name, if present into the macaroon, into the credential object.
264 if (Entity && check_helper.GetSecName().size()) {
265 const std::string &username = check_helper.GetSecName();
266 m_log.Log(LogMask::Debug, "Access", "Setting the request name to", username.c_str());
267 Entity->eaAPI->Add("request.name", username,true);
268 }
269
270 // We passed verification - give the correct privilege.
271 return AddPriv(oper, XrdAccPriv_None);
272}
273
274bool Authz::Validate(const char *token,
275 std::string &emsg,
276 long long *expT,
277 XrdSecEntity *entP)
278{
279 macaroon_returncode mac_err = MACAROON_SUCCESS;
280 std::unique_ptr<struct macaroon, decltype(&macaroon_destroy)> macaroon(
281 macaroon_deserialize(token, &mac_err),
282 &macaroon_destroy);
283
284 if (!macaroon)
285 {
286 emsg = "Failed to deserialize the token as a macaroon";
287 // Purposely log at debug level in case if this validation is ever
288 // chained so we don't have overly-chatty logs.
289 m_log.Log(LogMask::Debug, "Validate", emsg.c_str());
290 return false;
291 }
292
293 std::unique_ptr<struct macaroon_verifier, decltype(&macaroon_verifier_destroy)> verifier(
294 macaroon_verifier_create(), &macaroon_verifier_destroy);
295 if (!verifier)
296 {
297 emsg = "Internal error: failed to create a verifier.";
298 m_log.Log(LogMask::Error, "Validate", emsg.c_str());
299 return false;
300 }
301
302 // Note the path and operation here are ignored as we won't use those validators
303 AuthzCheck check_helper("/", AOP_Read, m_max_duration, m_log);
304
305 if (macaroon_verifier_satisfy_general(verifier.get(), AuthzCheck::verify_before_s, &check_helper, &mac_err) ||
306 macaroon_verifier_satisfy_general(verifier.get(), validate_verify_empty, nullptr, &mac_err))
307 {
308 emsg = "Failed to configure the verifier";
309 m_log.Log(LogMask::Error, "Validate", emsg.c_str());
310 return false;
311 }
312
313 const unsigned char *macaroon_loc;
314 size_t location_sz;
315 macaroon_location(macaroon.get(), &macaroon_loc, &location_sz);
316 if (strncmp(reinterpret_cast<const char *>(macaroon_loc), m_location.c_str(), location_sz))
317 {
318 emsg = "Macaroon contains incorrect location: " +
319 std::string(reinterpret_cast<const char *>(macaroon_loc), location_sz);
320 m_log.Log(LogMask::Warning, "Validate", emsg.c_str(), ("all.sitename is " + m_location).c_str());
321 return false;
322 }
323
324 if (macaroon_verify(verifier.get(), macaroon.get(),
325 reinterpret_cast<const unsigned char *>(m_secret.c_str()),
326 m_secret.size(),
327 nullptr, 0,
328 &mac_err))
329 {
330 emsg = "Macaroon verification error" + (check_helper.GetErrorMessage().size() ?
331 (", " + check_helper.GetErrorMessage()) : "");
332 m_log.Log(LogMask::Warning, "Validate", emsg.c_str());
333 return false;
334 }
335
336 const unsigned char *macaroon_id;
337 size_t id_sz;
338 macaroon_identifier(macaroon.get(), &macaroon_id, &id_sz);
339 m_log.Log(LogMask::Info, "Validate", ("Macaroon verification successful; ID " +
340 std::string(reinterpret_cast<const char *>(macaroon_id), id_sz)).c_str());
341
342 return true;
343}
344
345AuthzCheck::AuthzCheck(const char *req_path, const Access_Operation req_oper, ssize_t max_duration, XrdSysError &log)
346 : m_max_duration(max_duration),
347 m_log(log),
348 m_path(NormalizeSlashes(req_path)),
349 m_oper(req_oper),
350 m_now(time(nullptr))
351{
352 switch (m_oper)
353 {
354 case AOP_Any:
355 break;
356 case AOP_Chmod:
357 case AOP_Chown:
358 m_desired_activity = "UPDATE_METADATA";
359 break;
360 case AOP_Insert:
361 case AOP_Lock:
362 case AOP_Mkdir:
363 case AOP_Update:
364 case AOP_Create:
365 m_desired_activity = "MANAGE";
366 break;
367 case AOP_Rename:
368 case AOP_Excl_Create:
369 case AOP_Excl_Insert:
370 m_desired_activity = "UPLOAD";
371 break;
372 case AOP_Delete:
373 m_desired_activity = "DELETE";
374 break;
375 case AOP_Read:
376 m_desired_activity = "DOWNLOAD";
377 break;
378 case AOP_Readdir:
379 m_desired_activity = "LIST";
380 break;
381 case AOP_Stat:
382 m_desired_activity = "READ_METADATA";
383 break;
384 case AOP_Stage:
385 case AOP_Poll:
386 break;
387 };
388}
389
390int
391AuthzCheck::verify_before_s(void *authz_ptr,
392 const unsigned char *pred,
393 size_t pred_sz)
394{
395 return static_cast<AuthzCheck*>(authz_ptr)->verify_before(pred, pred_sz);
396}
397
398int
399AuthzCheck::verify_activity_s(void *authz_ptr,
400 const unsigned char *pred,
401 size_t pred_sz)
402{
403 return static_cast<AuthzCheck*>(authz_ptr)->verify_activity(pred, pred_sz);
404}
405
406int
407AuthzCheck::verify_path_s(void *authz_ptr,
408 const unsigned char *pred,
409 size_t pred_sz)
410{
411 return static_cast<AuthzCheck*>(authz_ptr)->verify_path(pred, pred_sz);
412}
413
414int
415AuthzCheck::verify_name_s(void *authz_ptr,
416 const unsigned char *pred,
417 size_t pred_sz)
418{
419 return static_cast<AuthzCheck*>(authz_ptr)->verify_name(pred, pred_sz);
420}
421
422int
423AuthzCheck::verify_before(const unsigned char * pred, size_t pred_sz)
424{
425 std::string pred_str(reinterpret_cast<const char *>(pred), pred_sz);
426 if (strncmp("before:", pred_str.c_str(), 7))
427 {
428 return 1;
429 }
430 m_log.Log(LogMask::Debug, "AuthzCheck", "Checking macaroon for expiration; caveat:", pred_str.c_str());
431
432 struct tm caveat_tm;
433 if (strptime(&pred_str[7], "%Y-%m-%dT%H:%M:%SZ", &caveat_tm) == nullptr)
434 {
435 m_emsg = "Failed to parse time string: " + pred_str.substr(7);
436 m_log.Log(LogMask::Warning, "AuthzCheck", m_emsg.c_str());
437 return 1;
438 }
439 caveat_tm.tm_isdst = -1;
440
441 time_t caveat_time = timegm(&caveat_tm);
442 if (-1 == caveat_time)
443 {
444 m_emsg = "Failed to generate unix time: " + pred_str.substr(7);
445 m_log.Log(LogMask::Warning, "AuthzCheck", m_emsg.c_str());
446 return 1;
447 }
448 if ((m_max_duration > 0) && (caveat_time > m_now + m_max_duration))
449 {
450 m_emsg = "Max token age is greater than configured max duration; rejecting";
451 m_log.Log(LogMask::Warning, "AuthzCheck", m_emsg.c_str());
452 return 1;
453 }
454
455 int result = (m_now >= caveat_time);
456 if (!result)
457 {
458 m_log.Log(LogMask::Debug, "AuthzCheck", "Macaroon has not expired.");
459 }
460 else
461 {
462 m_emsg = "Macaroon expired at " + pred_str.substr(7);
463 m_log.Log(LogMask::Debug, "AuthzCheck", m_emsg.c_str());
464 }
465 return result;
466}
467
468int
469AuthzCheck::verify_activity(const unsigned char * pred, size_t pred_sz)
470{
471 if (!m_desired_activity.size()) {return 1;}
472 std::string pred_str(reinterpret_cast<const char *>(pred), pred_sz);
473 if (strncmp("activity:", pred_str.c_str(), 9)) {return 1;}
474 m_log.Log(LogMask::Debug, "AuthzCheck", "running verify activity", pred_str.c_str());
475
476 std::stringstream ss(pred_str.substr(9));
477 for (std::string activity; std::getline(ss, activity, ','); )
478 {
479 // Any allowed activity also implies "READ_METADATA"
480 if (m_desired_activity == "READ_METADATA") {return 0;}
481 if ((activity == m_desired_activity) || ((m_desired_activity == "UPLOAD") && (activity == "MANAGE")))
482 {
483 m_log.Log(LogMask::Debug, "AuthzCheck", "macaroon has desired activity", activity.c_str());
484 return 0;
485 }
486 }
487 m_log.Log(LogMask::Info, "AuthzCheck", "macaroon does NOT have desired activity", m_desired_activity.c_str());
488 return 1;
489}
490
491int
492AuthzCheck::verify_path(const unsigned char * pred, size_t pred_sz)
493{
494 std::string pred_str_raw(reinterpret_cast<const char *>(pred), pred_sz);
495 if (strncmp("path:", pred_str_raw.c_str(), 5)) {return 1;}
496 std::string pred_str = NormalizeSlashes(pred_str_raw.substr(5));
497 m_log.Log(LogMask::Debug, "AuthzCheck", "running verify path", pred_str.c_str());
498
499 if ((m_path.find("/./") != std::string::npos) ||
500 (m_path.find("/../") != std::string::npos))
501 {
502 m_log.Log(LogMask::Info, "AuthzCheck", "invalid requested path", m_path.c_str());
503 return 1;
504 }
505
506 // Allow operations under subdirectories and not substrings
507 // For e.g. pred_str = "/data/sudir/mydir"
508 // Allows m_path = /data/subdir/mydir/newdir
509 // But rejects, m_path = /data/subdir/mydirmycoolname/newdir
510 int is_subdir = is_subdirectory(pred_str, m_path);
511 if (is_subdir)
512 {
513 m_log.Log(LogMask::Debug, "AuthzCheck", "path request verified for", m_path.c_str());
514 }
515
516 // READ_METADATA (i.e AOP_Stat) permission for /foo/bar automatically implies permission
517 // to READ_METADATA for /foo.
518 // Similarly, MKDIR Pemissions for a parent path is implied.
519 else if (m_oper == AOP_Stat || m_oper == AOP_Mkdir)
520 {
521 is_subdir = is_subdirectory(m_path, pred_str);
522 const char *opName = (m_oper == AOP_Stat) ? "READ_METADATA" : "MKDIR";
523 m_log.Log(LogMask::Debug, "AuthzCheck",
524 (std::string(opName) + (is_subdir? " Path request verified for" : " Path request NOT allowed for")).c_str(),
525 m_path.c_str());
526 }
527 else
528 {
529 m_log.Log(LogMask::Debug, "AuthzCheck", "path request NOT allowed", m_path.c_str());
530 }
531
532 return !is_subdir;
533}
534
535int
536AuthzCheck::verify_name(const unsigned char * pred, size_t pred_sz)
537{
538 std::string pred_str(reinterpret_cast<const char *>(pred), pred_sz);
539 if (strncmp("name:", pred_str.c_str(), 5)) {return 1;}
540 if (pred_str.size() < 6) {return 1;}
541 m_log.Log(LogMask::Debug, "AuthzCheck", "Verifying macaroon with", pred_str.c_str());
542
543 // Make a copy of the name for the XrdSecEntity; this will be used later.
544 m_sec_name = pred_str.substr(5);
545
546 return 0;
547}
Access_Operation
The following are supported operations.
@ AOP_Delete
rm() or rmdir()
@ AOP_Mkdir
mkdir()
@ AOP_Update
open() r/w or append
@ AOP_Create
open() with create
@ AOP_Readdir
opendir()
@ AOP_Chmod
chmod()
@ AOP_Any
Special for getting privs.
@ AOP_Stat
exists(), stat()
@ AOP_Poll
stage polling operations
@ AOP_Rename
mv() for source
@ AOP_Read
open() r/o, prepare()
@ AOP_Excl_Create
open() with O_EXCL|O_CREAT
@ AOP_Insert
mv() for target
@ AOP_Lock
n/a
@ AOP_Chown
chown()
@ AOP_Stage
stage and or read data, plus related operations
@ AOP_Excl_Insert
mv() where destination doesn't exist.
XrdAccPrivs
@ XrdAccPriv_Mkdir
@ XrdAccPriv_Chown
@ XrdAccPriv_Insert
@ XrdAccPriv_Lookup
@ XrdAccPriv_Rename
@ XrdAccPriv_Poll
@ XrdAccPriv_Update
@ XrdAccPriv_Read
@ XrdAccPriv_Lock
@ XrdAccPriv_None
@ XrdAccPriv_Stage
@ XrdAccPriv_Delete
@ XrdAccPriv_Create
@ XrdAccPriv_Readdir
@ XrdAccPriv_Chmod
static bool is_subdirectory(const std::string_view dir, const std::string_view subdir)
int emsg(int rc, char *msg)
virtual bool Validate(const char *token, std::string &emsg, long long *expT, XrdSecEntity *entP) override
Authz(XrdSysLogger *lp, const char *parms, XrdAccAuthorize *chain)
virtual XrdAccPrivs Access(const XrdSecEntity *Entity, const char *path, const Access_Operation oper, XrdOucEnv *env) override
static bool Config(const char *config, XrdOucEnv *env, XrdSysError *log, std::string &location, std::string &secret, ssize_t &max_duration, AuthzBehavior &behavior)
XrdAccAuthorize()
Constructor.
virtual XrdAccPrivs Access(const XrdSecEntity *Entity, const char *path, const Access_Operation oper, XrdOucEnv *Env=0)=0
char * Get(const char *varname)
Definition XrdOucEnv.hh:69
bool Add(XrdSecAttr &attr)
int credslen
Length of the 'creds' data.
XrdSecEntityAttr * eaAPI
non-const API to attributes
char prot[XrdSecPROTOIDSIZE]
Auth protocol used (e.g. krb5).
char * creds
Raw entity credentials or cert.
std::string NormalizeSlashes(const std::string &input)