unix.c 39.6 KB
Newer Older
1 2
/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
   2011
3
   Free Software Foundation, Inc.
4
   Contributed by Andy Vaught
Jerry DeLisle committed
5
   F2003 I/O support contributed by Jerry DeLisle
6

Janne Blomqvist committed
7
This file is part of the GNU Fortran runtime library (libgfortran).
8 9 10

Libgfortran is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
11
the Free Software Foundation; either version 3, or (at your option)
12 13 14 15 16 17 18
any later version.

Libgfortran 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.

19 20 21 22 23 24 25 26
Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.

You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.  */
27 28 29

/* Unix stream I/O module */

30
#include "io.h"
Janne Blomqvist committed
31
#include "unix.h"
32 33 34 35 36 37
#include <stdlib.h>
#include <limits.h>

#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
38
#include <assert.h>
39 40 41 42

#include <string.h>
#include <errno.h>

43

Janne Blomqvist committed
44 45 46 47 48 49 50
/* min macro that evaluates its arguments only once.  */
#define min(a,b)		\
  ({ typeof (a) _a = (a);	\
    typeof (b) _b = (b);	\
    _a < _b ? _a : _b; })


51 52
/* For mingw, we don't identify files by their inode number, but by a
   64-bit identifier created from a BY_HANDLE_FILE_INFORMATION. */
53
#ifdef __MINGW32__
54 55 56 57

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

58 59
#if !defined(_FILE_OFFSET_BITS) || _FILE_OFFSET_BITS != 64
#undef lseek
60
#define lseek _lseeki64
61
#undef fstat
62
#define fstat _fstati64
63
#undef stat
64
#define stat _stati64
65
#endif
66

67
#ifndef HAVE_WORKING_STAT
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
static uint64_t
id_from_handle (HANDLE hFile)
{
  BY_HANDLE_FILE_INFORMATION FileInformation;

  if (hFile == INVALID_HANDLE_VALUE)
      return 0;

  memset (&FileInformation, 0, sizeof(FileInformation));
  if (!GetFileInformationByHandle (hFile, &FileInformation))
    return 0;

  return ((uint64_t) FileInformation.nFileIndexLow)
	 | (((uint64_t) FileInformation.nFileIndexHigh) << 32);
}


static uint64_t
id_from_path (const char *path)
{
  HANDLE hFile;
  uint64_t res;

  if (!path || !*path || access (path, F_OK))
    return (uint64_t) -1;

  hFile = CreateFile (path, 0, 0, NULL, OPEN_EXISTING,
		      FILE_FLAG_BACKUP_SEMANTICS | FILE_ATTRIBUTE_READONLY,
		      NULL);
  res = id_from_handle (hFile);
  CloseHandle (hFile);
  return res;
}


static uint64_t
id_from_fd (const int fd)
{
  return id_from_handle ((HANDLE) _get_osfhandle (fd));
}

#endif
110 111
#endif

112 113 114 115
#ifndef PATH_MAX
#define PATH_MAX 1024
#endif

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
/* These flags aren't defined on all targets (mingw32), so provide them
   here.  */
#ifndef S_IRGRP
#define S_IRGRP 0
#endif

#ifndef S_IWGRP
#define S_IWGRP 0
#endif

#ifndef S_IROTH
#define S_IROTH 0
#endif

#ifndef S_IWOTH
#define S_IWOTH 0
#endif

134

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
#ifndef HAVE_ACCESS

#ifndef W_OK
#define W_OK 2
#endif

#ifndef R_OK
#define R_OK 4
#endif

#ifndef F_OK
#define F_OK 0
#endif

/* Fallback implementation of access() on systems that don't have it.
   Only modes R_OK, W_OK and F_OK are used in this file.  */

static int
fallback_access (const char *path, int mode)
{
155 156 157
  int fd;

  if ((mode & R_OK) && (fd = open (path, O_RDONLY)) < 0)
158
    return -1;
159
  close (fd);
160

161
  if ((mode & W_OK) && (fd = open (path, O_WRONLY)) < 0)
162
    return -1;
163
  close (fd);
164 165 166

  if (mode == F_OK)
    {
167
      struct stat st;
168 169 170 171 172 173 174 175 176 177 178
      return stat (path, &st);
    }

  return 0;
}

#undef access
#define access fallback_access
#endif


Jerry DeLisle committed
179
/* Unix and internal stream I/O module */
180

Jerry DeLisle committed
181
static const int BUFFER_SIZE = 8192;
182

183 184 185 186 187 188 189
typedef struct
{
  stream st;

  gfc_offset buffer_offset;	/* File offset of the start of the buffer */
  gfc_offset physical_offset;	/* Current physical file offset */
  gfc_offset logical_offset;	/* Current logical file offset */
190
  gfc_offset file_length;	/* Length of the file. */
191 192 193 194 195 196 197 198

  char *buffer;                 /* Pointer to the buffer.  */
  int fd;                       /* The POSIX file descriptor.  */

  int active;			/* Length of valid bytes in the buffer */

  int ndirty;			/* Dirty bytes starting at buffer_offset */

199 200 201
  /* Cached stat(2) values.  */
  dev_t st_dev;
  ino_t st_ino;
202 203 204 205
}
unix_stream;


206 207 208 209 210 211 212 213 214 215
/* fix_fd()-- Given a file descriptor, make sure it is not one of the
 * standard descriptors, returning a non-standard descriptor.  If the
 * user specifies that system errors should go to standard output,
 * then closes standard output, we don't want the system errors to a
 * file that has been given file descriptor 1 or 0.  We want to send
 * the error to the invalid descriptor. */

static int
fix_fd (int fd)
{
216
#ifdef HAVE_DUP
217 218 219 220
  int input, output, error;

  input = output = error = 0;

221 222
  /* Unix allocates the lowest descriptors first, so a loop is not
     required, but this order is. */
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
  if (fd == STDIN_FILENO)
    {
      fd = dup (fd);
      input = 1;
    }
  if (fd == STDOUT_FILENO)
    {
      fd = dup (fd);
      output = 1;
    }
  if (fd == STDERR_FILENO)
    {
      fd = dup (fd);
      error = 1;
    }

  if (input)
    close (STDIN_FILENO);
  if (output)
    close (STDOUT_FILENO);
  if (error)
    close (STDERR_FILENO);
245
#endif
246 247 248 249 250

  return fd;
}


251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
/* If the stream corresponds to a preconnected unit, we flush the
   corresponding C stream.  This is bugware for mixed C-Fortran codes
   where the C code doesn't flush I/O before returning.  */
void
flush_if_preconnected (stream * s)
{
  int fd;

  fd = ((unix_stream *) s)->fd;
  if (fd == STDIN_FILENO)
    fflush (stdin);
  else if (fd == STDOUT_FILENO)
    fflush (stdout);
  else if (fd == STDERR_FILENO)
    fflush (stderr);
}

268

