blob: 9949606bb58ac09a00ffc1af748a74ba57d7ad35 [file] [log] [blame]
bellardea888122004-02-16 22:12:40 +00001/*
2 * QEMU low level functions
ths5fafdf22007-09-16 21:08:06 +00003 *
bellardea888122004-02-16 22:12:40 +00004 * Copyright (c) 2003 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellardea888122004-02-16 22:12:40 +00006 * 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>
bellardea888122004-02-16 22:12:40 +000028#include <errno.h>
29#include <unistd.h>
thsaa26bb22007-03-25 21:33:06 +000030#include <fcntl.h>
Juan Quinteladfe5fff2009-07-27 16:12:40 +020031#ifdef CONFIG_SOLARIS
ths605686c2007-01-17 23:31:19 +000032#include <sys/types.h>
33#include <sys/statvfs.h>
34#endif
bellardea888122004-02-16 22:12:40 +000035
Juan Quintela71e72a12009-07-27 16:12:56 +020036/* Needed early for CONFIG_BSD etc. */
blueswir1d40cdb12009-03-07 16:52:02 +000037#include "config-host.h"
38
bellard6e4255f2005-04-17 18:33:47 +000039#ifdef _WIN32
40#include <windows.h>
Juan Quintela71e72a12009-07-27 16:12:56 +020041#elif defined(CONFIG_BSD)
bellard194884d2005-02-21 20:10:36 +000042#include <stdlib.h>
43#else
bellard49b470e2005-02-10 21:59:25 +000044#include <malloc.h>
bellard194884d2005-02-21 20:10:36 +000045#endif
bellard49b470e2005-02-10 21:59:25 +000046
blueswir1511d2b12009-03-07 15:32:56 +000047#include "qemu-common.h"
48#include "sysemu.h"
aliguori03ff3ca2008-09-15 15:51:35 +000049#include "qemu_socket.h"
50
Blue Swirld7414292009-09-12 12:36:04 +000051#if !defined(_POSIX_C_SOURCE) || defined(_WIN32) || defined(__sun__)
malcd644f8b2009-07-08 18:24:05 +040052static void *oom_check(void *ptr)
53{
54 if (ptr == NULL) {
55 abort();
56 }
57 return ptr;
58}
59#endif
60
bellard6e4255f2005-04-17 18:33:47 +000061#if defined(_WIN32)
balrog33f00272007-12-24 14:33:24 +000062void *qemu_memalign(size_t alignment, size_t size)
63{
malcd644f8b2009-07-08 18:24:05 +040064 if (!size) {
65 abort();
66 }
67 return oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE));
balrog33f00272007-12-24 14:33:24 +000068}
bellard6e4255f2005-04-17 18:33:47 +000069
70void *qemu_vmalloc(size_t size)
71{
72 /* FIXME: this is not exactly optimal solution since VirtualAlloc
73 has 64Kb granularity, but at least it guarantees us that the
74 memory is page aligned. */
malcd644f8b2009-07-08 18:24:05 +040075 if (!size) {
76 abort();
77 }
78 return oom_check(VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_READWRITE));
bellard6e4255f2005-04-17 18:33:47 +000079}
80
81void qemu_vfree(void *ptr)
82{
83 VirtualFree(ptr, 0, MEM_RELEASE);
84}
85
pbrook6cb7ee82006-05-22 14:10:48 +000086#else
87
balrog33f00272007-12-24 14:33:24 +000088void *qemu_memalign(size_t alignment, size_t size)
89{
Blue Swirld7414292009-09-12 12:36:04 +000090#if defined(_POSIX_C_SOURCE) && !defined(__sun__)
balrog33f00272007-12-24 14:33:24 +000091 int ret;
92 void *ptr;
93 ret = posix_memalign(&ptr, alignment, size);
94 if (ret != 0)
malcd644f8b2009-07-08 18:24:05 +040095 abort();
balrog33f00272007-12-24 14:33:24 +000096 return ptr;
Juan Quintela71e72a12009-07-27 16:12:56 +020097#elif defined(CONFIG_BSD)
malcd644f8b2009-07-08 18:24:05 +040098 return oom_check(valloc(size));
balrog33f00272007-12-24 14:33:24 +000099#else
malcd644f8b2009-07-08 18:24:05 +0400100 return oom_check(memalign(alignment, size));
balrog33f00272007-12-24 14:33:24 +0000101#endif
102}
103
bellard49b470e2005-02-10 21:59:25 +0000104/* alloc shared memory pages */
105void *qemu_vmalloc(size_t size)
106{
malc48253bd2008-11-18 01:42:15 +0000107 return qemu_memalign(getpagesize(), size);
bellard49b470e2005-02-10 21:59:25 +0000108}
109
110void qemu_vfree(void *ptr)
111{
112 free(ptr);
113}
114
115#endif
116
thsaa26bb22007-03-25 21:33:06 +0000117int qemu_create_pidfile(const char *filename)
118{
119 char buffer[128];
120 int len;
121#ifndef _WIN32
122 int fd;
123
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100124 fd = qemu_open(filename, O_RDWR | O_CREAT, 0600);
thsaa26bb22007-03-25 21:33:06 +0000125 if (fd == -1)
126 return -1;
127
128 if (lockf(fd, F_TLOCK, 0) == -1)
129 return -1;
130
131 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
132 if (write(fd, buffer, len) != len)
133 return -1;
134#else
135 HANDLE file;
136 DWORD flags;
137 OVERLAPPED overlap;
138 BOOL ret;
139
140 /* Open for writing with no sharing. */
ths5fafdf22007-09-16 21:08:06 +0000141 file = CreateFile(filename, GENERIC_WRITE, 0, NULL,
thsaa26bb22007-03-25 21:33:06 +0000142 OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
143
144 if (file == INVALID_HANDLE_VALUE)
145 return -1;
146
147 flags = LOCKFILE_EXCLUSIVE_LOCK | LOCKFILE_FAIL_IMMEDIATELY;
148 overlap.hEvent = 0;
149 /* Lock 1 byte. */
150 ret = LockFileEx(file, flags, 0, 0, 1, &overlap);
151 if (ret == 0)
152 return -1;
153
154 /* Write PID to file. */
155 len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid());
ths5fafdf22007-09-16 21:08:06 +0000156 ret = WriteFileEx(file, (LPCVOID)buffer, (DWORD)len,
thsaa26bb22007-03-25 21:33:06 +0000157 &overlap, NULL);
158 if (ret == 0)
159 return -1;
160#endif
161 return 0;
162}
pbrook29b3a662007-06-07 23:09:47 +0000163
164#ifdef _WIN32
165
166/* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
167#define _W32_FT_OFFSET (116444736000000000ULL)
168
169int qemu_gettimeofday(qemu_timeval *tp)
170{
171 union {
172 unsigned long long ns100; /*time since 1 Jan 1601 in 100ns units */
173 FILETIME ft;
174 } _now;
175
176 if(tp)
177 {
178 GetSystemTimeAsFileTime (&_now.ft);
179 tp->tv_usec=(long)((_now.ns100 / 10ULL) % 1000000ULL );
180 tp->tv_sec= (long)((_now.ns100 - _W32_FT_OFFSET) / 10000000ULL);
181 }
182 /* Always return 0 as per Open Group Base Specifications Issue 6.
183 Do not set errno on error. */
184 return 0;
185}
186#endif /* _WIN32 */
aliguori03ff3ca2008-09-15 15:51:35 +0000187
188
189#ifdef _WIN32
190void socket_set_nonblock(int fd)
191{
192 unsigned long opt = 1;
193 ioctlsocket(fd, FIONBIO, &opt);
194}
195
196int inet_aton(const char *cp, struct in_addr *ia)
197{
198 uint32_t addr = inet_addr(cp);
199 if (addr == 0xffffffff)
200 return 0;
201 ia->s_addr = addr;
202 return 1;
203}
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100204
205void qemu_set_cloexec(int fd)
206{
207}
208
aliguori03ff3ca2008-09-15 15:51:35 +0000209#else
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100210
aliguori03ff3ca2008-09-15 15:51:35 +0000211void socket_set_nonblock(int fd)
212{
213 int f;
214 f = fcntl(fd, F_GETFL);
215 fcntl(fd, F_SETFL, f | O_NONBLOCK);
216}
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100217
218void qemu_set_cloexec(int fd)
219{
220 int f;
221 f = fcntl(fd, F_GETFD);
222 fcntl(fd, F_SETFD, f | FD_CLOEXEC);
223}
224
aliguori03ff3ca2008-09-15 15:51:35 +0000225#endif
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100226
227/*
228 * Opens a file with FD_CLOEXEC set
229 */
230int qemu_open(const char *name, int flags, ...)
231{
232 int ret;
233 int mode = 0;
234
235 if (flags & O_CREAT) {
236 va_list ap;
237
238 va_start(ap, flags);
239 mode = va_arg(ap, int);
240 va_end(ap);
241 }
242
243#ifdef O_CLOEXEC
244 ret = open(name, flags | O_CLOEXEC, mode);
245#else
246 ret = open(name, flags, mode);
247 if (ret >= 0) {
248 qemu_set_cloexec(ret);
249 }
250#endif
251
252 return ret;
253}
254
255#ifndef _WIN32
256/*
257 * Creates a pipe with FD_CLOEXEC set on both file descriptors
258 */
259int qemu_pipe(int pipefd[2])
260{
261 int ret;
262
263#ifdef CONFIG_PIPE2
264 ret = pipe2(pipefd, O_CLOEXEC);
Andre Przywara3a03bfa2009-12-18 10:45:07 +0100265 if (ret != -1 || errno != ENOSYS) {
266 return ret;
267 }
268#endif
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100269 ret = pipe(pipefd);
270 if (ret == 0) {
271 qemu_set_cloexec(pipefd[0]);
272 qemu_set_cloexec(pipefd[1]);
273 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100274
275 return ret;
276}
277#endif
278
279/*
280 * Opens a socket with FD_CLOEXEC set
281 */
282int qemu_socket(int domain, int type, int protocol)
283{
284 int ret;
285
286#ifdef SOCK_CLOEXEC
287 ret = socket(domain, type | SOCK_CLOEXEC, protocol);
Andre Przywara3a03bfa2009-12-18 10:45:07 +0100288 if (ret != -1 || errno != EINVAL) {
289 return ret;
290 }
291#endif
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100292 ret = socket(domain, type, protocol);
293 if (ret >= 0) {
294 qemu_set_cloexec(ret);
295 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100296
297 return ret;
298}
299
300/*
301 * Accept a connection and set FD_CLOEXEC
302 */
303int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen)
304{
305 int ret;
306
307#ifdef CONFIG_ACCEPT4
308 ret = accept4(s, addr, addrlen, SOCK_CLOEXEC);
Andre Przywara3a03bfa2009-12-18 10:45:07 +0100309 if (ret != -1 || errno != EINVAL) {
310 return ret;
311 }
312#endif
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100313 ret = accept(s, addr, addrlen);
314 if (ret >= 0) {
315 qemu_set_cloexec(ret);
316 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +0100317
318 return ret;
319}