OSDN Git Service

ldso: unify and cleanup _dl_mmap code
[uclinux-h8/uClibc.git] / ldso / include / dl-syscall.h
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Copyright (C) 2000-2005 by Erik Andersen <andersen@codepoet.org>
4  *
5  * GNU Lesser General Public License version 2.1 or later.
6  */
7
8 #ifndef _LD_SYSCALL_H_
9 #define _LD_SYSCALL_H_
10
11 /* Pull in the arch specific syscall implementation */
12 #include <dl-syscalls.h>
13 /*  For MAP_ANONYMOUS -- differs between platforms */
14 #define _SYS_MMAN_H 1
15 #include <bits/mman.h>
16 /* Pull in whatever this particular arch's kernel thinks the kernel version of
17  * struct stat should look like.  It turns out that each arch has a different
18  * opinion on the subject, and different kernel revs use different names... */
19 #if defined(__sparc_v9__) && (__WORDSIZE == 64)
20 #define kernel_stat64 stat
21 #else
22 #define kernel_stat stat
23 #endif
24 #include <bits/kernel_stat.h>
25 #include <bits/kernel_types.h>
26
27 /* _dl_open() parameters */
28 #define O_RDONLY             00
29 #define O_WRONLY             01
30 #define O_RDWR               02
31 #define O_CREAT            0100
32
33 /* Encoding of the file mode.  */
34 #define S_IFMT          0170000 /* These bits determine file type.  */
35
36 /* File types.  */
37 #define S_IFDIR         0040000 /* Directory.  */
38 #define S_IFCHR         0020000 /* Character device.  */
39 #define S_IFBLK         0060000 /* Block device.  */
40 #define S_IFREG         0100000 /* Regular file.  */
41 #define S_IFIFO         0010000 /* FIFO.  */
42 #define S_IFLNK         0120000 /* Symbolic link.  */
43 #define S_IFSOCK        0140000 /* Socket.  */
44
45 /* Protection bits.  */
46 #define S_ISUID         04000   /* Set user ID on execution.  */
47 #define S_ISGID         02000   /* Set group ID on execution.  */
48 #define S_ISVTX         01000   /* Save swapped text after use (sticky).  */
49 #define S_IREAD         0400    /* Read by owner.  */
50 #define S_IWRITE        0200    /* Write by owner.  */
51 #define S_IEXEC         0100    /* Execute by owner.  */
52
53
54
55 /* Here are the definitions for some syscalls that are used
56    by the dynamic linker.  The idea is that we want to be able
57    to call these before the errno symbol is dynamicly linked, so
58    we use our own version here.  Note that we cannot assume any
59    dynamic linking at all, so we cannot return any error codes.
60    We just punt if there is an error. */
61 #define __NR__dl_exit __NR_exit
62 static __always_inline _syscall1(void, _dl_exit, int, status);
63
64 #define __NR__dl_close __NR_close
65 static __always_inline _syscall1(int, _dl_close, int, fd);
66
67 #define __NR__dl_open __NR_open
68 static __always_inline _syscall3(int, _dl_open, const char *, fn, int, flags,
69                         __kernel_mode_t, mode);
70
71 #define __NR__dl_write __NR_write
72 static __always_inline _syscall3(unsigned long, _dl_write, int, fd,
73                         const void *, buf, unsigned long, count);
74
75 #define __NR__dl_read __NR_read
76 static __always_inline _syscall3(unsigned long, _dl_read, int, fd,
77                         const void *, buf, unsigned long, count);
78
79 #define __NR__dl_mprotect __NR_mprotect
80 static __always_inline _syscall3(int, _dl_mprotect, const void *, addr,
81                         unsigned long, len, int, prot);
82
83 #define __NR__dl_stat __NR_stat
84 static __always_inline _syscall2(int, _dl_stat, const char *, file_name,
85                         struct stat *, buf);
86
87 #define __NR__dl_fstat __NR_fstat
88 static __always_inline _syscall2(int, _dl_fstat, int, fd, struct stat *, buf);
89
90 #define __NR__dl_munmap __NR_munmap
91 static __always_inline _syscall2(int, _dl_munmap, void *, start, unsigned long, length);
92
93 #ifdef __NR_getxuid
94 # define __NR_getuid __NR_getxuid
95 #endif
96 #define __NR__dl_getuid __NR_getuid
97 static __always_inline _syscall0(uid_t, _dl_getuid);
98
99 #ifndef __NR_geteuid
100 # define __NR_geteuid __NR_getuid
101 #endif
102 #define __NR__dl_geteuid __NR_geteuid
103 static __always_inline _syscall0(uid_t, _dl_geteuid);
104
105 #ifdef __NR_getxgid
106 # define __NR_getgid __NR_getxgid
107 #endif
108 #define __NR__dl_getgid __NR_getgid
109 static __always_inline _syscall0(gid_t, _dl_getgid);
110
111 #ifndef __NR_getegid
112 # define __NR_getegid __NR_getgid
113 #endif
114 #define __NR__dl_getegid __NR_getegid
115 static __always_inline _syscall0(gid_t, _dl_getegid);
116
117 #ifdef __NR_getxpid
118 # define __NR_getpid __NR_getxpid
119 #endif
120 #define __NR__dl_getpid __NR_getpid
121 static __always_inline _syscall0(gid_t, _dl_getpid);
122
123 #define __NR__dl_readlink __NR_readlink
124 static __always_inline _syscall3(int, _dl_readlink, const char *, path, char *, buf,
125                         size_t, bufsiz);
126
127 #ifdef __UCLIBC_HAS_SSP__
128 # include <sys/time.h>
129 # define __NR__dl_gettimeofday __NR_gettimeofday
130 static __always_inline _syscall2(int, _dl_gettimeofday, struct timeval *, tv,
131 # ifdef __USE_BSD
132                         struct timezone *, tz);
133 # else
134                         void *, tz);
135 # endif
136 #endif
137
138 /* Some architectures always use 12 as page shift for mmap2() eventhough the
139  * real PAGE_SHIFT != 12.  Other architectures use the same value as
140  * PAGE_SHIFT...
141  */
142 #ifndef MMAP2_PAGE_SHIFT
143 # define MMAP2_PAGE_SHIFT 12
144 #endif
145
146 #define MAP_FAILED ((void *) -1)
147 #define _dl_mmap_check_error(X) (((void *)X) == MAP_FAILED)
148
149 static __always_inline
150 void *_dl_mmap(void *addr, unsigned long size, int prot,
151                int flags, int fd, unsigned long offset)
152 {
153 #if defined(__UCLIBC_MMAP_HAS_6_ARGS__) && defined(__NR_mmap)
154         /* first try mmap(), syscall6() style */
155         return (void *)INLINE_SYSCALL(mmap, 6, addr, size, prot, flags, fd, offset);
156
157 #elif defined(__NR_mmap2) && !defined (__mcoldfire__)
158         /* then try mmap2() */
159         unsigned long shifted;
160
161         if (offset & ((1 << MMAP2_PAGE_SHIFT) - 1))
162                 return MAP_FAILED;
163
164         /* gcc needs help with putting things onto the stack */
165         shifted = offset >> MMAP2_PAGE_SHIFT;
166         return (void *)INLINE_SYSCALL(mmap2, 6, addr, size, prot, flags, fd, shifted);
167
168 #elif defined(__NR_mmap)
169         /* finally, fall back to mmap(), syscall1() style */
170         unsigned long buffer[6];
171         buffer[0] = (unsigned long) addr;
172         buffer[1] = (unsigned long) size;
173         buffer[2] = (unsigned long) prot;
174         buffer[3] = (unsigned long) flags;
175         buffer[4] = (unsigned long) fd;
176         buffer[5] = (unsigned long) offset;
177         return (void *)INLINE_SYSCALL(mmap, 1, buffer);
178 #else
179 # error "Your architecture doesn't seem to provide mmap() !?"
180 #endif
181 }
182
183 #endif /* _LD_SYSCALL_H_ */