]> git.lizzy.rs Git - rust.git/blob - src/test/ui/union-ub-fat-ptr.rs
test for detecting bad data inside trait objects / slices
[rust.git] / src / test / ui / union-ub-fat-ptr.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // normalize-stderr-test "alignment \d+" -> "alignment N"
12 // normalize-stderr-test "offset \d+" -> "offset N"
13 // normalize-stderr-test "allocation \d+" -> "allocation N"
14 // normalize-stderr-test "size \d+" -> "size N"
15
16 union BoolTransmute {
17   val: u8,
18   bl: bool,
19 }
20
21 #[repr(C)]
22 #[derive(Copy, Clone)]
23 struct SliceRepr {
24     ptr: *const u8,
25     len: usize,
26 }
27
28 #[repr(C)]
29 #[derive(Copy, Clone)]
30 struct BadSliceRepr {
31     ptr: *const u8,
32     len: &'static u8,
33 }
34
35 union SliceTransmute {
36     repr: SliceRepr,
37     bad: BadSliceRepr,
38     slice: &'static [u8],
39     str: &'static str,
40 }
41
42 #[repr(C)]
43 #[derive(Copy, Clone)]
44 struct DynRepr {
45     ptr: *const u8,
46     vtable: *const u8,
47 }
48
49 #[repr(C)]
50 #[derive(Copy, Clone)]
51 struct DynRepr2 {
52     ptr: *const u8,
53     vtable: *const u64,
54 }
55
56 #[repr(C)]
57 #[derive(Copy, Clone)]
58 struct BadDynRepr {
59     ptr: *const u8,
60     vtable: usize,
61 }
62
63 union DynTransmute {
64     repr: DynRepr,
65     repr2: DynRepr2,
66     bad: BadDynRepr,
67     rust: &'static Trait,
68 }
69
70 trait Trait {}
71 impl Trait for bool {}
72
73 // OK
74 const A: &str = unsafe { SliceTransmute { repr: SliceRepr { ptr: &42, len: 1 } }.str};
75 // bad str
76 const B: &str = unsafe { SliceTransmute { repr: SliceRepr { ptr: &42, len: 999 } }.str};
77 //~^ ERROR this constant likely exhibits undefined behavior
78 // bad str
79 const C: &str = unsafe { SliceTransmute { bad: BadSliceRepr { ptr: &42, len: &3 } }.str};
80 //~^ ERROR this constant likely exhibits undefined behavior
81
82 // OK
83 const A2: &[u8] = unsafe { SliceTransmute { repr: SliceRepr { ptr: &42, len: 1 } }.slice};
84 // bad slice
85 const B2: &[u8] = unsafe { SliceTransmute { repr: SliceRepr { ptr: &42, len: 999 } }.slice};
86 //~^ ERROR this constant likely exhibits undefined behavior
87 // bad slice
88 const C2: &[u8] = unsafe { SliceTransmute { bad: BadSliceRepr { ptr: &42, len: &3 } }.slice};
89 //~^ ERROR this constant likely exhibits undefined behavior
90
91 // bad trait object
92 const D: &Trait = unsafe { DynTransmute { repr: DynRepr { ptr: &92, vtable: &3 } }.rust};
93 //~^ ERROR this constant likely exhibits undefined behavior
94 // bad trait object
95 const E: &Trait = unsafe { DynTransmute { repr2: DynRepr2 { ptr: &92, vtable: &3 } }.rust};
96 //~^ ERROR this constant likely exhibits undefined behavior
97 // bad trait object
98 const F: &Trait = unsafe { DynTransmute { bad: BadDynRepr { ptr: &92, vtable: 3 } }.rust};
99 //~^ ERROR this constant likely exhibits undefined behavior
100
101 // bad data *inside* the trait object
102 const G: &Trait = &unsafe { BoolTransmute { val: 3 }.bl };
103 //~^ ERROR this constant likely exhibits undefined behavior
104
105 // bad data *inside* the slice
106 const H: &[bool] = &[unsafe { BoolTransmute { val: 3 }.bl }];
107 //~^ ERROR this constant likely exhibits undefined behavior
108
109 fn main() {
110 }