blob: 4c13b4a87033e7cf6e93198579c381947800fc97 [file] [log] [blame]
/*
* Copyright (c) 2004-2005 Silicon Graphics, Inc.
* Copyright (c) 2012 Red Hat, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms 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. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libxfs.h"
#include <sys/mman.h>
#include "command.h"
#include "input.h"
#include "init.h"
#include "path.h"
#include "space.h"
static cmdinfo_t print_cmd;
fileio_t *filetable;
int filecount;
fileio_t *file;
static void
print_fileio(
fileio_t *file,
int index,
int braces)
{
printf(_("%c%03d%c %-14s\n"), braces? '[' : ' ', index,
braces? ']' : ' ', file->name);
}
static int
print_f(
int argc,
char **argv)
{
int i;
for (i = 0; i < filecount; i++)
print_fileio(&filetable[i], i, &filetable[i] == file);
return 0;
}
int
openfile(
char *path,
xfs_fsop_geom_t *geom,
struct fs_path *fs_path)
{
struct fs_path *fsp;
int fd;
fd = open(path, 0);
if (fd < 0) {
perror(path);
return -1;
}
if (ioctl(fd, XFS_IOC_FSGEOMETRY, geom) < 0) {
perror("XFS_IOC_FSGEOMETRY");
close(fd);
return -1;
}
if (fs_path) {
fsp = fs_table_lookup(path, FS_MOUNT_POINT);
if (!fsp) {
fprintf(stderr, _("%s: cannot find mount point."),
path);
close(fd);
return -1;
}
memcpy(fs_path, fsp, sizeof(struct fs_path));
}
return fd;
}
int
addfile(
char *name,
int fd,
xfs_fsop_geom_t *geometry,
struct fs_path *fs_path)
{
char *filename;
filename = strdup(name);
if (!filename) {
perror("strdup");
close(fd);
return -1;
}
/* Extend the table of currently open files */
filetable = (fileio_t *)realloc(filetable, /* growing */
++filecount * sizeof(fileio_t));
if (!filetable) {
perror("realloc");
filecount = 0;
free(filename);
close(fd);
return -1;
}
/* Finally, make this the new active open file */
file = &filetable[filecount - 1];
file->fd = fd;
file->name = filename;
file->geom = *geometry;
memcpy(&file->fs_path, fs_path, sizeof(file->fs_path));
return 0;
}
void
print_init(void)
{
print_cmd.name = "print";
print_cmd.altname = "p";
print_cmd.cfunc = print_f;
print_cmd.argmin = 0;
print_cmd.argmax = 0;
print_cmd.flags = CMD_FLAG_ONESHOT;
print_cmd.oneline = _("list current open files");
add_command(&print_cmd);
}