-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtalign.c
504 lines (441 loc) · 12.1 KB
/
talign.c
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
#include <stdbool.h>
#include <stdio.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
typedef union memalign_u {
char a;
short b;
int c;
long d;
long long e;
float f;
double g;
long double h;
void *i;
void (*j)(void);
union memalign_u *k;
} memalign_t;
#define alignof(type) (sizeof(struct { char d; type x; }) - sizeof(type))
/*
* thus
*
* alignof(memalign_t)
*
* is the size in bytes of the maximally aligned type
*
* but sadly you can't do that in CPP alone.
*/
/*
* a structure unioned with array of intmax_t should be aligned well enough to
* allow access to any possible member type (except maybe float types).
*/
/*
* to increment a pointer to the next alignment:
*/
#if 0
ptr = (ptr + __BIGGEST_ALIGNMENT__) & ~(__BIGGEST_ALIGNMENT__);
#endif
/*
* struct str types
*/
enum str_type_e {
STR_UNKNOWN = 0,
STR_LITERAL = 0xF01010F0, /* use only ALS() to access */
STR_STATIC = 0xBDE0E0BD,
STR_DYNAMIC = 0xF40505F4,
STR_CONTAINER = 0xF5ACACF5,
};
/*
* XXX This could probably use some further consideration.....
*
* It must not be a valid UTF-8 string, nor can it contain an initial NUL byte.
*
* Maybe it would best be just high-bit control characters?
*
* It does not really have to be exactly 4 bytes.
*
*/
#define STR_LITERAL_PREFIX "\360\020\020\360" /* 0xF01010F0 */
/* data type for a dynamic string region */
struct str {
enum str_type_e t;
const char *p; /* text region (declared const to avoid warnings) */
/* the rest are valid and used only if type == STR_DYNAMIC */
size_t i; /* index at end of used text region */
size_t a; /* current allocation size */
};
#ifndef __UNCONST
# define __UNCONST(a) ((void *)(uintptr_t)(const void *)(a))
#endif
#ifdef USE_STR_LITERAL
/* literal str setter */
# ifdef __clang__
/* Clang rightfully warns about the lack of alignment, but we don't care */
# define S(s) \
_Pragma("clang diagnostic push") \
_Pragma("clang diagnostic ignored \"-Wcast-align\"") \
((const struct str *) STR_LITERAL_PREFIX s) \
_Pragma("clang diagnostic pop")
# else
/* GCC complains about the Clang pragma statements */
# define S(s) \
((const struct str *) STR_LITERAL_PREFIX s)
# endif
#endif
/* literal str getter */
#define ALS(s) ((const char *) s + sizeof(((struct str *) NULL)->t))
/*
* "auto" (stack) struct str's can be defined with SC(), from any
* NUL-terminated array of chars (literal, auto, static, heap).
*
* They are of course only valid in the current stack frame.
*
* They can be used whenever calling a function that takes a struct str *, but
* you only have a [const] char * and you don't want to mess with allocating a
* struct str.
*/
#define SC(s) (& ((const struct str) {.t = STR_CONTAINER, .p = (s)}))
/*
* secret private static strings!
*
* This works because you can put a compound statement into an expression in
* GCC and the value of the last statement in the block is returned as the
* expression's value. (so-called "statement expressions", available in most
* major compilers)
*
* The only limitation is this cannot be used as an initializer at file-level.
*/
#define SS(s) ( \
{ \
static const struct str pstr = {.t = STR_STATIC, .p = (s)}; \
&pstr; \
})
enum str_type_e
str_type(const struct str *);
enum str_type_e
str_type(const struct str *unk_str)
{
#ifdef USE_STR_LITERAL
const unsigned char *p0;
const unsigned char *p;
#endif
unsigned int type;
#ifdef DEBUG
assert(sizeof(type) == sizeof(unk_str->t));
#endif
#ifdef USE_STR_LITERAL
/*
* Since it is not possible to specify the alignment of string
* literals, accessing s blindly as a struct when it has been produced
* by the S() macro above, and in particular the integer s->t, may
* result in an un-aligned access, and thus SIGBUS, on some platforms.
*
* In fact recent versions of Clang's "-fcatch-undefined-behavior"
* option will generate an illegal instruction for this dereference just
* to prove the point.
*
* Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
* Target: x86_64-apple-darwin13.0.0
*
* The newer "-fsanitize=undefined" option will by default print a
* warning at runtime.
*
* So, instead of acessing it directly we read it out byte-by-byte.
*
* Note we do not have to do this dance if we only use STR_STATIC and
* never STR_LITERAL.
*/
p0 = (const unsigned char *) unk_str;
type = 0;
for (p = p0; (size_t) (p - p0) < sizeof(unk_str->t); p++) {
#ifdef DEBUG
fprintf(stderr, "str_type(): @%u, *p = 0x%02x, type = 0x%08x\n",
(unsigned int) (p - p0),
(unsigned int) *p,
type);
#endif
if (*p == '\0') {
break;
}
type <<= 8;
type |= (unsigned int) *p;
}
#else
type = unk_str->t;
#endif
#ifdef DEBUG
fprintf(stderr, "str_type(): type = 0x%08x\n", type);
#endif
switch (type) {
case STR_DYNAMIC:
case STR_LITERAL:
case STR_CONTAINER:
case STR_STATIC:
case STR_UNKNOWN:
break;
default:
#ifdef DEBUG
assert(1 == 0);
#endif
return STR_UNKNOWN;
}
return type;
}
/* a getter to optionally wrap around ALS() */
#ifdef USE_STR_LITERAL
# define AS(str) ((str_type(str) == STR_LITERAL) ? ALS(str) : str->p)
# else
# define AS(str) ((str)->p)
#endif
/* STR_BUMP - the basic quantum of allocation space */
#define STR_BUMP (64)
struct str *
str_init(const char *);
struct str *
str_init(const char *cs)
{
struct str *d_str;
d_str = malloc((size_t) STR_BUMP);
if (d_str == NULL) {
return NULL;
}
d_str->t = STR_DYNAMIC;
d_str->a = ((strlen(cs) + 1) / STR_BUMP) + STR_BUMP;
d_str->p = malloc(d_str->a);
if (d_str->p == NULL) {
free(d_str);
return NULL;
}
strcpy(__UNCONST(d_str->p), cs);
d_str->i = strlen(d_str->p);
return d_str;
}
void
str_free(struct str *);
void
str_free(struct str *s)
{
if (s) {
if (s->p) {
free(__UNCONST(s->p));
}
free(s);
}
return;
}
void
print_str_info(const struct str *,
long);
void
print_str_info(const struct str *s,
long max)
{
const struct str *un_str = SC("un-");
printf("\n%saligned struct str at %p, (off by %ju)\n",
(((uintptr_t) s % (uintptr_t) max) == 0) ? "" : AS(un_str),
s,
(uintmax_t) ((uintptr_t) s % (uintptr_t) max));
switch (str_type(s)) {
case STR_DYNAMIC:
printf("string contains DYNAMIC content: '%s', i=%ju, s=%ju\n", s->p, (uintmax_t) s->i, (uintmax_t) s->a);
break;
case STR_STATIC:
printf("string contains STATIC content: '%s'\n", s->p);
break;
case STR_CONTAINER:
printf("string contains CONTAINER content: '%s'\n", s->p);
break;
case STR_LITERAL:
printf("string contains LITERAL content: '%s'\n", ALS(s));
break;
case STR_UNKNOWN:
printf("string contains UNKNOWN content at %p\n", s);
break;
}
return;
}
void
warn_char_to_struct_align(long);
void
warn_char_to_struct_align(long max)
{
const struct str *a_str = SC("this is an auto string");
#ifdef USE_STR_LITERAL
const struct str *l_str = S("this is a literal string");
#endif
const struct str *s_str = SS("this is a static string");
struct str *d_str;
d_str = str_init("dynamic str (inited from a literal)");
print_str_info(a_str, max);
#ifdef USE_STR_LITERAL
print_str_info(l_str, max); /* un-aligned l_str */
#endif
print_str_info(s_str, max);
print_str_info(d_str, max);
str_free(d_str);
return;
}
void
demo_unaligned_access(long);
void
demo_unaligned_access(long max)
{
#define UA_STR (STR_LITERAL_PREFIX "a hopefully un-aligned struct")
#ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wcast-align"
#endif
const struct str *r_str = (const struct str *) UA_STR;
#ifdef __clang__
# pragma clang diagnostic pop
#endif
char *trick;
struct str *ua_str;
trick = malloc(sizeof(UA_STR) + ((unsigned long) max - 1));
#if defined(__clang__)
/* XXX: expect clang -Wcast-align to warn of required alignment change */
# if (__clang_major__ >= 5) /* 5, or 4.something */
printf("\nIf you've compiled with -fcatch-undefined-behaviour, expect a crash now....\n");
# endif
#endif
/*
* Clang warns:
talign.c:345:11: warning: cast from 'char *' to 'struct str *' increases required alignment from 1 to 8 [-Wcast-align]
*/
ua_str = (struct str *) (trick + (max - 1));
memcpy(ua_str, r_str, sizeof(UA_STR));
/*
* For the switch() expr below Apple LLVM version 8.1.0 (clang-802.0.42)
* with -fsanitize=undefined says:
*
talign.c:371:18: runtime error: member access within misaligned address 0x7fbce840241f for type 'struct str', which requires 8 byte alignment
0x7fbce840241f: note: pointer points here
e8 bc 7f 00 f0 10 10 f0 61 20 68 6f 70 65 66 75 6c 6c 79 20 75 6e 2d 61 6c 69 67 6e 65 64 20 73
^
talign.c:371:18: runtime error: load of misaligned address 0x7fbce840241f for type 'enum str_type_e', which requires 8 byte alignment
0x7fbce840241f: note: pointer points here
e8 bc 7f 00 f0 10 10 f0 61 20 68 6f 70 65 66 75 6c 6c 79 20 75 6e 2d 61 6c 69 67 6e 65 64 20 73
^
*/
printf("\n%saligned struct str @%p, (off by %ld)\n",
(((uintptr_t) ua_str % (uintptr_t) max) == 0) ? "" : "un-",
ua_str, (long) ((uintptr_t) ua_str % (uintptr_t) max));
#ifndef __clang__
printf("If running on alignment sensitive platform, expect a SIGBUS now....\n");
#endif
switch (ua_str->t) {
case STR_DYNAMIC:
printf("DYNAMIC ua_str: %s\n", ua_str->p);
break;
case STR_CONTAINER:
printf("CONTAINER ua_str: %s\n", ua_str->p);
break;
case STR_STATIC:
printf("STATIC ua_str: %s\n", ua_str->p);
break;
case STR_LITERAL:
printf("LITERAL ua_str: %s\n", ALS(ua_str));
break;
case STR_UNKNOWN:
printf("UNKNOWN ua_str\n");
break;
}
free(trick);
return;
}
/*
* Originally from:
*
* maxalign.c
* A program that prints -DMAXALIGN=n, when the storage alignment
* is not equal to sizeof (union align); see src/arena.c and
* src/memchk.c.
* Dave Hanson / [email protected]
* created Fri Jul 10 16:35:53 EDT 1998 by drh
*/
/*
* On most platforms, malloc returns pointers to blocks that are aligned on
* addresses that are multiples of the size of the largest basic data type.
* Some code uses a union to determine this multiple.
*
* However alignments are less restrictive on some platforms and for these
* ALIGN can be defined as the alignment required.
*
* This program attempts to determine the correct value for ALIGN, if one is
* necessary, and echo the appropriate CPP line.
*
* Unfortunately, the method used relies on the C compiler using the same
* alignments as malloc(), which is not required.
*
* malloc() is the final authority: If it returns addresses that are multiples
* of sizeof(union align), then ALIGN is unnecessary; otherwise, ALIGN must
* provide the alignment.
*
* Incorrect values of ALIGN can cause crashes and assertion failures.
*/
union align {
char c;
int i;
long l;
long *lp;
void *p;
void (*fp)(void);
float f;
double d;
long double ld;
};
typedef void (*functp);
#define yy \
xx(char, c);\
xx(int, i);\
xx(long, l);\
xx(long *, lp);\
xx(void *, p);\
xx(functp, fp);\
xx(float, f);\
xx(double, d);\
xx(long double, ld);
int
main(void);
int
main()
{
long max = 0;
#define xx(t,v) struct { char pad; t v; } v
yy;
#undef xx
#define xx(t,v) if ((char *)&v.v - &v.pad > max) \
max = (char *)&v.v - &v.pad
yy;
#undef yy
assert(max > 0);
printf("\nsizeof(union align) = %ju\t(naive alignment)\n", (uintmax_t) sizeof(union align));
if (max != sizeof(union align)) {
printf("#define ALIGN\t%ld\t/* calculated ideal alignment */\n", max);
} else {
printf("#define ALIGN\tsizeof(union align)\n");
}
#ifdef __BIGGEST_ALIGNMENT__
printf("Compiler says:\t__BIGGEST_ALIGNMENT__ = %d", __BIGGEST_ALIGNMENT__);
#endif
/*
* XXX hmmm..... Clang 5.0 says:
*
* warning: cast from 'char *' to 'struct str *' increases required alignment from 1 to 8
*
* Suggesting that the minimum alignment is 8, but "max" = 16
*/
warn_char_to_struct_align(max);
demo_unaligned_access(max);
exit(EXIT_SUCCESS);
/* NOTREACHED */
}
/*
* Local Variables:
* eval: (make-local-variable 'compile-command)
* compile-command: (let ((fn (file-name-sans-extension (file-name-nondirectory (buffer-file-name))))) (concat "rm -f " fn "; " (default-value 'compile-command) " " fn " && ./" fn))
* End:
*/