]> gitweb.michael.orlitzky.com - apply-default-acl.git/blob - src/apply-default-acl.c
Improve the error message when assign_default_acl() is fed a NULL path.
[apply-default-acl.git] / src / apply-default-acl.c
1 /**
2 * @file apply-default-acl.c
3 *
4 * @brief The entire implementation.
5 *
6 */
7
8 /* On Linux, ftw.h needs this special voodoo to work. */
9 #define _XOPEN_SOURCE 500
10 #define _GNU_SOURCE
11
12 #include <errno.h>
13 #include <fcntl.h> /* AT_FOO constants */
14 #include <ftw.h> /* nftw() et al. */
15 #include <getopt.h>
16 #include <libgen.h> /* basename(), dirname() */
17 #include <stdbool.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <sys/stat.h>
22 #include <unistd.h>
23
24 /* ACLs */
25 #include <acl/libacl.h> /* acl_get_perm, not portable */
26 #include <sys/types.h>
27 #include <sys/acl.h>
28
29 /* Most of the libacl functions return 1 for success, 0 for failure,
30 and -1 on error */
31 #define ACL_ERROR -1
32 #define ACL_FAILURE 0
33 #define ACL_SUCCESS 1
34
35
36
37
38 /**
39 * @brief Determine whether or not the given path is accessible.
40 *
41 * @param path
42 * The path to test.
43 *
44 * @return true if @c path is accessible to the current effective
45 * user/group, false otherwise.
46 */
47 bool path_accessible(const char* path) {
48 if (path == NULL) {
49 return false;
50 }
51
52 /* Test for access using the effective user and group rather than
53 the real one. */
54 int flags = AT_EACCESS;
55
56 /* Don't follow symlinks when checking for a path's existence,
57 since we won't follow them to set its ACLs either. */
58 flags |= AT_SYMLINK_NOFOLLOW;
59
60 /* If the path is relative, interpret it relative to the current
61 working directory (just like the access() system call). */
62 if (faccessat(AT_FDCWD, path, F_OK, flags) == 0) {
63 return true;
64 }
65 else {
66 return false;
67 }
68 }
69
70
71
72 /**
73 * @brief Determine whether or not the given path is a directory.
74 *
75 * @param path
76 * The path to test.
77 *
78 * @return true if @c path is a directory, false otherwise.
79 */
80 bool is_path_directory(const char* path) {
81 if (path == NULL) {
82 return false;
83 }
84
85 struct stat s;
86 if (lstat(path, &s) == 0) {
87 return S_ISDIR(s.st_mode);
88 }
89 else {
90 return false;
91 }
92 }
93
94
95
96
97 /**
98 * @brief Update (or create) an entry in an @b minimal ACL.
99 *
100 * This function will not work if @c aclp contains extended
101 * entries. This is fine for our purposes, since we call @c wipe_acls
102 * on each path before applying the default to it.
103 *
104 * The assumption that there are no extended entries makes things much
105 * simpler. For example, we only have to update the @c ACL_USER_OBJ,
106 * @c ACL_GROUP_OBJ, and @c ACL_OTHER entries -- all others can simply
107 * be created anew. This means we don't have to fool around comparing
108 * named-user/group entries.
109 *
110 * @param aclp
111 * A pointer to the acl_t structure whose entry we want to modify.
112 *
113 * @param entry
114 * The new entry. If @c entry contains a user/group/other entry, we
115 * update the existing one. Otherwise we create a new entry.
116 *
117 * @return If there is an unexpected library error, @c ACL_ERROR is
118 * returned. Otherwise, @c ACL_SUCCESS.
119 *
120 */
121 int acl_set_entry(acl_t* aclp, acl_entry_t entry) {
122
123 acl_tag_t entry_tag;
124 if (acl_get_tag_type(entry, &entry_tag) == ACL_ERROR) {
125 perror("acl_set_entry (acl_get_tag_type)");
126 return ACL_ERROR;
127 }
128
129 acl_permset_t entry_permset;
130 if (acl_get_permset(entry, &entry_permset) == ACL_ERROR) {
131 perror("acl_set_entry (acl_get_permset)");
132 return ACL_ERROR;
133 }
134
135 acl_entry_t existing_entry;
136 /* Loop through the given ACL looking for matching entries. */
137 int result = acl_get_entry(*aclp, ACL_FIRST_ENTRY, &existing_entry);
138
139 while (result == ACL_SUCCESS) {
140 acl_tag_t existing_tag = ACL_UNDEFINED_TAG;
141
142 if (acl_get_tag_type(existing_entry, &existing_tag) == ACL_ERROR) {
143 perror("set_acl_tag_permset (acl_get_tag_type)");
144 return ACL_ERROR;
145 }
146
147 if (existing_tag == entry_tag) {
148 if (entry_tag == ACL_USER_OBJ ||
149 entry_tag == ACL_GROUP_OBJ ||
150 entry_tag == ACL_OTHER) {
151 /* Only update for these three since all other tags will have
152 been wiped. These three are guaranteed to exist, so if we
153 match one of them, we're allowed to return ACL_SUCCESS
154 below and bypass the rest of the function. */
155 acl_permset_t existing_permset;
156 if (acl_get_permset(existing_entry, &existing_permset) == ACL_ERROR) {
157 perror("acl_set_entry (acl_get_permset)");
158 return ACL_ERROR;
159 }
160
161 if (acl_set_permset(existing_entry, entry_permset) == ACL_ERROR) {
162 perror("acl_set_entry (acl_set_permset)");
163 return ACL_ERROR;
164 }
165
166 return ACL_SUCCESS;
167 }
168
169 }
170
171 result = acl_get_entry(*aclp, ACL_NEXT_ENTRY, &existing_entry);
172 }
173
174 /* This catches both the initial acl_get_entry and the ones at the
175 end of the loop. */
176 if (result == ACL_ERROR) {
177 perror("acl_set_entry (acl_get_entry)");
178 return ACL_ERROR;
179 }
180
181 /* If we've made it this far, we need to add a new entry to the
182 ACL. */
183 acl_entry_t new_entry;
184
185 /* The acl_create_entry() function can allocate new memory and/or
186 * change the location of the ACL structure entirely. When that
187 * happens, the value pointed to by aclp is updated, which means
188 * that a new acl_t gets "passed out" to our caller, eventually to
189 * be fed to acl_free(). In other words, we should still be freeing
190 * the right thing, even if the value pointed to by aclp changes.
191 */
192 if (acl_create_entry(aclp, &new_entry) == ACL_ERROR) {
193 perror("acl_set_entry (acl_create_entry)");
194 return ACL_ERROR;
195 }
196
197 if (acl_set_tag_type(new_entry, entry_tag) == ACL_ERROR) {
198 perror("acl_set_entry (acl_set_tag_type)");
199 return ACL_ERROR;
200 }
201
202 if (acl_set_permset(new_entry, entry_permset) == ACL_ERROR) {
203 perror("acl_set_entry (acl_set_permset)");
204 return ACL_ERROR;
205 }
206
207 if (entry_tag == ACL_USER || entry_tag == ACL_GROUP) {
208 /* We need to set the qualifier too. */
209 void* entry_qual = acl_get_qualifier(entry);
210 if (entry_qual == (void*)NULL) {
211 perror("acl_set_entry (acl_get_qualifier)");
212 return ACL_ERROR;
213 }
214
215 if (acl_set_qualifier(new_entry, entry_qual) == ACL_ERROR) {
216 perror("acl_set_entry (acl_set_qualifier)");
217 return ACL_ERROR;
218 }
219 }
220
221 return ACL_SUCCESS;
222 }
223
224
225
226 /**
227 * @brief Determine the number of entries in the given ACL.
228 *
229 * @param acl
230 * The ACL to inspect.
231 *
232 * @return Either the non-negative number of entries in @c acl, or
233 * @c ACL_ERROR on error.
234 */
235 int acl_entry_count(acl_t acl) {
236
237 acl_entry_t entry;
238 int entry_count = 0;
239 int result = acl_get_entry(acl, ACL_FIRST_ENTRY, &entry);
240
241 while (result == ACL_SUCCESS) {
242 entry_count++;
243 result = acl_get_entry(acl, ACL_NEXT_ENTRY, &entry);
244 }
245
246 if (result == ACL_ERROR) {
247 perror("acl_entry_count (acl_get_entry)");
248 return ACL_ERROR;
249 }
250
251 return entry_count;
252 }
253
254
255
256 /**
257 * @brief Determine whether or not the given ACL is minimal.
258 *
259 * An ACL is minimal if it has fewer than four entries.
260 *
261 * @param acl
262 * The ACL whose minimality is in question.
263 *
264 * @return
265 * - @c ACL_SUCCESS - @c acl is minimal
266 * - @c ACL_FAILURE - @c acl is not minimal
267 * - @c ACL_ERROR - Unexpected library error
268 */
269 int acl_is_minimal(acl_t acl) {
270
271 int ec = acl_entry_count(acl);
272
273 if (ec == ACL_ERROR) {
274 perror("acl_is_minimal (acl_entry_count)");
275 return ACL_ERROR;
276 }
277
278 if (ec < 4) {
279 return ACL_SUCCESS;
280 }
281 else {
282 return ACL_FAILURE;
283 }
284 }
285
286
287
288 /**
289 * @brief Determine whether the given ACL's mask denies execute.
290 *
291 * @param acl
292 * The ACL whose mask we want to check.
293 *
294 * @return
295 * - @c ACL_SUCCESS - The @c acl has a mask which denies execute.
296 * - @c ACL_FAILURE - The @c acl has a mask which does not deny execute.
297 * - @c ACL_ERROR - Unexpected library error.
298 */
299 int acl_execute_masked(acl_t acl) {
300
301 acl_entry_t entry;
302 int ge_result = acl_get_entry(acl, ACL_FIRST_ENTRY, &entry);
303
304 while (ge_result == ACL_SUCCESS) {
305 acl_tag_t tag = ACL_UNDEFINED_TAG;
306
307 if (acl_get_tag_type(entry, &tag) == ACL_ERROR) {
308 perror("acl_execute_masked (acl_get_tag_type)");
309 return ACL_ERROR;
310 }
311
312 if (tag == ACL_MASK) {
313 /* This is the mask entry, get its permissions, and see if
314 execute is specified. */
315 acl_permset_t permset;
316
317 if (acl_get_permset(entry, &permset) == ACL_ERROR) {
318 perror("acl_execute_masked (acl_get_permset)");
319 return ACL_ERROR;
320 }
321
322 int gp_result = acl_get_perm(permset, ACL_EXECUTE);
323 if (gp_result == ACL_ERROR) {
324 perror("acl_execute_masked (acl_get_perm)");
325 return ACL_ERROR;
326 }
327
328 if (gp_result == ACL_FAILURE) {
329 /* No execute bit set in the mask; execute not allowed. */
330 return ACL_SUCCESS;
331 }
332 }
333
334 ge_result = acl_get_entry(acl, ACL_NEXT_ENTRY, &entry);
335 }
336
337 return ACL_FAILURE;
338 }
339
340
341
342 /**
343 * @brief Determine whether @c fd is executable by anyone.
344 *
345 *
346 * This is used as part of the heuristic to determine whether or not
347 * we should mask the execute bit when inheriting an ACL. If @c fd
348 * describes a file, we check the @a effective permissions, contrary
349 * to what setfacl does.
350 *
351 * @param fd
352 * The file descriptor to check.
353 *
354 * @return
355 * - @c ACL_SUCCESS - Someone has effective execute permissions on @c fd.
356 * - @c ACL_FAILURE - Nobody can execute @c fd.
357 * - @c ACL_ERROR - Unexpected library error.
358 */
359 int any_can_execute(int fd) {
360 acl_t acl = acl_get_fd(fd);
361
362 if (acl == (acl_t)NULL) {
363 perror("any_can_execute (acl_get_file)");
364 return ACL_ERROR;
365 }
366
367 /* Our return value. */
368 int result = ACL_FAILURE;
369
370 if (acl_is_minimal(acl)) {
371 struct stat s;
372 if (fstat(fd, &s) == -1) {
373 perror("any_can_execute (fstat)");
374 result = ACL_ERROR;
375 goto cleanup;
376 }
377 if (s.st_mode & (S_IXUSR | S_IXOTH | S_IXGRP)) {
378 result = ACL_SUCCESS;
379 goto cleanup;
380 }
381 else {
382 result = ACL_FAILURE;
383 goto cleanup;
384 }
385 }
386
387 acl_entry_t entry;
388 int ge_result = acl_get_entry(acl, ACL_FIRST_ENTRY, &entry);
389
390 while (ge_result == ACL_SUCCESS) {
391 /* The first thing we do is check to see if this is a mask
392 entry. If it is, we skip it entirely. */
393 acl_tag_t tag = ACL_UNDEFINED_TAG;
394
395 if (acl_get_tag_type(entry, &tag) == ACL_ERROR) {
396 perror("any_can_execute_or (acl_get_tag_type)");
397 result = ACL_ERROR;
398 goto cleanup;
399 }
400
401 if (tag == ACL_MASK) {
402 ge_result = acl_get_entry(acl, ACL_NEXT_ENTRY, &entry);
403 continue;
404 }
405
406 /* Ok, so it's not a mask entry. Check the execute perms. */
407 acl_permset_t permset;
408
409 if (acl_get_permset(entry, &permset) == ACL_ERROR) {
410 perror("any_can_execute_or (acl_get_permset)");
411 result = ACL_ERROR;
412 goto cleanup;
413 }
414
415 int gp_result = acl_get_perm(permset, ACL_EXECUTE);
416 if (gp_result == ACL_ERROR) {
417 perror("any_can_execute (acl_get_perm)");
418 result = ACL_ERROR;
419 goto cleanup;
420 }
421
422 if (gp_result == ACL_SUCCESS) {
423 /* Only return ACL_SUCCESS if this execute bit is not masked. */
424 if (acl_execute_masked(acl) != ACL_SUCCESS) {
425 result = ACL_SUCCESS;
426 goto cleanup;
427 }
428 }
429
430 ge_result = acl_get_entry(acl, ACL_NEXT_ENTRY, &entry);
431 }
432
433 if (ge_result == ACL_ERROR) {
434 perror("any_can_execute (acl_get_entry)");
435 result = ACL_ERROR;
436 goto cleanup;
437 }
438
439 cleanup:
440 acl_free(acl);
441 return result;
442 }
443
444
445
446 /**
447 * @brief Set @c acl as the default ACL on @c path if it's a directory.
448 *
449 * This overwrites any existing default ACL on @c path. If no default
450 * ACL exists, then one is created. If @c path is not a directory, we
451 * return ACL_FAILURE but no error is raised.
452 *
453 * @param path
454 * The target directory whose ACL we wish to replace or create.
455 *
456 * @param acl
457 * The ACL to set as default on @c path.
458 *
459 * @return
460 * - @c ACL_SUCCESS - The default ACL was assigned successfully.
461 * - @c ACL_FAILURE - If @c path is not a directory.
462 * - @c ACL_ERROR - Unexpected library error.
463 */
464 int assign_default_acl(const char* path, acl_t acl) {
465
466 if (path == NULL) {
467 errno = EINVAL;
468 perror("assign_default_acl (args)");
469 return ACL_ERROR;
470 }
471
472 if (!is_path_directory(path)) {
473 return ACL_FAILURE;
474 }
475
476 /* Our return value; success unless something bad happens. */
477 int result = ACL_SUCCESS;
478 acl_t path_acl = acl_dup(acl);
479
480 if (path_acl == (acl_t)NULL) {
481 perror("assign_default_acl (acl_dup)");
482 return ACL_ERROR; /* Nothing to clean up in this case. */
483 }
484
485 if (acl_set_file(path, ACL_TYPE_DEFAULT, path_acl) == ACL_ERROR) {
486 perror("assign_default_acl (acl_set_file)");
487 result = ACL_ERROR;
488 }
489
490 acl_free(path_acl);
491 return result;
492 }
493
494
495
496 /**
497 * @brief Remove all @c ACL_TYPE_ACCESS entries from the given file
498 * descriptor, leaving the UNIX permission bits.
499 *
500 * @param fd
501 * The file descriptor whose ACLs we want to wipe.
502 *
503 * @return
504 * - @c ACL_SUCCESS - The ACLs were wiped successfully, or none
505 * existed in the first place.
506 * - @c ACL_ERROR - Unexpected library error.
507 */
508 int wipe_acls(int fd) {
509 /* Initialize an empty ACL, and then overwrite the one on "fd" with it. */
510 acl_t empty_acl = acl_init(0);
511
512 if (empty_acl == (acl_t)NULL) {
513 perror("wipe_acls (acl_init)");
514 return ACL_ERROR;
515 }
516
517 if (acl_set_fd(fd, empty_acl) == ACL_ERROR) {
518 perror("wipe_acls (acl_set_fd)");
519 acl_free(empty_acl);
520 return ACL_ERROR;
521 }
522
523 acl_free(empty_acl);
524 return ACL_SUCCESS;
525 }
526
527
528
529 /**
530 * @brief Apply parent default ACL to a path.
531 *
532 * This overwrites any existing ACLs on @c path.
533 *
534 * @param path
535 * The path whose ACL we would like to reset to its default.
536 *
537 * @param no_exec_mask
538 * The value (either true or false) of the --no-exec-mask flag.
539 *
540 * @return
541 * - @c ACL_SUCCESS - The parent default ACL was inherited successfully.
542 * - @c ACL_FAILURE - The target path is not a regular file/directory,
543 * or the parent of @c path is not a directory.
544 * - @c ACL_ERROR - Unexpected library error.
545 */
546 int apply_default_acl(const char* path, bool no_exec_mask) {
547
548 if (path == NULL) {
549 errno = EINVAL;
550 perror("apply_default_acl (args)");
551 return ACL_ERROR;
552 }
553
554 /* Define these next three variables here because we may have to
555 * jump to the cleanup routine which expects them to exist.
556 */
557
558 /* Our return value. */
559 int result = ACL_SUCCESS;
560
561 /* The default ACL on path's parent directory */
562 acl_t defacl = (acl_t)NULL;
563
564 /* The file descriptor corresponding to "path" */
565 int fd = 0;
566
567 /* Split "path" into base/dirname parts to be used with openat().
568 * We duplicate the strings involved because dirname/basename mangle
569 * their arguments.
570 */
571 char* path_copy = strdup(path);
572 if (path_copy == NULL) {
573 perror("apply_default_acl (strdup)");
574 return ACL_ERROR;
575 }
576 char* parent = dirname(path_copy);
577
578 fd = open(path, O_NOFOLLOW);
579 if (fd == -1) {
580 if (errno == ELOOP) {
581 result = ACL_FAILURE; /* hit a symlink */
582 goto cleanup;
583 }
584 else {
585 perror("apply_default_acl (open fd)");
586 result = ACL_ERROR;
587 goto cleanup;
588 }
589 }
590
591
592 /* Refuse to operate on hard links, which can be abused by an
593 * attacker to trick us into changing the ACL on a file we didn't
594 * intend to; namely the "target" of the hard link. There is TOCTOU
595 * race condition here, but the window is as small as possible
596 * between when we open the file descriptor (look above) and when we
597 * fstat it.
598 */
599 struct stat s;
600 if (fstat(fd, &s) == -1) {
601 perror("apply_default_acl (fstat)");
602 goto cleanup;
603 }
604 if (!S_ISDIR(s.st_mode)) {
605 /* If it's not a directory, make sure it's a regular,
606 non-hard-linked file. */
607 if (!S_ISREG(s.st_mode) || s.st_nlink != 1) {
608 result = ACL_FAILURE;
609 goto cleanup;
610 }
611 }
612
613
614 /* Default to not masking the exec bit; i.e. applying the default
615 ACL literally. If --no-exec-mask was not specified, then we try
616 to "guess" whether or not to mask the exec bit. This behavior
617 is modeled after the capital 'X' perms of setfacl. */
618 bool allow_exec = true;
619
620 if (!no_exec_mask) {
621 /* Never mask the execute bit on directories. */
622 int ace_result = any_can_execute(fd) || S_ISDIR(s.st_mode);
623
624 if (ace_result == ACL_ERROR) {
625 perror("apply_default_acl (any_can_execute)");
626 result = ACL_ERROR;
627 goto cleanup;
628 }
629
630 allow_exec = (bool)ace_result;
631 }
632
633 defacl = acl_get_file(parent, ACL_TYPE_DEFAULT);
634
635 if (defacl == (acl_t)NULL) {
636 perror("apply_default_acl (acl_get_file)");
637 result = ACL_ERROR;
638 goto cleanup;
639 }
640
641 if (wipe_acls(fd) == ACL_ERROR) {
642 perror("apply_default_acl (wipe_acls)");
643 result = ACL_ERROR;
644 goto cleanup;
645 }
646
647 /* Do this after wipe_acls(), otherwise we'll overwrite the wiped
648 ACL with this one. */
649 acl_t acl = acl_get_fd(fd);
650 if (acl == (acl_t)NULL) {
651 perror("apply_default_acl (acl_get_fd)");
652 result = ACL_ERROR;
653 goto cleanup;
654 }
655
656 /* If it's a directory, inherit the parent's default. */
657 if (assign_default_acl(path, defacl) == ACL_ERROR) {
658 perror("apply_default_acl (assign_default_acl)");
659 result = ACL_ERROR;
660 goto cleanup;
661 }
662
663 acl_entry_t entry;
664 int ge_result = acl_get_entry(defacl, ACL_FIRST_ENTRY, &entry);
665
666 while (ge_result == ACL_SUCCESS) {
667 acl_tag_t tag = ACL_UNDEFINED_TAG;
668
669 if (acl_get_tag_type(entry, &tag) == ACL_ERROR) {
670 perror("apply_default_acl (acl_get_tag_type)");
671 result = ACL_ERROR;
672 goto cleanup;
673 }
674
675
676 /* We've got an entry/tag from the default ACL. Get its permset. */
677 acl_permset_t permset;
678 if (acl_get_permset(entry, &permset) == ACL_ERROR) {
679 perror("apply_default_acl (acl_get_permset)");
680 result = ACL_ERROR;
681 goto cleanup;
682 }
683
684 /* If this is a default mask, fix it up. */
685 if (tag == ACL_MASK ||
686 tag == ACL_USER_OBJ ||
687 tag == ACL_GROUP_OBJ ||
688 tag == ACL_OTHER) {
689
690 if (!allow_exec) {
691 /* The mask doesn't affect acl_user_obj, acl_group_obj (in
692 minimal ACLs) or acl_other entries, so if execute should be
693 masked, we have to do it manually. */
694 if (acl_delete_perm(permset, ACL_EXECUTE) == ACL_ERROR) {
695 perror("apply_default_acl (acl_delete_perm)");
696 result = ACL_ERROR;
697 goto cleanup;
698 }
699
700 if (acl_set_permset(entry, permset) == ACL_ERROR) {
701 perror("apply_default_acl (acl_set_permset)");
702 result = ACL_ERROR;
703 goto cleanup;
704 }
705 }
706 }
707
708 /* Finally, add the permset to the access ACL. It's actually
709 * important that we pass in the address of "acl" here, and not
710 * "acl" itself. Why? The call to acl_create_entry() within
711 * acl_set_entry() can allocate new memory for the entry.
712 * Sometimes that can be done in-place, in which case everything
713 * is cool and the new memory gets released when we call
714 * acl_free(acl).
715 *
716 * But occasionally, the whole ACL structure will have to be moved
717 * in order to allocate the extra space. When that happens,
718 * acl_create_entry() modifies the pointer it was passed (in this
719 * case, &acl) to point to the new location. We want to call
720 * acl_free() on the new location, and since acl_free() gets
721 * called right here, we need acl_create_entry() to update the
722 * value of "acl". To do that, it needs the address of "acl".
723 */
724 if (acl_set_entry(&acl, entry) == ACL_ERROR) {
725 perror("apply_default_acl (acl_set_entry)");
726 result = ACL_ERROR;
727 goto cleanup;
728 }
729
730 ge_result = acl_get_entry(defacl, ACL_NEXT_ENTRY, &entry);
731 }
732
733 /* Catches the first acl_get_entry as well as the ones at the end of
734 the loop. */
735 if (ge_result == ACL_ERROR) {
736 perror("apply_default_acl (acl_get_entry)");
737 result = ACL_ERROR;
738 goto cleanup;
739 }
740
741 if (acl_set_fd(fd, acl) == ACL_ERROR) {
742 perror("apply_default_acl (acl_set_fd)");
743 result = ACL_ERROR;
744 goto cleanup;
745 }
746
747 cleanup:
748 free(path_copy);
749 if (defacl != (acl_t)NULL) {
750 acl_free(defacl);
751 }
752 if (fd >= 0 && close(fd) == -1) {
753 perror("apply_default_acl (close)");
754 result = ACL_ERROR;
755 }
756 return result;
757 }
758
759
760
761 /**
762 * @brief Display program usage information.
763 *
764 * @param program_name
765 * The program name to use in the output.
766 *
767 */
768 void usage(const char* program_name) {
769 printf("Apply any applicable default ACLs to the given files or "
770 "directories.\n\n");
771 printf("Usage: %s [flags] <target1> [<target2> [ <target3>...]]\n\n",
772 program_name);
773 printf("Flags:\n");
774 printf(" -h, --help Print this help message\n");
775 printf(" -r, --recursive Act on any given directories recursively\n");
776 printf(" -x, --no-exec-mask Apply execute permissions unconditionally\n");
777
778 return;
779 }
780
781
782 /**
783 * @brief Wrapper around @c apply_default_acl() for use with @c nftw().
784 *
785 * For parameter information, see the @c nftw man page.
786 *
787 * @return If the ACL was applied to @c target successfully, we return
788 * @c FTW_CONTINUE to signal to @ nftw() that we should proceed onto
789 * the next file or directory. Otherwise, we return @c FTW_STOP to
790 * signal failure.
791 *
792 */
793 int apply_default_acl_nftw(const char *target,
794 const struct stat *s,
795 int info,
796 struct FTW *ftw) {
797
798 if (apply_default_acl(target, false)) {
799 return FTW_CONTINUE;
800 }
801 else {
802 return FTW_STOP;
803 }
804 }
805
806
807
808 /**
809 * @brief Wrapper around @c apply_default_acl() for use with @c nftw().
810 *
811 * This is identical to @c apply_default_acl_nftw(), except it passes
812 * @c true to @c apply_default_acl() as its no_exec_mask argument.
813 *
814 */
815 int apply_default_acl_nftw_x(const char *target,
816 const struct stat *s,
817 int info,
818 struct FTW *ftw) {
819
820 if (apply_default_acl(target, true)) {
821 return FTW_CONTINUE;
822 }
823 else {
824 return FTW_STOP;
825 }
826 }
827
828
829
830 /**
831 * @brief Recursive version of @c apply_default_acl().
832 *
833 * If @c target is a directory, we use @c nftw() to call @c
834 * apply_default_acl() recursively on all of its children. Otherwise,
835 * we just delegate to @c apply_default_acl().
836 *
837 * We ignore symlinks for consistency with chmod -r.
838 *
839 * @param target
840 * The root (path) of the recursive application.
841 *
842 * @param no_exec_mask
843 * The value (either true or false) of the --no-exec-mask flag.
844 *
845 * @return
846 * If @c target is not a directory, we return the result of
847 * calling @c apply_default_acl() on @c target. Otherwise, we convert
848 * the return value of @c nftw(). If @c nftw() succeeds (returns 0),
849 * then we return @c true. Otherwise, we return @c false.
850 * \n\n
851 * If there is an error, it will be reported via @c perror, but
852 * we still return @c false.
853 */
854 bool apply_default_acl_recursive(const char *target, bool no_exec_mask) {
855
856 if (!is_path_directory(target)) {
857 return apply_default_acl(target, no_exec_mask);
858 }
859
860 int max_levels = 256;
861 int flags = FTW_PHYS; /* Don't follow links. */
862
863 /* There are two separate functions that could be passed to
864 nftw(). One passes no_exec_mask = true to apply_default_acl(),
865 and the other passes no_exec_mask = false. Since the function we
866 pass to nftw() cannot have parameters, we have to create separate
867 options and make the decision here. */
868 int (*fn)(const char *, const struct stat *, int, struct FTW *) = NULL;
869 fn = no_exec_mask ? apply_default_acl_nftw_x : apply_default_acl_nftw;
870
871 int nftw_result = nftw(target, fn, max_levels, flags);
872
873 if (nftw_result == 0) {
874 /* Success */
875 return true;
876 }
877
878 /* nftw will return -1 on error, or if the supplied function
879 * (apply_default_acl_nftw) returns a non-zero result, nftw will
880 * return that.
881 */
882 if (nftw_result == -1) {
883 perror("apply_default_acl_recursive (nftw)");
884 }
885
886 return false;
887 }
888
889
890
891 /**
892 * @brief Call apply_default_acl (possibly recursively) on each
893 * command-line argument.
894 *
895 * @return Either @c EXIT_FAILURE or @c EXIT_SUCCESS. If everything
896 * goes as expected, we return @c EXIT_SUCCESS. Otherwise, we return
897 * @c EXIT_FAILURE.
898 */
899 int main(int argc, char* argv[]) {
900
901 if (argc < 2) {
902 usage(argv[0]);
903 return EXIT_FAILURE;
904 }
905
906 bool recursive = false;
907 bool no_exec_mask = false;
908
909 struct option long_options[] = {
910 /* These options set a flag. */
911 {"help", no_argument, NULL, 'h'},
912 {"recursive", no_argument, NULL, 'r'},
913 {"no-exec-mask", no_argument, NULL, 'x'},
914 {NULL, 0, NULL, 0}
915 };
916
917 int opt = 0;
918
919 while ((opt = getopt_long(argc, argv, "hrx", long_options, NULL)) != -1) {
920 switch (opt) {
921 case 'h':
922 usage(argv[0]);
923 return EXIT_SUCCESS;
924 case 'r':
925 recursive = true;
926 break;
927 case 'x':
928 no_exec_mask = true;
929 break;
930 default:
931 usage(argv[0]);
932 return EXIT_FAILURE;
933 }
934 }
935
936 int result = EXIT_SUCCESS;
937
938 int arg_index = 1;
939 for (arg_index = optind; arg_index < argc; arg_index++) {
940 const char* target = argv[arg_index];
941 bool reapp_result = false;
942
943 /* Make sure we can access the given path before we go out of our
944 * way to please it. Doing this check outside of
945 * apply_default_acl() lets us spit out a better error message for
946 * typos, too.
947 */
948 if (!path_accessible(target)) {
949 fprintf(stderr, "%s: %s: No such file or directory\n", argv[0], target);
950 result = EXIT_FAILURE;
951 continue;
952 }
953
954 if (recursive) {
955 reapp_result = apply_default_acl_recursive(target, no_exec_mask);
956 }
957 else {
958 /* It's either a normal file, or we're not operating recursively. */
959 reapp_result = apply_default_acl(target, no_exec_mask);
960 }
961
962 if (!reapp_result) {
963 result = EXIT_FAILURE;
964 }
965 }
966
967 return result;
968 }