2012-09-04 16:48:32 -05:00
|
|
|
// A pass that checks to make sure private fields and methods aren't used
|
|
|
|
// outside their scopes.
|
|
|
|
|
|
|
|
use /*mod*/ syntax::ast;
|
|
|
|
use /*mod*/ syntax::visit;
|
2012-09-04 20:28:22 -05:00
|
|
|
use syntax::ast::{expr_field, ident, item_class, item_impl, item_trait};
|
|
|
|
use syntax::ast::{local_crate, node_id, private, provided, required};
|
|
|
|
use syntax::ast_map::{node_item, node_method};
|
2012-09-04 16:48:32 -05:00
|
|
|
use ty::ty_class;
|
2012-09-04 20:28:22 -05:00
|
|
|
use typeck::{method_map, method_origin, method_param, method_static};
|
|
|
|
use typeck::{method_trait};
|
2012-09-04 16:48:32 -05:00
|
|
|
|
|
|
|
use core::util::ignore;
|
|
|
|
use dvec::DVec;
|
|
|
|
|
2012-09-04 20:28:22 -05:00
|
|
|
fn check_crate(tcx: ty::ctxt, method_map: &method_map, crate: @ast::crate) {
|
|
|
|
let privileged_items = @DVec();
|
2012-09-04 16:48:32 -05:00
|
|
|
|
2012-09-04 20:28:22 -05:00
|
|
|
// Adds structs that are privileged to this scope.
|
|
|
|
let add_privileged_items = |items: &[@ast::item]| {
|
2012-09-04 16:48:32 -05:00
|
|
|
let mut count = 0;
|
|
|
|
for items.each |item| {
|
|
|
|
match item.node {
|
2012-09-04 20:28:22 -05:00
|
|
|
item_class(*) | item_trait(*) | item_impl(*) => {
|
|
|
|
privileged_items.push(item.id);
|
2012-09-04 16:48:32 -05:00
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
count
|
|
|
|
};
|
|
|
|
|
2012-09-04 20:28:22 -05:00
|
|
|
// Checks that a private field is in scope.
|
|
|
|
let check_field = |span, id, ident| {
|
|
|
|
let fields = ty::lookup_class_fields(tcx, id);
|
|
|
|
for fields.each |field| {
|
|
|
|
if field.ident != ident { again; }
|
|
|
|
if field.vis == private {
|
|
|
|
tcx.sess.span_err(span, fmt!("field `%s` is private",
|
|
|
|
*tcx.sess.parse_sess.interner
|
|
|
|
.get(ident)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Checks that a private method is in scope.
|
|
|
|
let check_method = |span, origin: &method_origin| {
|
|
|
|
match *origin {
|
|
|
|
method_static(method_id) => {
|
|
|
|
if method_id.crate == local_crate {
|
|
|
|
match tcx.items.find(method_id.node) {
|
|
|
|
Some(node_method(method, impl_id, _)) => {
|
|
|
|
if method.vis == private &&
|
|
|
|
(impl_id.crate != local_crate ||
|
|
|
|
!privileged_items
|
|
|
|
.contains(impl_id.node)) {
|
|
|
|
tcx.sess.span_err(span,
|
|
|
|
fmt!("method `%s` is \
|
|
|
|
private",
|
|
|
|
*tcx.sess
|
|
|
|
.parse_sess
|
|
|
|
.interner
|
|
|
|
.get(method
|
|
|
|
.ident)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Some(_) => {
|
|
|
|
tcx.sess.span_bug(span, ~"method wasn't \
|
|
|
|
actually a method?!");
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
tcx.sess.span_bug(span, ~"method not found in \
|
|
|
|
AST map?!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// XXX: External crates.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
method_param({trait_id: trait_id, method_num: method_num, _}) |
|
|
|
|
method_trait(trait_id, method_num) => {
|
|
|
|
if trait_id.crate == local_crate {
|
|
|
|
match tcx.items.find(trait_id.node) {
|
|
|
|
Some(node_item(item, _)) => {
|
|
|
|
match item.node {
|
|
|
|
item_trait(_, _, methods) => {
|
|
|
|
if method_num >= methods.len() {
|
|
|
|
tcx.sess.span_bug(span, ~"method \
|
|
|
|
number \
|
|
|
|
out of \
|
|
|
|
range?!");
|
|
|
|
}
|
|
|
|
match methods[method_num] {
|
|
|
|
provided(method)
|
|
|
|
if method.vis == private &&
|
|
|
|
!privileged_items
|
|
|
|
.contains(trait_id.node) => {
|
|
|
|
tcx.sess.span_err(span,
|
|
|
|
fmt!("method
|
|
|
|
`%s` \
|
|
|
|
is \
|
|
|
|
private",
|
|
|
|
*tcx
|
|
|
|
.sess
|
|
|
|
.parse_sess
|
|
|
|
.interner
|
|
|
|
.get
|
|
|
|
(method
|
|
|
|
.ident)));
|
|
|
|
}
|
|
|
|
provided(_) | required(_) => {
|
|
|
|
// Required methods can't be
|
|
|
|
// private.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
tcx.sess.span_bug(span, ~"trait wasn't \
|
|
|
|
actually a \
|
|
|
|
trait?!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Some(_) => {
|
|
|
|
tcx.sess.span_bug(span, ~"trait wasn't an \
|
|
|
|
item?!");
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
tcx.sess.span_bug(span, ~"trait item wasn't \
|
|
|
|
found in the AST \
|
|
|
|
map?!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// XXX: External crates.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-09-04 16:48:32 -05:00
|
|
|
let visitor = visit::mk_vt(@{
|
2012-09-04 20:28:22 -05:00
|
|
|
visit_mod: |the_module, span, node_id, method_map, visitor| {
|
|
|
|
let n_added = add_privileged_items(the_module.items);
|
2012-09-04 16:48:32 -05:00
|
|
|
|
2012-09-04 20:28:22 -05:00
|
|
|
visit::visit_mod(the_module, span, node_id, method_map, visitor);
|
2012-09-04 16:48:32 -05:00
|
|
|
|
|
|
|
for n_added.times {
|
2012-09-04 20:28:22 -05:00
|
|
|
ignore(privileged_items.pop());
|
2012-09-04 16:48:32 -05:00
|
|
|
}
|
|
|
|
},
|
2012-09-04 20:28:22 -05:00
|
|
|
visit_expr: |expr, method_map: &method_map, visitor| {
|
2012-09-04 16:48:32 -05:00
|
|
|
match expr.node {
|
|
|
|
expr_field(base, ident, _) => {
|
|
|
|
match ty::get(ty::expr_ty(tcx, base)).struct {
|
|
|
|
ty_class(id, _)
|
|
|
|
if id.crate != local_crate ||
|
2012-09-04 20:28:22 -05:00
|
|
|
!privileged_items.contains(id.node) => {
|
|
|
|
match method_map.find(expr.id) {
|
|
|
|
None => {
|
|
|
|
debug!("(privacy checking) checking \
|
|
|
|
field");
|
|
|
|
check_field(expr.span, id, ident);
|
|
|
|
}
|
|
|
|
Some(entry) => {
|
|
|
|
debug!("(privacy checking) checking \
|
|
|
|
impl method");
|
|
|
|
check_method(expr.span, &entry.origin);
|
2012-09-04 16:48:32 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
2012-09-04 20:28:22 -05:00
|
|
|
visit::visit_expr(expr, method_map, visitor);
|
2012-09-04 15:29:32 -05:00
|
|
|
},
|
|
|
|
.. *visit::default_visitor()
|
2012-09-04 16:48:32 -05:00
|
|
|
});
|
2012-09-04 20:28:22 -05:00
|
|
|
visit::visit_crate(*crate, method_map, visitor);
|
2012-09-04 16:48:32 -05:00
|
|
|
}
|
|
|
|
|