[LTP] [PATCH v4 1/2] capability: Introduce capability API
Richard Palethorpe
rpalethorpe@suse.de
Wed Sep 11 17:10:14 CEST 2019
Hello,
Cyril Hrubis <chrubis@suse.cz> writes:
> Hi!
> A few very minor points pointed out below, if you agree with these I can
> fix them up when applying the patch. Othat than these it looks fine.
>
>> diff --git a/lib/tst_capability.c b/lib/tst_capability.c
>> new file mode 100644
>> index 000000000..2b55849f7
>> --- /dev/null
>> +++ b/lib/tst_capability.c
>> @@ -0,0 +1,114 @@
>> +// SPDX-License-Identifier: GPL-2.0-or-later
>> +/*
>> + * Copyright (c) 2019 Richard Palethorpe <rpalethorpe@suse.com>
>> + */
>> +
>> +#include <string.h>
>> +
>> +#define TST_NO_DEFAULT_MAIN
>> +#include "tst_test.h"
>> +#include "tst_capability.h"
>> +
>> +#include "lapi/syscalls.h"
>> +
>> +/**
>> + * Get the capabilities as decided by hdr.
>> + *
>> + * Note that the memory pointed to by data should be large enough to store two
>> + * structs.
>> + */
>
> Shouldn't we put these comments into the header instead?
Yes.
>
>> +int tst_capget(struct tst_cap_user_header *hdr,
>> + struct tst_cap_user_data *data)
>> +{
>> + return tst_syscall(__NR_capget, hdr, data);
>> +}
>> +
>> +/**
>> + * Set the capabilities as decided by hdr and data
>> + *
>> + * Note that the memory pointed to by data should be large enough to store two
>> + * structs.
>> + */
>> +int tst_capset(struct tst_cap_user_header *hdr,
>> + const struct tst_cap_user_data *data)
>> +{
>> + return tst_syscall(__NR_capset, hdr, data);
>> +}
>> +
>> +static void do_cap_drop(uint32_t *set, uint32_t mask, const struct tst_cap *cap)
>> +{
>> + if (*set & mask) {
>> + tst_res(TINFO, "Dropping %s(%d)", cap->name, cap->id);
>> + *set &= ~mask;
>> + }
>> +}
>> +
>> +static void do_cap_req(uint32_t *permitted, uint32_t *effective, uint32_t mask,
>> + const struct tst_cap *cap)
>> +{
>> + if (!(*permitted & mask))
>> + tst_brk(TCONF, "Need %s(%d)", cap->name, cap->id);
>> +
>> + if (!(*effective & mask)) {
>> + tst_res(TINFO, "Permitting %s(%d)", cap->name, cap->id);
>> + *effective |= mask;
>> + }
>> +}
>> +
>> +/**
>> + * Add, check or remove capabilities
>> + *
>> + * Takes a NULL terminated array of structs which describe whether some
>> + * capabilities are needed or not.
>> + *
>> + * It will attempt to drop or add capabilities to the effective set. It will
>> + * try to detect if this is needed and whether it can or can't be done. If it
>> + * clearly can not add a privilege to the effective set then it will return
>> + * TCONF. However it may fail for some other reason and return TBROK.
>> + *
>> + * This only tries to change the effective set. Some tests may need to change
>> + * the inheritable and ambient sets, so that child processes retain some
>> + * capability.
>> + */
>> +void tst_cap_action(struct tst_cap *cap)
>> +{
>> + struct tst_cap_user_header hdr = {
>> + .version = 0x20080522,
>> + .pid = tst_syscall(__NR_gettid),
>> + };
>> + struct tst_cap_user_data cur[2] = { {0} };
>> + struct tst_cap_user_data new[2] = { {0} };
>> + uint32_t act = cap->action;
>> + uint32_t *pE = &new[CAP_TO_INDEX(cap->id)].effective;
>> + uint32_t *pP = &new[CAP_TO_INDEX(cap->id)].permitted;
>> + uint32_t mask = CAP_TO_MASK(cap->id);
>> +
>> + if (tst_capget(&hdr, cur))
>> + tst_brk(TBROK | TTERRNO, "tst_capget()");
>> +
>> + memcpy(new, cur, sizeof(new));
>> +
>> + switch (act) {
>> + case TST_CAP_DROP:
>> + do_cap_drop(pE, mask, cap);
>> + break;
>> + case TST_CAP_REQ:
>> + do_cap_req(pP, pE, mask, cap);
>> + break;
>> + default:
>> + tst_brk(TBROK, "Unrecognised action %d", cap->action);
>> + }
>> +
>> + if (memcmp(cur, new, sizeof(new)) && tst_capset(&hdr, new))
>> + tst_brk(TBROK | TERRNO, "tst_capset(%s)", cap->name);
>
> This is a bit ugly I would prefer:
>
> if (!memcmp(cur, new, sizeof(new))
> return;
>
> if (tst_capset(&hdr, new))
> tst_brk(...);
>
OK
Thanks a bunch!
--
Thank you,
Richard.
More information about the ltp
mailing list