Compare commits
4 Commits
e063993af0
...
dc9c833ad9
Author | SHA1 | Date |
---|---|---|
Mike Yuan | dc9c833ad9 | |
Daan De Meyer | 0e44a351ea | |
Mike Yuan | da80af70d2 | |
Mike Yuan | 62d6972874 |
10
mkosi.clangd
10
mkosi.clangd
|
@ -1,12 +1,18 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||||
|
|
||||||
MKOSI_CONFIG="$(mkosi --json summary | jq -r .Images[-1])"
|
if command -v flatpak-spawn >/dev/null; then
|
||||||
|
SPAWN=(flatpak-spawn --host)
|
||||||
|
else
|
||||||
|
SPAWN=()
|
||||||
|
fi
|
||||||
|
|
||||||
|
MKOSI_CONFIG="$("${SPAWN[@]}" --host mkosi --json summary | jq -r .Images[-1])"
|
||||||
DISTRIBUTION="$(jq -r .Distribution <<< "$MKOSI_CONFIG")"
|
DISTRIBUTION="$(jq -r .Distribution <<< "$MKOSI_CONFIG")"
|
||||||
RELEASE="$(jq -r .Release <<< "$MKOSI_CONFIG")"
|
RELEASE="$(jq -r .Release <<< "$MKOSI_CONFIG")"
|
||||||
ARCH="$(jq -r .Architecture <<< "$MKOSI_CONFIG")"
|
ARCH="$(jq -r .Architecture <<< "$MKOSI_CONFIG")"
|
||||||
|
|
||||||
exec mkosi \
|
exec "${SPAWN[@]}" mkosi \
|
||||||
--incremental=strict \
|
--incremental=strict \
|
||||||
--build-sources-ephemeral=no \
|
--build-sources-ephemeral=no \
|
||||||
--format=none \
|
--format=none \
|
||||||
|
|
|
@ -467,9 +467,12 @@ char* gid_to_name(gid_t gid) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool gid_list_has(const gid_t *list, size_t size, gid_t val) {
|
static bool gid_list_has(const gid_t *list, size_t size, gid_t val) {
|
||||||
for (size_t i = 0; i < size; i++)
|
assert(list || size == 0);
|
||||||
if (list[i] == val)
|
|
||||||
|
FOREACH_ARRAY(i, list, size)
|
||||||
|
if (*i == val)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -526,20 +529,24 @@ int merge_gid_lists(const gid_t *list1, size_t size1, const gid_t *list2, size_t
|
||||||
return (int)nresult;
|
return (int)nresult;
|
||||||
}
|
}
|
||||||
|
|
||||||
int getgroups_alloc(gid_t** gids) {
|
int getgroups_alloc(gid_t **ret) {
|
||||||
gid_t *allocated;
|
|
||||||
_cleanup_free_ gid_t *p = NULL;
|
|
||||||
int ngroups = 8;
|
int ngroups = 8;
|
||||||
unsigned attempt = 0;
|
|
||||||
|
|
||||||
allocated = new(gid_t, ngroups);
|
assert(ret);
|
||||||
if (!allocated)
|
|
||||||
return -ENOMEM;
|
for (unsigned attempt = 0;;) {
|
||||||
p = allocated;
|
_cleanup_free_ gid_t *p = NULL;
|
||||||
|
|
||||||
|
p = new(gid_t, ngroups);
|
||||||
|
if (!p)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
for (;;) {
|
|
||||||
ngroups = getgroups(ngroups, p);
|
ngroups = getgroups(ngroups, p);
|
||||||
if (ngroups >= 0)
|
if (ngroups > 0) {
|
||||||
|
*ret = TAKE_PTR(p);
|
||||||
|
return ngroups;
|
||||||
|
}
|
||||||
|
if (ngroups == 0)
|
||||||
break;
|
break;
|
||||||
if (errno != EINVAL)
|
if (errno != EINVAL)
|
||||||
return -errno;
|
return -errno;
|
||||||
|
@ -554,17 +561,11 @@ int getgroups_alloc(gid_t** gids) {
|
||||||
if (ngroups < 0)
|
if (ngroups < 0)
|
||||||
return -errno;
|
return -errno;
|
||||||
if (ngroups == 0)
|
if (ngroups == 0)
|
||||||
return false;
|
break;
|
||||||
|
|
||||||
free(allocated);
|
|
||||||
|
|
||||||
p = allocated = new(gid_t, ngroups);
|
|
||||||
if (!allocated)
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
*gids = TAKE_PTR(p);
|
*ret = NULL;
|
||||||
return ngroups;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int get_home_dir(char **ret) {
|
int get_home_dir(char **ret) {
|
||||||
|
|
|
@ -64,7 +64,7 @@ int in_gid(gid_t gid);
|
||||||
int in_group(const char *name);
|
int in_group(const char *name);
|
||||||
|
|
||||||
int merge_gid_lists(const gid_t *list1, size_t size1, const gid_t *list2, size_t size2, gid_t **result);
|
int merge_gid_lists(const gid_t *list1, size_t size1, const gid_t *list2, size_t size2, gid_t **result);
|
||||||
int getgroups_alloc(gid_t** gids);
|
int getgroups_alloc(gid_t **ret);
|
||||||
|
|
||||||
int get_home_dir(char **ret);
|
int get_home_dir(char **ret);
|
||||||
int get_shell(char **ret);
|
int get_shell(char **ret);
|
||||||
|
|
|
@ -444,9 +444,8 @@ TEST(gid_lists_ops) {
|
||||||
assert_se(nresult >= 0);
|
assert_se(nresult >= 0);
|
||||||
assert_se(memcmp_nn(result2, ELEMENTSOF(result2), res4, nresult) == 0);
|
assert_se(memcmp_nn(result2, ELEMENTSOF(result2), res4, nresult) == 0);
|
||||||
|
|
||||||
nresult = getgroups_alloc(&gids);
|
ASSERT_OK(nresult = getgroups_alloc(&gids));
|
||||||
assert_se(nresult >= 0 || nresult == -EINVAL || nresult == -ENOMEM);
|
assert_se(gids || nresult == 0);
|
||||||
assert_se(gids);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(parse_uid_range) {
|
TEST(parse_uid_range) {
|
||||||
|
|
Loading…
Reference in New Issue