Jerry DeLisle committed
269 270 271 272 273 274 275 276 277 278 279
/********************************************************************
Raw I/O functions (read, write, seek, tell, truncate, close).

These functions wrap the basic POSIX I/O syscalls. Any deviation in
semantics is a bug, except the following: write restarts in case
of being interrupted by a signal, and as the first argument the
functions take the unix_stream struct rather than an integer file
descriptor. Also, for POSIX read() and write() a nbyte argument larger
than SSIZE_MAX is undefined; here the type of nbyte is ssize_t rather
than size_t as for POSIX read/write.
*********************************************************************/
280

281
static int
Jerry DeLisle committed
282
raw_flush (unix_stream * s  __attribute__ ((unused)))
283
{
Jerry DeLisle committed
284
  return 0;
285 286
}

Jerry DeLisle committed
287 288 289 290 291 292 293
static ssize_t
raw_read (unix_stream * s, void * buf, ssize_t nbyte)
{
  /* For read we can't do I/O in a loop like raw_write does, because
     that will break applications that wait for interactive I/O.  */
  return read (s->fd, buf, nbyte);
}
294

Jerry DeLisle committed
295 296
static ssize_t
raw_write (unix_stream * s, const void * buf, ssize_t nbyte)
297
{
Jerry DeLisle committed
298
  ssize_t trans, bytes_left;
299 300
  char *buf_st;

Jerry DeLisle committed
301
  bytes_left = nbyte;
302 303 304 305 306
  buf_st = (char *) buf;

  /* We must write in a loop since some systems don't restart system
     calls in case of a signal.  */
  while (bytes_left > 0)
307
    {
Jerry DeLisle committed
308
      trans = write (s->fd, buf_st, bytes_left);
309 310 311 312 313
      if (trans < 0)
	{
	  if (errno == EINTR)
	    continue;
	  else
Jerry DeLisle committed
314
	    return trans;
315 316 317
	}
      buf_st += trans;
      bytes_left -= trans;
318 319
    }

Jerry DeLisle committed
320
  return nbyte - bytes_left;
321 322
}

323 324
static gfc_offset
raw_seek (unix_stream * s, gfc_offset offset, int whence)
Jerry DeLisle committed
325 326 327
{
  return lseek (s->fd, offset, whence);
}
328

329
static gfc_offset
Jerry DeLisle committed
330 331 332 333
raw_tell (unix_stream * s)
{
  return lseek (s->fd, 0, SEEK_CUR);
}
334

335 336 337 338 339 340 341 342 343 344
static gfc_offset
raw_size (unix_stream * s)
{
  struct stat statbuf;
  int ret = fstat (s->fd, &statbuf);
  if (ret == -1)
    return ret;
  return statbuf.st_size;
}

Jerry DeLisle committed
345
static int
346
raw_truncate (unix_stream * s, gfc_offset length)
347
{
348 349 350 351 352 353 354 355 356
#ifdef __MINGW32__
  HANDLE h;
  gfc_offset cur;

  if (isatty (s->fd))
    {
      errno = EBADF;
      return -1;
    }
357
  h = (HANDLE) _get_osfhandle (s->fd);
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
  if (h == INVALID_HANDLE_VALUE)
    {
      errno = EBADF;
      return -1;
    }
  cur = lseek (s->fd, 0, SEEK_CUR);
  if (cur == -1)
    return -1;
  if (lseek (s->fd, length, SEEK_SET) == -1)
    goto error;
  if (!SetEndOfFile (h))
    {
      errno = EBADF;
      goto error;
    }
  if (lseek (s->fd, cur, SEEK_SET) == -1)
    return -1;
  return 0;
 error:
  lseek (s->fd, cur, SEEK_SET);
  return -1;
#elif defined HAVE_FTRUNCATE
Jerry DeLisle committed
380 381 382 383 384 385 386
  return ftruncate (s->fd, length);
#elif defined HAVE_CHSIZE
  return chsize (s->fd, length);
#else
  runtime_error ("required ftruncate or chsize support not present");
  return -1;
#endif
387 388
}

Jerry DeLisle committed
389 390 391 392 393
static int
raw_close (unix_stream * s)
{
  int retval;
  
394 395 396 397 398
  if (s->fd != STDOUT_FILENO
      && s->fd != STDERR_FILENO
      && s->fd != STDIN_FILENO)
    retval = close (s->fd);
  else
399
    retval = 0;
Janne Blomqvist committed
400
  free (s);
Jerry DeLisle committed
401 402
  return retval;
}
403

Jerry DeLisle committed
404 405 406 407 408 409 410
static int
raw_init (unix_stream * s)
{
  s->st.read = (void *) raw_read;
  s->st.write = (void *) raw_write;
  s->st.seek = (void *) raw_seek;
  s->st.tell = (void *) raw_tell;
411
  s->st.size = (void *) raw_size;
412
  s->st.trunc = (void *) raw_truncate;
Jerry DeLisle committed
413 414
  s->st.close = (void *) raw_close;
  s->st.flush = (void *) raw_flush;
415

Jerry DeLisle committed
416 417 418
  s->buffer = NULL;
  return 0;
}
419

420

Jerry DeLisle committed
421 422 423 424
/*********************************************************************
Buffered I/O functions. These functions have the same semantics as the
raw I/O functions above, except that they are buffered in order to
improve performance. The buffer must be flushed when switching from
425
reading to writing and vice versa. Only supported for regular files.
Jerry DeLisle committed
426 427 428 429
*********************************************************************/

static int
buf_flush (unix_stream * s)
430
{
Jerry DeLisle committed
431 432 433 434
  int writelen;

  /* Flushing in read mode means discarding read bytes.  */
  s->active = 0;
435

436
  if (s->ndirty == 0)
Jerry DeLisle committed
437
    return 0;
438
  
439
  if (s->physical_offset != s->buffer_offset
Jerry DeLisle committed
440 441
      && lseek (s->fd, s->buffer_offset, SEEK_SET) < 0)
    return -1;
442

Jerry DeLisle committed
443
  writelen = raw_write (s, s->buffer, s->ndirty);
444

Jerry DeLisle committed
445
  s->physical_offset = s->buffer_offset + writelen;
446

447
  if (s->physical_offset > s->file_length)
Jerry DeLisle committed
448
      s->file_length = s->physical_offset;
449 450 451

  s->ndirty -= writelen;
  if (s->ndirty != 0)
Jerry DeLisle committed
452
    return -1;
453

Jerry DeLisle committed
454
  return 0;
455 456
}

