Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mini df implementation for busybox |
| 3 | * |
| 4 | * Copyright (C) 1999 by Lineo, inc. |
| 5 | * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> |
| 6 | * based on original code by (I think) Bruce Perens <bruce@pixar.com>. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| 22 | */ |
| 23 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 24 | #include "internal.h" |
| 25 | #include <stdio.h> |
| 26 | #include <mntent.h> |
| 27 | #include <sys/stat.h> |
| 28 | #include <sys/vfs.h> |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 29 | #include <fstab.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 30 | |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 31 | static const char df_usage[] = "df [filesystem ...]\n" |
| 32 | "\n" "\tPrint the filesystem space used and space available.\n"; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 33 | |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 34 | extern const char mtab_file[]; /* Defined in utility.c */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 35 | |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 36 | static int df(char *device, const char *mountPoint) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 37 | { |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 38 | struct statfs s; |
| 39 | long blocks_used; |
| 40 | long blocks_percent_used; |
Eric Andersen | 29d2e36 | 1999-11-06 06:07:27 +0000 | [diff] [blame] | 41 | struct fstab* fstabItem; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 42 | |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 43 | if (statfs(mountPoint, &s) != 0) { |
| 44 | perror(mountPoint); |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 45 | return FALSE; |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 46 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 47 | |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 48 | if (s.f_blocks > 0) { |
| 49 | blocks_used = s.f_blocks - s.f_bfree; |
| 50 | blocks_percent_used = (long) |
| 51 | (blocks_used * 100.0 / (blocks_used + s.f_bavail) + 0.5); |
Eric Andersen | 29d2e36 | 1999-11-06 06:07:27 +0000 | [diff] [blame] | 52 | /* Note that if /etc/fstab is missing, libc can't fix up /dev/root for us */ |
| 53 | if (strcmp (device, "/dev/root") == 0) { |
| 54 | fstabItem = getfsfile ("/"); |
| 55 | if (fstabItem != NULL) |
| 56 | device = fstabItem->fs_spec; |
| 57 | } |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 58 | printf("%-20s %9ld %9ld %9ld %3ld%% %s\n", |
| 59 | device, |
| 60 | (long) (s.f_blocks * (s.f_bsize / 1024.0)), |
| 61 | (long) ((s.f_blocks - s.f_bfree) * (s.f_bsize / 1024.0)), |
| 62 | (long) (s.f_bavail * (s.f_bsize / 1024.0)), |
| 63 | blocks_percent_used, mountPoint); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 64 | |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 67 | return TRUE; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 70 | extern int df_main(int argc, char **argv) |
| 71 | { |
| 72 | printf("%-20s %-14s %s %s %s %s\n", "Filesystem", |
| 73 | "1k-blocks", "Used", "Available", "Use%", "Mounted on"); |
| 74 | |
Eric Andersen | 29d2e36 | 1999-11-06 06:07:27 +0000 | [diff] [blame] | 75 | /* Only compiled in if BB_MTAB is not defined */ |
| 76 | whine_if_fstab_is_missing(); |
| 77 | |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 78 | if (argc > 1) { |
| 79 | struct mntent *mountEntry; |
| 80 | int status; |
| 81 | |
| 82 | while (argc > 1) { |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 83 | if ((mountEntry = findMountPoint(argv[1], mtab_file)) == |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 84 | 0) { |
| 85 | fprintf(stderr, "%s: can't find mount point.\n", argv[1]); |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 86 | exit( FALSE); |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 87 | } |
| 88 | status = df(mountEntry->mnt_fsname, mountEntry->mnt_dir); |
| 89 | if (status != 0) |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 90 | exit( status); |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 91 | argc--; |
| 92 | argv++; |
| 93 | } |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 94 | exit( TRUE); |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 95 | } else { |
| 96 | FILE *mountTable; |
| 97 | struct mntent *mountEntry; |
| 98 | |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 99 | mountTable = setmntent(mtab_file, "r"); |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 100 | if (mountTable == 0) { |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 101 | perror(mtab_file); |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 102 | exit(FALSE); |
| 103 | } |
| 104 | |
| 105 | while ((mountEntry = getmntent(mountTable))) { |
Eric Andersen | c054b21 | 1999-11-27 17:41:29 +0000 | [diff] [blame] | 106 | df(mountEntry->mnt_fsname, mountEntry->mnt_dir); |
Eric Andersen | c6cb79d | 1999-10-13 18:01:10 +0000 | [diff] [blame] | 107 | } |
| 108 | endmntent(mountTable); |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Eric Andersen | 96bcfd3 | 1999-11-12 01:30:18 +0000 | [diff] [blame] | 111 | exit( TRUE); |
Eric Andersen | c6cb79d | 1999-10-13 18:01:10 +0000 | [diff] [blame] | 112 | } |