]> git.proxmox.com Git - qemu.git/blame - cutils.c
kvm: Trim cpu features not supported by kvm
[qemu.git] / cutils.c
CommitLineData
18607dcb
FB
1/*
2 * Simple C functions to supplement the C library
5fafdf24 3 *
18607dcb
FB
4 * Copyright (c) 2006 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 */
faf07963 24#include "qemu-common.h"
8d371d4b 25#include "host-utils.h"
522584a5 26#include <assert.h>
18607dcb
FB
27
28void pstrcpy(char *buf, int buf_size, const char *str)
29{
30 int c;
31 char *q = buf;
32
33 if (buf_size <= 0)
34 return;
35
36 for(;;) {
37 c = *str++;
38 if (c == 0 || q >= buf + buf_size - 1)
39 break;
40 *q++ = c;
41 }
42 *q = '\0';
43}
44
45/* strcat and truncate. */
46char *pstrcat(char *buf, int buf_size, const char *s)
47{
48 int len;
49 len = strlen(buf);
5fafdf24 50 if (len < buf_size)
18607dcb
FB
51 pstrcpy(buf + len, buf_size - len, s);
52 return buf;
53}
54
55int strstart(const char *str, const char *val, const char **ptr)
56{
57 const char *p, *q;
58 p = str;
59 q = val;
60 while (*q != '\0') {
61 if (*p != *q)
62 return 0;
63 p++;
64 q++;
65 }
66 if (ptr)
67 *ptr = p;
68 return 1;
69}
70
71int stristart(const char *str, const char *val, const char **ptr)
72{
73 const char *p, *q;
74 p = str;
75 q = val;
76 while (*q != '\0') {
cd390083 77 if (qemu_toupper(*p) != qemu_toupper(*q))
18607dcb
FB
78 return 0;
79 p++;
80 q++;
81 }
82 if (ptr)
83 *ptr = p;
84 return 1;
85}
3c6b2088
FB
86
87time_t mktimegm(struct tm *tm)
88{
89 time_t t;
90 int y = tm->tm_year + 1900, m = tm->tm_mon + 1, d = tm->tm_mday;
91 if (m < 3) {
92 m += 12;
93 y--;
94 }
95 t = 86400 * (d + (153 * m - 457) / 5 + 365 * y + y / 4 - y / 100 +
96 y / 400 - 719469);
97 t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec;
98 return t;
99}
b39ade83 100
ad46db9a 101int qemu_fls(int i)
b39ade83 102{
8d371d4b 103 return 32 - clz32(i);
b39ade83 104}
44e3ee8a
AL
105
106/* io vectors */
107
108void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint)
109{
110 qiov->iov = qemu_malloc(alloc_hint * sizeof(struct iovec));
111 qiov->niov = 0;
112 qiov->nalloc = alloc_hint;
249aa745 113 qiov->size = 0;
44e3ee8a
AL
114}
115
522584a5
AL
116void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov)
117{
118 int i;
119
120 qiov->iov = iov;
121 qiov->niov = niov;
122 qiov->nalloc = -1;
123 qiov->size = 0;
124 for (i = 0; i < niov; i++)
125 qiov->size += iov[i].iov_len;
126}
127
44e3ee8a
AL
128void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len)
129{
522584a5
AL
130 assert(qiov->nalloc != -1);
131
44e3ee8a
AL
132 if (qiov->niov == qiov->nalloc) {
133 qiov->nalloc = 2 * qiov->nalloc + 1;
134 qiov->iov = qemu_realloc(qiov->iov, qiov->nalloc * sizeof(struct iovec));
135 }
136 qiov->iov[qiov->niov].iov_base = base;
137 qiov->iov[qiov->niov].iov_len = len;
249aa745 138 qiov->size += len;
44e3ee8a
AL
139 ++qiov->niov;
140}
141
142void qemu_iovec_destroy(QEMUIOVector *qiov)
143{
522584a5
AL
144 assert(qiov->nalloc != -1);
145
44e3ee8a
AL
146 qemu_free(qiov->iov);
147}
148
be959463
AL
149void qemu_iovec_reset(QEMUIOVector *qiov)
150{
522584a5
AL
151 assert(qiov->nalloc != -1);
152
be959463
AL
153 qiov->niov = 0;
154 qiov->size = 0;
155}
156
44e3ee8a
AL
157void qemu_iovec_to_buffer(QEMUIOVector *qiov, void *buf)
158{
159 uint8_t *p = (uint8_t *)buf;
160 int i;
161
162 for (i = 0; i < qiov->niov; ++i) {
163 memcpy(p, qiov->iov[i].iov_base, qiov->iov[i].iov_len);
164 p += qiov->iov[i].iov_len;
165 }
166}
167
249aa745 168void qemu_iovec_from_buffer(QEMUIOVector *qiov, const void *buf, size_t count)
44e3ee8a
AL
169{
170 const uint8_t *p = (const uint8_t *)buf;
249aa745 171 size_t copy;
44e3ee8a
AL
172 int i;
173
249aa745
AL
174 for (i = 0; i < qiov->niov && count; ++i) {
175 copy = count;
176 if (copy > qiov->iov[i].iov_len)
177 copy = qiov->iov[i].iov_len;
178 memcpy(qiov->iov[i].iov_base, p, copy);
179 p += copy;
180 count -= copy;
44e3ee8a
AL
181 }
182}