update to 4.0.5

Signed-off-by: wangkang101 <873229877@qq.com>
This commit is contained in:
wangkang101 2020-08-28 15:17:28 +08:00
parent 05aa9189b2
commit c4b0d62eb5
41 changed files with 965 additions and 2603 deletions

View File

@ -1,18 +0,0 @@
diff --git a/config/init/systemd/lxcfs.service b/config/init/systemd/lxcfs.service
index 95e3ee9..0995607 100644
--- a/config/init/systemd/lxcfs.service
+++ b/config/init/systemd/lxcfs.service
@@ -5,10 +5,11 @@ Before=lxc.service
Documentation=man:lxcfs(1)
[Service]
-ExecStart=/usr/bin/lxcfs /var/lib/lxcfs/
+ExecStart=/usr/bin/lxcfs /var/lib/lxc/lxcfs/
+ExecStartPost=/usr/local/bin/lxcfs-tools remount -a
KillMode=process
Restart=on-failure
-ExecStopPost=-/bin/fusermount -u /var/lib/lxcfs
+ExecStopPost=-/bin/fusermount -u /var/lib/lxc/
Delegate=yes
[Install]

24
0001-systemd.patch Normal file
View File

@ -0,0 +1,24 @@
diff --git a/config/init/systemd/lxcfs.service.in b/config/init/systemd/lxcfs.service.in
index 9cd4e59..2421a54 100644
--- a/config/init/systemd/lxcfs.service.in
+++ b/config/init/systemd/lxcfs.service.in
@@ -5,12 +5,16 @@ Before=lxc.service
Documentation=man:lxcfs(1)
[Service]
-ExecStart=/usr/bin/lxcfs @LXCFSTARGETDIR@
+ExecStartPre=/usr/local/bin/lxcfs-tools prestart
+ExecStart=/usr/bin/lxcfs /var/lib/lxc/lxcfs/
+ExecStartPost=/usr/local/bin/lxcfs-tools remount -a
KillMode=process
-Restart=on-failure
-ExecStopPost=-/bin/fusermount -u @LXCFSTARGETDIR@
+ExecStop=/usr/local/bin/lxcfs-tools umount -a
+ExecStopPost=--/bin/fusermount -u /var/lib/lxc/
Delegate=yes
ExecReload=/bin/kill -USR1 $MAINPID
+Restart=always
+RestartSec=2s
[Install]
WantedBy=multi-user.target

View File

@ -1,10 +0,0 @@
--- a/config/init/systemd/lxcfs.service
+++ b/config/init/systemd/lxcfs.service
@@ -5,6 +5,7 @@ Before=lxc.service
Documentation=man:lxcfs(1)
[Service]
+ExecStartPre=/usr/local/bin/lxcfs-tools prestart
ExecStart=/usr/bin/lxcfs /var/lib/lxc/lxcfs/
ExecStartPost=/usr/local/bin/lxcfs-tools remount -a
KillMode=process

View File

@ -0,0 +1,20 @@
diff --git a/config/init/Makefile.am b/config/init/Makefile.am
index e2ffe28..3439c97 100644
--- a/config/init/Makefile.am
+++ b/config/init/Makefile.am
@@ -1 +1 @@
-SUBDIRS = systemd sysvinit upstart
+SUBDIRS = systemd
diff --git a/configure.ac b/configure.ac
index 3dc4571..5653dfd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -44,8 +44,6 @@ AC_CONFIG_FILES([
config/init/Makefile
config/init/systemd/Makefile
config/init/systemd/lxcfs.service
- config/init/sysvinit/Makefile
- config/init/upstart/Makefile
doc/Makefile

View File

@ -1,30 +0,0 @@
diff -uprN a/config/init/Makefile.am b/config/init/Makefile.am
--- a/config/init/Makefile.am 2018-01-22 17:06:23.591442076 +0800
+++ b/config/init/Makefile.am 2018-01-22 17:06:55.035440266 +0800
@@ -1 +1 @@
-SUBDIRS = systemd sysvinit upstart
+SUBDIRS = systemd
diff -uprN a/config/init/Makefile.in b/config/init/Makefile.in
--- a/config/init/Makefile.in 2018-01-22 17:06:23.590442076 +0800
+++ b/config/init/Makefile.in 2018-01-22 17:07:15.005439117 +0800
@@ -311,7 +311,7 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
-SUBDIRS = systemd sysvinit upstart
+SUBDIRS = systemd
all: all-recursive
.SUFFIXES:
diff -uprN a/configure.ac b/configure.ac
--- a/configure.ac 2018-01-22 17:06:23.587442076 +0800
+++ b/configure.ac 2018-01-22 17:08:33.111434622 +0800
@@ -14,8 +14,6 @@ AC_CONFIG_FILES([
config/Makefile
config/init/Makefile
config/init/systemd/Makefile
- config/init/sysvinit/Makefile
- config/init/upstart/Makefile
share/Makefile
share/00-lxcfs.conf
share/lxc.mount.hook

View File

@ -1,21 +1,29 @@
diff --git a/bindings.c b/bindings.c
index 6387012..91de9f9 100644
--- a/bindings.c
+++ b/bindings.c
@@ -3743,12 +3743,136 @@ static int proc_uptime_read(char *buf, size_t size, off_t offset,
return total_len;
diff --git a/src/proc_fuse.c b/src/proc_fuse.c
index a99162c..b4f4129 100644
--- a/src/proc_fuse.c
+++ b/src/proc_fuse.c
@@ -37,6 +37,7 @@
#include <sys/socket.h>
#include <sys/syscall.h>
#include <sys/sysinfo.h>
+#include <sys/sysmacros.h>
#include <sys/vfs.h>
#include "bindings.h"
@@ -374,6 +375,132 @@ static void get_blkio_io_value(char *str, unsigned major, unsigned minor,
}
}
+struct devinfo {
+ char name[100];
+ char *name;
+ int major, minor;
+ struct devinfo *next;
+};
+
+int getns(pid_t pid, char *ns_type)
+int getns(pid_t pid, const char *ns_type)
+{
+ char fpath[100];
+ memset(fpath, 0, sizeof(fpath));
+ memset(fpath, 0, sizeof(fpath));
+ snprintf(fpath, 99, "/proc/%d/ns/%s", pid, ns_type);
+ return open(fpath, O_RDONLY);
+}
@ -49,42 +57,42 @@ index 6387012..91de9f9 100644
+ stream = fdopen(mypipe[1], "w");
+ if (stream == NULL) {
+ lxcfs_error("Error opening pipe for writing: %s\n", strerror(errno));
+ goto child_out;
+ goto child_out;
+ }
+ nsfd = getns(pid, "mnt");
+ if (nsfd < 0) {
+ lxcfs_error("Error getting mnt ns: %s\n", strerror(errno));
+ goto child_out;
+ goto child_out;
+ }
+ if (setns(nsfd, 0) < 0) {
+ lxcfs_error("Error setting mnt ns: %s\n", strerror(errno));
+ goto child_out;
+ goto child_out;
+ }
+ dir = opendir("/dev");
+ if (dir == NULL) {
+ lxcfs_error("Error opening dir /dev: %s\n", strerror(errno));
+ goto child_out;
+ goto child_out;
+ }
+ while ((ptr = readdir(dir)) != NULL) {
+ if (ptr->d_type != DT_BLK && ptr->d_type != DT_CHR) {
+ continue;
+ }
+ memset(fpath, 0, sizeof(fpath));
+ memset(fpath, 0, sizeof(fpath));
+ snprintf(fpath, 99, "/dev/%s", ptr->d_name);
+ stat(fpath, &dev_stat);
+ fprintf(stream, "%s %d ", ptr->d_name, dev_stat.st_rdev);
+ fflush(stream);
+ }
+ closedir(dir);
+ closedir(dir);
+ stat("/", &dev_stat);
+ dev_num = dev_stat.st_dev & (~0xf);
+ fprintf(stream, "sda %d end 0 ", dev_num);
+ fflush(stream);
+child_out:
+ fclose(stream);
+ fclose(stream);
+ exit(0);
+ }
+
+child_out:
+ close(mypipe[1]);
+ stream = fdopen(mypipe[0], "r");
+ if (stream == NULL) {
@ -96,20 +104,20 @@ index 6387012..91de9f9 100644
+ break;
+ }
+ if (head == NULL) {
+ do {
+ head = (struct devinfo*)malloc(sizeof(struct devinfo));
+ } while (!head);
+ do {
+ head = (struct devinfo*)malloc(sizeof(struct devinfo));
+ } while (!head);
+ end = head;
+ } else {
+ do {
+ end->next = (struct devinfo*)malloc(sizeof(struct devinfo));
+ } while (!end->next);
+ do {
+ end->next = (struct devinfo*)malloc(sizeof(struct devinfo));
+ } while (!end->next);
+ end = end->next;
+ }
+ end->next = NULL;
+ strncpy(end->name, dev_name, 100);
+ end->major = (dev_num & 0xff00) >> 8;
+ end->minor = dev_num & 0x00ff;
+ end->name = must_copy_string(dev_name);
+ end->major = major(dev_num);
+ end->minor = minor(dev_num);
+ }
+err:
+ if (stream)
@ -125,23 +133,27 @@ index 6387012..91de9f9 100644
+ while (ptr != NULL) {
+ tmp = ptr;
+ ptr = ptr->next;
+ free(tmp->name);
+ tmp->name = NULL;
+ free(tmp);
+ tmp = NULL;
+ }
+}
+
static int proc_diskstats_read(char *buf, size_t size, off_t offset,
struct fuse_file_info *fi)
struct fuse_file_info *fi)
{
char dev_name[72];
@@ -385,6 +512,7 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
__do_fclose FILE *f = NULL;
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
+ struct devinfo *container_devinfo = NULL, *ptr;
char *cg;
char *io_serviced_str = NULL, *io_merged_str = NULL, *io_service_bytes_str = NULL,
*io_wait_time_str = NULL, *io_service_time_str = NULL;
@@ -3801,13 +3925,21 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
struct file_info *d = INTTYPE_TO_PTR(fi->fh);
+ struct devinfo *container_devinfo = NULL, *ptr = NULL;
uint64_t read = 0, write = 0;
uint64_t read_merged = 0, write_merged = 0;
uint64_t read_sectors = 0, write_sectors = 0;
@@ -458,13 +586,22 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
if (!f)
goto err;
return 0;
+ container_devinfo = container_dev_read(initpid);
+
@ -155,17 +167,27 @@ index 6387012..91de9f9 100644
continue;
+ for (ptr = container_devinfo; ptr != NULL; ptr = ptr->next) {
+ if (major == ptr->major && minor == ptr->minor) {
+ strncpy(dev_name, ptr->name, 71);
+ snprintf(dev_name, sizeof(dev_name), "%s", ptr->name);
+ dev_name[71] = '\0';
+ }
+ }
get_blkio_io_value(io_serviced_str, major, minor, "Read", &read);
get_blkio_io_value(io_serviced_str, major, minor, "Write", &write);
@@ -3873,6 +4005,7 @@ err:
free(io_service_bytes_str);
free(io_wait_time_str);
free(io_service_time_str);
+ free_devinfo_list(container_devinfo);
return rv;
}
@@ -499,10 +636,14 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
continue;
l = snprintf(cache, cache_size, "%s", lbuf);
- if (l < 0)
+ if (l < 0) {
+ free_devinfo_list(container_devinfo);
return log_error(0, "Failed to write cache");
- if (l >= cache_size)
+ }
+ if (l >= cache_size) {
+ free_devinfo_list(container_devinfo);
return log_error(0, "Write to cache was truncated");
+ }
cache += l;
cache_size -= l;

View File

