mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-12-27 02:39:43 +08:00
08b213017f
Change ext2fs_read_inode, ext2fs_write_inode to take the e2fsck context as their first argument. Change dir_info.c routines to take an e2fsck_context, renamed them to start with e2fsck_ to avoid namespace issues, and changed them to store the directory information inside the e2fsck context. Added e2fsck_run() which calls all of the e2fsck passes in the correct order, and which handles the return of abort codes. Added abort processing, both via setjmp/longjmp and via flags in the e2fsck context. Use a flag in the e2fsck context instead of the restart_e2fsck global variable. Change uses of free and malloc to ext2fs_free_mem and ext2fs_get_mem.
137 lines
3.2 KiB
C
137 lines
3.2 KiB
C
/*
|
|
* dirinfo.c --- maintains the directory information table for e2fsck.
|
|
*
|
|
* Copyright (C) 1993 Theodore Ts'o. This file may be redistributed
|
|
* under the terms of the GNU Public License.
|
|
*/
|
|
|
|
#include <et/com_err.h>
|
|
#include "e2fsck.h"
|
|
|
|
int e2fsck_get_num_dirs(e2fsck_t ctx)
|
|
{
|
|
ext2_filsys fs = ctx->fs;
|
|
int i, num_dirs;
|
|
|
|
num_dirs = 0;
|
|
for (i = 0; i < fs->group_desc_count; i++)
|
|
num_dirs += fs->group_desc[i].bg_used_dirs_count;
|
|
|
|
return num_dirs;
|
|
}
|
|
|
|
/*
|
|
* This subroutine is called during pass1 to create a directory info
|
|
* entry. During pass1, the passed-in parent is 0; it will get filled
|
|
* in during pass2.
|
|
*/
|
|
void e2fsck_add_dir_info(e2fsck_t ctx, ino_t ino, ino_t parent)
|
|
{
|
|
struct dir_info *dir;
|
|
int i, j;
|
|
errcode_t retval;
|
|
|
|
#if 0
|
|
printf("add_dir_info for inode %lu...\n", ino);
|
|
#endif
|
|
if (!ctx->dir_info) {
|
|
ctx->dir_info_count = 0;
|
|
ctx->dir_info_size = e2fsck_get_num_dirs(ctx) + 10;
|
|
|
|
ctx->dir_info = allocate_memory(ctx->dir_info_size *
|
|
sizeof (struct dir_info),
|
|
"directory map");
|
|
}
|
|
|
|
if (ctx->dir_info_count >= ctx->dir_info_size) {
|
|
ctx->dir_info_size += 10;
|
|
retval = ext2fs_resize_mem(ctx->dir_info_size *
|
|
sizeof(struct dir_info),
|
|
(void **) &ctx->dir_info);
|
|
if (retval) {
|
|
ctx->dir_info_size -= 10;
|
|
return;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Normally, add_dir_info is called with each inode in
|
|
* sequential order; but once in a while (like when pass 3
|
|
* needs to recreate the root directory or lost+found
|
|
* directory) it is called out of order. In those cases, we
|
|
* need to move the dir_info entries down to make room, since
|
|
* the dir_info array needs to be sorted by inode number for
|
|
* get_dir_info()'s sake.
|
|
*/
|
|
if (ctx->dir_info_count &&
|
|
ctx->dir_info[ctx->dir_info_count-1].ino >= ino) {
|
|
for (i = ctx->dir_info_count-1; i > 0; i--)
|
|
if (ctx->dir_info[i-1].ino < ino)
|
|
break;
|
|
dir = &ctx->dir_info[i];
|
|
if (dir->ino != ino)
|
|
for (j = ctx->dir_info_count++; j > i; j--)
|
|
ctx->dir_info[j] = ctx->dir_info[j-1];
|
|
} else
|
|
dir = &ctx->dir_info[ctx->dir_info_count++];
|
|
|
|
dir->ino = ino;
|
|
dir->dotdot = parent;
|
|
dir->parent = parent;
|
|
}
|
|
|
|
/*
|
|
* get_dir_info() --- given an inode number, try to find the directory
|
|
* information entry for it.
|
|
*/
|
|
struct dir_info *e2fsck_get_dir_info(e2fsck_t ctx, ino_t ino)
|
|
{
|
|
int low, high, mid;
|
|
|
|
low = 0;
|
|
high = ctx->dir_info_count-1;
|
|
if (!ctx->dir_info)
|
|
return 0;
|
|
if (ino == ctx->dir_info[low].ino)
|
|
return &ctx->dir_info[low];
|
|
if (ino == ctx->dir_info[high].ino)
|
|
return &ctx->dir_info[high];
|
|
|
|
while (low < high) {
|
|
mid = (low+high)/2;
|
|
if (mid == low || mid == high)
|
|
break;
|
|
if (ino == ctx->dir_info[mid].ino)
|
|
return &ctx->dir_info[mid];
|
|
if (ino < ctx->dir_info[mid].ino)
|
|
high = mid;
|
|
else
|
|
low = mid;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Free the dir_info structure when it isn't needed any more.
|
|
*/
|
|
void e2fsck_free_dir_info(e2fsck_t ctx)
|
|
{
|
|
if (ctx->dir_info) {
|
|
ext2fs_free_mem((void **) &ctx->dir_info);
|
|
ctx->dir_info = 0;
|
|
}
|
|
ctx->dir_info_size = 0;
|
|
ctx->dir_info_count = 0;
|
|
}
|
|
|
|
/*
|
|
* A simple interator function
|
|
*/
|
|
struct dir_info *e2fsck_dir_info_iter(e2fsck_t ctx, int *control)
|
|
{
|
|
if (*control >= ctx->dir_info_count)
|
|
return 0;
|
|
|
|
return(ctx->dir_info + (*control)++);
|
|
}
|