Silent gcc warnings with -Wconst-qual switch.
[platform/upstream/cryptsetup.git] / lib / internal.h
1 #ifndef INTERNAL_H
2 #define INTERNAL_H
3
4 #ifdef HAVE_CONFIG_H
5 #       include "config.h"
6 #endif
7
8 #include <stdint.h>
9 #include <stdarg.h>
10 #include <unistd.h>
11 #include <inttypes.h>
12
13 #include "nls.h"
14 #include "utils_crypt.h"
15 #include "utils_loop.h"
16 #include "utils_dm.h"
17
18 /* to silent gcc -Wcast-qual for const cast */
19 #define CONST_CAST(x) (x)(uintptr_t)
20
21 #define SECTOR_SHIFT            9
22 #define SECTOR_SIZE             (1 << SECTOR_SHIFT)
23 #define DEFAULT_DISK_ALIGNMENT  1048576 /* 1MiB */
24 #define DEFAULT_MEM_ALIGNMENT   4096
25
26 /* private struct crypt_options flags */
27
28 #define CRYPT_FLAG_FREE_DEVICE  (1 << 24)
29 #define CRYPT_FLAG_FREE_CIPHER  (1 << 25)
30
31 #define CRYPT_FLAG_PRIVATE_MASK ((unsigned int)-1 << 24)
32
33 #define at_least(a, b) ({ __typeof__(a) __at_least = (a); (__at_least >= (b))?__at_least:(b); })
34
35 struct crypt_device;
36
37 struct volume_key {
38         size_t keylength;
39         char key[];
40 };
41
42 struct volume_key *crypt_alloc_volume_key(unsigned keylength, const char *key);
43 struct volume_key *crypt_generate_volume_key(struct crypt_device *cd, unsigned keylength);
44 void crypt_free_volume_key(struct volume_key *vk);
45
46 int crypt_confirm(struct crypt_device *cd, const char *msg);
47
48 void set_error_va(const char *fmt, va_list va);
49 void set_error(const char *fmt, ...);
50 const char *get_error(void);
51
52 char *crypt_lookup_dev(const char *dev_id);
53 int crypt_sysfs_check_crypt_segment(const char *device, uint64_t offset, uint64_t size);
54
55 int sector_size_for_device(const char *device);
56 int device_read_ahead(const char *dev, uint32_t *read_ahead);
57 ssize_t write_blockwise(int fd, void *buf, size_t count);
58 ssize_t read_blockwise(int fd, void *_buf, size_t count);
59 ssize_t write_lseek_blockwise(int fd, char *buf, size_t count, off_t offset);
60 int device_ready(struct crypt_device *cd, const char *device, int mode);
61 int device_size(const char *device, uint64_t *size);
62
63 enum devcheck { DEV_OK = 0, DEV_EXCL = 1, DEV_SHARED = 2 };
64 int device_check_and_adjust(struct crypt_device *cd,
65                             const char *device,
66                             enum devcheck device_check,
67                             uint64_t *size,
68                             uint64_t *offset,
69                             uint32_t *flags);
70 int wipe_device_header(const char *device, int sectors);
71
72 void logger(struct crypt_device *cd, int class, const char *file, int line, const char *format, ...);
73 #define log_dbg(x...) logger(NULL, CRYPT_LOG_DEBUG, __FILE__, __LINE__, x)
74 #define log_std(c, x...) logger(c, CRYPT_LOG_NORMAL, __FILE__, __LINE__, x)
75 #define log_verbose(c, x...) logger(c, CRYPT_LOG_VERBOSE, __FILE__, __LINE__, x)
76 #define log_err(c, x...) do { \
77         logger(c, CRYPT_LOG_ERROR, __FILE__, __LINE__, x); \
78         set_error(x); } while(0)
79
80 int crypt_get_debug_level(void);
81 void debug_processes_using_device(const char *name);
82
83 int crypt_memlock_inc(struct crypt_device *ctx);
84 int crypt_memlock_dec(struct crypt_device *ctx);
85
86 void get_topology_alignment(const char *device,
87                             unsigned long *required_alignment, /* bytes */
88                             unsigned long *alignment_offset,   /* bytes */
89                             unsigned long default_alignment);
90
91 enum { CRYPT_RND_NORMAL = 0, CRYPT_RND_KEY = 1 };
92 int crypt_random_init(struct crypt_device *ctx);
93 int crypt_random_get(struct crypt_device *ctx, char *buf, size_t len, int quality);
94 void crypt_random_exit(void);
95 int crypt_random_default_key_rng(void);
96
97 int crypt_plain_hash(struct crypt_device *ctx,
98                      const char *hash_name,
99                      char *key, size_t key_size,
100                      const char *passphrase, size_t passphrase_size);
101 int PLAIN_activate(struct crypt_device *cd,
102                      const char *name,
103                      struct volume_key *vk,
104                      uint64_t size,
105                      uint32_t flags);
106
107 #endif /* INTERNAL_H */