Jerry DeLisle committed
457 458
static ssize_t
buf_read (unix_stream * s, void * buf, ssize_t nbyte)
459
{
Jerry DeLisle committed
460 461
  if (s->active == 0)
    s->buffer_offset = s->logical_offset;
462

Jerry DeLisle committed
463 464 465 466
  /* Is the data we want in the buffer?  */
  if (s->logical_offset + nbyte <= s->buffer_offset + s->active
      && s->buffer_offset <= s->logical_offset)
    memcpy (buf, s->buffer + (s->logical_offset - s->buffer_offset), nbyte);
467 468
  else
    {
Jerry DeLisle committed
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
      /* First copy the active bytes if applicable, then read the rest
         either directly or filling the buffer.  */
      char *p;
      int nread = 0;
      ssize_t to_read, did_read;
      gfc_offset new_logical;
      
      p = (char *) buf;
      if (s->logical_offset >= s->buffer_offset 
          && s->buffer_offset + s->active >= s->logical_offset)
        {
          nread = s->active - (s->logical_offset - s->buffer_offset);
          memcpy (buf, s->buffer + (s->logical_offset - s->buffer_offset), 
                  nread);
          p += nread;
        }
      /* At this point we consider all bytes in the buffer discarded.  */
      to_read = nbyte - nread;
      new_logical = s->logical_offset + nread;
488
      if (s->physical_offset != new_logical
Jerry DeLisle committed
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
          && lseek (s->fd, new_logical, SEEK_SET) < 0)
        return -1;
      s->buffer_offset = s->physical_offset = new_logical;
      if (to_read <= BUFFER_SIZE/2)
        {
          did_read = raw_read (s, s->buffer, BUFFER_SIZE);
          s->physical_offset += did_read;
          s->active = did_read;
          did_read = (did_read > to_read) ? to_read : did_read;
          memcpy (p, s->buffer, did_read);
        }
      else
        {
          did_read = raw_read (s, p, to_read);
          s->physical_offset += did_read;
          s->active = 0;
        }
      nbyte = did_read + nread;
507
    }
Jerry DeLisle committed
508 509
  s->logical_offset += nbyte;
  return nbyte;
510 511
}

Jerry DeLisle committed
512 513
static ssize_t
buf_write (unix_stream * s, const void * buf, ssize_t nbyte)
514
{
Jerry DeLisle committed
515 516 517 518 519 520 521 522 523 524 525
  if (s->ndirty == 0)
    s->buffer_offset = s->logical_offset;

  /* Does the data fit into the buffer?  As a special case, if the
     buffer is empty and the request is bigger than BUFFER_SIZE/2,
     write directly. This avoids the case where the buffer would have
     to be flushed at every write.  */
  if (!(s->ndirty == 0 && nbyte > BUFFER_SIZE/2)
      && s->logical_offset + nbyte <= s->buffer_offset + BUFFER_SIZE
      && s->buffer_offset <= s->logical_offset
      && s->buffer_offset + s->ndirty >= s->logical_offset)
526
    {
Jerry DeLisle committed
527 528 529 530
      memcpy (s->buffer + (s->logical_offset - s->buffer_offset), buf, nbyte);
      int nd = (s->logical_offset - s->buffer_offset) + nbyte;
      if (nd > s->ndirty)
        s->ndirty = nd;
531 532 533
    }
  else
    {
Jerry DeLisle committed
534 535 536 537 538 539 540 541 542 543 544
      /* Flush, and either fill the buffer with the new data, or if
         the request is bigger than the buffer size, write directly
         bypassing the buffer.  */
      buf_flush (s);
      if (nbyte <= BUFFER_SIZE/2)
        {
          memcpy (s->buffer, buf, nbyte);
          s->buffer_offset = s->logical_offset;
          s->ndirty += nbyte;
        }
      else
545
	{
546
	  if (s->physical_offset != s->logical_offset)
547 548 549 550 551 552 553 554 555
	    {
	      if (lseek (s->fd, s->logical_offset, SEEK_SET) < 0)
		return -1;
	      s->physical_offset = s->logical_offset;
	    }

	  nbyte = raw_write (s, buf, nbyte);
	  s->physical_offset += nbyte;
	}
556
    }
Jerry DeLisle committed
557
  s->logical_offset += nbyte;
558
  if (s->logical_offset > s->file_length)
Jerry DeLisle committed
559 560
    s->file_length = s->logical_offset;
  return nbyte;
561 562
}

563 564
static gfc_offset
buf_seek (unix_stream * s, gfc_offset offset, int whence)
565
{
Jerry DeLisle committed
566
  switch (whence)
567
    {
Jerry DeLisle committed
568 569 570 571 572 573 574 575 576 577
    case SEEK_SET:
      break;
    case SEEK_CUR:
      offset += s->logical_offset;
      break;
    case SEEK_END:
      offset += s->file_length;
      break;
    default:
      return -1;
578
    }
Jerry DeLisle committed
579
  if (offset < 0)
580
    {
Jerry DeLisle committed
581 582
      errno = EINVAL;
      return -1;
583
    }
Jerry DeLisle committed
584 585
  s->logical_offset = offset;
  return offset;
586 587
}

588
static gfc_offset
Jerry DeLisle committed
589
buf_tell (unix_stream * s)
590
{
591
  return buf_seek (s, 0, SEEK_CUR);
592
}
593

594 595 596 597 598 599
static gfc_offset
buf_size (unix_stream * s)
{
  return s->file_length;
}

600
static int
601
buf_truncate (unix_stream * s, gfc_offset length)
602
{
Jerry DeLisle committed
603
  int r;
604

Jerry DeLisle committed
605 606 607 608 609 610
  if (buf_flush (s) != 0)
    return -1;
  r = raw_truncate (s, length);
  if (r == 0)
    s->file_length = length;
  return r;
611 612 613
}

static int
Jerry DeLisle committed
614
buf_close (unix_stream * s)
615
{
Jerry DeLisle committed
616 617
  if (buf_flush (s) != 0)
    return -1;
Janne Blomqvist committed
618
  free (s->buffer);
Jerry DeLisle committed
619
  return raw_close (s);
620 621
}

Jerry DeLisle committed
622 623
static int
buf_init (unix_stream * s)
624
{
Jerry DeLisle committed
625 626 627 628
  s->st.read = (void *) buf_read;
  s->st.write = (void *) buf_write;
  s->st.seek = (void *) buf_seek;
  s->st.tell = (void *) buf_tell;
629
  s->st.size = (void *) buf_size;
630
  s->st.trunc = (void *) buf_truncate;
Jerry DeLisle committed
631 632
  s->st.close = (void *) buf_close;
  s->st.flush = (void *) buf_flush;
633

Jerry DeLisle committed
634 635
  s->buffer = get_mem (BUFFER_SIZE);
  return 0;
636 637 638 639 640 641 642 643 644 645 646 647 648
}


/*********************************************************************
  memory stream functions - These are used for internal files

  The idea here is that a single stream structure is created and all
  requests must be satisfied from it.  The location and size of the
  buffer is the character variable supplied to the READ or WRITE
  statement.

*********************************************************************/

Jerry DeLisle committed
649 650
char *
mem_alloc_r (stream * strm, int * len)
651
{
Jerry DeLisle committed
652
  unix_stream * s = (unix_stream *) strm;
653
  gfc_offset n;
Janne Blomqvist committed
654
  gfc_offset where = s->logical_offset;
655 656 657 658

  if (where < s->buffer_offset || where > s->buffer_offset + s->active)
    return NULL;

659
  n = s->buffer_offset + s->active - where;
660 661 662
  if (*len > n)
    *len = n;

Jerry DeLisle committed
663 664
  s->logical_offset = where + *len;

665 666 667 668
  return s->buffer + (where - s->buffer_offset);
}


