Skip to content

Commit 07f1e61

Browse files
Rollup merge of rust-lang#136193 - oli-obk:pattern-type-ffi-checks, r=chenyukang
Implement pattern type ffi checks Previously we just rejected pattern types outright in FFI, but that was never meant to be a permanent situation. We'll need them supported to use them as the building block for `NonZero` and `NonNull` after all (both of which are FFI safe). best reviewed commit by commit.
2 parents 608990f + 60ed9db commit 07f1e61

File tree

8 files changed

+178
-88
lines changed

8 files changed

+178
-88
lines changed

compiler/rustc_lint/messages.ftl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,6 @@ lint_improper_ctypes_only_phantomdata = composed only of `PhantomData`
390390
391391
lint_improper_ctypes_opaque = opaque types have no C equivalent
392392
393-
lint_improper_ctypes_pat_help = consider using the base type instead
394-
395-
lint_improper_ctypes_pat_reason = pattern types have no C equivalent
396393
lint_improper_ctypes_slice_help = consider using a raw pointer instead
397394
398395
lint_improper_ctypes_slice_reason = slices have no C equivalent

compiler/rustc_lint/src/foreign_modules.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -241,10 +241,7 @@ fn structurally_same_type_impl<'tcx>(
241241
if let ty::Adt(def, args) = *ty.kind() {
242242
let is_transparent = def.repr().transparent();
243243
let is_non_null = types::nonnull_optimization_guaranteed(tcx, def);
244-
debug!(
245-
"non_transparent_ty({:?}) -- type is transparent? {}, type is non-null? {}",
246-
ty, is_transparent, is_non_null
247-
);
244+
debug!(?ty, is_transparent, is_non_null);
248245
if is_transparent && !is_non_null {
249246
debug_assert_eq!(def.variants().len(), 1);
250247
let v = &def.variant(FIRST_VARIANT);
@@ -378,14 +375,14 @@ fn structurally_same_type_impl<'tcx>(
378375

379376
// An Adt and a primitive or pointer type. This can be FFI-safe if non-null
380377
// enum layout optimisation is being applied.
381-
(Adt(..), _) if is_primitive_or_pointer(b) => {
378+
(Adt(..) | Pat(..), _) if is_primitive_or_pointer(b) => {
382379
if let Some(a_inner) = types::repr_nullable_ptr(tcx, typing_env, a, ckind) {
383380
a_inner == b
384381
} else {
385382
false
386383
}
387384
}
388-
(_, Adt(..)) if is_primitive_or_pointer(a) => {
385+
(_, Adt(..) | Pat(..)) if is_primitive_or_pointer(a) => {
389386
if let Some(b_inner) = types::repr_nullable_ptr(tcx, typing_env, b, ckind) {
390387
b_inner == a
391388
} else {

compiler/rustc_lint/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#![feature(rustc_attrs)]
3434
#![feature(rustdoc_internals)]
3535
#![feature(trait_upcasting)]
36+
#![feature(try_blocks)]
3637
#![warn(unreachable_pub)]
3738
// tidy-alphabetical-end
3839

compiler/rustc_lint/src/types.rs

Lines changed: 91 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -861,6 +861,37 @@ fn ty_is_known_nonnull<'tcx>(
861861
.filter_map(|variant| transparent_newtype_field(tcx, variant))
862862
.any(|field| ty_is_known_nonnull(tcx, typing_env, field.ty(tcx, args), mode))
863863
}
864+
ty::Pat(base, pat) => {
865+
ty_is_known_nonnull(tcx, typing_env, *base, mode)
866+
|| Option::unwrap_or_default(
867+
try {
868+
match **pat {
869+
ty::PatternKind::Range { start, end, include_end } => {
870+
match (start, end) {
871+
(Some(start), None) => {
872+
start.try_to_value()?.try_to_bits(tcx, typing_env)? > 0
873+
}
874+
(Some(start), Some(end)) => {
875+
let start =
876+
start.try_to_value()?.try_to_bits(tcx, typing_env)?;
877+
let end =
878+
end.try_to_value()?.try_to_bits(tcx, typing_env)?;
879+
880+
if include_end {
881+
// This also works for negative numbers, as we just need
882+
// to ensure we aren't wrapping over zero.
883+
start > 0 && end >= start
884+
} else {
885+
start > 0 && end > start
886+
}
887+
}
888+
_ => false,
889+
}
890+
}
891+
}
892+
},
893+
)
894+
}
864895
_ => false,
865896
}
866897
}
@@ -891,9 +922,8 @@ fn get_nullable_type<'tcx>(
891922
};
892923
return get_nullable_type(tcx, typing_env, inner_field_ty);
893924
}
894-
ty::Int(ty) => Ty::new_int(tcx, ty),
895-
ty::Uint(ty) => Ty::new_uint(tcx, ty),
896-
ty::RawPtr(ty, mutbl) => Ty::new_ptr(tcx, ty, mutbl),
925+
ty::Pat(base, ..) => return get_nullable_type(tcx, typing_env, base),
926+
ty::Int(_) | ty::Uint(_) | ty::RawPtr(..) => ty,
897927
// As these types are always non-null, the nullable equivalent of
898928
// `Option<T>` of these types are their raw pointer counterparts.
899929
ty::Ref(_region, ty, mutbl) => Ty::new_ptr(tcx, ty, mutbl),
@@ -949,63 +979,69 @@ pub(crate) fn repr_nullable_ptr<'tcx>(
949979
ckind: CItemKind,
950980
) -> Option<Ty<'tcx>> {
951981
debug!("is_repr_nullable_ptr(tcx, ty = {:?})", ty);
952-
if let ty::Adt(ty_def, args) = ty.kind() {
953-
let field_ty = match &ty_def.variants().raw[..] {
954-
[var_one, var_two] => match (&var_one.fields.raw[..], &var_two.fields.raw[..]) {
955-
([], [field]) | ([field], []) => field.ty(tcx, args),
956-
([field1], [field2]) => {
957-
let ty1 = field1.ty(tcx, args);
958-
let ty2 = field2.ty(tcx, args);
959-
960-
if is_niche_optimization_candidate(tcx, typing_env, ty1) {
961-
ty2
962-
} else if is_niche_optimization_candidate(tcx, typing_env, ty2) {
963-
ty1
964-
} else {
965-
return None;
982+
match ty.kind() {
983+
ty::Adt(ty_def, args) => {
984+
let field_ty = match &ty_def.variants().raw[..] {
985+
[var_one, var_two] => match (&var_one.fields.raw[..], &var_two.fields.raw[..]) {
986+
([], [field]) | ([field], []) => field.ty(tcx, args),
987+
([field1], [field2]) => {
988+
let ty1 = field1.ty(tcx, args);
989+
let ty2 = field2.ty(tcx, args);
990+
991+
if is_niche_optimization_candidate(tcx, typing_env, ty1) {
992+
ty2
993+
} else if is_niche_optimization_candidate(tcx, typing_env, ty2) {
994+
ty1
995+
} else {
996+
return None;
997+
}
966998
}
967-
}
999+
_ => return None,
1000+
},
9681001
_ => return None,
969-
},
970-
_ => return None,
971-
};
1002+
};
9721003

973-
if !ty_is_known_nonnull(tcx, typing_env, field_ty, ckind) {
974-
return None;
975-
}
1004+
if !ty_is_known_nonnull(tcx, typing_env, field_ty, ckind) {
1005+
return None;
1006+
}
9761007

977-
// At this point, the field's type is known to be nonnull and the parent enum is Option-like.
978-
// If the computed size for the field and the enum are different, the nonnull optimization isn't
979-
// being applied (and we've got a problem somewhere).
980-
let compute_size_skeleton = |t| SizeSkeleton::compute(t, tcx, typing_env).ok();
981-
if !compute_size_skeleton(ty)?.same_size(compute_size_skeleton(field_ty)?) {
982-
bug!("improper_ctypes: Option nonnull optimization not applied?");
983-
}
1008+
// At this point, the field's type is known to be nonnull and the parent enum is Option-like.
1009+
// If the computed size for the field and the enum are different, the nonnull optimization isn't
1010+
// being applied (and we've got a problem somewhere).
1011+
let compute_size_skeleton = |t| SizeSkeleton::compute(t, tcx, typing_env).ok();
1012+
if !compute_size_skeleton(ty)?.same_size(compute_size_skeleton(field_ty)?) {
1013+
bug!("improper_ctypes: Option nonnull optimization not applied?");
1014+
}
9841015

985-
// Return the nullable type this Option-like enum can be safely represented with.
986-
let field_ty_layout = tcx.layout_of(typing_env.as_query_input(field_ty));
987-
if field_ty_layout.is_err() && !field_ty.has_non_region_param() {
988-
bug!("should be able to compute the layout of non-polymorphic type");
989-
}
1016+
// Return the nullable type this Option-like enum can be safely represented with.
1017+
let field_ty_layout = tcx.layout_of(typing_env.as_query_input(field_ty));
1018+
if field_ty_layout.is_err() && !field_ty.has_non_region_param() {
1019+
bug!("should be able to compute the layout of non-polymorphic type");
1020+
}
9901021

991-
let field_ty_abi = &field_ty_layout.ok()?.backend_repr;
992-
if let BackendRepr::Scalar(field_ty_scalar) = field_ty_abi {
993-
match field_ty_scalar.valid_range(&tcx) {
994-
WrappingRange { start: 0, end }
995-
if end == field_ty_scalar.size(&tcx).unsigned_int_max() - 1 =>
996-
{
997-
return Some(get_nullable_type(tcx, typing_env, field_ty).unwrap());
998-
}
999-
WrappingRange { start: 1, .. } => {
1000-
return Some(get_nullable_type(tcx, typing_env, field_ty).unwrap());
1001-
}
1002-
WrappingRange { start, end } => {
1003-
unreachable!("Unhandled start and end range: ({}, {})", start, end)
1004-
}
1005-
};
1022+
let field_ty_abi = &field_ty_layout.ok()?.backend_repr;
1023+
if let BackendRepr::Scalar(field_ty_scalar) = field_ty_abi {
1024+
match field_ty_scalar.valid_range(&tcx) {
1025+
WrappingRange { start: 0, end }
1026+
if end == field_ty_scalar.size(&tcx).unsigned_int_max() - 1 =>
1027+
{
1028+
return Some(get_nullable_type(tcx, typing_env, field_ty).unwrap());
1029+
}
1030+
WrappingRange { start: 1, .. } => {
1031+
return Some(get_nullable_type(tcx, typing_env, field_ty).unwrap());
1032+
}
1033+
WrappingRange { start, end } => {
1034+
unreachable!("Unhandled start and end range: ({}, {})", start, end)
1035+
}
1036+
};
1037+
}
1038+
None
10061039
}
1040+
ty::Pat(base, pat) => match **pat {
1041+
ty::PatternKind::Range { .. } => get_nullable_type(tcx, typing_env, *base),
1042+
},
1043+
_ => None,
10071044
}
1008-
None
10091045
}
10101046

10111047
impl<'a, 'tcx> ImproperCTypesVisitor<'a, 'tcx> {
@@ -1240,11 +1276,9 @@ impl<'a, 'tcx> ImproperCTypesVisitor<'a, 'tcx> {
12401276
help: Some(fluent::lint_improper_ctypes_char_help),
12411277
},
12421278

1243-
ty::Pat(..) => FfiUnsafe {
1244-
ty,
1245-
reason: fluent::lint_improper_ctypes_pat_reason,
1246-
help: Some(fluent::lint_improper_ctypes_pat_help),
1247-
},
1279+
// It's just extra invariants on the type that you need to uphold,
1280+
// but only the base type is relevant for being representable in FFI.
1281+
ty::Pat(base, ..) => self.check_type_for_ffi(acc, base),
12481282

12491283
ty::Int(ty::IntTy::I128) | ty::Uint(ty::UintTy::U128) => {
12501284
FfiUnsafe { ty, reason: fluent::lint_improper_ctypes_128bit, help: None }

tests/ui/lint/clashing-extern-fn.rs

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//@ check-pass
22
//@ aux-build:external_extern_fn.rs
33
#![crate_type = "lib"]
4-
4+
#![feature(pattern_type_macro, pattern_types)]
55
mod redeclared_different_signature {
66
mod a {
77
extern "C" {
@@ -490,3 +490,33 @@ mod hidden_niche {
490490
}
491491
}
492492
}
493+
494+
mod pattern_types {
495+
mod a {
496+
use std::pat::pattern_type;
497+
#[repr(transparent)]
498+
struct NonZeroUsize(pattern_type!(usize is 1..));
499+
extern "C" {
500+
fn pt_non_zero_usize() -> pattern_type!(usize is 1..);
501+
fn pt_non_zero_usize_opt() -> Option<pattern_type!(usize is 1..)>;
502+
fn pt_non_zero_usize_opt_full_range() -> Option<pattern_type!(usize is 0..)>;
503+
//~^ WARN not FFI-safe
504+
fn pt_non_null_ptr() -> pattern_type!(usize is 1..);
505+
fn pt_non_zero_usize_wrapper() -> NonZeroUsize;
506+
fn pt_non_zero_usize_wrapper_opt() -> Option<NonZeroUsize>;
507+
}
508+
}
509+
mod b {
510+
extern "C" {
511+
// If there's a clash in either of these cases you're either gaining an incorrect
512+
// invariant that the value is non-zero, or you're missing out on that invariant. Both
513+
// cases are warning for, from both a caller-convenience and optimisation perspective.
514+
fn pt_non_zero_usize() -> usize;
515+
fn pt_non_zero_usize_opt() -> usize;
516+
fn pt_non_null_ptr() -> *const ();
517+
//~^ WARN `pt_non_null_ptr` redeclared with a different signature
518+
fn pt_non_zero_usize_wrapper() -> usize;
519+
fn pt_non_zero_usize_wrapper_opt() -> usize;
520+
}
521+
}
522+
}

tests/ui/lint/clashing-extern-fn.stderr

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ LL | fn hidden_niche_unsafe_cell() -> Option<UnsafeCell<NonZero<usiz
1717
= help: consider adding a `#[repr(C)]`, `#[repr(transparent)]`, or integer `#[repr(...)]` attribute to this enum
1818
= note: enum has no representation hint
1919

20+
warning: `extern` block uses type `Option<(usize) is 0..=>`, which is not FFI-safe
21+
--> $DIR/clashing-extern-fn.rs:502:54
22+
|
23+
LL | fn pt_non_zero_usize_opt_full_range() -> Option<pattern_type!(usize is 0..)>;
24+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not FFI-safe
25+
|
26+
= help: consider adding a `#[repr(C)]`, `#[repr(transparent)]`, or integer `#[repr(...)]` attribute to this enum
27+
= note: enum has no representation hint
28+
2029
warning: `clash` redeclared with a different signature
2130
--> $DIR/clashing-extern-fn.rs:13:13
2231
|
@@ -258,5 +267,17 @@ LL | fn hidden_niche_unsafe_cell() -> Option<UnsafeCell<NonZero<usiz
258267
= note: expected `unsafe extern "C" fn() -> usize`
259268
found `unsafe extern "C" fn() -> Option<UnsafeCell<NonZero<usize>>>`
260269

261-
warning: 22 warnings emitted
270+
warning: `pt_non_null_ptr` redeclared with a different signature
271+
--> $DIR/clashing-extern-fn.rs:516:13
272+
|
273+
LL | fn pt_non_null_ptr() -> pattern_type!(usize is 1..);
274+
| ---------------------------------------------------- `pt_non_null_ptr` previously declared here
275+
...
276+
LL | fn pt_non_null_ptr() -> *const ();
277+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
278+
|
279+
= note: expected `unsafe extern "C" fn() -> (usize) is 1..=`
280+
found `unsafe extern "C" fn() -> *const ()`
281+
282+
warning: 24 warnings emitted
262283

tests/ui/lint/lint-ctypes-enum.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ extern "C" {
9494
fn option_transparent_union(x: Option<TransparentUnion<num::NonZero<u8>>>);
9595
//~^ ERROR `extern` block uses type
9696
fn option_repr_rust(x: Option<Rust<num::NonZero<u8>>>); //~ ERROR `extern` block uses type
97+
fn option_u8(x: Option<u8>); //~ ERROR `extern` block uses type
9798

9899
fn result_ref_t(x: Result<&'static u8, ()>);
99100
fn result_fn_t(x: Result<extern "C" fn(), ()>);

0 commit comments

Comments
 (0)