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
|
/*
SSSD
Authors:
Simo Sorce <ssorce@redhat.com>
Copyright (C) Red Hat, Inc 2007
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* CAUTION:
* This file is also used in sss_client (pam, nss). Therefore it has to be
* minimalist and cannot include DEBUG macros or header file util.h.
*/
#ifndef _UTIL_SAFEALIGN_H
#define _UTIL_SAFEALIGN_H
#include <string.h>
#include <stdint.h>
#define SIZE_T_OVERFLOW(current, add) \
(((size_t)(add)) > (SIZE_MAX - ((size_t)(current))))
static inline void
safealign_memcpy(void *dest, const void *src, size_t n, size_t *counter)
{
memcpy(dest, src, n);
if (counter) {
*counter += n;
}
}
#define SAFEALIGN_VAR2BUF(dest, value, type, pctr) do { \
type CV_MACRO_val = (type)(value); \
safealign_memcpy(dest, &CV_MACRO_val, sizeof(type), pctr); \
} while(0)
#define SAFEALIGN_BUF2VAR_INT64(dest, src, pctr) \
safealign_memcpy(dest, src, sizeof(int64_t), pctr)
#define SAFEALIGN_VAR2BUF_INT64(dest, value, pctr) \
SAFEALIGN_VAR2BUF(dest, value, int64_t, pctr)
#define SAFEALIGN_BUF2VAR_UINT32(dest, src, pctr) \
safealign_memcpy(dest, src, sizeof(uint32_t), pctr)
#define SAFEALIGN_VAR2BUF_UINT32(dest, value, pctr) \
SAFEALIGN_VAR2BUF(dest, value, uint32_t, pctr)
#define SAFEALIGN_BUF2VAR_INT32(dest, src, pctr) \
safealign_memcpy(dest, src, sizeof(int32_t), pctr)
#define SAFEALIGN_VAR2BUF_INT32(dest, value, pctr) \
SAFEALIGN_VAR2BUF(dest, value, int32_t, pctr)
#define SAFEALIGN_BUF2VAR_UINT16(dest, src, pctr) \
safealign_memcpy(dest, src, sizeof(uint16_t), pctr)
#define SAFEALIGN_VAR2BUF_UINT16(dest, value, pctr) \
SAFEALIGN_VAR2BUF(dest, value, uint16_t, pctr)
#define SAFEALIGN_BUF2VAR_UINT32_CHECK(dest, src, len, pctr) do { \
if ((*(pctr) + sizeof(uint32_t)) > (len) || \
SIZE_T_OVERFLOW(*(pctr), sizeof(uint32_t))) return EINVAL; \
safealign_memcpy(dest, src, sizeof(uint32_t), pctr); \
} while(0)
#define SAFEALIGN_BUF2VAR_INT32_CHECK(dest, src, len, pctr) do { \
if ((*(pctr) + sizeof(int32_t)) > (len) || \
SIZE_T_OVERFLOW(*(pctr), sizeof(int32_t))) return EINVAL; \
safealign_memcpy(dest, src, sizeof(int32_t), pctr); \
} while(0)
#define SAFEALIGN_BUF2VAR_UINT16_CHECK(dest, src, len, pctr) do { \
if ((*(pctr) + sizeof(uint16_t)) > (len) || \
SIZE_T_OVERFLOW(*(pctr), sizeof(uint16_t))) return EINVAL; \
safealign_memcpy(dest, src, sizeof(uint16_t), pctr); \
} while(0)
/* Do not use these aliases in new code. Use the macros above instead. */
#define SAFEALIGN_SET_VALUE SAFEALIGN_VAR2BUF
#define SAFEALIGN_COPY_INT64 SAFEALIGN_BUF2VAR_INT64
#define SAFEALIGN_SET_INT64 SAFEALIGN_VAR2BUF_INT64
#define SAFEALIGN_COPY_UINT32 SAFEALIGN_BUF2VAR_UINT32
#define SAFEALIGN_SET_UINT32 SAFEALIGN_VAR2BUF_UINT32
#define SAFEALIGN_COPY_INT32 SAFEALIGN_BUF2VAR_INT32
#define SAFEALIGN_SET_INT32 SAFEALIGN_VAR2BUF_INT32
#define SAFEALIGN_COPY_UINT16 SAFEALIGN_BUF2VAR_UINT16
#define SAFEALIGN_SET_UINT16 SAFEALIGN_VAR2BUF_UINT16
#define SAFEALIGN_COPY_UINT32_CHECK SAFEALIGN_BUF2VAR_UINT32_CHECK
#define SAFEALIGN_COPY_INT32_CHECK SAFEALIGN_BUF2VAR_INT32_CHECK
#define SAFEALIGN_COPY_UINT16_CHECK SAFEALIGN_BUF2VAR_UINT16_CHECK
#endif /* _UTIL_SAFEALIGN_H */
|