Jerry DeLisle committed
669
char *
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
mem_alloc_r4 (stream * strm, int * len)
{
  unix_stream * s = (unix_stream *) strm;
  gfc_offset n;
  gfc_offset where = s->logical_offset;

  if (where < s->buffer_offset || where > s->buffer_offset + s->active)
    return NULL;

  n = s->buffer_offset + s->active - where;
  if (*len > n)
    *len = n;

  s->logical_offset = where + *len;

  return s->buffer + (where - s->buffer_offset) * 4;
}


char *
Jerry DeLisle committed
690
mem_alloc_w (stream * strm, int * len)
691
{
Jerry DeLisle committed
692
  unix_stream * s = (unix_stream *) strm;
693
  gfc_offset m;
Janne Blomqvist committed
694
  gfc_offset where = s->logical_offset;
695 696 697

  m = where + *len;

698
  if (where < s->buffer_offset)
699 700
    return NULL;

701
  if (m > s->file_length)
702
    return NULL;
703

704 705 706 707 708 709
  s->logical_offset = m;

  return s->buffer + (where - s->buffer_offset);
}


710
gfc_char4_t *
711 712 713 714 715
mem_alloc_w4 (stream * strm, int * len)
{
  unix_stream * s = (unix_stream *) strm;
  gfc_offset m;
  gfc_offset where = s->logical_offset;
716
  gfc_char4_t *result = (gfc_char4_t *) s->buffer;
717 718 719 720 721 722 723 724 725 726

  m = where + *len;

  if (where < s->buffer_offset)
    return NULL;

  if (m > s->file_length)
    return NULL;

  s->logical_offset = m;
727
  return &result[where - s->buffer_offset];
728 729 730 731
}


/* Stream read function for character(kine=1) internal units.  */
732

Jerry DeLisle committed
733 734
static ssize_t
mem_read (stream * s, void * buf, ssize_t nbytes)
735 736
{
  void *p;
Jerry DeLisle committed
737
  int nb = nbytes;
738

Jerry DeLisle committed
739
  p = mem_alloc_r (s, &nb);
740 741
  if (p)
    {
Jerry DeLisle committed
742 743
      memcpy (buf, p, nb);
      return (ssize_t) nb;
744 745
    }
  else
Jerry DeLisle committed
746
    return 0;
747 748 749
}


750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
/* Stream read function for chracter(kind=4) internal units.  */

static ssize_t
mem_read4 (stream * s, void * buf, ssize_t nbytes)
{
  void *p;
  int nb = nbytes;

  p = mem_alloc_r (s, &nb);
  if (p)
    {
      memcpy (buf, p, nb);
      return (ssize_t) nb;
    }
  else
    return 0;
}


/* Stream write function for character(kind=1) internal units.  */
770

Jerry DeLisle committed
771 772
static ssize_t
mem_write (stream * s, const void * buf, ssize_t nbytes)
773 774
{
  void *p;
Jerry DeLisle committed
775
  int nb = nbytes;
776

Jerry DeLisle committed
777
  p = mem_alloc_w (s, &nb);
778 779
  if (p)
    {
Jerry DeLisle committed
780 781
      memcpy (p, buf, nb);
      return (ssize_t) nb;
782 783
    }
  else
Jerry DeLisle committed
784
    return 0;
785 786 787
}


788 789 790 791 792 793 794 795
/* Stream write function for character(kind=4) internal units.  */

static ssize_t
mem_write4 (stream * s, const void * buf, ssize_t nwords)
{
  gfc_char4_t *p;
  int nw = nwords;

796
  p = mem_alloc_w4 (s, &nw);
797 798 799 800 801 802 803 804 805 806 807
  if (p)
    {
      while (nw--)
	*p++ = (gfc_char4_t) *((char *) buf);
      return nwords;
    }
  else
    return 0;
}


808 809
static gfc_offset
mem_seek (stream * strm, gfc_offset offset, int whence)
810
{
Jerry DeLisle committed
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
  unix_stream * s = (unix_stream *) strm;
  switch (whence)
    {
    case SEEK_SET:
      break;
    case SEEK_CUR:
      offset += s->logical_offset;
      break;
    case SEEK_END:
      offset += s->file_length;
      break;
    default:
      return -1;
    }

  /* Note that for internal array I/O it's actually possible to have a
     negative offset, so don't check for that.  */
828 829
  if (offset > s->file_length)
    {
Jerry DeLisle committed
830 831
      errno = EINVAL;
      return -1;
832 833 834
    }

  s->logical_offset = offset;
Jerry DeLisle committed
835 836 837 838 839 840 841

  /* Returning < 0 is the error indicator for sseek(), so return 0 if
     offset is negative.  Thus if the return value is 0, the caller
     has to use stell() to get the real value of logical_offset.  */
  if (offset >= 0)
    return offset;
  return 0;
842 843 844
}


845
static gfc_offset
Jerry DeLisle committed
846
mem_tell (stream * s)
847
{
Jerry DeLisle committed
848
  return ((unix_stream *)s)->logical_offset;
849 850 851
}


852
static int
Jerry DeLisle committed
853
mem_truncate (unix_stream * s __attribute__ ((unused)), 
854
	      gfc_offset length __attribute__ ((unused)))
855
{
Jerry DeLisle committed
856
  return 0;
857 858 859
}


Jerry DeLisle committed
860 861
static int
mem_flush (unix_stream * s __attribute__ ((unused)))
862
{
Jerry DeLisle committed
863
  return 0;
864 865 866
}


Jerry DeLisle committed
867 868
static int
mem_close (unix_stream * s)
869
{
870
  free (s);
871

Jerry DeLisle committed
872 873
  return 0;
}
874 875 876 877 878 879 880


/*********************************************************************
  Public functions -- A reimplementation of this module needs to
  define functional equivalents of the following.
*********************************************************************/

881 882
/* open_internal()-- Returns a stream structure from a character(kind=1)
   internal file */
883 884

stream *
885
open_internal (char *base, int length, gfc_offset offset)
886
{
Jerry DeLisle committed
887
  unix_stream *s;
888

Jerry DeLisle committed
889 890
  s = get_mem (sizeof (unix_stream));
  memset (s, '\0', sizeof (unix_stream));
891 892

  s->buffer = base;
893
  s->buffer_offset = offset;
894 895 896 897 898 899

  s->logical_offset = 0;
  s->active = s->file_length = length;

  s->st.close = (void *) mem_close;
  s->st.seek = (void *) mem_seek;
Jerry DeLisle committed
900
  s->st.tell = (void *) mem_tell;
901 902 903
  /* buf_size is not a typo, we just reuse an identical
     implementation.  */
  s->st.size = (void *) buf_size;
904
  s->st.trunc = (void *) mem_truncate;
905 906
  s->st.read = (void *) mem_read;
  s->st.write = (void *) mem_write;
Jerry DeLisle committed
907
  s->st.flush = (void *) mem_flush;
908 909

  return (stream *) s;
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
}

/* open_internal4()-- Returns a stream structure from a character(kind=4)
   internal file */

