1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
/*
* Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* Further, this software is distributed without any warranty that it is
* free of the rightful claim of any third person regarding infringement
* or the like. Any license provided herein, whether implied or
* otherwise, applies only to this software file. Patent licenses, if
* any, provided herein do not apply to combinations of this program with
* other software, or any other product whatsoever.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston MA 02111-1307, USA.
*
* Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
* Mountain View, CA 94043, or:
*
* http://www.sgi.com
*
* For further information regarding this notice, see:
*
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
*/
#include <xfs/libxfs.h>
#include "block.h"
#include "bmap.h"
#include "command.h"
#include "type.h"
#include "faddr.h"
#include "fprint.h"
#include "field.h"
#include "inode.h"
#include "io.h"
#include "output.h"
#include "init.h"
static int ablock_f(int argc, char **argv);
static void ablock_help(void);
static int daddr_f(int argc, char **argv);
static void daddr_help(void);
static int dblock_f(int argc, char **argv);
static void dblock_help(void);
static int fsblock_f(int argc, char **argv);
static void fsblock_help(void);
static void print_rawdata(void *data, int len);
static const cmdinfo_t ablock_cmd =
{ "ablock", NULL, ablock_f, 1, 1, 1, "filoff",
"set address to file offset (attr fork)", ablock_help };
static const cmdinfo_t daddr_cmd =
{ "daddr", NULL, daddr_f, 0, 1, 1, "[d]",
"set address to daddr value", daddr_help };
static const cmdinfo_t dblock_cmd =
{ "dblock", NULL, dblock_f, 1, 1, 1, "filoff",
"set address to file offset (data fork)", dblock_help };
static const cmdinfo_t fsblock_cmd =
{ "fsblock", "fsb", fsblock_f, 0, 1, 1, "[fsb]",
"set address to fsblock value", fsblock_help };
static void
ablock_help(void)
{
dbprintf(
"\n Example:\n"
"\n"
" 'ablock 23' - sets the file position to the 23rd filesystem block in\n"
" the inode's attribute fork. The filesystem block size is specified in\n"
" the superblock.\n\n"
);
}
/*ARGSUSED*/
static int
ablock_f(
int argc,
char **argv)
{
bmap_ext_t bm;
xfs_dfiloff_t bno;
xfs_dfsbno_t dfsbno;
int haveattr;
int nex;
char *p;
bno = (xfs_dfiloff_t)strtoull(argv[1], &p, 0);
if (*p != '\0') {
dbprintf("bad block number %s\n", argv[1]);
return 0;
}
push_cur();
set_cur_inode(iocur_top->ino);
haveattr = XFS_DFORK_Q((xfs_dinode_t *)iocur_top->data);
pop_cur();
if (!haveattr) {
dbprintf("no attribute data for file\n");
return 0;
}
nex = 1;
bmap(bno, 1, XFS_ATTR_FORK, &nex, &bm);
if (nex == 0) {
dbprintf("file attr block is unmapped\n");
return 0;
}
dfsbno = bm.startblock + (bno - bm.startoff);
ASSERT(typtab[TYP_ATTR].typnm == TYP_ATTR);
set_cur(&typtab[TYP_ATTR], (__int64_t)XFS_FSB_TO_DADDR(mp, dfsbno),
blkbb, DB_RING_ADD, NULL);
return 0;
}
void
block_init(void)
{
add_command(&ablock_cmd);
add_command(&daddr_cmd);
add_command(&dblock_cmd);
add_command(&fsblock_cmd);
}
static void
daddr_help(void)
{
dbprintf(
"\n Example:\n"
"\n"
" 'daddr 102' - sets position to the 102nd absolute disk block\n"
" (512 byte block).\n"
);
}
static int
daddr_f(
int argc,
char **argv)
{
__int64_t d;
char *p;
if (argc == 1) {
dbprintf("current daddr is %lld\n", iocur_top->off >> BBSHIFT);
return 0;
}
d = (__int64_t)strtoull(argv[1], &p, 0);
if (*p != '\0' ||
d >= mp->m_sb.sb_dblocks << (mp->m_sb.sb_blocklog - BBSHIFT)) {
dbprintf("bad daddr %s\n", argv[1]);
return 0;
}
ASSERT(typtab[TYP_DATA].typnm == TYP_DATA);
set_cur(&typtab[TYP_DATA], d, 1, DB_RING_ADD, NULL);
return 0;
}
static void
dblock_help(void)
{
dbprintf(
"\n Example:\n"
"\n"
" 'dblock 23' - sets the file position to the 23rd filesystem block in\n"
" the inode's data fork. The filesystem block size is specified in the\n"
" superblock.\n\n"
);
}
static int
dblock_f(
int argc,
char **argv)
{
bbmap_t bbmap;
bmap_ext_t *bmp;
xfs_dfiloff_t bno;
xfs_dfsbno_t dfsbno;
int nb;
int nex;
char *p;
typnm_t type;
bno = (xfs_dfiloff_t)strtoull(argv[1], &p, 0);
if (*p != '\0') {
dbprintf("bad block number %s\n", argv[1]);
return 0;
}
push_cur();
set_cur_inode(iocur_top->ino);
type = inode_next_type();
pop_cur();
if (type == TYP_NONE) {
dbprintf("no type for file data\n");
return 0;
}
nex = nb = type == TYP_DIR2 ? mp->m_dirblkfsbs : 1;
bmp = malloc(nb * sizeof(*bmp));
bmap(bno, nb, XFS_DATA_FORK, &nex, bmp);
if (nex == 0) {
dbprintf("file data block is unmapped\n");
free(bmp);
return 0;
}
dfsbno = bmp->startblock + (bno - bmp->startoff);
ASSERT(typtab[type].typnm == type);
if (nex > 1)
make_bbmap(&bbmap, nex, bmp);
set_cur(&typtab[type], (__int64_t)XFS_FSB_TO_DADDR(mp, dfsbno),
nb * blkbb, DB_RING_ADD, nex > 1 ? &bbmap : NULL);
free(bmp);
return 0;
}
static void
fsblock_help(void)
{
dbprintf(
"\n Example:\n"
"\n"
" 'fsblock 1023' - sets the file position to the 1023rd filesystem block.\n"
" The filesystem block size is specified in the superblock and set during\n"
" mkfs time. Offset is absolute (not AG relative).\n\n"
);
}
static int
fsblock_f(
int argc,
char **argv)
{
xfs_agblock_t agbno;
xfs_agnumber_t agno;
xfs_dfsbno_t d;
char *p;
if (argc == 1) {
dbprintf("current fsblock is %lld\n",
XFS_DADDR_TO_FSB(mp, iocur_top->off >> BBSHIFT));
return 0;
}
d = strtoull(argv[1], &p, 0);
if (*p != '\0') {
dbprintf("bad fsblock %s\n", argv[1]);
return 0;
}
agno = XFS_FSB_TO_AGNO(mp, d);
agbno = XFS_FSB_TO_AGBNO(mp, d);
if (agno >= mp->m_sb.sb_agcount || agbno >= mp->m_sb.sb_agblocks) {
dbprintf("bad fsblock %s\n", argv[1]);
return 0;
}
ASSERT(typtab[TYP_DATA].typnm == TYP_DATA);
set_cur(&typtab[TYP_DATA], XFS_AGB_TO_DADDR(mp, agno, agbno),
blkbb, DB_RING_ADD, NULL);
return 0;
}
void
print_block(
const field_t *fields,
int argc,
char **argv)
{
print_rawdata(iocur_top->data, iocur_top->len);
}
static void
print_rawdata(
void *data,
int len)
{
int i;
int j;
int lastaddr;
int offchars;
unsigned char *p;
lastaddr = (len - 1) & ~(32 - 1);
if (lastaddr < 0x10)
offchars = 1;
else if (lastaddr < 0x100)
offchars = 2;
else if (lastaddr < 0x1000)
offchars = 3;
else
offchars = 4;
for (i = 0, p = data; i < len; i += 32) {
dbprintf("%-0*.*x:", offchars, offchars, i);
for (j = 0; j < 32 && i + j < len; j++, p++) {
if ((j & 3) == 0)
dbprintf(" ");
dbprintf("%02x", *p);
}
dbprintf("\n");
}
}
|