License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-12-02 18:42:18 +08:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <sched.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <linux/limits.h>
|
|
|
|
#include <stdio.h>
|
2018-06-04 06:59:43 +08:00
|
|
|
#include <stdlib.h>
|
2016-12-02 18:42:18 +08:00
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <ftw.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "cgroup_helpers.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* To avoid relying on the system setup, when setup_cgroup_env is called
|
|
|
|
* we create a new mount namespace, and cgroup namespace. The cgroup2
|
|
|
|
* root is mounted at CGROUP_MOUNT_PATH
|
|
|
|
*
|
|
|
|
* Unfortunately, most people don't have cgroupv2 enabled at this point in time.
|
|
|
|
* It's easier to create our own mount namespace and manage it ourselves.
|
|
|
|
*
|
|
|
|
* We assume /mnt exists.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define WALK_FD_LIMIT 16
|
|
|
|
#define CGROUP_MOUNT_PATH "/mnt"
|
|
|
|
#define CGROUP_WORK_DIR "/cgroup-test-work-dir"
|
|
|
|
#define format_cgroup_path(buf, path) \
|
|
|
|
snprintf(buf, sizeof(buf), "%s%s%s", CGROUP_MOUNT_PATH, \
|
|
|
|
CGROUP_WORK_DIR, path)
|
|
|
|
|
2019-05-26 00:37:41 +08:00
|
|
|
/**
|
|
|
|
* enable_all_controllers() - Enable all available cgroup v2 controllers
|
|
|
|
*
|
|
|
|
* Enable all available cgroup v2 controllers in order to increase
|
|
|
|
* the code coverage.
|
|
|
|
*
|
|
|
|
* If successful, 0 is returned.
|
|
|
|
*/
|
2019-10-02 20:04:03 +08:00
|
|
|
static int enable_all_controllers(char *cgroup_path)
|
2019-05-26 00:37:41 +08:00
|
|
|
{
|
|
|
|
char path[PATH_MAX + 1];
|
|
|
|
char buf[PATH_MAX];
|
|
|
|
char *c, *c2;
|
|
|
|
int fd, cfd;
|
2019-06-13 15:00:21 +08:00
|
|
|
ssize_t len;
|
2019-05-26 00:37:41 +08:00
|
|
|
|
|
|
|
snprintf(path, sizeof(path), "%s/cgroup.controllers", cgroup_path);
|
|
|
|
fd = open(path, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
log_err("Opening cgroup.controllers: %s", path);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = read(fd, buf, sizeof(buf) - 1);
|
|
|
|
if (len < 0) {
|
|
|
|
close(fd);
|
|
|
|
log_err("Reading cgroup.controllers: %s", path);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
buf[len] = 0;
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
/* No controllers available? We're probably on cgroup v1. */
|
|
|
|
if (len == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
snprintf(path, sizeof(path), "%s/cgroup.subtree_control", cgroup_path);
|
|
|
|
cfd = open(path, O_RDWR);
|
|
|
|
if (cfd < 0) {
|
|
|
|
log_err("Opening cgroup.subtree_control: %s", path);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (c = strtok_r(buf, " ", &c2); c; c = strtok_r(NULL, " ", &c2)) {
|
|
|
|
if (dprintf(cfd, "+%s\n", c) <= 0) {
|
|
|
|
log_err("Enabling controller %s: %s", c, path);
|
|
|
|
close(cfd);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(cfd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-12-02 18:42:18 +08:00
|
|
|
/**
|
|
|
|
* setup_cgroup_environment() - Setup the cgroup environment
|
|
|
|
*
|
|
|
|
* After calling this function, cleanup_cgroup_environment should be called
|
|
|
|
* once testing is complete.
|
|
|
|
*
|
|
|
|
* This function will print an error to stderr and return 1 if it is unable
|
|
|
|
* to setup the cgroup environment. If setup is successful, 0 is returned.
|
|
|
|
*/
|
|
|
|
int setup_cgroup_environment(void)
|
|
|
|
{
|
selftests/bpf: Correct path to include msg + path
The "path" buf is supposed to contain path + printf msg up to 24 bytes.
It will be cut anyway, but compiler generates truncation warns like:
"
samples/bpf/../../tools/testing/selftests/bpf/cgroup_helpers.c: In
function ‘setup_cgroup_environment’:
samples/bpf/../../tools/testing/selftests/bpf/cgroup_helpers.c:52:34:
warning: ‘/cgroup.controllers’ directive output may be truncated
writing 19 bytes into a region of size between 1 and 4097
[-Wformat-truncation=]
snprintf(path, sizeof(path), "%s/cgroup.controllers", cgroup_path);
^~~~~~~~~~~~~~~~~~~
samples/bpf/../../tools/testing/selftests/bpf/cgroup_helpers.c:52:2:
note: ‘snprintf’ output between 20 and 4116 bytes into a destination
of size 4097
snprintf(path, sizeof(path), "%s/cgroup.controllers", cgroup_path);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
samples/bpf/../../tools/testing/selftests/bpf/cgroup_helpers.c:72:34:
warning: ‘/cgroup.subtree_control’ directive output may be truncated
writing 23 bytes into a region of size between 1 and 4097
[-Wformat-truncation=]
snprintf(path, sizeof(path), "%s/cgroup.subtree_control",
^~~~~~~~~~~~~~~~~~~~~~~
cgroup_path);
samples/bpf/../../tools/testing/selftests/bpf/cgroup_helpers.c:72:2:
note: ‘snprintf’ output between 24 and 4120 bytes into a destination
of size 4097
snprintf(path, sizeof(path), "%s/cgroup.subtree_control",
cgroup_path);
"
In order to avoid warns, lets decrease buf size for cgroup workdir on
24 bytes with assumption to include also "/cgroup.subtree_control" to
the address. The cut will never happen anyway.
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Song Liu <songliubraving@fb.com>
Link: https://lore.kernel.org/bpf/20191002120404.26962-3-ivan.khoronzhuk@linaro.org
2019-10-02 20:04:04 +08:00
|
|
|
char cgroup_workdir[PATH_MAX - 24];
|
2016-12-02 18:42:18 +08:00
|
|
|
|
|
|
|
format_cgroup_path(cgroup_workdir, "");
|
|
|
|
|
|
|
|
if (unshare(CLONE_NEWNS)) {
|
|
|
|
log_err("unshare");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mount("none", "/", NULL, MS_REC | MS_PRIVATE, NULL)) {
|
|
|
|
log_err("mount fakeroot");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
samples/bpf: add multi-prog cgroup test case
create 5 cgroups, attach 6 progs and check that progs are executed as:
cgrp1 (MULTI progs A, B) ->
cgrp2 (OVERRIDE prog C) ->
cgrp3 (MULTI prog D) ->
cgrp4 (OVERRIDE prog E) ->
cgrp5 (NONE prog F)
the event in cgrp5 triggers execution of F,D,A,B in that order.
if prog F is detached, the execution is E,D,A,B
if prog F and D are detached, the execution is E,A,B
if prog F, E and D are detached, the execution is C,A,B
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-10-03 13:50:25 +08:00
|
|
|
if (mount("none", CGROUP_MOUNT_PATH, "cgroup2", 0, NULL) && errno != EBUSY) {
|
2016-12-02 18:42:18 +08:00
|
|
|
log_err("mount cgroup2");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cleanup existing failed runs, now that the environment is setup */
|
|
|
|
cleanup_cgroup_environment();
|
|
|
|
|
|
|
|
if (mkdir(cgroup_workdir, 0777) && errno != EEXIST) {
|
|
|
|
log_err("mkdir cgroup work dir");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-05-26 00:37:41 +08:00
|
|
|
if (enable_all_controllers(cgroup_workdir))
|
|
|
|
return 1;
|
|
|
|
|
2016-12-02 18:42:18 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nftwfunc(const char *filename, const struct stat *statptr,
|
|
|
|
int fileflags, struct FTW *pfwt)
|
|
|
|
{
|
|
|
|
if ((fileflags & FTW_D) && rmdir(filename))
|
|
|
|
log_err("Removing cgroup: %s", filename);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int join_cgroup_from_top(char *cgroup_path)
|
|
|
|
{
|
|
|
|
char cgroup_procs_path[PATH_MAX + 1];
|
|
|
|
pid_t pid = getpid();
|
|
|
|
int fd, rc = 0;
|
|
|
|
|
|
|
|
snprintf(cgroup_procs_path, sizeof(cgroup_procs_path),
|
|
|
|
"%s/cgroup.procs", cgroup_path);
|
|
|
|
|
|
|
|
fd = open(cgroup_procs_path, O_WRONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
log_err("Opening Cgroup Procs: %s", cgroup_procs_path);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dprintf(fd, "%d\n", pid) < 0) {
|
|
|
|
log_err("Joining Cgroup");
|
|
|
|
rc = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* join_cgroup() - Join a cgroup
|
|
|
|
* @path: The cgroup path, relative to the workdir, to join
|
|
|
|
*
|
|
|
|
* This function expects a cgroup to already be created, relative to the cgroup
|
|
|
|
* work dir, and it joins it. For example, passing "/my-cgroup" as the path
|
|
|
|
* would actually put the calling process into the cgroup
|
|
|
|
* "/cgroup-test-work-dir/my-cgroup"
|
|
|
|
*
|
|
|
|
* On success, it returns 0, otherwise on failure it returns 1.
|
|
|
|
*/
|
2018-07-12 08:33:34 +08:00
|
|
|
int join_cgroup(const char *path)
|
2016-12-02 18:42:18 +08:00
|
|
|
{
|
|
|
|
char cgroup_path[PATH_MAX + 1];
|
|
|
|
|
|
|
|
format_cgroup_path(cgroup_path, path);
|
|
|
|
return join_cgroup_from_top(cgroup_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cleanup_cgroup_environment() - Cleanup Cgroup Testing Environment
|
|
|
|
*
|
|
|
|
* This is an idempotent function to delete all temporary cgroups that
|
|
|
|
* have been created during the test, including the cgroup testing work
|
|
|
|
* directory.
|
|
|
|
*
|
|
|
|
* At call time, it moves the calling process to the root cgroup, and then
|
|
|
|
* runs the deletion process. It is idempotent, and should not fail, unless
|
|
|
|
* a process is lingering.
|
|
|
|
*
|
|
|
|
* On failure, it will print an error to stderr, and try to continue.
|
|
|
|
*/
|
|
|
|
void cleanup_cgroup_environment(void)
|
|
|
|
{
|
|
|
|
char cgroup_workdir[PATH_MAX + 1];
|
|
|
|
|
|
|
|
format_cgroup_path(cgroup_workdir, "");
|
|
|
|
join_cgroup_from_top(CGROUP_MOUNT_PATH);
|
|
|
|
nftw(cgroup_workdir, nftwfunc, WALK_FD_LIMIT, FTW_DEPTH | FTW_MOUNT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* create_and_get_cgroup() - Create a cgroup, relative to workdir, and get the FD
|
|
|
|
* @path: The cgroup path, relative to the workdir, to join
|
|
|
|
*
|
|
|
|
* This function creates a cgroup under the top level workdir and returns the
|
|
|
|
* file descriptor. It is idempotent.
|
|
|
|
*
|
2019-01-08 01:46:46 +08:00
|
|
|
* On success, it returns the file descriptor. On failure it returns -1.
|
2016-12-02 18:42:18 +08:00
|
|
|
* If there is a failure, it prints the error to stderr.
|
|
|
|
*/
|
2018-07-12 08:33:34 +08:00
|
|
|
int create_and_get_cgroup(const char *path)
|
2016-12-02 18:42:18 +08:00
|
|
|
{
|
|
|
|
char cgroup_path[PATH_MAX + 1];
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
format_cgroup_path(cgroup_path, path);
|
|
|
|
if (mkdir(cgroup_path, 0777) && errno != EEXIST) {
|
samples/bpf: add multi-prog cgroup test case
create 5 cgroups, attach 6 progs and check that progs are executed as:
cgrp1 (MULTI progs A, B) ->
cgrp2 (OVERRIDE prog C) ->
cgrp3 (MULTI prog D) ->
cgrp4 (OVERRIDE prog E) ->
cgrp5 (NONE prog F)
the event in cgrp5 triggers execution of F,D,A,B in that order.
if prog F is detached, the execution is E,D,A,B
if prog F and D are detached, the execution is E,A,B
if prog F, E and D are detached, the execution is C,A,B
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-10-03 13:50:25 +08:00
|
|
|
log_err("mkdiring cgroup %s .. %s", path, cgroup_path);
|
2019-01-08 01:46:46 +08:00
|
|
|
return -1;
|
2016-12-02 18:42:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fd = open(cgroup_path, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
log_err("Opening Cgroup");
|
2019-01-08 01:46:46 +08:00
|
|
|
return -1;
|
2016-12-02 18:42:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
2018-06-04 06:59:43 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get_cgroup_id() - Get cgroup id for a particular cgroup path
|
|
|
|
* @path: The cgroup path, relative to the workdir, to join
|
|
|
|
*
|
|
|
|
* On success, it returns the cgroup id. On failure it returns 0,
|
|
|
|
* which is an invalid cgroup id.
|
|
|
|
* If there is a failure, it prints the error to stderr.
|
|
|
|
*/
|
2018-07-12 08:33:34 +08:00
|
|
|
unsigned long long get_cgroup_id(const char *path)
|
2018-06-04 06:59:43 +08:00
|
|
|
{
|
|
|
|
int dirfd, err, flags, mount_id, fhsize;
|
|
|
|
union {
|
|
|
|
unsigned long long cgid;
|
|
|
|
unsigned char raw_bytes[8];
|
|
|
|
} id;
|
|
|
|
char cgroup_workdir[PATH_MAX + 1];
|
|
|
|
struct file_handle *fhp, *fhp2;
|
|
|
|
unsigned long long ret = 0;
|
|
|
|
|
|
|
|
format_cgroup_path(cgroup_workdir, path);
|
|
|
|
|
|
|
|
dirfd = AT_FDCWD;
|
|
|
|
flags = 0;
|
|
|
|
fhsize = sizeof(*fhp);
|
|
|
|
fhp = calloc(1, fhsize);
|
|
|
|
if (!fhp) {
|
|
|
|
log_err("calloc");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
err = name_to_handle_at(dirfd, cgroup_workdir, fhp, &mount_id, flags);
|
|
|
|
if (err >= 0 || fhp->handle_bytes != 8) {
|
|
|
|
log_err("name_to_handle_at");
|
|
|
|
goto free_mem;
|
|
|
|
}
|
|
|
|
|
|
|
|
fhsize = sizeof(struct file_handle) + fhp->handle_bytes;
|
|
|
|
fhp2 = realloc(fhp, fhsize);
|
|
|
|
if (!fhp2) {
|
|
|
|
log_err("realloc");
|
|
|
|
goto free_mem;
|
|
|
|
}
|
|
|
|
err = name_to_handle_at(dirfd, cgroup_workdir, fhp2, &mount_id, flags);
|
|
|
|
fhp = fhp2;
|
|
|
|
if (err < 0) {
|
|
|
|
log_err("name_to_handle_at");
|
|
|
|
goto free_mem;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(id.raw_bytes, fhp->f_handle, 8);
|
|
|
|
ret = id.cgid;
|
|
|
|
|
|
|
|
free_mem:
|
|
|
|
free(fhp);
|
|
|
|
return ret;
|
|
|
|
}
|
2020-08-01 06:09:14 +08:00
|
|
|
|
|
|
|
int cgroup_setup_and_join(const char *path) {
|
|
|
|
int cg_fd;
|
|
|
|
|
|
|
|
if (setup_cgroup_environment()) {
|
|
|
|
fprintf(stderr, "Failed to setup cgroup environment\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cg_fd = create_and_get_cgroup(path);
|
|
|
|
if (cg_fd < 0) {
|
|
|
|
fprintf(stderr, "Failed to create test cgroup\n");
|
|
|
|
cleanup_cgroup_environment();
|
|
|
|
return cg_fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (join_cgroup(path)) {
|
|
|
|
fprintf(stderr, "Failed to join cgroup\n");
|
|
|
|
cleanup_cgroup_environment();
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return cg_fd;
|
|
|
|
}
|