Whamcloud - gitweb
Interim update of the debian/changelog and the release notes
[tools/e2fsprogs.git] / e2fsck / message.c
1 /*
2  * message.c --- print e2fsck messages (with compression)
3  *
4  * Copyright 1996, 1997 by Theodore Ts'o
5  *
6  * %Begin-Header%
7  * This file may be redistributed under the terms of the GNU Public
8  * License.
9  * %End-Header%
10  *
11  * print_e2fsck_message() prints a message to the user, using
12  * compression techniques and expansions of abbreviations.
13  *
14  * The following % expansions are supported:
15  *
16  *      %b      <blk>                   block number
17  *      %B      <blkcount>              integer
18  *      %c      <blk2>                  block number
19  *      %Di     <dirent>->ino           inode number
20  *      %Dn     <dirent>->name          string
21  *      %Dr     <dirent>->rec_len
22  *      %Dl     <dirent>->name_len
23  *      %Dt     <dirent>->filetype
24  *      %d      <dir>                   inode number
25  *      %g      <group>                 integer
26  *      %i      <ino>                   inode number
27  *      %Is     <inode> -> i_size
28  *      %IS     <inode> -> i_extra_isize
29  *      %Ib     <inode> -> i_blocks
30  *      %Il     <inode> -> i_links_count
31  *      %Im     <inode> -> i_mode
32  *      %IM     <inode> -> i_mtime
33  *      %IF     <inode> -> i_faddr
34  *      %If     <inode> -> i_file_acl
35  *      %Id     <inode> -> i_dir_acl
36  *      %Iu     <inode> -> i_uid
37  *      %Ig     <inode> -> i_gid
38  *      %It     <inode type>
39  *      %j      <ino2>                  inode number
40  *      %m      <com_err error message>
41  *      %N      <num>
42  *      %p      ext2fs_get_pathname of directory <ino>
43  *      %P      ext2fs_get_pathname of <dirent>->ino with <ino2> as
44  *                      the containing directory.  (If dirent is NULL
45  *                      then return the pathname of directory <ino2>)
46  *      %q      ext2fs_get_pathname of directory <dir>
47  *      %Q      ext2fs_get_pathname of directory <ino> with <dir> as
48  *                      the containing directory.
49  *      %s      <str>                   miscellaneous string
50  *      %S      backup superblock
51  *      %X      <num> hexadecimal format
52  *
53  * The following '@' expansions are supported:
54  *
55  *      @a      extended attribute
56  *      @A      error allocating
57  *      @b      block
58  *      @B      bitmap
59  *      @c      compress
60  *      @C      conflicts with some other fs block
61  *      @D      deleted
62  *      @d      directory
63  *      @e      entry
64  *      @E      Entry '%Dn' in %p (%i)
65  *      @f      filesystem
66  *      @F      for @i %i (%Q) is
67  *      @g      group
68  *      @h      HTREE directory inode
69  *      @i      inode
70  *      @I      illegal
71  *      @j      journal
72  *      @l      lost+found
73  *      @L      is a link
74  *      @m      multiply-claimed
75  *      @n      invalid
76  *      @o      orphaned
77  *      @p      problem in
78  *      @r      root inode
79  *      @s      should be 
80  *      @S      superblock
81  *      @u      unattached
82  *      @v      device
83  *      @x      extent
84  *      @z      zero-length
85  */
86
87 #include <stdlib.h>
88 #include <unistd.h>
89 #include <string.h>
90 #include <ctype.h>
91 #include <termios.h>
92
93 #include "e2fsck.h"
94
95 #include "problem.h"
96
97 #ifdef __GNUC__
98 #define _INLINE_ __inline__
99 #else
100 #define _INLINE_
101 #endif
102
103 /*
104  * This structure defines the abbreviations used by the text strings
105  * below.  The first character in the string is the index letter.  An
106  * abbreviation of the form '@<i>' is expanded by looking up the index
107  * letter <i> in the table below.
108  */
109 static const char *abbrevs[] = {
110         N_("aextended attribute"),
111         N_("Aerror allocating"),
112         N_("bblock"),
113         N_("Bbitmap"),
114         N_("ccompress"),
115         N_("Cconflicts with some other fs @b"),
116         N_("iinode"),
117         N_("Iillegal"),
118         N_("jjournal"),
119         N_("Ddeleted"),
120         N_("ddirectory"),
121         N_("eentry"),
122         N_("E@e '%Dn' in %p (%i)"),
123         N_("ffilesystem"),
124         N_("Ffor @i %i (%Q) is"),
125         N_("ggroup"),
126         N_("hHTREE @d @i"),
127         N_("llost+found"),
128         N_("Lis a link"),
129         N_("mmultiply-claimed"),
130         N_("ninvalid"),
131         N_("oorphaned"),
132         N_("pproblem in"),
133         N_("rroot @i"),
134         N_("sshould be"),
135         N_("Ssuper@b"),
136         N_("uunattached"),
137         N_("vdevice"),
138         N_("xextent"),
139         N_("zzero-length"),
140         "@@",
141         0
142         };
143
144 /*
145  * Give more user friendly names to the "special" inodes.
146  */
147 #define num_special_inodes      11
148 static const char *special_inode_name[] =
149 {
150         N_("<The NULL inode>"),                 /* 0 */
151         N_("<The bad blocks inode>"),           /* 1 */
152         "/",                                    /* 2 */
153         N_("<The ACL index inode>"),            /* 3 */
154         N_("<The ACL data inode>"),             /* 4 */
155         N_("<The boot loader inode>"),          /* 5 */
156         N_("<The undelete directory inode>"),   /* 6 */
157         N_("<The group descriptor inode>"),     /* 7 */
158         N_("<The journal inode>"),              /* 8 */
159         N_("<Reserved inode 9>"),               /* 9 */
160         N_("<Reserved inode 10>"),              /* 10 */
161 };
162
163 /*
164  * This function does "safe" printing.  It will convert non-printable
165  * ASCII characters using '^' and M- notation.
166  */
167 static void safe_print(const char *cp, int len)
168 {
169         unsigned char   ch;
170
171         if (len < 0)
172                 len = strlen(cp);
173
174         while (len--) {
175                 ch = *cp++;
176                 if (ch > 128) {
177                         fputs("M-", stdout);
178                         ch -= 128;
179                 }
180                 if ((ch < 32) || (ch == 0x7f)) {
181                         fputc('^', stdout);
182                         ch ^= 0x40; /* ^@, ^A, ^B; ^? for DEL */
183                 }
184                 fputc(ch, stdout);
185         }
186 }
187
188
189 /*
190  * This function prints a pathname, using the ext2fs_get_pathname
191  * function
192  */
193 static void print_pathname(ext2_filsys fs, ext2_ino_t dir, ext2_ino_t ino)
194 {
195         errcode_t       retval;
196         char            *path;
197
198         if (!dir && (ino < num_special_inodes)) {
199                 fputs(_(special_inode_name[ino]), stdout);
200                 return;
201         }
202         
203         retval = ext2fs_get_pathname(fs, dir, ino, &path);
204         if (retval)
205                 fputs("???", stdout);
206         else {
207                 safe_print(path, -1);
208                 ext2fs_free_mem(&path);
209         }
210 }
211
212 /*
213  * This function handles the '@' expansion.  We allow recursive
214  * expansion; an @ expression can contain further '@' and '%'
215  * expressions. 
216  */
217 static _INLINE_ void expand_at_expression(e2fsck_t ctx, char ch,
218                                           struct problem_context *pctx,
219                                           int *first, int recurse)
220 {
221         const char **cpp, *str;
222         
223         /* Search for the abbreviation */
224         for (cpp = abbrevs; *cpp; cpp++) {
225                 if (ch == *cpp[0])
226                         break;
227         }
228         if (*cpp && recurse < 10) {
229                 str = _(*cpp) + 1;
230                 if (*first && islower(*str)) {
231                         *first = 0;
232                         fputc(toupper(*str++), stdout);
233                 }
234                 print_e2fsck_message(ctx, str, pctx, *first, recurse+1);
235         } else
236                 printf("@%c", ch);
237 }
238
239 /*
240  * This function expands '%IX' expressions
241  */
242 static _INLINE_ void expand_inode_expression(char ch, 
243                                              struct problem_context *ctx)
244 {
245         struct ext2_inode       *inode;
246         struct ext2_inode_large *large_inode;
247         const char *            time_str;
248         time_t                  t;
249         int                     do_gmt = -1;
250
251         if (!ctx || !ctx->inode)
252                 goto no_inode;
253         
254         inode = ctx->inode;
255         large_inode = (struct ext2_inode_large *) inode;
256
257         switch (ch) {
258         case 's':
259                 if (LINUX_S_ISDIR(inode->i_mode))
260                         printf("%u", inode->i_size);
261                 else {
262 #ifdef EXT2_NO_64_TYPE
263                         if (inode->i_size_high)
264                                 printf("0x%x%08x", inode->i_size_high,
265                                        inode->i_size);
266                         else
267                                 printf("%u", inode->i_size);
268 #else
269                         printf("%llu", inode->i_size |
270                                        ((long long)inode->i_size_high << 32));
271 #endif
272                 }
273                 break;
274         case 'S':
275                 printf("%u", large_inode->i_extra_isize);
276                 break;
277         case 'b':
278                 if (inode->i_flags & EXT4_HUGE_FILE_FL)
279                         printf("%llu", inode->i_blocks +
280                                (((long long) inode->osd2.linux2.l_i_blocks_hi)
281                                 << 32));
282                 else
283                         printf("%u", inode->i_blocks);
284                 break;
285         case 'l':
286                 printf("%d", inode->i_links_count);
287                 break;
288         case 'm':
289                 printf("0%o", inode->i_mode);
290                 break;
291         case 'M':
292                 /* The diet libc doesn't respect the TZ environemnt variable */
293                 if (do_gmt == -1) {
294                         time_str = getenv("TZ");
295                         if (!time_str)
296                                 time_str = "";
297                         do_gmt = !strcmp(time_str, "GMT");
298                 }
299                 t = inode->i_mtime;
300                 time_str = asctime(do_gmt ? gmtime(&t) : localtime(&t));
301                 printf("%.24s", time_str);
302                 break;
303         case 'F':
304                 printf("%u", inode->i_faddr);
305                 break;
306         case 'f':
307                 printf("%u", inode->i_file_acl);
308                 break;
309         case 'd':
310                 printf("%u", (LINUX_S_ISDIR(inode->i_mode) ?
311                               inode->i_dir_acl : 0));
312                 break;
313         case 'u':
314                 printf("%d", inode_uid(*inode));
315                 break;
316         case 'g':
317                 printf("%d", inode_gid(*inode));
318                 break;
319         case 't':
320                 if (LINUX_S_ISREG(inode->i_mode)) 
321                         printf(_("regular file"));
322                 else if (LINUX_S_ISDIR(inode->i_mode)) 
323                         printf(_("directory"));
324                 else if (LINUX_S_ISCHR(inode->i_mode)) 
325                         printf(_("character device"));
326                 else if (LINUX_S_ISBLK(inode->i_mode)) 
327                         printf(_("block device"));
328                 else if (LINUX_S_ISFIFO(inode->i_mode)) 
329                         printf(_("named pipe"));
330                 else if (LINUX_S_ISLNK(inode->i_mode)) 
331                         printf(_("symbolic link"));
332                 else if (LINUX_S_ISSOCK(inode->i_mode))
333                         printf(_("socket"));
334                 else
335                         printf(_("unknown file type with mode 0%o"),
336                                inode->i_mode);
337                 break;
338         default:
339         no_inode:
340                 printf("%%I%c", ch);
341                 break;
342         }
343 }
344
345 /*
346  * This function expands '%dX' expressions
347  */
348 static _INLINE_ void expand_dirent_expression(char ch,
349                                               struct problem_context *ctx)
350 {
351         struct ext2_dir_entry   *dirent;
352         int     len;
353         
354         if (!ctx || !ctx->dirent)
355                 goto no_dirent;
356         
357         dirent = ctx->dirent;
358         
359         switch (ch) {
360         case 'i':
361                 printf("%u", dirent->inode);
362                 break;
363         case 'n':
364                 len = dirent->name_len & 0xFF;
365                 if (len > EXT2_NAME_LEN)
366                         len = EXT2_NAME_LEN;
367                 if (len > dirent->rec_len)
368                         len = dirent->rec_len;
369                 safe_print(dirent->name, len);
370                 break;
371         case 'r':
372                 printf("%u", dirent->rec_len);
373                 break;
374         case 'l':
375                 printf("%u", dirent->name_len & 0xFF);
376                 break;
377         case 't':
378                 printf("%u", dirent->name_len >> 8);
379                 break;
380         default:
381         no_dirent:
382                 printf("%%D%c", ch);
383                 break;
384         }
385 }
386
387 static _INLINE_ void expand_percent_expression(ext2_filsys fs, char ch,
388                                                struct problem_context *ctx)
389 {
390         if (!ctx)
391                 goto no_context;
392         
393         switch (ch) {
394         case '%':
395                 fputc('%', stdout);
396                 break;
397         case 'b':
398 #ifdef EXT2_NO_64_TYPE
399                 printf("%u", (unsigned long) ctx->blk);
400 #else
401                 printf("%llu", (unsigned long long) ctx->blk);
402 #endif
403                 break;
404         case 'B':
405 #ifdef EXT2_NO_64_TYPE
406                 printf("%d", ctx->blkcount);
407 #else
408                 printf("%lld", (long long)ctx->blkcount);
409 #endif
410                 break;
411         case 'c':
412 #ifdef EXT2_NO_64_TYPE
413                 printf("%u", (unsigned long) ctx->blk2);
414 #else
415                 printf("%llu", (unsigned long long) ctx->blk2);
416 #endif
417                 break;
418         case 'd':
419                 printf("%u", ctx->dir);
420                 break;
421         case 'g':
422                 printf("%d", ctx->group);
423                 break;
424         case 'i':
425                 printf("%u", ctx->ino);
426                 break;
427         case 'j':
428                 printf("%u", ctx->ino2);
429                 break;
430         case 'm':
431                 printf("%s", error_message(ctx->errcode));
432                 break;
433         case 'N':
434 #ifdef EXT2_NO_64_TYPE
435                 printf("%u", ctx->num);
436 #else
437                 printf("%llu", (long long)ctx->num);
438 #endif
439                 break;
440         case 'p':
441                 print_pathname(fs, ctx->ino, 0);
442                 break;
443         case 'P':
444                 print_pathname(fs, ctx->ino2,
445                                ctx->dirent ? ctx->dirent->inode : 0);
446                 break;
447         case 'q':
448                 print_pathname(fs, ctx->dir, 0);
449                 break;
450         case 'Q':
451                 print_pathname(fs, ctx->dir, ctx->ino);
452                 break;
453         case 'S':
454                 printf("%u", get_backup_sb(NULL, fs, NULL, NULL));
455                 break;
456         case 's':
457                 printf("%s", ctx->str ? ctx->str : "NULL");
458                 break;
459         case 'X':
460 #ifdef EXT2_NO_64_TYPE
461                 printf("0x%x", ctx->num);
462 #else
463                 printf("0x%llx", (long long)ctx->num);
464 #endif
465                 break;
466         default:
467         no_context:
468                 printf("%%%c", ch);
469                 break;
470         }
471 }       
472
473 void print_e2fsck_message(e2fsck_t ctx, const char *msg,
474                           struct problem_context *pctx, int first,
475                           int recurse)
476 {
477         ext2_filsys fs = ctx->fs;
478         const char *    cp;
479         int             i;
480
481         e2fsck_clear_progbar(ctx);
482         for (cp = msg; *cp; cp++) {
483                 if (cp[0] == '@') {
484                         cp++;
485                         expand_at_expression(ctx, *cp, pctx, &first, recurse);
486                 } else if (cp[0] == '%' && cp[1] == 'I') {
487                         cp += 2;
488                         expand_inode_expression(*cp, pctx);
489                 } else if (cp[0] == '%' && cp[1] == 'D') {
490                         cp += 2;
491                         expand_dirent_expression(*cp, pctx);
492                 } else if ((cp[0] == '%')) {
493                         cp++;
494                         expand_percent_expression(fs, *cp, pctx);
495                 } else {
496                         for (i=0; cp[i]; i++)
497                                 if ((cp[i] == '@') || cp[i] == '%')
498                                         break;
499                         printf("%.*s", i, cp);
500                         cp += i-1;
501                 }
502                 first = 0;
503         }
504 }