123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- #ifndef __MTD_UTILS_COMMON_H__
- #define __MTD_UTILS_COMMON_H__
- #include <stdbool.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <ctype.h>
- #include <string.h>
- #include <fcntl.h>
- #include <errno.h>
- #include <features.h>
- #include <inttypes.h>
- #include <unistd.h>
- #include <sys/sysmacros.h>
- #include "config.h"
- #ifndef PROGRAM_NAME
- # error "You must define PROGRAM_NAME before including this header"
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifndef MIN
- #define MIN(a, b) ((a) < (b) ? (a) : (b))
- #endif
- #ifndef MAX
- #define MAX(a, b) ((a) > (b) ? (a) : (b))
- #endif
- #define min(a, b) MIN(a, b)
- #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
- #define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1)
- #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
- #define min_t(t,x,y) ({ \
- typeof((x)) _x = (x); \
- typeof((y)) _y = (y); \
- (_x < _y) ? _x : _y; \
- })
- #define max_t(t,x,y) ({ \
- typeof((x)) _x = (x); \
- typeof((y)) _y = (y); \
- (_x > _y) ? _x : _y; \
- })
- #define __round_mask(x, y) ((__typeof__(x))((y)-1))
- #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
- #define round_down(x, y) ((x) & ~__round_mask(x, y))
- #ifndef O_CLOEXEC
- #define O_CLOEXEC 0
- #endif
- #define bareverbose(verbose, fmt, ...) do { \
- if (verbose) \
- printf(fmt, ##__VA_ARGS__); \
- } while(0)
- #define verbose(verbose, fmt, ...) \
- bareverbose(verbose, "%s: " fmt "\n", PROGRAM_NAME, ##__VA_ARGS__)
- #define normsg_cont(fmt, ...) do { \
- printf("%s: " fmt, PROGRAM_NAME, ##__VA_ARGS__); \
- } while(0)
- #define normsg(fmt, ...) do { \
- normsg_cont(fmt "\n", ##__VA_ARGS__); \
- } while(0)
- #define errmsg(fmt, ...) ({ \
- fprintf(stderr, "%s: error!: " fmt "\n", PROGRAM_NAME, ##__VA_ARGS__); \
- -1; \
- })
- #define errmsg_die(fmt, ...) do { \
- exit(errmsg(fmt, ##__VA_ARGS__)); \
- } while(0)
- #define sys_errmsg(fmt, ...) ({ \
- int _err = errno; \
- errmsg(fmt, ##__VA_ARGS__); \
- fprintf(stderr, "%*serror %d (%s)\n", (int)sizeof(PROGRAM_NAME) + 1,\
- "", _err, strerror(_err)); \
- -1; \
- })
- #define sys_errmsg_die(fmt, ...) do { \
- exit(sys_errmsg(fmt, ##__VA_ARGS__)); \
- } while(0)
- #define warnmsg(fmt, ...) do { \
- fprintf(stderr, "%s: warning!: " fmt "\n", PROGRAM_NAME, ##__VA_ARGS__); \
- } while(0)
- #if defined(__GNUC__) || defined(__clang__)
- #define NORETURN __attribute__((noreturn))
- #else
- #define NORETURN
- #endif
- static inline bool prompt(const char *msg, bool def)
- {
- bool ret = def;
- char line[64];
- do {
- normsg_cont("%s (%c/%c) ", msg, def ? 'Y' : 'y', def ? 'n' : 'N');
- fflush(stdout);
- if (fgets(line, sizeof(line), stdin) == NULL) {
- printf("failed to read prompt; assuming '%s'\n",
- def ? "yes" : "no");
- break;
- }
- if (strcmp("\n", line) != 0) {
- switch (line[0]) {
- case 'N':
- case 'n': ret = false; break;
- case 'Y':
- case 'y': ret = true; break;
- default:
- puts("unknown response; please try again");
- continue;
- }
- }
- break;
- } while (1);
- return ret;
- }
- static inline int is_power_of_2(unsigned long long n)
- {
- return (n != 0 && ((n & (n - 1)) == 0));
- }
- static inline int buffer_check_pattern(unsigned char *buffer, size_t size,
- unsigned char pattern)
- {
-
- if (!buffer || (size == 0))
- return 0;
-
- if (*buffer != pattern)
- return 0;
-
- if (size == 1)
- return 1;
-
- return !memcmp(buffer, buffer + 1, size - 1);
- }
- #define simple_strtoX(func, type) \
- static inline type simple_##func(const char *snum, int *error) \
- { \
- char *endptr; \
- type ret = func(snum, &endptr, 0); \
- \
- if (error && (!*snum || *endptr)) { \
- errmsg("%s: unable to parse the number '%s'", #func, snum); \
- *error = 1; \
- } \
- \
- return ret; \
- }
- simple_strtoX(strtol, long int)
- simple_strtoX(strtoll, long long int)
- simple_strtoX(strtoul, unsigned long int)
- simple_strtoX(strtoull, unsigned long long int)
- #define common_print_version() \
- do { \
- printf("%s (mtd-utils) %s\n", PROGRAM_NAME, VERSION); \
- } while (0)
- #include "xalloc.h"
- long long util_get_bytes(const char *str);
- void util_print_bytes(long long bytes, int bracket);
- int util_srand(void);
- static inline ssize_t read_nocheck(int fd, void *buf, size_t count)
- {
- return read(fd, buf, count);
- }
- static inline ssize_t write_nocheck(int fd, void *buf, size_t count)
- {
- return write(fd, buf, count);
- }
- static inline ssize_t pread_nocheck(int fd, void *buf, size_t count,
- off_t offset)
- {
- return pread(fd, buf, count, offset);
- }
- static inline ssize_t pwrite_nocheck(int fd, void *buf, size_t count,
- off_t offset)
- {
- return pwrite(fd, buf, count, offset);
- }
- #ifdef __cplusplus
- }
- #endif
- #endif
|