@@ -65,11 +65,13 @@ pub struct Layout {
65
65
66
66
impl Layout {
67
67
/// Constructs a `Layout` from a given `size` and `align`,
68
- /// or returns `None` if either of the following conditions
68
+ /// or returns `None` if any of the following conditions
69
69
/// are not met:
70
70
///
71
71
/// * `align` must be a power of two,
72
72
///
73
+ /// * `align` must not exceed 2^31 (i.e. `1 << 31`),
74
+ ///
73
75
/// * `size`, when rounded up to the nearest multiple of `align`,
74
76
/// must not overflow (i.e. the rounded value must be less than
75
77
/// `usize::MAX`).
@@ -79,6 +81,10 @@ impl Layout {
79
81
return None ;
80
82
}
81
83
84
+ if align > ( 1 << 31 ) {
85
+ return None ;
86
+ }
87
+
82
88
// (power-of-two implies align != 0.)
83
89
84
90
// Rounded up size is:
@@ -106,8 +112,10 @@ impl Layout {
106
112
///
107
113
/// # Unsafety
108
114
///
109
- /// This function is unsafe as it does not verify that `align` is a power of
110
- /// two nor that `size` aligned to `align` fits within the address space.
115
+ /// This function is unsafe as it does not verify that `align` is
116
+ /// a power-of-two that is also less than or equal to 2^31, nor
117
+ /// that `size` aligned to `align` fits within the address space
118
+ /// (i.e. the `Layout::from_size_align` preconditions).
111
119
#[ inline]
112
120
pub unsafe fn from_size_align_unchecked ( size : usize , align : usize ) -> Layout {
113
121
Layout { size : size, align : align }
@@ -217,10 +225,10 @@ impl Layout {
217
225
Some ( alloc_size) => alloc_size,
218
226
} ;
219
227
220
- // We can assume that `self.align` is a power-of-two.
221
- // Furthermore, `alloc_size` has alreayd been rounded up
222
- // to a multiple of `self.align`; therefore, the call
223
- // to `Layout::from_size_align` below should never panic.
228
+ // We can assume that `self.align` is a power-of-two that does
229
+ // not exceed 2^31. Furthermore, `alloc_size` has already been
230
+ // rounded up to a multiple of `self.align`; therefore, the
231
+ // call to `Layout::from_size_align` below should never panic.
224
232
Some ( ( Layout :: from_size_align ( alloc_size, self . align ) . unwrap ( ) , padded_size) )
225
233
}
226
234
0 commit comments