cutils.h (7578B)
1#ifndef QEMU_CUTILS_H 2#define QEMU_CUTILS_H 3 4/** 5 * pstrcpy: 6 * @buf: buffer to copy string into 7 * @buf_size: size of @buf in bytes 8 * @str: string to copy 9 * 10 * Copy @str into @buf, including the trailing NUL, but do not 11 * write more than @buf_size bytes. The resulting buffer is 12 * always NUL terminated (even if the source string was too long). 13 * If @buf_size is zero or negative then no bytes are copied. 14 * 15 * This function is similar to strncpy(), but avoids two of that 16 * function's problems: 17 * * if @str fits in the buffer, pstrcpy() does not zero-fill the 18 * remaining space at the end of @buf 19 * * if @str is too long, pstrcpy() will copy the first @buf_size-1 20 * bytes and then add a NUL 21 */ 22void pstrcpy(char *buf, int buf_size, const char *str); 23/** 24 * strpadcpy: 25 * @buf: buffer to copy string into 26 * @buf_size: size of @buf in bytes 27 * @str: string to copy 28 * @pad: character to pad the remainder of @buf with 29 * 30 * Copy @str into @buf (but *not* its trailing NUL!), and then pad the 31 * rest of the buffer with the @pad character. If @str is too large 32 * for the buffer then it is truncated, so that @buf contains the 33 * first @buf_size characters of @str, with no terminator. 34 */ 35void strpadcpy(char *buf, int buf_size, const char *str, char pad); 36/** 37 * pstrcat: 38 * @buf: buffer containing existing string 39 * @buf_size: size of @buf in bytes 40 * @s: string to concatenate to @buf 41 * 42 * Append a copy of @s to the string already in @buf, but do not 43 * allow the buffer to overflow. If the existing contents of @buf 44 * plus @str would total more than @buf_size bytes, then write 45 * as much of @str as will fit followed by a NUL terminator. 46 * 47 * @buf must already contain a NUL-terminated string, or the 48 * behaviour is undefined. 49 * 50 * Returns: @buf. 51 */ 52char *pstrcat(char *buf, int buf_size, const char *s); 53/** 54 * strstart: 55 * @str: string to test 56 * @val: prefix string to look for 57 * @ptr: NULL, or pointer to be written to indicate start of 58 * the remainder of the string 59 * 60 * Test whether @str starts with the prefix @val. 61 * If it does (including the degenerate case where @str and @val 62 * are equal) then return true. If @ptr is not NULL then a 63 * pointer to the first character following the prefix is written 64 * to it. If @val is not a prefix of @str then return false (and 65 * @ptr is not written to). 66 * 67 * Returns: true if @str starts with prefix @val, false otherwise. 68 */ 69int strstart(const char *str, const char *val, const char **ptr); 70/** 71 * stristart: 72 * @str: string to test 73 * @val: prefix string to look for 74 * @ptr: NULL, or pointer to be written to indicate start of 75 * the remainder of the string 76 * 77 * Test whether @str starts with the case-insensitive prefix @val. 78 * This function behaves identically to strstart(), except that the 79 * comparison is made after calling qemu_toupper() on each pair of 80 * characters. 81 * 82 * Returns: true if @str starts with case-insensitive prefix @val, 83 * false otherwise. 84 */ 85int stristart(const char *str, const char *val, const char **ptr); 86/** 87 * qemu_strnlen: 88 * @s: string 89 * @max_len: maximum number of bytes in @s to scan 90 * 91 * Return the length of the string @s, like strlen(), but do not 92 * examine more than @max_len bytes of the memory pointed to by @s. 93 * If no NUL terminator is found within @max_len bytes, then return 94 * @max_len instead. 95 * 96 * This function has the same behaviour as the POSIX strnlen() 97 * function. 98 * 99 * Returns: length of @s in bytes, or @max_len, whichever is smaller. 100 */ 101int qemu_strnlen(const char *s, int max_len); 102/** 103 * qemu_strsep: 104 * @input: pointer to string to parse 105 * @delim: string containing delimiter characters to search for 106 * 107 * Locate the first occurrence of any character in @delim within 108 * the string referenced by @input, and replace it with a NUL. 109 * The location of the next character after the delimiter character 110 * is stored into @input. 111 * If the end of the string was reached without finding a delimiter 112 * character, then NULL is stored into @input. 113 * If @input points to a NULL pointer on entry, return NULL. 114 * The return value is always the original value of *@input (and 115 * so now points to a NUL-terminated string corresponding to the 116 * part of the input up to the first delimiter). 117 * 118 * This function has the same behaviour as the BSD strsep() function. 119 * 120 * Returns: the pointer originally in @input. 121 */ 122char *qemu_strsep(char **input, const char *delim); 123#ifdef HAVE_STRCHRNUL 124static inline const char *qemu_strchrnul(const char *s, int c) 125{ 126 return strchrnul(s, c); 127} 128#else 129const char *qemu_strchrnul(const char *s, int c); 130#endif 131time_t mktimegm(struct tm *tm); 132int qemu_fdatasync(int fd); 133int qemu_msync(void *addr, size_t length, int fd); 134int fcntl_setfl(int fd, int flag); 135int qemu_parse_fd(const char *param); 136int qemu_strtoi(const char *nptr, const char **endptr, int base, 137 int *result); 138int qemu_strtoui(const char *nptr, const char **endptr, int base, 139 unsigned int *result); 140int qemu_strtol(const char *nptr, const char **endptr, int base, 141 long *result); 142int qemu_strtoul(const char *nptr, const char **endptr, int base, 143 unsigned long *result); 144int qemu_strtoi64(const char *nptr, const char **endptr, int base, 145 int64_t *result); 146int qemu_strtou64(const char *nptr, const char **endptr, int base, 147 uint64_t *result); 148int qemu_strtod(const char *nptr, const char **endptr, double *result); 149int qemu_strtod_finite(const char *nptr, const char **endptr, double *result); 150 151int parse_uint(const char *s, unsigned long long *value, char **endptr, 152 int base); 153int parse_uint_full(const char *s, unsigned long long *value, int base); 154 155int qemu_strtosz(const char *nptr, const char **end, uint64_t *result); 156int qemu_strtosz_MiB(const char *nptr, const char **end, uint64_t *result); 157int qemu_strtosz_metric(const char *nptr, const char **end, uint64_t *result); 158 159char *size_to_str(uint64_t val); 160 161/** 162 * freq_to_str: 163 * @freq_hz: frequency to stringify 164 * 165 * Return human readable string for frequency @freq_hz. 166 * Use SI units like KHz, MHz, and so forth. 167 * 168 * The caller is responsible for releasing the value returned 169 * with g_free() after use. 170 */ 171char *freq_to_str(uint64_t freq_hz); 172 173/* used to print char* safely */ 174#define STR_OR_NULL(str) ((str) ? (str) : "null") 175 176bool buffer_is_zero(const void *buf, size_t len); 177bool test_buffer_is_zero_next_accel(void); 178 179/* 180 * Implementation of ULEB128 (http://en.wikipedia.org/wiki/LEB128) 181 * Input is limited to 14-bit numbers 182 */ 183 184int uleb128_encode_small(uint8_t *out, uint32_t n); 185int uleb128_decode_small(const uint8_t *in, uint32_t *n); 186 187/** 188 * qemu_pstrcmp0: 189 * @str1: a non-NULL pointer to a C string (*str1 can be NULL) 190 * @str2: a non-NULL pointer to a C string (*str2 can be NULL) 191 * 192 * Compares *str1 and *str2 with g_strcmp0(). 193 * 194 * Returns: an integer less than, equal to, or greater than zero, if 195 * *str1 is <, == or > than *str2. 196 */ 197int qemu_pstrcmp0(const char **str1, const char **str2); 198 199 200/** 201 * get_relocated_path: 202 * @dir: the directory (typically a `CONFIG_*DIR` variable) to be relocated. 203 * 204 * Returns a path for @dir that uses the directory of the running executable 205 * as the prefix. For example, if `bindir` is `/usr/bin` and @dir is 206 * `/usr/share/qemu`, the function will append `../share/qemu` to the 207 * directory that contains the running executable and return the result. 208 * The returned string should be freed by the caller. 209 */ 210char *get_relocated_path(const char *dir); 211 212#endif