Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini du implementation for busybox |
| 4 | * |
| 5 | * |
| 6 | * Copyright (C) 1999 by Lineo, inc. |
Eric Andersen | 70e2f0b | 1999-12-10 06:45:42 +0000 | [diff] [blame] | 7 | * Written by John Beppu <beppu@lineo.com> |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | * |
| 23 | */ |
| 24 | |
| 25 | #include "internal.h" |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 26 | #define BB_DECLARE_EXTERN |
| 27 | #define bb_need_name_too_long |
| 28 | #include "messages.c" |
| 29 | |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 30 | #include <sys/types.h> |
| 31 | #include <fcntl.h> |
| 32 | #include <dirent.h> |
| 33 | #include <stdio.h> |
John Beppu | 9835541 | 1999-12-10 07:40:08 +0000 | [diff] [blame] | 34 | #include <errno.h> |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 35 | #include <sys/param.h> /* for PATH_MAX */ |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 36 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 37 | typedef void (Display) (long, char *); |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 38 | |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 39 | static const char du_usage[] = |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 40 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 41 | "du [OPTION]... [FILE]...\n\n" |
| 42 | "\t-s\tdisplay only a total for each argument\n"; |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 43 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 44 | static int du_depth = 0; |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 45 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 46 | static Display *print; |
| 47 | |
| 48 | static void print_normal(long size, char *filename) |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 49 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 50 | fprintf(stdout, "%-7ld %s\n", size, filename); |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 53 | static void print_summary(long size, char *filename) |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 54 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 55 | if (du_depth == 1) { |
| 56 | print_normal(size, filename); |
| 57 | } |
John Beppu | e1618e4 | 1999-12-15 18:52:17 +0000 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 61 | /* tiny recursive du */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 62 | static long du(char *filename) |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 63 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 64 | struct stat statbuf; |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 65 | long sum; |
John Beppu | 14c82b6 | 1999-12-10 06:15:27 +0000 | [diff] [blame] | 66 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 67 | if ((lstat(filename, &statbuf)) != 0) { |
| 68 | fprintf(stdout, "du: %s: %s\n", filename, strerror(errno)); |
| 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | du_depth++; |
| 73 | sum = statbuf.st_blocks; |
| 74 | |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 75 | /* Don't add in stuff pointed to by links */ |
| 76 | if (S_ISLNK(statbuf.st_mode)) { |
| 77 | return 0; |
| 78 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 79 | if (S_ISDIR(statbuf.st_mode)) { |
| 80 | DIR *dir; |
| 81 | struct dirent *entry; |
| 82 | |
| 83 | dir = opendir(filename); |
| 84 | if (!dir) { |
| 85 | return 0; |
| 86 | } |
| 87 | while ((entry = readdir(dir))) { |
| 88 | char newfile[PATH_MAX + 1]; |
| 89 | char *name = entry->d_name; |
| 90 | |
| 91 | if ((strcmp(name, "..") == 0) |
| 92 | || (strcmp(name, ".") == 0)) { |
| 93 | continue; |
| 94 | } |
| 95 | |
| 96 | if (strlen(filename) + strlen(name) + 1 > PATH_MAX) { |
| 97 | fprintf(stderr, name_too_long, "du"); |
| 98 | return 0; |
| 99 | } |
| 100 | sprintf(newfile, "%s/%s", filename, name); |
| 101 | |
| 102 | sum += du(newfile); |
| 103 | } |
| 104 | closedir(dir); |
| 105 | print(sum, filename); |
| 106 | } |
| 107 | du_depth--; |
| 108 | return sum; |
John Beppu | 0f5e1ab | 1999-12-09 18:23:54 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 111 | int du_main(int argc, char **argv) |
| 112 | { |
| 113 | int i; |
| 114 | char opt; |
| 115 | |
| 116 | /* default behaviour */ |
| 117 | print = print_normal; |
| 118 | |
| 119 | /* parse argv[] */ |
| 120 | for (i = 1; i < argc; i++) { |
| 121 | if (argv[i][0] == '-') { |
| 122 | opt = argv[i][1]; |
| 123 | switch (opt) { |
| 124 | case 's': |
| 125 | print = print_summary; |
| 126 | break; |
| 127 | case 'h': |
| 128 | usage(du_usage); |
| 129 | break; |
| 130 | default: |
| 131 | fprintf(stderr, "du: invalid option -- %c\n", opt); |
| 132 | usage(du_usage); |
| 133 | } |
| 134 | } else { |
| 135 | break; |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | /* go through remaining args (if any) */ |
| 140 | if (i >= argc) { |
| 141 | du("."); |
| 142 | } else { |
| 143 | long sum; |
| 144 | |
| 145 | for (; i < argc; i++) { |
| 146 | sum = du(argv[i]); |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 147 | if ((sum) && (isDirectory(argv[i], FALSE, NULL))) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 148 | print_normal(sum, argv[i]); |
| 149 | } |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | exit(0); |
| 154 | } |
| 155 | |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 156 | /* $Id: du.c,v 1.12 2000/02/11 21:55:04 erik Exp $ */ |