2020-01-18 08:38:21 +00:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2021-11-27 14:55:40 +00:00
|
|
|
|
* Copyright (c) 2021, Kenneth Myhra <kennethmyhra@gmail.com>
|
2020-01-18 08:38:21 +00:00
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2021-05-31 14:43:25 +00:00
|
|
|
|
#include <AK/Format.h>
|
2019-07-13 17:36:02 +00:00
|
|
|
|
#include <AK/Optional.h>
|
2021-11-27 14:55:40 +00:00
|
|
|
|
#include <AK/String.h>
|
2021-12-20 20:19:18 +00:00
|
|
|
|
#include <AK/StringUtils.h>
|
2021-11-27 14:55:40 +00:00
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
#include <LibCore/System.h>
|
|
|
|
|
#include <LibMain/Main.h>
|
2019-01-29 03:55:08 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
2019-06-07 09:49:31 +00:00
|
|
|
|
#include <sys/stat.h>
|
2019-01-29 03:55:08 +00:00
|
|
|
|
|
2019-07-13 17:36:02 +00:00
|
|
|
|
/* the new mode will be computed using the boolean function(for each bit):
|
|
|
|
|
|
|
|
|
|
|current mode|removal mask|applying mask|result |
|
|
|
|
|
| 0 | 0 | 0 | 0 |
|
|
|
|
|
| 0 | 0 | 1 | 1 |
|
|
|
|
|
| 0 | 1 | 0 | 0 |
|
|
|
|
|
| 0 | 1 | 1 | 1 | ---> find the CNF --> find the minimal CNF
|
|
|
|
|
| 1 | 0 | 0 | 1 |
|
|
|
|
|
| 1 | 0 | 1 | 1 |
|
|
|
|
|
| 1 | 1 | 0 | 0 |
|
|
|
|
|
| 1 | 1 | 1 | 1 |
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class Mask {
|
|
|
|
|
private:
|
2020-10-02 21:14:37 +00:00
|
|
|
|
mode_t removal_mask; // the bits that will be removed
|
|
|
|
|
mode_t applying_mask; // the bits that will be set
|
2019-07-13 17:36:02 +00:00
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Mask()
|
|
|
|
|
: removal_mask(0)
|
|
|
|
|
, applying_mask(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Mask& operator|=(const Mask& other)
|
|
|
|
|
{
|
|
|
|
|
removal_mask |= other.removal_mask;
|
|
|
|
|
applying_mask |= other.applying_mask;
|
|
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mode_t& get_removal_mask() { return removal_mask; }
|
|
|
|
|
mode_t& get_applying_mask() { return applying_mask; }
|
2021-12-20 20:19:18 +00:00
|
|
|
|
|
|
|
|
|
void set_mode(mode_t mode)
|
|
|
|
|
{
|
|
|
|
|
this->applying_mask = mode;
|
|
|
|
|
this->removal_mask = ~mode;
|
|
|
|
|
}
|
2019-07-13 17:36:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-11-27 14:55:40 +00:00
|
|
|
|
Optional<Mask> string_to_mode(char access_scope, StringView access_string);
|
2019-07-13 17:36:02 +00:00
|
|
|
|
Optional<Mask> apply_permission(char access_scope, char permission, char operation);
|
|
|
|
|
|
2021-11-27 14:55:40 +00:00
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2019-01-29 03:55:08 +00:00
|
|
|
|
{
|
2021-11-27 14:55:40 +00:00
|
|
|
|
TRY(Core::System::pledge("stdio rpath fattr", nullptr));
|
2020-01-12 12:25:02 +00:00
|
|
|
|
|
2021-11-27 14:55:40 +00:00
|
|
|
|
if (arguments.strings.size() < 3) {
|
2021-05-31 14:43:25 +00:00
|
|
|
|
warnln("usage: chmod <octal-mode> <path...>");
|
|
|
|
|
warnln(" chmod [[ugoa][+-=][rwx...],...] <path...>");
|
2019-01-29 03:55:08 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-13 17:36:02 +00:00
|
|
|
|
Mask mask;
|
|
|
|
|
|
|
|
|
|
/* compute a mask */
|
2021-11-27 14:55:40 +00:00
|
|
|
|
|
2021-12-20 20:19:18 +00:00
|
|
|
|
auto mode_string = arguments.strings[1];
|
|
|
|
|
if (mode_string[0] >= '0' && mode_string[0] <= '7') {
|
|
|
|
|
mode_t mode = AK::StringUtils::convert_to_uint_from_octal<u16>(mode_string).value_or(01000);
|
|
|
|
|
if (mode > 0777) {
|
|
|
|
|
warnln("chmod: invalid mode: {}", mode_string);
|
2019-07-13 17:36:02 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
2021-12-20 20:19:18 +00:00
|
|
|
|
mask.set_mode(mode);
|
2019-07-13 17:36:02 +00:00
|
|
|
|
} else {
|
2021-11-27 14:55:40 +00:00
|
|
|
|
auto access_strings = arguments.strings[1].split_view(',');
|
|
|
|
|
for (auto access_string : access_strings) {
|
2019-07-13 17:36:02 +00:00
|
|
|
|
Optional<Mask> tmp_mask;
|
2021-11-27 14:55:40 +00:00
|
|
|
|
switch (access_string[0]) {
|
2019-07-13 17:36:02 +00:00
|
|
|
|
case 'u':
|
2021-11-27 14:55:40 +00:00
|
|
|
|
tmp_mask = string_to_mode('u', access_string);
|
2019-07-13 17:36:02 +00:00
|
|
|
|
break;
|
|
|
|
|
case 'g':
|
2021-11-27 14:55:40 +00:00
|
|
|
|
tmp_mask = string_to_mode('g', access_string);
|
2019-07-13 17:36:02 +00:00
|
|
|
|
break;
|
|
|
|
|
case 'o':
|
2021-11-27 14:55:40 +00:00
|
|
|
|
tmp_mask = string_to_mode('o', access_string);
|
2019-07-13 17:36:02 +00:00
|
|
|
|
break;
|
|
|
|
|
case 'a':
|
2021-11-27 14:55:40 +00:00
|
|
|
|
tmp_mask = string_to_mode('a', access_string);
|
2019-07-13 17:36:02 +00:00
|
|
|
|
break;
|
|
|
|
|
case '=':
|
|
|
|
|
case '+':
|
|
|
|
|
case '-':
|
|
|
|
|
tmp_mask = string_to_mode('a', access_string);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (!tmp_mask.has_value()) {
|
2021-11-27 14:55:40 +00:00
|
|
|
|
warnln("chmod: invalid mode: {}", arguments.strings[1]);
|
2019-07-13 17:36:02 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
mask |= tmp_mask.value();
|
|
|
|
|
}
|
2019-01-29 03:55:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 21:14:37 +00:00
|
|
|
|
/* set the mask for each file's permissions */
|
2021-11-27 14:55:40 +00:00
|
|
|
|
size_t i = 2;
|
|
|
|
|
while (i < arguments.strings.size()) {
|
|
|
|
|
auto current_access = TRY(Core::System::stat(arguments.strings[i]));
|
2019-07-13 17:36:02 +00:00
|
|
|
|
/* found the minimal CNF by The Quine–McCluskey algorithm and use it */
|
|
|
|
|
mode_t mode = mask.get_applying_mask()
|
|
|
|
|
| (current_access.st_mode & ~mask.get_removal_mask());
|
2021-11-27 14:55:40 +00:00
|
|
|
|
TRY(Core::System::chmod(arguments.strings[i++], mode));
|
2019-01-29 03:55:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2019-07-13 17:36:02 +00:00
|
|
|
|
|
2021-11-27 14:55:40 +00:00
|
|
|
|
Optional<Mask> string_to_mode(char access_scope, StringView access_string)
|
2019-07-13 17:36:02 +00:00
|
|
|
|
{
|
2021-11-27 14:55:40 +00:00
|
|
|
|
auto get_operation = [](StringView s) {
|
|
|
|
|
for (auto c : s) {
|
|
|
|
|
if (c == '+' || c == '-' || c == '=')
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
return ' ';
|
|
|
|
|
};
|
2019-07-13 17:36:02 +00:00
|
|
|
|
|
2021-11-27 14:55:40 +00:00
|
|
|
|
auto operation = get_operation(access_string);
|
|
|
|
|
if (operation == ' ') {
|
2019-07-13 17:36:02 +00:00
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Mask mask;
|
|
|
|
|
if (operation == '=') {
|
|
|
|
|
switch (access_scope) {
|
|
|
|
|
case 'u':
|
|
|
|
|
mask.get_removal_mask() = (S_IRUSR | S_IWUSR | S_IXUSR);
|
|
|
|
|
break;
|
|
|
|
|
case 'g':
|
|
|
|
|
mask.get_removal_mask() = (S_IRGRP | S_IWGRP | S_IXGRP);
|
|
|
|
|
break;
|
|
|
|
|
case 'o':
|
|
|
|
|
mask.get_removal_mask() = (S_IROTH | S_IWOTH | S_IXOTH);
|
|
|
|
|
break;
|
|
|
|
|
case 'a':
|
|
|
|
|
mask.get_removal_mask() = (S_IRUSR | S_IWUSR | S_IXUSR
|
|
|
|
|
| S_IRGRP | S_IWGRP | S_IXGRP
|
|
|
|
|
| S_IROTH | S_IWOTH | S_IXOTH);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
operation = '+';
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-27 14:55:40 +00:00
|
|
|
|
for (size_t i = 1; i < access_string.length(); i++) {
|
|
|
|
|
char permission = access_string[i];
|
|
|
|
|
if (permission == '+' || permission == '-' || permission == '=')
|
|
|
|
|
continue;
|
|
|
|
|
|
2019-07-13 17:36:02 +00:00
|
|
|
|
Optional<Mask> tmp_mask;
|
2021-11-27 14:55:40 +00:00
|
|
|
|
tmp_mask = apply_permission(access_scope, permission, operation);
|
2019-07-13 17:36:02 +00:00
|
|
|
|
if (!tmp_mask.has_value()) {
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
mask |= tmp_mask.value();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return mask;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Optional<Mask> apply_permission(char access_scope, char permission, char operation)
|
|
|
|
|
{
|
|
|
|
|
if (permission != 'r' && permission != 'w' && permission != 'x') {
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Mask mask;
|
|
|
|
|
mode_t tmp_mask = 0;
|
|
|
|
|
switch (access_scope) {
|
|
|
|
|
case 'u':
|
|
|
|
|
switch (permission) {
|
|
|
|
|
case 'r':
|
|
|
|
|
tmp_mask = S_IRUSR;
|
|
|
|
|
break;
|
|
|
|
|
case 'w':
|
|
|
|
|
tmp_mask = S_IWUSR;
|
|
|
|
|
break;
|
|
|
|
|
case 'x':
|
|
|
|
|
tmp_mask = S_IXUSR;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'g':
|
|
|
|
|
switch (permission) {
|
|
|
|
|
case 'r':
|
|
|
|
|
tmp_mask = S_IRGRP;
|
|
|
|
|
break;
|
|
|
|
|
case 'w':
|
|
|
|
|
tmp_mask = S_IWGRP;
|
|
|
|
|
break;
|
|
|
|
|
case 'x':
|
|
|
|
|
tmp_mask = S_IXGRP;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'o':
|
|
|
|
|
switch (permission) {
|
|
|
|
|
case 'r':
|
|
|
|
|
tmp_mask = S_IROTH;
|
|
|
|
|
break;
|
|
|
|
|
case 'w':
|
|
|
|
|
tmp_mask = S_IWOTH;
|
|
|
|
|
break;
|
|
|
|
|
case 'x':
|
|
|
|
|
tmp_mask = S_IXOTH;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'a':
|
|
|
|
|
mask |= apply_permission('u', permission, operation).value();
|
|
|
|
|
mask |= apply_permission('g', permission, operation).value();
|
|
|
|
|
mask |= apply_permission('o', permission, operation).value();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (operation == '+') {
|
|
|
|
|
mask.get_applying_mask() |= tmp_mask;
|
|
|
|
|
} else {
|
|
|
|
|
mask.get_removal_mask() |= tmp_mask;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return mask;
|
|
|
|
|
}
|