stream *
open_internal4 (char *base, int length, gfc_offset offset)
{
  unix_stream *s;

  s = get_mem (sizeof (unix_stream));
  memset (s, '\0', sizeof (unix_stream));

  s->buffer = base;
  s->buffer_offset = offset;

  s->logical_offset = 0;
  s->active = s->file_length = length;

  s->st.close = (void *) mem_close;
  s->st.seek = (void *) mem_seek;
  s->st.tell = (void *) mem_tell;
932 933 934
  /* buf_size is not a typo, we just reuse an identical
     implementation.  */
  s->st.size = (void *) buf_size;
935 936 937 938 939 940
  s->st.trunc = (void *) mem_truncate;
  s->st.read = (void *) mem_read4;
  s->st.write = (void *) mem_write4;
  s->st.flush = (void *) mem_flush;

  return (stream *) s;
941 942 943 944 945 946 947
}


/* fd_to_stream()-- Given an open file descriptor, build a stream
 * around it. */

static stream *
948
fd_to_stream (int fd)
949
{
950
  struct stat statbuf;
951 952 953
  unix_stream *s;

  s = get_mem (sizeof (unix_stream));
954
  memset (s, '\0', sizeof (unix_stream));
955 956 957 958 959 960 961 962 963

  s->fd = fd;
  s->buffer_offset = 0;
  s->physical_offset = 0;
  s->logical_offset = 0;

  /* Get the current length of the file. */

  fstat (fd, &statbuf);
964

965 966
  s->st_dev = statbuf.st_dev;
  s->st_ino = statbuf.st_ino;
967 968 969 970 971 972 973 974 975 976
  s->file_length = statbuf.st_size;

  /* Only use buffered IO for regular files.  */
  if (S_ISREG (statbuf.st_mode)
      && !options.all_unbuffered
      && !(options.unbuffered_preconnected && 
	   (s->fd == STDIN_FILENO 
	    || s->fd == STDOUT_FILENO 
	    || s->fd == STDERR_FILENO)))
    buf_init (s);
977
  else
Jerry DeLisle committed
978
    raw_init (s);
979 980 981 982 983

  return (stream *) s;
}


Steven G. Kargl committed
984 985 986
/* Given the Fortran unit number, convert it to a C file descriptor.  */

int
987
unit_to_fd (int unit)
Steven G. Kargl committed
988 989
{
  gfc_unit *us;
990
  int fd;
Steven G. Kargl committed
991

992
  us = find_unit (unit);
Steven G. Kargl committed
993 994 995
  if (us == NULL)
    return -1;

996 997 998
  fd = ((unix_stream *) us->s)->fd;
  unlock_unit (us);
  return fd;
Steven G. Kargl committed
999 1000 1001
}


1002 1003 1004 1005
/* unpack_filename()-- Given a fortran string and a pointer to a
 * buffer that is PATH_MAX characters, convert the fortran string to a
 * C string in the buffer.  Returns nonzero if this is not possible.  */

1006
int
1007 1008
unpack_filename (char *cstring, const char *fstring, int len)
{
1009
  if (fstring == NULL)
Janne Blomqvist committed
1010
    return EFAULT;
1011 1012
  len = fstrlen (fstring, len);
  if (len >= PATH_MAX)
Janne Blomqvist committed
1013
    return ENAMETOOLONG;
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024

  memmove (cstring, fstring, len);
  cstring[len] = '\0';

  return 0;
}


/* tempfile()-- Generate a temporary filename for a scratch file and
 * open it.  mkstemp() opens the file for reading and writing, but the
 * library mode prevents anything that is not allowed.  The descriptor
1025
 * is returned, which is -1 on error.  The template is pointed to by 
1026
 * opp->file, which is copied into the unit structure
1027 1028 1029
 * and freed later. */

static int
1030
tempfile (st_parameter_open *opp)
1031 1032 1033
{
  const char *tempdir;
  char *template;
1034
  const char *slash = "/";
1035
  int fd;
1036 1037 1038 1039 1040 1041
  size_t tempdirlen;

#ifndef HAVE_MKSTEMP
  int count;
  size_t slashlen;
#endif
1042 1043

  tempdir = getenv ("GFORTRAN_TMPDIR");
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
#ifdef __MINGW32__
  if (tempdir == NULL)
    {
      char buffer[MAX_PATH + 1];
      DWORD ret;
      ret = GetTempPath (MAX_PATH, buffer);
      /* If we are not able to get a temp-directory, we use
	 current directory.  */
      if (ret > MAX_PATH || !ret)
        buffer[0] = 0;
      else
        buffer[ret] = 0;
      tempdir = strdup (buffer);
    }
#else
1059 1060 1061
  if (tempdir == NULL)
    tempdir = getenv ("TMP");
  if (tempdir == NULL)
1062 1063
    tempdir = getenv ("TEMP");
  if (tempdir == NULL)
1064
    tempdir = DEFAULT_TEMPDIR;
1065
#endif
1066

1067 1068
  /* Check for special case that tempdir contains slash
     or backslash at end.  */
1069 1070
  tempdirlen = strlen (tempdir);
  if (*tempdir == 0 || tempdir[tempdirlen - 1] == '/'
1071
#ifdef __MINGW32__
1072
      || tempdir[tempdirlen - 1] == '\\'
1073 1074 1075
#endif
     )
    slash = "";
1076

1077 1078
  // Take care that the template is longer in the mktemp() branch.
  template = get_mem (tempdirlen + 23);
1079

1080
#ifdef HAVE_MKSTEMP
1081 1082
  snprintf (template, tempdirlen + 23, "%s%sgfortrantmpXXXXXX", 
	    tempdir, slash);
1083 1084 1085

  fd = mkstemp (template);

1086
#else /* HAVE_MKSTEMP */
1087
  fd = -1;
1088 1089
  count = 0;
  slashlen = strlen (slash);
1090 1091
  do
    {
1092 1093
      snprintf (template, tempdirlen + 23, "%s%sgfortrantmpaaaXXXXXX", 
		tempdir, slash);
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
      if (count > 0)
	{
	  int c = count;
	  template[tempdirlen + slashlen + 13] = 'a' + (c% 26);
	  c /= 26;
	  template[tempdirlen + slashlen + 12] = 'a' + (c % 26);
	  c /= 26;
	  template[tempdirlen + slashlen + 11] = 'a' + (c % 26);
	  if (c >= 26)
	    break;
	}

1106
      if (!mktemp (template))
1107 1108 1109 1110 1111 1112
      {
	errno = EEXIST;
	count++;
	continue;
      }

1113
#if defined(HAVE_CRLF) && defined(O_BINARY)
1114
      fd = open (template, O_RDWR | O_CREAT | O_EXCL | O_BINARY,
Jerry DeLisle committed
1115
		 S_IREAD | S_IWRITE);
1116
#else
1117
      fd = open (template, O_RDWR | O_CREAT | O_EXCL, S_IREAD | S_IWRITE);
1118
#endif
1119 1120
    }
  while (fd == -1 && errno == EEXIST);
1121 1122
#endif /* HAVE_MKSTEMP */

1123 1124
  opp->file = template;
  opp->file_len = strlen (template);	/* Don't include trailing nul */
1125 1126 1127 1128 1129

  return fd;
}


1130
/* regular_file()-- Open a regular file.
1131 1132
 * Change flags->action if it is ACTION_UNSPECIFIED on entry,
 * unless an error occurs.
1133
 * Returns the descriptor, which is less than zero on error. */
