2 * QEMU low level functions
4 * Copyright (c) 2003 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
35 #if defined(CONFIG_MADVISE) || defined(CONFIG_POSIX_MADVISE)
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);
49 #elif defined(CONFIG_BSD)
55 #include "qemu-common.h"
58 #include "qemu_socket.h"
60 int qemu_madvise(void *addr
, size_t len
, int advice
)
62 if (advice
== QEMU_MADV_INVALID
) {
66 #if defined(CONFIG_MADVISE)
67 return madvise(addr
, len
, advice
);
68 #elif defined(CONFIG_POSIX_MADVISE)
69 return posix_madvise(addr
, len
, advice
);
76 int qemu_create_pidfile(const char *filename
)
83 fd
= qemu_open(filename
, O_RDWR
| O_CREAT
, 0600);
87 if (lockf(fd
, F_TLOCK
, 0) == -1)
90 len
= snprintf(buffer
, sizeof(buffer
), "%ld\n", (long)getpid());
91 if (write(fd
, buffer
, len
) != len
)
97 memset(&overlap
, 0, sizeof(overlap
));
99 file
= CreateFile(filename
, GENERIC_WRITE
, FILE_SHARE_READ
, NULL
,
100 OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
102 if (file
== INVALID_HANDLE_VALUE
)
105 len
= snprintf(buffer
, sizeof(buffer
), "%ld\n", (long)getpid());
106 ret
= WriteFileEx(file
, (LPCVOID
)buffer
, (DWORD
)len
,
116 * Opens a file with FD_CLOEXEC set
118 int qemu_open(const char *name
, int flags
, ...)
123 if (flags
& O_CREAT
) {
127 mode
= va_arg(ap
, int);
132 ret
= open(name
, flags
| O_CLOEXEC
, mode
);
134 ret
= open(name
, flags
, mode
);
136 qemu_set_cloexec(ret
);
144 * A variant of write(2) which handles partial write.
146 * Return the number of bytes transferred.
147 * Set errno if fewer than `count' bytes are written.
149 * This function don't work with non-blocking fd's.
150 * Any of the possibilities with non-bloking fd's is bad:
151 * - return a short write (then name is wrong)
152 * - busy wait adding (errno == EAGAIN) to the loop
154 ssize_t
qemu_write_full(int fd
, const void *buf
, size_t count
)
160 ret
= write(fd
, buf
, count
);
176 * Opens a socket with FD_CLOEXEC set
178 int qemu_socket(int domain
, int type
, int protocol
)
183 ret
= socket(domain
, type
| SOCK_CLOEXEC
, protocol
);
184 if (ret
!= -1 || errno
!= EINVAL
) {
188 ret
= socket(domain
, type
, protocol
);
190 qemu_set_cloexec(ret
);
197 * Accept a connection and set FD_CLOEXEC
199 int qemu_accept(int s
, struct sockaddr
*addr
, socklen_t
*addrlen
)
203 #ifdef CONFIG_ACCEPT4
204 ret
= accept4(s
, addr
, addrlen
, SOCK_CLOEXEC
);
205 if (ret
!= -1 || errno
!= ENOSYS
) {
209 ret
= accept(s
, addr
, addrlen
);
211 qemu_set_cloexec(ret
);