OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libc/] [sys/] [linux/] [pathconf.c] - Diff between revs 207 and 345

Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 345
/* Linux specific extensions to pathconf.
/* Linux specific extensions to pathconf.
   Copyright (C) 1991,95,96,98,99,2000,2001 Free Software Foundation, Inc.
   Copyright (C) 1991,95,96,98,99,2000,2001 Free Software Foundation, Inc.
   This file is part of the GNU C Library.
   This file is part of the GNU C Library.
 
 
   The GNU C Library is free software; you can redistribute it and/or
   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.
   version 2.1 of the License, or (at your option) any later version.
 
 
   The GNU C Library is distributed in the hope that it will be useful,
   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.
   Lesser General Public License for more details.
 
 
   You should have received a copy of the GNU Lesser General Public
   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, write to the Free
   License along with the GNU C Library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA.  */
   02111-1307 USA.  */
 
 
/* Modified for newlib July 19, 2002 - Jeff Johnston */
/* Modified for newlib July 19, 2002 - Jeff Johnston */
 
 
#include <errno.h>
#include <errno.h>
#include <stddef.h>
#include <stddef.h>
#include <unistd.h>
#include <unistd.h>
#include <limits.h>
#include <limits.h>
#include <fcntl.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/stat.h>
#include <sys/statfs.h>
#include <sys/statfs.h>
#include <sys/statvfs.h>
#include <sys/statvfs.h>
#include <machine/weakalias.h>
#include <machine/weakalias.h>
#include "linux_fsinfo.h"
#include "linux_fsinfo.h"
 
 
/* The Linux kernel header mentioned this as a kind of generic value.  */
/* The Linux kernel header mentioned this as a kind of generic value.  */
#define LINUX_LINK_MAX  127
#define LINUX_LINK_MAX  127
 
 
static long int posix_pathconf (const char *path, int name);
static long int posix_pathconf (const char *path, int name);
 
 
 
 
/* Get file-specific information about descriptor FD.  */
/* Get file-specific information about descriptor FD.  */
long int
long int
__pathconf (path, name)
__pathconf (path, name)
     const char *path;
     const char *path;
     int name;
     int name;
{
{
  if (name == _PC_LINK_MAX)
  if (name == _PC_LINK_MAX)
    {
    {
      struct statfs fsbuf;
      struct statfs fsbuf;
 
 
      /* Determine the filesystem type.  */
      /* Determine the filesystem type.  */
      if (__statfs (path, &fsbuf) < 0)
      if (__statfs (path, &fsbuf) < 0)
        {
        {
          if (errno == ENOSYS)
          if (errno == ENOSYS)
            /* not possible, return the default value.  */
            /* not possible, return the default value.  */
            return LINUX_LINK_MAX;
            return LINUX_LINK_MAX;
 
 
          /* Some error occured.  */
          /* Some error occured.  */
          return -1;
          return -1;
        }
        }
 
 
      switch (fsbuf.f_type)
      switch (fsbuf.f_type)
        {
        {
        case EXT2_SUPER_MAGIC:
        case EXT2_SUPER_MAGIC:
          return EXT2_LINK_MAX;
          return EXT2_LINK_MAX;
 
 
        case MINIX_SUPER_MAGIC:
        case MINIX_SUPER_MAGIC:
        case MINIX_SUPER_MAGIC2:
        case MINIX_SUPER_MAGIC2:
          return MINIX_LINK_MAX;
          return MINIX_LINK_MAX;
 
 
        case MINIX2_SUPER_MAGIC:
        case MINIX2_SUPER_MAGIC:
        case MINIX2_SUPER_MAGIC2:
        case MINIX2_SUPER_MAGIC2:
          return MINIX2_LINK_MAX;
          return MINIX2_LINK_MAX;
 
 
        case XENIX_SUPER_MAGIC:
        case XENIX_SUPER_MAGIC:
          return XENIX_LINK_MAX;
          return XENIX_LINK_MAX;
 
 
        case SYSV4_SUPER_MAGIC:
        case SYSV4_SUPER_MAGIC:
        case SYSV2_SUPER_MAGIC:
        case SYSV2_SUPER_MAGIC:
          return SYSV_LINK_MAX;
          return SYSV_LINK_MAX;
 
 
        case COH_SUPER_MAGIC:
        case COH_SUPER_MAGIC:
          return COH_LINK_MAX;
          return COH_LINK_MAX;
 
 
        case UFS_MAGIC:
        case UFS_MAGIC:
        case UFS_CIGAM:
        case UFS_CIGAM:
          return UFS_LINK_MAX;
          return UFS_LINK_MAX;
 
 
        case REISERFS_SUPER_MAGIC:
        case REISERFS_SUPER_MAGIC:
          return REISERFS_LINK_MAX;
          return REISERFS_LINK_MAX;
 
 
        default:
        default:
          return LINUX_LINK_MAX;
          return LINUX_LINK_MAX;
        }
        }
    }
    }
 
 
  return posix_pathconf (path, name);
  return posix_pathconf (path, name);
}
}
 
 
/* Get file-specific information about PATH.  */
/* Get file-specific information about PATH.  */
static long int
static long int
posix_pathconf (const char *path, int name)
posix_pathconf (const char *path, int name)
{
{
  if (path[0] == '\0')
  if (path[0] == '\0')
    {
    {
      __set_errno (ENOENT);
      __set_errno (ENOENT);
      return -1;
      return -1;
    }
    }
 
 
  switch (name)
  switch (name)
    {
    {
    default:
    default:
      __set_errno (EINVAL);
      __set_errno (EINVAL);
      return -1;
      return -1;
 
 
    case _PC_LINK_MAX:
    case _PC_LINK_MAX:
#ifdef  LINK_MAX
#ifdef  LINK_MAX
      return LINK_MAX;
      return LINK_MAX;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_MAX_CANON:
    case _PC_MAX_CANON:
#ifdef  MAX_CANON
#ifdef  MAX_CANON
      return MAX_CANON;
      return MAX_CANON;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_MAX_INPUT:
    case _PC_MAX_INPUT:
#ifdef  MAX_INPUT
#ifdef  MAX_INPUT
      return MAX_INPUT;
      return MAX_INPUT;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_NAME_MAX:
    case _PC_NAME_MAX:
#ifdef  NAME_MAX
#ifdef  NAME_MAX
      {
      {
        struct statfs buf;
        struct statfs buf;
        int save_errno = errno;
        int save_errno = errno;
 
 
        if (__statfs (path, &buf) < 0)
        if (__statfs (path, &buf) < 0)
          {
          {
            if (errno == ENOSYS)
            if (errno == ENOSYS)
              {
              {
                errno = save_errno;
                errno = save_errno;
                return NAME_MAX;
                return NAME_MAX;
              }
              }
            return -1;
            return -1;
          }
          }
        else
        else
          {
          {
#ifdef _STATFS_F_NAMELEN
#ifdef _STATFS_F_NAMELEN
            return buf.f_namelen;
            return buf.f_namelen;
#else
#else
# ifdef _STATFS_F_NAME_MAX
# ifdef _STATFS_F_NAME_MAX
            return buf.f_name_max;
            return buf.f_name_max;
# else
# else
            return NAME_MAX;
            return NAME_MAX;
# endif
# endif
#endif
#endif
          }
          }
      }
      }
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_PATH_MAX:
    case _PC_PATH_MAX:
#ifdef  PATH_MAX
#ifdef  PATH_MAX
      return PATH_MAX;
      return PATH_MAX;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_PIPE_BUF:
    case _PC_PIPE_BUF:
#ifdef  PIPE_BUF
#ifdef  PIPE_BUF
      return PIPE_BUF;
      return PIPE_BUF;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_CHOWN_RESTRICTED:
    case _PC_CHOWN_RESTRICTED:
#ifdef  _POSIX_CHOWN_RESTRICTED
#ifdef  _POSIX_CHOWN_RESTRICTED
      return _POSIX_CHOWN_RESTRICTED;
      return _POSIX_CHOWN_RESTRICTED;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_NO_TRUNC:
    case _PC_NO_TRUNC:
#ifdef  _POSIX_NO_TRUNC
#ifdef  _POSIX_NO_TRUNC
      return _POSIX_NO_TRUNC;
      return _POSIX_NO_TRUNC;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_VDISABLE:
    case _PC_VDISABLE:
#ifdef  _POSIX_VDISABLE
#ifdef  _POSIX_VDISABLE
      return _POSIX_VDISABLE;
      return _POSIX_VDISABLE;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_SYNC_IO:
    case _PC_SYNC_IO:
#ifdef  _POSIX_SYNC_IO
#ifdef  _POSIX_SYNC_IO
      return _POSIX_SYNC_IO;
      return _POSIX_SYNC_IO;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_ASYNC_IO:
    case _PC_ASYNC_IO:
#ifdef  _POSIX_ASYNC_IO
#ifdef  _POSIX_ASYNC_IO
      {
      {
        /* AIO is only allowed on regular files and block devices.  */
        /* AIO is only allowed on regular files and block devices.  */
        struct stat64 st;
        struct stat64 st;
 
 
        if (stat64 (path, &st) < 0
        if (stat64 (path, &st) < 0
            || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
            || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
          return -1;
          return -1;
        else
        else
          return 1;
          return 1;
      }
      }
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_PRIO_IO:
    case _PC_PRIO_IO:
#ifdef  _POSIX_PRIO_IO
#ifdef  _POSIX_PRIO_IO
      return _POSIX_PRIO_IO;
      return _POSIX_PRIO_IO;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_SOCK_MAXBUF:
    case _PC_SOCK_MAXBUF:
#ifdef  SOCK_MAXBUF
#ifdef  SOCK_MAXBUF
      return SOCK_MAXBUF;
      return SOCK_MAXBUF;
#else
#else
      return -1;
      return -1;
#endif
#endif
 
 
    case _PC_FILESIZEBITS:
    case _PC_FILESIZEBITS:
#ifdef FILESIZEBITS
#ifdef FILESIZEBITS
      return FILESIZEBITS;
      return FILESIZEBITS;
#else
#else
      /* We let platforms with larger file sizes overwrite this value.  */
      /* We let platforms with larger file sizes overwrite this value.  */
      return 32;
      return 32;
#endif
#endif
 
 
    case _PC_REC_INCR_XFER_SIZE:
    case _PC_REC_INCR_XFER_SIZE:
      /* XXX It is not entirely clear what the limit is supposed to do.
      /* XXX It is not entirely clear what the limit is supposed to do.
         What is incremented?  */
         What is incremented?  */
      return -1;
      return -1;
 
 
    case _PC_REC_MAX_XFER_SIZE:
    case _PC_REC_MAX_XFER_SIZE:
      /* XXX It is not entirely clear what the limit is supposed to do.
      /* XXX It is not entirely clear what the limit is supposed to do.
         In general there is no top limit of the number of bytes which
         In general there is no top limit of the number of bytes which
         case be transported at once.  */
         case be transported at once.  */
      return -1;
      return -1;
 
 
    case _PC_REC_MIN_XFER_SIZE:
    case _PC_REC_MIN_XFER_SIZE:
      {
      {
        /* XXX It is not entirely clear what the limit is supposed to do.
        /* XXX It is not entirely clear what the limit is supposed to do.
           I assume this is the block size of the filesystem.  */
           I assume this is the block size of the filesystem.  */
        struct statvfs64 sv;
        struct statvfs64 sv;
 
 
        if (__statvfs64 (path, &sv) < 0)
        if (__statvfs64 (path, &sv) < 0)
          return -1;
          return -1;
        return sv.f_bsize;
        return sv.f_bsize;
      }
      }
 
 
    case _PC_REC_XFER_ALIGN:
    case _PC_REC_XFER_ALIGN:
      {
      {
        /* XXX It is not entirely clear what the limit is supposed to do.
        /* XXX It is not entirely clear what the limit is supposed to do.
           I assume that the number should reflect the minimal block
           I assume that the number should reflect the minimal block
           alignment.  */
           alignment.  */
        struct statvfs64 sv;
        struct statvfs64 sv;
 
 
        if (__statvfs64 (path, &sv) < 0)
        if (__statvfs64 (path, &sv) < 0)
          return -1;
          return -1;
        return sv.f_frsize;
        return sv.f_frsize;
      }
      }
 
 
    case _PC_ALLOC_SIZE_MIN:
    case _PC_ALLOC_SIZE_MIN:
      {
      {
        /* XXX It is not entirely clear what the limit is supposed to do.
        /* XXX It is not entirely clear what the limit is supposed to do.
           I assume that the number should reflect the minimal block
           I assume that the number should reflect the minimal block
           alignment.  */
           alignment.  */
        struct statvfs64 sv;
        struct statvfs64 sv;
 
 
        if (__statvfs64 (path, &sv) < 0)
        if (__statvfs64 (path, &sv) < 0)
          return -1;
          return -1;
        return sv.f_frsize;
        return sv.f_frsize;
      }
      }
 
 
    case _PC_SYMLINK_MAX:
    case _PC_SYMLINK_MAX:
      /* In general there are no limits.  If a system has one it should
      /* In general there are no limits.  If a system has one it should
         overwrite this case.  */
         overwrite this case.  */
      return -1;
      return -1;
    }
    }
}
}
 
 
weak_alias (__pathconf, pathconf)
weak_alias (__pathconf, pathconf)
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.