blob: 47f2fc3b2597eb3f23b4cda2e899cf41a3802afd [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenabc0f4f1999-12-08 23:19:36 +00002/*
3 * Mini free implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenabc0f4f1999-12-08 23:19:36 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersenabc0f4f1999-12-08 23:19:36 +00008 */
9
Mark Whitley827e45c2001-03-09 23:59:51 +000010/* getopt not needed */
11
Pere Orga5bc8c002011-04-11 03:29:49 +020012//usage:#define free_trivial_usage
13//usage: "" IF_DESKTOP("[-b/k/m/g]")
14//usage:#define free_full_usage "\n\n"
15//usage: "Display the amount of free and used system memory"
16//usage:
17//usage:#define free_example_usage
18//usage: "$ free\n"
19//usage: " total used free shared buffers\n"
20//usage: " Mem: 257628 248724 8904 59644 93124\n"
21//usage: " Swap: 128516 8404 120112\n"
22//usage: "Total: 386144 257128 129016\n"
23
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
Denys Vlasenko67905e22011-07-26 13:42:12 +020025#ifdef __linux__
26# include <sys/sysinfo.h>
27#endif
Eric Andersenabc0f4f1999-12-08 23:19:36 +000028
Denys Vlasenko55429342010-10-01 21:57:59 +020029struct globals {
30 unsigned mem_unit;
31#if ENABLE_DESKTOP
32 unsigned unit_steps;
33# define G_unit_steps G.unit_steps
34#else
35# define G_unit_steps 10
36#endif
Denys Vlasenkoe8d0a142011-01-16 11:21:15 +010037} FIX_ALIASING;
Denys Vlasenko55429342010-10-01 21:57:59 +020038#define G (*(struct globals*)&bb_common_bufsiz1)
39#define INIT_G() do { } while (0)
40
41
42static unsigned long long scale(unsigned long d)
43{
44 return ((unsigned long long)d * G.mem_unit) >> G_unit_steps;
45}
46
47
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000048int free_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Bernhard Reutner-Fischer7e7728c2010-02-26 09:28:30 +010049int free_main(int argc UNUSED_PARAM, char **argv IF_NOT_DESKTOP(UNUSED_PARAM))
Eric Andersenabc0f4f1999-12-08 23:19:36 +000050{
Erik Andersend07ee462000-02-21 21:26:32 +000051 struct sysinfo info;
Denys Vlasenko55429342010-10-01 21:57:59 +020052
53 INIT_G();
Denys Vlasenkobef57112010-02-21 05:39:59 +010054
55#if ENABLE_DESKTOP
Denys Vlasenko55429342010-10-01 21:57:59 +020056 G.unit_steps = 10;
57 if (argv[1] && argv[1][0] == '-') {
58 switch (argv[1][1]) {
59 case 'b':
60 G.unit_steps = 0;
61 break;
62 case 'k': /* 2^10 */
63 /* G.unit_steps = 10; - already is */
64 break;
65 case 'm': /* 2^(2*10) */
66 G.unit_steps = 20;
67 break;
68 case 'g': /* 2^(3*10) */
69 G.unit_steps = 30;
70 break;
71 default:
72 bb_show_usage();
73 }
74 }
Denys Vlasenkobef57112010-02-21 05:39:59 +010075#endif
76
Erik Andersend07ee462000-02-21 21:26:32 +000077 sysinfo(&info);
Eric Andersen73de6562000-09-10 16:10:41 +000078
79 /* Kernels prior to 2.4.x will return info.mem_unit==0, so cope... */
Denys Vlasenko55429342010-10-01 21:57:59 +020080 G.mem_unit = (info.mem_unit ? info.mem_unit : 1);
Eric Andersen73de6562000-09-10 16:10:41 +000081
Denys Vlasenko7bfbbd42010-08-12 01:56:44 +020082 printf(" %13s%13s%13s%13s%13s\n",
Denys Vlasenkobef57112010-02-21 05:39:59 +010083 "total",
84 "used",
85 "free",
86 "shared", "buffers" /* swap and total don't have these columns */
Denys Vlasenko7bfbbd42010-08-12 01:56:44 +020087 /* procps version 3.2.8 also shows "cached" column, but
88 * sysinfo() does not provide this value, need to parse
89 * /proc/meminfo instead and get "Cached: NNN kB" from there.
90 */
Denys Vlasenkobef57112010-02-21 05:39:59 +010091 );
Denys Vlasenko55429342010-10-01 21:57:59 +020092
93#define FIELDS_5 "%13llu%13llu%13llu%13llu%13llu\n"
94#define FIELDS_3 (FIELDS_5 + 2*6)
95#define FIELDS_2 (FIELDS_5 + 3*6)
96
Denys Vlasenko7bfbbd42010-08-12 01:56:44 +020097 printf("Mem: ");
98 printf(FIELDS_5,
Denys Vlasenko55429342010-10-01 21:57:59 +020099 scale(info.totalram),
100 scale(info.totalram - info.freeram),
101 scale(info.freeram),
102 scale(info.sharedram),
103 scale(info.bufferram)
Denys Vlasenkobef57112010-02-21 05:39:59 +0100104 );
Denys Vlasenko7bfbbd42010-08-12 01:56:44 +0200105 /* Show alternate, more meaningful busy/free numbers by counting
106 * buffer cache as free memory (make it "-/+ buffers/cache"
107 * if/when we add support for "cached" column): */
108 printf("-/+ buffers: ");
109 printf(FIELDS_2,
Denys Vlasenko55429342010-10-01 21:57:59 +0200110 scale(info.totalram - info.freeram - info.bufferram),
111 scale(info.freeram + info.bufferram)
Denys Vlasenko7bfbbd42010-08-12 01:56:44 +0200112 );
Denys Vlasenko153fcaa2010-02-21 05:17:41 +0100113#if BB_MMU
Denys Vlasenko7bfbbd42010-08-12 01:56:44 +0200114 printf("Swap:");
115 printf(FIELDS_3,
Denys Vlasenko55429342010-10-01 21:57:59 +0200116 scale(info.totalswap),
117 scale(info.totalswap - info.freeswap),
118 scale(info.freeswap)
Denys Vlasenkobef57112010-02-21 05:39:59 +0100119 );
Eric Andersen1dcf2182003-01-11 20:40:49 +0000120#endif
Matt Kraai3e856ce2000-12-01 02:55:13 +0000121 return EXIT_SUCCESS;
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000122}