~ubuntu-branches/ubuntu/precise/eglibc/precise

« back to all changes in this revision

Viewing changes to ports/sysdeps/unix/sysv/linux/generic/wordsize-32/overflow.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-10-04 17:48:26 UTC
  • mfrom: (216.1.23 oneiric)
  • Revision ID: package-import@ubuntu.com-20111004174826-2cyb9ewn3ucymlsx
Tags: 2.13-20ubuntu5
libc6-dev: Don't break the current {gnat,gcj}-4.4-base versons. LP: #853688.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Overflow tests for stat, statfs, and lseek functions.
2
 
   Copyright (C) 2011 Free Software Foundation, Inc.
3
 
   This file is part of the GNU C Library.
4
 
   Contributed by Chris Metcalf <cmetcalf@tilera.com>, 2011.
5
 
 
6
 
   The GNU C Library is free software; you can redistribute it and/or
7
 
   modify it under the terms of the GNU Lesser General Public
8
 
   License as published by the Free Software Foundation; either
9
 
   version 2.1 of the License, or (at your option) any later version.
10
 
 
11
 
   The GNU C Library is distributed in the hope that it will be useful,
12
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
   Lesser General Public License for more details.
15
 
 
16
 
   You should have received a copy of the GNU Lesser General Public
17
 
   License along with the GNU C Library; if not, write to the Free
18
 
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19
 
   02111-1307 USA.  */
20
 
 
21
 
#include <sys/stat.h>
22
 
#include <sys/statfs.h>
23
 
 
24
 
/* Test for overflows of structures where we ask the kernel to fill them
25
 
   in with standard 64-bit syscalls but return them through APIs that
26
 
   only expose the low 32 bits of some fields.  */
27
 
 
28
 
static inline off_t lseek_overflow (loff_t res)
29
 
{
30
 
  off_t retval = (off_t) res;
31
 
  if (retval == res)
32
 
    return retval;
33
 
 
34
 
  __set_errno (EOVERFLOW);
35
 
  return (off_t) -1;
36
 
}
37
 
 
38
 
static inline int stat_overflow (struct stat *buf)
39
 
{
40
 
  if (buf->__st_ino_pad == 0 && buf->__st_size_pad == 0 &&
41
 
      buf->__st_blocks_pad == 0)
42
 
    return 0;
43
 
 
44
 
  __set_errno (EOVERFLOW);
45
 
  return -1;
46
 
}
47
 
 
48
 
/* Note that f_files and f_ffree may validly be a sign-extended -1.  */
49
 
static inline int statfs_overflow (struct statfs *buf)
50
 
{
51
 
  if (buf->__f_blocks_pad == 0 && buf->__f_bfree_pad == 0 &&
52
 
      buf->__f_bavail_pad == 0 &&
53
 
      (buf->__f_files_pad == 0 ||
54
 
       (buf->f_files == -1U && buf->__f_files_pad == -1)) &&
55
 
      (buf->__f_ffree_pad == 0 ||
56
 
       (buf->f_ffree == -1U && buf->__f_ffree_pad == -1)))
57
 
    return 0;
58
 
 
59
 
  __set_errno (EOVERFLOW);
60
 
  return -1;
61
 
}