1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
/*
* BSD LICENSE
*
* Copyright(c) 2019-2023 Intel Corporation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Intel Corporation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.O
*
*/
/**
* @brief Internal header file for common functions
*/
#ifndef __PQOS_COMMON_H__
#define __PQOS_COMMON_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "types.h"
#include <stdint.h>
#include <stdio.h>
#include <sys/stat.h>
/**
* @brief Wrapper around fopen() that additionally checks if a given path
* contains any symbolic links and fails if it does.
*
* @param [in] name a path to a file
* @param [in] mode a file access mode
*
* @return Pointer to a file
* @retval A valid pointer to a file or NULL on error (e.g. when the path
* contains any symbolic links).
*/
PQOS_LOCAL FILE *pqos_fopen(const char *name, const char *mode);
/**
* @brief Wrapper around fclose()
*
* @param [in] stream file descriptor
*
* @return Operational status
* @retval 0 on success
*/
PQOS_LOCAL int pqos_fclose(FILE *stream);
/**
* @brief Wrapper around open() that additionally checks if a given path
* contains any symbolic links and fails if it does.
*
* @param [in] pathname a path to a file
* @param [in] flags file access flags
*
* @return A file descriptor
* @retval A valid file descriptor or -1 on error (e.g. when the path
* contains any symbolic links).
*/
PQOS_LOCAL int pqos_open(const char *pathname, int flags);
/**
* @brief Wrapper around strcat
*
* @param [out] dst Output buffer
* @param [in] src Input buffer
* @param [in] size Output buffer size
*
* @return output buffer
*/
PQOS_LOCAL char *pqos_strcat(char *dst, const char *src, size_t size);
/**
* @brief Wrapper around fgets
*/
PQOS_LOCAL char *pqos_fgets(char *s, int n, FILE *stream);
/**
* @brief Read integer from file
*
* @param [in] path file path
* @param [out] value parsed value
*
* @return Operations status
* @retval PQOS_RETVAL_OK on success
*/
PQOS_LOCAL int pqos_fread_uint(const char *path, unsigned *value);
/**
* @brief Read uint64 from file
*
* @param [in] fname name of the file
* @param [in] base numerical base
* @param [out] value uint64 value
*
* @return Operation status
* @retval PQOS_RETVAL_OK success
*/
PQOS_LOCAL int
pqos_fread_uint64(const char *fname, unsigned base, uint64_t *value);
/**
* @brief Checks if file exists
*
* @param [in] path file path
*
* @return If file exists
* @retval 1 if file exists
* @retval 0 if file not exists
*/
PQOS_LOCAL int pqos_file_exists(const char *path);
/**
* @brief Checks if directory exists
*
* @param [in] path directory path
*
* @return If file exists
* @retval 1 if directory exists
* @retval 0 if directory not exists
*/
PQOS_LOCAL int pqos_dir_exists(const char *path);
/**
* @brief Checks file fname to detect str and sets a flag
*
* @param [in] fname name of the file to be searched
* @param [in] str string being searched for
* @param [out] found pointer to search result
*
* @return Operation status
* @retval PQOS_RETVAL_OK success
*/
PQOS_LOCAL int
pqos_file_contains(const char *fname, const char *str, int *found);
/**
* @brief Map physical memory for reading
* @param[in] address Physical memory address
* @param[in] size Memory size
*
* @return Mapped memory
*/
PQOS_LOCAL uint8_t *pqos_mmap_read(uint64_t address, const uint64_t size);
/**
* @brief Map physical memory for writing
* @param[in] address Physical memory address
* @param[in] size Memory size
*
* @return Mapped memory
*/
PQOS_LOCAL uint8_t *pqos_mmap_write(uint64_t address, const uint64_t size);
/**
* @brief Unmap physical memory
*
* @param[in] mem logical memory address
* @param[in] size Memory size
*/
PQOS_LOCAL void pqos_munmap(void *mem, const uint64_t size);
/**
* @brief Wrapper around read(2) that reads exactly count bytes
* from the file handling exceptional situations and fails if it
* cannot revover from those
*
* @param [in] fd file descriptor to read from
* @param [in] buf buffer to read to
* @param [in] count number of bytes to read
*
* @return Number of bytes read
* @retval Number of bytes read equal 'count' param
* @retval -1 if it couldn't read 'count' bytes
*/
PQOS_LOCAL ssize_t pqos_read(int fd, void *buf, size_t count);
/**
* @brief Increase the number of open files limit to handle more
* than 256 CPUs.
*
* @param [in] Max CPUs on the system
*
* @return PQOS_RETVAL_OK for success
* @retval PQOS_RETVAL_ERROR for failure
*/
PQOS_LOCAL int pqos_set_no_files_limit(unsigned long max_core_count);
#ifdef __cplusplus
}
#endif
#endif /* __PQOS_COMMON_H__ */
|