blob: 58b1a51ae573bf7278f50986b1ebc82392d8bd6c [file] [log] [blame]
Anders Carlsson29f006b2009-03-27 05:05:05 +00001//===---- SemaAccess.cpp - C++ Access Control -------------------*- C++ -*-===//
Anders Carlsson60d6b0d2009-03-27 04:43:36 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file provides Sema routines for C++ access control semantics.
11//
12//===----------------------------------------------------------------------===//
Anders Carlssonc60e8882009-03-27 04:54:36 +000013
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCall9c3087b2010-08-26 02:13:20 +000015#include "clang/Sema/DelayedDiagnostic.h"
Douglas Gregore737f502010-08-12 20:07:10 +000016#include "clang/Sema/Initialization.h"
17#include "clang/Sema/Lookup.h"
Anders Carlssonc4f1e872009-03-27 06:03:27 +000018#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000019#include "clang/AST/CXXInheritance.h"
20#include "clang/AST/DeclCXX.h"
John McCalld60e22e2010-03-12 01:19:31 +000021#include "clang/AST/DeclFriend.h"
Douglas Gregorf3c02862011-11-03 19:00:24 +000022#include "clang/AST/DeclObjC.h"
John McCall0c01d182010-03-24 05:22:00 +000023#include "clang/AST/DependentDiagnostic.h"
John McCallc373d482010-01-27 01:50:18 +000024#include "clang/AST/ExprCXX.h"
25
Anders Carlssonc60e8882009-03-27 04:54:36 +000026using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000027using namespace sema;
Anders Carlssonc60e8882009-03-27 04:54:36 +000028
John McCall161755a2010-04-06 21:38:20 +000029/// A copy of Sema's enum without AR_delayed.
30enum AccessResult {
31 AR_accessible,
32 AR_inaccessible,
33 AR_dependent
34};
35
Anders Carlsson29f006b2009-03-27 05:05:05 +000036/// SetMemberAccessSpecifier - Set the access specifier of a member.
37/// Returns true on error (when the previous member decl access specifier
38/// is different from the new member decl access specifier).
Mike Stump1eb44332009-09-09 15:08:12 +000039bool Sema::SetMemberAccessSpecifier(NamedDecl *MemberDecl,
Anders Carlssonc60e8882009-03-27 04:54:36 +000040 NamedDecl *PrevMemberDecl,
41 AccessSpecifier LexicalAS) {
42 if (!PrevMemberDecl) {
43 // Use the lexical access specifier.
44 MemberDecl->setAccess(LexicalAS);
45 return false;
46 }
Mike Stump1eb44332009-09-09 15:08:12 +000047
Anders Carlssonc60e8882009-03-27 04:54:36 +000048 // C++ [class.access.spec]p3: When a member is redeclared its access
49 // specifier must be same as its initial declaration.
50 if (LexicalAS != AS_none && LexicalAS != PrevMemberDecl->getAccess()) {
Mike Stump1eb44332009-09-09 15:08:12 +000051 Diag(MemberDecl->getLocation(),
52 diag::err_class_redeclared_with_different_access)
Anders Carlssonc60e8882009-03-27 04:54:36 +000053 << MemberDecl << LexicalAS;
54 Diag(PrevMemberDecl->getLocation(), diag::note_previous_access_declaration)
55 << PrevMemberDecl << PrevMemberDecl->getAccess();
John McCall44e067b2009-12-23 00:37:40 +000056
57 MemberDecl->setAccess(LexicalAS);
Anders Carlssonc60e8882009-03-27 04:54:36 +000058 return true;
59 }
Mike Stump1eb44332009-09-09 15:08:12 +000060
Anders Carlssonc60e8882009-03-27 04:54:36 +000061 MemberDecl->setAccess(PrevMemberDecl->getAccess());
62 return false;
63}
Anders Carlsson29f006b2009-03-27 05:05:05 +000064
John McCall161755a2010-04-06 21:38:20 +000065static CXXRecordDecl *FindDeclaringClass(NamedDecl *D) {
66 DeclContext *DC = D->getDeclContext();
67
68 // This can only happen at top: enum decls only "publish" their
69 // immediate members.
70 if (isa<EnumDecl>(DC))
71 DC = cast<EnumDecl>(DC)->getDeclContext();
72
73 CXXRecordDecl *DeclaringClass = cast<CXXRecordDecl>(DC);
74 while (DeclaringClass->isAnonymousStructOrUnion())
75 DeclaringClass = cast<CXXRecordDecl>(DeclaringClass->getDeclContext());
76 return DeclaringClass;
77}
78
John McCall6b2accb2010-02-10 09:31:12 +000079namespace {
80struct EffectiveContext {
John McCall2cc26752010-03-27 06:55:49 +000081 EffectiveContext() : Inner(0), Dependent(false) {}
Anders Carlssonc4f1e872009-03-27 06:03:27 +000082
John McCall7ad650f2010-03-24 07:46:06 +000083 explicit EffectiveContext(DeclContext *DC)
84 : Inner(DC),
85 Dependent(DC->isDependentContext()) {
John McCall0c01d182010-03-24 05:22:00 +000086
John McCall88b6c712010-03-17 04:58:56 +000087 // C++ [class.access.nest]p1:
88 // A nested class is a member and as such has the same access
89 // rights as any other member.
90 // C++ [class.access]p2:
91 // A member of a class can also access all the names to which
John McCall2cc26752010-03-27 06:55:49 +000092 // the class has access. A local class of a member function
93 // may access the same names that the member function itself
94 // may access.
95 // This almost implies that the privileges of nesting are transitive.
96 // Technically it says nothing about the local classes of non-member
97 // functions (which can gain privileges through friendship), but we
98 // take that as an oversight.
99 while (true) {
John McCall8bddeb52012-08-24 22:54:02 +0000100 // We want to add canonical declarations to the EC lists for
101 // simplicity of checking, but we need to walk up through the
102 // actual current DC chain. Otherwise, something like a local
103 // extern or friend which happens to be the canonical
104 // declaration will really mess us up.
105
John McCall2cc26752010-03-27 06:55:49 +0000106 if (isa<CXXRecordDecl>(DC)) {
John McCall8bddeb52012-08-24 22:54:02 +0000107 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
108 Records.push_back(Record->getCanonicalDecl());
John McCall2cc26752010-03-27 06:55:49 +0000109 DC = Record->getDeclContext();
110 } else if (isa<FunctionDecl>(DC)) {
John McCall8bddeb52012-08-24 22:54:02 +0000111 FunctionDecl *Function = cast<FunctionDecl>(DC);
112 Functions.push_back(Function->getCanonicalDecl());
Douglas Gregorac57f0b2011-10-09 22:38:36 +0000113 if (Function->getFriendObjectKind())
114 DC = Function->getLexicalDeclContext();
115 else
116 DC = Function->getDeclContext();
John McCall2cc26752010-03-27 06:55:49 +0000117 } else if (DC->isFileContext()) {
118 break;
119 } else {
120 DC = DC->getParent();
121 }
John McCall88b6c712010-03-17 04:58:56 +0000122 }
Anders Carlssonc4f1e872009-03-27 06:03:27 +0000123 }
Sebastian Redl726212f2009-07-18 14:32:15 +0000124
John McCall0c01d182010-03-24 05:22:00 +0000125 bool isDependent() const { return Dependent; }
126
John McCall88b6c712010-03-17 04:58:56 +0000127 bool includesClass(const CXXRecordDecl *R) const {
128 R = R->getCanonicalDecl();
129 return std::find(Records.begin(), Records.end(), R)
130 != Records.end();
John McCall6b2accb2010-02-10 09:31:12 +0000131 }
132
John McCall7ad650f2010-03-24 07:46:06 +0000133 /// Retrieves the innermost "useful" context. Can be null if we're
134 /// doing access-control without privileges.
135 DeclContext *getInnerContext() const {
136 return Inner;
John McCall0c01d182010-03-24 05:22:00 +0000137 }
138
Chris Lattner5f9e2722011-07-23 10:55:15 +0000139 typedef SmallVectorImpl<CXXRecordDecl*>::const_iterator record_iterator;
John McCall0c01d182010-03-24 05:22:00 +0000140
John McCall7ad650f2010-03-24 07:46:06 +0000141 DeclContext *Inner;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000142 SmallVector<FunctionDecl*, 4> Functions;
143 SmallVector<CXXRecordDecl*, 4> Records;
John McCall0c01d182010-03-24 05:22:00 +0000144 bool Dependent;
John McCall6b2accb2010-02-10 09:31:12 +0000145};
John McCall161755a2010-04-06 21:38:20 +0000146
Nico Weber6bb4dcb2010-11-28 22:53:37 +0000147/// Like sema::AccessedEntity, but kindly lets us scribble all over
John McCall161755a2010-04-06 21:38:20 +0000148/// it.
John McCall9c3087b2010-08-26 02:13:20 +0000149struct AccessTarget : public AccessedEntity {
150 AccessTarget(const AccessedEntity &Entity)
John McCall161755a2010-04-06 21:38:20 +0000151 : AccessedEntity(Entity) {
152 initialize();
153 }
154
155 AccessTarget(ASTContext &Context,
156 MemberNonce _,
157 CXXRecordDecl *NamingClass,
158 DeclAccessPair FoundDecl,
Erik Verbruggen24dd9ad2011-09-19 15:10:40 +0000159 QualType BaseObjectType)
Benjamin Kramer478851c2012-07-04 17:04:04 +0000160 : AccessedEntity(Context.getDiagAllocator(), Member, NamingClass,
161 FoundDecl, BaseObjectType) {
John McCall161755a2010-04-06 21:38:20 +0000162 initialize();
163 }
164
165 AccessTarget(ASTContext &Context,
166 BaseNonce _,
167 CXXRecordDecl *BaseClass,
168 CXXRecordDecl *DerivedClass,
169 AccessSpecifier Access)
Benjamin Kramer478851c2012-07-04 17:04:04 +0000170 : AccessedEntity(Context.getDiagAllocator(), Base, BaseClass, DerivedClass,
171 Access) {
John McCall161755a2010-04-06 21:38:20 +0000172 initialize();
173 }
174
John McCallb9abd8722012-04-07 03:04:20 +0000175 bool isInstanceMember() const {
176 return (isMemberAccess() && getTargetDecl()->isCXXInstanceMember());
177 }
178
John McCall161755a2010-04-06 21:38:20 +0000179 bool hasInstanceContext() const {
180 return HasInstanceContext;
181 }
182
183 class SavedInstanceContext {
184 public:
185 ~SavedInstanceContext() {
186 Target.HasInstanceContext = Has;
187 }
188
189 private:
John McCallc91cc662010-04-07 00:41:46 +0000190 friend struct AccessTarget;
John McCall161755a2010-04-06 21:38:20 +0000191 explicit SavedInstanceContext(AccessTarget &Target)
192 : Target(Target), Has(Target.HasInstanceContext) {}
193 AccessTarget &Target;
194 bool Has;
195 };
196
197 SavedInstanceContext saveInstanceContext() {
198 return SavedInstanceContext(*this);
199 }
200
201 void suppressInstanceContext() {
202 HasInstanceContext = false;
203 }
204
205 const CXXRecordDecl *resolveInstanceContext(Sema &S) const {
206 assert(HasInstanceContext);
207 if (CalculatedInstanceContext)
208 return InstanceContext;
209
210 CalculatedInstanceContext = true;
211 DeclContext *IC = S.computeDeclContext(getBaseObjectType());
212 InstanceContext = (IC ? cast<CXXRecordDecl>(IC)->getCanonicalDecl() : 0);
213 return InstanceContext;
214 }
215
216 const CXXRecordDecl *getDeclaringClass() const {
217 return DeclaringClass;
218 }
219
220private:
221 void initialize() {
222 HasInstanceContext = (isMemberAccess() &&
223 !getBaseObjectType().isNull() &&
224 getTargetDecl()->isCXXInstanceMember());
225 CalculatedInstanceContext = false;
226 InstanceContext = 0;
227
228 if (isMemberAccess())
229 DeclaringClass = FindDeclaringClass(getTargetDecl());
230 else
231 DeclaringClass = getBaseClass();
232 DeclaringClass = DeclaringClass->getCanonicalDecl();
233 }
234
235 bool HasInstanceContext : 1;
236 mutable bool CalculatedInstanceContext : 1;
237 mutable const CXXRecordDecl *InstanceContext;
238 const CXXRecordDecl *DeclaringClass;
239};
240
Anders Carlsson29f006b2009-03-27 05:05:05 +0000241}
John McCall92f88312010-01-23 00:46:32 +0000242
John McCall01ebd9d2010-05-04 05:11:27 +0000243/// Checks whether one class might instantiate to the other.
244static bool MightInstantiateTo(const CXXRecordDecl *From,
245 const CXXRecordDecl *To) {
246 // Declaration names are always preserved by instantiation.
247 if (From->getDeclName() != To->getDeclName())
248 return false;
249
250 const DeclContext *FromDC = From->getDeclContext()->getPrimaryContext();
251 const DeclContext *ToDC = To->getDeclContext()->getPrimaryContext();
252 if (FromDC == ToDC) return true;
253 if (FromDC->isFileContext() || ToDC->isFileContext()) return false;
254
255 // Be conservative.
256 return true;
257}
258
John McCall161755a2010-04-06 21:38:20 +0000259/// Checks whether one class is derived from another, inclusively.
260/// Properly indicates when it couldn't be determined due to
261/// dependence.
262///
263/// This should probably be donated to AST or at least Sema.
264static AccessResult IsDerivedFromInclusive(const CXXRecordDecl *Derived,
265 const CXXRecordDecl *Target) {
266 assert(Derived->getCanonicalDecl() == Derived);
267 assert(Target->getCanonicalDecl() == Target);
John McCallc1b621d2010-03-24 09:04:37 +0000268
John McCall161755a2010-04-06 21:38:20 +0000269 if (Derived == Target) return AR_accessible;
John McCallc1b621d2010-03-24 09:04:37 +0000270
John McCall01ebd9d2010-05-04 05:11:27 +0000271 bool CheckDependent = Derived->isDependentContext();
272 if (CheckDependent && MightInstantiateTo(Derived, Target))
273 return AR_dependent;
274
John McCall161755a2010-04-06 21:38:20 +0000275 AccessResult OnFailure = AR_inaccessible;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000276 SmallVector<const CXXRecordDecl*, 8> Queue; // actually a stack
John McCall161755a2010-04-06 21:38:20 +0000277
278 while (true) {
Douglas Gregor7432b902011-11-14 23:00:43 +0000279 if (Derived->isDependentContext() && !Derived->hasDefinition())
280 return AR_dependent;
281
John McCall161755a2010-04-06 21:38:20 +0000282 for (CXXRecordDecl::base_class_const_iterator
283 I = Derived->bases_begin(), E = Derived->bases_end(); I != E; ++I) {
284
285 const CXXRecordDecl *RD;
286
287 QualType T = I->getType();
288 if (const RecordType *RT = T->getAs<RecordType>()) {
289 RD = cast<CXXRecordDecl>(RT->getDecl());
John McCall01ebd9d2010-05-04 05:11:27 +0000290 } else if (const InjectedClassNameType *IT
291 = T->getAs<InjectedClassNameType>()) {
292 RD = IT->getDecl();
John McCall161755a2010-04-06 21:38:20 +0000293 } else {
John McCall161755a2010-04-06 21:38:20 +0000294 assert(T->isDependentType() && "non-dependent base wasn't a record?");
295 OnFailure = AR_dependent;
296 continue;
297 }
298
299 RD = RD->getCanonicalDecl();
300 if (RD == Target) return AR_accessible;
John McCall01ebd9d2010-05-04 05:11:27 +0000301 if (CheckDependent && MightInstantiateTo(RD, Target))
302 OnFailure = AR_dependent;
303
John McCall161755a2010-04-06 21:38:20 +0000304 Queue.push_back(RD);
305 }
306
307 if (Queue.empty()) break;
308
309 Derived = Queue.back();
310 Queue.pop_back();
311 }
312
313 return OnFailure;
John McCall6b2accb2010-02-10 09:31:12 +0000314}
315
John McCall161755a2010-04-06 21:38:20 +0000316
John McCall0c01d182010-03-24 05:22:00 +0000317static bool MightInstantiateTo(Sema &S, DeclContext *Context,
318 DeclContext *Friend) {
319 if (Friend == Context)
320 return true;
321
322 assert(!Friend->isDependentContext() &&
323 "can't handle friends with dependent contexts here");
324
325 if (!Context->isDependentContext())
326 return false;
327
328 if (Friend->isFileContext())
329 return false;
330
331 // TODO: this is very conservative
332 return true;
333}
334
335// Asks whether the type in 'context' can ever instantiate to the type
336// in 'friend'.
337static bool MightInstantiateTo(Sema &S, CanQualType Context, CanQualType Friend) {
338 if (Friend == Context)
339 return true;
340
341 if (!Friend->isDependentType() && !Context->isDependentType())
342 return false;
343
344 // TODO: this is very conservative.
345 return true;
346}
347
348static bool MightInstantiateTo(Sema &S,
349 FunctionDecl *Context,
350 FunctionDecl *Friend) {
351 if (Context->getDeclName() != Friend->getDeclName())
352 return false;
353
354 if (!MightInstantiateTo(S,
355 Context->getDeclContext(),
356 Friend->getDeclContext()))
357 return false;
358
359 CanQual<FunctionProtoType> FriendTy
360 = S.Context.getCanonicalType(Friend->getType())
361 ->getAs<FunctionProtoType>();
362 CanQual<FunctionProtoType> ContextTy
363 = S.Context.getCanonicalType(Context->getType())
364 ->getAs<FunctionProtoType>();
365
366 // There isn't any way that I know of to add qualifiers
367 // during instantiation.
368 if (FriendTy.getQualifiers() != ContextTy.getQualifiers())
369 return false;
370
371 if (FriendTy->getNumArgs() != ContextTy->getNumArgs())
372 return false;
373
374 if (!MightInstantiateTo(S,
375 ContextTy->getResultType(),
376 FriendTy->getResultType()))
377 return false;
378
379 for (unsigned I = 0, E = FriendTy->getNumArgs(); I != E; ++I)
380 if (!MightInstantiateTo(S,
381 ContextTy->getArgType(I),
382 FriendTy->getArgType(I)))
383 return false;
384
385 return true;
386}
387
388static bool MightInstantiateTo(Sema &S,
389 FunctionTemplateDecl *Context,
390 FunctionTemplateDecl *Friend) {
391 return MightInstantiateTo(S,
392 Context->getTemplatedDecl(),
393 Friend->getTemplatedDecl());
394}
395
John McCall161755a2010-04-06 21:38:20 +0000396static AccessResult MatchesFriend(Sema &S,
397 const EffectiveContext &EC,
398 const CXXRecordDecl *Friend) {
John McCalla742db02010-03-17 20:01:29 +0000399 if (EC.includesClass(Friend))
John McCall161755a2010-04-06 21:38:20 +0000400 return AR_accessible;
John McCalla742db02010-03-17 20:01:29 +0000401
John McCall0c01d182010-03-24 05:22:00 +0000402 if (EC.isDependent()) {
403 CanQualType FriendTy
404 = S.Context.getCanonicalType(S.Context.getTypeDeclType(Friend));
405
406 for (EffectiveContext::record_iterator
407 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
408 CanQualType ContextTy
409 = S.Context.getCanonicalType(S.Context.getTypeDeclType(*I));
410 if (MightInstantiateTo(S, ContextTy, FriendTy))
John McCall161755a2010-04-06 21:38:20 +0000411 return AR_dependent;
John McCall0c01d182010-03-24 05:22:00 +0000412 }
413 }
414
John McCall161755a2010-04-06 21:38:20 +0000415 return AR_inaccessible;
John McCalla742db02010-03-17 20:01:29 +0000416}
417
John McCall161755a2010-04-06 21:38:20 +0000418static AccessResult MatchesFriend(Sema &S,
419 const EffectiveContext &EC,
420 CanQualType Friend) {
John McCall0c01d182010-03-24 05:22:00 +0000421 if (const RecordType *RT = Friend->getAs<RecordType>())
422 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl()));
John McCalla742db02010-03-17 20:01:29 +0000423
John McCall0c01d182010-03-24 05:22:00 +0000424 // TODO: we can do better than this
425 if (Friend->isDependentType())
John McCall161755a2010-04-06 21:38:20 +0000426 return AR_dependent;
John McCalla742db02010-03-17 20:01:29 +0000427
John McCall161755a2010-04-06 21:38:20 +0000428 return AR_inaccessible;
John McCall0c01d182010-03-24 05:22:00 +0000429}
430
431/// Determines whether the given friend class template matches
432/// anything in the effective context.
John McCall161755a2010-04-06 21:38:20 +0000433static AccessResult MatchesFriend(Sema &S,
434 const EffectiveContext &EC,
435 ClassTemplateDecl *Friend) {
436 AccessResult OnFailure = AR_inaccessible;
John McCall0c01d182010-03-24 05:22:00 +0000437
John McCall93ba8572010-03-25 06:39:04 +0000438 // Check whether the friend is the template of a class in the
439 // context chain.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000440 for (SmallVectorImpl<CXXRecordDecl*>::const_iterator
John McCall0c01d182010-03-24 05:22:00 +0000441 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
442 CXXRecordDecl *Record = *I;
443
John McCall93ba8572010-03-25 06:39:04 +0000444 // Figure out whether the current class has a template:
John McCall0c01d182010-03-24 05:22:00 +0000445 ClassTemplateDecl *CTD;
446
447 // A specialization of the template...
448 if (isa<ClassTemplateSpecializationDecl>(Record)) {
449 CTD = cast<ClassTemplateSpecializationDecl>(Record)
450 ->getSpecializedTemplate();
451
452 // ... or the template pattern itself.
453 } else {
454 CTD = Record->getDescribedClassTemplate();
455 if (!CTD) continue;
456 }
457
458 // It's a match.
459 if (Friend == CTD->getCanonicalDecl())
John McCall161755a2010-04-06 21:38:20 +0000460 return AR_accessible;
John McCall0c01d182010-03-24 05:22:00 +0000461
John McCall93ba8572010-03-25 06:39:04 +0000462 // If the context isn't dependent, it can't be a dependent match.
463 if (!EC.isDependent())
464 continue;
465
John McCall0c01d182010-03-24 05:22:00 +0000466 // If the template names don't match, it can't be a dependent
Richard Smith3e4c6c42011-05-05 21:57:07 +0000467 // match.
468 if (CTD->getDeclName() != Friend->getDeclName())
John McCall0c01d182010-03-24 05:22:00 +0000469 continue;
470
471 // If the class's context can't instantiate to the friend's
472 // context, it can't be a dependent match.
473 if (!MightInstantiateTo(S, CTD->getDeclContext(),
474 Friend->getDeclContext()))
475 continue;
476
477 // Otherwise, it's a dependent match.
John McCall161755a2010-04-06 21:38:20 +0000478 OnFailure = AR_dependent;
John McCalla742db02010-03-17 20:01:29 +0000479 }
480
John McCall0c01d182010-03-24 05:22:00 +0000481 return OnFailure;
482}
483
484/// Determines whether the given friend function matches anything in
485/// the effective context.
John McCall161755a2010-04-06 21:38:20 +0000486static AccessResult MatchesFriend(Sema &S,
487 const EffectiveContext &EC,
488 FunctionDecl *Friend) {
489 AccessResult OnFailure = AR_inaccessible;
John McCall0c01d182010-03-24 05:22:00 +0000490
Chris Lattner5f9e2722011-07-23 10:55:15 +0000491 for (SmallVectorImpl<FunctionDecl*>::const_iterator
John McCall2cc26752010-03-27 06:55:49 +0000492 I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) {
493 if (Friend == *I)
John McCall161755a2010-04-06 21:38:20 +0000494 return AR_accessible;
John McCall0c01d182010-03-24 05:22:00 +0000495
John McCall2cc26752010-03-27 06:55:49 +0000496 if (EC.isDependent() && MightInstantiateTo(S, *I, Friend))
John McCall161755a2010-04-06 21:38:20 +0000497 OnFailure = AR_dependent;
John McCall2cc26752010-03-27 06:55:49 +0000498 }
John McCall0c01d182010-03-24 05:22:00 +0000499
John McCall2cc26752010-03-27 06:55:49 +0000500 return OnFailure;
John McCall0c01d182010-03-24 05:22:00 +0000501}
502
503/// Determines whether the given friend function template matches
504/// anything in the effective context.
John McCall161755a2010-04-06 21:38:20 +0000505static AccessResult MatchesFriend(Sema &S,
506 const EffectiveContext &EC,
507 FunctionTemplateDecl *Friend) {
508 if (EC.Functions.empty()) return AR_inaccessible;
John McCall0c01d182010-03-24 05:22:00 +0000509
John McCall161755a2010-04-06 21:38:20 +0000510 AccessResult OnFailure = AR_inaccessible;
John McCall0c01d182010-03-24 05:22:00 +0000511
Chris Lattner5f9e2722011-07-23 10:55:15 +0000512 for (SmallVectorImpl<FunctionDecl*>::const_iterator
John McCall2cc26752010-03-27 06:55:49 +0000513 I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) {
John McCall0c01d182010-03-24 05:22:00 +0000514
John McCall2cc26752010-03-27 06:55:49 +0000515 FunctionTemplateDecl *FTD = (*I)->getPrimaryTemplate();
516 if (!FTD)
517 FTD = (*I)->getDescribedFunctionTemplate();
518 if (!FTD)
519 continue;
John McCall0c01d182010-03-24 05:22:00 +0000520
John McCall2cc26752010-03-27 06:55:49 +0000521 FTD = FTD->getCanonicalDecl();
522
523 if (Friend == FTD)
John McCall161755a2010-04-06 21:38:20 +0000524 return AR_accessible;
John McCall2cc26752010-03-27 06:55:49 +0000525
526 if (EC.isDependent() && MightInstantiateTo(S, FTD, Friend))
John McCall161755a2010-04-06 21:38:20 +0000527 OnFailure = AR_dependent;
John McCall2cc26752010-03-27 06:55:49 +0000528 }
529
530 return OnFailure;
John McCall0c01d182010-03-24 05:22:00 +0000531}
532
533/// Determines whether the given friend declaration matches anything
534/// in the effective context.
John McCall161755a2010-04-06 21:38:20 +0000535static AccessResult MatchesFriend(Sema &S,
536 const EffectiveContext &EC,
537 FriendDecl *FriendD) {
John McCall6102ca12010-10-16 06:59:13 +0000538 // Whitelist accesses if there's an invalid or unsupported friend
539 // declaration.
540 if (FriendD->isInvalidDecl() || FriendD->isUnsupportedFriend())
John McCall337ec3d2010-10-12 23:13:28 +0000541 return AR_accessible;
542
John McCall32f2fb52010-03-25 18:04:51 +0000543 if (TypeSourceInfo *T = FriendD->getFriendType())
544 return MatchesFriend(S, EC, T->getType()->getCanonicalTypeUnqualified());
John McCall0c01d182010-03-24 05:22:00 +0000545
546 NamedDecl *Friend
547 = cast<NamedDecl>(FriendD->getFriendDecl()->getCanonicalDecl());
John McCalla742db02010-03-17 20:01:29 +0000548
549 // FIXME: declarations with dependent or templated scope.
550
John McCall0c01d182010-03-24 05:22:00 +0000551 if (isa<ClassTemplateDecl>(Friend))
552 return MatchesFriend(S, EC, cast<ClassTemplateDecl>(Friend));
John McCalla742db02010-03-17 20:01:29 +0000553
John McCall0c01d182010-03-24 05:22:00 +0000554 if (isa<FunctionTemplateDecl>(Friend))
555 return MatchesFriend(S, EC, cast<FunctionTemplateDecl>(Friend));
John McCalla742db02010-03-17 20:01:29 +0000556
John McCall0c01d182010-03-24 05:22:00 +0000557 if (isa<CXXRecordDecl>(Friend))
558 return MatchesFriend(S, EC, cast<CXXRecordDecl>(Friend));
John McCalla742db02010-03-17 20:01:29 +0000559
John McCall0c01d182010-03-24 05:22:00 +0000560 assert(isa<FunctionDecl>(Friend) && "unknown friend decl kind");
561 return MatchesFriend(S, EC, cast<FunctionDecl>(Friend));
John McCalla742db02010-03-17 20:01:29 +0000562}
563
John McCall161755a2010-04-06 21:38:20 +0000564static AccessResult GetFriendKind(Sema &S,
565 const EffectiveContext &EC,
566 const CXXRecordDecl *Class) {
567 AccessResult OnFailure = AR_inaccessible;
John McCall88b6c712010-03-17 04:58:56 +0000568
John McCalld60e22e2010-03-12 01:19:31 +0000569 // Okay, check friends.
570 for (CXXRecordDecl::friend_iterator I = Class->friend_begin(),
571 E = Class->friend_end(); I != E; ++I) {
572 FriendDecl *Friend = *I;
573
John McCalla742db02010-03-17 20:01:29 +0000574 switch (MatchesFriend(S, EC, Friend)) {
John McCall161755a2010-04-06 21:38:20 +0000575 case AR_accessible:
576 return AR_accessible;
John McCalld60e22e2010-03-12 01:19:31 +0000577
John McCall161755a2010-04-06 21:38:20 +0000578 case AR_inaccessible:
579 continue;
580
581 case AR_dependent:
582 OnFailure = AR_dependent;
John McCalla742db02010-03-17 20:01:29 +0000583 break;
John McCalld60e22e2010-03-12 01:19:31 +0000584 }
John McCalld60e22e2010-03-12 01:19:31 +0000585 }
586
587 // That's it, give up.
John McCall88b6c712010-03-17 04:58:56 +0000588 return OnFailure;
John McCall6b2accb2010-02-10 09:31:12 +0000589}
590
John McCall8c77bcb2010-08-28 07:56:00 +0000591namespace {
592
593/// A helper class for checking for a friend which will grant access
594/// to a protected instance member.
595struct ProtectedFriendContext {
596 Sema &S;
597 const EffectiveContext &EC;
598 const CXXRecordDecl *NamingClass;
599 bool CheckDependent;
600 bool EverDependent;
601
602 /// The path down to the current base class.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000603 SmallVector<const CXXRecordDecl*, 20> CurPath;
John McCall8c77bcb2010-08-28 07:56:00 +0000604
605 ProtectedFriendContext(Sema &S, const EffectiveContext &EC,
606 const CXXRecordDecl *InstanceContext,
607 const CXXRecordDecl *NamingClass)
608 : S(S), EC(EC), NamingClass(NamingClass),
609 CheckDependent(InstanceContext->isDependentContext() ||
610 NamingClass->isDependentContext()),
611 EverDependent(false) {}
612
John McCall326c8c72010-08-28 08:47:21 +0000613 /// Check classes in the current path for friendship, starting at
614 /// the given index.
615 bool checkFriendshipAlongPath(unsigned I) {
616 assert(I < CurPath.size());
617 for (unsigned E = CurPath.size(); I != E; ++I) {
618 switch (GetFriendKind(S, EC, CurPath[I])) {
John McCall8c77bcb2010-08-28 07:56:00 +0000619 case AR_accessible: return true;
620 case AR_inaccessible: continue;
621 case AR_dependent: EverDependent = true; continue;
622 }
623 }
624 return false;
625 }
626
627 /// Perform a search starting at the given class.
John McCall326c8c72010-08-28 08:47:21 +0000628 ///
629 /// PrivateDepth is the index of the last (least derived) class
630 /// along the current path such that a notional public member of
631 /// the final class in the path would have access in that class.
632 bool findFriendship(const CXXRecordDecl *Cur, unsigned PrivateDepth) {
John McCall8c77bcb2010-08-28 07:56:00 +0000633 // If we ever reach the naming class, check the current path for
634 // friendship. We can also stop recursing because we obviously
635 // won't find the naming class there again.
John McCall326c8c72010-08-28 08:47:21 +0000636 if (Cur == NamingClass)
637 return checkFriendshipAlongPath(PrivateDepth);
John McCall8c77bcb2010-08-28 07:56:00 +0000638
639 if (CheckDependent && MightInstantiateTo(Cur, NamingClass))
640 EverDependent = true;
641
642 // Recurse into the base classes.
643 for (CXXRecordDecl::base_class_const_iterator
644 I = Cur->bases_begin(), E = Cur->bases_end(); I != E; ++I) {
645
John McCall326c8c72010-08-28 08:47:21 +0000646 // If this is private inheritance, then a public member of the
647 // base will not have any access in classes derived from Cur.
648 unsigned BasePrivateDepth = PrivateDepth;
649 if (I->getAccessSpecifier() == AS_private)
650 BasePrivateDepth = CurPath.size() - 1;
John McCall8c77bcb2010-08-28 07:56:00 +0000651
652 const CXXRecordDecl *RD;
653
654 QualType T = I->getType();
655 if (const RecordType *RT = T->getAs<RecordType>()) {
656 RD = cast<CXXRecordDecl>(RT->getDecl());
657 } else if (const InjectedClassNameType *IT
658 = T->getAs<InjectedClassNameType>()) {
659 RD = IT->getDecl();
660 } else {
661 assert(T->isDependentType() && "non-dependent base wasn't a record?");
662 EverDependent = true;
663 continue;
664 }
665
666 // Recurse. We don't need to clean up if this returns true.
John McCall326c8c72010-08-28 08:47:21 +0000667 CurPath.push_back(RD);
668 if (findFriendship(RD->getCanonicalDecl(), BasePrivateDepth))
669 return true;
670 CurPath.pop_back();
John McCall8c77bcb2010-08-28 07:56:00 +0000671 }
672
John McCall8c77bcb2010-08-28 07:56:00 +0000673 return false;
674 }
John McCall326c8c72010-08-28 08:47:21 +0000675
676 bool findFriendship(const CXXRecordDecl *Cur) {
677 assert(CurPath.empty());
678 CurPath.push_back(Cur);
679 return findFriendship(Cur, 0);
680 }
John McCall8c77bcb2010-08-28 07:56:00 +0000681};
682}
683
684/// Search for a class P that EC is a friend of, under the constraint
John McCallb9abd8722012-04-07 03:04:20 +0000685/// InstanceContext <= P
686/// if InstanceContext exists, or else
687/// NamingClass <= P
John McCall8c77bcb2010-08-28 07:56:00 +0000688/// and with the additional restriction that a protected member of
John McCallb9abd8722012-04-07 03:04:20 +0000689/// NamingClass would have some natural access in P, which implicitly
690/// imposes the constraint that P <= NamingClass.
John McCall8c77bcb2010-08-28 07:56:00 +0000691///
John McCallb9abd8722012-04-07 03:04:20 +0000692/// This isn't quite the condition laid out in the standard.
693/// Instead of saying that a notional protected member of NamingClass
694/// would have to have some natural access in P, it says the actual
695/// target has to have some natural access in P, which opens up the
696/// possibility that the target (which is not necessarily a member
697/// of NamingClass) might be more accessible along some path not
698/// passing through it. That's really a bad idea, though, because it
John McCall8c77bcb2010-08-28 07:56:00 +0000699/// introduces two problems:
John McCallb9abd8722012-04-07 03:04:20 +0000700/// - Most importantly, it breaks encapsulation because you can
701/// access a forbidden base class's members by directly subclassing
702/// it elsewhere.
703/// - It also makes access substantially harder to compute because it
John McCall8c77bcb2010-08-28 07:56:00 +0000704/// breaks the hill-climbing algorithm: knowing that the target is
705/// accessible in some base class would no longer let you change
706/// the question solely to whether the base class is accessible,
707/// because the original target might have been more accessible
708/// because of crazy subclassing.
709/// So we don't implement that.
710static AccessResult GetProtectedFriendKind(Sema &S, const EffectiveContext &EC,
711 const CXXRecordDecl *InstanceContext,
712 const CXXRecordDecl *NamingClass) {
John McCallb9abd8722012-04-07 03:04:20 +0000713 assert(InstanceContext == 0 ||
714 InstanceContext->getCanonicalDecl() == InstanceContext);
John McCall8c77bcb2010-08-28 07:56:00 +0000715 assert(NamingClass->getCanonicalDecl() == NamingClass);
716
John McCallb9abd8722012-04-07 03:04:20 +0000717 // If we don't have an instance context, our constraints give us
718 // that NamingClass <= P <= NamingClass, i.e. P == NamingClass.
719 // This is just the usual friendship check.
720 if (!InstanceContext) return GetFriendKind(S, EC, NamingClass);
721
John McCall8c77bcb2010-08-28 07:56:00 +0000722 ProtectedFriendContext PRC(S, EC, InstanceContext, NamingClass);
723 if (PRC.findFriendship(InstanceContext)) return AR_accessible;
724 if (PRC.EverDependent) return AR_dependent;
725 return AR_inaccessible;
726}
727
John McCall161755a2010-04-06 21:38:20 +0000728static AccessResult HasAccess(Sema &S,
729 const EffectiveContext &EC,
730 const CXXRecordDecl *NamingClass,
731 AccessSpecifier Access,
732 const AccessTarget &Target) {
John McCalldb73c682010-04-02 00:03:43 +0000733 assert(NamingClass->getCanonicalDecl() == NamingClass &&
734 "declaration should be canonicalized before being passed here");
735
John McCall161755a2010-04-06 21:38:20 +0000736 if (Access == AS_public) return AR_accessible;
John McCalldb73c682010-04-02 00:03:43 +0000737 assert(Access == AS_private || Access == AS_protected);
738
John McCall161755a2010-04-06 21:38:20 +0000739 AccessResult OnFailure = AR_inaccessible;
740
John McCalldb73c682010-04-02 00:03:43 +0000741 for (EffectiveContext::record_iterator
742 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
743 // All the declarations in EC have been canonicalized, so pointer
744 // equality from this point on will work fine.
745 const CXXRecordDecl *ECRecord = *I;
746
747 // [B2] and [M2]
John McCall161755a2010-04-06 21:38:20 +0000748 if (Access == AS_private) {
749 if (ECRecord == NamingClass)
750 return AR_accessible;
John McCalldb73c682010-04-02 00:03:43 +0000751
John McCall01ebd9d2010-05-04 05:11:27 +0000752 if (EC.isDependent() && MightInstantiateTo(ECRecord, NamingClass))
753 OnFailure = AR_dependent;
754
John McCalldb73c682010-04-02 00:03:43 +0000755 // [B3] and [M3]
John McCall161755a2010-04-06 21:38:20 +0000756 } else {
757 assert(Access == AS_protected);
758 switch (IsDerivedFromInclusive(ECRecord, NamingClass)) {
759 case AR_accessible: break;
760 case AR_inaccessible: continue;
761 case AR_dependent: OnFailure = AR_dependent; continue;
762 }
763
John McCall161755a2010-04-06 21:38:20 +0000764 // C++ [class.protected]p1:
765 // An additional access check beyond those described earlier in
766 // [class.access] is applied when a non-static data member or
767 // non-static member function is a protected member of its naming
768 // class. As described earlier, access to a protected member is
769 // granted because the reference occurs in a friend or member of
770 // some class C. If the access is to form a pointer to member,
771 // the nested-name-specifier shall name C or a class derived from
772 // C. All other accesses involve a (possibly implicit) object
773 // expression. In this case, the class of the object expression
774 // shall be C or a class derived from C.
775 //
John McCallb9abd8722012-04-07 03:04:20 +0000776 // We interpret this as a restriction on [M3].
777
778 // In this part of the code, 'C' is just our context class ECRecord.
779
780 // These rules are different if we don't have an instance context.
781 if (!Target.hasInstanceContext()) {
782 // If it's not an instance member, these restrictions don't apply.
783 if (!Target.isInstanceMember()) return AR_accessible;
784
785 // If it's an instance member, use the pointer-to-member rule
786 // that the naming class has to be derived from the effective
787 // context.
788
Francois Pichetb2d899e2012-04-17 12:35:05 +0000789 // Emulate a MSVC bug where the creation of pointer-to-member
790 // to protected member of base class is allowed but only from
Francois Pichetb4143472012-04-19 07:48:57 +0000791 // static member functions.
Francois Pichet2d01f2c2012-04-18 03:24:38 +0000792 if (S.getLangOpts().MicrosoftMode && !EC.Functions.empty())
793 if (CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(EC.Functions.front()))
794 if (MD->isStatic()) return AR_accessible;
Francois Pichetb2d899e2012-04-17 12:35:05 +0000795
John McCallb9abd8722012-04-07 03:04:20 +0000796 // Despite the standard's confident wording, there is a case
797 // where you can have an instance member that's neither in a
798 // pointer-to-member expression nor in a member access: when
799 // it names a field in an unevaluated context that can't be an
800 // implicit member. Pending clarification, we just apply the
801 // same naming-class restriction here.
802 // FIXME: we're probably not correctly adding the
803 // protected-member restriction when we retroactively convert
804 // an expression to being evaluated.
805
806 // We know that ECRecord derives from NamingClass. The
807 // restriction says to check whether NamingClass derives from
808 // ECRecord, but that's not really necessary: two distinct
809 // classes can't be recursively derived from each other. So
810 // along this path, we just need to check whether the classes
811 // are equal.
812 if (NamingClass == ECRecord) return AR_accessible;
813
814 // Otherwise, this context class tells us nothing; on to the next.
815 continue;
816 }
817
818 assert(Target.isInstanceMember());
819
820 const CXXRecordDecl *InstanceContext = Target.resolveInstanceContext(S);
821 if (!InstanceContext) {
822 OnFailure = AR_dependent;
823 continue;
824 }
825
John McCall161755a2010-04-06 21:38:20 +0000826 switch (IsDerivedFromInclusive(InstanceContext, ECRecord)) {
827 case AR_accessible: return AR_accessible;
828 case AR_inaccessible: continue;
829 case AR_dependent: OnFailure = AR_dependent; continue;
830 }
831 }
John McCalldb73c682010-04-02 00:03:43 +0000832 }
833
John McCall8c77bcb2010-08-28 07:56:00 +0000834 // [M3] and [B3] say that, if the target is protected in N, we grant
835 // access if the access occurs in a friend or member of some class P
836 // that's a subclass of N and where the target has some natural
837 // access in P. The 'member' aspect is easy to handle because P
838 // would necessarily be one of the effective-context records, and we
839 // address that above. The 'friend' aspect is completely ridiculous
840 // to implement because there are no restrictions at all on P
841 // *unless* the [class.protected] restriction applies. If it does,
842 // however, we should ignore whether the naming class is a friend,
843 // and instead rely on whether any potential P is a friend.
John McCallb9abd8722012-04-07 03:04:20 +0000844 if (Access == AS_protected && Target.isInstanceMember()) {
845 // Compute the instance context if possible.
846 const CXXRecordDecl *InstanceContext = 0;
847 if (Target.hasInstanceContext()) {
848 InstanceContext = Target.resolveInstanceContext(S);
849 if (!InstanceContext) return AR_dependent;
850 }
851
John McCall8c77bcb2010-08-28 07:56:00 +0000852 switch (GetProtectedFriendKind(S, EC, InstanceContext, NamingClass)) {
853 case AR_accessible: return AR_accessible;
John McCall161755a2010-04-06 21:38:20 +0000854 case AR_inaccessible: return OnFailure;
855 case AR_dependent: return AR_dependent;
856 }
John McCall1797a052010-08-28 08:10:32 +0000857 llvm_unreachable("impossible friendship kind");
John McCall161755a2010-04-06 21:38:20 +0000858 }
859
860 switch (GetFriendKind(S, EC, NamingClass)) {
861 case AR_accessible: return AR_accessible;
862 case AR_inaccessible: return OnFailure;
863 case AR_dependent: return AR_dependent;
864 }
865
866 // Silence bogus warnings
867 llvm_unreachable("impossible friendship kind");
John McCalldb73c682010-04-02 00:03:43 +0000868}
869
John McCall6b2accb2010-02-10 09:31:12 +0000870/// Finds the best path from the naming class to the declaring class,
871/// taking friend declarations into account.
872///
John McCalldb73c682010-04-02 00:03:43 +0000873/// C++0x [class.access.base]p5:
874/// A member m is accessible at the point R when named in class N if
875/// [M1] m as a member of N is public, or
876/// [M2] m as a member of N is private, and R occurs in a member or
877/// friend of class N, or
878/// [M3] m as a member of N is protected, and R occurs in a member or
879/// friend of class N, or in a member or friend of a class P
880/// derived from N, where m as a member of P is public, private,
881/// or protected, or
882/// [M4] there exists a base class B of N that is accessible at R, and
883/// m is accessible at R when named in class B.
884///
885/// C++0x [class.access.base]p4:
886/// A base class B of N is accessible at R, if
887/// [B1] an invented public member of B would be a public member of N, or
888/// [B2] R occurs in a member or friend of class N, and an invented public
889/// member of B would be a private or protected member of N, or
890/// [B3] R occurs in a member or friend of a class P derived from N, and an
891/// invented public member of B would be a private or protected member
892/// of P, or
893/// [B4] there exists a class S such that B is a base class of S accessible
894/// at R and S is a base class of N accessible at R.
895///
896/// Along a single inheritance path we can restate both of these
897/// iteratively:
898///
899/// First, we note that M1-4 are equivalent to B1-4 if the member is
900/// treated as a notional base of its declaring class with inheritance
901/// access equivalent to the member's access. Therefore we need only
902/// ask whether a class B is accessible from a class N in context R.
903///
904/// Let B_1 .. B_n be the inheritance path in question (i.e. where
905/// B_1 = N, B_n = B, and for all i, B_{i+1} is a direct base class of
906/// B_i). For i in 1..n, we will calculate ACAB(i), the access to the
907/// closest accessible base in the path:
908/// Access(a, b) = (* access on the base specifier from a to b *)
909/// Merge(a, forbidden) = forbidden
910/// Merge(a, private) = forbidden
911/// Merge(a, b) = min(a,b)
912/// Accessible(c, forbidden) = false
913/// Accessible(c, private) = (R is c) || IsFriend(c, R)
914/// Accessible(c, protected) = (R derived from c) || IsFriend(c, R)
915/// Accessible(c, public) = true
916/// ACAB(n) = public
917/// ACAB(i) =
918/// let AccessToBase = Merge(Access(B_i, B_{i+1}), ACAB(i+1)) in
919/// if Accessible(B_i, AccessToBase) then public else AccessToBase
920///
921/// B is an accessible base of N at R iff ACAB(1) = public.
922///
John McCall161755a2010-04-06 21:38:20 +0000923/// \param FinalAccess the access of the "final step", or AS_public if
John McCall7aceaf82010-03-18 23:49:19 +0000924/// there is no final step.
John McCall6b2accb2010-02-10 09:31:12 +0000925/// \return null if friendship is dependent
926static CXXBasePath *FindBestPath(Sema &S,
927 const EffectiveContext &EC,
John McCall161755a2010-04-06 21:38:20 +0000928 AccessTarget &Target,
John McCall7aceaf82010-03-18 23:49:19 +0000929 AccessSpecifier FinalAccess,
John McCall6b2accb2010-02-10 09:31:12 +0000930 CXXBasePaths &Paths) {
931 // Derive the paths to the desired base.
John McCall161755a2010-04-06 21:38:20 +0000932 const CXXRecordDecl *Derived = Target.getNamingClass();
933 const CXXRecordDecl *Base = Target.getDeclaringClass();
934
935 // FIXME: fail correctly when there are dependent paths.
936 bool isDerived = Derived->isDerivedFrom(const_cast<CXXRecordDecl*>(Base),
937 Paths);
John McCall6b2accb2010-02-10 09:31:12 +0000938 assert(isDerived && "derived class not actually derived from base");
939 (void) isDerived;
940
941 CXXBasePath *BestPath = 0;
942
John McCall7aceaf82010-03-18 23:49:19 +0000943 assert(FinalAccess != AS_none && "forbidden access after declaring class");
944
John McCall0c01d182010-03-24 05:22:00 +0000945 bool AnyDependent = false;
946
John McCall6b2accb2010-02-10 09:31:12 +0000947 // Derive the friend-modified access along each path.
948 for (CXXBasePaths::paths_iterator PI = Paths.begin(), PE = Paths.end();
949 PI != PE; ++PI) {
John McCall161755a2010-04-06 21:38:20 +0000950 AccessTarget::SavedInstanceContext _ = Target.saveInstanceContext();
John McCall6b2accb2010-02-10 09:31:12 +0000951
952 // Walk through the path backwards.
John McCall7aceaf82010-03-18 23:49:19 +0000953 AccessSpecifier PathAccess = FinalAccess;
John McCall6b2accb2010-02-10 09:31:12 +0000954 CXXBasePath::iterator I = PI->end(), E = PI->begin();
955 while (I != E) {
956 --I;
957
John McCall7aceaf82010-03-18 23:49:19 +0000958 assert(PathAccess != AS_none);
959
960 // If the declaration is a private member of a base class, there
961 // is no level of friendship in derived classes that can make it
962 // accessible.
963 if (PathAccess == AS_private) {
964 PathAccess = AS_none;
965 break;
966 }
967
John McCall161755a2010-04-06 21:38:20 +0000968 const CXXRecordDecl *NC = I->Class->getCanonicalDecl();
969
John McCall6b2accb2010-02-10 09:31:12 +0000970 AccessSpecifier BaseAccess = I->Base->getAccessSpecifier();
John McCalldb73c682010-04-02 00:03:43 +0000971 PathAccess = std::max(PathAccess, BaseAccess);
John McCall161755a2010-04-06 21:38:20 +0000972
973 switch (HasAccess(S, EC, NC, PathAccess, Target)) {
974 case AR_inaccessible: break;
975 case AR_accessible:
976 PathAccess = AS_public;
977
978 // Future tests are not against members and so do not have
979 // instance context.
980 Target.suppressInstanceContext();
981 break;
982 case AR_dependent:
John McCalldb73c682010-04-02 00:03:43 +0000983 AnyDependent = true;
984 goto Next;
John McCall6b2accb2010-02-10 09:31:12 +0000985 }
John McCall6b2accb2010-02-10 09:31:12 +0000986 }
987
988 // Note that we modify the path's Access field to the
989 // friend-modified access.
990 if (BestPath == 0 || PathAccess < BestPath->Access) {
991 BestPath = &*PI;
992 BestPath->Access = PathAccess;
John McCall0c01d182010-03-24 05:22:00 +0000993
994 // Short-circuit if we found a public path.
995 if (BestPath->Access == AS_public)
996 return BestPath;
John McCall6b2accb2010-02-10 09:31:12 +0000997 }
John McCall0c01d182010-03-24 05:22:00 +0000998
999 Next: ;
John McCall6b2accb2010-02-10 09:31:12 +00001000 }
1001
John McCall0c01d182010-03-24 05:22:00 +00001002 assert((!BestPath || BestPath->Access != AS_public) &&
1003 "fell out of loop with public path");
1004
1005 // We didn't find a public path, but at least one path was subject
1006 // to dependent friendship, so delay the check.
1007 if (AnyDependent)
1008 return 0;
1009
John McCall6b2accb2010-02-10 09:31:12 +00001010 return BestPath;
1011}
1012
John McCallfe24e052010-09-03 04:56:05 +00001013/// Given that an entity has protected natural access, check whether
1014/// access might be denied because of the protected member access
1015/// restriction.
1016///
1017/// \return true if a note was emitted
1018static bool TryDiagnoseProtectedAccess(Sema &S, const EffectiveContext &EC,
1019 AccessTarget &Target) {
1020 // Only applies to instance accesses.
John McCallb9abd8722012-04-07 03:04:20 +00001021 if (!Target.isInstanceMember())
John McCallfe24e052010-09-03 04:56:05 +00001022 return false;
John McCallfe24e052010-09-03 04:56:05 +00001023
John McCallb9abd8722012-04-07 03:04:20 +00001024 assert(Target.isMemberAccess());
1025
1026 const CXXRecordDecl *NamingClass = Target.getNamingClass();
1027 NamingClass = NamingClass->getCanonicalDecl();
John McCallfe24e052010-09-03 04:56:05 +00001028
1029 for (EffectiveContext::record_iterator
1030 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
1031 const CXXRecordDecl *ECRecord = *I;
John McCallb9abd8722012-04-07 03:04:20 +00001032 switch (IsDerivedFromInclusive(ECRecord, NamingClass)) {
John McCallfe24e052010-09-03 04:56:05 +00001033 case AR_accessible: break;
1034 case AR_inaccessible: continue;
1035 case AR_dependent: continue;
1036 }
1037
1038 // The effective context is a subclass of the declaring class.
John McCallb9abd8722012-04-07 03:04:20 +00001039 // Check whether the [class.protected] restriction is limiting
1040 // access.
John McCallfe24e052010-09-03 04:56:05 +00001041
1042 // To get this exactly right, this might need to be checked more
1043 // holistically; it's not necessarily the case that gaining
1044 // access here would grant us access overall.
1045
John McCallb9abd8722012-04-07 03:04:20 +00001046 NamedDecl *D = Target.getTargetDecl();
1047
1048 // If we don't have an instance context, [class.protected] says the
1049 // naming class has to equal the context class.
1050 if (!Target.hasInstanceContext()) {
1051 // If it does, the restriction doesn't apply.
1052 if (NamingClass == ECRecord) continue;
1053
1054 // TODO: it would be great to have a fixit here, since this is
1055 // such an obvious error.
1056 S.Diag(D->getLocation(), diag::note_access_protected_restricted_noobject)
1057 << S.Context.getTypeDeclType(ECRecord);
1058 return true;
1059 }
1060
John McCallfe24e052010-09-03 04:56:05 +00001061 const CXXRecordDecl *InstanceContext = Target.resolveInstanceContext(S);
1062 assert(InstanceContext && "diagnosing dependent access");
1063
1064 switch (IsDerivedFromInclusive(InstanceContext, ECRecord)) {
1065 case AR_accessible: continue;
1066 case AR_dependent: continue;
1067 case AR_inaccessible:
John McCallb9abd8722012-04-07 03:04:20 +00001068 break;
1069 }
1070
1071 // Okay, the restriction seems to be what's limiting us.
1072
1073 // Use a special diagnostic for constructors and destructors.
1074 if (isa<CXXConstructorDecl>(D) || isa<CXXDestructorDecl>(D) ||
1075 (isa<FunctionTemplateDecl>(D) &&
1076 isa<CXXConstructorDecl>(
1077 cast<FunctionTemplateDecl>(D)->getTemplatedDecl()))) {
1078 S.Diag(D->getLocation(), diag::note_access_protected_restricted_ctordtor)
1079 << isa<CXXDestructorDecl>(D);
John McCallfe24e052010-09-03 04:56:05 +00001080 return true;
1081 }
John McCallb9abd8722012-04-07 03:04:20 +00001082
1083 // Otherwise, use the generic diagnostic.
1084 S.Diag(D->getLocation(), diag::note_access_protected_restricted_object)
1085 << S.Context.getTypeDeclType(ECRecord);
1086 return true;
John McCallfe24e052010-09-03 04:56:05 +00001087 }
1088
1089 return false;
1090}
1091
John McCall6b2accb2010-02-10 09:31:12 +00001092/// Diagnose the path which caused the given declaration or base class
1093/// to become inaccessible.
1094static void DiagnoseAccessPath(Sema &S,
1095 const EffectiveContext &EC,
John McCall161755a2010-04-06 21:38:20 +00001096 AccessTarget &Entity) {
John McCalldb73c682010-04-02 00:03:43 +00001097 AccessSpecifier Access = Entity.getAccess();
John McCalldb73c682010-04-02 00:03:43 +00001098
John McCall161755a2010-04-06 21:38:20 +00001099 NamedDecl *D = (Entity.isMemberAccess() ? Entity.getTargetDecl() : 0);
1100 const CXXRecordDecl *DeclaringClass = Entity.getDeclaringClass();
John McCalldb73c682010-04-02 00:03:43 +00001101
John McCall92f88312010-01-23 00:46:32 +00001102 // Easy case: the decl's natural access determined its path access.
John McCall6b2accb2010-02-10 09:31:12 +00001103 // We have to check against AS_private here in case Access is AS_none,
1104 // indicating a non-public member of a private base class.
John McCall6b2accb2010-02-10 09:31:12 +00001105 if (D && (Access == D->getAccess() || D->getAccess() == AS_private)) {
John McCall161755a2010-04-06 21:38:20 +00001106 switch (HasAccess(S, EC, DeclaringClass, D->getAccess(), Entity)) {
1107 case AR_inaccessible: {
John McCallfe24e052010-09-03 04:56:05 +00001108 if (Access == AS_protected &&
1109 TryDiagnoseProtectedAccess(S, EC, Entity))
1110 return;
1111
John McCallaa56a662010-10-20 08:15:06 +00001112 // Find an original declaration.
1113 while (D->isOutOfLine()) {
1114 NamedDecl *PrevDecl = 0;
Richard Smith162e1c12011-04-15 14:24:37 +00001115 if (VarDecl *VD = dyn_cast<VarDecl>(D))
Douglas Gregoref96ee02012-01-14 16:38:05 +00001116 PrevDecl = VD->getPreviousDecl();
Richard Smith162e1c12011-04-15 14:24:37 +00001117 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
Douglas Gregoref96ee02012-01-14 16:38:05 +00001118 PrevDecl = FD->getPreviousDecl();
Richard Smith162e1c12011-04-15 14:24:37 +00001119 else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(D))
Douglas Gregoref96ee02012-01-14 16:38:05 +00001120 PrevDecl = TND->getPreviousDecl();
Richard Smith162e1c12011-04-15 14:24:37 +00001121 else if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
John McCallaa56a662010-10-20 08:15:06 +00001122 if (isa<RecordDecl>(D) && cast<RecordDecl>(D)->isInjectedClassName())
1123 break;
Douglas Gregoref96ee02012-01-14 16:38:05 +00001124 PrevDecl = TD->getPreviousDecl();
John McCallaa56a662010-10-20 08:15:06 +00001125 }
1126 if (!PrevDecl) break;
1127 D = PrevDecl;
1128 }
1129
1130 CXXRecordDecl *DeclaringClass = FindDeclaringClass(D);
1131 Decl *ImmediateChild;
1132 if (D->getDeclContext() == DeclaringClass)
1133 ImmediateChild = D;
1134 else {
1135 DeclContext *DC = D->getDeclContext();
1136 while (DC->getParent() != DeclaringClass)
1137 DC = DC->getParent();
1138 ImmediateChild = cast<Decl>(DC);
1139 }
1140
1141 // Check whether there's an AccessSpecDecl preceding this in the
1142 // chain of the DeclContext.
1143 bool Implicit = true;
1144 for (CXXRecordDecl::decl_iterator
1145 I = DeclaringClass->decls_begin(), E = DeclaringClass->decls_end();
1146 I != E; ++I) {
1147 if (*I == ImmediateChild) break;
1148 if (isa<AccessSpecDecl>(*I)) {
1149 Implicit = false;
1150 break;
1151 }
1152 }
1153
John McCall6b2accb2010-02-10 09:31:12 +00001154 S.Diag(D->getLocation(), diag::note_access_natural)
1155 << (unsigned) (Access == AS_protected)
John McCallaa56a662010-10-20 08:15:06 +00001156 << Implicit;
John McCall6b2accb2010-02-10 09:31:12 +00001157 return;
1158 }
1159
John McCall161755a2010-04-06 21:38:20 +00001160 case AR_accessible: break;
John McCall6b2accb2010-02-10 09:31:12 +00001161
John McCall161755a2010-04-06 21:38:20 +00001162 case AR_dependent:
1163 llvm_unreachable("can't diagnose dependent access failures");
John McCall6b2accb2010-02-10 09:31:12 +00001164 }
1165 }
1166
1167 CXXBasePaths Paths;
John McCall161755a2010-04-06 21:38:20 +00001168 CXXBasePath &Path = *FindBestPath(S, EC, Entity, AS_public, Paths);
John McCall6b2accb2010-02-10 09:31:12 +00001169
1170 CXXBasePath::iterator I = Path.end(), E = Path.begin();
1171 while (I != E) {
1172 --I;
1173
1174 const CXXBaseSpecifier *BS = I->Base;
1175 AccessSpecifier BaseAccess = BS->getAccessSpecifier();
1176
1177 // If this is public inheritance, or the derived class is a friend,
1178 // skip this step.
1179 if (BaseAccess == AS_public)
1180 continue;
1181
1182 switch (GetFriendKind(S, EC, I->Class)) {
John McCall161755a2010-04-06 21:38:20 +00001183 case AR_accessible: continue;
1184 case AR_inaccessible: break;
1185 case AR_dependent:
1186 llvm_unreachable("can't diagnose dependent access failures");
John McCall6b2accb2010-02-10 09:31:12 +00001187 }
1188
1189 // Check whether this base specifier is the tighest point
1190 // constraining access. We have to check against AS_private for
1191 // the same reasons as above.
1192 if (BaseAccess == AS_private || BaseAccess >= Access) {
1193
1194 // We're constrained by inheritance, but we want to say
1195 // "declared private here" if we're diagnosing a hierarchy
1196 // conversion and this is the final step.
1197 unsigned diagnostic;
1198 if (D) diagnostic = diag::note_access_constrained_by_path;
1199 else if (I + 1 == Path.end()) diagnostic = diag::note_access_natural;
1200 else diagnostic = diag::note_access_constrained_by_path;
1201
1202 S.Diag(BS->getSourceRange().getBegin(), diagnostic)
1203 << BS->getSourceRange()
1204 << (BaseAccess == AS_protected)
1205 << (BS->getAccessSpecifierAsWritten() == AS_none);
Douglas Gregor76ef6582010-05-28 04:34:55 +00001206
1207 if (D)
1208 S.Diag(D->getLocation(), diag::note_field_decl);
1209
John McCall6b2accb2010-02-10 09:31:12 +00001210 return;
1211 }
1212 }
1213
1214 llvm_unreachable("access not apparently constrained by path");
1215}
1216
John McCall58e6f342010-03-16 05:22:47 +00001217static void DiagnoseBadAccess(Sema &S, SourceLocation Loc,
John McCall6b2accb2010-02-10 09:31:12 +00001218 const EffectiveContext &EC,
John McCall161755a2010-04-06 21:38:20 +00001219 AccessTarget &Entity) {
John McCalldb73c682010-04-02 00:03:43 +00001220 const CXXRecordDecl *NamingClass = Entity.getNamingClass();
John McCall161755a2010-04-06 21:38:20 +00001221 const CXXRecordDecl *DeclaringClass = Entity.getDeclaringClass();
1222 NamedDecl *D = (Entity.isMemberAccess() ? Entity.getTargetDecl() : 0);
John McCalldb73c682010-04-02 00:03:43 +00001223
1224 S.Diag(Loc, Entity.getDiag())
1225 << (Entity.getAccess() == AS_protected)
1226 << (D ? D->getDeclName() : DeclarationName())
1227 << S.Context.getTypeDeclType(NamingClass)
1228 << S.Context.getTypeDeclType(DeclaringClass);
1229 DiagnoseAccessPath(S, EC, Entity);
John McCall6b2accb2010-02-10 09:31:12 +00001230}
1231
Francois Pichetb2ee8302011-05-23 03:43:44 +00001232/// MSVC has a bug where if during an using declaration name lookup,
1233/// the declaration found is unaccessible (private) and that declaration
1234/// was bring into scope via another using declaration whose target
1235/// declaration is accessible (public) then no error is generated.
1236/// Example:
1237/// class A {
1238/// public:
1239/// int f();
1240/// };
1241/// class B : public A {
1242/// private:
1243/// using A::f;
1244/// };
1245/// class C : public B {
1246/// private:
1247/// using B::f;
1248/// };
1249///
1250/// Here, B::f is private so this should fail in Standard C++, but
1251/// because B::f refers to A::f which is public MSVC accepts it.
1252static bool IsMicrosoftUsingDeclarationAccessBug(Sema& S,
1253 SourceLocation AccessLoc,
1254 AccessTarget &Entity) {
1255 if (UsingShadowDecl *Shadow =
1256 dyn_cast<UsingShadowDecl>(Entity.getTargetDecl())) {
1257 const NamedDecl *OrigDecl = Entity.getTargetDecl()->getUnderlyingDecl();
1258 if (Entity.getTargetDecl()->getAccess() == AS_private &&
1259 (OrigDecl->getAccess() == AS_public ||
1260 OrigDecl->getAccess() == AS_protected)) {
Richard Smithd7c56e12011-12-29 21:57:33 +00001261 S.Diag(AccessLoc, diag::ext_ms_using_declaration_inaccessible)
Francois Pichetb2ee8302011-05-23 03:43:44 +00001262 << Shadow->getUsingDecl()->getQualifiedNameAsString()
1263 << OrigDecl->getQualifiedNameAsString();
1264 return true;
1265 }
1266 }
1267 return false;
1268}
1269
John McCalldb73c682010-04-02 00:03:43 +00001270/// Determines whether the accessed entity is accessible. Public members
1271/// have been weeded out by this point.
John McCall161755a2010-04-06 21:38:20 +00001272static AccessResult IsAccessible(Sema &S,
1273 const EffectiveContext &EC,
1274 AccessTarget &Entity) {
John McCalldb73c682010-04-02 00:03:43 +00001275 // Determine the actual naming class.
1276 CXXRecordDecl *NamingClass = Entity.getNamingClass();
1277 while (NamingClass->isAnonymousStructOrUnion())
1278 NamingClass = cast<CXXRecordDecl>(NamingClass->getParent());
1279 NamingClass = NamingClass->getCanonicalDecl();
John McCall6b2accb2010-02-10 09:31:12 +00001280
John McCalldb73c682010-04-02 00:03:43 +00001281 AccessSpecifier UnprivilegedAccess = Entity.getAccess();
1282 assert(UnprivilegedAccess != AS_public && "public access not weeded out");
1283
1284 // Before we try to recalculate access paths, try to white-list
1285 // accesses which just trade in on the final step, i.e. accesses
1286 // which don't require [M4] or [B4]. These are by far the most
John McCall161755a2010-04-06 21:38:20 +00001287 // common forms of privileged access.
John McCalldb73c682010-04-02 00:03:43 +00001288 if (UnprivilegedAccess != AS_none) {
John McCall161755a2010-04-06 21:38:20 +00001289 switch (HasAccess(S, EC, NamingClass, UnprivilegedAccess, Entity)) {
1290 case AR_dependent:
John McCalldb73c682010-04-02 00:03:43 +00001291 // This is actually an interesting policy decision. We don't
1292 // *have* to delay immediately here: we can do the full access
1293 // calculation in the hope that friendship on some intermediate
1294 // class will make the declaration accessible non-dependently.
1295 // But that's not cheap, and odds are very good (note: assertion
1296 // made without data) that the friend declaration will determine
1297 // access.
John McCall161755a2010-04-06 21:38:20 +00001298 return AR_dependent;
John McCalldb73c682010-04-02 00:03:43 +00001299
John McCall161755a2010-04-06 21:38:20 +00001300 case AR_accessible: return AR_accessible;
1301 case AR_inaccessible: break;
John McCalldb73c682010-04-02 00:03:43 +00001302 }
1303 }
1304
John McCall161755a2010-04-06 21:38:20 +00001305 AccessTarget::SavedInstanceContext _ = Entity.saveInstanceContext();
John McCall6b2accb2010-02-10 09:31:12 +00001306
John McCalldb73c682010-04-02 00:03:43 +00001307 // We lower member accesses to base accesses by pretending that the
1308 // member is a base class of its declaring class.
1309 AccessSpecifier FinalAccess;
1310
John McCall6b2accb2010-02-10 09:31:12 +00001311 if (Entity.isMemberAccess()) {
John McCalldb73c682010-04-02 00:03:43 +00001312 // Determine if the declaration is accessible from EC when named
1313 // in its declaring class.
John McCall6b2accb2010-02-10 09:31:12 +00001314 NamedDecl *Target = Entity.getTargetDecl();
John McCall161755a2010-04-06 21:38:20 +00001315 const CXXRecordDecl *DeclaringClass = Entity.getDeclaringClass();
John McCall6b2accb2010-02-10 09:31:12 +00001316
John McCalldb73c682010-04-02 00:03:43 +00001317 FinalAccess = Target->getAccess();
John McCall161755a2010-04-06 21:38:20 +00001318 switch (HasAccess(S, EC, DeclaringClass, FinalAccess, Entity)) {
1319 case AR_accessible:
1320 FinalAccess = AS_public;
1321 break;
1322 case AR_inaccessible: break;
1323 case AR_dependent: return AR_dependent; // see above
John McCall6b2accb2010-02-10 09:31:12 +00001324 }
1325
John McCalldb73c682010-04-02 00:03:43 +00001326 if (DeclaringClass == NamingClass)
John McCall161755a2010-04-06 21:38:20 +00001327 return (FinalAccess == AS_public ? AR_accessible : AR_inaccessible);
1328
1329 Entity.suppressInstanceContext();
John McCalldb73c682010-04-02 00:03:43 +00001330 } else {
1331 FinalAccess = AS_public;
John McCall6b2accb2010-02-10 09:31:12 +00001332 }
1333
John McCall161755a2010-04-06 21:38:20 +00001334 assert(Entity.getDeclaringClass() != NamingClass);
John McCall6b2accb2010-02-10 09:31:12 +00001335
1336 // Append the declaration's access if applicable.
1337 CXXBasePaths Paths;
John McCall161755a2010-04-06 21:38:20 +00001338 CXXBasePath *Path = FindBestPath(S, EC, Entity, FinalAccess, Paths);
John McCall0c01d182010-03-24 05:22:00 +00001339 if (!Path)
John McCall161755a2010-04-06 21:38:20 +00001340 return AR_dependent;
John McCall92f88312010-01-23 00:46:32 +00001341
John McCalldb73c682010-04-02 00:03:43 +00001342 assert(Path->Access <= UnprivilegedAccess &&
1343 "access along best path worse than direct?");
1344 if (Path->Access == AS_public)
John McCall161755a2010-04-06 21:38:20 +00001345 return AR_accessible;
1346 return AR_inaccessible;
John McCall0c01d182010-03-24 05:22:00 +00001347}
1348
John McCall161755a2010-04-06 21:38:20 +00001349static void DelayDependentAccess(Sema &S,
1350 const EffectiveContext &EC,
1351 SourceLocation Loc,
1352 const AccessTarget &Entity) {
John McCall0c01d182010-03-24 05:22:00 +00001353 assert(EC.isDependent() && "delaying non-dependent access");
John McCall7ad650f2010-03-24 07:46:06 +00001354 DeclContext *DC = EC.getInnerContext();
John McCall0c01d182010-03-24 05:22:00 +00001355 assert(DC->isDependentContext() && "delaying non-dependent access");
1356 DependentDiagnostic::Create(S.Context, DC, DependentDiagnostic::Access,
1357 Loc,
1358 Entity.isMemberAccess(),
1359 Entity.getAccess(),
1360 Entity.getTargetDecl(),
1361 Entity.getNamingClass(),
John McCall161755a2010-04-06 21:38:20 +00001362 Entity.getBaseObjectType(),
John McCall0c01d182010-03-24 05:22:00 +00001363 Entity.getDiag());
John McCall92f88312010-01-23 00:46:32 +00001364}
1365
John McCall6b2accb2010-02-10 09:31:12 +00001366/// Checks access to an entity from the given effective context.
John McCall161755a2010-04-06 21:38:20 +00001367static AccessResult CheckEffectiveAccess(Sema &S,
1368 const EffectiveContext &EC,
1369 SourceLocation Loc,
1370 AccessTarget &Entity) {
John McCalldb73c682010-04-02 00:03:43 +00001371 assert(Entity.getAccess() != AS_public && "called for public access!");
John McCall92f88312010-01-23 00:46:32 +00001372
David Blaikie4e4d0842012-03-11 07:00:24 +00001373 if (S.getLangOpts().MicrosoftMode &&
Francois Pichetb2ee8302011-05-23 03:43:44 +00001374 IsMicrosoftUsingDeclarationAccessBug(S, Loc, Entity))
1375 return AR_accessible;
1376
John McCalldb73c682010-04-02 00:03:43 +00001377 switch (IsAccessible(S, EC, Entity)) {
John McCall161755a2010-04-06 21:38:20 +00001378 case AR_dependent:
1379 DelayDependentAccess(S, EC, Loc, Entity);
1380 return AR_dependent;
John McCalldb73c682010-04-02 00:03:43 +00001381
John McCall161755a2010-04-06 21:38:20 +00001382 case AR_inaccessible:
John McCalldb73c682010-04-02 00:03:43 +00001383 if (!Entity.isQuiet())
1384 DiagnoseBadAccess(S, Loc, EC, Entity);
John McCall161755a2010-04-06 21:38:20 +00001385 return AR_inaccessible;
John McCalldb73c682010-04-02 00:03:43 +00001386
John McCall161755a2010-04-06 21:38:20 +00001387 case AR_accessible:
1388 return AR_accessible;
John McCall0c01d182010-03-24 05:22:00 +00001389 }
1390
John McCall161755a2010-04-06 21:38:20 +00001391 // silence unnecessary warning
1392 llvm_unreachable("invalid access result");
John McCall6b2accb2010-02-10 09:31:12 +00001393}
John McCall92f88312010-01-23 00:46:32 +00001394
John McCall6b2accb2010-02-10 09:31:12 +00001395static Sema::AccessResult CheckAccess(Sema &S, SourceLocation Loc,
John McCall161755a2010-04-06 21:38:20 +00001396 AccessTarget &Entity) {
John McCall6b2accb2010-02-10 09:31:12 +00001397 // If the access path is public, it's accessible everywhere.
1398 if (Entity.getAccess() == AS_public)
1399 return Sema::AR_accessible;
John McCall92f88312010-01-23 00:46:32 +00001400
John McCalleee1d542011-02-14 07:13:47 +00001401 // If we're currently parsing a declaration, we may need to delay
1402 // access control checking, because our effective context might be
1403 // different based on what the declaration comes out as.
1404 //
1405 // For example, we might be parsing a declaration with a scope
1406 // specifier, like this:
1407 // A::private_type A::foo() { ... }
1408 //
1409 // Or we might be parsing something that will turn out to be a friend:
1410 // void foo(A::private_type);
1411 // void B::foo(A::private_type);
1412 if (S.DelayedDiagnostics.shouldDelayDiagnostics()) {
1413 S.DelayedDiagnostics.add(DelayedDiagnostic::makeAccess(Loc, Entity));
John McCall6b2accb2010-02-10 09:31:12 +00001414 return Sema::AR_delayed;
John McCall92f88312010-01-23 00:46:32 +00001415 }
1416
John McCall161755a2010-04-06 21:38:20 +00001417 EffectiveContext EC(S.CurContext);
1418 switch (CheckEffectiveAccess(S, EC, Loc, Entity)) {
1419 case AR_accessible: return Sema::AR_accessible;
1420 case AR_inaccessible: return Sema::AR_inaccessible;
1421 case AR_dependent: return Sema::AR_dependent;
1422 }
1423 llvm_unreachable("falling off end");
John McCall92f88312010-01-23 00:46:32 +00001424}
1425
John McCall4bfd6802011-02-15 22:51:53 +00001426void Sema::HandleDelayedAccessCheck(DelayedDiagnostic &DD, Decl *decl) {
1427 // Access control for names used in the declarations of functions
1428 // and function templates should normally be evaluated in the context
1429 // of the declaration, just in case it's a friend of something.
1430 // However, this does not apply to local extern declarations.
1431
1432 DeclContext *DC = decl->getDeclContext();
1433 if (FunctionDecl *fn = dyn_cast<FunctionDecl>(decl)) {
1434 if (!DC->isFunctionOrMethod()) DC = fn;
1435 } else if (FunctionTemplateDecl *fnt = dyn_cast<FunctionTemplateDecl>(decl)) {
1436 // Never a local declaration.
1437 DC = fnt->getTemplatedDecl();
1438 }
1439
Chandler Carruth630eb012010-04-18 08:23:21 +00001440 EffectiveContext EC(DC);
John McCall2f514482010-01-27 03:50:35 +00001441
John McCall161755a2010-04-06 21:38:20 +00001442 AccessTarget Target(DD.getAccessData());
1443
1444 if (CheckEffectiveAccess(*this, EC, DD.Loc, Target) == ::AR_inaccessible)
John McCall2f514482010-01-27 03:50:35 +00001445 DD.Triggered = true;
1446}
1447
John McCall0c01d182010-03-24 05:22:00 +00001448void Sema::HandleDependentAccessCheck(const DependentDiagnostic &DD,
1449 const MultiLevelTemplateArgumentList &TemplateArgs) {
1450 SourceLocation Loc = DD.getAccessLoc();
1451 AccessSpecifier Access = DD.getAccess();
1452
1453 Decl *NamingD = FindInstantiatedDecl(Loc, DD.getAccessNamingClass(),
1454 TemplateArgs);
1455 if (!NamingD) return;
1456 Decl *TargetD = FindInstantiatedDecl(Loc, DD.getAccessTarget(),
1457 TemplateArgs);
1458 if (!TargetD) return;
1459
1460 if (DD.isAccessToMember()) {
John McCall161755a2010-04-06 21:38:20 +00001461 CXXRecordDecl *NamingClass = cast<CXXRecordDecl>(NamingD);
1462 NamedDecl *TargetDecl = cast<NamedDecl>(TargetD);
1463 QualType BaseObjectType = DD.getAccessBaseObjectType();
1464 if (!BaseObjectType.isNull()) {
1465 BaseObjectType = SubstType(BaseObjectType, TemplateArgs, Loc,
1466 DeclarationName());
1467 if (BaseObjectType.isNull()) return;
1468 }
1469
1470 AccessTarget Entity(Context,
1471 AccessTarget::Member,
1472 NamingClass,
1473 DeclAccessPair::make(TargetDecl, Access),
1474 BaseObjectType);
John McCall0c01d182010-03-24 05:22:00 +00001475 Entity.setDiag(DD.getDiagnostic());
1476 CheckAccess(*this, Loc, Entity);
1477 } else {
John McCall161755a2010-04-06 21:38:20 +00001478 AccessTarget Entity(Context,
1479 AccessTarget::Base,
1480 cast<CXXRecordDecl>(TargetD),
1481 cast<CXXRecordDecl>(NamingD),
1482 Access);
John McCall0c01d182010-03-24 05:22:00 +00001483 Entity.setDiag(DD.getDiagnostic());
1484 CheckAccess(*this, Loc, Entity);
1485 }
1486}
1487
John McCall6b2accb2010-02-10 09:31:12 +00001488Sema::AccessResult Sema::CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E,
John McCall9aa472c2010-03-19 07:35:19 +00001489 DeclAccessPair Found) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001490 if (!getLangOpts().AccessControl ||
John McCall58e6f342010-03-16 05:22:47 +00001491 !E->getNamingClass() ||
John McCall9aa472c2010-03-19 07:35:19 +00001492 Found.getAccess() == AS_public)
John McCall6b2accb2010-02-10 09:31:12 +00001493 return AR_accessible;
John McCallc373d482010-01-27 01:50:18 +00001494
John McCall161755a2010-04-06 21:38:20 +00001495 AccessTarget Entity(Context, AccessTarget::Member, E->getNamingClass(),
1496 Found, QualType());
John McCall58e6f342010-03-16 05:22:47 +00001497 Entity.setDiag(diag::err_access) << E->getSourceRange();
1498
1499 return CheckAccess(*this, E->getNameLoc(), Entity);
John McCallc373d482010-01-27 01:50:18 +00001500}
1501
1502/// Perform access-control checking on a previously-unresolved member
1503/// access which has now been resolved to a member.
John McCall6b2accb2010-02-10 09:31:12 +00001504Sema::AccessResult Sema::CheckUnresolvedMemberAccess(UnresolvedMemberExpr *E,
John McCall9aa472c2010-03-19 07:35:19 +00001505 DeclAccessPair Found) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001506 if (!getLangOpts().AccessControl ||
John McCall9aa472c2010-03-19 07:35:19 +00001507 Found.getAccess() == AS_public)
John McCall6b2accb2010-02-10 09:31:12 +00001508 return AR_accessible;
John McCallc373d482010-01-27 01:50:18 +00001509
John McCall161755a2010-04-06 21:38:20 +00001510 QualType BaseType = E->getBaseType();
1511 if (E->isArrow())
1512 BaseType = BaseType->getAs<PointerType>()->getPointeeType();
1513
1514 AccessTarget Entity(Context, AccessTarget::Member, E->getNamingClass(),
1515 Found, BaseType);
John McCall58e6f342010-03-16 05:22:47 +00001516 Entity.setDiag(diag::err_access) << E->getSourceRange();
1517
1518 return CheckAccess(*this, E->getMemberLoc(), Entity);
John McCallc373d482010-01-27 01:50:18 +00001519}
1520
John McCall12d8d802012-04-09 20:53:23 +00001521/// Is the given special member function accessible for the purposes of
1522/// deciding whether to define a special member function as deleted?
1523bool Sema::isSpecialMemberAccessibleForDeletion(CXXMethodDecl *decl,
1524 AccessSpecifier access,
1525 QualType objectType) {
1526 // Fast path.
1527 if (access == AS_public || !getLangOpts().AccessControl) return true;
1528
1529 AccessTarget entity(Context, AccessTarget::Member, decl->getParent(),
1530 DeclAccessPair::make(decl, access), objectType);
1531
1532 // Suppress diagnostics.
1533 entity.setDiag(PDiag());
1534
1535 switch (CheckAccess(*this, SourceLocation(), entity)) {
1536 case AR_accessible: return true;
1537 case AR_inaccessible: return false;
1538 case AR_dependent: llvm_unreachable("dependent for =delete computation");
1539 case AR_delayed: llvm_unreachable("cannot delay =delete computation");
1540 }
1541 llvm_unreachable("bad access result");
1542}
1543
John McCall6b2accb2010-02-10 09:31:12 +00001544Sema::AccessResult Sema::CheckDestructorAccess(SourceLocation Loc,
John McCall58e6f342010-03-16 05:22:47 +00001545 CXXDestructorDecl *Dtor,
John McCallb9abd8722012-04-07 03:04:20 +00001546 const PartialDiagnostic &PDiag,
1547 QualType ObjectTy) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001548 if (!getLangOpts().AccessControl)
John McCall6b2accb2010-02-10 09:31:12 +00001549 return AR_accessible;
John McCall4f9506a2010-02-02 08:45:54 +00001550
John McCall58e6f342010-03-16 05:22:47 +00001551 // There's never a path involved when checking implicit destructor access.
John McCall4f9506a2010-02-02 08:45:54 +00001552 AccessSpecifier Access = Dtor->getAccess();
1553 if (Access == AS_public)
John McCall6b2accb2010-02-10 09:31:12 +00001554 return AR_accessible;
John McCall4f9506a2010-02-02 08:45:54 +00001555
John McCall58e6f342010-03-16 05:22:47 +00001556 CXXRecordDecl *NamingClass = Dtor->getParent();
John McCallb9abd8722012-04-07 03:04:20 +00001557 if (ObjectTy.isNull()) ObjectTy = Context.getTypeDeclType(NamingClass);
1558
John McCall161755a2010-04-06 21:38:20 +00001559 AccessTarget Entity(Context, AccessTarget::Member, NamingClass,
1560 DeclAccessPair::make(Dtor, Access),
John McCallb9abd8722012-04-07 03:04:20 +00001561 ObjectTy);
John McCall58e6f342010-03-16 05:22:47 +00001562 Entity.setDiag(PDiag); // TODO: avoid copy
1563
1564 return CheckAccess(*this, Loc, Entity);
John McCall4f9506a2010-02-02 08:45:54 +00001565}
1566
John McCallb13b7372010-02-01 03:16:54 +00001567/// Checks access to a constructor.
John McCall6b2accb2010-02-10 09:31:12 +00001568Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc,
Jeffrey Yasskin57d12fd2010-06-07 15:58:05 +00001569 CXXConstructorDecl *Constructor,
1570 const InitializedEntity &Entity,
1571 AccessSpecifier Access,
1572 bool IsCopyBindingRefToTemp) {
John McCallb9abd8722012-04-07 03:04:20 +00001573 if (!getLangOpts().AccessControl || Access == AS_public)
John McCall6b2accb2010-02-10 09:31:12 +00001574 return AR_accessible;
John McCallb13b7372010-02-01 03:16:54 +00001575
Sean Huntb320e0c2011-06-10 03:50:41 +00001576 PartialDiagnostic PD(PDiag());
Anders Carlsson9a68a672010-04-21 18:47:17 +00001577 switch (Entity.getKind()) {
1578 default:
Sean Huntb320e0c2011-06-10 03:50:41 +00001579 PD = PDiag(IsCopyBindingRefToTemp
1580 ? diag::ext_rvalue_to_reference_access_ctor
1581 : diag::err_access_ctor);
1582
Anders Carlsson9a68a672010-04-21 18:47:17 +00001583 break;
John McCall58e6f342010-03-16 05:22:47 +00001584
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00001585 case InitializedEntity::EK_Base:
Sean Huntb320e0c2011-06-10 03:50:41 +00001586 PD = PDiag(diag::err_access_base_ctor);
1587 PD << Entity.isInheritedVirtualBase()
1588 << Entity.getBaseSpecifier()->getType() << getSpecialMember(Constructor);
Anders Carlsson9a68a672010-04-21 18:47:17 +00001589 break;
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00001590
Anders Carlssonb99c6662010-04-21 20:28:29 +00001591 case InitializedEntity::EK_Member: {
1592 const FieldDecl *Field = cast<FieldDecl>(Entity.getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00001593 PD = PDiag(diag::err_access_field_ctor);
1594 PD << Field->getType() << getSpecialMember(Constructor);
Anders Carlssonb99c6662010-04-21 20:28:29 +00001595 break;
1596 }
Anders Carlsson9a68a672010-04-21 18:47:17 +00001597
Douglas Gregor47736542012-02-15 16:57:26 +00001598 case InitializedEntity::EK_LambdaCapture: {
1599 const VarDecl *Var = Entity.getCapturedVar();
1600 PD = PDiag(diag::err_access_lambda_capture);
1601 PD << Var->getName() << Entity.getType() << getSpecialMember(Constructor);
1602 break;
1603 }
1604
Anders Carlsson711f34a2010-04-21 19:52:01 +00001605 }
1606
John McCallb9abd8722012-04-07 03:04:20 +00001607 return CheckConstructorAccess(UseLoc, Constructor, Entity, Access, PD);
Sean Huntb320e0c2011-06-10 03:50:41 +00001608}
1609
1610/// Checks access to a constructor.
1611Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc,
1612 CXXConstructorDecl *Constructor,
John McCallb9abd8722012-04-07 03:04:20 +00001613 const InitializedEntity &Entity,
Sean Huntb320e0c2011-06-10 03:50:41 +00001614 AccessSpecifier Access,
John McCallb9abd8722012-04-07 03:04:20 +00001615 const PartialDiagnostic &PD) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001616 if (!getLangOpts().AccessControl ||
Sean Huntb320e0c2011-06-10 03:50:41 +00001617 Access == AS_public)
1618 return AR_accessible;
1619
1620 CXXRecordDecl *NamingClass = Constructor->getParent();
John McCallb9abd8722012-04-07 03:04:20 +00001621
1622 // Initializing a base sub-object is an instance method call on an
1623 // object of the derived class. Otherwise, we have an instance method
1624 // call on an object of the constructed type.
1625 CXXRecordDecl *ObjectClass;
1626 if (Entity.getKind() == InitializedEntity::EK_Base) {
1627 ObjectClass = cast<CXXConstructorDecl>(CurContext)->getParent();
1628 } else {
1629 ObjectClass = NamingClass;
1630 }
1631
Sean Huntb320e0c2011-06-10 03:50:41 +00001632 AccessTarget AccessEntity(Context, AccessTarget::Member, NamingClass,
1633 DeclAccessPair::make(Constructor, Access),
John McCallb9abd8722012-04-07 03:04:20 +00001634 Context.getTypeDeclType(ObjectClass));
Sean Huntb320e0c2011-06-10 03:50:41 +00001635 AccessEntity.setDiag(PD);
1636
Anders Carlsson9a68a672010-04-21 18:47:17 +00001637 return CheckAccess(*this, UseLoc, AccessEntity);
John McCallb9abd8722012-04-07 03:04:20 +00001638}
John McCallb13b7372010-02-01 03:16:54 +00001639
John McCall90c8c572010-03-18 08:19:33 +00001640/// Checks access to an overloaded operator new or delete.
1641Sema::AccessResult Sema::CheckAllocationAccess(SourceLocation OpLoc,
1642 SourceRange PlacementRange,
1643 CXXRecordDecl *NamingClass,
Sean Huntcb45a0f2011-05-12 22:46:25 +00001644 DeclAccessPair Found,
1645 bool Diagnose) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001646 if (!getLangOpts().AccessControl ||
John McCall90c8c572010-03-18 08:19:33 +00001647 !NamingClass ||
John McCall9aa472c2010-03-19 07:35:19 +00001648 Found.getAccess() == AS_public)
John McCall90c8c572010-03-18 08:19:33 +00001649 return AR_accessible;
1650
John McCall161755a2010-04-06 21:38:20 +00001651 AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found,
1652 QualType());
Sean Huntcb45a0f2011-05-12 22:46:25 +00001653 if (Diagnose)
1654 Entity.setDiag(diag::err_access)
1655 << PlacementRange;
John McCall90c8c572010-03-18 08:19:33 +00001656
1657 return CheckAccess(*this, OpLoc, Entity);
1658}
1659
John McCallb13b7372010-02-01 03:16:54 +00001660/// Checks access to an overloaded member operator, including
1661/// conversion operators.
John McCall6b2accb2010-02-10 09:31:12 +00001662Sema::AccessResult Sema::CheckMemberOperatorAccess(SourceLocation OpLoc,
1663 Expr *ObjectExpr,
John McCall58e6f342010-03-16 05:22:47 +00001664 Expr *ArgExpr,
John McCall9aa472c2010-03-19 07:35:19 +00001665 DeclAccessPair Found) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001666 if (!getLangOpts().AccessControl ||
John McCall9aa472c2010-03-19 07:35:19 +00001667 Found.getAccess() == AS_public)
John McCall6b2accb2010-02-10 09:31:12 +00001668 return AR_accessible;
John McCall5357b612010-01-28 01:42:12 +00001669
John McCallca82a822011-09-21 08:36:56 +00001670 const RecordType *RT = ObjectExpr->getType()->castAs<RecordType>();
John McCall5357b612010-01-28 01:42:12 +00001671 CXXRecordDecl *NamingClass = cast<CXXRecordDecl>(RT->getDecl());
1672
John McCall161755a2010-04-06 21:38:20 +00001673 AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found,
1674 ObjectExpr->getType());
John McCall58e6f342010-03-16 05:22:47 +00001675 Entity.setDiag(diag::err_access)
1676 << ObjectExpr->getSourceRange()
1677 << (ArgExpr ? ArgExpr->getSourceRange() : SourceRange());
1678
1679 return CheckAccess(*this, OpLoc, Entity);
John McCall6b2accb2010-02-10 09:31:12 +00001680}
John McCall5357b612010-01-28 01:42:12 +00001681
John McCall1f2e1a92012-08-10 03:15:35 +00001682/// Checks access to the target of a friend declaration.
1683Sema::AccessResult Sema::CheckFriendAccess(NamedDecl *target) {
1684 assert(isa<CXXMethodDecl>(target) ||
1685 (isa<FunctionTemplateDecl>(target) &&
1686 isa<CXXMethodDecl>(cast<FunctionTemplateDecl>(target)
1687 ->getTemplatedDecl())));
1688
1689 // Friendship lookup is a redeclaration lookup, so there's never an
1690 // inheritance path modifying access.
1691 AccessSpecifier access = target->getAccess();
1692
1693 if (!getLangOpts().AccessControl || access == AS_public)
1694 return AR_accessible;
1695
1696 CXXMethodDecl *method = dyn_cast<CXXMethodDecl>(target);
1697 if (!method)
1698 method = cast<CXXMethodDecl>(
1699 cast<FunctionTemplateDecl>(target)->getTemplatedDecl());
1700 assert(method->getQualifier());
1701
1702 AccessTarget entity(Context, AccessTarget::Member,
1703 cast<CXXRecordDecl>(target->getDeclContext()),
1704 DeclAccessPair::make(target, access),
1705 /*no instance context*/ QualType());
1706 entity.setDiag(diag::err_access_friend_function)
1707 << method->getQualifierLoc().getSourceRange();
1708
1709 // We need to bypass delayed-diagnostics because we might be called
1710 // while the ParsingDeclarator is active.
1711 EffectiveContext EC(CurContext);
1712 switch (CheckEffectiveAccess(*this, EC, target->getLocation(), entity)) {
1713 case AR_accessible: return Sema::AR_accessible;
1714 case AR_inaccessible: return Sema::AR_inaccessible;
1715 case AR_dependent: return Sema::AR_dependent;
1716 }
1717 llvm_unreachable("falling off end");
1718}
1719
John McCall6bb80172010-03-30 21:47:33 +00001720Sema::AccessResult Sema::CheckAddressOfMemberAccess(Expr *OvlExpr,
1721 DeclAccessPair Found) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001722 if (!getLangOpts().AccessControl ||
John McCalle2f5ba92010-03-30 22:20:00 +00001723 Found.getAccess() == AS_none ||
John McCall6bb80172010-03-30 21:47:33 +00001724 Found.getAccess() == AS_public)
1725 return AR_accessible;
1726
John McCall9c72c602010-08-27 09:08:28 +00001727 OverloadExpr *Ovl = OverloadExpr::find(OvlExpr).Expression;
John McCalle9ee23e2010-04-22 18:44:12 +00001728 CXXRecordDecl *NamingClass = Ovl->getNamingClass();
John McCall6bb80172010-03-30 21:47:33 +00001729
John McCall161755a2010-04-06 21:38:20 +00001730 AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found,
John McCallb9abd8722012-04-07 03:04:20 +00001731 /*no instance context*/ QualType());
John McCall6bb80172010-03-30 21:47:33 +00001732 Entity.setDiag(diag::err_access)
1733 << Ovl->getSourceRange();
1734
1735 return CheckAccess(*this, Ovl->getNameLoc(), Entity);
1736}
1737
John McCall6b2accb2010-02-10 09:31:12 +00001738/// Checks access for a hierarchy conversion.
1739///
John McCall6b2accb2010-02-10 09:31:12 +00001740/// \param ForceCheck true if this check should be performed even if access
1741/// control is disabled; some things rely on this for semantics
1742/// \param ForceUnprivileged true if this check should proceed as if the
1743/// context had no special privileges
John McCall6b2accb2010-02-10 09:31:12 +00001744Sema::AccessResult Sema::CheckBaseClassAccess(SourceLocation AccessLoc,
John McCall6b2accb2010-02-10 09:31:12 +00001745 QualType Base,
1746 QualType Derived,
1747 const CXXBasePath &Path,
John McCall58e6f342010-03-16 05:22:47 +00001748 unsigned DiagID,
John McCall6b2accb2010-02-10 09:31:12 +00001749 bool ForceCheck,
John McCall58e6f342010-03-16 05:22:47 +00001750 bool ForceUnprivileged) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001751 if (!ForceCheck && !getLangOpts().AccessControl)
John McCall6b2accb2010-02-10 09:31:12 +00001752 return AR_accessible;
John McCall5357b612010-01-28 01:42:12 +00001753
John McCall6b2accb2010-02-10 09:31:12 +00001754 if (Path.Access == AS_public)
1755 return AR_accessible;
John McCall5357b612010-01-28 01:42:12 +00001756
John McCall6b2accb2010-02-10 09:31:12 +00001757 CXXRecordDecl *BaseD, *DerivedD;
1758 BaseD = cast<CXXRecordDecl>(Base->getAs<RecordType>()->getDecl());
1759 DerivedD = cast<CXXRecordDecl>(Derived->getAs<RecordType>()->getDecl());
John McCall58e6f342010-03-16 05:22:47 +00001760
John McCall161755a2010-04-06 21:38:20 +00001761 AccessTarget Entity(Context, AccessTarget::Base, BaseD, DerivedD,
1762 Path.Access);
John McCall58e6f342010-03-16 05:22:47 +00001763 if (DiagID)
1764 Entity.setDiag(DiagID) << Derived << Base;
John McCall6b2accb2010-02-10 09:31:12 +00001765
John McCall161755a2010-04-06 21:38:20 +00001766 if (ForceUnprivileged) {
1767 switch (CheckEffectiveAccess(*this, EffectiveContext(),
1768 AccessLoc, Entity)) {
1769 case ::AR_accessible: return Sema::AR_accessible;
1770 case ::AR_inaccessible: return Sema::AR_inaccessible;
1771 case ::AR_dependent: return Sema::AR_dependent;
1772 }
1773 llvm_unreachable("unexpected result from CheckEffectiveAccess");
1774 }
John McCall58e6f342010-03-16 05:22:47 +00001775 return CheckAccess(*this, AccessLoc, Entity);
John McCall5357b612010-01-28 01:42:12 +00001776}
1777
John McCall92f88312010-01-23 00:46:32 +00001778/// Checks access to all the declarations in the given result set.
John McCall6b2accb2010-02-10 09:31:12 +00001779void Sema::CheckLookupAccess(const LookupResult &R) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001780 assert(getLangOpts().AccessControl
John McCall6b2accb2010-02-10 09:31:12 +00001781 && "performing access check without access control");
1782 assert(R.getNamingClass() && "performing access check without naming class");
1783
John McCall58e6f342010-03-16 05:22:47 +00001784 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
1785 if (I.getAccess() != AS_public) {
John McCall161755a2010-04-06 21:38:20 +00001786 AccessTarget Entity(Context, AccessedEntity::Member,
1787 R.getNamingClass(), I.getPair(),
Erik Verbruggen24dd9ad2011-09-19 15:10:40 +00001788 R.getBaseObjectType());
John McCall58e6f342010-03-16 05:22:47 +00001789 Entity.setDiag(diag::err_access);
John McCall58e6f342010-03-16 05:22:47 +00001790 CheckAccess(*this, R.getNameLoc(), Entity);
1791 }
1792 }
John McCall92f88312010-01-23 00:46:32 +00001793}
Chandler Carruth926c4b42010-06-28 08:39:25 +00001794
Erik Verbruggend1205962011-10-06 07:27:49 +00001795/// Checks access to Decl from the given class. The check will take access
1796/// specifiers into account, but no member access expressions and such.
1797///
1798/// \param Decl the declaration to check if it can be accessed
Dmitri Gribenko1ddbd892012-08-24 00:01:24 +00001799/// \param Ctx the class/context from which to start the search
Erik Verbruggend1205962011-10-06 07:27:49 +00001800/// \return true if the Decl is accessible from the Class, false otherwise.
Douglas Gregor17015ef2011-11-03 16:51:37 +00001801bool Sema::IsSimplyAccessible(NamedDecl *Decl, DeclContext *Ctx) {
1802 if (CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(Ctx)) {
Douglas Gregora885dce2011-11-03 17:41:55 +00001803 if (!Decl->isCXXClassMember())
Douglas Gregor17015ef2011-11-03 16:51:37 +00001804 return true;
Erik Verbruggend1205962011-10-06 07:27:49 +00001805
Douglas Gregor17015ef2011-11-03 16:51:37 +00001806 QualType qType = Class->getTypeForDecl()->getCanonicalTypeInternal();
1807 AccessTarget Entity(Context, AccessedEntity::Member, Class,
1808 DeclAccessPair::make(Decl, Decl->getAccess()),
1809 qType);
1810 if (Entity.getAccess() == AS_public)
1811 return true;
Erik Verbruggend1205962011-10-06 07:27:49 +00001812
Douglas Gregor17015ef2011-11-03 16:51:37 +00001813 EffectiveContext EC(CurContext);
1814 return ::IsAccessible(*this, EC, Entity) != ::AR_inaccessible;
1815 }
1816
Douglas Gregorf3c02862011-11-03 19:00:24 +00001817 if (ObjCIvarDecl *Ivar = dyn_cast<ObjCIvarDecl>(Decl)) {
1818 // @public and @package ivars are always accessible.
1819 if (Ivar->getCanonicalAccessControl() == ObjCIvarDecl::Public ||
1820 Ivar->getCanonicalAccessControl() == ObjCIvarDecl::Package)
1821 return true;
1822
1823
1824
1825 // If we are inside a class or category implementation, determine the
1826 // interface we're in.
1827 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
1828 if (ObjCMethodDecl *MD = getCurMethodDecl())
1829 ClassOfMethodDecl = MD->getClassInterface();
1830 else if (FunctionDecl *FD = getCurFunctionDecl()) {
1831 if (ObjCImplDecl *Impl
1832 = dyn_cast<ObjCImplDecl>(FD->getLexicalDeclContext())) {
1833 if (ObjCImplementationDecl *IMPD
1834 = dyn_cast<ObjCImplementationDecl>(Impl))
1835 ClassOfMethodDecl = IMPD->getClassInterface();
1836 else if (ObjCCategoryImplDecl* CatImplClass
1837 = dyn_cast<ObjCCategoryImplDecl>(Impl))
1838 ClassOfMethodDecl = CatImplClass->getClassInterface();
1839 }
1840 }
1841
1842 // If we're not in an interface, this ivar is inaccessible.
1843 if (!ClassOfMethodDecl)
1844 return false;
1845
1846 // If we're inside the same interface that owns the ivar, we're fine.
Douglas Gregor60ef3082011-12-15 00:29:59 +00001847 if (declaresSameEntity(ClassOfMethodDecl, Ivar->getContainingInterface()))
Douglas Gregorf3c02862011-11-03 19:00:24 +00001848 return true;
1849
1850 // If the ivar is private, it's inaccessible.
1851 if (Ivar->getCanonicalAccessControl() == ObjCIvarDecl::Private)
1852 return false;
1853
1854 return Ivar->getContainingInterface()->isSuperClassOf(ClassOfMethodDecl);
1855 }
1856
Douglas Gregor17015ef2011-11-03 16:51:37 +00001857 return true;
Erik Verbruggend1205962011-10-06 07:27:49 +00001858}