@ -1,7 +1,8 @@
diff -uprN a/bindings.c b/bindings.c
--- a/bindings.c 2018-08-16 09:36:58.751107328 +0800
+++ b/bindings.c 2018-08-16 10:02:12.719191680 +0800
@@ -3471,7 +3471,17 @@ static int proc_cpuinfo_read(char *buf,
diff --git a/src/proc_cpuview.c b/src/proc_cpuview.c
index 7d6c0bd..3311c27 100644
--- a/src/proc_cpuview.c
+++ b/src/proc_cpuview.c
@@ -952,7 +952,17 @@ int proc_cpuinfo_read(char *buf, size_t size, off_t offset,
}
if (am_printing) {
@ -17,7 +18,6 @@ diff -uprN a/bindings.c b/bindings.c
+ } else {
+ l = snprintf(cache, cache_size, "%s", line);
+ }
if (l < 0) {
perror("Error writing to cache");
rv = 0;
if (l < 0)
return log_error(0, "Failed to write cache");
if (l >= cache_size)

View File

@ -0,0 +1,42 @@
diff --git a/src/proc_fuse.c b/src/proc_fuse.c
index b4f4129..6b503d6 100644
--- a/src/proc_fuse.c
+++ b/src/proc_fuse.c
@@ -224,6 +224,8 @@ static uint64_t get_min_memlimit(const char *cgroup, bool swap)
return log_error_errno(0, ENOMEM, "Failed to allocate memory");
retlimit = get_memlimit(copy, swap);
+ if (retlimit == 0)
+ return retlimit;
while (strcmp(copy, "/") != 0) {
char *it = copy;
@@ -283,6 +285,8 @@ static int proc_swaps_read(char *buf, size_t size, off_t offset,
prune_init_slice(cgroup);
memlimit = get_min_memlimit(cgroup, false);
+ if (memlimit == 0)
+ return 0;
ret = cgroup_ops->get_memory_current(cgroup_ops, cgroup, &memusage_str);
if (ret < 0)
@@ -1209,6 +1213,8 @@ static int proc_meminfo_read(char *buf, size_t size, off_t offset,
return read_file_fuse("/proc/meminfo", buf, size, d);
memlimit = get_min_memlimit(cgroup, false);
+ if (memlimit == 0)
+ return 0;
/*
* Following values are allowed to fail, because swapaccount might be
@@ -1237,9 +1243,9 @@ static int proc_meminfo_read(char *buf, size_t size, off_t offset,
memusage /= 1024;
memlimit /= 1024;
+ char *printme, lbuf[100];
while (getline(&line, &linelen, f) != -1) {
ssize_t l;
- char *printme, lbuf[100];
memset(lbuf, 0, 100);
if (startswith(line, "MemTotal:")) {

View File

@ -0,0 +1,84 @@
diff --git a/src/cgroups/cgroup_utils.c b/src/cgroups/cgroup_utils.c
index 078f864..c21e7bc 100644
--- a/src/cgroups/cgroup_utils.c
+++ b/src/cgroups/cgroup_utils.c
@@ -521,23 +521,28 @@ static char *copy_to_eol(char *p)
return sret;
}
-static void batch_realloc(char **mem, size_t oldlen, size_t newlen)
+char *batch_realloc(char *mem, size_t oldlen, size_t newlen)
{
int newbatches = (newlen / BATCH_SIZE) + 1;
int oldbatches = (oldlen / BATCH_SIZE) + 1;
- if (!*mem || newbatches > oldbatches) {
- *mem = must_realloc(*mem, newbatches * BATCH_SIZE);
+ if (!mem || newbatches > oldbatches) {
+ char *tmp;
+ tmp = must_realloc(mem, newbatches * BATCH_SIZE);
+ return tmp;
}
+ return mem;
}
-void append_line(char **dest, size_t oldlen, char *new, size_t newlen)
+char *append_line(char *dest, size_t oldlen, char *new, size_t newlen)
{
+ char *tmp;
size_t full = oldlen + newlen;
- batch_realloc(dest, oldlen, full + 1);
+ tmp = batch_realloc(dest, oldlen, full + 1);
- memcpy(*dest + oldlen, new, newlen + 1);
+ memcpy(tmp + oldlen, new, newlen + 1);
+ return tmp;
}
static inline void drop_trailing_newlines(char *s)
@@ -561,7 +566,7 @@ char *read_file(const char *fnam)
if (!f)
return NULL;
while ((linelen = getline(&line, &len, f)) != -1) {
- append_line(&buf, fulllen, line, linelen);
+ buf = append_line(buf, fulllen, line, linelen);
fulllen += linelen;
}
return buf;
@@ -691,7 +696,7 @@ char *readat_file(int dirfd, const char *path)
move_fd(fd);
while ((linelen = getline(&line, &len, f)) != -1) {
- append_line(&buf, fulllen, line, linelen);
+ buf = append_line(buf, fulllen, line, linelen);
fulllen += linelen;
}
diff --git a/src/cgroups/cgroup_utils.h b/src/cgroups/cgroup_utils.h
index d1f5639..a40bdf5 100644
--- a/src/cgroups/cgroup_utils.h
+++ b/src/cgroups/cgroup_utils.h
@@ -79,7 +79,7 @@ extern size_t strlcat(char *d, const char *s, size_t n);
#endif
extern FILE *fopen_cloexec(const char *path, const char *mode);
-extern void append_line(char **dest, size_t oldlen, char *new, size_t newlen);
+extern char *append_line(char *dest, size_t oldlen, char *new, size_t newlen);
extern char *read_file(const char *fnam);
extern char *readat_file(int fd, const char *path);
extern char *read_file_strip_newline(const char *fnam);
diff --git a/src/proc_fuse.c b/src/proc_fuse.c
index 6b503d6..334f6ea 100644
--- a/src/proc_fuse.c
+++ b/src/proc_fuse.c
@@ -1403,6 +1403,9 @@ __lxcfs_fuse_ops int proc_read(const char *path, char *buf, size_t size,
{
struct file_info *f = INTTYPE_TO_PTR(fi->fh);
+ if (!f->buf)
+ return -EINVAL;
+
switch (f->type) {
case LXC_TYPE_PROC_MEMINFO:
if (liblxcfs_functional())

View File

@ -1,11 +0,0 @@
diff -uprN a/bindings.c b/bindings.c
--- a/bindings.c 2018-08-17 04:12:24.000000000 +0800
+++ b/bindings.c 2018-11-21 11:45:56.120000000 +0800
@@ -1848,6 +1848,7 @@
free(f->buf);
f->buf = NULL;
free(f);
+ f = NULL;
}
int cg_releasedir(const char *path, struct fuse_file_info *fi)

View File

@ -1,338 +0,0 @@
diff --git a/../lxcfs-3.0.2/bindings.c b/bindings.c
index 713b7ea..c04993c 100644
--- a/../lxcfs-3.0.2/bindings.c
+++ b/bindings.c
@@ -351,7 +351,7 @@ static void append_line(char **contents, size_t *len, char *line, ssize_t linele
*len = newlen;
}
-static char *slurp_file(const char *from, int fd)
+static char *slurp_file(int fd)
{
char *line = NULL;
char *contents = NULL;
@@ -484,6 +484,7 @@ bool cgfs_set_value(const char *controller, const char *cgroup, const char *file
const char *value)
{
int ret, fd, cfd;
+ bool ret_bool;
size_t len;
char *fnam, *tmpc;
@@ -495,16 +496,25 @@ bool cgfs_set_value(const char *controller, const char *cgroup, const char *file
* . + /cgroup + / + file + \0
*/
len = strlen(cgroup) + strlen(file) + 3;
- fnam = alloca(len);
+ fnam = malloc(len);
+ if (!fnam) {
+ return false;
+ }
ret = snprintf(fnam, len, "%s%s/%s", *cgroup == '/' ? "." : "", cgroup, file);
- if (ret < 0 || (size_t)ret >= len)
+ if (ret < 0 || (size_t)ret >= len) {
+ free(fnam);
return false;
+ }
fd = openat(cfd, fnam, O_WRONLY);
- if (fd < 0)
+ if (fd < 0) {
+ free(fnam);
return false;
+ }
- return write_string(fnam, value, fd);
+ ret_bool = write_string(fnam, value, fd);
+ free(fnam);
+ return ret_bool;
}
// Chown all the files in the cgroup directory. We do this when we create
@@ -874,16 +884,26 @@ bool cgfs_get_value(const char *controller, const char *cgroup, const char *file
* . + /cgroup + / + file + \0
*/
len = strlen(cgroup) + strlen(file) + 3;
- fnam = alloca(len);
+ fnam = malloc(len);
+ if (!fnam) {
+ return false;
+ }
ret = snprintf(fnam, len, "%s%s/%s", *cgroup == '/' ? "." : "", cgroup, file);
- if (ret < 0 || (size_t)ret >= len)
+ if (ret < 0 || (size_t)ret >= len) {
+ free(fnam);
return false;
+ }
fd = openat(cfd, fnam, O_RDONLY);
- if (fd < 0)
+ if (fd < 0) {
+ free(fnam);
return false;
+ }
- *value = slurp_file(fnam, fd);
+ free(fnam);
+ store_lock();
+ *value = slurp_file(fd);
+ store_unlock();
return *value != NULL;
}
@@ -3067,7 +3087,7 @@ static int read_file(const char *path, char *buf, size_t size,
static unsigned long get_memlimit(const char *cgroup, const char *file)
{
char *memlimit_str = NULL;
- unsigned long memlimit = -1;
+ unsigned long memlimit = 0;
if (cgfs_get_value("memory", cgroup, file, &memlimit_str))
memlimit = strtoul(memlimit_str, NULL, 10);
@@ -3079,15 +3099,19 @@ static unsigned long get_memlimit(const char *cgroup, const char *file)
static unsigned long get_min_memlimit(const char *cgroup, const char *file)
{
- char *copy = strdupa(cgroup);
+ char copy[MAXPATHLEN];
+ strcpy(copy, cgroup);
unsigned long memlimit = 0, retlimit;
retlimit = get_memlimit(copy, file);
+ if (retlimit == 0) {
+ return retlimit;
+ }
while (strcmp(copy, "/") != 0) {
- copy = dirname(copy);
+ dirname(copy);
memlimit = get_memlimit(copy, file);
- if (memlimit != -1 && memlimit < retlimit)
+ if (memlimit != 0 && memlimit < retlimit)
retlimit = memlimit;
};
@@ -3100,8 +3124,7 @@ static int proc_meminfo_read(char *buf, size_t size, off_t offset,
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
char *cg;
- char *memusage_str = NULL, *memstat_str = NULL,
- *memswlimit_str = NULL, *memswusage_str = NULL;
+ char *memusage_str = NULL, *memstat_str = NULL, *memswusage_str = NULL;
unsigned long memlimit = 0, memusage = 0, memswlimit = 0, memswusage = 0,
cached = 0, hosttotal = 0, active_anon = 0, inactive_anon = 0,
active_file = 0, inactive_file = 0, unevictable = 0, shmem = 0,
@@ -3132,6 +3155,8 @@ static int proc_meminfo_read(char *buf, size_t size, off_t offset,
prune_init_slice(cg);
memlimit = get_min_memlimit(cg, "memory.limit_in_bytes");
+ if (memlimit == 0)
+ goto err;
if (!cgfs_get_value("memory", cg, "memory.usage_in_bytes", &memusage_str))
goto err;
if (!cgfs_get_value("memory", cg, "memory.stat", &memstat_str))
@@ -3139,8 +3164,7 @@ static int proc_meminfo_read(char *buf, size_t size, off_t offset,
// Following values are allowed to fail, because swapaccount might be turned
// off for current kernel
- if(cgfs_get_value("memory", cg, "memory.memsw.limit_in_bytes", &memswlimit_str) &&
- cgfs_get_value("memory", cg, "memory.memsw.usage_in_bytes", &memswusage_str))
+ if (cgfs_get_value("memory", cg, "memory.memsw.usage_in_bytes", &memswusage_str))
{
memswlimit = get_min_memlimit(cg, "memory.memsw.limit_in_bytes");
memswusage = strtoul(memswusage_str, NULL, 10);
@@ -3161,9 +3185,9 @@ static int proc_meminfo_read(char *buf, size_t size, off_t offset,
if (!f)
goto err;
+ char *printme, lbuf[100];
while (getline(&line, &linelen, f) != -1) {
ssize_t l;
- char *printme, lbuf[100];
memset(lbuf, 0, 100);
if (startswith(line, "MemTotal:")) {
@@ -3273,7 +3297,6 @@ err:
free(line);
free(cg);
free(memusage_str);
- free(memswlimit_str);
free(memswusage_str);
free(memstat_str);
return rv;
@@ -3285,7 +3308,7 @@ err:
*/
static char *get_cpuset(const char *cg)
{
- char *answer;
+ char *answer = NULL;
if (!cgfs_get_value("cpuset", cg, "cpuset.cpus", &answer))
return NULL;
@@ -3888,7 +3911,7 @@ static int proc_uptime_read(char *buf, size_t size, off_t offset,
}
struct devinfo {
- char name[100];
+ char *name;
int major, minor;
struct devinfo *next;
};
@@ -3896,7 +3919,7 @@ struct devinfo {
int getns(pid_t pid, char *ns_type)
{
char fpath[100];
- memset(fpath, 0, sizeof(fpath));
+ memset(fpath, 0, sizeof(fpath));
snprintf(fpath, 99, "/proc/%d/ns/%s", pid, ns_type);
return open(fpath, O_RDONLY);
}
@@ -3930,42 +3953,42 @@ struct devinfo* container_dev_read(pid_t pid) {
stream = fdopen(mypipe[1], "w");
if (stream == NULL) {
lxcfs_error("Error opening pipe for writing: %s\n", strerror(errno));
- goto child_out;
+ goto child_out;
}
nsfd = getns(pid, "mnt");
if (nsfd < 0) {
lxcfs_error("Error getting mnt ns: %s\n", strerror(errno));
- goto child_out;
+ goto child_out;
}
if (setns(nsfd, 0) < 0) {
lxcfs_error("Error setting mnt ns: %s\n", strerror(errno));
- goto child_out;
+ goto child_out;
}
dir = opendir("/dev");
if (dir == NULL) {
lxcfs_error("Error opening dir /dev: %s\n", strerror(errno));
- goto child_out;
+ goto child_out;
}
while ((ptr = readdir(dir)) != NULL) {
if (ptr->d_type != DT_BLK && ptr->d_type != DT_CHR) {
continue;
}
- memset(fpath, 0, sizeof(fpath));
+ memset(fpath, 0, sizeof(fpath));
snprintf(fpath, 99, "/dev/%s", ptr->d_name);
stat(fpath, &dev_stat);
fprintf(stream, "%s %d ", ptr->d_name, dev_stat.st_rdev);
fflush(stream);
}
- closedir(dir);
+ closedir(dir);
stat("/", &dev_stat);
dev_num = dev_stat.st_dev & (~0xf);
fprintf(stream, "sda %d end 0 ", dev_num);
fflush(stream);
-child_out:
- fclose(stream);
+ fclose(stream);
exit(0);
}
+child_out:
close(mypipe[1]);
stream = fdopen(mypipe[0], "r");
if (stream == NULL) {
@@ -3977,24 +4000,24 @@ child_out:
break;
}
if (head == NULL) {
- do {
- head = (struct devinfo*)malloc(sizeof(struct devinfo));
- } while (!head);
+ do {
+ head = (struct devinfo*)malloc(sizeof(struct devinfo));
+ } while (!head);
end = head;
} else {
- do {
- end->next = (struct devinfo*)malloc(sizeof(struct devinfo));
- } while (!end->next);
+ do {
+ end->next = (struct devinfo*)malloc(sizeof(struct devinfo));
+ } while (!end->next);
end = end->next;
}
end->next = NULL;
- strncpy(end->name, dev_name, 100);
+ end->name = must_copy_string(dev_name);
end->major = (dev_num & 0xff00) >> 8;
end->minor = dev_num & 0x00ff;
}
err:
- if (stream)
- fclose(stream);
+ if (stream)
+ fclose(stream);
if (child_pid > 0)
wait_for_pid(child_pid);
return head;
@@ -4006,6 +4029,7 @@ void free_devinfo_list(struct devinfo *ptr)
while (ptr != NULL) {
tmp = ptr;
ptr = ptr->next;
+ free(tmp->name);
free(tmp);
}
}
@@ -4082,6 +4106,7 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
for (ptr = container_devinfo; ptr != NULL; ptr = ptr->next) {
if (major == ptr->major && minor == ptr->minor) {
strncpy(dev_name, ptr->name, 71);
+ dev_name[71] = '\0';
}
}
@@ -4159,7 +4184,7 @@ static int proc_swaps_read(char *buf, size_t size, off_t offset,
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
char *cg = NULL;
- char *memswlimit_str = NULL, *memlimit_str = NULL, *memusage_str = NULL, *memswusage_str = NULL;
+ char *memusage_str = NULL, *memswusage_str = NULL;
unsigned long memswlimit = 0, memlimit = 0, memusage = 0, memswusage = 0, swap_total = 0, swap_free = 0;
ssize_t total_len = 0, rv = 0;
ssize_t l = 0;
@@ -4185,20 +4210,25 @@ static int proc_swaps_read(char *buf, size_t size, off_t offset,
prune_init_slice(cg);
memlimit = get_min_memlimit(cg, "memory.limit_in_bytes");
+ if (memlimit == 0)
+ goto err;
if (!cgfs_get_value("memory", cg, "memory.usage_in_bytes", &memusage_str))
goto err;
memusage = strtoul(memusage_str, NULL, 10);
- if (cgfs_get_value("memory", cg, "memory.memsw.usage_in_bytes", &memswusage_str) &&
- cgfs_get_value("memory", cg, "memory.memsw.limit_in_bytes", &memswlimit_str)) {
+ if (cgfs_get_value("memory", cg, "memory.memsw.usage_in_bytes", &memswusage_str)) {
memswlimit = get_min_memlimit(cg, "memory.memsw.limit_in_bytes");
memswusage = strtoul(memswusage_str, NULL, 10);
- swap_total = (memswlimit - memlimit) / 1024;
- swap_free = (memswusage - memusage) / 1024;
+ if (memswlimit > memlimit) {
+ swap_total = (memswlimit - memlimit) / 1024;
+ }
+ if (memswusage > memusage) {
+ swap_free = (memswusage - memusage) / 1024;
+ }
}
total_len = snprintf(d->buf, d->size, "Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
@@ -4246,8 +4276,6 @@ static int proc_swaps_read(char *buf, size_t size, off_t offset,
err:
free(cg);
- free(memswlimit_str);
- free(memlimit_str);
free(memusage_str);
free(memswusage_str);
return rv;

View File

@ -0,0 +1,248 @@
diff --git a/src/cgroup_fuse.c b/src/cgroup_fuse.c
index d4bdac1..76507f1 100644
--- a/src/cgroup_fuse.c
+++ b/src/cgroup_fuse.c
@@ -187,7 +187,7 @@ static bool is_child_cgroup(const char *controller, const char *cgroup,
static bool caller_may_see_dir(pid_t pid, const char *contrl, const char *cg)
{
bool answer = false;
- char *c2, *task_cg;
+ char *c2 = NULL, *task_cg = NULL;
size_t target_len, task_len;
if (strcmp(cg, "/") == 0 || strcmp(cg, "./") == 0)
@@ -229,6 +229,7 @@ static bool caller_may_see_dir(pid_t pid, const char *contrl, const char *cg)
out:
free(c2);
+ c2 = NULL;
return answer;
}
@@ -268,8 +269,8 @@ static char *get_next_cgroup_dir(const char *taskcg, const char *querycg)
static bool caller_is_in_ancestor(pid_t pid, const char *contrl, const char *cg, char **nextcg)
{
bool answer = false;
- char *c2;
- char *linecmp;
+ char *c2 = NULL;
+ char *linecmp = NULL;
c2 = get_pid_cgroup_handle_named(pid, contrl);
if (!c2)
@@ -299,6 +300,7 @@ static bool caller_is_in_ancestor(pid_t pid, const char *contrl, const char *cg,
out:
free(c2);
+ c2 = NULL;
return answer;
}
@@ -618,6 +620,7 @@ __lxcfs_fuse_ops int cg_getattr(const char *path, struct stat *sb)
out:
free(cgdir);
+ cgdir = NULL;
return ret;
}
@@ -740,7 +743,9 @@ __lxcfs_fuse_ops int cg_mkdir(const char *path, mode_t mode)
out:
free(cgdir);
+ cgdir = NULL;
free(next);
+ next = NULL;
return ret;
}
@@ -875,7 +880,9 @@ __lxcfs_fuse_ops int cg_rmdir(const char *path)
out:
free(cgdir);
+ cgdir = NULL;
free(next);
+ next = NULL;
return ret;
}
@@ -964,6 +971,7 @@ __lxcfs_fuse_ops int cg_chmod(const char *path, mode_t mode)
out:
free_key(k);
free(cgdir);
+ cgdir = NULL;
return ret;
}
@@ -1073,6 +1081,7 @@ __lxcfs_fuse_ops int cg_chown(const char *path, uid_t uid, gid_t gid)
out:
free_key(k);
free(cgdir);
+ cgdir = NULL;
return ret;
}
@@ -1145,6 +1154,7 @@ __lxcfs_fuse_ops int cg_open(const char *path, struct fuse_file_info *fi)
out:
free(cgdir);
+ cgdir = NULL;
return ret;
}
@@ -1286,6 +1296,7 @@ static bool do_read_pids(pid_t tpid, const char *contrl, const char *cg,
if (socketpair(AF_UNIX, SOCK_DGRAM, 0, sock) < 0) {
perror("socketpair");
free(tmpdata);
+ tmpdata = NULL;
return false;
}
@@ -1337,6 +1348,7 @@ next:
out:
free(tmpdata);
+ tmpdata = NULL;
if (cpid != -1)
wait_for_pid(cpid);
if (sock[0] != -1) {
@@ -1413,6 +1425,7 @@ __lxcfs_fuse_ops int cg_read(const char *path, char *buf, size_t size,
out:
free(data);
+ data = NULL;
return ret;
}
@@ -1989,6 +2002,7 @@ __lxcfs_fuse_ops int cg_readdir(const char *path, void *buf,
if (nextcg) {
ret = filler(buf, nextcg, NULL, 0);
free(nextcg);
+ nextcg = NULL;
if (ret != 0) {
ret = -EIO;
goto out;
@@ -2024,9 +2038,12 @@ __lxcfs_fuse_ops int cg_readdir(const char *path, void *buf,
out:
free_keys(list);
if (clist) {
- for (i = 0; clist[i]; i++)
+ for (i = 0; clist[i]; i++) {
free(clist[i]);
+ clist[i] = NULL;
+ }
free(clist);
+ clist = NULL;
}
return ret;
}
@@ -2095,5 +2112,6 @@ __lxcfs_fuse_ops int cg_access(const char *path, int mode)
out:
free(cgdir);
+ cgdir = NULL;
return ret;
}
diff --git a/src/cgroups/cgfsng.c b/src/cgroups/cgfsng.c
index cf891b3..ca80a75 100644
--- a/src/cgroups/cgfsng.c
+++ b/src/cgroups/cgfsng.c
@@ -878,7 +878,7 @@ static int cg_hybrid_init(struct cgroup_ops *ops)
prune_init_scope(base_cgroup);
if (type == CGROUP2_SUPER_MAGIC) {
- char *cgv2_ctrl_path;
+ char *cgv2_ctrl_path = NULL;
cgv2_ctrl_path = must_make_path(mountpoint, base_cgroup,
"cgroup.controllers",
@@ -886,6 +886,7 @@ static int cg_hybrid_init(struct cgroup_ops *ops)
controller_list = cg_unified_get_controllers(cgv2_ctrl_path);
free(cgv2_ctrl_path);
+ cgv2_ctrl_path = NULL;
if (!controller_list)
controller_list = cg_unified_make_empty_controller();
}
@@ -900,7 +901,9 @@ static int cg_hybrid_init(struct cgroup_ops *ops)
next:
free_string_list(controller_list);
free(mountpoint);
+ mountpoint = NULL;
free(base_cgroup);
+ base_cgroup = NULL;
}
free_string_list(klist);
diff --git a/src/cgroups/cgroup_utils.c b/src/cgroups/cgroup_utils.c
index c21e7bc..521ec8b 100644
--- a/src/cgroups/cgroup_utils.c
+++ b/src/cgroups/cgroup_utils.c
@@ -710,7 +710,7 @@ bool mkdir_p(const char *dir, mode_t mode)
{
const char *tmp = dir;
const char *orig = dir;
- char *makeme;
+ char *makeme = NULL;
do {
dir = tmp + strspn(tmp, "/");
@@ -722,9 +722,11 @@ bool mkdir_p(const char *dir, mode_t mode)
lxcfs_error("Failed to create directory '%s': %s.\n",
makeme, strerror(errno));
free(makeme);
+ makeme = NULL;
return false;
}
free(makeme);
+ makeme = NULL;
} while(tmp != dir);
return true;
diff --git a/src/lxcfs.c b/src/lxcfs.c
index 94256d4..2251a20 100644
--- a/src/lxcfs.c
+++ b/src/lxcfs.c
@@ -1130,6 +1130,7 @@ int main(int argc, char *argv[])
} else {
lxcfs_error("Warning: unexpected fuse option %s", v);
free(v);
+ v = NULL;
exit(EXIT_FAILURE);
}
}
diff --git a/src/memory_utils.h b/src/memory_utils.h
index 2916f56..c903d48 100644
--- a/src/memory_utils.h
+++ b/src/memory_utils.h
@@ -65,8 +65,10 @@ static inline void free_disarm_function(void *ptr)
static inline void free_string_list(char **list)
{
if (list) {
- for (int i = 0; list[i]; i++)
+ for (int i = 0; list[i]; i++) {
free(list[i]);
+ list[i] = NULL;
+ }
free_disarm(list);
}
}
diff --git a/src/proc_loadavg.c b/src/proc_loadavg.c
index 7a7a39e..84787a9 100644
--- a/src/proc_loadavg.c
+++ b/src/proc_loadavg.c
@@ -445,10 +445,13 @@ static int refresh_load(struct load_node *p, const char *path)
p->last_pid = last_pid;
err_out:
- for (; i > 0; i--)
+ for (; i > 0; i--) {
free(idbuf[i - 1]);
+ idbuf[i - 1] = NULL;
+ }
out:
free(idbuf);
+ idbuf = NULL;
return sum;
}

View File

@ -1,245 +0,0 @@
diff --git a/bindings.c b/bindings.c
index c04993c..9b9f180 100644
--- a/bindings.c
+++ b/bindings.c
@@ -110,6 +110,7 @@ struct pidns_init_store {
static struct pidns_init_store *pidns_hash_table[PIDNS_HASH_SIZE];
static pthread_mutex_t pidns_store_mutex = PTHREAD_MUTEX_INITIALIZER;
+static pthread_mutex_t slurp_file_mutex = PTHREAD_MUTEX_INITIALIZER;
static void lock_mutex(pthread_mutex_t *l)
{
int ret;
@@ -330,28 +331,31 @@ static inline void drop_trailing_newlines(char *s)
}
#define BATCH_SIZE 50
-static void dorealloc(char **mem, size_t oldlen, size_t newlen)
+char * dorealloc(char *mem, size_t oldlen, size_t newlen)
{
int newbatches = (newlen / BATCH_SIZE) + 1;
int oldbatches = (oldlen / BATCH_SIZE) + 1;
- if (!*mem || newbatches > oldbatches) {
+ if (!mem || newbatches > oldbatches) {
char *tmp;
do {
- tmp = realloc(*mem, newbatches * BATCH_SIZE);
+ tmp = realloc(mem, newbatches * BATCH_SIZE);
} while (!tmp);
- *mem = tmp;
+ return tmp;
}
+ return mem;
}
-static void append_line(char **contents, size_t *len, char *line, ssize_t linelen)
+char * append_line(char *contents, size_t *len, char *line, ssize_t linelen)
{
+ char *tmp;
size_t newlen = *len + linelen;
- dorealloc(contents, *len, newlen + 1);
- memcpy(*contents + *len, line, linelen+1);
+ tmp = dorealloc(contents, *len, newlen + 1);
+ memcpy(tmp + *len, line, linelen+1);
*len = newlen;
+ return tmp;
}
-static char *slurp_file(int fd)
+char *slurp_file(int fd)
{
char *line = NULL;
char *contents = NULL;
@@ -363,7 +367,7 @@ static char *slurp_file(int fd)
return NULL;
while ((linelen = getline(&line, &len, f)) != -1) {
- append_line(&contents, &fulllen, line, linelen);
+ contents = append_line(contents, &fulllen, line, linelen);
}
fclose(f);
@@ -870,15 +874,15 @@ void free_keys(struct cgfs_files **keys)
free(keys);
}
-bool cgfs_get_value(const char *controller, const char *cgroup, const char *file, char **value)
+char * cgfs_get_value(const char *controller, const char *cgroup, const char *file)
{
int ret, fd, cfd;
size_t len;
- char *fnam, *tmpc;
+ char *fnam, *tmpc, *value;
tmpc = find_mounted_controller(controller, &cfd);
if (!tmpc)
- return false;
+ return NULL;
/* Make sure we pass a relative path to *at() family of functions.
* . + /cgroup + / + file + \0
@@ -886,25 +890,25 @@ bool cgfs_get_value(const char *controller, const char *cgroup, const char *file
len = strlen(cgroup) + strlen(file) + 3;
fnam = malloc(len);
if (!fnam) {
- return false;
+ return NULL;
}
ret = snprintf(fnam, len, "%s%s/%s", *cgroup == '/' ? "." : "", cgroup, file);
if (ret < 0 || (size_t)ret >= len) {
free(fnam);
- return false;
+ return NULL;
}
fd = openat(cfd, fnam, O_RDONLY);
if (fd < 0) {
free(fnam);
- return false;
+ return NULL;
}
free(fnam);
- store_lock();
- *value = slurp_file(fd);
- store_unlock();
- return *value != NULL;
+ lock_mutex(&slurp_file_mutex);
+ value = slurp_file(fd);
+ unlock_mutex(&slurp_file_mutex);
+ return value;
}
struct cgfs_files *cgfs_get_key(const char *controller, const char *cgroup, const char *file)
@@ -2288,7 +2292,7 @@ bool do_read_pids(pid_t tpid, const char *contrl, const char *cg, const char *fi
struct ucred cred;
size_t sz = 0, asz = 0;
- if (!cgfs_get_value(contrl, cg, file, &tmpdata))
+ if (!(tmpdata = cgfs_get_value(contrl, cg, file)))
return false;
/*
@@ -2401,8 +2405,10 @@ int cg_read(const char *path, char *buf, size_t size, off_t offset,
strcmp(f->file, "cgroup.procs") == 0)
// special case - we have to translate the pids
r = do_read_pids(fc->pid, f->controller, f->cgroup, f->file, &data);
- else
- r = cgfs_get_value(f->controller, f->cgroup, f->file, &data);
+ else {
+ data = cgfs_get_value(f->controller, f->cgroup, f->file);
+ r = !data;
+ }
if (!r) {
ret = -EINVAL;
@@ -3089,7 +3095,7 @@ static unsigned long get_memlimit(const char *cgroup, const char *file)
char *memlimit_str = NULL;
unsigned long memlimit = 0;
- if (cgfs_get_value("memory", cgroup, file, &memlimit_str))
+ if ((memlimit_str = cgfs_get_value("memory", cgroup, file)))
memlimit = strtoul(memlimit_str, NULL, 10);
free(memlimit_str);
@@ -3099,8 +3105,7 @@ static unsigned long get_memlimit(const char *cgroup, const char *file)
static unsigned long get_min_memlimit(const char *cgroup, const char *file)
{
- char copy[MAXPATHLEN];
- strcpy(copy, cgroup);
+ char *copy = strdupa(cgroup);
unsigned long memlimit = 0, retlimit;
retlimit = get_memlimit(copy, file);
@@ -3109,7 +3114,7 @@ static unsigned long get_min_memlimit(const char *cgroup, const char *file)
}
while (strcmp(copy, "/") != 0) {
- dirname(copy);
+ copy = dirname(copy);
memlimit = get_memlimit(copy, file);
if (memlimit != 0 && memlimit < retlimit)
retlimit = memlimit;
@@ -3157,14 +3162,14 @@ static int proc_meminfo_read(char *buf, size_t size, off_t offset,
memlimit = get_min_memlimit(cg, "memory.limit_in_bytes");
if (memlimit == 0)
goto err;
- if (!cgfs_get_value("memory", cg, "memory.usage_in_bytes", &memusage_str))
+ if (!(memusage_str = cgfs_get_value("memory", cg, "memory.usage_in_bytes")))
goto err;
- if (!cgfs_get_value("memory", cg, "memory.stat", &memstat_str))
+ if (!(memstat_str = cgfs_get_value("memory", cg, "memory.stat")))
goto err;
// Following values are allowed to fail, because swapaccount might be turned
// off for current kernel
- if (cgfs_get_value("memory", cg, "memory.memsw.usage_in_bytes", &memswusage_str))
+ if (memswusage_str = cgfs_get_value("memory", cg, "memory.memsw.usage_in_bytes"))
{
memswlimit = get_min_memlimit(cg, "memory.memsw.limit_in_bytes");
memswusage = strtoul(memswusage_str, NULL, 10);
@@ -3310,7 +3315,7 @@ static char *get_cpuset(const char *cg)
{
char *answer = NULL;
- if (!cgfs_get_value("cpuset", cg, "cpuset.cpus", &answer))
+ if (!(answer = cgfs_get_value("cpuset", cg, "cpuset.cpus")))
return NULL;
return answer;
}
@@ -3835,7 +3840,7 @@ static unsigned long get_reaper_busy(pid_t task)
if (!cgroup)
goto out;
prune_init_slice(cgroup);
- if (!cgfs_get_value("cpuacct", cgroup, "cpuacct.usage", &usage_str))
+ if (!(usage_str = cgfs_get_value("cpuacct", cgroup, "cpuacct.usage")))
goto out;
usage = strtoul(usage_str, NULL, 10);
usage /= 1000000000;
@@ -4077,15 +4082,15 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
return read_file("/proc/diskstats", buf, size, d);
prune_init_slice(cg);
- if (!cgfs_get_value("blkio", cg, "blkio.io_serviced_recursive", &io_serviced_str))
+ if (!(io_serviced_str = cgfs_get_value("blkio", cg, "blkio.io_serviced_recursive")))
goto err;
- if (!cgfs_get_value("blkio", cg, "blkio.io_merged_recursive", &io_merged_str))
+ if (!(io_merged_str = cgfs_get_value("blkio", cg, "blkio.io_merged_recursive")))
goto err;
- if (!cgfs_get_value("blkio", cg, "blkio.io_service_bytes_recursive", &io_service_bytes_str))
+ if (!(io_service_bytes_str = cgfs_get_value("blkio", cg, "blkio.io_service_bytes_recursive")))
goto err;
- if (!cgfs_get_value("blkio", cg, "blkio.io_wait_time_recursive", &io_wait_time_str))
+ if (!(io_wait_time_str = cgfs_get_value("blkio", cg, "blkio.io_wait_time_recursive")))
goto err;
- if (!cgfs_get_value("blkio", cg, "blkio.io_service_time_recursive", &io_service_time_str))
+ if (!(io_service_time_str = cgfs_get_value("blkio", cg, "blkio.io_service_time_recursive")))
goto err;
@@ -4213,12 +4218,12 @@ static int proc_swaps_read(char *buf, size_t size, off_t offset,
if (memlimit == 0)
goto err;
- if (!cgfs_get_value("memory", cg, "memory.usage_in_bytes", &memusage_str))
+ if (!(memusage_str = cgfs_get_value("memory", cg, "memory.usage_in_bytes")))
goto err;
memusage = strtoul(memusage_str, NULL, 10);
- if (cgfs_get_value("memory", cg, "memory.memsw.usage_in_bytes", &memswusage_str)) {
+ if (memswusage_str = cgfs_get_value("memory", cg, "memory.memsw.usage_in_bytes")) {
memswlimit = get_min_memlimit(cg, "memory.memsw.limit_in_bytes");
memswusage = strtoul(memswusage_str, NULL, 10);
@@ -4403,6 +4408,9 @@ int proc_read(const char *path, char *buf, size_t size, off_t offset,
{
struct file_info *f = (struct file_info *) fi->fh;
+ if (!f->buf)
+ return -EINVAL;
+
switch (f->type) {
case LXC_TYPE_PROC_MEMINFO:
return proc_meminfo_read(buf, size, offset, fi);

67
0008-fix-hang.patch Normal file
View File

@ -0,0 +1,67 @@
diff --git a/src/proc_fuse.c b/src/proc_fuse.c
index 334f6ea..3ceba73 100644
--- a/src/proc_fuse.c
+++ b/src/proc_fuse.c
@@ -51,6 +51,26 @@
#include "proc_cpuview.h"
#include "utils.h"
+static pthread_mutex_t container_dev_mutex = PTHREAD_MUTEX_INITIALIZER;
+
+static void lock_mutex(pthread_mutex_t *l)
+{
+ int ret;
+
+ ret = pthread_mutex_lock(l);
+ if (ret)
+ log_exit("%s - returned %d\n", strerror(ret), ret);
+}
+
+static void unlock_mutex(pthread_mutex_t *l)
+{
+ int ret;
+
+ ret = pthread_mutex_unlock(l);
+ if (ret)
+ log_exit("%s - returned %d\n", strerror(ret), ret);
+}
+
struct memory_stat {
uint64_t hierarchical_memory_limit;
uint64_t hierarchical_memsw_limit;
@@ -418,6 +438,16 @@ struct devinfo* container_dev_read(pid_t pid) {
return head;
}
if (child_pid == 0) {
+ /* Disallow signal reception in child process */
+ sigset_t oldset;
+ sigset_t newset;
+ sigemptyset(&newset);
+ sigaddset(&newset, SIGTERM);
+ sigaddset(&newset, SIGINT);
+ sigaddset(&newset, SIGHUP);
+ sigaddset(&newset, SIGQUIT);
+ sigprocmask(SIG_BLOCK,&newset,&oldset);
+
close(mypipe[0]);
stream = fdopen(mypipe[1], "w");
if (stream == NULL) {
@@ -464,6 +494,8 @@ child_out:
lxcfs_error("Error opening pipe for reading: %s\n", strerror(errno));
goto err;
}
+ wait_for_pid(child_pid);
+ child_pid = 0;
while (fscanf(stream, "%100s%d", dev_name, &dev_num) == 2) {
if (dev_num == 0) {
break;
@@ -590,7 +622,9 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
if (!f)
return 0;
+ lock_mutex(&container_dev_mutex);
container_devinfo = container_dev_read(initpid);
+ unlock_mutex(&container_dev_mutex);
while (getline(&line, &linelen, f) != -1) {
ssize_t l;

View File

@ -0,0 +1,37 @@
diff --git a/src/proc_fuse.c b/src/proc_fuse.c
index 3ceba73..5162a3b 100644
--- a/src/proc_fuse.c
+++ b/src/proc_fuse.c
@@ -910,6 +910,8 @@ static int proc_stat_read(char *buf, size_t size, off_t offset,
size_t linelen = 0, total_len = 0;
int curcpu = -1; /* cpu numbering starts at 0 */
int physcpu = 0;
+ int max_cpus = 0;
+ bool use_view;
uint64_t user = 0, nice = 0, system = 0, idle = 0, iowait = 0, irq = 0,
softirq = 0, steal = 0, guest = 0, guest_nice = 0;
uint64_t user_sum = 0, nice_sum = 0, system_sum = 0, idle_sum = 0,
@@ -958,6 +960,13 @@ static int proc_stat_read(char *buf, size_t size, off_t offset,
if (!cpuset)
return 0;
+ if (cgroup_ops->can_use_cpuview(cgroup_ops) && opts && opts->use_cfs)
+ use_view = true;
+ else
+ use_view = false;
+ if (use_view)
+ max_cpus = max_cpu_count(cg);
+
f = fopen_cached("/proc/stat", "re", &fopen_cache);
if (!f)
return 0;
@@ -1006,6 +1015,9 @@ static int proc_stat_read(char *buf, size_t size, off_t offset,
continue;
}
+ if (use_view && max_cpus > 0 && (curcpu + 1) == max_cpus)
+ continue;
+
if (sscanf(cpu_char, "%d", &physcpu) != 1)
continue;

View File

@ -1,878 +0,0 @@
diff --git a/bindings.c b/bindings.c
index 9b9f180..b921d7e 100644
--- a/bindings.c
+++ b/bindings.c
@@ -192,6 +192,7 @@ static void remove_initpid(struct pidns_init_store *e)
if (pidns_hash_table[h] == e) {
pidns_hash_table[h] = e->next;
free(e);
+ e = NULL;
return;
}
@@ -200,6 +201,7 @@ static void remove_initpid(struct pidns_init_store *e)
if (tmp->next == e) {
tmp->next = e->next;
free(e);
+ e = NULL;
return;
}
tmp = tmp->next;
@@ -241,6 +243,7 @@ static void prune_initpid_store(void)
pidns_hash_table[i] = e->next;
e = e->next;
free(delme);
+ delme = NULL;
} else {
prev = e;
e = e->next;
@@ -337,7 +340,7 @@ char * dorealloc(char *mem, size_t oldlen, size_t newlen)
int oldbatches = (oldlen / BATCH_SIZE) + 1;
if (!mem || newbatches > oldbatches) {
- char *tmp;
+ char *tmp = NULL;
do {
tmp = realloc(mem, newbatches * BATCH_SIZE);
} while (!tmp);
@@ -347,7 +350,7 @@ char * dorealloc(char *mem, size_t oldlen, size_t newlen)
}
char * append_line(char *contents, size_t *len, char *line, ssize_t linelen)
{
- char *tmp;
+ char *tmp = NULL;
size_t newlen = *len + linelen;
tmp = dorealloc(contents, *len, newlen + 1);
memcpy(tmp + *len, line, linelen+1);
@@ -490,7 +493,7 @@ bool cgfs_set_value(const char *controller, const char *cgroup, const char *file
int ret, fd, cfd;
bool ret_bool;
size_t len;
- char *fnam, *tmpc;
+ char *fnam = NULL, *tmpc = NULL;
tmpc = find_mounted_controller(controller, &cfd);
if (!tmpc)
@@ -507,17 +510,20 @@ bool cgfs_set_value(const char *controller, const char *cgroup, const char *file
ret = snprintf(fnam, len, "%s%s/%s", *cgroup == '/' ? "." : "", cgroup, file);
if (ret < 0 || (size_t)ret >= len) {
free(fnam);
+ fnam = NULL;
return false;
}
fd = openat(cfd, fnam, O_WRONLY);
if (fd < 0) {
free(fnam);
+ fnam = NULL;
return false;
}
ret_bool = write_string(fnam, value, fd);
free(fnam);
+ fnam = NULL;
return ret_bool;
}
@@ -565,7 +571,7 @@ int cgfs_create(const char *controller, const char *cg, uid_t uid, gid_t gid)
{
int cfd;
size_t len;
- char *dirnam, *tmpc;
+ char *dirnam = NULL, *tmpc = NULL;
tmpc = find_mounted_controller(controller, &cfd);
if (!tmpc)
@@ -655,7 +661,7 @@ bool cgfs_remove(const char *controller, const char *cg)
{
int fd, cfd;
size_t len;
- char *dirnam, *tmpc;
+ char *dirnam = NULL, *tmpc = NULL;
bool bret;
tmpc = find_mounted_controller(controller, &cfd);
@@ -682,7 +688,7 @@ bool cgfs_chmod_file(const char *controller, const char *file, mode_t mode)
{
int cfd;
size_t len;
- char *pathname, *tmpc;
+ char *pathname = NULL, *tmpc = NULL;
tmpc = find_mounted_controller(controller, &cfd);
if (!tmpc)
@@ -702,7 +708,7 @@ bool cgfs_chmod_file(const char *controller, const char *file, mode_t mode)
static int chown_tasks_files(const char *dirname, uid_t uid, gid_t gid, int fd)
{
size_t len;
- char *fname;
+ char *fname = NULL;
len = strlen(dirname) + strlen("/cgroup.procs") + 1;
fname = alloca(len);
@@ -719,7 +725,7 @@ int cgfs_chown_file(const char *controller, const char *file, uid_t uid, gid_t g
{
int cfd;
size_t len;
- char *pathname, *tmpc;
+ char *pathname = NULL, *tmpc = NULL;
tmpc = find_mounted_controller(controller, &cfd);
if (!tmpc)
@@ -745,7 +751,7 @@ FILE *open_pids_file(const char *controller, const char *cgroup)
{
int fd, cfd;
size_t len;
- char *pathname, *tmpc;
+ char *pathname = NULL, *tmpc = NULL;
tmpc = find_mounted_controller(controller, &cfd);
if (!tmpc)
@@ -771,7 +777,7 @@ static bool cgfs_iterate_cgroup(const char *controller, const char *cgroup, bool
{
int cfd, fd, ret;
size_t len;
- char *cg, *tmpc;
+ char *cg = NULL, *tmpc = NULL;
char pathname[MAXPATHLEN];
size_t sz = 0, asz = 0;
struct dirent *dirent;
@@ -842,7 +848,7 @@ static bool cgfs_iterate_cgroup(const char *controller, const char *cgroup, bool
static void *make_children_list_entry(const char *controller, const char *cgroup, const char *dir_entry)
{
- char *dup;
+ char *dup = NULL;
do {
dup = strdup(dir_entry);
} while (!dup);
@@ -859,7 +865,9 @@ void free_key(struct cgfs_files *k)
if (!k)
return;
free(k->name);
+ k->name = NULL;
free(k);
+ k = NULL;
}
void free_keys(struct cgfs_files **keys)
@@ -872,13 +880,14 @@ void free_keys(struct cgfs_files **keys)
free_key(keys[i]);
}
free(keys);
+ keys = NULL;
}
char * cgfs_get_value(const char *controller, const char *cgroup, const char *file)
{
int ret, fd, cfd;
size_t len;
- char *fnam, *tmpc, *value;
+ char *fnam = NULL, *tmpc = NULL, *value = NULL;
tmpc = find_mounted_controller(controller, &cfd);
if (!tmpc)
@@ -895,16 +904,19 @@ char * cgfs_get_value(const char *controller, const char *cgroup, const char *fi
ret = snprintf(fnam, len, "%s%s/%s", *cgroup == '/' ? "." : "", cgroup, file);
if (ret < 0 || (size_t)ret >= len) {
free(fnam);
+ fnam = NULL;
return NULL;
}
fd = openat(cfd, fnam, O_RDONLY);
if (fd < 0) {
free(fnam);
+ fnam = NULL;
return NULL;
}
free(fnam);
+ fnam = NULL;
lock_mutex(&slurp_file_mutex);
value = slurp_file(fd);
unlock_mutex(&slurp_file_mutex);
@@ -915,7 +927,7 @@ struct cgfs_files *cgfs_get_key(const char *controller, const char *cgroup, cons
{
int ret, cfd;
size_t len;
- char *fnam, *tmpc;
+ char *fnam = NULL, *tmpc = NULL;
struct stat sb;
struct cgfs_files *newkey;
@@ -978,7 +990,7 @@ bool is_child_cgroup(const char *controller, const char *cgroup, const char *f)
{
int cfd;
size_t len;
- char *fnam, *tmpc;
+ char *fnam = NULL, *tmpc = NULL;
int ret;
struct stat sb;
@@ -1165,7 +1177,7 @@ static void must_strcat_pid(char **src, size_t *sz, size_t *asz, pid_t pid)
int tmplen = sprintf(tmp, "%d\n", (int)pid);
if (!*src || tmplen + *sz + 1 >= *asz) {
- char *tmp;
+ char *tmp = NULL;
do {
tmp = realloc(*src, *asz + BUF_RESERVE_SIZE);
} while (!tmp);
@@ -1304,7 +1316,7 @@ static bool perms_include(int fmode, mode_t req_mode)
*/
static char *get_next_cgroup_dir(const char *taskcg, const char *querycg)
{
- char *start, *end;
+ char *start = NULL, *end = NULL;
if (strlen(taskcg) <= strlen(querycg)) {
lxcfs_error("%s\n", "I was fed bad input.");
@@ -1374,6 +1386,7 @@ static char *get_pid_cgroup(pid_t pid, const char *contrl)
out:
fclose(f);
free(line);
+ line = NULL;
return answer;
}
@@ -1419,7 +1432,7 @@ out:
#define INITSCOPE "/init.scope"
static void prune_init_slice(char *cg)
{
- char *point;
+ char *point = NULL;
size_t cg_len = strlen(cg), initscope_len = strlen(INITSCOPE);
if (cg_len < initscope_len)
@@ -1445,7 +1458,7 @@ static bool caller_is_in_ancestor(pid_t pid, const char *contrl, const char *cg,
{
bool answer = false;
char *c2 = get_pid_cgroup(pid, contrl);
- char *linecmp;
+ char *linecmp = NULL;
if (!c2)
return false;
@@ -1474,6 +1487,7 @@ static bool caller_is_in_ancestor(pid_t pid, const char *contrl, const char *cg,
out:
free(c2);
+ c2 = NULL;
return answer;
}
@@ -1483,7 +1497,7 @@ out:
static bool caller_may_see_dir(pid_t pid, const char *contrl, const char *cg)
{
bool answer = false;
- char *c2, *task_cg;
+ char *c2 = NULL, *task_cg = NULL;
size_t target_len, task_len;
if (strcmp(cg, "/") == 0 || strcmp(cg, "./") == 0)
@@ -1525,6 +1539,7 @@ static bool caller_may_see_dir(pid_t pid, const char *contrl, const char *cg)
out:
free(c2);
+ c2 = NULL;
return answer;
}
@@ -1535,7 +1550,7 @@ out:
static char *pick_controller_from_path(struct fuse_context *fc, const char *path)
{
const char *p1;
- char *contr, *slash;
+ char *contr = NULL, *slash = NULL;
if (strlen(path) < 9) {
errno = EACCES;
@@ -1570,7 +1585,7 @@ static char *pick_controller_from_path(struct fuse_context *fc, const char *path
*/
static const char *find_cgroup_in_path(const char *path)
{
- const char *p1;
+ const char *p1 = NULL;
if (strlen(path) < 9) {
errno = EACCES;
@@ -1591,7 +1606,7 @@ static const char *find_cgroup_in_path(const char *path)
*/
static void get_cgdir_and_path(const char *cg, char **dir, char **last)
{
- char *p;
+ char *p = NULL;
do {
*dir = strdup(cg);
@@ -1614,9 +1629,9 @@ int cg_getattr(const char *path, struct stat *sb)
struct timespec now;
struct fuse_context *fc = fuse_get_context();
char * cgdir = NULL;
- char *last = NULL, *path1, *path2;
+ char *last = NULL, *path1 = NULL, *path2 = NULL;
struct cgfs_files *k = NULL;
- const char *cgroup;
+ const char *cgroup = NULL;
const char *controller = NULL;
int ret = -ENOENT;
@@ -1716,14 +1731,15 @@ int cg_getattr(const char *path, struct stat *sb)
out:
free(cgdir);
+ cgdir = NULL;
return ret;
}
int cg_opendir(const char *path, struct fuse_file_info *fi)
{
struct fuse_context *fc = fuse_get_context();
- const char *cgroup;
- struct file_info *dir_info;
+ const char *cgroup = NULL;
+ struct file_info *dir_info = NULL;
char *controller = NULL;
if (!fc)
@@ -1847,9 +1863,12 @@ int cg_readdir(const char *path, void *buf, fuse_fill_dir_t filler, off_t offset
out:
free_keys(list);
if (clist) {
- for (i = 0; clist[i]; i++)
+ for (i = 0; clist[i]; i++) {
free(clist[i]);
+ clist[i] = NULL;
+ }
free(clist);
+ clist = NULL;
}
return ret;
}
@@ -1858,7 +1877,7 @@ static void do_release_file_info(struct fuse_file_info *fi)
{
struct file_info *f = (struct file_info *)fi->fh;
- if (!f)
+ if (!f || !f->buf)
return;
fi->fh = 0;
@@ -1946,6 +1965,7 @@ int cg_open(const char *path, struct fuse_file_info *fi)
out:
free(cgdir);
+ cgdir = NULL;
return ret;
}
@@ -2010,6 +2030,7 @@ int cg_access(const char *path, int mode)
out:
free(cgdir);
+ cgdir = NULL;
return ret;
}
@@ -2304,6 +2325,7 @@ bool do_read_pids(pid_t tpid, const char *contrl, const char *cg, const char *fi
if (socketpair(AF_UNIX, SOCK_DGRAM, 0, sock) < 0) {
perror("socketpair");
free(tmpdata);
+ tmpdata = NULL;
return false;
}
@@ -2355,6 +2377,7 @@ next:
out:
free(tmpdata);
+ tmpdata = NULL;
if (cpid != -1)
wait_for_pid(cpid);
if (sock[0] != -1) {
@@ -2430,6 +2453,7 @@ int cg_read(const char *path, char *buf, size_t size, off_t offset,
out:
free(data);
+ data = NULL;
return ret;
}
@@ -2517,7 +2541,7 @@ static void pid_from_ns_wrapper(int sock, pid_t tpid)
*/
bool hostuid_to_ns(uid_t uid, pid_t pid, uid_t *answer)
{
- FILE *f;
+ FILE *f = NULL;
char line[400];
sprintf(line, "/proc/%d/uid_map", pid);
@@ -2790,6 +2814,7 @@ int cg_chown(const char *path, uid_t uid, gid_t gid)
out:
free_key(k);
free(cgdir);
+ cgdir = NULL;
return ret;
}
@@ -2860,6 +2885,7 @@ int cg_chmod(const char *path, mode_t mode)
out:
free_key(k);
free(cgdir);
+ cgdir = NULL;
return ret;
}
@@ -2913,7 +2939,9 @@ int cg_mkdir(const char *path, mode_t mode)
out:
free(cgdir);
+ cgdir = NULL;
free(next);
+ next = NULL;
return ret;
}
@@ -2974,7 +3002,9 @@ int cg_rmdir(const char *path)
out:
free(cgdir);
+ cgdir = NULL;
free(next);
+ next = NULL;
return ret;
}
@@ -2990,7 +3020,7 @@ static void parse_memstat(char *memstat, unsigned long *cached,
unsigned long *active_file, unsigned long *inactive_file,
unsigned long *unevictable, unsigned long *shmem)
{
- char *eol;
+ char *eol = NULL;
while (*memstat) {
if (startswith(memstat, "total_cache")) {
@@ -3024,7 +3054,7 @@ static void parse_memstat(char *memstat, unsigned long *cached,
static void get_blkio_io_value(char *str, unsigned major, unsigned minor, char *iotype, unsigned long *v)
{
- char *eol;
+ char *eol = NULL;
char key[32];
memset(key, 0, 32);
@@ -3083,6 +3113,7 @@ static int read_file(const char *path, char *buf, size_t size,
err:
fclose(f);
free(line);
+ line = NULL;
return rv;
}
@@ -3099,6 +3130,7 @@ static unsigned long get_memlimit(const char *cgroup, const char *file)
memlimit = strtoul(memlimit_str, NULL, 10);
free(memlimit_str);
+ memlimit_str = NULL;
return memlimit;
}
@@ -3128,7 +3160,7 @@ static int proc_meminfo_read(char *buf, size_t size, off_t offset,
{
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
- char *cg;
+ char *cg = NULL;
char *memusage_str = NULL, *memstat_str = NULL, *memswusage_str = NULL;
unsigned long memlimit = 0, memusage = 0, memswlimit = 0, memswusage = 0,
cached = 0, hosttotal = 0, active_anon = 0, inactive_anon = 0,
@@ -3190,7 +3222,7 @@ static int proc_meminfo_read(char *buf, size_t size, off_t offset,
if (!f)
goto err;
- char *printme, lbuf[100];
+ char *printme = NULL, lbuf[100];
while (getline(&line, &linelen, f) != -1) {
ssize_t l;
@@ -3300,10 +3332,15 @@ err:
if (f)
fclose(f);
free(line);
+ line = NULL;
free(cg);
+ cg = NULL;
free(memusage_str);
+ memusage_str = NULL;
free(memswusage_str);
+ memswusage_str = NULL;
free(memstat_str);
+ memstat_str = NULL;
return rv;
}
@@ -3348,7 +3385,7 @@ static int proc_cpuinfo_read(char *buf, size_t size, off_t offset,
{
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
- char *cg;
+ char *cg = NULL;
char *cpuset = NULL;
char *line = NULL;
size_t linelen = 0, total_len = 0, rv = 0;
@@ -3418,7 +3455,7 @@ static int proc_cpuinfo_read(char *buf, size_t size, off_t offset,
}
continue;
} else if (is_s390x && sscanf(line, "processor %d:", &cpu) == 1) {
- char *p;
+ char *p = NULL;
if (!cpu_in_cpuset(cpu, cpuset))
continue;
curcpu ++;
@@ -3483,6 +3520,7 @@ static int proc_cpuinfo_read(char *buf, size_t size, off_t offset,
l = snprintf(cache, cache_size, "vendor_id : IBM/S390\n");
if (l < 0 || l >= cache_size) {
free(origcache);
+ origcache = NULL;
goto err;
}
cache_size -= l;
@@ -3491,6 +3529,7 @@ static int proc_cpuinfo_read(char *buf, size_t size, off_t offset,
l = snprintf(cache, cache_size, "# processors : %d\n", curcpu + 1);
if (l < 0 || l >= cache_size) {
free(origcache);
+ origcache = NULL;
goto err;
}
cache_size -= l;
@@ -3498,6 +3537,7 @@ static int proc_cpuinfo_read(char *buf, size_t size, off_t offset,
total_len += l;
l = snprintf(cache, cache_size, "%s", origcache);
free(origcache);
+ origcache = NULL;
if (l < 0 || l >= cache_size)
goto err;
total_len += l;
@@ -3514,8 +3554,11 @@ err:
if (f)
fclose(f);
free(line);
+ line = NULL;
free(cpuset);
+ cpuset = NULL;
free(cg);
+ cg = NULL;
return rv;
}
@@ -3655,7 +3698,7 @@ static int proc_stat_read(char *buf, size_t size, off_t offset,
{
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
- char *cg;
+ char *cg = NULL;
char *cpuset = NULL;
char *line = NULL;
size_t linelen = 0, total_len = 0, rv = 0;
@@ -3706,7 +3749,7 @@ static int proc_stat_read(char *buf, size_t size, off_t offset,
ssize_t l;
int cpu;
char cpu_char[10]; /* That's a lot of cores */
- char *c;
+ char *c = NULL;
if (strlen(line) == 0)
continue;
@@ -3815,8 +3858,11 @@ err:
if (f)
fclose(f);
free(line);
+ line = NULL;
free(cpuset);
+ cpuset = NULL;
free(cg);
+ cg = NULL;
return rv;
}
@@ -3847,7 +3893,9 @@ static unsigned long get_reaper_busy(pid_t task)
out:
free(cgroup);
+ cgroup = NULL;
free(usage_str);
+ usage_str = NULL;
return usage;
}
@@ -3939,7 +3987,7 @@ struct devinfo* container_dev_read(pid_t pid) {
pid_t child_pid;
int mypipe[2];
int dev_num;
- FILE *stream;
+ FILE *stream[2];
if (pipe(mypipe) < 0) {
perror("Error creating pipe");
@@ -3955,8 +4003,8 @@ struct devinfo* container_dev_read(pid_t pid) {
}
if (child_pid == 0) {
close(mypipe[0]);
- stream = fdopen(mypipe[1], "w");
- if (stream == NULL) {
+ stream[1] = fdopen(mypipe[1], "w");
+ if (stream[1] == NULL) {
lxcfs_error("Error opening pipe for writing: %s\n", strerror(errno));
goto child_out;
}
@@ -3981,26 +4029,26 @@ struct devinfo* container_dev_read(pid_t pid) {
memset(fpath, 0, sizeof(fpath));
snprintf(fpath, 99, "/dev/%s", ptr->d_name);
stat(fpath, &dev_stat);
- fprintf(stream, "%s %d ", ptr->d_name, dev_stat.st_rdev);
- fflush(stream);
+ fprintf(stream[1], "%s %d ", ptr->d_name, dev_stat.st_rdev);
+ fflush(stream[1]);
}
closedir(dir);
stat("/", &dev_stat);
dev_num = dev_stat.st_dev & (~0xf);
- fprintf(stream, "sda %d end 0 ", dev_num);
- fflush(stream);
- fclose(stream);
+ fprintf(stream[1], "sda %d end 0 ", dev_num);
+ fflush(stream[1]);
+child_out:
+ fclose(stream[1]);
exit(0);
}
-child_out:
close(mypipe[1]);
- stream = fdopen(mypipe[0], "r");
- if (stream == NULL) {
+ stream[0] = fdopen(mypipe[0], "r");
+ if (stream[0] == NULL) {
lxcfs_error("Error opening pipe for reading: %s\n", strerror(errno));
goto err;
}
- while (fscanf(stream, "%100s%d", dev_name, &dev_num) == 2) {
+ while (fscanf(stream[0], "%100s%d", dev_name, &dev_num) == 2) {
if (dev_num == 0) {
break;
}
@@ -4021,8 +4069,8 @@ child_out:
end->minor = dev_num & 0x00ff;
}
err:
- if (stream)
- fclose(stream);
+ if (stream[0])
+ fclose(stream[0]);
if (child_pid > 0)
wait_for_pid(child_pid);
return head;
@@ -4035,7 +4083,9 @@ void free_devinfo_list(struct devinfo *ptr)
tmp = ptr;
ptr = ptr->next;
free(tmp->name);
+ tmp->name = NULL;
free(tmp);
+ tmp = NULL;
}
}
@@ -4046,7 +4096,7 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
struct devinfo *container_devinfo = NULL, *ptr;
- char *cg;
+ char *cg = NULL;
char *io_serviced_str = NULL, *io_merged_str = NULL, *io_service_bytes_str = NULL,
*io_wait_time_str = NULL, *io_service_time_str = NULL;
unsigned long read = 0, write = 0;
@@ -4174,11 +4224,17 @@ err:
if (f)
fclose(f);
free(line);
+ line = NULL;
free(io_serviced_str);
+ io_serviced_str = NULL;
free(io_merged_str);
+ io_merged_str = NULL;
free(io_service_bytes_str);
+ io_service_bytes_str = NULL;
free(io_wait_time_str);
+ io_wait_time_str = NULL;
free(io_service_time_str);
+ io_service_time_str = NULL;
free_devinfo_list(container_devinfo);
return rv;
}
@@ -4256,6 +4312,7 @@ static int proc_swaps_read(char *buf, size_t size, off_t offset,
}
free(line);
+ line = NULL;
fclose(f);
}
@@ -4281,8 +4338,11 @@ static int proc_swaps_read(char *buf, size_t size, off_t offset,
err:
free(cg);
+ cg = NULL;
free(memusage_str);
+ memusage_str = NULL;
free(memswusage_str);
+ memswusage_str = NULL;
return rv;
}
@@ -4299,6 +4359,7 @@ static off_t get_procfile_size(const char *which)
answer += sz;
fclose (f);
free(line);
+ line = NULL;
return answer;
}
@@ -4352,6 +4413,8 @@ int proc_open(const char *path, struct fuse_file_info *fi)
int type = -1;
struct file_info *info;
+ fi->fh = 0;
+
if (strcmp(path, "/proc/meminfo") == 0)
type = LXC_TYPE_PROC_MEMINFO;
else if (strcmp(path, "/proc/cpuinfo") == 0)
@@ -4437,7 +4500,7 @@ static bool mkdir_p(const char *dir, mode_t mode)
{
const char *tmp = dir;
const char *orig = dir;
- char *makeme;
+ char *makeme = NULL;
do {
dir = tmp + strspn(tmp, "/");
@@ -4452,6 +4515,7 @@ static bool mkdir_p(const char *dir, mode_t mode)
return false;
}
free(makeme);
+ makeme = NULL;
} while(tmp != dir);
return true;
@@ -4482,8 +4546,8 @@ static bool has_fs_type(const struct statfs *fs, fs_type_magic magic_val)
*/
static bool is_on_ramfs(void)
{
- FILE *f;
- char *p, *p2;
+ FILE *f = NULL;
+ char *p = NULL, *p2 = NULL;
char *line = NULL;
size_t len = 0;
int i;
@@ -4506,12 +4570,14 @@ static bool is_on_ramfs(void)
p = strchr(p2 + 1, '-');
if (p && strncmp(p, "- rootfs rootfs ", 16) == 0) {
free(line);
+ line = NULL;
fclose(f);
return true;
}
}
}
free(line);
+ line = NULL;
fclose(f);
return false;
}
@@ -4709,7 +4775,7 @@ static bool cgfs_prepare_mounts(void)
static bool cgfs_mount_hierarchies(void)
{
- char *target;
+ char *target = NULL;
size_t clen, len;
int i, ret;
@@ -4725,10 +4791,12 @@ static bool cgfs_mount_hierarchies(void)
ret = snprintf(target, len, "%s/%s", BASEDIR, controller);
if (ret < 0 || ret >= len) {
free(target);
+ target = NULL;
return false;
}
if (mkdir(target, 0755) < 0 && errno != EEXIST) {
free(target);
+ target = NULL;
return false;
}
if (!strcmp(controller, "unified"))
@@ -4738,15 +4806,18 @@ static bool cgfs_mount_hierarchies(void)
if (ret < 0) {
lxcfs_error("Failed mounting cgroup %s: %s\n", controller, strerror(errno));
free(target);
+ target = NULL;
return false;
}
fd_hierarchies[i] = open(target, O_DIRECTORY);
if (fd_hierarchies[i] < 0) {
free(target);
+ target = NULL;
return false;
}
free(target);
+ target = NULL;
}
return true;
}
@@ -4770,7 +4841,7 @@ static bool cgfs_setup_controllers(void)
static void __attribute__((constructor)) collect_and_mount_subsystems(void)
{
FILE *f;
- char *cret, *line = NULL;
+ char *cret = NULL, *line = NULL;
char cwd[MAXPATHLEN];
size_t len = 0;
int i, init_ns = -1;
@@ -4782,7 +4853,7 @@ static void __attribute__((constructor)) collect_and_mount_subsystems(void)
}
while (getline(&line, &len, f) != -1) {
- char *idx, *p, *p2;
+ char *idx = NULL, *p = NULL, *p2 = NULL;
p = strchr(line, ':');
if (!p)
@@ -4848,6 +4919,7 @@ static void __attribute__((constructor)) collect_and_mount_subsystems(void)
out:
free(line);
+ line = NULL;
fclose(f);
if (init_ns >= 0)
close(init_ns);
@@ -4860,13 +4932,17 @@ static void __attribute__((destructor)) free_subsystems(void)
lxcfs_debug("%s\n", "Running destructor for liblxcfs.");
for (i = 0; i < num_hierarchies; i++) {
- if (hierarchies[i])
+ if (hierarchies[i]) {
free(hierarchies[i]);
+ hierarchies[i] = NULL;
+ }
if (fd_hierarchies && fd_hierarchies[i] >= 0)
close(fd_hierarchies[i]);
}
free(hierarchies);
+ hierarchies = NULL;
free(fd_hierarchies);
+ fd_hierarchies = NULL;
if (cgroup_mount_ns_fd >= 0)
close(cgroup_mount_ns_fd);

View File

@ -1,37 +1,32 @@
diff --git a/bindings.c b/bindings.c
--- a/bindings.c
+++ b/bindings.c
@@ -4099,7 +4099,7 @@ struct devinfo* container_dev_read(pid_t pid) {
goto child_out;
}
while ((ptr = readdir(dir)) != NULL) {
- if (ptr->d_type != DT_BLK && ptr->d_type != DT_CHR) {
+ if (ptr->d_type != DT_BLK) {
continue;
}
memset(fpath, 0, sizeof(fpath));
@@ -4167,10 +4167,20 @@ void free_devinfo_list(struct devinfo *ptr)
diff --git a/src/proc_fuse.c b/src/proc_fuse.c
index 145e2e2..7442d4c 100644
--- a/src/proc_fuse.c
+++ b/src/proc_fuse.c
@@ -537,6 +537,15 @@ void free_devinfo_list(struct devinfo *ptr)
}
}
+static bool need_record_diskstats(unsigned int major, unsigned int minor)
+{
+ //only support device which major is 253.
+ if (major == 253) {
+ // support device which major is 253 and 252
+ if (major == 253 || major == 252) {
+ return true;
+ }
+ return false;
+}
+
static int proc_diskstats_read(char *buf, size_t size, off_t offset,
struct fuse_file_info *fi)
struct fuse_file_info *fi)
{
@@ -562,6 +571,7 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
int i = 0;
int ret;
char dev_name[72];
+ char tmp_dev_name[72];
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
struct devinfo *container_devinfo = NULL, *ptr;
@@ -4233,6 +4243,7 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
if (offset) {
int left;
@@ -629,6 +639,7 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
while (getline(&line, &linelen, f) != -1) {
ssize_t l;
char lbuf[256];
@ -39,12 +34,9 @@ diff --git a/bindings.c b/bindings.c
memset(dev_name, 0, sizeof(dev_name));
i = sscanf(line, "%u %u %71s", &major, &minor, dev_name);
@@ -4240,11 +4251,16 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
continue;
for (ptr = container_devinfo; ptr != NULL; ptr = ptr->next) {
@@ -638,9 +649,14 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
if (major == ptr->major && minor == ptr->minor) {
- strncpy(dev_name, ptr->name, 71);
+ snprintf(dev_name, sizeof(dev_name), "%s", ptr->name);
snprintf(dev_name, sizeof(dev_name), "%s", ptr->name);
dev_name[71] = '\0';
+ match = true;
}
@ -57,7 +49,7 @@ diff --git a/bindings.c b/bindings.c
get_blkio_io_value(io_serviced_str, major, minor, "Read", &read);
get_blkio_io_value(io_serviced_str, major, minor, "Write", &write);
get_blkio_io_value(io_merged_str, major, minor, "Read", &read_merged);
@@ -4274,8 +4290,16 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
@@ -670,8 +686,16 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
snprintf(lbuf, 256, "%u %u %s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
major, minor, dev_name, read, read_merged, read_sectors, read_ticks,
write, write_merged, write_sectors, write_ticks, ios_pgr, tot_ticks, rq_ticks);

View File

@ -1,48 +0,0 @@
diff --git a/bindings.c b/bindings.c
index b921d7e..1023e7f 100644
--- a/bindings.c
+++ b/bindings.c
@@ -111,6 +111,7 @@ struct pidns_init_store {
static struct pidns_init_store *pidns_hash_table[PIDNS_HASH_SIZE];
static pthread_mutex_t pidns_store_mutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_mutex_t slurp_file_mutex = PTHREAD_MUTEX_INITIALIZER;
+static pthread_mutex_t diskstats_mutex = PTHREAD_MUTEX_INITIALIZER;
static void lock_mutex(pthread_mutex_t *l)
{
int ret;
@@ -4002,6 +4003,16 @@ struct devinfo* container_dev_read(pid_t pid) {
return head;
}
if (child_pid == 0) {
+ /* Disallow signal reception in child process */
+ sigset_t oldset;
+ sigset_t newset;
+ sigemptyset(&newset);
+ sigaddset(&newset, SIGTERM);
+ sigaddset(&newset, SIGINT);
+ sigaddset(&newset, SIGHUP);
+ sigaddset(&newset, SIGQUIT);
+ sigprocmask(SIG_BLOCK,&newset,&oldset);
+
close(mypipe[0]);
stream[1] = fdopen(mypipe[1], "w");
if (stream[1] == NULL) {
@@ -4048,6 +4059,8 @@ child_out:
lxcfs_error("Error opening pipe for reading: %s\n", strerror(errno));
goto err;
}
+ wait_for_pid(child_pid);
+ child_pid = 0;
while (fscanf(stream[0], "%100s%d", dev_name, &dev_num) == 2) {
if (dev_num == 0) {
break;
@@ -4148,7 +4161,9 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
if (!f)
goto err;
+ lock_mutex(&diskstats_mutex);
container_devinfo = container_dev_read(initpid);
+ unlock_mutex(&diskstats_mutex);
while (getline(&line, &linelen, f) != -1) {
ssize_t l;

View File

@ -0,0 +1,183 @@
diff --git a/src/bindings.h b/src/bindings.h
index e260902..241b2fd 100644
--- a/src/bindings.h
+++ b/src/bindings.h
@@ -62,6 +62,9 @@ enum lxcfs_virt_t {
LXC_TYPE_PROC_LOADAVG,
#define LXC_TYPE_PROC_LOADAVG_PATH "/proc/loadavg"
+ LXC_TYPE_PROC_PARTITIONS,
+#define LXC_TYPE_PROC_PARTITIONS_PATH "/proc/partitions"
+
LXC_TYPE_SYS_DEVICES,
LXC_TYPE_SYS_DEVICES_SYSTEM,
LXC_TYPE_SYS_DEVICES_SYSTEM_CPU,
diff --git a/src/proc_fuse.c b/src/proc_fuse.c
index 7442d4c..4ceea4c 100644
--- a/src/proc_fuse.c
+++ b/src/proc_fuse.c
@@ -109,13 +109,14 @@ __lxcfs_fuse_ops int proc_getattr(const char *path, struct stat *sb)
return 0;
}
- if (strcmp(path, "/proc/meminfo") == 0 ||
- strcmp(path, "/proc/cpuinfo") == 0 ||
- strcmp(path, "/proc/uptime") == 0 ||
- strcmp(path, "/proc/stat") == 0 ||
- strcmp(path, "/proc/diskstats") == 0 ||
- strcmp(path, "/proc/swaps") == 0 ||
- strcmp(path, "/proc/loadavg") == 0) {
+ if (strcmp(path, "/proc/meminfo") == 0 ||
+ strcmp(path, "/proc/cpuinfo") == 0 ||
+ strcmp(path, "/proc/uptime") == 0 ||
+ strcmp(path, "/proc/stat") == 0 ||
+ strcmp(path, "/proc/diskstats") == 0 ||
+ strcmp(path, "/proc/swaps") == 0 ||
+ strcmp(path, "/proc/loadavg") == 0 ||
+ strcmp(path, "/proc/partitions") == 0) {
sb->st_size = 0;
sb->st_mode = S_IFREG | 00444;
sb->st_nlink = 1;
@@ -137,7 +138,8 @@ __lxcfs_fuse_ops int proc_readdir(const char *path, void *buf,
filler(buf, "uptime", NULL, 0) != 0 ||
filler(buf, "diskstats", NULL, 0) != 0 ||
filler(buf, "swaps", NULL, 0) != 0 ||
- filler(buf, "loadavg", NULL, 0) != 0)
+ filler(buf, "loadavg", NULL, 0) != 0 ||
+ filler(buf, "partitions", NULL, 0) != 0 )
return -EINVAL;
return 0;
@@ -179,6 +181,8 @@ __lxcfs_fuse_ops int proc_open(const char *path, struct fuse_file_info *fi)
type = LXC_TYPE_PROC_SWAPS;
else if (strcmp(path, "/proc/loadavg") == 0)
type = LXC_TYPE_PROC_LOADAVG;
+ else if (strcmp(path, "/proc/partitions") == 0)
+ type = LXC_TYPE_PROC_PARTITIONS;
if (type == -1)
return -ENOENT;
@@ -721,6 +725,110 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
return total_len;
}
+static int proc_partitions_read(char *buf, size_t size, off_t offset,
+ struct fuse_file_info *fi)
+{
+ char dev_name[72] = {0};
+ struct fuse_context *fc = fuse_get_context();
+ struct file_info *d = (struct file_info *)fi->fh;
+ struct devinfo *container_devinfo = NULL, *ptr = NULL;
+ char *cg = NULL;
+ char *cache = d->buf;
+ size_t cache_size = d->buflen;
+ char *line = NULL;
+ size_t linelen = 0, total_len = 0;
+ int rv = 0;
+ unsigned int major = 0, minor = 0;
+ unsigned long long blocks = 0;
+ int i = 0, lines = 0;
+ bool found = false;
+ FILE *f = NULL;
+
+ if (offset > 0){
+ if (offset > d->size)
+ return -EINVAL;
+ if (d->cached == 0)
+ return 0;
+ int left = d->size - offset;
+ total_len = left > size ? size: left;
+
+ memcpy(buf, cache + offset, total_len);
+ return total_len;
+ }
+
+ pid_t initpid = lookup_initpid_in_store(fc->pid);
+ if (initpid <= 0)
+ initpid = fc->pid;
+ cg = get_pid_cgroup(initpid, "blkio");
+ if (cg == NULL)
+ return read_file_fuse("/proc/partitions", buf, size, d);
+ prune_init_slice(cg);
+
+ f = fopen("/proc/partitions", "r");
+ if (f == NULL)
+ goto err;
+
+ lock_mutex(&container_dev_mutex);
+ container_devinfo = container_dev_read(initpid);
+ unlock_mutex(&container_dev_mutex);
+
+ while (getline(&line, &linelen, f) != -1) {
+ ssize_t l;
+ char lbuf[256];
+
+ if (lines < 2) {
+ strncpy(lbuf, line, sizeof(lbuf)-1);
+ lines++;
+ } else {
+ memset(dev_name, 0, sizeof(dev_name));
+
+ i = sscanf(line, "%u %u %llu %71s", &major, &minor, &blocks, dev_name);
+ if (i != 4)
+ continue;
+ found = false;
+ for (ptr = container_devinfo; ptr != NULL; ptr = ptr->next) {
+ if (major == ptr->major && minor == ptr->minor) {
+ snprintf(lbuf, 256, "%4u %7u %10llu %s\n", major, minor, blocks, ptr->name);
+ found = true;
+ }
+ }
+ if (!found)
+ continue;
+ }
+
+ l = snprintf(cache, cache_size, "%s", lbuf);
+ if (l < 0) {
+ perror("Error writing to fuse buf");
+ rv = 0;
+ goto err;
+ }
+ if (l >= cache_size) {
+ lxcfs_error("%s\n", "Internal error: truncated write to cache.");
+ rv = 0;
+ goto err;
+ }
+ cache += l;
+ cache_size -= l;
+ total_len += l;
+ }
+ d->cached = 1;
+ d->size = total_len;
+ if (total_len > size )
+ total_len = size;
+
+ memcpy(buf, d->buf, total_len);
+
+ rv = total_len;
+err:
+ free(cg);
+ if (f != NULL)
+ fclose(f);
+ free(line);
+ line = NULL;
+ free_devinfo_list(container_devinfo);
+ return rv;
+}
+
#if RELOADTEST
static inline void iwashere(void)
{
@@ -1519,6 +1627,12 @@ __lxcfs_fuse_ops int proc_read(const char *path, char *buf, size_t size,
return read_file_fuse_with_offset(LXC_TYPE_PROC_LOADAVG_PATH,
buf, size, offset, f);
+ case LXC_TYPE_PROC_PARTITIONS:
+ if(liblxcfs_functional())
+ return proc_partitions_read(buf, size, offset, fi);
+
+ return read_file_fuse_with_offset(LXC_TYPE_PROC_PARTITIONS_PATH,
+ buf, size, offset, f);
}
return -EINVAL;

View File

@ -1,11 +0,0 @@
diff --git a/config/init/systemd/lxcfs.service b/config/init/systemd/lxcfs.service
index 534907d..3f104ad 100644
--- a/config/init/systemd/lxcfs.service
+++ b/config/init/systemd/lxcfs.service
@@ -10,6 +10,7 @@ ExecStart=/usr/bin/lxcfs /var/lib/lxc/lxcfs/
ExecStartPost=/usr/local/bin/lxcfs-tools remount -a
KillMode=process
Restart=on-failure
+ExecStop=/usr/local/bin/lxcfs-tools umount -a
ExecStopPost=-/bin/fusermount -u /var/lib/lxc/
Delegate=yes

View File

@ -1,130 +0,0 @@
diff -uprN a/bindings.c b/bindings.c
--- a/bindings.c 2019-01-07 15:52:33.206519758 +0800
+++ b/bindings.c 2019-01-07 16:11:20.021464817 +0800
@@ -15,6 +15,7 @@
#include <fuse.h>
#include <inttypes.h>
#include <libgen.h>
+#include <math.h>
#include <pthread.h>
#include <sched.h>
#include <stdbool.h>
@@ -3369,6 +3370,37 @@ static bool cpuline_in_cpuset(const char
return cpu_in_cpuset(cpu, cpuset);
}
+static long get_cpulimit(const char *cgroup, const char *file)
+{
+ char *cpulimit_str = NULL;
+ long cpulimit = -1;
+
+ if (cgfs_get_value("cpu", cgroup, file, &cpulimit_str))
+ cpulimit = strtol(cpulimit_str, NULL, 10);
+
+ free(cpulimit_str);
+
+ return cpulimit;
+}
+
+static long get_cpu_count(const char *cgroup)
+{
+ char *copy = strdupa(cgroup);
+ long double count = -1;
+ int period, quota;
+
+ period = get_cpulimit(copy, "cpu.cfs_period_us");
+ quota = get_cpulimit(copy, "cpu.cfs_quota_us");
+
+ if (quota != -1)
+ count = quota / period;
+
+ if (quota > 0) {
+ return ceil(count);
+ }
+
+ return -1;
+}
/*
* check whether this is a '^processor" line in /proc/cpuinfo
*/
@@ -3387,11 +3419,13 @@ static int proc_cpuinfo_read(char *buf,
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
char *cg = NULL;
+ char *ccg = NULL;
char *cpuset = NULL;
char *line = NULL;
size_t linelen = 0, total_len = 0, rv = 0;
bool am_printing = false, firstline = true, is_s390x = false;
int curcpu = -1, cpu;
+ long total_cpus = -1;
char *cache = d->buf;
size_t cache_size = d->buflen;
FILE *f = NULL;
@@ -3419,6 +3453,12 @@ static int proc_cpuinfo_read(char *buf,
if (!cpuset)
goto err;
+ ccg = get_pid_cgroup(initpid, "cpu");
+ if (ccg) {
+ prune_init_slice(ccg);
+ total_cpus = get_cpu_count(ccg);
+ }
+
f = fopen("/proc/cpuinfo", "r");
if (!f)
goto err;
@@ -3436,6 +3476,9 @@ static int proc_cpuinfo_read(char *buf,
if (strncmp(line, "# processors:", 12) == 0)
continue;
if (is_processor_line(line)) {
+ if (total_cpus > 0 && curcpu >= (total_cpus-1)) {
+ break;
+ }
am_printing = cpuline_in_cpuset(line, cpuset);
if (am_printing) {
curcpu ++;
@@ -3457,6 +3500,10 @@ static int proc_cpuinfo_read(char *buf,
continue;
} else if (is_s390x && sscanf(line, "processor %d:", &cpu) == 1) {
char *p = NULL;
+
+ if (total_cpus > 0 && curcpu >= (total_cpus-1)) {
+ break;
+ }
if (!cpu_in_cpuset(cpu, cpuset))
continue;
curcpu ++;
@@ -3509,7 +3556,7 @@ static int proc_cpuinfo_read(char *buf,
}
}
- if (is_s390x) {
+ if ((is_s390x) && ((total_cpus < 0) || (total_cpus > 0 && curcpu < (total_cpus-1)))) {
char *origcache = d->buf;
ssize_t l;
do {
diff -uprN a/Makefile.am b/Makefile.am
--- a/Makefile.am 2019-01-07 15:52:33.211519758 +0800
+++ b/Makefile.am 2019-01-07 16:09:21.713470585 +0800
@@ -13,7 +13,7 @@ AM_CFLAGS += -DRUNTIME_PATH=\"$(RUNTIME_
liblxcfs_la_SOURCES = macro.h bindings.c cpuset.c bindings.h
liblxcfs_la_CFLAGS = $(AM_CFLAGS)
-liblxcfs_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared
+liblxcfs_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared -lm
liblxcfstest_la_SOURCES = bindings.c cpuset.c bindings.h macro.h
liblxcfstest_la_CFLAGS = $(AM_CFLAGS) -DRELOADTEST
diff -uprN a/Makefile.in b/Makefile.in
--- a/Makefile.in 2019-01-07 15:52:33.204519758 +0800
+++ b/Makefile.in 2019-01-07 16:09:21.714470585 +0800
@@ -427,7 +427,7 @@ AM_CFLAGS = -Wall -ggdb -D_GNU_SOURCE -D
AM_LDFLAGS = $(FUSE_LIBS) -pthread
liblxcfs_la_SOURCES = macro.h bindings.c cpuset.c bindings.h
liblxcfs_la_CFLAGS = $(AM_CFLAGS)
-liblxcfs_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared
+liblxcfs_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared -lm
liblxcfstest_la_SOURCES = bindings.c cpuset.c bindings.h macro.h
liblxcfstest_la_CFLAGS = $(AM_CFLAGS) -DRELOADTEST
liblxcfstest_la_LDFLAGS = $(AM_CFLAGS) -module -avoid-version -shared

View File

@ -0,0 +1,30 @@
diff --git a/src/cgroups/cgfsng.c b/src/cgroups/cgfsng.c
index ca80a75..5ec0352 100644
--- a/src/cgroups/cgfsng.c
+++ b/src/cgroups/cgfsng.c
@@ -754,7 +754,11 @@ static int cgfsng_get_io(struct cgroup_ops *ops, const char *cgroup,
static int cgfsng_get_io_service_bytes(struct cgroup_ops *ops,
const char *cgroup, char **value)
{
- return cgfsng_get_io(ops, cgroup, "blkio.io_service_bytes_recursive", value);
+ int ret;
+ ret = cgfsng_get_io(ops, cgroup, "blkio.throttle.io_service_bytes_recursive", value);
+ if (ret < 0)
+ return cgfsng_get_io(ops, cgroup, "blkio.throttle.io_service_bytes", value);
+ return ret;
}
static int cgfsng_get_io_service_time(struct cgroup_ops *ops,
@@ -766,7 +770,11 @@ static int cgfsng_get_io_service_time(struct cgroup_ops *ops,
static int cgfsng_get_io_serviced(struct cgroup_ops *ops, const char *cgroup,
char **value)
{
- return cgfsng_get_io(ops, cgroup, "blkio.io_serviced_recursive", value);
+ int ret;
+ ret = cgfsng_get_io(ops, cgroup, "blkio.throttle.io_serviced_recursive", value);
+ if (ret < 0)
+ return cgfsng_get_io(ops, cgroup, "blkio.throttle.io_serviced", value);
+ return ret;
}
static int cgfsng_get_io_merged(struct cgroup_ops *ops, const char *cgroup,

View File

@ -0,0 +1,13 @@
diff --git a/src/Makefile.am b/src/Makefile.am
index 030d6b5..96d884e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -6,6 +6,8 @@ AM_LDFLAGS = $(FUSE_LIBS) -pthread
#AM_CFLAGS += -DVERBOSE
AM_CFLAGS += -DRUNTIME_PATH=\"$(RUNTIME_PATH)\"
+AM_CFLAGS += -Wl,-z,now -fPIE
+AM_LDFLAGS += -Wl,-z,now -pie
liblxcfs_la_SOURCES = api_extensions.h \
bindings.c bindings.h \

View File

@ -1,39 +0,0 @@
diff -uprN a/bindings.c b/bindings.c
--- a/bindings.c 2019-01-07 16:13:51.465457433 +0800
+++ b/bindings.c 2019-01-07 16:15:37.926452242 +0800
@@ -3747,10 +3747,12 @@ static int proc_stat_read(char *buf, siz
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
char *cg = NULL;
+ char *ccg = NULL;
char *cpuset = NULL;
char *line = NULL;
size_t linelen = 0, total_len = 0, rv = 0;
int curcpu = -1; /* cpu numbering starts at 0 */
+ long total_cpus = -1;
unsigned long user = 0, nice = 0, system = 0, idle = 0, iowait = 0, irq = 0, softirq = 0, steal = 0, guest = 0, guest_nice = 0;
unsigned long user_sum = 0, nice_sum = 0, system_sum = 0, idle_sum = 0, iowait_sum = 0,
irq_sum = 0, softirq_sum = 0, steal_sum = 0, guest_sum = 0, guest_nice_sum = 0;
@@ -3783,6 +3785,12 @@ static int proc_stat_read(char *buf, siz
if (!cpuset)
goto err;
+ ccg = get_pid_cgroup(initpid, "cpu");
+ if (ccg) {
+ prune_init_slice(ccg);
+ total_cpus = get_cpu_count(ccg);
+ }
+
f = fopen("/proc/stat", "r");
if (!f)
goto err;
@@ -3820,6 +3828,9 @@ static int proc_stat_read(char *buf, siz
continue;
}
+ if (total_cpus > 0 && curcpu >= (total_cpus-1)) {
+ continue;
+ }
if (sscanf(cpu_char, "%d", &cpu) != 1)
continue;
if (!cpu_in_cpuset(cpu, cpuset))

View File

@ -0,0 +1,23 @@
diff --git a/src/proc_fuse.c b/src/proc_fuse.c
index 4ceea4c..519cda4 100644
--- a/src/proc_fuse.c
+++ b/src/proc_fuse.c
@@ -686,11 +686,16 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
tot_ticks = tot_ticks/1000000;
memset(lbuf, 0, 256);
- if (read || write || read_merged || write_merged || read_sectors || write_sectors || read_ticks || write_ticks)
+ if (read || write || read_merged || write_merged || read_sectors || write_sectors || read_ticks || write_ticks) {
+ if (need_record_diskstats(major, minor)) {
+ sscanf(line, "%u %u %71s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
+ &major, &minor, tmp_dev_name, &read, &read_merged, &read_sectors, &read_ticks,
+ &write, &write_merged, &write_sectors, &write_ticks, &ios_pgr, &tot_ticks, &rq_ticks);
+ }
snprintf(lbuf, 256, "%u %u %s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
major, minor, dev_name, read, read_merged, read_sectors, read_ticks,
write, write_merged, write_sectors, write_ticks, ios_pgr, tot_ticks, rq_ticks);
- else if (need_record_diskstats(major, minor)) {
+ } else if (need_record_diskstats(major, minor)) {
sscanf(line, "%u %u %71s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
&major, &minor, tmp_dev_name, &read, &read_merged, &read_sectors, &read_ticks,
&write, &write_merged, &write_sectors, &write_ticks, &ios_pgr, &tot_ticks, &rq_ticks);

View File

@ -1,16 +0,0 @@
diff -uprN a/config/init/systemd/lxcfs.service b/config/init/systemd/lxcfs.service
--- a/config/init/systemd/lxcfs.service 2019-01-07 17:15:47.596276242 +0800
+++ b/config/init/systemd/lxcfs.service 2019-01-07 17:17:32.206271142 +0800
@@ -9,10 +9,11 @@ ExecStartPre=/usr/local/bin/lxcfs-tools
ExecStart=/usr/bin/lxcfs /var/lib/lxc/lxcfs/
ExecStartPost=/usr/local/bin/lxcfs-tools remount -a
KillMode=process
-Restart=on-failure
ExecStop=/usr/local/bin/lxcfs-tools umount -a
ExecStopPost=-/bin/fusermount -u /var/lib/lxc/
Delegate=yes
+Restart=always
+RestartSec=2s
[Install]
WantedBy=multi-user.target

View File

@ -0,0 +1,83 @@
diff --git a/src/proc_fuse.c b/src/proc_fuse.c
index 519cda4..96eb9d7 100644
--- a/src/proc_fuse.c
+++ b/src/proc_fuse.c
@@ -608,11 +608,6 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
return read_file_fuse("/proc/diskstats", buf, size, d);
}
- ret = cgroup_ops->get_io_merged(cgroup_ops, cg, &io_merged_str);
- if (ret < 0) {
- if (ret == -EOPNOTSUPP)
- return read_file_fuse("/proc/diskstats", buf, size, d);
- }
ret = cgroup_ops->get_io_service_bytes(cgroup_ops, cg, &io_service_bytes_str);
if (ret < 0) {
@@ -620,17 +615,9 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
return read_file_fuse("/proc/diskstats", buf, size, d);
}
- ret = cgroup_ops->get_io_wait_time(cgroup_ops, cg, &io_wait_time_str);
- if (ret < 0) {
- if (ret == -EOPNOTSUPP)
- return read_file_fuse("/proc/diskstats", buf, size, d);
- }
-
- ret = cgroup_ops->get_io_service_time(cgroup_ops, cg, &io_service_time_str);
- if (ret < 0) {
- if (ret == -EOPNOTSUPP)
- return read_file_fuse("/proc/diskstats", buf, size, d);
- }
+ cgroup_ops->get_io_merged(cgroup_ops, cg, &io_merged_str);
+ cgroup_ops->get_io_wait_time(cgroup_ops, cg, &io_wait_time_str);
+ cgroup_ops->get_io_service_time(cgroup_ops, cg, &io_service_time_str);
f = fopen_cached("/proc/diskstats", "re", &fopen_cache);
if (!f)
@@ -663,26 +650,32 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
get_blkio_io_value(io_serviced_str, major, minor, "Read", &read);
get_blkio_io_value(io_serviced_str, major, minor, "Write", &write);
- get_blkio_io_value(io_merged_str, major, minor, "Read", &read_merged);
- get_blkio_io_value(io_merged_str, major, minor, "Write", &write_merged);
+ if (io_merged_str != NULL) {
+ get_blkio_io_value(io_merged_str, major, minor, "Read", &read_merged);
+ get_blkio_io_value(io_merged_str, major, minor, "Write", &write_merged);
+ }
get_blkio_io_value(io_service_bytes_str, major, minor, "Read", &read_sectors);
read_sectors = read_sectors/512;
get_blkio_io_value(io_service_bytes_str, major, minor, "Write", &write_sectors);
write_sectors = write_sectors/512;
- get_blkio_io_value(io_service_time_str, major, minor, "Read", &rd_svctm);
- rd_svctm = rd_svctm/1000000;
- get_blkio_io_value(io_wait_time_str, major, minor, "Read", &rd_wait);
- rd_wait = rd_wait/1000000;
- read_ticks = rd_svctm + rd_wait;
+ if (io_service_time_str != NULL) {
+ get_blkio_io_value(io_service_time_str, major, minor, "Read", &rd_svctm);
+ rd_svctm = rd_svctm/1000000;
+ get_blkio_io_value(io_service_time_str, major, minor, "Write", &wr_svctm);
+ wr_svctm = wr_svctm/1000000;
+ get_blkio_io_value(io_service_time_str, major, minor, "Total", &tot_ticks);
+ }
- get_blkio_io_value(io_service_time_str, major, minor, "Write", &wr_svctm);
- wr_svctm = wr_svctm/1000000;
- get_blkio_io_value(io_wait_time_str, major, minor, "Write", &wr_wait);
- wr_wait = wr_wait/1000000;
- write_ticks = wr_svctm + wr_wait;
+ if (io_wait_time_str != NULL) {
+ get_blkio_io_value(io_wait_time_str, major, minor, "Read", &rd_wait);
+ rd_wait = rd_wait/1000000;
+ get_blkio_io_value(io_wait_time_str, major, minor, "Write", &wr_wait);
+ wr_wait = wr_wait/1000000;
+ }
- get_blkio_io_value(io_service_time_str, major, minor, "Total", &tot_ticks);
+ read_ticks = rd_svctm + rd_wait;
+ write_ticks = wr_svctm + wr_wait;
tot_ticks = tot_ticks/1000000;
memset(lbuf, 0, 256);

View File

@ -1,62 +0,0 @@
diff -uprN a/bindings.c b/bindings.c
--- a/bindings.c 2019-01-07 16:16:48.039448823 +0800
+++ b/bindings.c 2019-01-07 16:34:25.904397244 +0800
@@ -3128,9 +3128,10 @@ static unsigned long get_memlimit(const
char *memlimit_str = NULL;
unsigned long memlimit = 0;
- if ((memlimit_str = cgfs_get_value("memory", cgroup, file)))
- memlimit = strtoul(memlimit_str, NULL, 10);
+ if (!(memlimit_str = cgfs_get_value("memory", cgroup, file)))
+ return memlimit;
+ memlimit = strtoul(memlimit_str, NULL, 10);
free(memlimit_str);
memlimit_str = NULL;
@@ -3375,9 +3376,10 @@ static long get_cpulimit(const char *cgr
char *cpulimit_str = NULL;
long cpulimit = -1;
- if (cgfs_get_value("cpu", cgroup, file, &cpulimit_str))
- cpulimit = strtol(cpulimit_str, NULL, 10);
+ if (!cgfs_get_value("cpu", cgroup, file, &cpulimit_str))
+ return cpulimit;
+ cpulimit = strtol(cpulimit_str, NULL, 10);
free(cpulimit_str);
return cpulimit;
@@ -3385,12 +3387,13 @@ static long get_cpulimit(const char *cgr
static long get_cpu_count(const char *cgroup)
{
- char *copy = strdupa(cgroup);
+ char *copy = must_copy_string(cgroup);
long double count = -1;
int period, quota;
period = get_cpulimit(copy, "cpu.cfs_period_us");
quota = get_cpulimit(copy, "cpu.cfs_quota_us");
+ free(copy);
if (quota != -1)
count = quota / period;
@@ -3607,6 +3610,8 @@ err:
cpuset = NULL;
free(cg);
cg = NULL;
+ free(ccg);
+ ccg = NULL;
return rv;
}
@@ -3922,6 +3927,8 @@ err:
cpuset = NULL;
free(cg);
cg = NULL;
+ free(ccg);
+ ccg = NULL;
return rv;
}

View File

@ -1,36 +0,0 @@
diff -uprN a/bindings.c b/bindings.c
--- a/bindings.c 2019-01-07 16:36:42.290390594 +0800
+++ b/bindings.c 2019-01-07 16:46:59.507360500 +0800
@@ -2427,10 +2427,10 @@ int cg_read(const char *path, char *buf,
if (strcmp(f->file, "tasks") == 0 ||
strcmp(f->file, "/tasks") == 0 ||
strcmp(f->file, "/cgroup.procs") == 0 ||
- strcmp(f->file, "cgroup.procs") == 0)
+ strcmp(f->file, "cgroup.procs") == 0) {
// special case - we have to translate the pids
r = do_read_pids(fc->pid, f->controller, f->cgroup, f->file, &data);
- else {
+ } else {
data = cgfs_get_value(f->controller, f->cgroup, f->file);
r = !data;
}
@@ -3376,7 +3376,7 @@ static long get_cpulimit(const char *cgr
char *cpulimit_str = NULL;
long cpulimit = -1;
- if (!cgfs_get_value("cpu", cgroup, file, &cpulimit_str))
+ if (!(cpulimit_str = cgfs_get_value("cpu", cgroup, file)))
return cpulimit;
cpulimit = strtol(cpulimit_str, NULL, 10);
@@ -4552,8 +4552,9 @@ int proc_read(const char *path, char *bu
{
struct file_info *f = (struct file_info *) fi->fh;
- if (!f->buf)
+ if (!f->buf) {
return -EINVAL;
+ }
switch (f->type) {
case LXC_TYPE_PROC_MEMINFO:

View File

@ -1,226 +0,0 @@
diff --git a/Makefile.am b/Makefile.am
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,7 +26,7 @@ lxcfs_LTLIBRARIES = liblxcfs.la
EXTRA_LTLIBRARIES = liblxcfstest.la
lxcfs_SOURCES = lxcfs.c
-lxcfs_LDADD = -ldl
+lxcfs_LDADD = -ldl -lsecurec
lxcfs_CFLAGS = $(AM_CFLAGS)
lxcfs_LDFLAGS = $(AM_LDFLAGS)
bin_PROGRAMS = lxcfs
diff --git a/bindings.c b/bindings.c
--- a/bindings.c
+++ b/bindings.c
@@ -39,6 +39,7 @@
#include "bindings.h"
#include "config.h" // for VERSION
+#include "securec.h"
/* Maximum number for 64 bit integer is a string with 21 digits: 2^64 - 1 = 21 */
#define LXCFS_NUMSTRLEN64 21
@@ -67,6 +68,7 @@ enum {
LXC_TYPE_PROC_STAT,
LXC_TYPE_PROC_DISKSTATS,
LXC_TYPE_PROC_SWAPS,
+ LXC_TYPE_PROC_PARTITIONS,
};
struct file_info {
@@ -112,7 +114,7 @@ struct pidns_init_store {
static struct pidns_init_store *pidns_hash_table[PIDNS_HASH_SIZE];
static pthread_mutex_t pidns_store_mutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_mutex_t slurp_file_mutex = PTHREAD_MUTEX_INITIALIZER;
-static pthread_mutex_t diskstats_mutex = PTHREAD_MUTEX_INITIALIZER;
+static pthread_mutex_t container_dev_mutex = PTHREAD_MUTEX_INITIALIZER;
static void lock_mutex(pthread_mutex_t *l)
{
int ret;
@@ -4226,9 +4228,9 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
if (!f)
goto err;
- lock_mutex(&diskstats_mutex);
+ lock_mutex(&container_dev_mutex);
container_devinfo = container_dev_read(initpid);
- unlock_mutex(&diskstats_mutex);
+ unlock_mutex(&container_dev_mutex);
while (getline(&line, &linelen, f) != -1) {
ssize_t l;
@@ -4426,6 +4428,132 @@ err:
return rv;
}
+static int proc_partitions_read(char *buf, size_t size, off_t offset,
+ struct fuse_file_info *fi)
+{
+ int ret = 0;
+ char dev_name[72] = {0};
+ struct fuse_context *fc = fuse_get_context();
+ struct file_info *d = (struct file_info *)fi->fh;
+ struct devinfo *container_devinfo = NULL, *ptr = NULL;
+ char *cg = NULL;
+ char *cache = d->buf;
+ size_t cache_size = d->buflen;
+ char *line = NULL;
+ size_t linelen = 0, total_len = 0;
+ int rv = 0;
+ unsigned int major = 0, minor = 0;
+ unsigned long long blocks = 0;
+ int i = 0, lines = 0;
+ bool found = false;
+ FILE *f = NULL;
+
+ if (offset > 0){
+ if (offset > d->size)
+ return -EINVAL;
+ if (d->cached == 0)
+ return 0;
+ int left = d->size - offset;
+ total_len = left > size ? size: left;
+ ret = memcpy_s(buf, size, cache + offset, total_len);
+ if (ret != 0) {
+ lxcfs_error("%s\n", "Internal error: memcpy buf failed");
+ rv = 0;
+ goto err;
+ }
+
+ return total_len;
+ }
+
+ pid_t initpid = lookup_initpid_in_store(fc->pid);
+ if (initpid <= 0)
+ initpid = fc->pid;
+ cg = get_pid_cgroup(initpid, "blkio");
+ if (cg == NULL)
+ return read_file("/proc/partitions", buf, size, d);
+ prune_init_slice(cg);
+
+ f = fopen("/proc/partitions", "r");
+ if (f == NULL)
+ goto err;
+
+ lock_mutex(&container_dev_mutex);
+ container_devinfo = container_dev_read(initpid);
+ unlock_mutex(&container_dev_mutex);
+
+ while (getline(&line, &linelen, f) != -1) {
+ ssize_t l;
+ char lbuf[256];
+
+ if (lines < 2) {
+ ret = strncpy_s(lbuf, 256, line, 255);
+ if (ret != 0) {
+ lxcfs_error("%s\n", "Internal error: strncpy line failed");
+ rv = 0;
+ goto err;
+ }
+
+ lines++;
+ } else {
+ ret = memset_s(dev_name, sizeof(dev_name), 0, sizeof(dev_name));
+ if (ret != 0) {
+ lxcfs_error("%s\n", "Internal error: memset devname failed");
+ rv = 0;
+ goto err;
+ }
+
+ i = sscanf(line, "%u %u %llu %71s", &major, &minor, &blocks, dev_name);
+ if (i != 4)
+ continue;
+ found = false;
+ for (ptr = container_devinfo; ptr != NULL; ptr = ptr->next) {
+ if (major == ptr->major && minor == ptr->minor) {
+ snprintf(lbuf, 256, "%4u %7u %10llu %s\n", major, minor, blocks, ptr->name);
+ found = true;
+ }
+ }
+ if (!found)
+ continue;
+ }
+
+ l = snprintf(cache, cache_size, "%s", lbuf);
+ if (l < 0) {
+ perror("Error writing to fuse buf");
+ rv = 0;
+ goto err;
+ }
+ if (l >= cache_size) {
+ lxcfs_error("%s\n", "Internal error: truncated write to cache.");
+ rv = 0;
+ goto err;
+ }
+ cache += l;
+ cache_size -= l;
+ total_len += l;
+ }
+ d->cached = 1;
+ d->size = total_len;
+ if (total_len > size )
+ total_len = size;
+
+ ret = memcpy_s(buf, size, d->buf, total_len);
+ if (ret != 0) {
+ lxcfs_error("%s\n", "Internal error: memcpy buf failed");
+ rv = 0;
+ goto err;
+ }
+
+ rv = total_len;
+err:
+ free(cg);
+ if (f != NULL)
+ fclose(f);
+ free(line);
+ line = NULL;
+ free_devinfo_list(container_devinfo);
+ return rv;
+}
+
static off_t get_procfile_size(const char *which)
{
FILE *f = fopen(which, "r");
@@ -4463,7 +4591,8 @@ int proc_getattr(const char *path, struct stat *sb)
strcmp(path, "/proc/uptime") == 0 ||
strcmp(path, "/proc/stat") == 0 ||
strcmp(path, "/proc/diskstats") == 0 ||
- strcmp(path, "/proc/swaps") == 0) {
+ strcmp(path, "/proc/swaps") == 0 ||
+ strcmp(path, "/proc/partitions") == 0) {
sb->st_size = 0;
sb->st_mode = S_IFREG | 00444;
sb->st_nlink = 1;
@@ -4483,7 +4612,8 @@ int proc_readdir(const char *path, void *buf, fuse_fill_dir_t filler, off_t offs
filler(buf, "stat", NULL, 0) != 0 ||
filler(buf, "uptime", NULL, 0) != 0 ||
filler(buf, "diskstats", NULL, 0) != 0 ||
- filler(buf, "swaps", NULL, 0) != 0)
+ filler(buf, "swaps", NULL, 0) != 0 ||
+ filler(buf, "partitions", NULL, 0) != 0)
return -EINVAL;
return 0;
}
@@ -4507,6 +4637,8 @@ int proc_open(const char *path, struct fuse_file_info *fi)
type = LXC_TYPE_PROC_DISKSTATS;
else if (strcmp(path, "/proc/swaps") == 0)
type = LXC_TYPE_PROC_SWAPS;
+ else if (strcmp(path, "/proc/partitions") == 0)
+ type = LXC_TYPE_PROC_PARTITIONS;
if (type == -1)
return -ENOENT;
@@ -4568,6 +4700,8 @@ int proc_read(const char *path, char *buf, size_t size, off_t offset,
return proc_diskstats_read(buf, size, offset, fi);
case LXC_TYPE_PROC_SWAPS:
return proc_swaps_read(buf, size, offset, fi);
+ case LXC_TYPE_PROC_PARTITIONS:
+ return proc_partitions_read(buf, size, offset, fi);
default:
return -EINVAL;
}
--
1.8.3.1

View File

@ -1,41 +0,0 @@
diff --git a/bindings.c b/bindings.c
--- a/bindings.c
+++ b/bindings.c
@@ -4037,7 +4037,7 @@ struct devinfo {
struct devinfo *next;
};
-int getns(pid_t pid, char *ns_type)
+int getns(pid_t pid, const char *ns_type)
{
char fpath[100];
memset(fpath, 0, sizeof(fpath));
@@ -4145,8 +4145,8 @@ child_out:
}
end->next = NULL;
end->name = must_copy_string(dev_name);
- end->major = (dev_num & 0xff00) >> 8;
- end->minor = dev_num & 0x00ff;
+ end->major = ((unsigned int)dev_num & 0xff00) >> 8;
+ end->minor = (unsigned int)dev_num & 0x00ff;
}
err:
if (stream[0])
@@ -4185,7 +4185,7 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
char tmp_dev_name[72];
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
- struct devinfo *container_devinfo = NULL, *ptr;
+ struct devinfo *container_devinfo = NULL, *ptr = NULL;
char *cg = NULL;
char *io_serviced_str = NULL, *io_merged_str = NULL, *io_service_bytes_str = NULL,
*io_wait_time_str = NULL, *io_service_time_str = NULL;
@@ -4510,7 +4510,7 @@ static int proc_partitions_read(char *buf, size_t size, off_t offset,
char lbuf[256];
if (lines < 2) {
- ret = strncpy_s(lbuf, 256, line, 255);
+ ret = strncpy_s(lbuf, sizeof(lbuf), line, sizeof(lbuf)-1);
if (ret != 0) {
lxcfs_error("%s\n", "Internal error: strncpy line failed");
rv = 0;

View File

@ -1,39 +0,0 @@
From 9eb93c62629d7d0eb42c941d6368455749171258 Mon Sep 17 00:00:00 2001
From: zhangsong <zhangsong34@huawei.com>
Date: Wed, 9 Oct 2019 07:24:50 +0800
Subject: [PATCH] lxcfs: proc_diskstats_read func obtain data from
'blkio.throttle.*'
reason:There are many scheduler in linux kernel, such as cfq, bfq, deadline,
etc. However, 'blkio.[a-z_]+' is for cfq, there is nothing provided when OS uses
other scheduler. Cgroup block controller throttle works at generic block layer
which could collect serviced and serviced_bytes information for every scheduler.
Signed-off-by: zhangsong <zhangsong34@huawei.com>
---
bindings.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/bindings.c b/bindings.c
index e7138f8..a76483c 100644
--- a/bindings.c
+++ b/bindings.c
@@ -4222,11 +4222,13 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
return read_file("/proc/diskstats", buf, size, d);
prune_init_slice(cg);
- if (!(io_serviced_str = cgfs_get_value("blkio", cg, "blkio.io_serviced_recursive")))
+ if (!(io_serviced_str = cgfs_get_value("blkio", cg, "blkio.throttle.io_serviced_recursive"))
+ && !(io_serviced_str = cgfs_get_value("blkio", cg, "blkio.throttle.io_serviced")))
goto err;
if (!(io_merged_str = cgfs_get_value("blkio", cg, "blkio.io_merged_recursive")))
goto err;
- if (!(io_service_bytes_str = cgfs_get_value("blkio", cg, "blkio.io_service_bytes_recursive")))
+ if (!(io_service_bytes_str = cgfs_get_value("blkio", cg, "blkio.throttle.io_service_bytes_recursive"))
+ && !(io_service_bytes_str = cgfs_get_value("blkio", cg, "blkio.throttle.io_service_bytes")))
goto err;
if (!(io_wait_time_str = cgfs_get_value("blkio", cg, "blkio.io_wait_time_recursive")))
goto err;
--
2.21.0

View File

@ -1,87 +0,0 @@
diff --git a/Makefile.am b/Makefile.am
index ca73156..ac6066d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,7 +26,7 @@ lxcfs_LTLIBRARIES = liblxcfs.la
EXTRA_LTLIBRARIES = liblxcfstest.la
lxcfs_SOURCES = lxcfs.c
-lxcfs_LDADD = -ldl -lsecurec
+lxcfs_LDADD = -ldl
lxcfs_CFLAGS = $(AM_CFLAGS)
lxcfs_LDFLAGS = $(AM_LDFLAGS)
bin_PROGRAMS = lxcfs
diff --git a/bindings.c b/bindings.c
index 446a1d0..9939661 100644
--- a/bindings.c
+++ b/bindings.c
@@ -39,7 +39,6 @@
#include "bindings.h"
#include "config.h" // for VERSION
-#include "securec.h"
/* Maximum number for 64 bit integer is a string with 21 digits: 2^64 - 1 = 21 */
#define LXCFS_NUMSTRLEN64 21
@@ -4457,7 +4456,6 @@ err:
static int proc_partitions_read(char *buf, size_t size, off_t offset,
struct fuse_file_info *fi)
{
- int ret = 0;
char dev_name[72] = {0};
struct fuse_context *fc = fuse_get_context();
struct file_info *d = (struct file_info *)fi->fh;
@@ -4481,13 +4479,7 @@ static int proc_partitions_read(char *buf, size_t size, off_t offset,
return 0;
int left = d->size - offset;
total_len = left > size ? size: left;
- ret = memcpy_s(buf, size, cache + offset, total_len);
- if (ret != 0) {
- lxcfs_error("%s\n", "Internal error: memcpy buf failed");
- rv = 0;
- goto err;
- }
-
+ memcpy(buf, cache + offset, total_len);
return total_len;
}
@@ -4512,21 +4504,10 @@ static int proc_partitions_read(char *buf, size_t size, off_t offset,
char lbuf[256];
if (lines < 2) {
- ret = strncpy_s(lbuf, sizeof(lbuf), line, sizeof(lbuf)-1);
- if (ret != 0) {
- lxcfs_error("%s\n", "Internal error: strncpy line failed");
- rv = 0;
- goto err;
- }
-
+ strncpy(lbuf, line, sizeof(lbuf)-1);
lines++;
} else {
- ret = memset_s(dev_name, sizeof(dev_name), 0, sizeof(dev_name));
- if (ret != 0) {
- lxcfs_error("%s\n", "Internal error: memset devname failed");
- rv = 0;
- goto err;
- }
+ memset(dev_name, 0, sizeof(dev_name));
i = sscanf(line, "%u %u %llu %71s", &major, &minor, &blocks, dev_name);
if (i != 4)
@@ -4562,12 +4543,7 @@ static int proc_partitions_read(char *buf, size_t size, off_t offset,
if (total_len > size )
total_len = size;
- ret = memcpy_s(buf, size, d->buf, total_len);
- if (ret != 0) {
- lxcfs_error("%s\n", "Internal error: memcpy buf failed");
- rv = 0;
- goto err;
- }
+ memcpy(buf, d->buf, total_len);
rv = total_len;
err:

View File

@ -1,13 +0,0 @@
diff --git a/Makefile.am b/Makefile.am
index ac6066d..f85646a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -10,6 +10,8 @@ AM_LDFLAGS = $(FUSE_LIBS) -pthread
#AM_CFLAGS += -DDEBUG
AM_CFLAGS += -DRUNTIME_PATH=\"$(RUNTIME_PATH)\"
+AM_CFLAGS += -Wl,-z,now -fPIE
+AM_LDFLAGS += -Wl,-z,now -pie
liblxcfs_la_SOURCES = macro.h bindings.c cpuset.c bindings.h
liblxcfs_la_CFLAGS = $(AM_CFLAGS)

View File

@ -1,12 +0,0 @@
diff --git a/tests/test_syscalls.c b/tests/test_syscalls.c
index 8561cfc..5a9f951 100644
--- a/tests/test_syscalls.c
+++ b/tests/test_syscalls.c
@@ -3,6 +3,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <sys/sysmacros.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <linux/un.h>

View File

@ -1,82 +0,0 @@
From 449ad8444924c5f9d0b6ab646202e9b1655ec7c9 Mon Sep 17 00:00:00 2001
From: zhangsong <zhangsong34@huawei.com>
Date: Tue, 19 May 2020 21:58:33 +0800
Subject: [PATCH] lxcfs: fix proc diskstats show in container
reason:fix proc diskstats show in container
Signed-off-by: zhangsong <zhangsong34@huawei.com>
---
bindings.c | 35 +++++++++++++++++++++--------------
1 file changed, 21 insertions(+), 14 deletions(-)
diff --git a/bindings.c b/bindings.c
index 446a1d0..19cd57e 100644
--- a/bindings.c
+++ b/bindings.c
@@ -26,6 +26,7 @@
#include <time.h>
#include <unistd.h>
#include <wait.h>
+#include <linux/kdev_t.h>
#include <linux/magic.h>
#include <linux/sched.h>
#include <sys/epoll.h>
@@ -4145,8 +4146,8 @@ child_out:
}
end->next = NULL;
end->name = must_copy_string(dev_name);
- end->major = ((unsigned int)dev_num & 0xff00) >> 8;
- end->minor = (unsigned int)dev_num & 0x00ff;
+ end->major = MAJOR(dev_num);
+ end->minor = MINOR(dev_num);
}
err:
if (stream[0])
@@ -4172,7 +4173,8 @@ void free_devinfo_list(struct devinfo *ptr)
static bool need_record_diskstats(unsigned int major, unsigned int minor)
{
//only support device which major is 253.
- if (major == 253) {
+ // fix: major number 252 is also supported.
+ if (major == 253 || major == 252) {
return true;
}
return false;
@@ -4290,17 +4292,22 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
tot_ticks = tot_ticks/1000000;
memset(lbuf, 0, 256);
- if (read || write || read_merged || write_merged || read_sectors || write_sectors || read_ticks || write_ticks)
- snprintf(lbuf, 256, "%u %u %s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
- major, minor, dev_name, read, read_merged, read_sectors, read_ticks,
- write, write_merged, write_sectors, write_ticks, ios_pgr, tot_ticks, rq_ticks);
- else if (need_record_diskstats(major, minor)) {
- sscanf(line, "%u %u %71s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
- &major, &minor, tmp_dev_name, &read, &read_merged, &read_sectors, &read_ticks,
- &write, &write_merged, &write_sectors, &write_ticks, &ios_pgr, &tot_ticks, &rq_ticks);
- snprintf(lbuf, 256, "%u %u %s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
- major, minor, dev_name, read, read_merged, read_sectors, read_ticks,
- write, write_merged, write_sectors, write_ticks, ios_pgr, tot_ticks, rq_ticks);
+ if (read || write || read_merged || write_merged || read_sectors || write_sectors || read_ticks || write_ticks) {
+ if (need_record_diskstats(major, minor)) {
+ sscanf(line, "%u %u %71s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
+ &major, &minor, tmp_dev_name, &read, &read_merged, &read_sectors, &read_ticks,
+ &write, &write_merged, &write_sectors, &write_ticks, &ios_pgr, &tot_ticks, &rq_ticks);
+ }
+ snprintf(lbuf, 256, "%u %u %s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
+ major, minor, dev_name, read, read_merged, read_sectors, read_ticks,
+ write, write_merged, write_sectors, write_ticks, ios_pgr, tot_ticks, rq_ticks);
+ } else if (need_record_diskstats(major, minor)) {
+ sscanf(line, "%u %u %71s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
+ &major, &minor, tmp_dev_name, &read, &read_merged, &read_sectors, &read_ticks,
+ &write, &write_merged, &write_sectors, &write_ticks, &ios_pgr, &tot_ticks, &rq_ticks);
+ snprintf(lbuf, 256, "%u %u %s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
+ major, minor, dev_name, read, read_merged, read_sectors, read_ticks,
+ write, write_merged, write_sectors, write_ticks, ios_pgr, tot_ticks, rq_ticks);
} else {
continue;
}
--
2.21.0

View File

@ -1,80 +0,0 @@
From 5882a762e984ec0091658f458758c44fc63bb9cf Mon Sep 17 00:00:00 2001
From: zhangsong <zhangsong34@huawei.com>
Date: Tue, 23 Jun 2020 07:43:33 +0800
Subject: [PATCH] lxcfs: adapt 4.18 kernel
Signed-off-by: zhangsong <zhangsong34@huawei.com>
---
bindings.c | 39 ++++++++++++++++++++-------------------
1 file changed, 20 insertions(+), 19 deletions(-)
diff --git a/bindings.c b/bindings.c
index b2043ec..e3fbf29 100644
--- a/bindings.c
+++ b/bindings.c
@@ -4226,15 +4226,12 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
if (!(io_serviced_str = cgfs_get_value("blkio", cg, "blkio.throttle.io_serviced_recursive"))
&& !(io_serviced_str = cgfs_get_value("blkio", cg, "blkio.throttle.io_serviced")))
goto err;
- if (!(io_merged_str = cgfs_get_value("blkio", cg, "blkio.io_merged_recursive")))
- goto err;
if (!(io_service_bytes_str = cgfs_get_value("blkio", cg, "blkio.throttle.io_service_bytes_recursive"))
&& !(io_service_bytes_str = cgfs_get_value("blkio", cg, "blkio.throttle.io_service_bytes")))
goto err;
- if (!(io_wait_time_str = cgfs_get_value("blkio", cg, "blkio.io_wait_time_recursive")))
- goto err;
- if (!(io_service_time_str = cgfs_get_value("blkio", cg, "blkio.io_service_time_recursive")))
- goto err;
+ io_merged_str = cgfs_get_value("blkio", cg, "blkio.io_merged_recursive");
+ io_wait_time_str = cgfs_get_value("blkio", cg, "blkio.io_wait_time_recursive");
+ io_service_time_str = cgfs_get_value("blkio", cg, "blkio.io_service_time_recursive");
f = fopen("/proc/diskstats", "r");
@@ -4268,26 +4265,30 @@ static int proc_diskstats_read(char *buf, size_t size, off_t offset,
get_blkio_io_value(io_serviced_str, major, minor, "Read", &read);
get_blkio_io_value(io_serviced_str, major, minor, "Write", &write);
- get_blkio_io_value(io_merged_str, major, minor, "Read", &read_merged);
- get_blkio_io_value(io_merged_str, major, minor, "Write", &write_merged);
+ if (io_merged_str != NULL) {
+ get_blkio_io_value(io_merged_str, major, minor, "Read", &read_merged);
+ get_blkio_io_value(io_merged_str, major, minor, "Write", &write_merged);
+ }
get_blkio_io_value(io_service_bytes_str, major, minor, "Read", &read_sectors);
read_sectors = read_sectors/512;
get_blkio_io_value(io_service_bytes_str, major, minor, "Write", &write_sectors);
write_sectors = write_sectors/512;
- get_blkio_io_value(io_service_time_str, major, minor, "Read", &rd_svctm);
- rd_svctm = rd_svctm/1000000;
- get_blkio_io_value(io_wait_time_str, major, minor, "Read", &rd_wait);
- rd_wait = rd_wait/1000000;
+ if (io_service_time_str != NULL) {
+ get_blkio_io_value(io_service_time_str, major, minor, "Read", &rd_svctm);
+ rd_svctm = rd_svctm/1000000;
+ get_blkio_io_value(io_service_time_str, major, minor, "Write", &wr_svctm);
+ wr_svctm = wr_svctm/1000000;
+ get_blkio_io_value(io_service_time_str, major, minor, "Total", &tot_ticks);
+ }
+ if (io_wait_time_str != NULL) {
+ get_blkio_io_value(io_wait_time_str, major, minor, "Read", &rd_wait);
+ rd_wait = rd_wait/1000000;
+ get_blkio_io_value(io_wait_time_str, major, minor, "Write", &wr_wait);
+ wr_wait = wr_wait/1000000;
+ }
read_ticks = rd_svctm + rd_wait;
-
- get_blkio_io_value(io_service_time_str, major, minor, "Write", &wr_svctm);
- wr_svctm = wr_svctm/1000000;
- get_blkio_io_value(io_wait_time_str, major, minor, "Write", &wr_wait);
- wr_wait = wr_wait/1000000;
write_ticks = wr_svctm + wr_wait;
-
- get_blkio_io_value(io_service_time_str, major, minor, "Total", &tot_ticks);
tot_ticks = tot_ticks/1000000;
memset(lbuf, 0, 256);
--
2.21.0

View File

@ -1,44 +0,0 @@
From b0ca5b7ead5891866b0bfec526beffce1095d749 Mon Sep 17 00:00:00 2001
From: zhangsong <zhangsong34@huawei.com>
Date: Wed, 24 Jun 2020 03:48:39 +0800
Subject: [PATCH] lxcfs: fix get device major and minor number
Signed-off-by: zhangsong <zhangsong34@huawei.com>
---
bindings.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/bindings.c b/bindings.c
index 19cd57e..6e2ded5 100644
--- a/bindings.c
+++ b/bindings.c
@@ -26,7 +26,6 @@
#include <time.h>
#include <unistd.h>
#include <wait.h>
-#include <linux/kdev_t.h>
#include <linux/magic.h>
#include <linux/sched.h>
#include <sys/epoll.h>
@@ -37,6 +36,7 @@
#include <sys/syscall.h>
#include <sys/sysinfo.h>
#include <sys/vfs.h>
+#include <sys/sysmacros.h>
#include "bindings.h"
#include "config.h" // for VERSION
@@ -4146,8 +4146,8 @@ child_out:
}
end->next = NULL;
end->name = must_copy_string(dev_name);
- end->major = MAJOR(dev_num);
- end->minor = MINOR(dev_num);
+ end->major = major(dev_num);
+ end->minor = minor(dev_num);
}
err:
if (stream[0])
--
2.21.0

Binary file not shown.

BIN
lxcfs-4.0.5.tar.gz Normal file

Binary file not shown.

View File

@ -3,39 +3,28 @@
#Basic Information
Name: lxcfs
Version: 3.0.2
Release: 0.12
Version: 4.0.5
Release: 1
Summary: FUSE filesystem for LXC
License: Apache-2.0
URL: http://linuxcontainers.org
Source: https://linuxcontainers.org/downloads/%{name}/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Patch9000: 0001-systemd-up.patch
Patch9001: 0002-prestart.patch
Patch9003: 0003-remove-sysvinit-upstart.patch
Patch9004: 0004-show-dev-name-in-container.patch
Patch9005: 0005-lxcfs-fix-cpuinfo-print.patch
Patch9006: 0006-lxcfs-3.0.2-crashes-on-centos-7.patch
Patch9007: 0007-fix-memory-leak.patch
Patch9008: 0008-fix-concurrency-problem.patch
Patch9009: 0009-set-null-after-free.patch
Patch9010: 0010-fix-hang.patch
Patch9011: 0011-systemd-stop.patch
Patch9012: 0012-limit-cpuinfo-by-quota-period-setting.patch
Patch9013: 0013-limit-stat-by-quota-period-setting.patch
Patch9014: 0014-systemd-monitor-always-restart.patch
Patch9015: 0015-lxcfs-fix-memory-leak.patch
Patch9016: 0016-lxcfs-fix-concurrency-problem.patch
Patch9017: 0017-diskstats-support-devicemapper-device.patch
Patch9018: 0018-lxcfs-add-proc-partitions.patch
Patch9019: 0019-use-bitwise-operators-only-on-unsigned.patch
Patch9020: 0020-lxcfs-proc_diskstats_read-func-obtain-data-from-blki.patch
Patch9021: 0021-remove-securec-functions.patch
Patch9022: 0022-add-secure-compile-option-in-Makefile.patch
Patch9023: 0023-fix-missing-include-in-tests.patch
Patch9024: 0024-fix-proc-diskstats-show-in-container.patch
Patch9025: 0025-lxcfs-adapt-4.18-kernel.patch
Patch9026: 0026-lxcfs-fix-get-device-major-and-minor-number.patch
Patch9001: 0001-systemd.patch
Patch9002: 0002-remove-sysvinit-upstart.patch
Patch9003: 0003-show-dev-name-in-container.patch
Patch9004: 0004-lxcfs-fix-cpuinfo-print.patch
Patch9005: 0005-fix-memory-leak.patch
Patch9006: 0006-fix-concurrency-problem.patch
Patch9007: 0007-set-null-after-free.patch
Patch9008: 0008-fix-hang.patch
Patch9009: 0009-limit-stat-by-quota-period-setting.patch
Patch9010: 0010-diskstats-support-devicemapper-device.patch
Patch9011: 0011-lxcfs-add-proc-partitions.patch
Patch9012: 0012-lxcfs-proc_diskstats_read-func-obtain-data-from-blki.patch
Patch9013: 0013-add-secure-compile-option-in-Makefile.patch
Patch9014: 0014-fix-proc-diskstats-show-in-container.patch
Patch9015: 0015-lxcfs-adapt-4.18-kernel.patch
#Dependency
BuildRequires: autoconf automake libtool help2man
@ -62,7 +51,6 @@ install -p -m 0644 config/init/systemd/*.service %{buildroot}%{_unitdir}/
install -d -m 0755 %{buildroot}%{_sbindir}
ln -sf service %{buildroot}%{_sbindir}/rc%{name}
install -d -m 0755 %{buildroot}%{_includedir}/%{name}
rm bindings.h
install -d -m 0755 %{buildroot}%{_localstatedir}/lib/lxc/%{name}/
#Install and uninstall scripts
@ -95,6 +83,9 @@ fi
%{_unitdir}/*
%changelog
* Fri Aug 28 2020 openEuler Buildteam <buildteam@openeuler.org> - 4.0.5-1
- update to 4.0.5
* Thu July 02 2020 openEuler Buildteam <buildteam@openeuler.org> - 3.0.2-0.12
- Sync from internal changes
@ -103,4 +94,3 @@ fi
* Wed Sep 18 2019 openEuler Buildteam <buildteam@openeuler.org> - 3.0.2-0.5.h1
- Package init