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 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
|
/*
* FOS fosread: tool in read-only for Smaky file system
* Copyright (C) 2006-2008 Mathieu Schroeter <mathieu@schroetersa.ch>
*
* Thanks to Pierre Arnaud for his help and the documentation
* And to Epsitec SA for the Smaky computers
*
* This file is part of Fosfat.
*
* 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, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will 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, see <http://www.gnu.org/licenses/>.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h> /* strcmp strcpy */
#include <getopt.h>
#include "fosfat.h"
typedef struct ginfo {
char name[FOSFAT_NAMELGT];
} global_info_t;
#ifdef _WIN32
#define HELP_DEVICE \
"a : floppy disk\n" \
" c : hard disk, etc\n"
#else
#undef HELP_DEVICE
#define HELP_DEVICE \
"/dev/fd0 : floppy disk\n" \
" /dev/sda : hard disk, etc\n"
#endif
#define HELP_TEXT \
"Tool for a read-only access on a Smaky disk. fosfat-" LIBFOSFAT_VERSION_STR "\n\n" \
"Usage: fosread [options] device mode [node] [path]\n\n" \
" -h --help this help\n" \
" -v --version version\n" \
" -a --harddisk force an hard disk (default autodetect)\n" \
" -f --floppydisk force a floppy disk (default autodetect)\n" \
" -l --fos-logger that will turn on the FOS logger\n" \
" -u --undelete enable the undelete mode, even deleted files will\n" \
" be listed and sometimes restorable with 'get' mode.\n\n" \
" device " HELP_DEVICE \
" mode\n" \
" list list the content of a node\n" \
" get copy a file from the Smaky's disk in a" \
" local directory\n" \
" node the tree with the file (or folder)" \
" for 'get' or 'list'\n" \
" example: foo/bar/toto.text\n" \
" path you can specify a path to save" \
" the file (with get mode)\n" \
"\nPlease, report bugs to <mathieu@schroetersa.ch>.\n"
#define VERSION_TEXT "fosread-" LIBFOSFAT_VERSION_STR "\n"
/*
* Get info from the disk.
*
* fosfat the main structure
* return info
*/
static global_info_t *
get_ginfo (fosfat_t *fosfat)
{
global_info_t *ginfo;
char *name;
name = fosfat_diskname (fosfat);
if (name)
{
ginfo = malloc (sizeof (global_info_t));
strncpy (ginfo->name, name, FOSFAT_NAMELGT - 1);
ginfo->name[FOSFAT_NAMELGT - 1] = '\0';
free (name);
}
else
{
fprintf (stderr, "ERROR: I can't read the name of this disk!\n");
ginfo = NULL;
}
return ginfo;
}
/*
* Print date and hour.
*
* time date and hour
*/
static void
print_date (fosfat_time_t *time)
{
printf (" %4i-%02i-%02i %02i:%02i", time->year, time->month,
time->day, time->hour, time->minute);
}
/*
* Print a file in the list.
*
* file description
*/
static void
print_file (fosfat_file_t *file)
{
char filename[FOSFAT_NAMELGT];
if (file->att.isdir || file->att.islink)
snprintf (filename, strrchr (file->name, '.') - file->name + 1,
"%s", file->name);
else
strncpy (filename, file->name, FOSFAT_NAMELGT - 1);
filename[FOSFAT_NAMELGT - 1] = '\0';
printf ("%c%c%c %8i", file->att.isdir ? 'd' : (file->att.islink ? 'l' : '-'),
file->att.isvisible ? '-' : 'h',
file->att.isencoded ? 'e' : '-',
file->size);
print_date (&file->time_c);
print_date (&file->time_w);
print_date (&file->time_r);
printf (" %s", filename);
if (file->att.isdel)
printf (" (X)");
printf ("\n");
}
/*
* List the content of a directory.
*
* fosfat handle
* path where in the tree
* return true if it is ok
*/
static int
list_dir (fosfat_t *fosfat, const char *loc)
{
char *path;
fosfat_file_t *files, *first_file;
if (strcmp (loc, "/") && fosfat_islink (fosfat, loc))
path = fosfat_symlink (fosfat, loc);
else
path = strdup (loc);
if ((files = fosfat_list_dir (fosfat, path)))
{
first_file = files;
printf ("path: %s\n\n", path);
printf (" size creation last change");
printf (" last view filename\n");
printf (" ---- -------- -----------");
printf (" --------- --------\n");
do
{
print_file (files);
} while ((files = files->next_file));
printf ("\nd:directory l:link h:hidden e:encoded (X):undelete\n");
fosfat_free_listdir (first_file);
}
else
{
free (path);
fprintf (stderr, "ERROR: I can't found this path!\n");
return 0;
}
free (path);
return 1;
}
/*
* Copy a file from the disk.
*
* fosfat handle
* path where in the tree
* dst where in local
* return true if it is ok
*/
static int
get_file (fosfat_t *fosfat, const char *path, const char *dst)
{
int res = 0;
char *new_file;
if (!strcasecmp (dst, "./"))
new_file = strdup ((strrchr (path, '/') ? strrchr (path, '/') + 1 : path));
else
new_file = strdup (dst);
if (!fosfat_islink (fosfat, path) && !fosfat_isdir (fosfat, path))
{
printf ("File \"%s\" is copying ...\n", path);
if (fosfat_get_file (fosfat, path, new_file, 1))
{
res = 1;
printf ("Okay..\n");
}
else
fprintf (stderr, "ERROR: I can't copy the file!\n");
}
else
fprintf (stderr, "ERROR: I can't copy a directory or a link!\n");
free (new_file);
return res;
}
/* Print help. */
static void
print_info (void)
{
printf (HELP_TEXT);
}
/* Print version. */
static void
print_version (void)
{
printf (VERSION_TEXT);
}
int
main (int argc, char **argv)
{
int res = 0, i, next_option, undelete = 0;
int flags = 0;
fosfat_disk_t type = FOSFAT_AD;
char *device = NULL, *mode = NULL, *node = NULL, *path = NULL;
fosfat_t *fosfat;
global_info_t *ginfo = NULL;
const char *const short_options = "afhluv";
const struct option long_options[] = {
{ "harddisk", no_argument, NULL, 'a' },
{ "floppydisk", no_argument, NULL, 'f' },
{ "help", no_argument, NULL, 'h' },
{ "fos-logger", no_argument, NULL, 'l' },
{ "undelete", no_argument, NULL, 'u' },
{ "version", no_argument, NULL, 'v' },
{ NULL, 0, NULL, 0 }
};
/* check options */
do
{
next_option = getopt_long (argc, argv, short_options, long_options, NULL);
switch (next_option)
{
default : /* unknown */
case '?': /* invalid option */
case 'h': /* -h or --help */
print_info ();
return -1;
case 'v': /* -v or --version */
print_version ();
return -1;
case 'a': /* -a or --harddisk */
type = FOSFAT_HD;
break ;
case 'f': /* -f or --floppydisk */
type = FOSFAT_FD;
break ;
case 'l': /* -l or --fos-logger */
fosfat_logger (1);
break ;
case 'u': /* -u or --undelete */
undelete = 1;
break ;
case -1: /* end */
break ;
}
} while (next_option != -1);
if (argc < optind + 2)
{
print_info ();
return -1;
}
for (i = optind; i < argc; i++)
{
if (i == optind)
device = strdup (argv[optind]);
else if (i == optind + 1)
mode = strdup (argv[optind + 1]);
else if (i == optind + 2)
node = strdup (argv[optind + 2]);
else if (i == optind + 3)
path = strdup (argv[optind + 3]);
}
if (undelete)
flags = F_UNDELETE;
/* Open the floppy disk (or hard disk) */
if (!(fosfat = fosfat_open (device, type, flags)))
{
fprintf (stderr, "Could not open %s for reading!\n", device);
res = -1;
}
/* Get globals informations on the disk */
if (!res && (ginfo = get_ginfo (fosfat)))
{
printf ("Smaky disk %s\n", ginfo->name);
/* Show the list of a directory */
if (!strcasecmp (mode, "list"))
{
if (!node)
{
if (!list_dir (fosfat, "/"))
res = -1;
}
else if (node)
{
if (!list_dir (fosfat, node))
res = -1;
free (node);
}
}
/* Get a file from the disk */
else if (!strcmp (mode, "get") && node)
{
get_file (fosfat, node, path ? path : "./");
free (node);
free (path);
}
else
print_info ();
free (ginfo);
}
/* Close the disk */
fosfat_close (fosfat);
free (device);
free (mode);
return res;
}
|