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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
/*
Copyright 2012-2018 Jyri J. Virkki <jyri@virkki.com>
This file is part of dupd.
dupd is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dupd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with dupd. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _DUPD_UTILS_H
#define _DUPD_UTILS_H
#include <fcntl.h>
#include <pthread.h>
#include <sqlite3.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#ifdef USE_FIEMAP
#include <linux/fs.h>
#include <linux/fiemap.h>
#endif
#include "paths.h"
#ifdef linux
#define STRUCT_STAT struct stat
#define LSTAT lstat
#define strlcpy linux_strlcpy
#endif
#ifdef __OpenBSD__
#define STRUCT_STAT struct stat
#define LSTAT lstat
#endif
#ifdef __FreeBSD__
#define STRUCT_STAT struct stat
#define LSTAT lstat
#endif
#ifdef sun
#define STRUCT_STAT struct stat64
#define LSTAT lstat64
#endif
#ifdef __APPLE__
#define STRUCT_STAT struct stat
#define LSTAT lstat
#endif
struct block_list_entry {
uint64_t start_pos;
uint64_t len;
uint64_t block;
};
struct block_list {
uint8_t count;
struct block_list_entry entry[];
};
/** ***************************************************************************
* Convenience function to check if a given path exists and is a regular file.
*
* Parameters:
* path - The path to check. Must not be null or empty.
*
* Return:
* 1 - if it exists and is a regular file
* 0 - otherwise
*
*/
int file_exists(const char * path);
/** ***************************************************************************
* Convenience function to return struct stat info for given file path.
*
* Parameters:
* path - The path to check. Must not be null or empty.
* info - Pointer to STRUCT_STAT allocated by caller.
*
* Return:
* 0 - on success
* -1 - on failure
*
*/
int get_file_info(const char * path, STRUCT_STAT * info);
/** ***************************************************************************
* Return current time in milliseconds since epoch.
*
* Parameters: none
*
* Return: time in milliseconds
*
*/
uint64_t get_current_time_millis();
/** ***************************************************************************
* Print time interval to buffer.
*
* Parameters:
* out - Output buffer.
* len - Size of out buffer.
* ms - Time in milliseconds.
*
* Return: none
*
*/
void time_string(char * out, int len, long ms);
/** ***************************************************************************
* For testing, slow down a bit, maybe.
*
* Parameters:
* prob - 1 in prob chance of sleeping.
* max_delay_ms - Maximum delay in milliseconds.
*
* Return: milliseconds slept
*
*/
long slow_down(int prob, int max_delay_ms);
/** ***************************************************************************
* Compare two memory buffers similar to memcmp().
*
* For small buffers like the 16 bytes compared in add_hash_list(), this can
* be faster than memcmp().
*
* Parameters:
* b1 - Pointer to first buffer
* b2 - Pointer to second buffer
* n - Length of these buffers (number of bytes to compare)
*
* Return: 0 if identical, 1 if different
*
*/
static inline int dupd_memcmp(const char * b1, const char * b2, size_t n)
{
while (n) {
if (*b1++ != *b2++) {
return 1;
}
n--;
}
return 0;
}
/** ***************************************************************************
* Read data from disk.
*
* Parameters:
* path - Path to file to read.
* output - Caller-provided buffer to store the data read from disk.
* bytes - Read this many bytes.
* skip - Skip this many bytes (start reading file from byte skip+1).
* bytes_read - Returns number of bytes actually read.
*
* Return: 0 on success
*
*/
int read_file_bytes(char * path, char * output,
uint64_t bytes, uint64_t skip, uint64_t * bytes_read);
/** ***************************************************************************
* Read data from disk.
*
* Parameters:
* entry - Path entry of file to read.
* filesize - Size of this file.
* path - Path to file to read.
* output - Caller-provided buffer to store the data read from disk.
* bytes - Read this many bytes.
* skip - Skip this many bytes (start reading file from byte skip+1).
* bytes_read - Returns number of bytes actually read.
*
* Return: 0 on success
*
*/
int read_entry_bytes(struct path_list_entry * entry, uint64_t filesize,
char * path, char * output,
uint64_t bytes, uint64_t skip, uint64_t * bytes_read);
/** ***************************************************************************
* Return number of available cores on system.
*
* Return: number of available cores on system.
*
*/
int cpu_cores();
/** ***************************************************************************
* Return RAM available on system.
*
* Return: RAM available on system.
*
*/
uint64_t total_ram();
/** ***************************************************************************
* Dump memory region to stdout, for debugging.
*
* Parameters:
* text - Output prefix text.
* ptr - Pointer to starting location.
* bytes - Print this many bytes.
*
* Return: none
*
*/
void memdump(char * text, char * ptr, int bytes);
/** ***************************************************************************
* Return name of this thread, only if log_level warrants using it.
*
* Parameters: none
*
* Return: thread name or empty string
*
*/
char * get_thread_name();
/** ***************************************************************************
* strlcpy for Linux which doesn't have it.
*
* Parameters:
* dst - Destination string.
* src - Source string.
* dstsize - Size of dst buffer.
*
* Return: bytes copied (length of src)
*
*/
size_t linux_strlcpy(char *dst, const char *src, size_t dstsize);
/** ***************************************************************************
* Wrapper for pthread_cond_wait, exit on failure.
*
* Parameters:
* cond - condition variable
* mutex - mutex
*
* Return: none
*
*/
static inline void d_cond_wait(pthread_cond_t * cond, pthread_mutex_t * mutex)
{
int rv = pthread_cond_wait(cond, mutex);
if (rv != 0) { // LCOV_EXCL_START
printf("error: pthread_cond_wait == %d\n", rv);
exit(1);
} // LCOV_EXCL_STOP
}
/** ***************************************************************************
* Wrapper for pthread_cond_signal, exit on failure.
*
* Parameters:
* cond - condition variable
*
* Return: none
*
*/
static inline void d_cond_signal(pthread_cond_t * cond)
{
int rv = pthread_cond_signal(cond);
if (rv != 0) { // LCOV_EXCL_START
printf("error: pthread_cond_signal == %d\n", rv);
exit(1);
} // LCOV_EXCL_STOP
}
/** ***************************************************************************
* Wrapper for pthread_mutex_lock, exit on failure.
*
* Parameters:
* mutex - mutex
* line - message
*
* Return: none
*
*/
static inline void d_mutex_lock(pthread_mutex_t * mutex, char * line)
{
int rv = pthread_mutex_lock(mutex);
if (rv != 0) { // LCOV_EXCL_START
printf("error: %s: pthread_mutex_lock == %d\n", line, rv);
exit(1);
} // LCOV_EXCL_STOP
}
/** ***************************************************************************
* Wrapper for pthread_mutex_unlock, exit on failure.
*
* Parameters:
* mutex
*
* Return: none
*
*/
static inline void d_mutex_unlock(pthread_mutex_t * mutex)
{
int rv = pthread_mutex_unlock(mutex);
if (rv != 0) { // LCOV_EXCL_START
printf("error: pthread_mutex_unlock == %d\n", rv);
exit(1);
} // LCOV_EXCL_STOP
}
/** ***************************************************************************
* Wrapper for pthread_create, exit on failure.
*
* Parameters:
* thread
* start_routine
*
* Return: none
*
*/
static inline void d_create(pthread_t * thread,
void *(*start_routine) (void *), void * arg)
{
int rv = pthread_create(thread, NULL, start_routine, arg);
if (rv != 0) { // LCOV_EXCL_START
printf("error: pthread_create == %d\n", rv);
exit(1);
} // LCOV_EXCL_STOP
}
/** ***************************************************************************
* Wrapper for pthread_join, exit on failure.
*
* Parameters:
* thread
* retval
*
* Return: none
*
*/
static inline void d_join(pthread_t thread, void **retval)
{
int rv = pthread_join(thread, retval);
if (rv != 0) { // LCOV_EXCL_START
printf("error: pthread_join == %d\n", rv);
exit(1);
} // LCOV_EXCL_STOP
}
/** ***************************************************************************
* Allocate memory structure to use with get_block_info_from_path.
*
* This returns a void * in order to avoid using 'struct fiemap *' everywhere
* which would require lots of ifdefs so the build can work on non-Linux
* platforms. On other platforms, this just returns NULL.
*
* Parameters: none
*
* Return: Pointer to memory structure. Caller must free when done.
*
*/
void * fiemap_alloc();
/** ***************************************************************************
* Return block_list with either all the blocks used by path (if using_fiemap)
* or otherwise a block_list with a single block, where "block" == inode.
*
* Caller must free the block_list.
*
* Parameters:
* path - path to query
* inode - inode of this file, used if fiemap not used or not available
* size - size of the file
* map - as allocated by fiemap_alloc
*
* Return: block_list with one or more blocks, must be free'd by caller
*
*/
struct block_list * get_block_info_from_path(char * path, ino_t inode,
uint64_t size, void * map);
/** ***************************************************************************
* Debug function, dump the block_list.
*
* Parameters:
* prefix - Print this prefix before each line.
* bl - block_list to print
*
* Return: none
*
*/
void dump_block_list(const char * prefix, struct block_list * bl);
/** ***************************************************************************
* Returns max open file limit for this process.
*
* Parameters: none
*
* Return: open file limit
*
*/
int get_file_limit();
#endif
|