Skip to content

Commit 05ae944

Browse files
authored
Unrolled build for rust-lang#120449
Rollup merge of rust-lang#120449 - udoprog:document-unsized-rc-arc-from-raw, r=m-ou-se Document requirements for unsized {Rc,Arc}::from_raw This seems to be implied due to these types supporting operation-less unsized coercions. Taken together with the [established behavior of a wide to thin pointer cast](rust-lang/reference#1451) it would enable unsafe downcasting of these containers. Note that the term "data pointer" is adopted from rust-lang/rfcs#3559 See also this [internals thread](https://internals.rust-lang.org/t/can-unsafe-smart-pointer-downcasts-be-correct/20229/2).
2 parents 62fb0db + bdbbf04 commit 05ae944

File tree

2 files changed

+122
-26
lines changed

2 files changed

+122
-26
lines changed

library/alloc/src/rc.rs

+61-13
Original file line numberDiff line numberDiff line change
@@ -1184,12 +1184,19 @@ impl<T: ?Sized> Rc<T> {
11841184
/// Constructs an `Rc<T>` from a raw pointer.
11851185
///
11861186
/// The raw pointer must have been previously returned by a call to
1187-
/// [`Rc<U>::into_raw`][into_raw] where `U` must have the same size
1188-
/// and alignment as `T`. This is trivially true if `U` is `T`.
1189-
/// Note that if `U` is not `T` but has the same size and alignment, this is
1190-
/// basically like transmuting references of different types. See
1191-
/// [`mem::transmute`][transmute] for more information on what
1192-
/// restrictions apply in this case.
1187+
/// [`Rc<U>::into_raw`][into_raw] with the following requirements:
1188+
///
1189+
/// * If `U` is sized, it must have the same size and alignment as `T`. This
1190+
/// is trivially true if `U` is `T`.
1191+
/// * If `U` is unsized, its data pointer must have the same size and
1192+
/// alignment as `T`. This is trivially true if `Rc<U>` was constructed
1193+
/// through `Rc<T>` and then converted to `Rc<U>` through an [unsized
1194+
/// coercion].
1195+
///
1196+
/// Note that if `U` or `U`'s data pointer is not `T` but has the same size
1197+
/// and alignment, this is basically like transmuting references of
1198+
/// different types. See [`mem::transmute`][transmute] for more information
1199+
/// on what restrictions apply in this case.
11931200
///
11941201
/// The raw pointer must point to a block of memory allocated by the global allocator
11951202
///
@@ -1201,6 +1208,7 @@ impl<T: ?Sized> Rc<T> {
12011208
///
12021209
/// [into_raw]: Rc::into_raw
12031210
/// [transmute]: core::mem::transmute
1211+
/// [unsized coercion]: https://doc.rust-lang.org/reference/type-coercions.html#unsized-coercions
12041212
///
12051213
/// # Examples
12061214
///
@@ -1220,6 +1228,20 @@ impl<T: ?Sized> Rc<T> {
12201228
///
12211229
/// // The memory was freed when `x` went out of scope above, so `x_ptr` is now dangling!
12221230
/// ```
1231+
///
1232+
/// Convert a slice back into its original array:
1233+
///
1234+
/// ```
1235+
/// use std::rc::Rc;
1236+
///
1237+
/// let x: Rc<[u32]> = Rc::new([1, 2, 3]);
1238+
/// let x_ptr: *const [u32] = Rc::into_raw(x);
1239+
///
1240+
/// unsafe {
1241+
/// let x: Rc<[u32; 3]> = Rc::from_raw(x_ptr.cast::<[u32; 3]>());
1242+
/// assert_eq!(&*x, &[1, 2, 3]);
1243+
/// }
1244+
/// ```
12231245
#[inline]
12241246
#[stable(feature = "rc_raw", since = "1.17.0")]
12251247
pub unsafe fn from_raw(ptr: *const T) -> Self {
@@ -1344,13 +1366,20 @@ impl<T: ?Sized, A: Allocator> Rc<T, A> {
13441366

13451367
/// Constructs an `Rc<T, A>` from a raw pointer in the provided allocator.
13461368
///
1347-
/// The raw pointer must have been previously returned by a call to
1348-
/// [`Rc<U, A>::into_raw`][into_raw] where `U` must have the same size
1349-
/// and alignment as `T`. This is trivially true if `U` is `T`.
1350-
/// Note that if `U` is not `T` but has the same size and alignment, this is
1351-
/// basically like transmuting references of different types. See
1352-
/// [`mem::transmute`] for more information on what
1353-
/// restrictions apply in this case.
1369+
/// The raw pointer must have been previously returned by a call to [`Rc<U,
1370+
/// A>::into_raw`][into_raw] with the following requirements:
1371+
///
1372+
/// * If `U` is sized, it must have the same size and alignment as `T`. This
1373+
/// is trivially true if `U` is `T`.
1374+
/// * If `U` is unsized, its data pointer must have the same size and
1375+
/// alignment as `T`. This is trivially true if `Rc<U>` was constructed
1376+
/// through `Rc<T>` and then converted to `Rc<U>` through an [unsized
1377+
/// coercion].
1378+
///
1379+
/// Note that if `U` or `U`'s data pointer is not `T` but has the same size
1380+
/// and alignment, this is basically like transmuting references of
1381+
/// different types. See [`mem::transmute`][transmute] for more information
1382+
/// on what restrictions apply in this case.
13541383
///
13551384
/// The raw pointer must point to a block of memory allocated by `alloc`
13561385
///
@@ -1361,6 +1390,8 @@ impl<T: ?Sized, A: Allocator> Rc<T, A> {
13611390
/// even if the returned `Rc<T>` is never accessed.
13621391
///
13631392
/// [into_raw]: Rc::into_raw
1393+
/// [transmute]: core::mem::transmute
1394+
/// [unsized coercion]: https://doc.rust-lang.org/reference/type-coercions.html#unsized-coercions
13641395
///
13651396
/// # Examples
13661397
///
@@ -1383,6 +1414,23 @@ impl<T: ?Sized, A: Allocator> Rc<T, A> {
13831414
///
13841415
/// // The memory was freed when `x` went out of scope above, so `x_ptr` is now dangling!
13851416
/// ```
1417+
///
1418+
/// Convert a slice back into its original array:
1419+
///
1420+
/// ```
1421+
/// #![feature(allocator_api)]
1422+
///
1423+
/// use std::rc::Rc;
1424+
/// use std::alloc::System;
1425+
///
1426+
/// let x: Rc<[u32], _> = Rc::new_in([1, 2, 3], System);
1427+
/// let x_ptr: *const [u32] = Rc::into_raw(x);
1428+
///
1429+
/// unsafe {
1430+
/// let x: Rc<[u32; 3], _> = Rc::from_raw_in(x_ptr.cast::<[u32; 3]>(), System);
1431+
/// assert_eq!(&*x, &[1, 2, 3]);
1432+
/// }
1433+
/// ```
13861434
#[unstable(feature = "allocator_api", issue = "32838")]
13871435
pub unsafe fn from_raw_in(ptr: *const T, alloc: A) -> Self {
13881436
let offset = unsafe { data_offset(ptr) };

library/alloc/src/sync.rs

+61-13
Original file line numberDiff line numberDiff line change
@@ -1333,12 +1333,19 @@ impl<T: ?Sized> Arc<T> {
13331333
/// Constructs an `Arc<T>` from a raw pointer.
13341334
///
13351335
/// The raw pointer must have been previously returned by a call to
1336-
/// [`Arc<U>::into_raw`][into_raw] where `U` must have the same size and
1337-
/// alignment as `T`. This is trivially true if `U` is `T`.
1338-
/// Note that if `U` is not `T` but has the same size and alignment, this is
1339-
/// basically like transmuting references of different types. See
1340-
/// [`mem::transmute`][transmute] for more information on what
1341-
/// restrictions apply in this case.
1336+
/// [`Arc<U>::into_raw`][into_raw] with the following requirements:
1337+
///
1338+
/// * If `U` is sized, it must have the same size and alignment as `T`. This
1339+
/// is trivially true if `U` is `T`.
1340+
/// * If `U` is unsized, its data pointer must have the same size and
1341+
/// alignment as `T`. This is trivially true if `Arc<U>` was constructed
1342+
/// through `Arc<T>` and then converted to `Arc<U>` through an [unsized
1343+
/// coercion].
1344+
///
1345+
/// Note that if `U` or `U`'s data pointer is not `T` but has the same size
1346+
/// and alignment, this is basically like transmuting references of
1347+
/// different types. See [`mem::transmute`][transmute] for more information
1348+
/// on what restrictions apply in this case.
13421349
///
13431350
/// The user of `from_raw` has to make sure a specific value of `T` is only
13441351
/// dropped once.
@@ -1348,6 +1355,7 @@ impl<T: ?Sized> Arc<T> {
13481355
///
13491356
/// [into_raw]: Arc::into_raw
13501357
/// [transmute]: core::mem::transmute
1358+
/// [unsized coercion]: https://doc.rust-lang.org/reference/type-coercions.html#unsized-coercions
13511359
///
13521360
/// # Examples
13531361
///
@@ -1367,6 +1375,20 @@ impl<T: ?Sized> Arc<T> {
13671375
///
13681376
/// // The memory was freed when `x` went out of scope above, so `x_ptr` is now dangling!
13691377
/// ```
1378+
///
1379+
/// Convert a slice back into its original array:
1380+
///
1381+
/// ```
1382+
/// use std::sync::Arc;
1383+
///
1384+
/// let x: Arc<[u32]> = Arc::new([1, 2, 3]);
1385+
/// let x_ptr: *const [u32] = Arc::into_raw(x);
1386+
///
1387+
/// unsafe {
1388+
/// let x: Arc<[u32; 3]> = Arc::from_raw(x_ptr.cast::<[u32; 3]>());
1389+
/// assert_eq!(&*x, &[1, 2, 3]);
1390+
/// }
1391+
/// ```
13701392
#[inline]
13711393
#[stable(feature = "rc_raw", since = "1.17.0")]
13721394
pub unsafe fn from_raw(ptr: *const T) -> Self {
@@ -1496,13 +1518,20 @@ impl<T: ?Sized, A: Allocator> Arc<T, A> {
14961518

14971519
/// Constructs an `Arc<T, A>` from a raw pointer.
14981520
///
1499-
/// The raw pointer must have been previously returned by a call to
1500-
/// [`Arc<U, A>::into_raw`][into_raw] where `U` must have the same size and
1501-
/// alignment as `T`. This is trivially true if `U` is `T`.
1502-
/// Note that if `U` is not `T` but has the same size and alignment, this is
1503-
/// basically like transmuting references of different types. See
1504-
/// [`mem::transmute`] for more information on what
1505-
/// restrictions apply in this case.
1521+
/// The raw pointer must have been previously returned by a call to [`Arc<U,
1522+
/// A>::into_raw`][into_raw] with the following requirements:
1523+
///
1524+
/// * If `U` is sized, it must have the same size and alignment as `T`. This
1525+
/// is trivially true if `U` is `T`.
1526+
/// * If `U` is unsized, its data pointer must have the same size and
1527+
/// alignment as `T`. This is trivially true if `Arc<U>` was constructed
1528+
/// through `Arc<T>` and then converted to `Arc<U>` through an [unsized
1529+
/// coercion].
1530+
///
1531+
/// Note that if `U` or `U`'s data pointer is not `T` but has the same size
1532+
/// and alignment, this is basically like transmuting references of
1533+
/// different types. See [`mem::transmute`][transmute] for more information
1534+
/// on what restrictions apply in this case.
15061535
///
15071536
/// The raw pointer must point to a block of memory allocated by `alloc`
15081537
///
@@ -1513,6 +1542,8 @@ impl<T: ?Sized, A: Allocator> Arc<T, A> {
15131542
/// even if the returned `Arc<T>` is never accessed.
15141543
///
15151544
/// [into_raw]: Arc::into_raw
1545+
/// [transmute]: core::mem::transmute
1546+
/// [unsized coercion]: https://doc.rust-lang.org/reference/type-coercions.html#unsized-coercions
15161547
///
15171548
/// # Examples
15181549
///
@@ -1535,6 +1566,23 @@ impl<T: ?Sized, A: Allocator> Arc<T, A> {
15351566
///
15361567
/// // The memory was freed when `x` went out of scope above, so `x_ptr` is now dangling!
15371568
/// ```
1569+
///
1570+
/// Convert a slice back into its original array:
1571+
///
1572+
/// ```
1573+
/// #![feature(allocator_api)]
1574+
///
1575+
/// use std::sync::Arc;
1576+
/// use std::alloc::System;
1577+
///
1578+
/// let x: Arc<[u32], _> = Arc::new_in([1, 2, 3], System);
1579+
/// let x_ptr: *const [u32] = Arc::into_raw(x);
1580+
///
1581+
/// unsafe {
1582+
/// let x: Arc<[u32; 3], _> = Arc::from_raw_in(x_ptr.cast::<[u32; 3]>(), System);
1583+
/// assert_eq!(&*x, &[1, 2, 3]);
1584+
/// }
1585+
/// ```
15381586
#[inline]
15391587
#[unstable(feature = "allocator_api", issue = "32838")]
15401588
pub unsafe fn from_raw_in(ptr: *const T, alloc: A) -> Self {

0 commit comments

Comments
 (0)