📄 reg40.c
字号:
/* Copyright (C) 2001-2005 by Hans Reiser, licensing governed by reiser4progs/COPYING. reg40.c -- reiser4 regular file plugin. */#ifndef ENABLE_MINIMAL# include <unistd.h>#endif#include <aal/libaal.h>#include "reiser4/plugin.h"#include "plugin/object/obj40/obj40.h"#include "reg40_repair.h"/* Reads @n bytes to passed buffer @buff. Negative values are returned on errors. */static int64_t reg40_read(reiser4_object_t *reg, void *buff, uint64_t n){ errno_t res; int64_t read; uint64_t off; uint64_t fsize; trans_hint_t hint; aal_assert("umka-2511", buff != NULL); aal_assert("umka-2512", reg != NULL); if ((res = obj40_update(reg))) return res; fsize = obj40_get_size(reg); off = obj40_offset(reg); if (off > fsize) return 0; /* Correcting number of bytes to be read. It cannot be more then file size value from stat data. That is because, body item itself does not know reliably how long it is. For instnace, extent40. */ if (n > fsize - off) n = fsize - off; /* Reading data. */ if ((read = obj40_read(reg, &hint, buff, off, n)) < 0) return read; /* Updating file offset if needed. */ if (read > 0) obj40_seek(reg, off + read); return read;}#ifndef ENABLE_MINIMAL/* Returns plugin (tail or extent) for next write operation basing on passed @size -- new file size. This function will use tail policy plugin to find what kind of next body item should be writen. */static reiser4_item_plug_t *reg40_policy_plug(reiser4_object_t *reg, uint64_t new_size){ aal_assert("umka-2394", reg != NULL); aal_assert("umka-2393", reiser4_pspolicy(reg) != NULL); /* Calling formatting policy plugin to detect body plugin. */ if (plugcall(reiser4_pspolicy(reg), tails, new_size)) { /* Trying to get non-standard tail plugin from stat data. And if it is not found, default one from params will be taken. */ return reiser4_pstail(reg); } /* The same for extent plugin */ return reiser4_psextent(reg);}#endif/* Open regular file by passed initial info and return initialized instance. This @info struct contains information about the obejct, like its statdata coord, etc. */static errno_t reg40_open(reiser4_object_t *reg) { obj40_open(reg);#ifndef ENABLE_MINIMAL { lookup_t lookup; /* Get the body plugin in use. */ if ((lookup = obj40_update_body(reg, NULL)) < 0) { return lookup; } else if (lookup > 0) { reg->body_plug = reg->body.plug; } else { reg->body_plug = reg40_policy_plug(reg, 0); } }#endif return 0;}#ifndef ENABLE_MINIMALstatic errno_t reg40_create(reiser4_object_t *reg, object_hint_t *hint) { errno_t res; if ((res = obj40_create(reg, hint))) return res; reg->body_plug = reg40_policy_plug(reg, 0); return 0;}/* Makes tail2extent and extent2tail conversion. */static errno_t reg40_convert(reiser4_object_t *reg, reiser4_item_plug_t *plug) { errno_t res; conv_hint_t hint; aal_assert("umka-2467", plug != NULL); aal_assert("umka-2466", reg != NULL); aal_memset(&hint, 0, sizeof(hint)); /* Getting file data start key. We convert file starting from the zero offset until end is reached. */ aal_memcpy(&hint.offset, ®->position, sizeof(hint.offset)); objcall(&hint.offset, set_offset, 0); /* Prepare convert hint. */ hint.plug = plug; if ((res = obj40_update(reg))) return res; hint.count = obj40_get_size(reg); hint.place_func = NULL; /* Converting file data. */ if ((res = obj40_convert(reg, &hint))) return res; /* Updating stat data place */ if ((res = obj40_update(reg))) return res; /* Updating stat data fields. */ if (hint.bytes != obj40_get_bytes(reg)) return obj40_set_bytes(reg, hint.bytes); return 0;}/* Make sure, that file body is of particular plugin type, that depends on tail policy plugin. If no - convert it to plugin told by tail policy plugin. Called from all modifying calls like write(), truncate(), etc. */static errno_t reg40_check_body(reiser4_object_t *reg, uint64_t new_size){ reiser4_item_plug_t *plug; aal_assert("umka-2395", reg != NULL); /* There is nothing to convert? */ if (!new_size) return 0; /* Getting item plugin that should be used according to the current tail policy plugin. */ if (!(plug = reg40_policy_plug(reg, new_size))) { aal_error("Can't get body plugin for new " "file size %llu.", new_size); return -EIO; } if (!reg->body_plug) { reg->body_plug = plug; return 0; } /* Comparing new plugin and old one. If they are the same, conversion if not needed. */ if (plug_equal(plug, reg->body_plug)) return 0; /* Convert file. */ reg->body_plug = plug; return reg40_convert(reg, plug);}/* Writes @n bytes from @buff to passed file */static int64_t reg40_write(reiser4_object_t *reg, void *buff, uint64_t n) { sdhint_unix_t unixh; trans_hint_t hint; stat_hint_t stat; sdhint_lw_t lwh; int64_t count; uint64_t off; int64_t res; int dirty; aal_assert("umka-2281", reg != NULL); if ((res = obj40_update(reg))) return res; aal_memset(&stat, 0, sizeof(stat)); stat.ext[SDEXT_LW_ID] = &lwh; stat.ext[SDEXT_UNIX_ID] = &unixh; if ((res = obj40_load_stat(reg, &stat))) return res; off = obj40_offset(reg); dirty = 0; /* Inserting holes if needed. */ if (off > lwh.size) { count = off - lwh.size; /* Fill the hole with zeroes. */ if ((res = obj40_write(reg, &hint, NULL, lwh.size, count, reg->body_plug, NULL, NULL)) < 0) { return res; } lwh.size += res; unixh.bytes += hint.bytes; if (res || hint.bytes) dirty = 1; /* If not enough bytes are written, the hole is not filled yet, cannot continue, return 0. */ if (res != count) { if ((res = obj40_save_stat(reg, &stat))) return res; return 0; } } /* Putting data to tree. */ if ((count = obj40_write(reg, &hint, buff, off, n, reg->body_plug, NULL, NULL)) < 0) { return count; } off += count; if (hint.bytes) { unixh.bytes += hint.bytes; dirty = 1; } if (off > lwh.size) { lwh.size = off; dirty = 1; } if ((res = obj40_update(reg))) return res; /* Updating the SD place and update size, bytes there. */ if (dirty && (res = obj40_save_stat(reg, &stat))) return res; /* Convert body items if needed. */ if ((res = reg40_check_body(reg, lwh.size))) { aal_error("Can't perform tail conversion."); return res; } obj40_seek(reg, off); return count;}/* Truncates file to passed size @n. */static errno_t reg40_truncate(reiser4_object_t *reg, uint64_t n) { errno_t res; /* Cutting items/units */ if ((res = obj40_truncate(reg, n, reg->body_plug)) < 0) return res; /* Converting body if needed. */ if ((res = reg40_check_body(reg, n))) aal_error("Can't perform tail conversion."); return res;}/* Removes file body items and file stat data item. */static errno_t reg40_clobber(reiser4_object_t *reg) { errno_t res; aal_assert("umka-2299", reg != NULL); if ((res = reg40_truncate(reg, 0))) return res; return obj40_clobber(reg);}/* Enumerates all blocks belong to file and calls passed @region_func for each of them. It is needed for calculating fragmentation, printing, etc. */static errno_t reg40_layout(reiser4_object_t *reg, region_func_t func, void *data){ obj40_reset(reg); return obj40_layout(reg, func, NULL, data);}/* Implements metadata() function. It traverses items belong to file. This is needed for printing, getting metadata, etc. */static errno_t reg40_metadata(reiser4_object_t *reg, place_func_t place_func, void *data){ obj40_reset(reg); return obj40_traverse(reg, place_func, NULL, data);}#endif/* Regular file plugin. */reiser4_object_plug_t reg40_plug = { .p = { .id = {OBJECT_REG40_ID, REG_OBJECT, OBJECT_PLUG_TYPE},#ifndef ENABLE_MINIMAL .label = "reg40", .desc = "Unix-file regular file plugin.",#endif },#ifndef ENABLE_MINIMAL .inherit = obj40_inherit, .create = reg40_create, .write = reg40_write, .truncate = reg40_truncate, .layout = reg40_layout, .metadata = reg40_metadata, .convert = reg40_convert, .link = obj40_link, .unlink = obj40_unlink, .linked = obj40_linked, .clobber = reg40_clobber, .recognize = obj40_recognize, .check_struct = reg40_check_struct, .add_entry = NULL, .rem_entry = NULL, .build_entry = NULL, .attach = NULL, .detach = NULL, .fake = NULL, .check_attach = NULL,#endif .lookup = NULL, .follow = NULL, .readdir = NULL, .telldir = NULL, .seekdir = NULL, .stat = obj40_load_stat, .open = reg40_open, .close = NULL, .reset = obj40_reset, .seek = obj40_seek, .offset = obj40_offset, .read = reg40_read,#ifndef ENABLE_MINIMAL .sdext_mandatory = (1 << SDEXT_LW_ID), .sdext_unknown = (1 << SDEXT_SYMLINK_ID),#endif};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -