util.h 1.8 KB
Newer Older
1 2 3 4
#ifndef GIT_COMPAT_UTIL_H
#define GIT_COMPAT_UTIL_H

#define _BSD_SOURCE 1
5 6
/* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */
#define _DEFAULT_SOURCE 1
7 8

#include <fcntl.h>
9
#include <stdbool.h>
10 11 12
#include <stddef.h>
#include <stdlib.h>
#include <stdarg.h>
13
#include <linux/compiler.h>
B
Borislav Petkov 已提交
14
#include <linux/types.h>
15
#include "namespaces.h"
16

17
/* General helper functions */
18
void usage(const char *err) __noreturn;
19
void die(const char *err, ...) __noreturn __printf(1, 2);
20

21 22 23 24 25
static inline void *zalloc(size_t size)
{
	return calloc(1, size);
}

26 27
#define zfree(ptr) ({ free(*ptr); *ptr = NULL; })

28
struct dirent;
29 30
struct strlist;

31
int mkdir_p(char *path, mode_t mode);
32
int rm_rf(const char *path);
33 34
struct strlist *lsdir(const char *name, bool (*filter)(const char *, struct dirent *));
bool lsdir_no_dot_filter(const char *name, struct dirent *d);
35
int copyfile(const char *from, const char *to);
A
Adrian Hunter 已提交
36
int copyfile_mode(const char *from, const char *to, mode_t mode);
37
int copyfile_ns(const char *from, const char *to, struct nsinfo *nsi);
38
int copyfile_offset(int fromfd, loff_t from_ofs, int tofd, loff_t to_ofs, u64 size);
39

40
ssize_t readn(int fd, void *buf, size_t n);
41
ssize_t writen(int fd, const void *buf, size_t n);
42

43
size_t hex_width(u64 v);
44
int hex2u64(const char *ptr, u64 *val);
45

46
extern unsigned int page_size;
47
extern int cacheline_size;
48

49 50
int fetch_kernel_version(unsigned int *puint,
			 char *str, size_t str_sz);
51 52 53 54 55
#define KVER_VERSION(x)		(((x) >> 16) & 0xff)
#define KVER_PATCHLEVEL(x)	(((x) >> 8) & 0xff)
#define KVER_SUBLEVEL(x)	((x) & 0xff)
#define KVER_FMT	"%d.%d.%d"
#define KVER_PARAM(x)	KVER_VERSION(x), KVER_PATCHLEVEL(x), KVER_SUBLEVEL(x)
56

57 58
const char *perf_tip(const char *dirpath);

59 60
#ifndef HAVE_SCHED_GETCPU_SUPPORT
int sched_getcpu(void);
61 62
#endif

63 64 65 66
#ifndef HAVE_SETNS_SUPPORT
int setns(int fd, int nstype);
#endif

67
#endif /* GIT_COMPAT_UTIL_H */