blob: b4163f108489926b8f9ce84f17223afa759344bb [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 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Mark Whitley827e45c2001-03-09 23:59:51 +000023/* getopt not needed */
24
Eric Andersenabc0f4f1999-12-08 23:19:36 +000025#include <stdio.h>
Eric Andersen10dc9d42000-06-26 10:45:52 +000026#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +000027#include <stdlib.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000028#include "busybox.h"
Eric Andersenabc0f4f1999-12-08 23:19:36 +000029
Rob Landleydfba7412006-03-06 20:47:33 +000030int free_main(int argc, char **argv)
Eric Andersenabc0f4f1999-12-08 23:19:36 +000031{
Erik Andersend07ee462000-02-21 21:26:32 +000032 struct sysinfo info;
33 sysinfo(&info);
Eric Andersen73de6562000-09-10 16:10:41 +000034
35 /* Kernels prior to 2.4.x will return info.mem_unit==0, so cope... */
Eric Andersen10dc9d42000-06-26 10:45:52 +000036 if (info.mem_unit==0) {
Eric Andersen73de6562000-09-10 16:10:41 +000037 info.mem_unit=1;
Eric Andersen10dc9d42000-06-26 10:45:52 +000038 }
Eric Andersen1dcf2182003-01-11 20:40:49 +000039 if ( info.mem_unit == 1 ) {
40 info.mem_unit=1024;
41
42 /* TODO: Make all this stuff not overflow when mem >= 4 Gib */
43 info.totalram/=info.mem_unit;
44 info.freeram/=info.mem_unit;
45#ifndef __uClinux__
46 info.totalswap/=info.mem_unit;
47 info.freeswap/=info.mem_unit;
48#endif
49 info.sharedram/=info.mem_unit;
50 info.bufferram/=info.mem_unit;
51 } else {
52 info.mem_unit/=1024;
53 /* TODO: Make all this stuff not overflow when mem >= 4 Gib */
54 info.totalram*=info.mem_unit;
55 info.freeram*=info.mem_unit;
56#ifndef __uClinux__
57 info.totalswap*=info.mem_unit;
58 info.freeswap*=info.mem_unit;
59#endif
60 info.sharedram*=info.mem_unit;
61 info.bufferram*=info.mem_unit;
62 }
Eric Andersen73de6562000-09-10 16:10:41 +000063
Matt Kraai3bd8bd82000-07-14 23:28:47 +000064 if (argc > 1 && **(argv + 1) == '-')
Manuel Novoa III cad53642003-03-19 09:13:01 +000065 bb_show_usage();
Erik Andersend07ee462000-02-21 21:26:32 +000066
Eric Andersenc7bda1c2004-03-15 08:29:22 +000067 printf("%6s%13s%13s%13s%13s%13s\n", "", "total", "used", "free",
Erik Andersend07ee462000-02-21 21:26:32 +000068 "shared", "buffers");
69
Eric Andersenc7bda1c2004-03-15 08:29:22 +000070 printf("%6s%13ld%13ld%13ld%13ld%13ld\n", "Mem:", info.totalram,
71 info.totalram-info.freeram, info.freeram,
Erik Andersend07ee462000-02-21 21:26:32 +000072 info.sharedram, info.bufferram);
73
Eric Andersen1dcf2182003-01-11 20:40:49 +000074#ifndef __uClinux__
Erik Andersend07ee462000-02-21 21:26:32 +000075 printf("%6s%13ld%13ld%13ld\n", "Swap:", info.totalswap,
76 info.totalswap-info.freeswap, info.freeswap);
77
78 printf("%6s%13ld%13ld%13ld\n", "Total:", info.totalram+info.totalswap,
79 (info.totalram-info.freeram)+(info.totalswap-info.freeswap),
80 info.freeram+info.freeswap);
Eric Andersen1dcf2182003-01-11 20:40:49 +000081#endif
Matt Kraai3e856ce2000-12-01 02:55:13 +000082 return EXIT_SUCCESS;
Eric Andersenabc0f4f1999-12-08 23:19:36 +000083}
Eric Andersen10dc9d42000-06-26 10:45:52 +000084