Skip to content

Commit d42bdf1

Browse files
committed
Auto-deref when checking field and method privacy
This disallows using pointers to sneak around priv qualifiers. Deeming this too small for review as well. Closes #3763
1 parent a7159be commit d42bdf1

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

src/librustc/middle/privacy.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,10 @@ fn check_crate(tcx: ty::ctxt, method_map: &method_map, crate: @ast::crate) {
199199
visit_expr: |expr, method_map: &method_map, visitor| {
200200
match expr.node {
201201
expr_field(base, ident, _) => {
202-
match ty::get(ty::expr_ty(tcx, base)).sty {
202+
// With type_autoderef, make sure we don't
203+
// allow pointers to violate privacy
204+
match ty::get(ty::type_autoderef(tcx, ty::expr_ty(tcx,
205+
base))).sty {
203206
ty_struct(id, _)
204207
if id.crate != local_crate ||
205208
!privileged_items.contains(&(id.node)) => {
@@ -220,7 +223,9 @@ fn check_crate(tcx: ty::ctxt, method_map: &method_map, crate: @ast::crate) {
220223
}
221224
}
222225
expr_method_call(base, _, _, _, _) => {
223-
match ty::get(ty::expr_ty(tcx, base)).sty {
226+
// Ditto
227+
match ty::get(ty::type_autoderef(tcx, ty::expr_ty(tcx,
228+
base))).sty {
224229
ty_struct(id, _)
225230
if id.crate != local_crate ||
226231
!privileged_items.contains(&(id.node)) => {

src/test/compile-fail/issue-3763.rs

+10-5
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,25 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// xfail-test
1211
mod my_mod {
1312
pub struct MyStruct {
1413
priv priv_field: int
1514
}
1615
pub fn MyStruct () -> MyStruct {
1716
MyStruct {priv_field: 4}
1817
}
18+
impl MyStruct {
19+
priv fn happyfun() {}
20+
}
1921
}
2022

2123
fn main() {
2224
let my_struct = my_mod::MyStruct();
23-
let _woohoo = (&my_struct).priv_field; // compiles but shouldn't
24-
let _woohoo = (~my_struct).priv_field; // ditto
25-
let _woohoo = (@my_struct).priv_field; // ditto
26-
// let nope = my_struct.priv_field; // compile error as expected
25+
let _woohoo = (&my_struct).priv_field; //~ ERROR field `priv_field` is private
26+
let _woohoo = (~my_struct).priv_field; //~ ERROR field `priv_field` is private
27+
let _woohoo = (@my_struct).priv_field; //~ ERROR field `priv_field` is private
28+
(&my_struct).happyfun(); //~ ERROR method `happyfun` is private
29+
(~my_struct).happyfun(); //~ ERROR method `happyfun` is private
30+
(@my_struct).happyfun(); //~ ERROR method `happyfun` is private
31+
let nope = my_struct.priv_field; //~ ERROR field `priv_field` is private
2732
}

0 commit comments

Comments
 (0)