1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

libcli/security: Optionally disallow device‐specific attributes and operators where they are not applicable

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-11-03 14:57:02 +13:00 committed by Andrew Bartlett
parent a08a724a28
commit 935f4edd81
9 changed files with 100 additions and 17 deletions

View File

@ -95,6 +95,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *input, size_t len)
} }
s2 = ace_conditions_compile_sddl(mem_ctx, s2 = ace_conditions_compile_sddl(mem_ctx,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
sddl, sddl,
&message, &message,
&message_offset, &message_offset,

View File

@ -57,6 +57,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *input, size_t len)
mem_ctx = talloc_new(NULL); mem_ctx = talloc_new(NULL);
s1 = ace_conditions_compile_sddl(mem_ctx, s1 = ace_conditions_compile_sddl(mem_ctx,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
sddl_string, sddl_string,
&message, &message,
&message_offset, &message_offset,
@ -98,6 +99,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *input, size_t len)
} }
s2 = ace_conditions_compile_sddl(mem_ctx, s2 = ace_conditions_compile_sddl(mem_ctx,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
resddl, resddl,
&message, &message,
&message_offset, &message_offset,

View File

@ -46,6 +46,7 @@ bool conditional_ace_encode_binary(TALLOC_CTX *mem_ctx,
DATA_BLOB *dest); DATA_BLOB *dest);
struct ace_condition_script * ace_conditions_compile_sddl(TALLOC_CTX *mem_ctx, struct ace_condition_script * ace_conditions_compile_sddl(TALLOC_CTX *mem_ctx,
const enum ace_condition_flags ace_condition_flags,
const char *sddl, const char *sddl,
const char **message, const char **message,
size_t *message_offset, size_t *message_offset,

View File

@ -487,6 +487,7 @@ static bool sddl_decode_guid(const char *str, struct GUID *guid)
static DATA_BLOB sddl_decode_conditions(TALLOC_CTX *mem_ctx, static DATA_BLOB sddl_decode_conditions(TALLOC_CTX *mem_ctx,
const enum ace_condition_flags ace_condition_flags,
const char *conditions, const char *conditions,
size_t *length, size_t *length,
const char **msg, const char **msg,
@ -495,6 +496,7 @@ static DATA_BLOB sddl_decode_conditions(TALLOC_CTX *mem_ctx,
DATA_BLOB blob = {0}; DATA_BLOB blob = {0};
struct ace_condition_script *script = NULL; struct ace_condition_script *script = NULL;
script = ace_conditions_compile_sddl(mem_ctx, script = ace_conditions_compile_sddl(mem_ctx,
ace_condition_flags,
conditions, conditions,
msg, msg,
msg_offset, msg_offset,
@ -518,6 +520,7 @@ static DATA_BLOB sddl_decode_conditions(TALLOC_CTX *mem_ctx,
*/ */
static bool sddl_decode_ace(TALLOC_CTX *mem_ctx, static bool sddl_decode_ace(TALLOC_CTX *mem_ctx,
struct security_ace *ace, struct security_ace *ace,
const enum ace_condition_flags ace_condition_flags,
char **sddl_copy, char **sddl_copy,
struct sddl_transition_state *state, struct sddl_transition_state *state,
const char **msg, size_t *msg_offset) const char **msg, size_t *msg_offset)
@ -671,7 +674,12 @@ static bool sddl_decode_ace(TALLOC_CTX *mem_ctx,
DATA_BLOB conditions = {0}; DATA_BLOB conditions = {0};
s = tok[6]; s = tok[6];
conditions = sddl_decode_conditions(mem_ctx, s, &length, msg, msg_offset); conditions = sddl_decode_conditions(mem_ctx,
ace_condition_flags,
s,
&length,
msg,
msg_offset);
if (conditions.data == NULL) { if (conditions.data == NULL) {
DBG_WARNING("Conditional ACE compilation failure at %zu: %s\n", DBG_WARNING("Conditional ACE compilation failure at %zu: %s\n",
*msg_offset, *msg); *msg_offset, *msg);
@ -733,6 +741,7 @@ static const struct flag_map acl_flags[] = {
decode an ACL decode an ACL
*/ */
static struct security_acl *sddl_decode_acl(struct security_descriptor *sd, static struct security_acl *sddl_decode_acl(struct security_descriptor *sd,
const enum ace_condition_flags ace_condition_flags,
const char **sddlp, uint32_t *flags, const char **sddlp, uint32_t *flags,
struct sddl_transition_state *state, struct sddl_transition_state *state,
const char **msg, size_t *msg_offset) const char **msg, size_t *msg_offset)
@ -795,6 +804,7 @@ static struct security_acl *sddl_decode_acl(struct security_descriptor *sd,
return NULL; return NULL;
} }
ok = sddl_decode_ace(acl->aces, &acl->aces[acl->num_aces], ok = sddl_decode_ace(acl->aces, &acl->aces[acl->num_aces],
ace_condition_flags,
&sddl_copy, state, msg, msg_offset); &sddl_copy, state, msg, msg_offset);
if (!ok) { if (!ok) {
*msg_offset += sddl_copy - aces_start; *msg_offset += sddl_copy - aces_start;
@ -818,6 +828,7 @@ static struct security_acl *sddl_decode_acl(struct security_descriptor *sd,
*/ */
struct security_descriptor *sddl_decode_err_msg(TALLOC_CTX *mem_ctx, const char *sddl, struct security_descriptor *sddl_decode_err_msg(TALLOC_CTX *mem_ctx, const char *sddl,
const struct dom_sid *domain_sid, const struct dom_sid *domain_sid,
const enum ace_condition_flags ace_condition_flags,
const char **msg, size_t *msg_offset) const char **msg, size_t *msg_offset)
{ {
struct sddl_transition_state state = { struct sddl_transition_state state = {
@ -857,13 +868,13 @@ struct security_descriptor *sddl_decode_err_msg(TALLOC_CTX *mem_ctx, const char
switch (c) { switch (c) {
case 'D': case 'D':
if (sd->dacl != NULL) goto failed; if (sd->dacl != NULL) goto failed;
sd->dacl = sddl_decode_acl(sd, &sddl, &flags, &state, msg, msg_offset); sd->dacl = sddl_decode_acl(sd, ace_condition_flags, &sddl, &flags, &state, msg, msg_offset);
if (sd->dacl == NULL) goto failed; if (sd->dacl == NULL) goto failed;
sd->type |= flags | SEC_DESC_DACL_PRESENT; sd->type |= flags | SEC_DESC_DACL_PRESENT;
break; break;
case 'S': case 'S':
if (sd->sacl != NULL) goto failed; if (sd->sacl != NULL) goto failed;
sd->sacl = sddl_decode_acl(sd, &sddl, &flags, &state, msg, msg_offset); sd->sacl = sddl_decode_acl(sd, ace_condition_flags, &sddl, &flags, &state, msg, msg_offset);
if (sd->sacl == NULL) goto failed; if (sd->sacl == NULL) goto failed;
/* this relies on the SEC_DESC_SACL_* flags being /* this relies on the SEC_DESC_SACL_* flags being
1 bit shifted from the SEC_DESC_DACL_* flags */ 1 bit shifted from the SEC_DESC_DACL_* flags */
@ -909,8 +920,12 @@ struct security_descriptor *sddl_decode(TALLOC_CTX *mem_ctx, const char *sddl,
{ {
const char *msg = NULL; const char *msg = NULL;
size_t msg_offset = 0; size_t msg_offset = 0;
struct security_descriptor *sd = sddl_decode_err_msg(mem_ctx, sddl, domain_sid, struct security_descriptor *sd = sddl_decode_err_msg(mem_ctx,
&msg, &msg_offset); sddl,
domain_sid,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
&msg,
&msg_offset);
DBG_NOTICE("could not decode '%s'\n", sddl); DBG_NOTICE("could not decode '%s'\n", sddl);
if (msg != NULL) { if (msg != NULL) {
DBG_NOTICE(" %*c\n", (int)msg_offset, '^'); DBG_NOTICE(" %*c\n", (int)msg_offset, '^');

View File

@ -24,12 +24,14 @@
#include <talloc.h> #include <talloc.h>
#include "lib/util/data_blob.h" #include "lib/util/data_blob.h"
#include "librpc/gen_ndr/conditional_ace.h"
#include "librpc/gen_ndr/security.h" #include "librpc/gen_ndr/security.h"
struct security_descriptor *sddl_decode(TALLOC_CTX *mem_ctx, const char *sddl, struct security_descriptor *sddl_decode(TALLOC_CTX *mem_ctx, const char *sddl,
const struct dom_sid *domain_sid); const struct dom_sid *domain_sid);
struct security_descriptor *sddl_decode_err_msg(TALLOC_CTX *mem_ctx, const char *sddl, struct security_descriptor *sddl_decode_err_msg(TALLOC_CTX *mem_ctx, const char *sddl,
const struct dom_sid *domain_sid, const struct dom_sid *domain_sid,
const enum ace_condition_flags ace_condition_flags,
const char **msg, size_t *msg_offset); const char **msg, size_t *msg_offset);
char *sddl_encode(TALLOC_CTX *mem_ctx, const struct security_descriptor *sd, char *sddl_encode(TALLOC_CTX *mem_ctx, const struct security_descriptor *sd,
const struct dom_sid *domain_sid); const struct dom_sid *domain_sid);

View File

@ -40,6 +40,8 @@
#define SDDL_FLAG_EXPECTING_PAREN_LITERAL 128 #define SDDL_FLAG_EXPECTING_PAREN_LITERAL 128
#define SDDL_FLAG_NOT_EXPECTING_END_PAREN 256 #define SDDL_FLAG_NOT_EXPECTING_END_PAREN 256
#define SDDL_FLAG_DEVICE 512
#define SDDL_FLAG_IS_UNARY_OP (1 << 20) #define SDDL_FLAG_IS_UNARY_OP (1 << 20)
#define SDDL_FLAG_IS_BINARY_OP (1 << 21) #define SDDL_FLAG_IS_BINARY_OP (1 << 21)
@ -114,6 +116,7 @@ struct ace_condition_sddl_compiler_context {
struct dom_sid *domain_sid; struct dom_sid *domain_sid;
uint32_t state; uint32_t state;
uint8_t last_token_type; uint8_t last_token_type;
bool allow_device;
}; };
struct sddl_data { struct sddl_data {
@ -133,7 +136,7 @@ static const struct sddl_data sddl_strings[256] = {
}, },
[CONDITIONAL_ACE_TOKEN_DEVICE_MEMBER_OF] = { [CONDITIONAL_ACE_TOKEN_DEVICE_MEMBER_OF] = {
"Device_Member_of", "Device_Member_of",
SDDL_FLAGS_MEMBER_OP, SDDL_FLAGS_MEMBER_OP|SDDL_FLAG_DEVICE,
SDDL_PRECEDENCE_COMMON, SDDL_PRECEDENCE_COMMON,
1 1
}, },
@ -146,7 +149,7 @@ static const struct sddl_data sddl_strings[256] = {
}, },
[CONDITIONAL_ACE_TOKEN_DEVICE_MEMBER_OF_ANY] = { [CONDITIONAL_ACE_TOKEN_DEVICE_MEMBER_OF_ANY] = {
"Device_Member_of_Any", "Device_Member_of_Any",
SDDL_FLAGS_MEMBER_OP, SDDL_FLAGS_MEMBER_OP|SDDL_FLAG_DEVICE,
SDDL_PRECEDENCE_COMMON, SDDL_PRECEDENCE_COMMON,
1 1
}, },
@ -158,7 +161,7 @@ static const struct sddl_data sddl_strings[256] = {
}, },
[CONDITIONAL_ACE_TOKEN_NOT_DEVICE_MEMBER_OF] = { [CONDITIONAL_ACE_TOKEN_NOT_DEVICE_MEMBER_OF] = {
"Not_Device_Member_of", "Not_Device_Member_of",
SDDL_FLAGS_MEMBER_OP, SDDL_FLAGS_MEMBER_OP|SDDL_FLAG_DEVICE,
SDDL_PRECEDENCE_COMMON, SDDL_PRECEDENCE_COMMON,
1 1
}, },
@ -170,7 +173,7 @@ static const struct sddl_data sddl_strings[256] = {
}, },
[CONDITIONAL_ACE_TOKEN_NOT_DEVICE_MEMBER_OF_ANY] = { [CONDITIONAL_ACE_TOKEN_NOT_DEVICE_MEMBER_OF_ANY] = {
"Not_Device_Member_of_Any", "Not_Device_Member_of_Any",
SDDL_FLAGS_MEMBER_OP, SDDL_FLAGS_MEMBER_OP|SDDL_FLAG_DEVICE,
SDDL_PRECEDENCE_COMMON, SDDL_PRECEDENCE_COMMON,
1 1
}, },
@ -356,7 +359,7 @@ static const struct sddl_data sddl_strings[256] = {
}, },
[CONDITIONAL_ACE_DEVICE_ATTRIBUTE] = { [CONDITIONAL_ACE_DEVICE_ATTRIBUTE] = {
"device attribute", "device attribute",
SDDL_FLAGS_ATTRIBUTE, SDDL_FLAGS_ATTRIBUTE|SDDL_FLAG_DEVICE,
SDDL_NOT_AN_OP, SDDL_NOT_AN_OP,
0 0
}, },
@ -2256,6 +2259,20 @@ static bool parse_word(struct ace_condition_sddl_compiler_context *comp)
size_t o = candidates[j]; size_t o = candidates[j];
if (sddl_strings[o].name[i] == '\0') { if (sddl_strings[o].name[i] == '\0') {
/* it is this one */ /* it is this one */
if (!comp->allow_device &&
(sddl_strings[o].flags & SDDL_FLAG_DEVICE))
{
comp_error(
comp,
"a devicerelative expression "
"will never evaluate to true "
"in this context (did you "
"intend a userrelative "
"expression?)");
return false;
}
token.type = o; token.type = o;
token.data.sddl_op.start = comp->offset; token.data.sddl_op.start = comp->offset;
comp->offset += i; comp->offset += i;
@ -2327,7 +2344,19 @@ static bool parse_attr2(struct ace_condition_sddl_compiler_context *comp)
(const char *) (comp->sddl + comp->offset), (const char *) (comp->sddl + comp->offset),
attr_len); attr_len);
if (ret == 0) { if (ret == 0) {
token.type = sddl_attr_types[i].code; const uint8_t code = sddl_attr_types[i].code;
if (!comp->allow_device &&
(sddl_strings[code].flags & SDDL_FLAG_DEVICE))
{
comp_error(comp,
"a device attribute is not "
"applicable in this context (did "
"you intend a user attribute?)");
return false;
}
token.type = code;
comp->offset += attr_len; comp->offset += attr_len;
break; break;
} }
@ -2676,6 +2705,7 @@ static bool parse_expression(struct ace_condition_sddl_compiler_context *comp)
static bool init_compiler_context( static bool init_compiler_context(
TALLOC_CTX *mem_ctx, TALLOC_CTX *mem_ctx,
struct ace_condition_sddl_compiler_context *comp, struct ace_condition_sddl_compiler_context *comp,
const enum ace_condition_flags ace_condition_flags,
const char *sddl, const char *sddl,
size_t max_length, size_t max_length,
size_t max_stack) size_t max_stack)
@ -2713,6 +2743,7 @@ static bool init_compiler_context(
comp->target_len = &program->length; comp->target_len = &program->length;
comp->length = strlen(sddl); comp->length = strlen(sddl);
comp->state = SDDL_FLAG_EXPECTING_PAREN; comp->state = SDDL_FLAG_EXPECTING_PAREN;
comp->allow_device = ace_condition_flags & ACE_CONDITION_FLAG_ALLOW_DEVICE;
return true; return true;
} }
@ -2721,6 +2752,7 @@ static bool init_compiler_context(
* *
* @param mem_ctx * @param mem_ctx
* @param sddl - the string to be parsed * @param sddl - the string to be parsed
* @param ace_condition_flags - flags controlling compiler behaviour
* @param message - on error, a pointer to a compiler message * @param message - on error, a pointer to a compiler message
* @param message_offset - where the error occurred * @param message_offset - where the error occurred
* @param consumed_length - how much of the SDDL was used * @param consumed_length - how much of the SDDL was used
@ -2728,6 +2760,7 @@ static bool init_compiler_context(
*/ */
struct ace_condition_script * ace_conditions_compile_sddl( struct ace_condition_script * ace_conditions_compile_sddl(
TALLOC_CTX *mem_ctx, TALLOC_CTX *mem_ctx,
const enum ace_condition_flags ace_condition_flags,
const char *sddl, const char *sddl,
const char **message, const char **message,
size_t *message_offset, size_t *message_offset,
@ -2741,6 +2774,7 @@ struct ace_condition_script * ace_conditions_compile_sddl(
ok = init_compiler_context(mem_ctx, ok = init_compiler_context(mem_ctx,
&comp, &comp,
ace_condition_flags,
sddl, sddl,
CONDITIONAL_ACE_MAX_LENGTH, CONDITIONAL_ACE_MAX_LENGTH,
CONDITIONAL_ACE_MAX_TOKENS); CONDITIONAL_ACE_MAX_TOKENS);
@ -3026,7 +3060,12 @@ struct CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1 *sddl_decode_resource_attr (
size_t len; size_t len;
struct ace_condition_unicode attr_name = {}; struct ace_condition_unicode attr_name = {};
ok = init_compiler_context(mem_ctx, &comp, str, 3, 3); ok = init_compiler_context(mem_ctx,
&comp,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
str,
3,
3);
if (!ok) { if (!ok) {
return NULL; return NULL;
} }
@ -3302,7 +3341,12 @@ struct CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1 *parse_sddl_literal_as_claim(
struct CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1 *claim = NULL; struct CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1 *claim = NULL;
struct ace_condition_sddl_compiler_context comp = {}; struct ace_condition_sddl_compiler_context comp = {};
ok = init_compiler_context(mem_ctx, &comp, str, 2, 2); ok = init_compiler_context(mem_ctx,
&comp,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
str,
2,
2);
if (!ok) { if (!ok) {
return NULL; return NULL;
} }

View File

@ -94,8 +94,12 @@ static void test_sddl_compile(void **state)
DATA_BLOB compiled; DATA_BLOB compiled;
size_t length; size_t length;
s = ace_conditions_compile_sddl(mem_ctx, sddl, &message, s = ace_conditions_compile_sddl(mem_ctx,
&message_offset, &length); ACE_CONDITION_FLAG_ALLOW_DEVICE,
sddl,
&message,
&message_offset,
&length);
if (message != NULL) { if (message != NULL) {
print_error_message(sddl, message, message_offset); print_error_message(sddl, message, message_offset);
} }
@ -130,8 +134,12 @@ static void test_sddl_compile2(void **state)
DATA_BLOB compiled; DATA_BLOB compiled;
size_t length; size_t length;
s = ace_conditions_compile_sddl(mem_ctx, sddl, &message, s = ace_conditions_compile_sddl(mem_ctx,
&message_offset, &length); ACE_CONDITION_FLAG_ALLOW_DEVICE,
sddl,
&message,
&message_offset,
&length);
if (message != NULL) { if (message != NULL) {
print_error_message(sddl, message, message_offset); print_error_message(sddl, message, message_offset);
} }
@ -624,6 +632,7 @@ static void test_round_trips(void **state)
DATA_BLOB e1, e2, e3; DATA_BLOB e1, e2, e3;
fputs("=======================\n", stderr); fputs("=======================\n", stderr);
s1 = ace_conditions_compile_sddl(mem_ctx, s1 = ace_conditions_compile_sddl(mem_ctx,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
sddl[i], sddl[i],
&message, &message,
&message_offset, &message_offset,
@ -679,6 +688,7 @@ static void test_round_trips(void **state)
} }
print_message("SDDL: %s\n", resddl1); print_message("SDDL: %s\n", resddl1);
s3 = ace_conditions_compile_sddl(mem_ctx, s3 = ace_conditions_compile_sddl(mem_ctx,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
resddl1, resddl1,
&message, &message,
&message_offset, &message_offset,
@ -728,6 +738,7 @@ static void test_a_number_of_valid_strings(void **state)
size_t message_offset; size_t message_offset;
s = ace_conditions_compile_sddl(mem_ctx, s = ace_conditions_compile_sddl(mem_ctx,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
sddl[i], sddl[i],
&message, &message,
&message_offset, &message_offset,
@ -803,6 +814,7 @@ static void test_a_number_of_invalid_strings(void **state)
const char *message = NULL; const char *message = NULL;
size_t message_offset; size_t message_offset;
s = ace_conditions_compile_sddl(mem_ctx, s = ace_conditions_compile_sddl(mem_ctx,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
sddl[i], sddl[i],
&message, &message,
&message_offset, &message_offset,
@ -847,6 +859,7 @@ static void test_valid_strings_with_trailing_crap(void **state)
const char *message = NULL; const char *message = NULL;
size_t message_offset; size_t message_offset;
s = ace_conditions_compile_sddl(mem_ctx, s = ace_conditions_compile_sddl(mem_ctx,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
pairs[i].sddl, pairs[i].sddl,
&message, &message,
&message_offset, &message_offset,

View File

@ -389,6 +389,10 @@ interface conditional_ace
uint32 length; uint32 length;
} ace_condition_script; } ace_condition_script;
typedef enum {
ACE_CONDITION_FLAG_ALLOW_DEVICE = 0x01
} ace_condition_flags;
/* /*
* Flags for ace_condition_token.flags field. * Flags for ace_condition_token.flags field.
* *

View File

@ -299,6 +299,7 @@ static PyObject *py_descriptor_from_sddl(PyObject *self, PyObject *args)
} }
secdesc = sddl_decode_err_msg(tmp_ctx, sddl, sid, secdesc = sddl_decode_err_msg(tmp_ctx, sddl, sid,
ACE_CONDITION_FLAG_ALLOW_DEVICE,
&err_msg, &err_msg_offset); &err_msg, &err_msg_offset);
if (secdesc == NULL) { if (secdesc == NULL) {
PyObject *exc = NULL; PyObject *exc = NULL;