]> git.proxmox.com Git - qemu.git/blob - osdep.c
We only support eventfd under POSIX, move qemu_eventfd() to os-posix.c
[qemu.git] / osdep.c
1 /*
2 * QEMU low level functions
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <stdarg.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
34
35 #if defined(CONFIG_MADVISE) || defined(CONFIG_POSIX_MADVISE)
36 #include <sys/mman.h>
37 #endif
38
39 #ifdef CONFIG_SOLARIS
40 #include <sys/types.h>
41 #include <sys/statvfs.h>
42 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
43 discussion about Solaris header problems */
44 extern int madvise(caddr_t, size_t, int);
45 #endif
46
47 #ifdef _WIN32
48 #include <windows.h>
49 #elif defined(CONFIG_BSD)
50 #include <stdlib.h>
51 #else
52 #include <malloc.h>
53 #endif
54
55 #include "qemu-common.h"
56 #include "trace.h"
57 #include "sysemu.h"
58 #include "qemu_socket.h"
59
60 int qemu_madvise(void *addr, size_t len, int advice)
61 {
62 if (advice == QEMU_MADV_INVALID) {
63 errno = EINVAL;
64 return -1;
65 }
66 #if defined(CONFIG_MADVISE)
67 return madvise(addr, len, advice);
68 #elif defined(CONFIG_POSIX_MADVISE)
69 return posix_madvise(addr, len, advice);
70 #else
71 errno = EINVAL;
72 return -1;
73 #endif
74 }
75
76 int qemu_create_pidfile(const char *filename)
77 {
78 char buffer[128];
79 int len;
80 #ifndef _WIN32
81 int fd;
82
83 fd = qemu_open(filename, O_RDWR | O_CREAT, 0600);
84 if (fd == -1)
85 return -1;
86
87 if (lockf(fd, F_TLOCK, 0) == -1)
88 return -1;
89
90 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
91 if (write(fd, buffer, len) != len)
92 return -1;
93 #else
94 HANDLE file;
95 OVERLAPPED overlap;
96 BOOL ret;
97 memset(&overlap, 0, sizeof(overlap));
98
99 file = CreateFile(filename, GENERIC_WRITE, FILE_SHARE_READ, NULL,
100 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
101
102 if (file == INVALID_HANDLE_VALUE)
103 return -1;
104
105 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
106 ret = WriteFileEx(file, (LPCVOID)buffer, (DWORD)len,
107 &overlap, NULL);
108 if (ret == 0)
109 return -1;
110 #endif
111 return 0;
112 }
113
114 #ifdef _WIN32
115
116 /* mingw32 needs ffs for compilations without optimization. */
117 int ffs(int i)
118 {
119 /* Use gcc's builtin ffs. */
120 return __builtin_ffs(i);
121 }
122
123 /* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
124 #define _W32_FT_OFFSET (116444736000000000ULL)
125
126 int qemu_gettimeofday(qemu_timeval *tp)
127 {
128 union {
129 unsigned long long ns100; /*time since 1 Jan 1601 in 100ns units */
130 FILETIME ft;
131 } _now;
132
133 if(tp)
134 {
135 GetSystemTimeAsFileTime (&_now.ft);
136 tp->tv_usec=(long)((_now.ns100 / 10ULL) % 1000000ULL );
137 tp->tv_sec= (long)((_now.ns100 - _W32_FT_OFFSET) / 10000000ULL);
138 }
139 /* Always return 0 as per Open Group Base Specifications Issue 6.
140 Do not set errno on error. */
141 return 0;
142 }
143 #endif /* _WIN32 */
144
145
146 /*
147 * Opens a file with FD_CLOEXEC set
148 */
149 int qemu_open(const char *name, int flags, ...)
150 {
151 int ret;
152 int mode = 0;
153
154 if (flags & O_CREAT) {
155 va_list ap;
156
157 va_start(ap, flags);
158 mode = va_arg(ap, int);
159 va_end(ap);
160 }
161
162 #ifdef O_CLOEXEC
163 ret = open(name, flags | O_CLOEXEC, mode);
164 #else
165 ret = open(name, flags, mode);
166 if (ret >= 0) {
167 qemu_set_cloexec(ret);
168 }
169 #endif
170
171 return ret;
172 }
173
174 /*
175 * A variant of write(2) which handles partial write.
176 *
177 * Return the number of bytes transferred.
178 * Set errno if fewer than `count' bytes are written.
179 *
180 * This function don't work with non-blocking fd's.
181 * Any of the possibilities with non-bloking fd's is bad:
182 * - return a short write (then name is wrong)
183 * - busy wait adding (errno == EAGAIN) to the loop
184 */
185 ssize_t qemu_write_full(int fd, const void *buf, size_t count)
186 {
187 ssize_t ret = 0;
188 ssize_t total = 0;
189
190 while (count) {
191 ret = write(fd, buf, count);
192 if (ret < 0) {
193 if (errno == EINTR)
194 continue;
195 break;
196 }
197
198 count -= ret;
199 buf += ret;
200 total += ret;
201 }
202
203 return total;
204 }
205
206 /*
207 * Opens a socket with FD_CLOEXEC set
208 */
209 int qemu_socket(int domain, int type, int protocol)
210 {
211 int ret;
212
213 #ifdef SOCK_CLOEXEC
214 ret = socket(domain, type | SOCK_CLOEXEC, protocol);
215 if (ret != -1 || errno != EINVAL) {
216 return ret;
217 }
218 #endif
219 ret = socket(domain, type, protocol);
220 if (ret >= 0) {
221 qemu_set_cloexec(ret);
222 }
223
224 return ret;
225 }
226
227 /*
228 * Accept a connection and set FD_CLOEXEC
229 */
230 int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen)
231 {
232 int ret;
233
234 #ifdef CONFIG_ACCEPT4
235 ret = accept4(s, addr, addrlen, SOCK_CLOEXEC);
236 if (ret != -1 || errno != ENOSYS) {
237 return ret;
238 }
239 #endif
240 ret = accept(s, addr, addrlen);
241 if (ret >= 0) {
242 qemu_set_cloexec(ret);
243 }
244
245 return ret;
246 }