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 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
|
/* Copyright (C) 2001-2021 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato,
CA 94945, U.S.A., +1(415)492-9861, for further information.
*/
/* IODevice implementation for Ghostscript */
#include "errno_.h"
#include "string_.h"
#include "unistd_.h"
#include "gx.h"
#include "gserrors.h"
#include "gp.h"
#include "gscdefs.h"
#include "gsfname.h"
#include "gsparam.h"
#include "gsstruct.h"
#include "gxiodev.h"
/* Import the IODevice table from gconf.c. */
extern_gx_io_device_table();
private_st_io_device();
gs_private_st_ptr(st_io_device_ptr, gx_io_device *, "gx_io_device *",
iodev_ptr_enum_ptrs, iodev_ptr_reloc_ptrs);
gs_private_st_element_final(st_io_device_ptr_element, gx_io_device *,
"gx_io_device *[]", iodev_ptr_elt_enum_ptrs, iodev_ptr_elt_reloc_ptrs,
st_io_device_ptr,gs_iodev_finalize);
/* Define the OS (%os%) device. */
iodev_proc_fopen(iodev_os_fopen);
iodev_proc_fclose(iodev_os_fclose);
static iodev_proc_delete_file(os_delete);
static iodev_proc_rename_file(os_rename);
static iodev_proc_file_status(os_status);
static iodev_proc_enumerate_files(os_enumerate);
static iodev_proc_get_params(os_get_params);
const gx_io_device gs_iodev_os =
{
"%os%", "FileSystem",
{iodev_no_init, iodev_no_finit, iodev_no_open_device,
NULL /*iodev_os_open_file */ , iodev_os_gp_fopen, iodev_os_fclose,
os_delete, os_rename, os_status,
os_enumerate, gp_enumerate_files_next, gp_enumerate_files_close,
os_get_params, iodev_no_put_params
},
NULL,
NULL
};
/* ------ Initialization ------ */
int
gs_iodev_init(gs_memory_t * mem)
{ /* Make writable copies of all IODevices. */
gx_io_device **table =
gs_alloc_struct_array_immovable(mem, gx_io_device_table_count + NUM_RUNTIME_IODEVS,
gx_io_device *, &st_io_device_ptr_element,
"gs_iodev_init(table)");
gs_lib_ctx_t *libctx = gs_lib_ctx_get_interp_instance(mem);
int i, j;
int code = 0;
if ((table == NULL) || (libctx == NULL))
return_error(gs_error_VMerror);
libctx->io_device_table_size = gx_io_device_table_count + NUM_RUNTIME_IODEVS;
libctx->io_device_table_count = 0;
libctx->io_device_table = table;
for (i = 0; i < gx_io_device_table_count; ++i) {
gx_io_device *iodev =
gs_alloc_struct_immovable(mem, gx_io_device, &st_io_device,
"gs_iodev_init(iodev)");
if (iodev == 0)
goto fail;
table[i] = iodev;
memcpy(table[i], gx_io_device_table[i], sizeof(gx_io_device));
iodev->memory = mem;
libctx->io_device_table_count++;
}
for (;i < gx_io_device_table_count + NUM_RUNTIME_IODEVS; i++) {
table[i] = NULL;
}
code = gs_register_struct_root(mem, &mem->gs_lib_ctx->io_device_table_root,
(void **)&libctx->io_device_table,
"io_device_table");
if (code < 0)
goto fail;
/* Run the one-time initialization of each IODevice. */
for (j = 0; j < gx_io_device_table_count; ++j)
if ((code = (table[j]->procs.init)(table[j], mem)) < 0)
goto f2;
return 0;
f2:
/****** CAN'T FIND THE ROOT ******/
/*gs_unregister_root(mem, root, "io_device_table");*/
fail:
return (code < 0 ? code : gs_note_error(gs_error_VMerror));
}
void
gs_iodev_finit(gs_memory_t * mem)
{
gs_lib_ctx_t *libctx = gs_lib_ctx_get_interp_instance(mem);
if (libctx && libctx->io_device_table) {
gs_free_object(mem, libctx->io_device_table, "gs_iodev_finit");
libctx->io_device_table = NULL;
}
return;
}
/*
* Register io devices *after* lib initialisation
*/
int
gs_iodev_register_dev(gs_memory_t * mem, const gx_io_device *newiodev)
{
gs_lib_ctx_t *libctx = gs_lib_ctx_get_interp_instance(mem);
gx_io_device **table = libctx->io_device_table;
int code = 0;
gx_io_device *iodev;
int i;
if (libctx->io_device_table_count >= libctx->io_device_table_size) {
/* FIXME: table size should be dynamic - deregistering the root node is a problem */
return_error(gs_error_limitcheck);
}
iodev = gs_alloc_struct(mem, gx_io_device, &st_io_device,
"gs_iodev_register_dev(iodev)");
if (iodev == 0) {
code = gs_note_error(gs_error_VMerror);
goto fail;
}
table[libctx->io_device_table_count] = iodev;
memcpy(table[libctx->io_device_table_count], newiodev, sizeof(gx_io_device));
if ((code = (table[libctx->io_device_table_count]->procs.init)(table[libctx->io_device_table_count], mem)) < 0)
goto fail2;
libctx->io_device_table_count++;
return(code);
fail2:
for (i = libctx->io_device_table_count; i > 0; --i)
gs_free_object(mem, table[i - 1], "gs_iodev_init(iodev)");
gs_free_object(mem, table, "gs_iodev_init(table)");
libctx->io_device_table = NULL;
fail:
return(code);
}
static void
gs_iodev_finalize(const gs_memory_t *cmem, void *vptr)
{
/* discard const for gs_free_object */
gs_memory_t *mem = (gs_memory_t *)cmem;
if (mem->gs_lib_ctx->io_device_table == vptr) {
gx_io_device **table = mem->gs_lib_ctx->io_device_table;
while (mem->gs_lib_ctx->io_device_table_count-- > 0) {
gs_free_object(mem,
table[mem->gs_lib_ctx->io_device_table_count],
"gs_iodev_finalize");
table[mem->gs_lib_ctx->io_device_table_count] = NULL;
}
mem->gs_lib_ctx->io_device_table = NULL;
mem->gs_lib_ctx->io_device_table_size =
mem->gs_lib_ctx->io_device_table_count = 0;
}
}
void
io_device_finalize(const gs_memory_t *cmem, void *vptr)
{
/* discard const for gs_free_object */
gs_memory_t *mem = (gs_memory_t *)cmem;
if (mem->gs_lib_ctx->io_device_table_count > 0) {
int i;
for (i = 0; i < mem->gs_lib_ctx->io_device_table_count
&& mem->gs_lib_ctx->io_device_table[i] != vptr; i++)
;
(mem->gs_lib_ctx->io_device_table[i]->procs.finit)(mem->gs_lib_ctx->io_device_table[i], mem);
mem->gs_lib_ctx->io_device_table[i] = NULL;
}
return;
}
/* ------ Default (unimplemented) IODevice procedures ------ */
int
iodev_no_init(gx_io_device * iodev, gs_memory_t * mem)
{
return 0;
}
void
iodev_no_finit(gx_io_device * iodev, gs_memory_t * mem)
{
return;
}
int
iodev_no_open_device(gx_io_device * iodev, const char *access, stream ** ps,
gs_memory_t * mem)
{
return_error(gs_error_invalidfileaccess);
}
int
iodev_no_open_file(gx_io_device * iodev, const char *fname, uint namelen,
const char *access, stream ** ps, gs_memory_t * mem)
{
return_error(gs_error_invalidfileaccess);
}
int
iodev_no_fopen(gx_io_device * iodev, const char *fname, const char *access,
gp_file ** pfile, char *rfname, uint rnamelen, gs_memory_t *mem)
{
return_error(gs_error_invalidfileaccess);
}
int
iodev_no_fclose(gx_io_device * iodev, gp_file * file)
{
return_error(gs_error_ioerror);
}
int
iodev_no_delete_file(gx_io_device * iodev, const char *fname)
{
return_error(gs_error_invalidfileaccess);
}
int
iodev_no_rename_file(gx_io_device * iodev, const char *from, const char *to)
{
return_error(gs_error_invalidfileaccess);
}
int
iodev_no_file_status(gx_io_device * iodev, const char *fname, struct stat *pstat)
{
return_error(gs_error_undefinedfilename);
}
file_enum *
iodev_no_enumerate_files(gs_memory_t *mem, gx_io_device * iodev, const char *pat,
uint patlen)
{
return NULL;
}
int
iodev_no_get_params(gx_io_device * iodev, gs_param_list * plist)
{
return 0;
}
int
iodev_no_put_params(gx_io_device * iodev, gs_param_list * plist)
{
return param_commit(plist);
}
/* ------ %os% ------ */
/* The fopen routine is exported for %null. */
int
iodev_os_gp_fopen(gx_io_device * iodev, const char *fname, const char *access,
gp_file ** pfile, char *rfname, uint rnamelen, gs_memory_t *mem)
{
errno = 0;
*pfile = gp_fopen(mem, fname, access);
if (*pfile == NULL)
return_error(gs_fopen_errno_to_code(errno));
if (rfname != NULL && rfname != fname)
strcpy(rfname, fname);
return 0;
}
/* The fclose routine is exported for %null. */
int
iodev_os_fclose(gx_io_device * iodev, gp_file * file)
{
gp_fclose(file);
return 0;
}
static int
os_delete(gx_io_device * iodev, const char *fname)
{
return (gp_unlink(iodev->memory, fname) == 0 ? 0 : gs_error_ioerror);
}
static int
os_rename(gx_io_device * iodev, const char *from, const char *to)
{
return (gp_rename(iodev->memory, from, to) == 0 ? 0 : gs_error_ioerror);
}
static int
os_status(gx_io_device * iodev, const char *fname, struct stat *pstat)
{ /* The RS/6000 prototype for stat doesn't include const, */
/* so we have to explicitly remove the const modifier. */
return (gp_stat(iodev->memory, (char *)fname, pstat) < 0 ? gs_error_undefinedfilename : 0);
}
static file_enum *
os_enumerate(gs_memory_t * mem, gx_io_device * iodev, const char *pat,
uint patlen)
{
return gp_enumerate_files_init(mem, pat, patlen);
}
static int
os_get_params(gx_io_device * iodev, gs_param_list * plist)
{
int code;
int i0 = 0, i2 = 2;
bool btrue = true, bfalse = false;
int BlockSize;
long Free, LogicalSize;
/*
* Return fake values for BlockSize and Free, since we can't get the
* correct values in a platform-independent manner.
*/
BlockSize = 1024;
LogicalSize = 2000000000 / BlockSize; /* about 2 Gb */
Free = LogicalSize * 3 / 4; /* about 1.5 Gb */
if (
(code = param_write_bool(plist, "HasNames", &btrue)) < 0 ||
(code = param_write_int(plist, "BlockSize", &BlockSize)) < 0 ||
(code = param_write_long(plist, "Free", &Free)) < 0 ||
(code = param_write_int(plist, "InitializeAction", &i0)) < 0 ||
(code = param_write_bool(plist, "Mounted", &btrue)) < 0 ||
(code = param_write_bool(plist, "Removable", &bfalse)) < 0 ||
(code = param_write_bool(plist, "Searchable", &btrue)) < 0 ||
(code = param_write_int(plist, "SearchOrder", &i2)) < 0 ||
(code = param_write_bool(plist, "Writeable", &btrue)) < 0 ||
(code = param_write_long(plist, "LogicalSize", &LogicalSize)) < 0
)
return code;
return 0;
}
/* ------ Utilities ------ */
/* Get the N'th IODevice from the known device table. */
gx_io_device *
gs_getiodevice(const gs_memory_t *mem, int index)
{
gs_lib_ctx_t *libctx = gs_lib_ctx_get_interp_instance(mem);
if (libctx == NULL || libctx->io_device_table == NULL ||
index < 0 || index >= libctx->io_device_table_count)
return 0; /* index out of range */
return libctx->io_device_table[index];
}
/* Look up an IODevice name. */
/* The name may be either %device or %device%. */
gx_io_device *
gs_findiodevice(const gs_memory_t *mem, const byte * str, uint len)
{
int i;
gs_lib_ctx_t *libctx = gs_lib_ctx_get_interp_instance(mem);
if (libctx->io_device_table == 0)
return 0;
if (len > 1 && str[len - 1] == '%')
len--;
for (i = 0; i < libctx->io_device_table_count; ++i) {
gx_io_device *iodev = libctx->io_device_table[i];
const char *dname = iodev->dname;
if (dname && strlen(dname) == len + 1 && !memcmp(str, dname, len))
return iodev;
}
return 0;
}
/* ------ Accessors ------ */
/* Get IODevice parameters. */
int
gs_getdevparams(gx_io_device * iodev, gs_param_list * plist)
{ /* All IODevices have the Type parameter. */
gs_param_string ts;
int code;
param_string_from_string(ts, iodev->dtype);
code = param_write_name(plist, "Type", &ts);
if (code < 0)
return code;
return (*iodev->procs.get_params) (iodev, plist);
}
/* Put IODevice parameters. */
int
gs_putdevparams(gx_io_device * iodev, gs_param_list * plist)
{
return (*iodev->procs.put_params) (iodev, plist);
}
/* Convert an OS error number to a PostScript error */
/* if opening a file fails. */
int
gs_fopen_errno_to_code(int eno)
{ /* Different OSs vary widely in their error codes. */
/* We try to cover as many variations as we know about. */
switch (eno) {
#ifdef ENOENT
case ENOENT:
return_error(gs_error_undefinedfilename);
#endif
#ifdef ENOFILE
# ifndef ENOENT
# define ENOENT ENOFILE
# endif
# if ENOFILE != ENOENT
case ENOFILE:
return_error(gs_error_undefinedfilename);
# endif
#endif
#ifdef ENAMETOOLONG
case ENAMETOOLONG:
return_error(gs_error_undefinedfilename);
#endif
#ifdef EACCES
case EACCES:
return_error(gs_error_invalidfileaccess);
#endif
#ifdef EMFILE
case EMFILE:
return_error(gs_error_limitcheck);
#endif
#ifdef ENFILE
case ENFILE:
return_error(gs_error_limitcheck);
#endif
default:
return_error(gs_error_ioerror);
}
}
/* Generic interface for filesystem enumeration given a path that may */
/* include a %iodev% prefix */
typedef struct gs_file_enum_s gs_file_enum;
struct gs_file_enum_s {
gs_memory_t *memory;
gx_io_device *piodev; /* iodev's are static, so don't need GC tracing */
file_enum *pfile_enum;
int prepend_iodev_name;
};
gs_private_st_ptrs1(st_gs_file_enum, gs_file_enum, "gs_file_enum",
gs_file_enum_enum_ptrs, gs_file_enum_reloc_ptrs, pfile_enum);
file_enum *
gs_enumerate_files_init(gs_memory_t * mem, const char *pat, uint patlen)
{
file_enum *pfen;
gs_file_enum *pgs_file_enum;
gx_io_device *iodev = NULL;
gs_parsed_file_name_t pfn;
int code = 0;
/* Get the iodevice */
code = gs_parse_file_name(&pfn, pat, patlen, mem);
if (code < 0)
return NULL;
iodev = (pfn.iodev == NULL) ? iodev_default(mem) : pfn.iodev;
/* Check for several conditions that just cause us to return success */
if (pfn.len == 0 || iodev->procs.enumerate_files == iodev_no_enumerate_files) {
return NULL; /* no pattern, or device not found -- just return */
}
pfen = iodev->procs.enumerate_files(mem, iodev, (const char *)pfn.fname,
pfn.len);
if (pfen == 0)
return NULL;
pgs_file_enum = gs_alloc_struct(mem, gs_file_enum, &st_gs_file_enum,
"gs_enumerate_files_init");
if (pgs_file_enum == 0)
{
iodev->procs.enumerate_close(mem, pfen);
return NULL;
}
pgs_file_enum->memory = mem;
pgs_file_enum->piodev = iodev;
pgs_file_enum->pfile_enum = pfen;
pgs_file_enum->prepend_iodev_name = (pfn.iodev != NULL);
return (file_enum *)pgs_file_enum;
}
uint
gs_enumerate_files_next(gs_memory_t * mem, file_enum * pfen, char *ptr,
uint maxlen)
{
gs_file_enum *pgs_file_enum = (gs_file_enum *)pfen;
int iodev_name_len;
uint return_len;
if (pgs_file_enum == NULL)
return ~0;
iodev_name_len = pgs_file_enum->prepend_iodev_name ?
strlen(pgs_file_enum->piodev->dname) : 0;
if (iodev_name_len > maxlen)
return maxlen + 1; /* signal overflow error */
if (iodev_name_len > 0)
memcpy(ptr, pgs_file_enum->piodev->dname, iodev_name_len);
return_len = pgs_file_enum->piodev->procs.enumerate_next(mem, pgs_file_enum->pfile_enum,
ptr + iodev_name_len, maxlen - iodev_name_len);
if (return_len == ~0) {
gs_memory_t *mem2 = pgs_file_enum->memory;
gs_free_object(mem2, pgs_file_enum, "gs_enumerate_files_close");
return ~0;
}
return return_len+iodev_name_len;
}
void
gs_enumerate_files_close(gs_memory_t * mem, file_enum * pfen)
{
gs_file_enum *pgs_file_enum = (gs_file_enum *)pfen;
gs_memory_t *mem2 = pgs_file_enum->memory;
pgs_file_enum->piodev->procs.enumerate_close(mem, pgs_file_enum->pfile_enum);
gs_free_object(mem2, pgs_file_enum, "gs_enumerate_files_close");
}
|