]> git.proxmox.com Git - mirror_lxcfs.git/blob - src/proc_fuse.c
002aac9f472e60f3316683faed1377492ab18a6e
[mirror_lxcfs.git] / src / proc_fuse.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #ifndef _GNU_SOURCE
4 #define _GNU_SOURCE
5 #endif
6
7 #include "config.h"
8
9 #ifdef HAVE_FUSE3
10 #ifndef FUSE_USE_VERSION
11 #define FUSE_USE_VERSION 30
12 #endif
13 #else
14 #ifndef FUSE_USE_VERSION
15 #define FUSE_USE_VERSION 26
16 #endif
17 #endif
18
19 #define _FILE_OFFSET_BITS 64
20
21 #define __STDC_FORMAT_MACROS
22 #include <dirent.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <fuse.h>
26 #include <inttypes.h>
27 #include <libgen.h>
28 #include <pthread.h>
29 #include <sched.h>
30 #include <stdarg.h>
31 #include <stdbool.h>
32 #include <stdint.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <time.h>
37 #include <unistd.h>
38 #include <wait.h>
39 #include <linux/magic.h>
40 #include <linux/sched.h>
41 #include <sys/epoll.h>
42 #include <sys/mman.h>
43 #include <sys/mount.h>
44 #include <sys/param.h>
45 #include <sys/socket.h>
46 #include <sys/syscall.h>
47 #include <sys/sysinfo.h>
48 #include <sys/vfs.h>
49
50 #include "bindings.h"
51 #include "cgroup_fuse.h"
52 #include "cgroups/cgroup.h"
53 #include "cgroups/cgroup_utils.h"
54 #include "cpuset_parse.h"
55 #include "lxcfs_fuse_compat.h"
56 #include "memory_utils.h"
57 #include "proc_loadavg.h"
58 #include "proc_cpuview.h"
59 #include "utils.h"
60
61 struct memory_stat {
62 uint64_t hierarchical_memory_limit;
63 uint64_t hierarchical_memsw_limit;
64 uint64_t total_cache;
65 uint64_t total_rss;
66 uint64_t total_rss_huge;
67 uint64_t total_shmem;
68 uint64_t total_mapped_file;
69 uint64_t total_dirty;
70 uint64_t total_writeback;
71 uint64_t total_swap;
72 uint64_t total_pgpgin;
73 uint64_t total_pgpgout;
74 uint64_t total_pgfault;
75 uint64_t total_pgmajfault;
76 uint64_t total_inactive_anon;
77 uint64_t total_active_anon;
78 uint64_t total_inactive_file;
79 uint64_t total_active_file;
80 uint64_t total_unevictable;
81 };
82
83 __lxcfs_fuse_ops int proc_getattr(const char *path, struct stat *sb)
84 {
85 struct timespec now;
86
87 memset(sb, 0, sizeof(struct stat));
88 if (clock_gettime(CLOCK_REALTIME, &now) < 0)
89 return -EINVAL;
90
91 sb->st_uid = sb->st_gid = 0;
92 sb->st_atim = sb->st_mtim = sb->st_ctim = now;
93 if (strcmp(path, "/proc") == 0) {
94 sb->st_mode = S_IFDIR | 00555;
95 sb->st_nlink = 2;
96 return 0;
97 }
98
99 if (strcmp(path, "/proc/meminfo") == 0 ||
100 strcmp(path, "/proc/cpuinfo") == 0 ||
101 strcmp(path, "/proc/uptime") == 0 ||
102 strcmp(path, "/proc/stat") == 0 ||
103 strcmp(path, "/proc/diskstats") == 0 ||
104 strcmp(path, "/proc/swaps") == 0 ||
105 strcmp(path, "/proc/loadavg") == 0) {
106 sb->st_size = 4096;
107 sb->st_mode = S_IFREG | 00444;
108 sb->st_nlink = 1;
109 return 0;
110 }
111
112 return -ENOENT;
113 }
114
115 __lxcfs_fuse_ops int proc_readdir(const char *path, void *buf,
116 fuse_fill_dir_t filler, off_t offset,
117 struct fuse_file_info *fi)
118 {
119 if (DIR_FILLER(filler, buf, ".", NULL, 0) != 0 ||
120 DIR_FILLER(filler, buf, "..", NULL, 0) != 0 ||
121 DIR_FILLER(filler, buf, "cpuinfo", NULL, 0) != 0 ||
122 DIR_FILLER(filler, buf, "meminfo", NULL, 0) != 0 ||
123 DIR_FILLER(filler, buf, "stat", NULL, 0) != 0 ||
124 DIR_FILLER(filler, buf, "uptime", NULL, 0) != 0 ||
125 DIR_FILLER(filler, buf, "diskstats", NULL, 0) != 0 ||
126 DIR_FILLER(filler, buf, "swaps", NULL, 0) != 0 ||
127 DIR_FILLER(filler, buf, "loadavg", NULL, 0) != 0)
128 return -EINVAL;
129
130 return 0;
131 }
132
133 static off_t get_procfile_size(const char *path)
134 {
135 __do_fclose FILE *f = NULL;
136 __do_free char *line = NULL;
137 size_t len = 0;
138 ssize_t sz, answer = 0;
139
140 f = fopen(path, "re");
141 if (!f)
142 return 0;
143
144 while ((sz = getline(&line, &len, f)) != -1)
145 answer += sz;
146
147 return answer;
148 }
149
150 __lxcfs_fuse_ops int proc_open(const char *path, struct fuse_file_info *fi)
151 {
152 __do_free struct file_info *info = NULL;
153 int type = -1;
154
155 if (strcmp(path, "/proc/meminfo") == 0)
156 type = LXC_TYPE_PROC_MEMINFO;
157 else if (strcmp(path, "/proc/cpuinfo") == 0)
158 type = LXC_TYPE_PROC_CPUINFO;
159 else if (strcmp(path, "/proc/uptime") == 0)
160 type = LXC_TYPE_PROC_UPTIME;
161 else if (strcmp(path, "/proc/stat") == 0)
162 type = LXC_TYPE_PROC_STAT;
163 else if (strcmp(path, "/proc/diskstats") == 0)
164 type = LXC_TYPE_PROC_DISKSTATS;
165 else if (strcmp(path, "/proc/swaps") == 0)
166 type = LXC_TYPE_PROC_SWAPS;
167 else if (strcmp(path, "/proc/loadavg") == 0)
168 type = LXC_TYPE_PROC_LOADAVG;
169 if (type == -1)
170 return -ENOENT;
171
172 info = zalloc(sizeof(*info));
173 if (!info)
174 return -ENOMEM;
175
176 info->type = type;
177
178 info->buflen = get_procfile_size(path) + BUF_RESERVE_SIZE;
179
180 info->buf = zalloc(info->buflen);
181 if (!info->buf)
182 return -ENOMEM;
183 /* set actual size to buffer size */
184 info->size = info->buflen;
185
186 fi->fh = PTR_TO_UINT64(move_ptr(info));
187 return 0;
188 }
189
190 __lxcfs_fuse_ops int proc_access(const char *path, int mask)
191 {
192 if (strcmp(path, "/proc") == 0 && access(path, R_OK) == 0)
193 return 0;
194
195 /* these are all read-only */
196 if ((mask & ~R_OK) != 0)
197 return -EACCES;
198
199 return 0;
200 }
201
202 __lxcfs_fuse_ops int proc_release(const char *path, struct fuse_file_info *fi)
203 {
204 do_release_file_info(fi);
205 return 0;
206 }
207
208 static uint64_t get_memlimit(const char *cgroup, bool swap)
209 {
210 __do_free char *memlimit_str = NULL;
211 uint64_t memlimit = 0;
212 int ret;
213
214 if (swap)
215 ret = cgroup_ops->get_memory_swap_max(cgroup_ops, cgroup, &memlimit_str);
216 else
217 ret = cgroup_ops->get_memory_max(cgroup_ops, cgroup, &memlimit_str);
218 if (ret > 0 && memlimit_str[0] && safe_uint64(memlimit_str, &memlimit, 10) < 0)
219 lxcfs_error("Failed to convert memlimit %s", memlimit_str);
220
221 return memlimit;
222 }
223
224 /*
225 * This function taken from glibc-2.32, as POSIX dirname("/some-dir") will
226 * return "/some-dir" as opposed to "/", which breaks `get_min_memlimit()`
227 */
228 static char *gnu_dirname(char *path)
229 {
230 static const char dot[] = ".";
231 char *last_slash;
232
233 /* Find last '/'. */
234 last_slash = path != NULL ? strrchr(path, '/') : NULL;
235
236 if (last_slash != NULL && last_slash != path && last_slash[1] == '\0') {
237 /* Determine whether all remaining characters are slashes. */
238 char *runp;
239
240 for (runp = last_slash; runp != path; --runp)
241 if (runp[-1] != '/')
242 break;
243
244 /* The '/' is the last character, we have to look further. */
245 if (runp != path)
246 last_slash = memrchr(path, '/', runp - path);
247 }
248
249 if (last_slash != NULL) {
250 /* Determine whether all remaining characters are slashes. */
251 char *runp;
252
253 for (runp = last_slash; runp != path; --runp)
254 if (runp[-1] != '/')
255 break;
256
257 /* Terminate the path. */
258 if (runp == path) {
259 /*
260 * The last slash is the first character in the string.
261 * We have to return "/". As a special case we have to
262 * return "//" if there are exactly two slashes at the
263 * beginning of the string. See XBD 4.10 Path Name
264 * Resolution for more information
265 */
266 if (last_slash == path + 1)
267 ++last_slash;
268 else
269 last_slash = path + 1;
270 } else
271 last_slash = runp;
272
273 last_slash[0] = '\0';
274 } else {
275 /*
276 * This assignment is ill-designed but the XPG specs require to
277 * return a string containing "." in any case no directory part
278 * is found and so a static and constant string is required.
279 */
280 path = (char *)dot;
281 }
282
283 return path;
284 }
285
286 static uint64_t get_min_memlimit(const char *cgroup, bool swap)
287 {
288 __do_free char *copy = NULL;
289 uint64_t memlimit = 0, retlimit = 0;
290
291 copy = strdup(cgroup);
292 if (!copy)
293 return log_error_errno(0, ENOMEM, "Failed to allocate memory");
294
295 retlimit = get_memlimit(copy, swap);
296
297 /*
298 * If the cgroup doesn't start with / (probably won't happen), dirname()
299 * will terminate with "" instead of "/"
300 */
301 while (*copy && strcmp(copy, "/") != 0) {
302 char *it = copy;
303
304 it = gnu_dirname(it);
305 memlimit = get_memlimit(it, swap);
306 if (memlimit > 0 && memlimit < retlimit)
307 retlimit = memlimit;
308 };
309
310 return retlimit;
311 }
312
313 static inline bool startswith(const char *line, const char *pref)
314 {
315 return strncmp(line, pref, strlen(pref)) == 0;
316 }
317
318 static int proc_swaps_read(char *buf, size_t size, off_t offset,
319 struct fuse_file_info *fi)
320 {
321 __do_free char *cgroup = NULL, *memusage_str = NULL,
322 *memswusage_str = NULL, *memswpriority_str = NULL;
323 struct fuse_context *fc = fuse_get_context();
324 struct lxcfs_opts *opts = (struct lxcfs_opts *)fuse_get_context()->private_data;
325 bool wants_swap = opts && !opts->swap_off && liblxcfs_can_use_swap();
326 struct file_info *d = INTTYPE_TO_PTR(fi->fh);
327 uint64_t memswlimit = 0, memlimit = 0, memusage = 0, memswusage = 0,
328 swtotal = 0, swfree = 0, swusage = 0, memswpriority = 1;
329 ssize_t total_len = 0;
330 ssize_t l = 0;
331 char *cache = d->buf;
332 int ret;
333
334 if (offset) {
335 int left;
336
337 if (offset > d->size)
338 return -EINVAL;
339
340 if (!d->cached)
341 return 0;
342
343 left = d->size - offset;
344 total_len = left > size ? size: left;
345 memcpy(buf, cache + offset, total_len);
346
347 return total_len;
348 }
349
350 pid_t initpid = lookup_initpid_in_store(fc->pid);
351 if (initpid <= 1 || is_shared_pidns(initpid))
352 initpid = fc->pid;
353
354 cgroup = get_pid_cgroup(initpid, "memory");
355 if (!cgroup)
356 return read_file_fuse("/proc/swaps", buf, size, d);
357 prune_init_slice(cgroup);
358
359 memlimit = get_min_memlimit(cgroup, false);
360
361 ret = cgroup_ops->get_memory_current(cgroup_ops, cgroup, &memusage_str);
362 if (ret < 0)
363 return 0;
364
365 if (safe_uint64(memusage_str, &memusage, 10) < 0)
366 lxcfs_error("Failed to convert memusage %s", memusage_str);
367
368 if (wants_swap) {
369 memswlimit = get_min_memlimit(cgroup, true);
370 if (memswlimit > 0) {
371 ret = cgroup_ops->get_memory_swap_current(cgroup_ops, cgroup, &memswusage_str);
372 if (ret >= 0 && safe_uint64(memswusage_str, &memswusage, 10) == 0) {
373 if (memlimit > memswlimit)
374 swtotal = 0;
375 else
376 swtotal = (memswlimit - memlimit) / 1024;
377 if (memusage > memswusage || swtotal == 0)
378 swusage = 0;
379 else
380 swusage = (memswusage - memusage) / 1024;
381 if (swtotal >= swusage)
382 swfree = swtotal - swusage;
383 }
384
385 ret = cgroup_ops->get_memory_swappiness(cgroup_ops, cgroup, &memswpriority_str);
386 if (ret >= 0)
387 safe_uint64(memswpriority_str, &memswpriority, 10);
388 }
389 }
390
391 total_len = snprintf(d->buf, d->size, "Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
392
393 /* When no mem + swap limit is specified or swapaccount=0*/
394 if (!memswlimit) {
395 __do_free char *line = NULL;
396 __do_free void *fopen_cache = NULL;
397 __do_fclose FILE *f = NULL;
398 size_t linelen = 0;
399
400 f = fopen_cached("/proc/meminfo", "re", &fopen_cache);
401 if (!f)
402 return 0;
403
404 while (getline(&line, &linelen, f) != -1) {
405 if (startswith(line, "SwapTotal:"))
406 sscanf(line, "SwapTotal: %8" PRIu64 " kB", &swtotal);
407 else if (startswith(line, "SwapFree:"))
408 sscanf(line, "SwapFree: %8" PRIu64 " kB", &swfree);
409 }
410 }
411
412 // When swappiness is 0, pretend we can't swap.
413 if (memswpriority == 0) {
414 swtotal = swusage;
415 }
416
417 if (swtotal > 0) {
418 l = snprintf(d->buf + total_len, d->size - total_len,
419 "none%*svirtual\t\t%" PRIu64 "\t%" PRIu64 "\t0\n",
420 36, " ", swtotal, swusage);
421 total_len += l;
422 }
423
424 if (total_len < 0 || l < 0)
425 return log_error(0, "Failed writing to cache");
426
427 d->cached = 1;
428 d->size = (int)total_len;
429
430 if (total_len > size)
431 total_len = size;
432 memcpy(buf, d->buf, total_len);
433
434 return total_len;
435 }
436
437 static void get_blkio_io_value(char *str, unsigned major, unsigned minor,
438 char *iotype, uint64_t *v)
439 {
440 char *eol;
441 char key[32];
442 size_t len;
443
444 memset(key, 0, 32);
445 snprintf(key, 32, "%u:%u %s", major, minor, iotype);
446
447 *v = 0;
448 len = strlen(key);
449 while (*str) {
450 if (startswith(str, key)) {
451 sscanf(str + len, "%lu", v);
452 return;
453 }
454 eol = strchr(str, '\n');
455 if (!eol)
456 return;
457 str = eol+1;
458 }
459 }
460
461 struct lxcfs_diskstats {
462 unsigned int major; /* 1 - major number */
463 unsigned int minor; /* 2 - minor mumber */
464 char dev_name[72]; /* 3 - device name */
465 uint64_t read; /* 4 - reads completed successfully */
466 uint64_t read_merged; /* 5 - reads merged */
467 uint64_t read_sectors; /* 6 - sectors read */
468 uint64_t read_ticks; /* 7 - time spent reading (ms) */
469 uint64_t write; /* 8 - writes completed */
470 uint64_t write_merged; /* 9 - writes merged */
471 uint64_t write_sectors; /* 10 - sectors written */
472 uint64_t write_ticks; /* 11 - time spent writing (ms) */
473 uint64_t ios_pgr; /* 12 - I/Os currently in progress */
474 uint64_t total_ticks; /* 13 - time spent doing I/Os (ms) */
475 uint64_t rq_ticks; /* 14 - weighted time spent doing I/Os (ms) */
476 uint64_t discard; /* 15 - discards completed successfully (4.18+) */
477 uint64_t discard_merged; /* 16 - discards merged (4.18+) */
478 uint64_t discard_sectors; /* 17 - sectors discarded (4.18+) */
479 uint64_t discard_ticks; /* 18 - time spent discarding (4.18+) */
480 };
481
482 static int proc_diskstats_read(char *buf, size_t size, off_t offset,
483 struct fuse_file_info *fi)
484 {
485 __do_free char *cg = NULL, *io_serviced_str = NULL,
486 *io_merged_str = NULL, *io_service_bytes_str = NULL,
487 *io_wait_time_str = NULL, *io_service_time_str = NULL,
488 *line = NULL;
489 __do_free void *fopen_cache = NULL;
490 __do_fclose FILE *f = NULL;
491 struct fuse_context *fc = fuse_get_context();
492 struct file_info *d = INTTYPE_TO_PTR(fi->fh);
493 struct lxcfs_diskstats stats = {};
494 /* helper fields */
495 uint64_t read_service_time, write_service_time, discard_service_time, read_wait_time,
496 write_wait_time, discard_wait_time;
497 char *cache = d->buf;
498 size_t cache_size = d->buflen;
499 size_t linelen = 0, total_len = 0;
500 int i = 0;
501 int ret;
502
503 if (offset) {
504 int left;
505
506 if (offset > d->size)
507 return -EINVAL;
508
509 if (!d->cached)
510 return 0;
511
512 left = d->size - offset;
513 total_len = left > size ? size: left;
514 memcpy(buf, cache + offset, total_len);
515
516 return total_len;
517 }
518
519 pid_t initpid = lookup_initpid_in_store(fc->pid);
520 if (initpid <= 1 || is_shared_pidns(initpid))
521 initpid = fc->pid;
522
523 cg = get_pid_cgroup(initpid, "blkio");
524 if (!cg)
525 return read_file_fuse("/proc/diskstats", buf, size, d);
526 prune_init_slice(cg);
527
528 ret = cgroup_ops->get_io_serviced(cgroup_ops, cg, &io_serviced_str);
529 if (ret < 0) {
530 if (ret == -EOPNOTSUPP)
531 return read_file_fuse("/proc/diskstats", buf, size, d);
532 }
533
534 ret = cgroup_ops->get_io_merged(cgroup_ops, cg, &io_merged_str);
535 if (ret < 0) {
536 if (ret == -EOPNOTSUPP)
537 return read_file_fuse("/proc/diskstats", buf, size, d);
538 }
539
540 ret = cgroup_ops->get_io_service_bytes(cgroup_ops, cg, &io_service_bytes_str);
541 if (ret < 0) {
542 if (ret == -EOPNOTSUPP)
543 return read_file_fuse("/proc/diskstats", buf, size, d);
544 }
545
546 ret = cgroup_ops->get_io_wait_time(cgroup_ops, cg, &io_wait_time_str);
547 if (ret < 0) {
548 if (ret == -EOPNOTSUPP)
549 return read_file_fuse("/proc/diskstats", buf, size, d);
550 }
551
552 ret = cgroup_ops->get_io_service_time(cgroup_ops, cg, &io_service_time_str);
553 if (ret < 0) {
554 if (ret == -EOPNOTSUPP)
555 return read_file_fuse("/proc/diskstats", buf, size, d);
556 }
557
558 f = fopen_cached("/proc/diskstats", "re", &fopen_cache);
559 if (!f)
560 return 0;
561
562 while (getline(&line, &linelen, f) != -1) {
563 ssize_t l;
564 char lbuf[256];
565
566 i = sscanf(line, "%u %u %71s", &stats.major, &stats.minor, stats.dev_name);
567 if (i != 3)
568 continue;
569
570 get_blkio_io_value(io_serviced_str, stats.major, stats.minor, "Read", &stats.read);
571 get_blkio_io_value(io_serviced_str, stats.major, stats.minor, "Write", &stats.write);
572 get_blkio_io_value(io_serviced_str, stats.major, stats.minor, "Discard", &stats.discard);
573
574 get_blkio_io_value(io_merged_str, stats.major, stats.minor, "Read", &stats.read_merged);
575 get_blkio_io_value(io_merged_str, stats.major, stats.minor, "Write", &stats.write_merged);
576 get_blkio_io_value(io_merged_str, stats.major, stats.minor, "Discard", &stats.discard_merged);
577
578 get_blkio_io_value(io_service_bytes_str, stats.major, stats.minor, "Read", &stats.read_sectors);
579 stats.read_sectors = stats.read_sectors / 512;
580 get_blkio_io_value(io_service_bytes_str, stats.major, stats.minor, "Write", &stats.write_sectors);
581 stats.write_sectors = stats.write_sectors / 512;
582 get_blkio_io_value(io_service_bytes_str, stats.major, stats.minor, "Discard", &stats.discard_sectors);
583 stats.discard_sectors = stats.discard_sectors / 512;
584
585 get_blkio_io_value(io_service_time_str, stats.major, stats.minor, "Read", &read_service_time);
586 read_service_time = read_service_time / 1000000;
587 get_blkio_io_value(io_wait_time_str, stats.major, stats.minor, "Read", &read_wait_time);
588 read_wait_time = read_wait_time / 1000000;
589 stats.read_ticks = read_service_time + read_wait_time;
590
591 get_blkio_io_value(io_service_time_str, stats.major, stats.minor, "Write", &write_service_time);
592 write_service_time = write_service_time / 1000000;
593 get_blkio_io_value(io_wait_time_str, stats.major, stats.minor, "Write", &write_wait_time);
594 write_wait_time = write_wait_time / 1000000;
595 stats.write_ticks = write_service_time + write_wait_time;
596
597 get_blkio_io_value(io_service_time_str, stats.major, stats.minor, "Discard", &discard_service_time);
598 discard_service_time = discard_service_time / 1000000;
599 get_blkio_io_value(io_wait_time_str, stats.major, stats.minor, "Discard", &discard_wait_time);
600 discard_wait_time = discard_wait_time / 1000000;
601 stats.discard_ticks = discard_service_time + discard_wait_time;
602
603 get_blkio_io_value(io_service_time_str, stats.major, stats.minor, "Total", &stats.total_ticks);
604 stats.total_ticks = stats.total_ticks / 1000000;
605
606 memset(lbuf, 0, 256);
607 if (stats.read || stats.write || stats.read_merged || stats.write_merged ||
608 stats.read_sectors || stats.write_sectors || stats.read_ticks ||
609 stats.write_ticks || stats.ios_pgr || stats.total_ticks || stats.rq_ticks ||
610 stats.discard_merged || stats.discard_sectors || stats.discard_ticks)
611 snprintf(lbuf, 256, "%u %u %s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
612 stats.major,
613 stats.minor,
614 stats.dev_name,
615 stats.read,
616 stats.read_merged,
617 stats.read_sectors,
618 stats.read_ticks,
619 stats.write,
620 stats.write_merged,
621 stats.write_sectors,
622 stats.write_ticks,
623 stats.ios_pgr,
624 stats.total_ticks,
625 stats.rq_ticks,
626 stats.discard_merged,
627 stats.discard_sectors,
628 stats.discard_ticks);
629 else
630 continue;
631
632 l = snprintf(cache, cache_size, "%s", lbuf);
633 if (l < 0)
634 return log_error(0, "Failed to write cache");
635 if (l >= cache_size)
636 return log_error(0, "Write to cache was truncated");
637
638 cache += l;
639 cache_size -= l;
640 total_len += l;
641 }
642
643 d->cached = 1;
644 d->size = total_len;
645 if (total_len > size)
646 total_len = size;
647 memcpy(buf, d->buf, total_len);
648
649 return total_len;
650 }
651
652 #if RELOADTEST
653 static inline void iwashere(void)
654 {
655 mknod("/tmp/lxcfs-iwashere", S_IFREG, 0644);
656 }
657 #endif
658
659 /*
660 * This function retrieves the busy time of a group of tasks by looking at
661 * cpuacct.usage. Unfortunately, this only makes sense when the container has
662 * been given it's own cpuacct cgroup. If not, this function will take the busy
663 * time of all other taks that do not actually belong to the container into
664 * account as well. If someone has a clever solution for this please send a
665 * patch!
666 */
667 static double get_reaper_busy(pid_t task)
668 {
669 __do_free char *cgroup = NULL, *usage_str = NULL;
670 uint64_t usage = 0;
671 pid_t initpid;
672
673 initpid = lookup_initpid_in_store(task);
674 if (initpid <= 0)
675 return 0;
676
677 cgroup = get_pid_cgroup(initpid, "cpuacct");
678 if (!cgroup)
679 return 0;
680 prune_init_slice(cgroup);
681
682 if (!cgroup_ops->get(cgroup_ops, "cpuacct", cgroup, "cpuacct.usage", &usage_str))
683 return 0;
684
685 if (safe_uint64(usage_str, &usage, 10) < 0)
686 lxcfs_error("Failed to convert usage %s", usage_str);
687
688 return ((double)usage / 1000000000);
689 }
690
691 static uint64_t get_reaper_start_time(pid_t pid)
692 {
693 __do_free void *fopen_cache = NULL;
694 __do_fclose FILE *f = NULL;
695 int ret;
696 uint64_t starttime;
697 char path[STRLITERALLEN("/proc/") + LXCFS_NUMSTRLEN64 +
698 STRLITERALLEN("/stat") + 1];
699 pid_t qpid;
700
701 qpid = lookup_initpid_in_store(pid);
702 if (qpid <= 0)
703 return ret_errno(EINVAL);
704
705 ret = snprintf(path, sizeof(path), "/proc/%d/stat", qpid);
706 if (ret < 0 || (size_t)ret >= sizeof(path))
707 return ret_errno(EINVAL);
708
709 f = fopen_cached(path, "re", &fopen_cache);
710 if (!f)
711 return ret_errno(EINVAL);
712
713 /* Note that the *scanf() argument supression requires that length
714 * modifiers such as "l" are omitted. Otherwise some compilers will yell
715 * at us. It's like telling someone you're not married and then asking
716 * if you can bring your wife to the party.
717 */
718 ret = fscanf(f, "%*d " /* (1) pid %d */
719 "%*s " /* (2) comm %s */
720 "%*c " /* (3) state %c */
721 "%*d " /* (4) ppid %d */
722 "%*d " /* (5) pgrp %d */
723 "%*d " /* (6) session %d */
724 "%*d " /* (7) tty_nr %d */
725 "%*d " /* (8) tpgid %d */
726 "%*u " /* (9) flags %u */
727 "%*u " /* (10) minflt %lu */
728 "%*u " /* (11) cminflt %lu */
729 "%*u " /* (12) majflt %lu */
730 "%*u " /* (13) cmajflt %lu */
731 "%*u " /* (14) utime %lu */
732 "%*u " /* (15) stime %lu */
733 "%*d " /* (16) cutime %ld */
734 "%*d " /* (17) cstime %ld */
735 "%*d " /* (18) priority %ld */
736 "%*d " /* (19) nice %ld */
737 "%*d " /* (20) num_threads %ld */
738 "%*d " /* (21) itrealvalue %ld */
739 "%" PRIu64, /* (22) starttime %llu */
740 &starttime);
741 if (ret != 1)
742 return ret_errno(EINVAL);
743
744 return ret_set_errno(starttime, 0);
745 }
746
747 static double get_reaper_start_time_in_sec(pid_t pid)
748 {
749 uint64_t clockticks, ticks_per_sec;
750 int64_t ret;
751 double res = 0;
752
753 clockticks = get_reaper_start_time(pid);
754 if (clockticks <= 0)
755 return log_debug(0, "Failed to retrieve start time of pid %d", pid);
756
757 ret = sysconf(_SC_CLK_TCK);
758 if (ret < 0)
759 return log_debug(0, "Failed to determine number of clock ticks in a second");
760
761 ticks_per_sec = (uint64_t)ret;
762 res = (double)clockticks / ticks_per_sec;
763 return res;
764 }
765
766 static double get_reaper_age(pid_t pid)
767 {
768 uint64_t uptime_ms;
769 double procstart, procage;
770
771 /*
772 * We need to substract the time the process has started since system
773 * boot minus the time when the system has started to get the actual
774 * reaper age.
775 */
776 procstart = get_reaper_start_time_in_sec(pid);
777 procage = procstart;
778 if (procstart > 0) {
779 int ret;
780 struct timespec spec;
781
782 ret = clock_gettime(CLOCK_BOOTTIME, &spec);
783 if (ret < 0)
784 return 0;
785
786 uptime_ms = (spec.tv_sec * 1000) + (spec.tv_nsec * 1e-6);
787 procage = (uptime_ms - (procstart * 1000)) / 1000;
788 }
789
790 return procage;
791 }
792
793 /*
794 * We read /proc/uptime and reuse its second field.
795 * For the first field, we use the mtime for the reaper for
796 * the calling pid as returned by getreaperage
797 */
798 static int proc_uptime_read(char *buf, size_t size, off_t offset,
799 struct fuse_file_info *fi)
800 {
801 struct fuse_context *fc = fuse_get_context();
802 struct file_info *d = INTTYPE_TO_PTR(fi->fh);
803 char *cache = d->buf;
804 ssize_t total_len = 0, ret = 0;
805 double busytime, idletime, reaperage;
806
807 #if RELOADTEST
808 iwashere();
809 #endif
810
811 if (offset) {
812 int left;
813
814 if (offset > d->size)
815 return -EINVAL;
816
817 if (!d->cached)
818 return 0;
819
820 left = d->size - offset;
821 total_len = left > size ? size : left;
822 memcpy(buf, cache + offset, total_len);
823
824 return total_len;
825 }
826
827 reaperage = get_reaper_age(fc->pid);
828 /*
829 * To understand why this is done, please read the comment to the
830 * get_reaper_busy() function.
831 */
832 idletime = reaperage;
833 busytime = get_reaper_busy(fc->pid);
834 if (reaperage >= busytime)
835 idletime = reaperage - busytime;
836
837 ret = snprintf(d->buf, d->buflen, "%.2lf %.2lf\n", reaperage, idletime);
838 if (ret < 0 || ret >= d->buflen)
839 return read_file_fuse("/proc/uptime", buf, size, d);
840 total_len = ret;
841
842 d->cached = 1;
843 d->size = total_len;
844 if (total_len > size)
845 total_len = size;
846 memcpy(buf, d->buf, total_len);
847
848 return total_len;
849 }
850
851 #define CPUALL_MAX_SIZE (BUF_RESERVE_SIZE / 2)
852 static int proc_stat_read(char *buf, size_t size, off_t offset,
853 struct fuse_file_info *fi)
854 {
855 __do_free char *cg = NULL, *cpuset = NULL, *line = NULL;
856 __do_free void *fopen_cache = NULL;
857 __do_free struct cpuacct_usage *cg_cpu_usage = NULL;
858 __do_fclose FILE *f = NULL;
859 struct fuse_context *fc = fuse_get_context();
860 struct lxcfs_opts *opts = (struct lxcfs_opts *)fc->private_data;
861 struct file_info *d = INTTYPE_TO_PTR(fi->fh);
862 size_t linelen = 0, total_len = 0;
863 int curcpu = -1; /* cpu numbering starts at 0 */
864 int physcpu = 0;
865 uint64_t user = 0, nice = 0, system = 0, idle = 0, iowait = 0, irq = 0,
866 softirq = 0, steal = 0, guest = 0, guest_nice = 0;
867 uint64_t user_sum = 0, nice_sum = 0, system_sum = 0, idle_sum = 0,
868 iowait_sum = 0, irq_sum = 0, softirq_sum = 0, steal_sum = 0,
869 guest_sum = 0, guest_nice_sum = 0;
870 char cpuall[CPUALL_MAX_SIZE];
871 /* reserve for cpu all */
872 char *cache = d->buf + CPUALL_MAX_SIZE;
873 size_t cache_size = d->buflen - CPUALL_MAX_SIZE;
874 int cg_cpu_usage_size = 0;
875
876 if (offset) {
877 int left;
878
879 if (offset > d->size)
880 return -EINVAL;
881
882 if (!d->cached)
883 return 0;
884
885 left = d->size - offset;
886 total_len = left > size ? size : left;
887 memcpy(buf, d->buf + offset, total_len);
888
889 return total_len;
890 }
891
892 pid_t initpid = lookup_initpid_in_store(fc->pid);
893 if (initpid <= 1 || is_shared_pidns(initpid))
894 initpid = fc->pid;
895
896 /*
897 * when container run with host pid namespace initpid == 1, cgroup will "/"
898 * we should return host os's /proc contents.
899 * in some case cpuacct_usage.all in "/" will larger then /proc/stat
900 */
901 if (initpid == 1)
902 return read_file_fuse("/proc/stat", buf, size, d);
903
904 cg = get_pid_cgroup(initpid, "cpuset");
905 if (!cg)
906 return read_file_fuse("/proc/stat", buf, size, d);
907 prune_init_slice(cg);
908
909 cpuset = get_cpuset(cg);
910 if (!cpuset)
911 return 0;
912
913 f = fopen_cached("/proc/stat", "re", &fopen_cache);
914 if (!f)
915 return 0;
916
917 /* Skip first system cpu line. */
918 if (getline(&line, &linelen, f) < 0)
919 return log_error(0, "proc_stat_read read first line failed");
920
921 /*
922 * Read cpuacct.usage_all for all CPUs.
923 * If the cpuacct cgroup is present, it is used to calculate the container's
924 * CPU usage. If not, values from the host's /proc/stat are used.
925 */
926 if (read_cpuacct_usage_all(cg, cpuset, &cg_cpu_usage, &cg_cpu_usage_size) == 0) {
927 if (cgroup_ops->can_use_cpuview(cgroup_ops) && opts && opts->use_cfs) {
928 total_len = cpuview_proc_stat(cg, cpuset, cg_cpu_usage,
929 cg_cpu_usage_size, f,
930 d->buf, d->buflen);
931 goto out;
932 }
933 } else {
934 lxcfs_v("proc_stat_read failed to read from cpuacct, falling back to the host's /proc/stat");
935 }
936
937 while (getline(&line, &linelen, f) != -1) {
938 ssize_t l;
939 char cpu_char[10]; /* That's a lot of cores */
940 char *c;
941 uint64_t all_used, cg_used, new_idle;
942 int ret;
943
944 if (strlen(line) == 0)
945 continue;
946 if (sscanf(line, "cpu%9[^ ]", cpu_char) != 1) {
947 /* not a ^cpuN line containing a number N, just print it */
948 l = snprintf(cache, cache_size, "%s", line);
949 if (l < 0)
950 return log_error(0, "Failed to write cache");
951 if (l >= cache_size)
952 return log_error(0, "Write to cache was truncated");
953
954 cache += l;
955 cache_size -= l;
956 total_len += l;
957
958 continue;
959 }
960
961 if (sscanf(cpu_char, "%d", &physcpu) != 1)
962 continue;
963
964 if (!cpu_in_cpuset(physcpu, cpuset))
965 continue;
966
967 curcpu++;
968
969 ret = sscanf(line, "%*s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
970 &user,
971 &nice,
972 &system,
973 &idle,
974 &iowait,
975 &irq,
976 &softirq,
977 &steal,
978 &guest,
979 &guest_nice);
980 if (ret != 10 || !cg_cpu_usage) {
981 c = strchr(line, ' ');
982 if (!c)
983 continue;
984
985 l = snprintf(cache, cache_size, "cpu%d%s", curcpu, c);
986 if (l < 0)
987 return log_error(0, "Failed to write cache");
988 if (l >= cache_size)
989 return log_error(0, "Write to cache was truncated");
990
991 cache += l;
992 cache_size -= l;
993 total_len += l;
994
995 if (ret != 10)
996 continue;
997 }
998
999 if (cg_cpu_usage) {
1000 if (physcpu >= cg_cpu_usage_size)
1001 break;
1002
1003 all_used = user + nice + system + iowait + irq + softirq + steal + guest + guest_nice;
1004 cg_used = cg_cpu_usage[physcpu].user + cg_cpu_usage[physcpu].system;
1005
1006 if (all_used >= cg_used) {
1007 new_idle = idle + (all_used - cg_used);
1008
1009 } else {
1010 lxcfs_error("cpu%d from %s has unexpected cpu time: %" PRIu64 " in /proc/stat, %" PRIu64 " in cpuacct.usage_all; unable to determine idle time",
1011 curcpu, cg, all_used, cg_used);
1012 new_idle = idle;
1013 }
1014
1015 l = snprintf(cache, cache_size,
1016 "cpu%d %" PRIu64 " 0 %" PRIu64 " %" PRIu64 " 0 0 0 0 0 0\n",
1017 curcpu, cg_cpu_usage[physcpu].user,
1018 cg_cpu_usage[physcpu].system, new_idle);
1019 if (l < 0)
1020 return log_error(0, "Failed to write cache");
1021 if (l >= cache_size)
1022 return log_error(0, "Write to cache was truncated");
1023
1024 cache += l;
1025 cache_size -= l;
1026 total_len += l;
1027
1028 user_sum += cg_cpu_usage[physcpu].user;
1029 system_sum += cg_cpu_usage[physcpu].system;
1030 idle_sum += new_idle;
1031 } else {
1032 user_sum += user;
1033 nice_sum += nice;
1034 system_sum += system;
1035 idle_sum += idle;
1036 iowait_sum += iowait;
1037 irq_sum += irq;
1038 softirq_sum += softirq;
1039 steal_sum += steal;
1040 guest_sum += guest;
1041 guest_nice_sum += guest_nice;
1042 }
1043 }
1044
1045 cache = d->buf;
1046
1047 int cpuall_len = snprintf(cpuall, CPUALL_MAX_SIZE, "cpu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
1048 user_sum,
1049 nice_sum,
1050 system_sum,
1051 idle_sum,
1052 iowait_sum,
1053 irq_sum,
1054 softirq_sum,
1055 steal_sum,
1056 guest_sum,
1057 guest_nice_sum);
1058 if (cpuall_len > 0 && cpuall_len < CPUALL_MAX_SIZE) {
1059 memcpy(cache, cpuall, cpuall_len);
1060 cache += cpuall_len;
1061 } else {
1062 /* shouldn't happen */
1063 lxcfs_error("proc_stat_read copy cpuall failed, cpuall_len=%d", cpuall_len);
1064 cpuall_len = 0;
1065 }
1066
1067 memmove(cache, d->buf + CPUALL_MAX_SIZE, total_len);
1068 total_len += cpuall_len;
1069
1070 out:
1071 d->cached = 1;
1072 d->size = total_len;
1073 if (total_len > size)
1074 total_len = size;
1075
1076 memcpy(buf, d->buf, total_len);
1077 return total_len;
1078 }
1079
1080 /* Note that "memory.stat" in cgroup2 is hierarchical by default. */
1081 static bool cgroup_parse_memory_stat(const char *cgroup, struct memory_stat *mstat)
1082 {
1083 __do_close int fd = -EBADF;
1084 __do_fclose FILE *f = NULL;
1085 __do_free char *line = NULL;
1086 __do_free void *fdopen_cache = NULL;
1087 bool unified;
1088 size_t len = 0;
1089 ssize_t linelen;
1090
1091 fd = cgroup_ops->get_memory_stats_fd(cgroup_ops, cgroup);
1092 if (fd < 0)
1093 return false;
1094
1095 f = fdopen_cached(fd, "re", &fdopen_cache);
1096 if (!f)
1097 return false;
1098
1099 unified = pure_unified_layout(cgroup_ops);
1100 while ((linelen = getline(&line, &len, f)) != -1) {
1101 if (!unified && startswith(line, "hierarchical_memory_limit")) {
1102 sscanf(line, "hierarchical_memory_limit %" PRIu64, &(mstat->hierarchical_memory_limit));
1103 } else if (!unified && startswith(line, "hierarchical_memsw_limit")) {
1104 sscanf(line, "hierarchical_memsw_limit %" PRIu64, &(mstat->hierarchical_memsw_limit));
1105 } else if (startswith(line, unified ? "file" :"total_cache")) {
1106 sscanf(line, unified ? "file %" PRIu64 : "total_cache %" PRIu64, &(mstat->total_cache));
1107 } else if (!unified && startswith(line, "total_rss")) {
1108 sscanf(line, "total_rss %" PRIu64, &(mstat->total_rss));
1109 } else if (!unified && startswith(line, "total_rss_huge")) {
1110 sscanf(line, "total_rss_huge %" PRIu64, &(mstat->total_rss_huge));
1111 } else if (startswith(line, unified ? "shmem" : "total_shmem")) {
1112 sscanf(line, unified ? "shmem %" PRIu64 : "total_shmem %" PRIu64, &(mstat->total_shmem));
1113 } else if (startswith(line, unified ? "file_mapped" : "total_mapped_file")) {
1114 sscanf(line, unified ? "file_mapped %" PRIu64 : "total_mapped_file %" PRIu64, &(mstat->total_mapped_file));
1115 } else if (!unified && startswith(line, "total_dirty")) {
1116 sscanf(line, "total_dirty %" PRIu64, &(mstat->total_dirty));
1117 } else if (!unified && startswith(line, "total_writeback")) {
1118 sscanf(line, "total_writeback %" PRIu64, &(mstat->total_writeback));
1119 } else if (!unified && startswith(line, "total_swap")) {
1120 sscanf(line, "total_swap %" PRIu64, &(mstat->total_swap));
1121 } else if (!unified && startswith(line, "total_pgpgin")) {
1122 sscanf(line, "total_pgpgin %" PRIu64, &(mstat->total_pgpgin));
1123 } else if (!unified && startswith(line, "total_pgpgout")) {
1124 sscanf(line, "total_pgpgout %" PRIu64, &(mstat->total_pgpgout));
1125 } else if (startswith(line, unified ? "pgfault" : "total_pgfault")) {
1126 sscanf(line, unified ? "pgfault %" PRIu64 : "total_pgfault %" PRIu64, &(mstat->total_pgfault));
1127 } else if (startswith(line, unified ? "pgmajfault" : "total_pgmajfault")) {
1128 sscanf(line, unified ? "pgmajfault %" PRIu64 : "total_pgmajfault %" PRIu64, &(mstat->total_pgmajfault));
1129 } else if (startswith(line, unified ? "inactive_anon" : "total_inactive_anon")) {
1130 sscanf(line, unified ? "inactive_anon %" PRIu64 : "total_inactive_anon %" PRIu64, &(mstat->total_inactive_anon));
1131 } else if (startswith(line, unified ? "active_anon" : "total_active_anon")) {
1132 sscanf(line, unified ? "active_anon %" PRIu64 : "total_active_anon %" PRIu64, &(mstat->total_active_anon));
1133 } else if (startswith(line, unified ? "inactive_file" : "total_inactive_file")) {
1134 sscanf(line, unified ? "inactive_file %" PRIu64 : "total_inactive_file %" PRIu64, &(mstat->total_inactive_file));
1135 } else if (startswith(line, unified ? "active_file" : "total_active_file")) {
1136 sscanf(line, unified ? "active_file %" PRIu64 : "total_active_file %" PRIu64, &(mstat->total_active_file));
1137 } else if (startswith(line, unified ? "unevictable" : "total_unevictable")) {
1138 sscanf(line, unified ? "unevictable %" PRIu64 : "total_unevictable %" PRIu64, &(mstat->total_unevictable));
1139 }
1140 }
1141
1142 return true;
1143 }
1144
1145 static int proc_meminfo_read(char *buf, size_t size, off_t offset,
1146 struct fuse_file_info *fi)
1147 {
1148 __do_free char *cgroup = NULL, *line = NULL, *memusage_str = NULL,
1149 *memswusage_str = NULL, *memswpriority_str = NULL;
1150 __do_free void *fopen_cache = NULL;
1151 __do_fclose FILE *f = NULL;
1152 struct fuse_context *fc = fuse_get_context();
1153 struct lxcfs_opts *opts = (struct lxcfs_opts *)fuse_get_context()->private_data;
1154 bool wants_swap = opts && !opts->swap_off && liblxcfs_can_use_swap(), host_swap = false;
1155 struct file_info *d = INTTYPE_TO_PTR(fi->fh);
1156 uint64_t memlimit = 0, memusage = 0, memswlimit = 0, memswusage = 0,
1157 hosttotal = 0, swfree = 0, swusage = 0, swtotal = 0,
1158 memswpriority = 1;
1159 struct memory_stat mstat = {};
1160 size_t linelen = 0, total_len = 0;
1161 char *cache = d->buf;
1162 size_t cache_size = d->buflen;
1163 int ret;
1164
1165 if (offset) {
1166 int left;
1167
1168 if (offset > d->size)
1169 return -EINVAL;
1170
1171 if (!d->cached)
1172 return 0;
1173
1174 left = d->size - offset;
1175 total_len = left > size ? size : left;
1176 memcpy(buf, cache + offset, total_len);
1177
1178 return total_len;
1179 }
1180
1181 pid_t initpid = lookup_initpid_in_store(fc->pid);
1182 if (initpid <= 1 || is_shared_pidns(initpid))
1183 initpid = fc->pid;
1184
1185 cgroup = get_pid_cgroup(initpid, "memory");
1186 if (!cgroup)
1187 return read_file_fuse("/proc/meminfo", buf, size, d);
1188
1189 prune_init_slice(cgroup);
1190
1191 /* memory limits */
1192 ret = cgroup_ops->get_memory_current(cgroup_ops, cgroup, &memusage_str);
1193 if (ret < 0)
1194 return read_file_fuse("/proc/meminfo", buf, size, d);
1195
1196 if (safe_uint64(memusage_str, &memusage, 10) < 0)
1197 lxcfs_error("Failed to convert memusage %s", memusage_str);
1198
1199 if (!cgroup_parse_memory_stat(cgroup, &mstat))
1200 return read_file_fuse("/proc/meminfo", buf, size, d);
1201
1202 memlimit = get_min_memlimit(cgroup, false);
1203
1204 /*
1205 * Following values are allowed to fail, because swapaccount might be
1206 * turned off for current kernel.
1207 */
1208 if (wants_swap) {
1209 memswlimit = get_min_memlimit(cgroup, true);
1210 if (memswlimit > 0) {
1211 ret = cgroup_ops->get_memory_swap_current(cgroup_ops, cgroup, &memswusage_str);
1212 if (ret >= 0 && safe_uint64(memswusage_str, &memswusage, 10) == 0) {
1213 if (memlimit > memswlimit)
1214 swtotal = 0;
1215 else
1216 swtotal = (memswlimit - memlimit) / 1024;
1217 if (memusage > memswusage || swtotal == 0)
1218 swusage = 0;
1219 else
1220 swusage = (memswusage - memusage) / 1024;
1221 }
1222 }
1223
1224 ret = cgroup_ops->get_memory_swappiness(cgroup_ops, cgroup, &memswpriority_str);
1225 if (ret >= 0)
1226 safe_uint64(memswpriority_str, &memswpriority, 10);
1227 }
1228
1229 f = fopen_cached("/proc/meminfo", "re", &fopen_cache);
1230 if (!f)
1231 return read_file_fuse("/proc/meminfo", buf, size, d);
1232
1233 memusage /= 1024;
1234 memlimit /= 1024;
1235 while (getline(&line, &linelen, f) != -1) {
1236 ssize_t l;
1237 char *printme, lbuf[100];
1238
1239 memset(lbuf, 0, 100);
1240 if (startswith(line, "MemTotal:")) {
1241 sscanf(line+sizeof("MemTotal:")-1, "%" PRIu64, &hosttotal);
1242 if (memlimit == 0)
1243 memlimit = hosttotal;
1244
1245 if (hosttotal < memlimit)
1246 memlimit = hosttotal;
1247 snprintf(lbuf, 100, "MemTotal: %8" PRIu64 " kB\n", memlimit);
1248 printme = lbuf;
1249 } else if (startswith(line, "MemFree:")) {
1250 snprintf(lbuf, 100, "MemFree: %8" PRIu64 " kB\n", memlimit - memusage);
1251 printme = lbuf;
1252 } else if (startswith(line, "MemAvailable:")) {
1253 snprintf(lbuf, 100, "MemAvailable: %8" PRIu64 " kB\n", memlimit - memusage + mstat.total_cache / 1024);
1254 printme = lbuf;
1255 } else if (startswith(line, "SwapTotal:")) {
1256 if (wants_swap) {
1257 uint64_t hostswtotal = 0;
1258
1259 sscanf(line + STRLITERALLEN("SwapTotal:"), "%" PRIu64, &hostswtotal);
1260
1261 /*
1262 * If swtotal is 0 it should mean that
1263 * memory.memsw.limit_in_bytes and
1264 * memory.limit_in_bytes are both unlimited or
1265 * both set to the same value. In both cases we
1266 * have no idea what the technical swap limit
1267 * is supposed to be (It's a shared limit
1268 * anyway.) so fallback to the host's values in
1269 * that case too.
1270 */
1271 if ((hostswtotal < swtotal) || swtotal == 0) {
1272 swtotal = hostswtotal;
1273 host_swap = true;
1274 }
1275
1276 /* When swappiness is 0, pretend we can't swap. */
1277 if (memswpriority == 0) {
1278 swtotal = swusage;
1279 }
1280 }
1281
1282 snprintf(lbuf, 100, "SwapTotal: %8" PRIu64 " kB\n", swtotal);
1283 printme = lbuf;
1284 } else if (startswith(line, "SwapFree:")) {
1285 if (wants_swap) {
1286 uint64_t hostswfree = 0;
1287
1288 if (host_swap) {
1289 sscanf(line + STRLITERALLEN("SwapFree:"), "%" PRIu64, &hostswfree);
1290 swfree = hostswfree;
1291 } else if (swtotal >= swusage) {
1292 swfree = swtotal - swusage;
1293 }
1294 }
1295
1296 snprintf(lbuf, 100, "SwapFree: %8" PRIu64 " kB\n", swfree);
1297 printme = lbuf;
1298 } else if (startswith(line, "Slab:")) {
1299 snprintf(lbuf, 100, "Slab: %8" PRIu64 " kB\n", (uint64_t)0);
1300 printme = lbuf;
1301 } else if (startswith(line, "Buffers:")) {
1302 snprintf(lbuf, 100, "Buffers: %8" PRIu64 " kB\n", (uint64_t)0);
1303 printme = lbuf;
1304 } else if (startswith(line, "Cached:")) {
1305 snprintf(lbuf, 100, "Cached: %8" PRIu64 " kB\n",
1306 mstat.total_cache / 1024);
1307 printme = lbuf;
1308 } else if (startswith(line, "SwapCached:")) {
1309 snprintf(lbuf, 100, "SwapCached: %8" PRIu64 " kB\n", (uint64_t)0);
1310 printme = lbuf;
1311 } else if (startswith(line, "Active:")) {
1312 snprintf(lbuf, 100, "Active: %8" PRIu64 " kB\n",
1313 (mstat.total_active_anon +
1314 mstat.total_active_file) /
1315 1024);
1316 printme = lbuf;
1317 } else if (startswith(line, "Inactive:")) {
1318 snprintf(lbuf, 100, "Inactive: %8" PRIu64 " kB\n",
1319 (mstat.total_inactive_anon +
1320 mstat.total_inactive_file) /
1321 1024);
1322 printme = lbuf;
1323 } else if (startswith(line, "Active(anon):")) {
1324 snprintf(lbuf, 100, "Active(anon): %8" PRIu64 " kB\n",
1325 mstat.total_active_anon / 1024);
1326 printme = lbuf;
1327 } else if (startswith(line, "Inactive(anon):")) {
1328 snprintf(lbuf, 100, "Inactive(anon): %8" PRIu64 " kB\n",
1329 mstat.total_inactive_anon / 1024);
1330 printme = lbuf;
1331 } else if (startswith(line, "Active(file):")) {
1332 snprintf(lbuf, 100, "Active(file): %8" PRIu64 " kB\n",
1333 mstat.total_active_file / 1024);
1334 printme = lbuf;
1335 } else if (startswith(line, "Inactive(file):")) {
1336 snprintf(lbuf, 100, "Inactive(file): %8" PRIu64 " kB\n",
1337 mstat.total_inactive_file / 1024);
1338 printme = lbuf;
1339 } else if (startswith(line, "Unevictable:")) {
1340 snprintf(lbuf, 100, "Unevictable: %8" PRIu64 " kB\n",
1341 mstat.total_unevictable / 1024);
1342 printme = lbuf;
1343 } else if (startswith(line, "Dirty:")) {
1344 snprintf(lbuf, 100, "Dirty: %8" PRIu64 " kB\n",
1345 mstat.total_dirty / 1024);
1346 printme = lbuf;
1347 } else if (startswith(line, "Writeback:")) {
1348 snprintf(lbuf, 100, "Writeback: %8" PRIu64 " kB\n",
1349 mstat.total_writeback / 1024);
1350 printme = lbuf;
1351 } else if (startswith(line, "AnonPages:")) {
1352 snprintf(lbuf, 100, "AnonPages: %8" PRIu64 " kB\n",
1353 (mstat.total_active_anon +
1354 mstat.total_inactive_anon - mstat.total_shmem) /
1355 1024);
1356 printme = lbuf;
1357 } else if (startswith(line, "Mapped:")) {
1358 snprintf(lbuf, 100, "Mapped: %8" PRIu64 " kB\n",
1359 mstat.total_mapped_file / 1024);
1360 printme = lbuf;
1361 } else if (startswith(line, "SReclaimable:")) {
1362 snprintf(lbuf, 100, "SReclaimable: %8" PRIu64 " kB\n", (uint64_t)0);
1363 printme = lbuf;
1364 } else if (startswith(line, "SUnreclaim:")) {
1365 snprintf(lbuf, 100, "SUnreclaim: %8" PRIu64 " kB\n", (uint64_t)0);
1366 printme = lbuf;
1367 } else if (startswith(line, "Shmem:")) {
1368 snprintf(lbuf, 100, "Shmem: %8" PRIu64 " kB\n",
1369 mstat.total_shmem / 1024);
1370 printme = lbuf;
1371 } else if (startswith(line, "ShmemHugePages:")) {
1372 snprintf(lbuf, 100, "ShmemHugePages: %8" PRIu64 " kB\n", (uint64_t)0);
1373 printme = lbuf;
1374 } else if (startswith(line, "ShmemPmdMapped:")) {
1375 snprintf(lbuf, 100, "ShmemPmdMapped: %8" PRIu64 " kB\n", (uint64_t)0);
1376 printme = lbuf;
1377 } else if (startswith(line, "AnonHugePages:")) {
1378 snprintf(lbuf, 100, "AnonHugePages: %8" PRIu64 " kB\n",
1379 mstat.total_rss_huge / 1024);
1380 printme = lbuf;
1381 } else {
1382 printme = line;
1383 }
1384
1385 l = snprintf(cache, cache_size, "%s", printme);
1386 if (l < 0)
1387 return log_error(0, "Failed to write cache");
1388 if (l >= cache_size)
1389 return log_error(0, "Write to cache was truncated");
1390
1391 cache += l;
1392 cache_size -= l;
1393 total_len += l;
1394 }
1395
1396 d->cached = 1;
1397 d->size = total_len;
1398 if (total_len > size)
1399 total_len = size;
1400 memcpy(buf, d->buf, total_len);
1401
1402 return total_len;
1403 }
1404
1405 __lxcfs_fuse_ops int proc_read(const char *path, char *buf, size_t size,
1406 off_t offset, struct fuse_file_info *fi)
1407 {
1408 struct file_info *f = INTTYPE_TO_PTR(fi->fh);
1409
1410 switch (f->type) {
1411 case LXC_TYPE_PROC_MEMINFO:
1412 if (liblxcfs_functional())
1413 return proc_meminfo_read(buf, size, offset, fi);
1414
1415 return read_file_fuse_with_offset(LXC_TYPE_PROC_MEMINFO_PATH,
1416 buf, size, offset, f);
1417 case LXC_TYPE_PROC_CPUINFO:
1418 if (liblxcfs_functional())
1419 return proc_cpuinfo_read(buf, size, offset, fi);
1420
1421 return read_file_fuse_with_offset(LXC_TYPE_PROC_CPUINFO_PATH,
1422 buf, size, offset, f);
1423 case LXC_TYPE_PROC_UPTIME:
1424 if (liblxcfs_functional())
1425 return proc_uptime_read(buf, size, offset, fi);
1426
1427 return read_file_fuse_with_offset(LXC_TYPE_PROC_UPTIME_PATH,
1428 buf, size, offset, f);
1429 case LXC_TYPE_PROC_STAT:
1430 if (liblxcfs_functional())
1431 return proc_stat_read(buf, size, offset, fi);
1432
1433 return read_file_fuse_with_offset(LXC_TYPE_PROC_STAT_PATH, buf,
1434 size, offset, f);
1435 case LXC_TYPE_PROC_DISKSTATS:
1436 if (liblxcfs_functional())
1437 return proc_diskstats_read(buf, size, offset, fi);
1438
1439 return read_file_fuse_with_offset(LXC_TYPE_PROC_DISKSTATS_PATH,
1440 buf, size, offset, f);
1441 case LXC_TYPE_PROC_SWAPS:
1442 if (liblxcfs_functional())
1443 return proc_swaps_read(buf, size, offset, fi);
1444
1445 return read_file_fuse_with_offset(LXC_TYPE_PROC_SWAPS_PATH, buf,
1446 size, offset, f);
1447 case LXC_TYPE_PROC_LOADAVG:
1448 if (liblxcfs_functional())
1449 return proc_loadavg_read(buf, size, offset, fi);
1450
1451 return read_file_fuse_with_offset(LXC_TYPE_PROC_LOADAVG_PATH,
1452 buf, size, offset, f);
1453 }
1454
1455 return -EINVAL;
1456 }