1134 1135

static int
1136
regular_file (st_parameter_open *opp, unit_flags *flags)
1137
{
Janne Blomqvist committed
1138
  char path[min(PATH_MAX, opp->file_len + 1)];
1139
  int mode;
1140
  int rwflag;
1141
  int crflag;
1142
  int fd;
Janne Blomqvist committed
1143
  int err;
1144

Janne Blomqvist committed
1145 1146
  err = unpack_filename (path, opp->file, opp->file_len);
  if (err)
1147
    {
Janne Blomqvist committed
1148
      errno = err;		/* Fake an OS error */
1149 1150 1151
      return -1;
    }

1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
#ifdef __CYGWIN__
  if (opp->file_len == 7)
    {
      if (strncmp (path, "CONOUT$", 7) == 0
	  || strncmp (path, "CONERR$", 7) == 0)
	{
	  fd = open ("/dev/conout", O_WRONLY);
	  flags->action = ACTION_WRITE;
	  return fd;
	}
    }

  if (opp->file_len == 6 && strncmp (path, "CONIN$", 6) == 0)
    {
      fd = open ("/dev/conin", O_RDONLY);
      flags->action = ACTION_READ;
      return fd;
    }
#endif

1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192

#ifdef __MINGW32__
  if (opp->file_len == 7)
    {
      if (strncmp (path, "CONOUT$", 7) == 0
	  || strncmp (path, "CONERR$", 7) == 0)
	{
	  fd = open ("CONOUT$", O_WRONLY);
	  flags->action = ACTION_WRITE;
	  return fd;
	}
    }

  if (opp->file_len == 6 && strncmp (path, "CONIN$", 6) == 0)
    {
      fd = open ("CONIN$", O_RDONLY);
      flags->action = ACTION_READ;
      return fd;
    }
#endif

1193
  rwflag = 0;
1194

1195
  switch (flags->action)
1196 1197
    {
    case ACTION_READ:
1198
      rwflag = O_RDONLY;
1199 1200 1201
      break;

    case ACTION_WRITE:
1202
      rwflag = O_WRONLY;
1203 1204 1205
      break;

    case ACTION_READWRITE:
1206 1207
    case ACTION_UNSPECIFIED:
      rwflag = O_RDWR;
1208 1209 1210
      break;

    default:
1211
      internal_error (&opp->common, "regular_file(): Bad action");
1212 1213
    }

1214
  switch (flags->status)
1215 1216
    {
    case STATUS_NEW:
1217
      crflag = O_CREAT | O_EXCL;
1218 1219
      break;

1220 1221
    case STATUS_OLD:		/* open will fail if the file does not exist*/
      crflag = 0;
1222 1223 1224 1225
      break;

    case STATUS_UNKNOWN:
    case STATUS_SCRATCH:
1226
      crflag = O_CREAT;
1227 1228 1229
      break;

    case STATUS_REPLACE:
1230
      crflag = O_CREAT | O_TRUNC;
1231 1232 1233
      break;

    default:
1234
      internal_error (&opp->common, "regular_file(): Bad status");
1235 1236
    }

1237
  /* rwflag |= O_LARGEFILE; */
1238

1239
#if defined(HAVE_CRLF) && defined(O_BINARY)
1240 1241 1242
  crflag |= O_BINARY;
#endif

1243
  mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
1244 1245
  fd = open (path, rwflag | crflag, mode);
  if (flags->action != ACTION_UNSPECIFIED)
1246
    return fd;
1247 1248

  if (fd >= 0)
1249
    {
1250 1251
      flags->action = ACTION_READWRITE;
      return fd;
1252
    }
1253
  if (errno != EACCES && errno != EROFS)
1254 1255 1256 1257 1258 1259 1260 1261
     return fd;

  /* retry for read-only access */
  rwflag = O_RDONLY;
  fd = open (path, rwflag | crflag, mode);
  if (fd >=0)
    {
      flags->action = ACTION_READ;
Jerry DeLisle committed
1262
      return fd;		/* success */
1263 1264 1265
    }
  
  if (errno != EACCES)
Jerry DeLisle committed
1266
    return fd;			/* failure */
1267 1268 1269 1270 1271 1272 1273

  /* retry for write-only access */
  rwflag = O_WRONLY;
  fd = open (path, rwflag | crflag, mode);
  if (fd >=0)
    {
      flags->action = ACTION_WRITE;
Jerry DeLisle committed
1274
      return fd;		/* success */
1275
    }
Jerry DeLisle committed
1276
  return fd;			/* failure */
1277 1278 1279 1280
}


/* open_external()-- Open an external file, unix specific version.
1281
 * Change flags->action if it is ACTION_UNSPECIFIED on entry.
1282 1283 1284
 * Returns NULL on operating system error. */

stream *
1285
open_external (st_parameter_open *opp, unit_flags *flags)
1286
{
1287
  int fd;
1288

1289 1290
  if (flags->status == STATUS_SCRATCH)
    {
1291
      fd = tempfile (opp);
1292
      if (flags->action == ACTION_UNSPECIFIED)
Jerry DeLisle committed
1293
	flags->action = ACTION_READWRITE;
1294 1295

#if HAVE_UNLINK_OPEN_FILE
1296
      /* We can unlink scratch files now and it will go away when closed. */
1297 1298
      if (fd >= 0)
	unlink (opp->file);
1299
#endif
1300 1301 1302
    }
  else
    {
1303 1304
      /* regular_file resets flags->action if it is ACTION_UNSPECIFIED and
       * if it succeeds */
1305
      fd = regular_file (opp, flags);
1306
    }
1307 1308 1309 1310 1311

  if (fd < 0)
    return NULL;
  fd = fix_fd (fd);

1312
  return fd_to_stream (fd);
1313 1314 1315 1316 1317 1318 1319 1320 1321
}


/* input_stream()-- Return a stream pointer to the default input stream.
 * Called on initialization. */

stream *
input_stream (void)
{
1322
  return fd_to_stream (STDIN_FILENO);
1323 1324 1325
}


1326
/* output_stream()-- Return a stream pointer to the default output stream.
1327 1328 1329 1330 1331
 * Called on initialization. */

stream *
output_stream (void)
{
1332 1333
  stream * s;

1334 1335 1336
#if defined(HAVE_CRLF) && defined(HAVE_SETMODE)
  setmode (STDOUT_FILENO, O_BINARY);
#endif
1337

1338
  s = fd_to_stream (STDOUT_FILENO);
1339
  return s;
1340 1341 1342
}


1343 1344 1345 1346 1347 1348
/* error_stream()-- Return a stream pointer to the default error stream.
 * Called on initialization. */

stream *
error_stream (void)
{
1349 1350
  stream * s;

1351 1352 1353
#if defined(HAVE_CRLF) && defined(HAVE_SETMODE)
  setmode (STDERR_FILENO, O_BINARY);
#endif
1354

1355
  s = fd_to_stream (STDERR_FILENO);
1356
  return s;
1357 1358
}

1359 1360 1361 1362 1363 1364

