]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - debugfs/ls.c
ext2fs: convert unicode normalization from NFKD -> NFD
[thirdparty/e2fsprogs.git] / debugfs / ls.c
1 /*
2 * ls.c --- list directories
3 *
4 * Copyright (C) 1997 Theodore Ts'o. This file may be redistributed
5 * under the terms of the GNU Public License.
6 */
7
8 #include "config.h"
9 #include <stdio.h>
10 #include <unistd.h>
11 #include <stdlib.h>
12 #include <ctype.h>
13 #include <string.h>
14 #include <time.h>
15 #ifdef HAVE_ERRNO_H
16 #include <errno.h>
17 #endif
18 #include <sys/types.h>
19 #ifdef HAVE_GETOPT_H
20 #include <getopt.h>
21 #else
22 extern int optind;
23 extern char *optarg;
24 #endif
25
26 #include "debugfs.h"
27
28 /*
29 * list directory
30 */
31
32 #define LONG_OPT 0x0001
33 #define PARSE_OPT 0x0002
34 #define RAW_OPT 0x0004
35 #define ENCRYPT_OPT 0x8000
36
37 struct list_dir_struct {
38 FILE *f;
39 int col;
40 int options;
41 int state;
42 };
43
44 static const char *monstr[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
45 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
46
47 static int print_filename(FILE *f, struct ext2_dir_entry *dirent, int options)
48 {
49 unsigned char ch;
50 const char *cp = dirent->name;
51 int len = ext2fs_dirent_name_len(dirent);
52 int retlen = 0;
53
54 if ((options & ENCRYPT_OPT) && !(options & RAW_OPT)) {
55 if (f)
56 return fprintf(f, "<encrypted (%d)>", len);
57 else {
58 char tmp[1];
59 return snprintf(tmp, sizeof(tmp),
60 "<encrypted (%d)>", len);
61 }
62 }
63 while (len--) {
64 ch = *cp++;
65 if (ch > 128) {
66 if (f)
67 fputs("M-", f);
68 ch -= 128;
69 retlen += 2;
70 }
71 if ((ch < 32) || (ch == 0x7f)) {
72 if (f)
73 fputc('^', f);
74 ch ^= 0x40; /* ^@, ^A, ^B; ^? for DEL */
75 retlen++;
76 }
77 if (f)
78 fputc(ch, f);
79 retlen++;
80 }
81 return retlen;
82 }
83
84 static int list_dir_proc(ext2_ino_t dir EXT2FS_ATTR((unused)),
85 int entry,
86 struct ext2_dir_entry *dirent,
87 int offset EXT2FS_ATTR((unused)),
88 int blocksize EXT2FS_ATTR((unused)),
89 char *buf EXT2FS_ATTR((unused)),
90 void *private)
91 {
92 struct ext2_inode inode;
93 ext2_ino_t ino;
94 struct tm *tm_p;
95 time_t modtime;
96 char tmp[EXT2_NAME_LEN + 16];
97 char datestr[80];
98 char lbr, rbr;
99 int thislen;
100 int options;
101 struct list_dir_struct *ls = (struct list_dir_struct *) private;
102 struct ext2_dir_entry_tail *t = (struct ext2_dir_entry_tail *) dirent;
103
104 thislen = ext2fs_dirent_name_len(dirent);
105 ino = dirent->inode;
106 options = ls->options;
107 if (ls->state < 2) {
108 ls->state++;
109 options |= RAW_OPT;
110 }
111
112 if (entry == DIRENT_DELETED_FILE) {
113 lbr = '<';
114 rbr = '>';
115 ino = 0;
116 } else {
117 lbr = rbr = ' ';
118 }
119 if (options & PARSE_OPT) {
120 if (ino) {
121 if (debugfs_read_inode(ino, &inode, "ls"))
122 return 0;
123 } else
124 memset(&inode, 0, sizeof(struct ext2_inode));
125 fprintf(ls->f,"/%u/%06o/%d/%d/%.*s/", ino, inode.i_mode,
126 inode.i_uid, inode.i_gid, thislen, dirent->name);
127 if (LINUX_S_ISDIR(inode.i_mode))
128 fprintf(ls->f, "/");
129 else
130 fprintf(ls->f, "%lld/", EXT2_I_SIZE(&inode));
131 fprintf(ls->f, "\n");
132 } else if (options & LONG_OPT) {
133 if (ino) {
134 if (debugfs_read_inode(ino, &inode, "ls"))
135 return 0;
136 modtime = inode.i_mtime;
137 tm_p = localtime(&modtime);
138 sprintf(datestr, "%2d-%s-%4d %02d:%02d",
139 tm_p->tm_mday, monstr[tm_p->tm_mon],
140 1900 + tm_p->tm_year, tm_p->tm_hour,
141 tm_p->tm_min);
142 } else {
143 strcpy(datestr, " ");
144 memset(&inode, 0, sizeof(struct ext2_inode));
145 }
146 fprintf(ls->f, "%c%6u%c %6o ", lbr, ino, rbr, inode.i_mode);
147 if (entry == DIRENT_CHECKSUM) {
148 fprintf(ls->f, "(dirblock checksum: 0x%08x)\n",
149 t->det_checksum);
150 return 0;
151 }
152 fprintf(ls->f, "(%d) %5d %5d ",
153 ext2fs_dirent_file_type(dirent),
154 inode_uid(inode), inode_gid(inode));
155 fprintf(ls->f, "%5llu", EXT2_I_SIZE(&inode));
156 fprintf(ls->f, " %s ", datestr);
157 print_filename(ls->f, dirent, options);
158 fputc('\n', ls->f);
159 } else {
160 if (entry == DIRENT_CHECKSUM) {
161 sprintf(tmp, "%c%u%c (dirblock checksum: 0x%08x) ",
162 lbr, dirent->inode, rbr, t->det_checksum);
163 thislen = strlen(tmp);
164 if (ls->col + thislen > 80) {
165 fputc('\n', ls->f);
166 ls->col = 0;
167 }
168 fprintf(ls->f, "%s", tmp);
169 ls->col += thislen;
170 return 0;
171 }
172 sprintf(tmp, "%c%u%c (%d) ", lbr, dirent->inode, rbr,
173 dirent->rec_len);
174 thislen = strlen(tmp) + 3;
175 thislen += print_filename(NULL, dirent, options);
176
177 if (ls->col + thislen > 80) {
178 fputc('\n', ls->f);
179 ls->col = 0;
180 }
181 fprintf(ls->f, "%s", tmp);
182 print_filename(ls->f, dirent, options);
183 fputs(" ", ls->f);
184 ls->col += thislen;
185 }
186 return 0;
187 }
188
189 void do_list_dir(int argc, char *argv[], int sci_idx EXT2FS_ATTR((unused)),
190 void *infop EXT2FS_ATTR((unused)))
191 {
192 struct ext2_inode inode;
193 ext2_ino_t ino;
194 int retval;
195 int c;
196 int flags = DIRENT_FLAG_INCLUDE_EMPTY;
197 struct list_dir_struct ls;
198
199 ls.options = 0;
200 ls.state = 0;
201 if (check_fs_open(argv[0]))
202 return;
203
204 reset_getopt();
205 while ((c = getopt (argc, argv, "cdlpr")) != EOF) {
206 switch (c) {
207 case 'c':
208 flags |= DIRENT_FLAG_INCLUDE_CSUM;
209 break;
210 case 'l':
211 ls.options |= LONG_OPT;
212 break;
213 case 'd':
214 flags |= DIRENT_FLAG_INCLUDE_REMOVED;
215 break;
216 case 'p':
217 ls.options |= PARSE_OPT;
218 break;
219 case 'r':
220 ls.options |= RAW_OPT;
221 break;
222 default:
223 goto print_usage;
224 }
225 }
226
227 if (argc > optind+1) {
228 print_usage:
229 com_err(0, 0, "Usage: ls [-c] [-d] [-l] [-p] [-r] file");
230 return;
231 }
232
233 if (argc == optind)
234 ino = cwd;
235 else
236 ino = string_to_inode(argv[optind]);
237 if (!ino)
238 return;
239
240 ls.f = open_pager();
241 ls.col = 0;
242
243 if (debugfs_read_inode(ino, &inode, argv[0]))
244 return;
245
246 if (inode.i_flags & EXT4_ENCRYPT_FL)
247 ls.options |= ENCRYPT_OPT;
248
249 retval = ext2fs_dir_iterate2(current_fs, ino, flags,
250 0, list_dir_proc, &ls);
251 fprintf(ls.f, "\n");
252 close_pager(ls.f);
253 if (retval)
254 com_err(argv[1], retval, 0);
255
256 return;
257 }
258
259