Whamcloud - gitweb
Clean up e2fsck problem description messages for typo's and to make them
[tools/e2fsprogs.git] / e2fsck / problem.c
1 /*
2  * problem.c --- report filesystem problems to the user
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
12 #include <stdlib.h>
13 #include <unistd.h>
14 #include <string.h>
15 #include <ctype.h>
16 #include <termios.h>
17
18 #include "e2fsck.h"
19
20 #include "problem.h"
21 #include "problemP.h"
22
23 #define PROMPT_NONE     0
24 #define PROMPT_FIX      1
25 #define PROMPT_CLEAR    2
26 #define PROMPT_RELOCATE 3
27 #define PROMPT_ALLOCATE 4
28 #define PROMPT_EXPAND   5
29 #define PROMPT_CONNECT  6
30 #define PROMPT_CREATE   7
31 #define PROMPT_SALVAGE  8
32 #define PROMPT_TRUNCATE 9
33 #define PROMPT_CLEAR_INODE 10
34 #define PROMPT_ABORT    11
35 #define PROMPT_SPLIT    12
36 #define PROMPT_CONTINUE 13
37 #define PROMPT_CLONE    14
38 #define PROMPT_DELETE   15
39 #define PROMPT_SUPPRESS 16
40 #define PROMPT_UNLINK   17
41 #define PROMPT_CLEAR_HTREE 18
42 #define PROMPT_RECREATE 19
43 #define PROMPT_NULL     20
44
45 /*
46  * These are the prompts which are used to ask the user if they want
47  * to fix a problem.
48  */
49 static const char *prompt[] = {
50         N_("(no prompt)"),      /* 0 */
51         N_("Fix"),              /* 1 */
52         N_("Clear"),            /* 2 */
53         N_("Relocate"),         /* 3 */
54         N_("Allocate"),         /* 4 */
55         N_("Expand"),           /* 5 */
56         N_("Connect to /lost+found"), /* 6 */
57         N_("Create"),           /* 7 */ 
58         N_("Salvage"),          /* 8 */
59         N_("Truncate"),         /* 9 */
60         N_("Clear inode"),      /* 10 */
61         N_("Abort"),            /* 11 */
62         N_("Split"),            /* 12 */
63         N_("Continue"),         /* 13 */
64         N_("Clone multiply-claimed blocks"), /* 14 */
65         N_("Delete file"),      /* 15 */
66         N_("Suppress messages"),/* 16 */
67         N_("Unlink"),           /* 17 */
68         N_("Clear HTree index"),/* 18 */
69         N_("Recreate"),         /* 19 */
70         "",                     /* 20 */
71 };
72
73 /*
74  * These messages are printed when we are preen mode and we will be
75  * automatically fixing the problem.
76  */
77 static const char *preen_msg[] = {
78         N_("(NONE)"),           /* 0 */
79         N_("FIXED"),            /* 1 */
80         N_("CLEARED"),          /* 2 */
81         N_("RELOCATED"),        /* 3 */
82         N_("ALLOCATED"),        /* 4 */
83         N_("EXPANDED"),         /* 5 */
84         N_("RECONNECTED"),      /* 6 */
85         N_("CREATED"),          /* 7 */
86         N_("SALVAGED"),         /* 8 */
87         N_("TRUNCATED"),        /* 9 */
88         N_("INODE CLEARED"),    /* 10 */
89         N_("ABORTED"),          /* 11 */
90         N_("SPLIT"),            /* 12 */
91         N_("CONTINUING"),       /* 13 */
92         N_("MULTIPLY-CLAIMED BLOCKS CLONED"), /* 14 */
93         N_("FILE DELETED"),     /* 15 */
94         N_("SUPPRESSED"),       /* 16 */
95         N_("UNLINKED"),         /* 17 */
96         N_("HTREE INDEX CLEARED"),/* 18 */
97         N_("WILL RECREATE"),    /* 19 */
98         "",                     /* 20 */
99 };
100
101 static const struct e2fsck_problem problem_table[] = {
102
103         /* Pre-Pass 1 errors */
104
105         /* Block bitmap not in group */
106         { PR_0_BB_NOT_GROUP, N_("@b @B for @g %g is not in @g.  (@b %b)\n"),
107           PROMPT_RELOCATE, PR_LATCH_RELOC }, 
108
109         /* Inode bitmap not in group */
110         { PR_0_IB_NOT_GROUP, N_("@i @B for @g %g is not in @g.  (@b %b)\n"),
111           PROMPT_RELOCATE, PR_LATCH_RELOC }, 
112
113         /* Inode table not in group */
114         { PR_0_ITABLE_NOT_GROUP,
115           N_("@i table for @g %g is not in @g.  (@b %b)\n"
116           "WARNING: SEVERE DATA LOSS POSSIBLE.\n"),
117           PROMPT_RELOCATE, PR_LATCH_RELOC },
118
119         /* Superblock corrupt */
120         { PR_0_SB_CORRUPT,
121           N_("\nThe @S could not be read or does not describe a correct ext2\n"
122           "@f.  If the @v is valid and it really contains an ext2\n"
123           "@f (and not swap or ufs or something else), then the @S\n"
124           "is corrupt, and you might try running e2fsck with an alternate @S:\n"
125           "    e2fsck -b %S <@v>\n\n"),
126           PROMPT_NONE, PR_FATAL },
127
128         /* Filesystem size is wrong */
129         { PR_0_FS_SIZE_WRONG,
130           N_("The @f size (according to the @S) is %b @bs\n"
131           "The physical size of the @v is %c @bs\n"
132           "Either the @S or the partition table is likely to be corrupt!\n"),
133           PROMPT_ABORT, 0 },
134
135         /* Fragments not supported */             
136         { PR_0_NO_FRAGMENTS,
137           N_("@S @b_size = %b, fragsize = %c.\n"
138           "This version of e2fsck does not support fragment sizes different\n"
139           "from the @b size.\n"),
140           PROMPT_NONE, PR_FATAL },
141
142           /* Bad blocks_per_group */
143         { PR_0_BLOCKS_PER_GROUP,
144           N_("@S @bs_per_group = %b, should have been %c\n"),
145           PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
146
147         /* Bad first_data_block */
148         { PR_0_FIRST_DATA_BLOCK,
149           N_("@S first_data_@b = %b, should have been %c\n"),
150           PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
151         
152         /* Adding UUID to filesystem */
153         { PR_0_ADD_UUID,
154           N_("@f did not have a UUID; generating one.\n\n"),
155           PROMPT_NONE, 0 },
156
157         /* Relocate hint */
158         { PR_0_RELOCATE_HINT,
159           N_("Note: if several inode or block bitmap blocks or part\n"
160           "of the inode table require relocation, you may wish to try\n"
161           "running e2fsck with the '-b %S' option first.  The problem\n"
162           "may lie only with the primary block group descriptors, and\n"
163           "the backup block group descriptors may be OK.\n\n"),
164           PROMPT_NONE, PR_PREEN_OK | PR_NOCOLLATE },
165
166         /* Miscellaneous superblock corruption */
167         { PR_0_MISC_CORRUPT_SUPER,
168           N_("Corruption found in @S.  (%s = %N).\n"),
169           PROMPT_NONE, PR_AFTER_CODE, PR_0_SB_CORRUPT },
170
171         /* Error determing physical device size of filesystem */
172         { PR_0_GETSIZE_ERROR,     
173           N_("Error determining size of the physical @v: %m\n"),
174           PROMPT_NONE, PR_FATAL },
175
176         /* Inode count in superblock is incorrect */
177         { PR_0_INODE_COUNT_WRONG,
178           N_("@i count in @S is %i, @s %j.\n"),
179           PROMPT_FIX, 0 },
180
181         { PR_0_HURD_CLEAR_FILETYPE,
182           N_("The Hurd does not support the filetype feature.\n"),
183           PROMPT_CLEAR, 0 },
184
185         /* Journal inode is invalid */
186         { PR_0_JOURNAL_BAD_INODE,
187           N_("@S has an @n ext3 @j (@i %i).\n"),
188           PROMPT_CLEAR, PR_PREEN_OK },
189
190         /* The external journal has (unsupported) multiple filesystems */
191         { PR_0_JOURNAL_UNSUPP_MULTIFS,
192           N_("External @j has multiple @f users (unsupported).\n"),
193           PROMPT_NONE, PR_FATAL },
194
195         /* Can't find external journal */
196         { PR_0_CANT_FIND_JOURNAL,
197           N_("Can't find external @j\n"),
198           PROMPT_NONE, PR_FATAL },
199
200         /* External journal has bad superblock */
201         { PR_0_EXT_JOURNAL_BAD_SUPER,
202           N_("External @j has bad @S\n"),
203           PROMPT_NONE, PR_FATAL },
204
205         /* Superblock has a bad journal UUID */
206         { PR_0_JOURNAL_BAD_UUID,
207           N_("External @j does not support this @f\n"),
208           PROMPT_NONE, PR_FATAL },
209
210         /* Journal has an unknown superblock type */
211         { PR_0_JOURNAL_UNSUPP_SUPER,
212           N_("Ext3 @j @S is unknown type %N (unsupported).\n"
213              "It is likely that your copy of e2fsck is old and/or doesn't "
214              "support this @j format.\n"
215              "It is also possible the @j @S is corrupt.\n"),
216           PROMPT_ABORT, PR_NO_OK | PR_AFTER_CODE, PR_0_JOURNAL_BAD_SUPER },
217
218         /* Journal superblock is corrupt */
219         { PR_0_JOURNAL_BAD_SUPER,
220           N_("Ext3 @j @S is corrupt.\n"),
221           PROMPT_FIX, PR_PREEN_OK },
222
223         /* Superblock flag should be cleared */
224         { PR_0_JOURNAL_HAS_JOURNAL,
225           N_("@S doesn't have has_@j flag, but has ext3 @j %s.\n"),
226           PROMPT_CLEAR, PR_PREEN_OK },
227
228         /* Superblock flag is incorrect */
229         { PR_0_JOURNAL_RECOVER_SET,
230           N_("@S has ext3 needs_recovery flag set, but no @j.\n"),
231           PROMPT_CLEAR, PR_PREEN_OK },
232
233         /* Journal has data, but recovery flag is clear */
234         { PR_0_JOURNAL_RECOVERY_CLEAR,
235           N_("ext3 recovery flag is clear, but @j has data.\n"),
236           PROMPT_NONE, 0 },
237
238         /* Ask if we should clear the journal */
239         { PR_0_JOURNAL_RESET_JOURNAL,
240           N_("Clear @j"),
241           PROMPT_NULL, PR_PREEN_NOMSG },
242
243         /* Ask if we should run the journal anyway */
244         { PR_0_JOURNAL_RUN,
245           N_("Run @j anyway"),
246           PROMPT_NULL, 0 },
247
248         /* Run the journal by default */
249         { PR_0_JOURNAL_RUN_DEFAULT,
250           N_("Recovery flag not set in backup @S, so running @j anyway.\n"),
251           PROMPT_NONE, 0 },
252
253         /* Clearing orphan inode */
254         { PR_0_ORPHAN_CLEAR_INODE,
255           N_("%s @o @i %i (uid=%Iu, gid=%Ig, mode=%Im, size=%Is)\n"),
256           PROMPT_NONE, 0 },
257
258         /* Illegal block found in orphaned inode */
259         { PR_0_ORPHAN_ILLEGAL_BLOCK_NUM,
260            N_("@I @b #%B (%b) found in @o @i %i.\n"),
261           PROMPT_NONE, 0 },
262                   
263         /* Already cleared block found in orphaned inode */
264         { PR_0_ORPHAN_ALREADY_CLEARED_BLOCK,
265            N_("Already cleared @b #%B (%b) found in @o @i %i.\n"),
266           PROMPT_NONE, 0 },
267   
268         /* Illegal orphan inode in superblock */
269         { PR_0_ORPHAN_ILLEGAL_HEAD_INODE,
270           N_("@I @o @i %i in @S.\n"),
271           PROMPT_NONE, 0 },
272
273         /* Illegal inode in orphaned inode list */
274         { PR_0_ORPHAN_ILLEGAL_INODE,
275           N_("@I @i %i in @o @i list.\n"),
276           PROMPT_NONE, 0 },
277
278         /* Filesystem revision is 0, but feature flags are set */
279         { PR_0_FS_REV_LEVEL,
280           N_("@f has feature flag(s) set, but is a revision 0 @f.  "),
281           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
282
283         /* Journal superblock has an unknown read-only feature flag set */
284         { PR_0_JOURNAL_UNSUPP_ROCOMPAT,
285           N_("Ext3 @j @S has an unknown read-only feature flag set.\n"),
286           PROMPT_ABORT, 0 },
287
288         /* Journal superblock has an unknown incompatible feature flag set */
289         { PR_0_JOURNAL_UNSUPP_INCOMPAT,
290           N_("Ext3 @j @S has an unknown incompatible feature flag set.\n"),
291           PROMPT_ABORT, 0 },
292
293         /* Journal has unsupported version number */
294         { PR_0_JOURNAL_UNSUPP_VERSION,
295           N_("@j version not supported by this e2fsck.\n"),
296           PROMPT_ABORT, 0 },
297
298         /* Moving journal to hidden file */
299         { PR_0_MOVE_JOURNAL,
300           N_("Moving @j from /%s to hidden @i.\n\n"),
301           PROMPT_NONE, 0 },
302
303         /* Error moving journal to hidden file */
304         { PR_0_ERR_MOVE_JOURNAL,
305           N_("Error moving @j: %m\n\n"),
306           PROMPT_NONE, 0 },
307
308         /* Clearing V2 journal superblock */
309         { PR_0_CLEAR_V2_JOURNAL,
310           N_("Found @n V2 @j @S fields (from V1 @j).\n"
311              "Clearing fields beyond the V1 @j @S...\n\n"),
312           PROMPT_NONE, 0 },
313
314         /* Backup journal inode blocks */
315         { PR_0_BACKUP_JNL,
316           N_("Backing up @j @i @b information.\n\n"),
317           PROMPT_NONE, 0 },
318
319         /* Reserved blocks w/o resize_inode */
320         { PR_0_NONZERO_RESERVED_GDT_BLOCKS,
321           N_("@f does not have resize_@i enabled, but s_reserved_gdt_@bs\n"
322              "is %N; @s zero.  "),
323           PROMPT_FIX, 0 },
324
325         /* Resize_inode not enabled, but resize inode is non-zero */
326         { PR_0_CLEAR_RESIZE_INODE,
327           N_("Resize_@i not enabled, but the resize @i is non-zero.  "),
328           PROMPT_CLEAR, 0 },
329
330         /* Resize inode invalid */
331         { PR_0_RESIZE_INODE_INVALID,
332           N_("Resize @i not valid.  "),
333           PROMPT_RECREATE, 0 },
334
335         /* Pass 1 errors */
336         
337         /* Pass 1: Checking inodes, blocks, and sizes */
338         { PR_1_PASS_HEADER,
339           N_("Pass 1: Checking @is, @bs, and sizes\n"),
340           PROMPT_NONE, 0 },
341                   
342         /* Root directory is not an inode */
343         { PR_1_ROOT_NO_DIR, N_("@r is not a @d.  "),
344           PROMPT_CLEAR, 0 }, 
345
346         /* Root directory has dtime set */
347         { PR_1_ROOT_DTIME,
348           N_("@r has dtime set (probably due to old mke2fs).  "),
349           PROMPT_FIX, PR_PREEN_OK },
350
351         /* Reserved inode has bad mode */
352         { PR_1_RESERVED_BAD_MODE,
353           N_("Reserved @i %i (%Q) has @n mode.  "),
354           PROMPT_CLEAR, PR_PREEN_OK },
355
356         /* Deleted inode has zero dtime */
357         { PR_1_ZERO_DTIME,
358           N_("@D @i %i has zero dtime.  "),
359           PROMPT_FIX, PR_PREEN_OK },
360
361         /* Inode in use, but dtime set */
362         { PR_1_SET_DTIME,
363           N_("@i %i is in use, but has dtime set.  "),
364           PROMPT_FIX, PR_PREEN_OK },
365
366         /* Zero-length directory */
367         { PR_1_ZERO_LENGTH_DIR,
368           N_("@i %i is a @z @d.  "),
369           PROMPT_CLEAR, PR_PREEN_OK },
370
371         /* Block bitmap conflicts with some other fs block */
372         { PR_1_BB_CONFLICT,
373           N_("@g %g's @b @B at %b @C.\n"),
374           PROMPT_RELOCATE, 0 },
375
376         /* Inode bitmap conflicts with some other fs block */
377         { PR_1_IB_CONFLICT,
378           N_("@g %g's @i @B at %b @C.\n"),
379           PROMPT_RELOCATE, 0 },
380
381         /* Inode table conflicts with some other fs block */
382         { PR_1_ITABLE_CONFLICT,
383           N_("@g %g's @i table at %b @C.\n"),
384           PROMPT_RELOCATE, 0 },
385
386         /* Block bitmap is on a bad block */
387         { PR_1_BB_BAD_BLOCK,
388           N_("@g %g's @b @B (%b) is bad.  "),
389           PROMPT_RELOCATE, 0 },
390
391         /* Inode bitmap is on a bad block */
392         { PR_1_IB_BAD_BLOCK,
393           N_("@g %g's @i @B (%b) is bad.  "),
394           PROMPT_RELOCATE, 0 },
395
396         /* Inode has incorrect i_size */
397         { PR_1_BAD_I_SIZE,
398           N_("@i %i, i_size is %Is, @s %N.  "),
399           PROMPT_FIX, PR_PREEN_OK },
400                   
401         /* Inode has incorrect i_blocks */
402         { PR_1_BAD_I_BLOCKS,
403           N_("@i %i, i_@bs is %Ib, @s %N.  "),
404           PROMPT_FIX, PR_PREEN_OK },
405
406         /* Illegal blocknumber in inode */
407         { PR_1_ILLEGAL_BLOCK_NUM,
408           N_("@I @b #%B (%b) in @i %i.  "),
409           PROMPT_CLEAR, PR_LATCH_BLOCK },
410
411         /* Block number overlaps fs metadata */
412         { PR_1_BLOCK_OVERLAPS_METADATA,
413           N_("@b #%B (%b) overlaps @f metadata in @i %i.  "),
414           PROMPT_CLEAR, PR_LATCH_BLOCK },
415
416         /* Inode has illegal blocks (latch question) */
417         { PR_1_INODE_BLOCK_LATCH,
418           N_("@i %i has illegal @b(s).  "),
419           PROMPT_CLEAR, 0 },
420
421         /* Too many bad blocks in inode */
422         { PR_1_TOO_MANY_BAD_BLOCKS,
423           N_("Too many illegal @bs in @i %i.\n"),
424           PROMPT_CLEAR_INODE, PR_NO_OK },       
425
426         /* Illegal block number in bad block inode */
427         { PR_1_BB_ILLEGAL_BLOCK_NUM,
428           N_("@I @b #%B (%b) in bad @b @i.  "),
429           PROMPT_CLEAR, PR_LATCH_BBLOCK },
430
431         /* Bad block inode has illegal blocks (latch question) */
432         { PR_1_INODE_BBLOCK_LATCH,
433           N_("Bad @b @i has illegal @b(s).  "),
434           PROMPT_CLEAR, 0 },
435
436         /* Duplicate or bad blocks in use! */
437         { PR_1_DUP_BLOCKS_PREENSTOP,
438           N_("Duplicate or bad @b in use!\n"),
439           PROMPT_NONE, 0 },
440
441         /* Bad block used as bad block indirect block */          
442         { PR_1_BBINODE_BAD_METABLOCK,
443           N_("Bad @b %b used as bad @b @i indirect @b.  "),
444           PROMPT_CLEAR, PR_LATCH_BBLOCK },
445
446         /* Inconsistency can't be fixed prompt */         
447         { PR_1_BBINODE_BAD_METABLOCK_PROMPT,
448           N_("\nThe bad @b @i has probably been corrupted.  You probably\n"
449              "should stop now and run ""e2fsck -c"" to scan for bad blocks\n"
450              "in the @f.\n"),
451           PROMPT_CONTINUE, PR_PREEN_NOMSG },
452
453         /* Bad primary block */
454         { PR_1_BAD_PRIMARY_BLOCK,  
455           N_("\nIf the @b is really bad, the @f can not be fixed.\n"),
456           PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK_PROMPT },
457                   
458         /* Bad primary block prompt */
459         { PR_1_BAD_PRIMARY_BLOCK_PROMPT,          
460           N_("You can remove this @b from the bad @b list and hope\n"
461              "that the @b is really OK.  But there are no guarantees.\n\n"),
462           PROMPT_CLEAR, PR_PREEN_NOMSG },
463
464         /* Bad primary superblock */
465         { PR_1_BAD_PRIMARY_SUPERBLOCK,
466           N_("The primary @S (%b) is on the bad @b list.\n"),
467           PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
468                   
469         /* Bad primary block group descriptors */
470         { PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR,
471           N_("Block %b in the primary @g descriptors "
472           "is on the bad @b list\n"),
473           PROMPT_NONE, PR_AFTER_CODE, PR_1_BAD_PRIMARY_BLOCK },
474                   
475         /* Bad superblock in group */
476         { PR_1_BAD_SUPERBLOCK,
477           N_("Warning: Group %g's @S (%b) is bad.\n"),
478           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
479                   
480         /* Bad block group descriptors in group */
481         { PR_1_BAD_GROUP_DESCRIPTORS,
482           N_("Warning: Group %g's copy of the @g descriptors has a bad "
483           "@b (%b).\n"),
484           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
485
486         /* Block claimed for no reason */         
487         { PR_1_PROGERR_CLAIMED_BLOCK,
488           N_("Programming error?  @b #%b claimed for no reason in "
489           "process_bad_@b.\n"),
490           PROMPT_NONE, PR_PREEN_OK },
491
492         /* Error allocating blocks for relocating metadata */
493         { PR_1_RELOC_BLOCK_ALLOCATE,
494           N_("@A %N contiguous @b(s) in @b @g %g for %s: %m\n"),
495           PROMPT_NONE, PR_PREEN_OK },
496                 
497         /* Error allocating block buffer during relocation process */
498         { PR_1_RELOC_MEMORY_ALLOCATE,
499           N_("@A @b buffer for relocating %s\n"),
500           PROMPT_NONE, PR_PREEN_OK },
501                 
502         /* Relocating metadata group information from X to Y */ 
503         { PR_1_RELOC_FROM_TO,
504           N_("Relocating @g %g's %s from %b to %c...\n"),
505           PROMPT_NONE, PR_PREEN_OK },
506                 
507         /* Relocating metatdata group information to X */
508         { PR_1_RELOC_TO,
509           N_("Relocating @g %g's %s to %c...\n"), /* xgettext:no-c-format */
510           PROMPT_NONE, PR_PREEN_OK },
511                 
512         /* Block read error during relocation process */
513         { PR_1_RELOC_READ_ERR,
514           N_("Warning: could not read @b %b of %s: %m\n"),
515           PROMPT_NONE, PR_PREEN_OK },
516                 
517         /* Block write error during relocation process */
518         { PR_1_RELOC_WRITE_ERR,
519           N_("Warning: could not write @b %b for %s: %m\n"),
520           PROMPT_NONE, PR_PREEN_OK },
521
522         /* Error allocating inode bitmap */
523         { PR_1_ALLOCATE_IBITMAP_ERROR,
524           N_("@A @i @B (%N): %m\n"),
525           PROMPT_NONE, PR_FATAL },
526
527         /* Error allocating block bitmap */
528         { PR_1_ALLOCATE_BBITMAP_ERROR,
529           N_("@A @b @B (%N): %m\n"),
530           PROMPT_NONE, PR_FATAL },
531
532         /* Error allocating icount structure */
533         { PR_1_ALLOCATE_ICOUNT,
534           N_("@A icount link information: %m\n"),
535           PROMPT_NONE, PR_FATAL },
536
537         /* Error allocating dbcount */
538         { PR_1_ALLOCATE_DBCOUNT,
539           N_("@A @d @b array: %m\n"),
540           PROMPT_NONE, PR_FATAL },
541
542         /* Error while scanning inodes */
543         { PR_1_ISCAN_ERROR,
544           N_("Error while scanning @is (%i): %m\n"),
545           PROMPT_NONE, PR_FATAL },
546
547         /* Error while iterating over blocks */
548         { PR_1_BLOCK_ITERATE,
549           N_("Error while iterating over @bs in @i %i: %m\n"),
550           PROMPT_NONE, PR_FATAL },
551
552         /* Error while storing inode count information */         
553         { PR_1_ICOUNT_STORE,
554           N_("Error storing @i count information (@i=%i, count=%N): %m\n"),
555           PROMPT_NONE, PR_FATAL },
556
557         /* Error while storing directory block information */     
558         { PR_1_ADD_DBLOCK,
559           N_("Error storing @d @b information "
560           "(@i=%i, @b=%b, num=%N): %m\n"),
561           PROMPT_NONE, PR_FATAL },
562
563         /* Error while reading inode (for clearing) */    
564         { PR_1_READ_INODE,
565           N_("Error reading @i %i: %m\n"),
566           PROMPT_NONE, PR_FATAL },
567
568         /* Suppress messages prompt */
569         { PR_1_SUPPRESS_MESSAGES, "", PROMPT_SUPPRESS, PR_NO_OK },
570                   
571         /* Imagic flag set on an inode when filesystem doesn't support it */
572         { PR_1_SET_IMAGIC,
573           N_("@i %i has imagic flag set.  "),
574           PROMPT_CLEAR, 0 },
575
576         /* Immutable flag set on a device or socket inode */
577         { PR_1_SET_IMMUTABLE,
578           N_("Special (@v/socket/fifo/symlink) file (@i %i) has immutable\n"
579              "or append-only flag set.  "),
580           PROMPT_CLEAR, PR_PREEN_OK | PR_PREEN_NO | PR_NO_OK },
581
582         /* Compression flag set on an inode when filesystem doesn't support it */
583         { PR_1_COMPR_SET,
584           N_("@i %i has @cion flag set on @f without @cion support.  "),
585           PROMPT_CLEAR, 0 },
586
587         /* Non-zero size for device, fifo or socket inode */
588         { PR_1_SET_NONZSIZE,
589           N_("Special (@v/socket/fifo) @i %i has non-zero size.  "),
590           PROMPT_FIX, PR_PREEN_OK },
591
592         /* Filesystem revision is 0, but feature flags are set */
593         { PR_1_FS_REV_LEVEL,
594           N_("@f has feature flag(s) set, but is a revision 0 @f.  "),
595           PROMPT_FIX, PR_PREEN_OK | PR_NO_OK },
596
597         /* Journal inode is not in use, but contains data */      
598         { PR_1_JOURNAL_INODE_NOT_CLEAR,
599           N_("@j @i is not in use, but contains data.  "),
600           PROMPT_CLEAR, PR_PREEN_OK },    
601           
602         /* Journal has bad mode */
603         { PR_1_JOURNAL_BAD_MODE,
604           N_("@j is not regular file.  "),
605           PROMPT_FIX, PR_PREEN_OK },
606
607         /* Deal with inodes that were part of orphan linked list */
608         { PR_1_LOW_DTIME,
609           N_("@i %i was part of the @o @i list.  "),
610           PROMPT_FIX, PR_LATCH_LOW_DTIME, 0 },    
611
612         /* Deal with inodes that were part of corrupted orphan linked
613            list (latch question) */
614         { PR_1_ORPHAN_LIST_REFUGEES,
615           N_("@is that were part of a corrupted orphan linked list found.  "),
616           PROMPT_FIX, 0 },                
617                   
618         /* Error allocating refcount structure */
619         { PR_1_ALLOCATE_REFCOUNT,
620           N_("@A refcount structure (%N): %m\n"),
621           PROMPT_NONE, PR_FATAL },
622
623         /* Error reading extended attribute block */
624         { PR_1_READ_EA_BLOCK,
625           N_("Error reading @a @b %b for @i %i.  "),
626           PROMPT_CLEAR, 0 },
627
628         /* Invalid extended attribute block */
629         { PR_1_BAD_EA_BLOCK,
630           N_("@i %i has a bad @a @b %b.  "),
631           PROMPT_CLEAR, 0 },
632
633         /* Error reading Extended Attribute block while fixing refcount */
634         { PR_1_EXTATTR_READ_ABORT,
635           N_("Error reading @a @b %b (%m).  "),
636           PROMPT_ABORT, 0 },
637                   
638         /* Extended attribute reference count incorrect */
639         { PR_1_EXTATTR_REFCOUNT,
640           N_("@a @b %b has reference count %B, @s %N.  "),
641           PROMPT_FIX, 0 },
642                   
643         /* Error writing Extended Attribute block while fixing refcount */ 
644         { PR_1_EXTATTR_WRITE,
645           N_("Error writing @a @b %b (%m).  "),
646           PROMPT_ABORT, 0 },
647
648         /* Multiple EA blocks not supported */
649         { PR_1_EA_MULTI_BLOCK,
650           N_("@a @b %b has h_@bs > 1.  "),
651           PROMPT_CLEAR, 0},       
652
653         /* Error allocating EA region allocation structure */
654         { PR_1_EA_ALLOC_REGION,
655           N_("@A @a @b %b.  "),
656           PROMPT_ABORT, 0},
657         
658         /* Error EA allocation collision */
659         { PR_1_EA_ALLOC_COLLISION,
660           N_("@a @b %b is corrupt (allocation collision).  "),
661           PROMPT_CLEAR, 0},
662         
663         /* Bad extended attribute name */
664         { PR_1_EA_BAD_NAME,
665           N_("@a @b %b is corrupt (@n name).  "),
666           PROMPT_CLEAR, 0},       
667
668         /* Bad extended attribute value */
669         { PR_1_EA_BAD_VALUE,
670           N_("@a @b %b is corrupt (@n value).  "),
671           PROMPT_CLEAR, 0},
672
673         /* Inode too big (latch question) */
674         { PR_1_INODE_TOOBIG,
675           N_("@i %i is too big.  "), PROMPT_TRUNCATE, 0 },
676
677         /* Directory too big */
678         { PR_1_TOOBIG_DIR, 
679           N_("@b #%B (%b) causes @d to be too big.  "),
680           PROMPT_CLEAR, PR_LATCH_TOOBIG },
681
682         /* Regular file too big */
683         { PR_1_TOOBIG_REG,
684           N_("@b #%B (%b) causes file to be too big.  "),
685           PROMPT_CLEAR, PR_LATCH_TOOBIG },
686
687         /* Symlink too big */
688         { PR_1_TOOBIG_SYMLINK,
689           N_("@b #%B (%b) causes symlink to be too big.  "),
690           PROMPT_CLEAR, PR_LATCH_TOOBIG },
691
692         /* INDEX_FL flag set on a non-HTREE filesystem */
693         { PR_1_HTREE_SET,
694           N_("@i %i has INDEX_FL flag set on @f without htree support.\n"),
695           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
696
697         /* INDEX_FL flag set on a non-directory */      
698         { PR_1_HTREE_NODIR,
699           N_("@i %i has INDEX_FL flag set but is not a @d.\n"),
700           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
701
702         /* Invalid root node in HTREE directory */      
703         { PR_1_HTREE_BADROOT,
704           N_("@h %i has an @n root node.\n"),
705           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
706
707         /* Unsupported hash version in HTREE directory */       
708         { PR_1_HTREE_HASHV,
709           N_("@h %i has an unsupported hash version (%N)\n"),
710           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
711
712         /* Incompatible flag in HTREE root node */      
713         { PR_1_HTREE_INCOMPAT,
714           N_("@h %i uses an incompatible htree root node flag.\n"),
715           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
716
717         /* HTREE too deep */    
718         { PR_1_HTREE_DEPTH,
719           N_("@h %i has a tree depth (%N) which is too big\n"),
720           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
721                   
722         /* Bad block has indirect block that conflicts with filesystem block */
723         { PR_1_BB_FS_BLOCK,
724           N_("Bad @b @i has an indirect @b (%b) that conflicts with\n"
725              "@f metadata.  "),
726           PROMPT_CLEAR, PR_LATCH_BBLOCK },
727
728         /* Resize inode failed */
729         { PR_1_RESIZE_INODE_CREATE,
730           N_("Resize @i (re)creation failed: %m."),
731           PROMPT_ABORT, 0 },
732
733         /* invalid inode->i_extra_isize */      
734         { PR_1_EXTRA_ISIZE,
735           N_("@i %i has a extra size (%IS) which is @n\n"),
736           PROMPT_FIX, PR_PREEN_OK },
737
738         /* invalid ea entry->e_name_len */      
739         { PR_1_ATTR_NAME_LEN,
740           N_("@a in @i %i has a namelen (%N) which is @n\n"),
741           PROMPT_CLEAR, PR_PREEN_OK },
742
743         /* invalid ea entry->e_value_size */    
744         { PR_1_ATTR_VALUE_SIZE,
745           N_("@a in @i %i has a value size (%N) which is @n\n"),
746           PROMPT_CLEAR, PR_PREEN_OK },
747
748         /* invalid ea entry->e_value_offs */    
749         { PR_1_ATTR_VALUE_OFFSET,
750           N_("@a in @i %i has a value offset (%N) which is @n\n"),
751           PROMPT_CLEAR, PR_PREEN_OK },
752
753         /* invalid ea entry->e_value_block */   
754         { PR_1_ATTR_VALUE_BLOCK,
755           N_("@a in @i %i has a value @b (%N) which is @n (must be 0)\n"),
756           PROMPT_CLEAR, PR_PREEN_OK },
757
758         /* invalid ea entry->e_hash */  
759         { PR_1_ATTR_HASH,
760           N_("@a in @i %i has a hash (%N) which is @n (must be 0)\n"),
761           PROMPT_CLEAR, PR_PREEN_OK },
762
763         /* Pass 1b errors */
764
765         /* Pass 1B: Rescan for duplicate/bad blocks */
766         { PR_1B_PASS_HEADER,
767           N_("\nRunning additional passes to resolve @bs claimed by more than one @i...\n"
768           "Pass 1B: Rescanning for @m @bs\n"),
769           PROMPT_NONE, 0 },
770
771         /* Duplicate/bad block(s) header */
772         { PR_1B_DUP_BLOCK_HEADER,         
773           N_("@m @b(s) in @i %i:"),
774           PROMPT_NONE, 0 },
775
776         /* Duplicate/bad block(s) in inode */
777         { PR_1B_DUP_BLOCK,        
778           " %b",
779           PROMPT_NONE, PR_LATCH_DBLOCK | PR_PREEN_NOHDR },
780
781         /* Duplicate/bad block(s) end */
782         { PR_1B_DUP_BLOCK_END,
783           "\n",
784           PROMPT_NONE, PR_PREEN_NOHDR },
785                   
786         /* Error while scanning inodes */
787         { PR_1B_ISCAN_ERROR,
788           N_("Error while scanning inodes (%i): %m\n"),
789           PROMPT_NONE, PR_FATAL },
790
791         /* Error allocating inode bitmap */
792         { PR_1B_ALLOCATE_IBITMAP_ERROR,
793           N_("@A @i @B (@i_dup_map): %m\n"),
794           PROMPT_NONE, PR_FATAL },
795
796         /* Error while iterating over blocks */
797         { PR_1B_BLOCK_ITERATE,
798           N_("Error while iterating over @bs in @i %i (%s): %m\n"),
799           PROMPT_NONE, 0 },
800
801         /* Error adjusting EA refcount */
802         { PR_1B_ADJ_EA_REFCOUNT,
803           N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
804           PROMPT_NONE, 0 },
805
806
807         /* Pass 1C: Scan directories for inodes with multiply-claimed blocks. */
808         { PR_1C_PASS_HEADER,
809           N_("Pass 1C: Scanning directories for @is with @m @bs.\n"),
810           PROMPT_NONE, 0 },
811
812                   
813         /* Pass 1D: Reconciling multiply-claimed blocks */
814         { PR_1D_PASS_HEADER,
815           N_("Pass 1D: Reconciling @m @bs\n"),
816           PROMPT_NONE, 0 },
817                   
818         /* File has duplicate blocks */
819         { PR_1D_DUP_FILE,
820           N_("File %Q (@i #%i, mod time %IM) \n"
821           "  has %B @m @b(s), shared with %N file(s):\n"),
822           PROMPT_NONE, 0 },
823                   
824         /* List of files sharing duplicate blocks */    
825         { PR_1D_DUP_FILE_LIST,
826           N_("\t%Q (@i #%i, mod time %IM)\n"),
827           PROMPT_NONE, 0 },
828           
829         /* File sharing blocks with filesystem metadata  */     
830         { PR_1D_SHARE_METADATA,
831           N_("\t<@f metadata>\n"),
832           PROMPT_NONE, 0 },
833
834         /* Report of how many duplicate/bad inodes */   
835         { PR_1D_NUM_DUP_INODES,
836           N_("(There are %N @is containing @m @bs.)\n\n"),
837           PROMPT_NONE, 0 },
838
839         /* Duplicated blocks already reassigned or cloned. */
840         { PR_1D_DUP_BLOCKS_DEALT,
841           N_("@m @bs already reassigned or cloned.\n\n"),
842           PROMPT_NONE, 0 },
843
844         /* Clone duplicate/bad blocks? */
845         { PR_1D_CLONE_QUESTION,
846           "", PROMPT_CLONE, PR_NO_OK },
847                   
848         /* Delete file? */
849         { PR_1D_DELETE_QUESTION,
850           "", PROMPT_DELETE, 0 },
851
852         /* Couldn't clone file (error) */
853         { PR_1D_CLONE_ERROR,
854           N_("Couldn't clone file: %m\n"), PROMPT_NONE, 0 },
855
856         /* Pass 2 errors */
857
858         /* Pass 2: Checking directory structure */
859         { PR_2_PASS_HEADER,
860           N_("Pass 2: Checking @d structure\n"),
861           PROMPT_NONE, 0 },
862                   
863         /* Bad inode number for '.' */
864         { PR_2_BAD_INODE_DOT,
865           N_("@n @i number for '.' in @d @i %i.\n"),
866           PROMPT_FIX, 0 },
867
868         /* Directory entry has bad inode number */
869         { PR_2_BAD_INO, 
870           N_("@E has @n @i #: %Di.\n"),
871           PROMPT_CLEAR, 0 },
872
873         /* Directory entry has deleted or unused inode */
874         { PR_2_UNUSED_INODE, 
875           N_("@E has @D/unused @i %Di.  "),
876           PROMPT_CLEAR, PR_PREEN_OK },
877
878         /* Directry entry is link to '.' */
879         { PR_2_LINK_DOT, 
880           N_("@E @L to '.'  "),
881           PROMPT_CLEAR, 0 },
882
883         /* Directory entry points to inode now located in a bad block */
884         { PR_2_BB_INODE,
885           N_("@E points to @i (%Di) located in a bad @b.\n"),
886           PROMPT_CLEAR, 0 },
887
888         /* Directory entry contains a link to a directory */
889         { PR_2_LINK_DIR, 
890           N_("@E @L to @d %P (%Di).\n"),
891           PROMPT_CLEAR, 0 },
892
893         /* Directory entry contains a link to the root directry */
894         { PR_2_LINK_ROOT, 
895           N_("@E @L to the @r.\n"),
896           PROMPT_CLEAR, 0 },
897
898         /* Directory entry has illegal characters in its name */
899         { PR_2_BAD_NAME, 
900           N_("@E has illegal characters in its name.\n"),
901           PROMPT_FIX, 0 },
902
903         /* Missing '.' in directory inode */      
904         { PR_2_MISSING_DOT,
905           N_("Missing '.' in @d @i %i.\n"),
906           PROMPT_FIX, 0 },
907
908         /* Missing '..' in directory inode */     
909         { PR_2_MISSING_DOT_DOT,
910           N_("Missing '..' in @d @i %i.\n"),
911           PROMPT_FIX, 0 },
912
913         /* First entry in directory inode doesn't contain '.' */
914         { PR_2_1ST_NOT_DOT,
915           N_("First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"),
916           PROMPT_FIX, 0 },
917
918         /* Second entry in directory inode doesn't contain '..' */
919         { PR_2_2ND_NOT_DOT_DOT,
920           N_("Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"),
921           PROMPT_FIX, 0 },
922                   
923         /* i_faddr should be zero */
924         { PR_2_FADDR_ZERO,
925           N_("i_faddr @F %IF, @s zero.\n"),
926           PROMPT_CLEAR, 0 },
927
928         /* i_file_acl should be zero */
929         { PR_2_FILE_ACL_ZERO,
930           N_("i_file_acl @F %If, @s zero.\n"),
931           PROMPT_CLEAR, 0 },
932
933         /* i_dir_acl should be zero */
934         { PR_2_DIR_ACL_ZERO,
935           N_("i_dir_acl @F %Id, @s zero.\n"),
936           PROMPT_CLEAR, 0 },
937
938         /* i_frag should be zero */
939         { PR_2_FRAG_ZERO,
940           N_("i_frag @F %N, @s zero.\n"),
941           PROMPT_CLEAR, 0 },
942
943         /* i_fsize should be zero */
944         { PR_2_FSIZE_ZERO,
945           N_("i_fsize @F %N, @s zero.\n"),
946           PROMPT_CLEAR, 0 },
947
948         /* inode has bad mode */
949         { PR_2_BAD_MODE,
950           N_("@i %i (%Q) has @n mode (%Im).\n"),
951           PROMPT_CLEAR, 0 },
952
953         /* directory corrupted */
954         { PR_2_DIR_CORRUPTED,     
955           N_("@d @i %i, @b %B, offset %N: @d corrupted\n"),
956           PROMPT_SALVAGE, 0 },
957                   
958         /* filename too long */
959         { PR_2_FILENAME_LONG,     
960           N_("@d @i %i, @b %B, offset %N: filename too long\n"),
961           PROMPT_TRUNCATE, 0 },
962
963         /* Directory inode has a missing block (hole) */
964         { PR_2_DIRECTORY_HOLE,    
965           N_("@d @i %i has an unallocated @b #%B.  "),
966           PROMPT_ALLOCATE, 0 },
967
968         /* '.' is not NULL terminated */
969         { PR_2_DOT_NULL_TERM,
970           N_("'.' @d @e in @d @i %i is not NULL terminated\n"),
971           PROMPT_FIX, 0 },
972
973         /* '..' is not NULL terminated */
974         { PR_2_DOT_DOT_NULL_TERM,
975           N_("'..' @d @e in @d @i %i is not NULL terminated\n"),
976           PROMPT_FIX, 0 },
977
978         /* Illegal character device inode */
979         { PR_2_BAD_CHAR_DEV,
980           N_("@i %i (%Q) is an @I character @v.\n"),
981           PROMPT_CLEAR, 0 },
982
983         /* Illegal block device inode */
984         { PR_2_BAD_BLOCK_DEV,
985           N_("@i %i (%Q) is an @I @b @v.\n"),
986           PROMPT_CLEAR, 0 },
987
988         /* Duplicate '.' entry */
989         { PR_2_DUP_DOT,
990           N_("@E is duplicate '.' @e.\n"),
991           PROMPT_FIX, 0 },        
992
993         /* Duplicate '..' entry */
994         { PR_2_DUP_DOT_DOT,
995           N_("@E is duplicate '..' @e.\n"),
996           PROMPT_FIX, 0 },
997
998         /* Internal error: couldn't find dir_info */
999         { PR_2_NO_DIRINFO,
1000           N_("Internal error: couldn't find dir_info for %i.\n"),
1001           PROMPT_NONE, PR_FATAL },
1002
1003         /* Final rec_len is wrong */
1004         { PR_2_FINAL_RECLEN,
1005           N_("@E has rec_len of %Dr, @s %N.\n"),
1006           PROMPT_FIX, 0 },
1007                   
1008         /* Error allocating icount structure */
1009         { PR_2_ALLOCATE_ICOUNT,
1010           N_("@A icount structure: %m\n"),
1011           PROMPT_NONE, PR_FATAL },
1012
1013         /* Error iterating over directory blocks */
1014         { PR_2_DBLIST_ITERATE,
1015           N_("Error iterating over @d @bs: %m\n"),
1016           PROMPT_NONE, PR_FATAL },
1017
1018         /* Error reading directory block */
1019         { PR_2_READ_DIRBLOCK,
1020           N_("Error reading @d @b %b (@i %i): %m\n"),
1021           PROMPT_CONTINUE, 0 },
1022
1023         /* Error writing directory block */
1024         { PR_2_WRITE_DIRBLOCK,
1025           N_("Error writing @d @b %b (@i %i): %m\n"),
1026           PROMPT_CONTINUE, 0 },
1027
1028         /* Error allocating new directory block */
1029         { PR_2_ALLOC_DIRBOCK,
1030           N_("@A new @d @b for @i %i (%s): %m\n"),
1031           PROMPT_NONE, 0 },
1032
1033         /* Error deallocating inode */
1034         { PR_2_DEALLOC_INODE,
1035           N_("Error deallocating @i %i: %m\n"),
1036           PROMPT_NONE, PR_FATAL },
1037
1038         /* Directory entry for '.' is big.  Split? */
1039         { PR_2_SPLIT_DOT,
1040           N_("@d @e for '.' is big.  "),
1041           PROMPT_SPLIT, PR_NO_OK },
1042
1043         /* Illegal FIFO inode */
1044         { PR_2_BAD_FIFO,
1045           N_("@i %i (%Q) is an @I FIFO.\n"),
1046           PROMPT_CLEAR, 0 },
1047
1048         /* Illegal socket inode */
1049         { PR_2_BAD_SOCKET,
1050           N_("@i %i (%Q) is an @I socket.\n"),
1051           PROMPT_CLEAR, 0 },
1052
1053         /* Directory filetype not set */
1054         { PR_2_SET_FILETYPE,
1055           N_("Setting filetype for @E to %N.\n"),
1056           PROMPT_NONE, PR_PREEN_OK | PR_NO_OK | PR_NO_NOMSG },
1057
1058         /* Directory filetype incorrect */
1059         { PR_2_BAD_FILETYPE,
1060           N_("@E has an incorrect filetype (was %Dt, @s %N).\n"),
1061           PROMPT_FIX, 0 },
1062
1063         /* Directory filetype set on filesystem */
1064         { PR_2_CLEAR_FILETYPE,
1065           N_("@E has filetype set.\n"),
1066           PROMPT_CLEAR, PR_PREEN_OK },
1067
1068         /* Directory filename is null */
1069         { PR_2_NULL_NAME,
1070           N_("@E has a @z name.\n"),
1071           PROMPT_CLEAR, 0 },
1072
1073         /* Invalid symlink */
1074         { PR_2_INVALID_SYMLINK,
1075           N_("Symlink %Q (@i #%i) is @n.\n"),
1076           PROMPT_CLEAR, 0 },
1077
1078         /* i_file_acl (extended attribute block) is bad */
1079         { PR_2_FILE_ACL_BAD,
1080           N_("@a @b @F @n (%If).\n"),
1081           PROMPT_CLEAR, 0 },
1082
1083         /* Filesystem contains large files, but has no such flag in sb */
1084         { PR_2_FEATURE_LARGE_FILES,
1085           N_("@f contains large files, but lacks LARGE_FILE flag in @S.\n"),
1086           PROMPT_FIX, 0 },
1087           
1088         /* Node in HTREE directory not referenced */
1089         { PR_2_HTREE_NOTREF,
1090           N_("@p @h %d: node (%B) not referenced\n"),
1091           PROMPT_NONE, 0 },
1092
1093         /* Node in HTREE directory referenced twice */
1094         { PR_2_HTREE_DUPREF,
1095           N_("@p @h %d: node (%B) referenced twice\n"),
1096           PROMPT_NONE, 0 },
1097
1098         /* Node in HTREE directory has bad min hash */
1099         { PR_2_HTREE_MIN_HASH,
1100           N_("@p @h %d: node (%B) has bad min hash\n"),
1101           PROMPT_NONE, 0 },
1102
1103         /* Node in HTREE directory has bad max hash */
1104         { PR_2_HTREE_MAX_HASH,
1105           N_("@p @h %d: node (%B) has bad max hash\n"),
1106           PROMPT_NONE, 0 },
1107
1108         /* Clear invalid HTREE directory */
1109         { PR_2_HTREE_CLEAR,
1110           N_("@n @h %d (%q).  "), PROMPT_CLEAR, 0 },
1111                   
1112         /* Bad block in htree interior node */
1113         { PR_2_HTREE_BADBLK,
1114           N_("@p @h %d (%q): bad @b number %b.\n"),
1115           PROMPT_CLEAR_HTREE, 0 },
1116
1117         /* Error adjusting EA refcount */
1118         { PR_2_ADJ_EA_REFCOUNT,
1119           N_("Error adjusting refcount for @a @b %b (@i %i): %m\n"),
1120           PROMPT_NONE, PR_FATAL },
1121
1122         /* Invalid HTREE root node */
1123         { PR_2_HTREE_BAD_ROOT,
1124           N_("@p @h %d: root node is @n\n"),
1125           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1126
1127         /* Invalid HTREE limit */
1128         { PR_2_HTREE_BAD_LIMIT,
1129           N_("@p @h %d: node (%B) has @n limit (%N)\n"),
1130           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1131
1132         /* Invalid HTREE count */
1133         { PR_2_HTREE_BAD_COUNT,
1134           N_("@p @h %d: node (%B) has @n count (%N)\n"),
1135           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1136
1137         /* HTREE interior node has out-of-order hashes in table */
1138         { PR_2_HTREE_HASH_ORDER,
1139           N_("@p @h %d: node (%B) has an unordered hash table\n"),
1140           PROMPT_CLEAR_HTREE, PR_PREEN_OK },
1141
1142         /* Node in HTREE directory has invalid depth */
1143         { PR_2_HTREE_BAD_DEPTH,
1144           N_("@p @h %d: node (%B) has @n depth\n"),
1145           PROMPT_NONE, 0 },
1146         
1147         /* Duplicate directory entry found */
1148         { PR_2_DUPLICATE_DIRENT,
1149           N_("Duplicate @E found.  "),
1150           PROMPT_CLEAR, 0 },
1151         
1152         /* Non-unique filename found */
1153         { PR_2_NON_UNIQUE_FILE, /* xgettext: no-c-format */
1154           N_("@E has a non-unique filename.\nRename to %s"),
1155           PROMPT_NULL, 0 },
1156         
1157         /* Duplicate directory entry found */
1158         { PR_2_REPORT_DUP_DIRENT,
1159           N_("Duplicate @e '%Dn' found.\n\tMarking %p (%i) to be rebuilt.\n\n"),
1160           PROMPT_NONE, 0 },
1161         
1162         /* Pass 3 errors */
1163
1164         /* Pass 3: Checking directory connectivity */
1165         { PR_3_PASS_HEADER,
1166           N_("Pass 3: Checking @d connectivity\n"),
1167           PROMPT_NONE, 0 },
1168                   
1169         /* Root inode not allocated */
1170         { PR_3_NO_ROOT_INODE,
1171           N_("@r not allocated.  "),
1172           PROMPT_ALLOCATE, 0 }, 
1173                   
1174         /* No room in lost+found */
1175         { PR_3_EXPAND_LF_DIR,
1176           N_("No room in @l @d.  "),
1177           PROMPT_EXPAND, 0 },
1178
1179         /* Unconnected directory inode */
1180         { PR_3_UNCONNECTED_DIR,
1181           N_("Unconnected @d @i %i (%p)\n"),
1182           PROMPT_CONNECT, 0 },
1183
1184         /* /lost+found not found */
1185         { PR_3_NO_LF_DIR,
1186           N_("/@l not found.  "),
1187           PROMPT_CREATE, PR_PREEN_OK },
1188
1189         /* .. entry is incorrect */
1190         { PR_3_BAD_DOT_DOT,
1191           N_("'..' in %Q (%i) is %P (%j), @s %q (%d).\n"),
1192           PROMPT_FIX, 0 },
1193
1194         /* Bad or non-existent /lost+found.  Cannot reconnect */
1195         { PR_3_NO_LPF,
1196           N_("Bad or non-existent /@l.  Cannot reconnect.\n"),
1197           PROMPT_NONE, 0 },
1198
1199         /* Could not expand /lost+found */
1200         { PR_3_CANT_EXPAND_LPF,
1201           N_("Could not expand /@l: %m\n"),
1202           PROMPT_NONE, 0 },
1203
1204         /* Could not reconnect inode */
1205         { PR_3_CANT_RECONNECT,
1206           N_("Could not reconnect %i: %m\n"),
1207           PROMPT_NONE, 0 },
1208
1209         /* Error while trying to find /lost+found */
1210         { PR_3_ERR_FIND_LPF,
1211           N_("Error while trying to find /@l: %m\n"),
1212           PROMPT_NONE, 0 },
1213
1214         /* Error in ext2fs_new_block while creating /lost+found */
1215         { PR_3_ERR_LPF_NEW_BLOCK, 
1216           N_("ext2fs_new_@b: %m while trying to create /@l @d\n"),
1217           PROMPT_NONE, 0 },
1218                   
1219         /* Error in ext2fs_new_inode while creating /lost+found */
1220         { PR_3_ERR_LPF_NEW_INODE,
1221           N_("ext2fs_new_@i: %m while trying to create /@l @d\n"),
1222           PROMPT_NONE, 0 },
1223
1224         /* Error in ext2fs_new_dir_block while creating /lost+found */    
1225         { PR_3_ERR_LPF_NEW_DIR_BLOCK,
1226           N_("ext2fs_new_dir_@b: %m while creating new @d @b\n"),
1227           PROMPT_NONE, 0 },
1228                   
1229         /* Error while writing directory block for /lost+found */
1230         { PR_3_ERR_LPF_WRITE_BLOCK,
1231           N_("ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"),
1232           PROMPT_NONE, 0 },
1233
1234         /* Error while adjusting inode count */
1235         { PR_3_ADJUST_INODE,
1236           N_("Error while adjusting @i count on @i %i\n"),
1237           PROMPT_NONE, 0 },
1238
1239         /* Couldn't fix parent directory -- error */
1240         { PR_3_FIX_PARENT_ERR,
1241           N_("Couldn't fix parent of @i %i: %m\n\n"),
1242           PROMPT_NONE, 0 },
1243
1244         /* Couldn't fix parent directory -- couldn't find it */   
1245         { PR_3_FIX_PARENT_NOFIND,
1246           N_("Couldn't fix parent of @i %i: Couldn't find parent @d @e\n\n"),
1247           PROMPT_NONE, 0 },
1248
1249         /* Error allocating inode bitmap */
1250         { PR_3_ALLOCATE_IBITMAP_ERROR,
1251           N_("@A @i @B (%N): %m\n"),
1252           PROMPT_NONE, PR_FATAL },
1253
1254         /* Error creating root directory */
1255         { PR_3_CREATE_ROOT_ERROR,
1256           N_("Error creating root @d (%s): %m\n"),
1257           PROMPT_NONE, PR_FATAL },        
1258
1259         /* Error creating lost and found directory */
1260         { PR_3_CREATE_LPF_ERROR,
1261           N_("Error creating /@l @d (%s): %m\n"),
1262           PROMPT_NONE, PR_FATAL },  
1263
1264         /* Root inode is not directory; aborting */
1265         { PR_3_ROOT_NOT_DIR_ABORT,
1266           N_("@r is not a @d; aborting.\n"),
1267           PROMPT_NONE, PR_FATAL },  
1268
1269         /* Cannot proceed without a root inode. */
1270         { PR_3_NO_ROOT_INODE_ABORT,
1271           N_("Cannot proceed without a @r.\n"),
1272           PROMPT_NONE, PR_FATAL },  
1273
1274         /* Internal error: couldn't find dir_info */
1275         { PR_3_NO_DIRINFO,
1276           N_("Internal error: couldn't find dir_info for %i.\n"),
1277           PROMPT_NONE, PR_FATAL },
1278
1279         /* Lost+found not a directory */
1280         { PR_3_LPF_NOTDIR,
1281           N_("/@l is not a @d (ino=%i)\n"),
1282           PROMPT_UNLINK, 0 },
1283
1284         /* Pass 3A Directory Optimization       */
1285
1286         /* Pass 3A: Optimizing directories */
1287         { PR_3A_PASS_HEADER,
1288           N_("Pass 3A: Optimizing directories\n"),
1289           PROMPT_NONE, PR_PREEN_NOMSG },
1290
1291         /* Error iterating over directories */
1292         { PR_3A_OPTIMIZE_ITER,
1293           N_("Failed to create dirs_to_hash iterator: %m"),
1294           PROMPT_NONE, 0 },
1295
1296         /* Error rehash directory */
1297         { PR_3A_OPTIMIZE_DIR_ERR,
1298           N_("Failed to optimize directory %q (%d): %m"),
1299           PROMPT_NONE, 0 },
1300
1301         /* Rehashing dir header */
1302         { PR_3A_OPTIMIZE_DIR_HEADER,
1303           N_("Optimizing directories: "),
1304           PROMPT_NONE, PR_MSG_ONLY },
1305
1306         /* Rehashing directory %d */
1307         { PR_3A_OPTIMIZE_DIR,
1308           " %d",
1309           PROMPT_NONE, PR_LATCH_OPTIMIZE_DIR | PR_PREEN_NOHDR},
1310                   
1311         /* Rehashing dir end */   
1312         { PR_3A_OPTIMIZE_DIR_END,
1313           "\n",
1314           PROMPT_NONE, PR_PREEN_NOHDR },
1315
1316         /* Pass 4 errors */
1317         
1318         /* Pass 4: Checking reference counts */
1319         { PR_4_PASS_HEADER,
1320           N_("Pass 4: Checking reference counts\n"),
1321           PROMPT_NONE, 0 },
1322                   
1323         /* Unattached zero-length inode */
1324         { PR_4_ZERO_LEN_INODE,
1325           N_("@u @z @i %i.  "),
1326           PROMPT_CLEAR, PR_PREEN_OK|PR_NO_OK },
1327
1328         /* Unattached inode */
1329         { PR_4_UNATTACHED_INODE,
1330           N_("@u @i %i\n"),
1331           PROMPT_CONNECT, 0 },
1332
1333         /* Inode ref count wrong */
1334         { PR_4_BAD_REF_COUNT,
1335           N_("@i %i ref count is %Il, @s %N.  "),
1336           PROMPT_FIX, PR_PREEN_OK },
1337
1338         { PR_4_INCONSISTENT_COUNT,
1339           N_("WARNING: PROGRAMMING BUG IN E2FSCK!\n"
1340           "\tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n"
1341           "@i_link_info[%i] is %N, @i.i_links_count is %Il.  "
1342           "They @s the same!\n"),
1343           PROMPT_NONE, 0 },
1344
1345         /* Pass 5 errors */
1346                   
1347         /* Pass 5: Checking group summary information */
1348         { PR_5_PASS_HEADER,
1349           N_("Pass 5: Checking @g summary information\n"),
1350           PROMPT_NONE, 0 },
1351                   
1352         /* Padding at end of inode bitmap is not set. */
1353         { PR_5_INODE_BMAP_PADDING,
1354           N_("Padding at end of @i @B is not set. "),
1355           PROMPT_FIX, PR_PREEN_OK },
1356                   
1357         /* Padding at end of block bitmap is not set. */
1358         { PR_5_BLOCK_BMAP_PADDING,
1359           N_("Padding at end of @b @B is not set. "),
1360           PROMPT_FIX, PR_PREEN_OK },
1361                 
1362         /* Block bitmap differences header */
1363         { PR_5_BLOCK_BITMAP_HEADER,
1364           N_("@b @B differences: "),
1365           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG},
1366
1367         /* Block not used, but marked in bitmap */
1368         { PR_5_BLOCK_UNUSED,
1369           " -%b",
1370           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1371                   
1372         /* Block used, but not marked used in bitmap */
1373         { PR_5_BLOCK_USED,
1374           " +%b",
1375           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1376
1377         /* Block bitmap differences end */        
1378         { PR_5_BLOCK_BITMAP_END,
1379           "\n",
1380           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1381
1382         /* Inode bitmap differences header */
1383         { PR_5_INODE_BITMAP_HEADER,
1384           N_("@i @B differences: "),
1385           PROMPT_NONE, PR_PREEN_OK | PR_PREEN_NOMSG },
1386
1387         /* Inode not used, but marked in bitmap */
1388         { PR_5_INODE_UNUSED,
1389           " -%i",
1390           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1391                   
1392         /* Inode used, but not marked used in bitmap */
1393         { PR_5_INODE_USED,
1394           " +%i",
1395           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1396
1397         /* Inode bitmap differences end */        
1398         { PR_5_INODE_BITMAP_END,
1399           "\n",
1400           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1401
1402         /* Free inodes count for group wrong */
1403         { PR_5_FREE_INODE_COUNT_GROUP,
1404           N_("Free @is count wrong for @g #%g (%i, counted=%j).\n"),
1405           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1406
1407         /* Directories count for group wrong */
1408         { PR_5_FREE_DIR_COUNT_GROUP,
1409           N_("Directories count wrong for @g #%g (%i, counted=%j).\n"),
1410           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1411
1412         /* Free inodes count wrong */
1413         { PR_5_FREE_INODE_COUNT,
1414           N_("Free @is count wrong (%i, counted=%j).\n"),
1415           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1416
1417         /* Free blocks count for group wrong */
1418         { PR_5_FREE_BLOCK_COUNT_GROUP,
1419           N_("Free @bs count wrong for @g #%g (%b, counted=%c).\n"),
1420           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1421
1422         /* Free blocks count wrong */
1423         { PR_5_FREE_BLOCK_COUNT,
1424           N_("Free @bs count wrong (%b, counted=%c).\n"),
1425           PROMPT_FIX, PR_PREEN_OK | PR_PREEN_NOMSG },
1426
1427         /* Programming error: bitmap endpoints don't match */
1428         { PR_5_BMAP_ENDPOINTS,
1429           N_("PROGRAMMING ERROR: @f (#%N) @B endpoints (%b, %c) don't "
1430           "match calculated @B endpoints (%i, %j)\n"),
1431           PROMPT_NONE, PR_FATAL },
1432
1433         /* Internal error: fudging end of bitmap */
1434         { PR_5_FUDGE_BITMAP_ERROR,
1435           N_("Internal error: fudging end of bitmap (%N)\n"),
1436           PROMPT_NONE, PR_FATAL },        
1437
1438         /* Error copying in replacement inode bitmap */
1439         { PR_5_COPY_IBITMAP_ERROR,
1440           N_("Error copying in replacement @i @B: %m\n"),
1441           PROMPT_NONE, PR_FATAL },
1442
1443         /* Error copying in replacement block bitmap */
1444         { PR_5_COPY_BBITMAP_ERROR,
1445           N_("Error copying in replacement @b @B: %m\n"),
1446           PROMPT_NONE, PR_FATAL },
1447                   
1448         /* Block range not used, but marked in bitmap */
1449         { PR_5_BLOCK_RANGE_UNUSED,
1450           " -(%b--%c)",
1451           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1452                   
1453         /* Block range used, but not marked used in bitmap */
1454         { PR_5_BLOCK_RANGE_USED,
1455           " +(%b--%c)",
1456           PROMPT_NONE, PR_LATCH_BBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1457
1458         /* Inode range not used, but marked in bitmap */
1459         { PR_5_INODE_RANGE_UNUSED,
1460           " -(%i--%j)",
1461           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1462                   
1463         /* Inode range used, but not marked used in bitmap */
1464         { PR_5_INODE_RANGE_USED,
1465           " +(%i--%j)",
1466           PROMPT_NONE, PR_LATCH_IBITMAP | PR_PREEN_OK | PR_PREEN_NOMSG },
1467
1468         { 0 }
1469 };
1470
1471 /*
1472  * This is the latch flags register.  It allows several problems to be
1473  * "latched" together.  This means that the user has to answer but one
1474  * question for the set of problems, and all of the associated
1475  * problems will be either fixed or not fixed.
1476  */
1477 static struct latch_descr pr_latch_info[] = {
1478         { PR_LATCH_BLOCK, PR_1_INODE_BLOCK_LATCH, 0 },
1479         { PR_LATCH_BBLOCK, PR_1_INODE_BBLOCK_LATCH, 0 },
1480         { PR_LATCH_IBITMAP, PR_5_INODE_BITMAP_HEADER, PR_5_INODE_BITMAP_END },
1481         { PR_LATCH_BBITMAP, PR_5_BLOCK_BITMAP_HEADER, PR_5_BLOCK_BITMAP_END },
1482         { PR_LATCH_RELOC, PR_0_RELOCATE_HINT, 0 },
1483         { PR_LATCH_DBLOCK, PR_1B_DUP_BLOCK_HEADER, PR_1B_DUP_BLOCK_END },
1484         { PR_LATCH_LOW_DTIME, PR_1_ORPHAN_LIST_REFUGEES, 0 },
1485         { PR_LATCH_TOOBIG, PR_1_INODE_TOOBIG, 0 },
1486         { PR_LATCH_OPTIMIZE_DIR, PR_3A_OPTIMIZE_DIR_HEADER, PR_3A_OPTIMIZE_DIR_END },
1487         { -1, 0, 0 },
1488 };
1489
1490 static const struct e2fsck_problem *find_problem(problem_t code)
1491 {
1492         int     i;
1493
1494         for (i=0; problem_table[i].e2p_code; i++) {
1495                 if (problem_table[i].e2p_code == code)
1496                         return &problem_table[i];
1497         }
1498         return 0;
1499 }
1500
1501 static struct latch_descr *find_latch(int code)
1502 {
1503         int     i;
1504
1505         for (i=0; pr_latch_info[i].latch_code >= 0; i++) {
1506                 if (pr_latch_info[i].latch_code == code)
1507                         return &pr_latch_info[i];
1508         }
1509         return 0;
1510 }
1511
1512 int end_problem_latch(e2fsck_t ctx, int mask)
1513 {
1514         struct latch_descr *ldesc;
1515         struct problem_context pctx;
1516         int answer = -1;
1517         
1518         ldesc = find_latch(mask);
1519         if (ldesc->end_message && (ldesc->flags & PRL_LATCHED)) {
1520                 clear_problem_context(&pctx);
1521                 answer = fix_problem(ctx, ldesc->end_message, &pctx);
1522         }
1523         ldesc->flags &= ~(PRL_VARIABLE);
1524         return answer;
1525 }
1526
1527 int set_latch_flags(int mask, int setflags, int clearflags)
1528 {
1529         struct latch_descr *ldesc;
1530
1531         ldesc = find_latch(mask);
1532         if (!ldesc)
1533                 return -1;
1534         ldesc->flags |= setflags;
1535         ldesc->flags &= ~clearflags;
1536         return 0;
1537 }
1538
1539 int get_latch_flags(int mask, int *value)
1540 {
1541         struct latch_descr *ldesc;
1542
1543         ldesc = find_latch(mask);
1544         if (!ldesc)
1545                 return -1;
1546         *value = ldesc->flags;
1547         return 0;
1548 }
1549
1550 void clear_problem_context(struct problem_context *ctx)
1551 {
1552         memset(ctx, 0, sizeof(struct problem_context));
1553         ctx->blkcount = -1;
1554         ctx->group = -1;
1555 }
1556
1557 int fix_problem(e2fsck_t ctx, problem_t code, struct problem_context *pctx)
1558 {
1559         ext2_filsys fs = ctx->fs;
1560         const struct e2fsck_problem *ptr;
1561         struct latch_descr *ldesc = 0;
1562         const char *message;
1563         int             def_yn, answer, ans;
1564         int             print_answer = 0;
1565         int             suppress = 0;
1566
1567         ptr = find_problem(code);
1568         if (!ptr) {
1569                 printf(_("Unhandled error code (0x%x)!\n"), code);
1570                 return 0;
1571         }
1572         def_yn = 1;
1573         if ((ptr->flags & PR_NO_DEFAULT) ||
1574             ((ptr->flags & PR_PREEN_NO) && (ctx->options & E2F_OPT_PREEN)) ||
1575             (ctx->options & E2F_OPT_NO))
1576                 def_yn= 0;
1577
1578         /*
1579          * Do special latch processing.  This is where we ask the
1580          * latch question, if it exists
1581          */
1582         if (ptr->flags & PR_LATCH_MASK) {
1583                 ldesc = find_latch(ptr->flags & PR_LATCH_MASK);
1584                 if (ldesc->question && !(ldesc->flags & PRL_LATCHED)) {
1585                         ans = fix_problem(ctx, ldesc->question, pctx);
1586                         if (ans == 1)
1587                                 ldesc->flags |= PRL_YES;
1588                         if (ans == 0)
1589                                 ldesc->flags |= PRL_NO;
1590                         ldesc->flags |= PRL_LATCHED;
1591                 }
1592                 if (ldesc->flags & PRL_SUPPRESS)
1593                         suppress++;
1594         }
1595         if ((ptr->flags & PR_PREEN_NOMSG) &&
1596             (ctx->options & E2F_OPT_PREEN))
1597                 suppress++;
1598         if ((ptr->flags & PR_NO_NOMSG) &&
1599             (ctx->options & E2F_OPT_NO))
1600                 suppress++;
1601         if (!suppress) {
1602                 message = ptr->e2p_description;
1603                 if ((ctx->options & E2F_OPT_PREEN) &&
1604                     !(ptr->flags & PR_PREEN_NOHDR)) {
1605                         printf("%s: ", ctx->device_name ?
1606                                ctx->device_name : ctx->filesystem_name);
1607                 }
1608                 if (*message)
1609                         print_e2fsck_message(ctx, _(message), pctx, 1);
1610         }
1611         if (!(ptr->flags & PR_PREEN_OK) && (ptr->prompt != PROMPT_NONE))
1612                 preenhalt(ctx);
1613
1614         if (ptr->flags & PR_FATAL)
1615                 fatal_error(ctx, 0);
1616
1617         if (ptr->prompt == PROMPT_NONE) {
1618                 if (ptr->flags & PR_NOCOLLATE)
1619                         answer = -1;
1620                 else
1621                         answer = def_yn;
1622         } else {
1623                 if (ctx->options & E2F_OPT_PREEN) {
1624                         answer = def_yn;
1625                         if (!(ptr->flags & PR_PREEN_NOMSG))
1626                                 print_answer = 1;
1627                 } else if ((ptr->flags & PR_LATCH_MASK) &&
1628                            (ldesc->flags & (PRL_YES | PRL_NO))) {
1629                         if (!suppress)
1630                                 print_answer = 1;
1631                         if (ldesc->flags & PRL_YES)
1632                                 answer = 1;
1633                         else
1634                                 answer = 0;
1635                 } else
1636                         answer = ask(ctx, _(prompt[(int) ptr->prompt]), def_yn);
1637                 if (!answer && !(ptr->flags & PR_NO_OK))
1638                         ext2fs_unmark_valid(fs);
1639         
1640                 if (print_answer)
1641                         printf("%s.\n", answer ?
1642                                _(preen_msg[(int) ptr->prompt]) : _("IGNORED"));
1643         
1644         }
1645
1646         if ((ptr->prompt == PROMPT_ABORT) && answer)
1647                 fatal_error(ctx, 0);
1648
1649         if (ptr->flags & PR_AFTER_CODE)
1650                 answer = fix_problem(ctx, ptr->second_code, pctx);
1651
1652         return answer;
1653 }