/* compare_file_filename()-- Given an open stream and a fortran string
 * that is a filename, figure out if the file is the same as the
 * filename. */

int
1365
compare_file_filename (gfc_unit *u, const char *name, int len)
1366
{
Janne Blomqvist committed
1367
  char path[min(PATH_MAX, len + 1)];
1368
  struct stat st;
1369
#ifdef HAVE_WORKING_STAT
1370
  unix_stream *s;
1371 1372 1373 1374
#else
# ifdef __MINGW32__
  uint64_t id1, id2;
# endif
1375
#endif
1376 1377 1378 1379 1380 1381 1382

  if (unpack_filename (path, name, len))
    return 0;			/* Can't be the same */

  /* If the filename doesn't exist, then there is no match with the
   * existing file. */

1383
  if (stat (path, &st) < 0)
1384 1385
    return 0;

1386
#ifdef HAVE_WORKING_STAT
1387 1388
  s = (unix_stream *) (u->s);
  return (st.st_dev == s->st_dev) && (st.st_ino == s->st_ino);
1389
#else
1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400

# ifdef __MINGW32__
  /* We try to match files by a unique ID.  On some filesystems (network
     fs and FAT), we can't generate this unique ID, and will simply compare
     filenames.  */
  id1 = id_from_path (path);
  id2 = id_from_fd (((unix_stream *) (u->s))->fd);
  if (id1 || id2)
    return (id1 == id2);
# endif

1401 1402 1403 1404
  if (len != u->file_len)
    return 0;
  return (memcmp(path, u->file, len) == 0);
#endif
1405 1406 1407
}


1408
#ifdef HAVE_WORKING_STAT
1409
# define FIND_FILE0_DECL struct stat *st
1410 1411
# define FIND_FILE0_ARGS st
#else
1412 1413
# define FIND_FILE0_DECL uint64_t id, const char *file, gfc_charlen_type file_len
# define FIND_FILE0_ARGS id, file, file_len
1414 1415
#endif

1416 1417
/* find_file0()-- Recursive work function for find_file() */

1418
static gfc_unit *
1419
find_file0 (gfc_unit *u, FIND_FILE0_DECL)
1420
{
1421
  gfc_unit *v;
1422 1423 1424
#if defined(__MINGW32__) && !HAVE_WORKING_STAT
  uint64_t id1;
#endif
1425 1426 1427 1428

  if (u == NULL)
    return NULL;

1429
#ifdef HAVE_WORKING_STAT
1430 1431 1432 1433 1434 1435
  if (u->s != NULL)
    {
      unix_stream *s = (unix_stream *) (u->s);
      if (st[0].st_dev == s->st_dev && st[0].st_ino == s->st_ino)
	return u;
    }
1436
#else
1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
# ifdef __MINGW32__ 
  if (u->s && ((id1 = id_from_fd (((unix_stream *) u->s)->fd)) || id1))
    {
      if (id == id1)
	return u;
    }
  else
# endif
    if (compare_string (u->file_len, u->file, file_len, file) == 0)
      return u;
1447
#endif
1448

1449
  v = find_file0 (u->left, FIND_FILE0_ARGS);
1450 1451 1452
  if (v != NULL)
    return v;

1453
  v = find_file0 (u->right, FIND_FILE0_ARGS);
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
  if (v != NULL)
    return v;

  return NULL;
}


/* find_file()-- Take the current filename and see if there is a unit
 * that has the file already open.  Returns a pointer to the unit if so. */

1464
gfc_unit *
1465
find_file (const char *file, gfc_charlen_type file_len)
1466
{
Janne Blomqvist committed
1467
  char path[min(PATH_MAX, file_len + 1)];
1468
  struct stat st[1];
1469
  gfc_unit *u;
1470 1471 1472
#if defined(__MINGW32__) && !HAVE_WORKING_STAT
  uint64_t id = 0ULL;
#endif
1473

1474
  if (unpack_filename (path, file, file_len))
1475 1476
    return NULL;

1477
  if (stat (path, &st[0]) < 0)
1478 1479
    return NULL;

1480
#if defined(__MINGW32__) && !HAVE_WORKING_STAT
1481
  id = id_from_path (path);
1482 1483
#endif

1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507
  __gthread_mutex_lock (&unit_lock);
retry:
  u = find_file0 (unit_root, FIND_FILE0_ARGS);
  if (u != NULL)
    {
      /* Fast path.  */
      if (! __gthread_mutex_trylock (&u->lock))
	{
	  /* assert (u->closed == 0); */
	  __gthread_mutex_unlock (&unit_lock);
	  return u;
	}

      inc_waiting_locked (u);
    }
  __gthread_mutex_unlock (&unit_lock);
  if (u != NULL)
    {
      __gthread_mutex_lock (&u->lock);
      if (u->closed)
	{
	  __gthread_mutex_lock (&unit_lock);
	  __gthread_mutex_unlock (&u->lock);
	  if (predec_waiting_locked (u) == 0)
Janne Blomqvist committed
1508
	    free (u);
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
	  goto retry;
	}

      dec_waiting_unlocked (u);
    }
  return u;
}

static gfc_unit *
flush_all_units_1 (gfc_unit *u, int min_unit)
{
  while (u != NULL)
    {
      if (u->unit_number > min_unit)
	{
	  gfc_unit *r = flush_all_units_1 (u->left, min_unit);
	  if (r != NULL)
	    return r;
	}
      if (u->unit_number >= min_unit)
	{
	  if (__gthread_mutex_trylock (&u->lock))
	    return u;
	  if (u->s)
Jerry DeLisle committed
1533
	    sflush (u->s);
1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562
	  __gthread_mutex_unlock (&u->lock);
	}
      u = u->right;
    }
  return NULL;
}

void
flush_all_units (void)
{
  gfc_unit *u;
  int min_unit = 0;

  __gthread_mutex_lock (&unit_lock);
  do
    {
      u = flush_all_units_1 (unit_root, min_unit);
      if (u != NULL)
	inc_waiting_locked (u);
      __gthread_mutex_unlock (&unit_lock);
      if (u == NULL)
	return;

      __gthread_mutex_lock (&u->lock);

      min_unit = u->unit_number + 1;

      if (u->closed == 0)
	{
Jerry DeLisle committed
1563
	  sflush (u->s);
1564 1565 1566 1567 1568 1569 1570 1571 1572
	  __gthread_mutex_lock (&unit_lock);
	  __gthread_mutex_unlock (&u->lock);
	  (void) predec_waiting_locked (u);
	}
      else
	{
	  __gthread_mutex_lock (&unit_lock);
	  __gthread_mutex_unlock (&u->lock);
	  if (predec_waiting_locked (u) == 0)
Janne Blomqvist committed
1573
	    free (u);
1574 1575 1576
	}
    }
  while (1);
1577 1578 1579 1580 1581 1582 1583
}


/* delete_file()-- Given a unit structure, delete the file associated
 * with the unit.  Returns nonzero if something went wrong. */

int
1584
delete_file (gfc_unit * u)
1585
{
Janne Blomqvist committed
1586 1587
  char path[min(PATH_MAX, u->file_len + 1)];
  int err = unpack_filename (path, u->file, u->file_len);
1588

Janne Blomqvist committed
1589
  if (err)
1590
    {				/* Shouldn't be possible */
Janne Blomqvist committed
1591
      errno = err;
1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
      return 1;
    }

  return unlink (path);
}


/* file_exists()-- Returns nonzero if the current filename exists on
 * the system */

int
1603
file_exists (const char *file, gfc_charlen_type file_len)
1604
{
Janne Blomqvist committed
1605
  char path[min(PATH_MAX, file_len + 1)];
1606

1607
  if (unpack_filename (path, file, file_len))
1608 1609
    return 0;

1610
  return !(access (path, F_OK));
1611 1612 1613
}


1614 1615 1616 1617 1618
/* file_size()-- Returns the size of the file.  */

GFC_IO_INT
file_size (const char *file, gfc_charlen_type file_len)
{
Janne Blomqvist committed
1619
  char path[min(PATH_MAX, file_len + 1)];
1620
  struct stat statbuf;
1621 1622 1623 1624 1625 1626 1627 1628 1629

  if (unpack_filename (path, file, file_len))
    return -1;

  if (stat (path, &statbuf) < 0)
    return -1;

  return (GFC_IO_INT) statbuf.st_size;
}
1630

1631
static const char yes[] = "YES", no[] = "NO", unknown[] = "UNKNOWN";
1632 1633 1634 1635 1636 1637 1638 1639

/* inquire_sequential()-- Given a fortran string, determine if the
 * file is suitable for sequential access.  Returns a C-style
 * string. */

const char *
inquire_sequential (const char *string, int len)
{
Janne Blomqvist committed
1640
  char path[min(PATH_MAX, len + 1)];
1641
  struct stat statbuf;
1642 1643 1644 1645 1646 1647 1648

  if (string == NULL ||
      unpack_filename (path, string, len) || stat (path, &statbuf) < 0)
    return unknown;

  if (S_ISREG (statbuf.st_mode) ||
      S_ISCHR (statbuf.st_mode) || S_ISFIFO (statbuf.st_mode))
1649
    return unknown;
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663

  if (S_ISDIR (statbuf.st_mode) || S_ISBLK (statbuf.st_mode))
    return no;

  return unknown;
}


/* inquire_direct()-- Given a fortran string, determine if the file is
 * suitable for direct access.  Returns a C-style string. */

const char *
inquire_direct (const char *string, int len)
{
Janne Blomqvist committed
1664
  char path[min(PATH_MAX, len + 1)];
1665
  struct stat statbuf;
1666 1667 1668 1669 1670 1671

  if (string == NULL ||
      unpack_filename (path, string, len) || stat (path, &statbuf) < 0)
    return unknown;

  if (S_ISREG (statbuf.st_mode) || S_ISBLK (statbuf.st_mode))
1672
    return unknown;
1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687

  if (S_ISDIR (statbuf.st_mode) ||
      S_ISCHR (statbuf.st_mode) || S_ISFIFO (statbuf.st_mode))
    return no;

  return unknown;
}


/* inquire_formatted()-- Given a fortran string, determine if the file
 * is suitable for formatted form.  Returns a C-style string. */

const char *
inquire_formatted (const char *string, int len)
{
Janne Blomqvist committed
1688
  char path[min(PATH_MAX, len + 1)];
1689
  struct stat statbuf;
1690 1691 1692 1693 1694 1695 1696 1697

  if (string == NULL ||
      unpack_filename (path, string, len) || stat (path, &statbuf) < 0)
    return unknown;

  if (S_ISREG (statbuf.st_mode) ||
      S_ISBLK (statbuf.st_mode) ||
      S_ISCHR (statbuf.st_mode) || S_ISFIFO (statbuf.st_mode))
1698
    return unknown;
1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722

  if (S_ISDIR (statbuf.st_mode))
    return no;

  return unknown;
}


/* inquire_unformatted()-- Given a fortran string, determine if the file
 * is suitable for unformatted form.  Returns a C-style string. */

const char *
inquire_unformatted (const char *string, int len)
{
  return inquire_formatted (string, len);
}


/* inquire_access()-- Given a fortran string, determine if the file is
 * suitable for access. */

static const char *
inquire_access (const char *string, int len, int mode)
{
Janne Blomqvist committed
1723
  char path[min(PATH_MAX, len + 1)];
1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762

  if (string == NULL || unpack_filename (path, string, len) ||
      access (path, mode) < 0)
    return no;

  return yes;
}


/* inquire_read()-- Given a fortran string, determine if the file is
 * suitable for READ access. */

const char *
inquire_read (const char *string, int len)
{
  return inquire_access (string, len, R_OK);
}


/* inquire_write()-- Given a fortran string, determine if the file is
 * suitable for READ access. */

const char *
inquire_write (const char *string, int len)
{
  return inquire_access (string, len, W_OK);
}


/* inquire_readwrite()-- Given a fortran string, determine if the file is
 * suitable for read and write access. */

const char *
inquire_readwrite (const char *string, int len)
{
  return inquire_access (string, len, R_OK | W_OK);
}


1763 1764 1765 1766 1767 1768
int
stream_isatty (stream *s)
{
  return isatty (((unix_stream *) s)->fd);
}

1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786
int
stream_ttyname (stream *s  __attribute__ ((unused)),
		char * buf  __attribute__ ((unused)),
		size_t buflen  __attribute__ ((unused)))
{
#ifdef HAVE_TTYNAME_R
  return ttyname_r (((unix_stream *) s)->fd, buf, buflen);
#elif defined HAVE_TTYNAME
  char *p;
  size_t plen;
  p = ttyname (((unix_stream *) s)->fd);
  if (!p)
    return errno;
  plen = strlen (p);
  if (buflen < plen)
    plen = buflen;
  memcpy (buf, p, plen);
  return 0;
1787
#else
1788
  return ENOSYS;
1789
#endif
1790 1791
}

1792

1793

1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814

/* How files are stored:  This is an operating-system specific issue,
   and therefore belongs here.  There are three cases to consider.

   Direct Access:
      Records are written as block of bytes corresponding to the record
      length of the file.  This goes for both formatted and unformatted
      records.  Positioning is done explicitly for each data transfer,
      so positioning is not much of an issue.

   Sequential Formatted:
      Records are separated by newline characters.  The newline character
      is prohibited from appearing in a string.  If it does, this will be
      messed up on the next read.  End of file is also the end of a record.

   Sequential Unformatted:
      In this case, we are merely copying bytes to and from main storage,
      yet we need to keep track of varying record lengths.  We adopt
      the solution used by f2c.  Each record contains a pair of length
      markers:

Jerry DeLisle committed
1815 1816 1817
	Length of record n in bytes
	Data of record n
	Length of record n in bytes
1818

Jerry DeLisle committed
1819 1820 1821
	Length of record n+1 in bytes
	Data of record n+1
	Length of record n+1 in bytes
1822 1823 1824 1825 1826 1827 1828 1829

     The length is stored at the end of a record to allow backspacing to the
     previous record.  Between data transfer statements, the file pointer
     is left pointing to the first length of the current record.

     ENDFILE records are never explicitly stored.

*/