1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | #include "clang/Basic/Specifiers.h" |
14 | #include "clang/Sema/SemaInternal.h" |
15 | #include "clang/AST/ASTContext.h" |
16 | #include "clang/AST/CXXInheritance.h" |
17 | #include "clang/AST/DeclCXX.h" |
18 | #include "clang/AST/DeclFriend.h" |
19 | #include "clang/AST/DeclObjC.h" |
20 | #include "clang/AST/DependentDiagnostic.h" |
21 | #include "clang/AST/ExprCXX.h" |
22 | #include "clang/Sema/DelayedDiagnostic.h" |
23 | #include "clang/Sema/Initialization.h" |
24 | #include "clang/Sema/Lookup.h" |
25 | |
26 | using namespace clang; |
27 | using namespace sema; |
28 | |
29 | |
30 | enum AccessResult { |
31 | AR_accessible, |
32 | AR_inaccessible, |
33 | AR_dependent |
34 | }; |
35 | |
36 | |
37 | |
38 | |
39 | bool Sema::SetMemberAccessSpecifier(NamedDecl *MemberDecl, |
40 | NamedDecl *PrevMemberDecl, |
41 | AccessSpecifier LexicalAS) { |
42 | if (!PrevMemberDecl) { |
43 | |
44 | MemberDecl->setAccess(LexicalAS); |
45 | return false; |
46 | } |
47 | |
48 | |
49 | |
50 | if (LexicalAS != AS_none && LexicalAS != PrevMemberDecl->getAccess()) { |
51 | Diag(MemberDecl->getLocation(), |
52 | diag::err_class_redeclared_with_different_access) |
53 | << MemberDecl << LexicalAS; |
54 | Diag(PrevMemberDecl->getLocation(), diag::note_previous_access_declaration) |
55 | << PrevMemberDecl << PrevMemberDecl->getAccess(); |
56 | |
57 | MemberDecl->setAccess(LexicalAS); |
58 | return true; |
59 | } |
60 | |
61 | MemberDecl->setAccess(PrevMemberDecl->getAccess()); |
62 | return false; |
63 | } |
64 | |
65 | static CXXRecordDecl *FindDeclaringClass(NamedDecl *D) { |
66 | DeclContext *DC = D->getDeclContext(); |
67 | |
68 | |
69 | |
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 | |
79 | namespace { |
80 | struct EffectiveContext { |
81 | EffectiveContext() : Inner(nullptr), Dependent(false) {} |
82 | |
83 | explicit EffectiveContext(DeclContext *DC) |
84 | : Inner(DC), |
85 | Dependent(DC->isDependentContext()) { |
86 | |
87 | |
88 | |
89 | |
90 | |
91 | |
92 | |
93 | |
94 | |
95 | |
96 | |
97 | |
98 | |
99 | while (true) { |
100 | |
101 | |
102 | |
103 | |
104 | |
105 | |
106 | if (isa<CXXRecordDecl>(DC)) { |
107 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
108 | Records.push_back(Record->getCanonicalDecl()); |
109 | DC = Record->getDeclContext(); |
110 | } else if (isa<FunctionDecl>(DC)) { |
111 | FunctionDecl *Function = cast<FunctionDecl>(DC); |
112 | Functions.push_back(Function->getCanonicalDecl()); |
113 | if (Function->getFriendObjectKind()) |
114 | DC = Function->getLexicalDeclContext(); |
115 | else |
116 | DC = Function->getDeclContext(); |
117 | } else if (DC->isFileContext()) { |
118 | break; |
119 | } else { |
120 | DC = DC->getParent(); |
121 | } |
122 | } |
123 | } |
124 | |
125 | bool isDependent() const { return Dependent; } |
126 | |
127 | bool includesClass(const CXXRecordDecl *R) const { |
128 | R = R->getCanonicalDecl(); |
129 | return std::find(Records.begin(), Records.end(), R) |
130 | != Records.end(); |
131 | } |
132 | |
133 | |
134 | |
135 | DeclContext *getInnerContext() const { |
136 | return Inner; |
137 | } |
138 | |
139 | typedef SmallVectorImpl<CXXRecordDecl*>::const_iterator record_iterator; |
140 | |
141 | DeclContext *Inner; |
142 | SmallVector<FunctionDecl*, 4> Functions; |
143 | SmallVector<CXXRecordDecl*, 4> Records; |
144 | bool Dependent; |
145 | }; |
146 | |
147 | |
148 | |
149 | struct AccessTarget : public AccessedEntity { |
150 | AccessTarget(const AccessedEntity &Entity) |
151 | : AccessedEntity(Entity) { |
152 | initialize(); |
153 | } |
154 | |
155 | AccessTarget(ASTContext &Context, |
156 | MemberNonce _, |
157 | CXXRecordDecl *NamingClass, |
158 | DeclAccessPair FoundDecl, |
159 | QualType BaseObjectType) |
160 | : AccessedEntity(Context.getDiagAllocator(), Member, NamingClass, |
161 | FoundDecl, BaseObjectType) { |
162 | initialize(); |
163 | } |
164 | |
165 | AccessTarget(ASTContext &Context, |
166 | BaseNonce _, |
167 | CXXRecordDecl *BaseClass, |
168 | CXXRecordDecl *DerivedClass, |
169 | AccessSpecifier Access) |
170 | : AccessedEntity(Context.getDiagAllocator(), Base, BaseClass, DerivedClass, |
171 | Access) { |
172 | initialize(); |
173 | } |
174 | |
175 | bool isInstanceMember() const { |
176 | return (isMemberAccess() && getTargetDecl()->isCXXInstanceMember()); |
177 | } |
178 | |
179 | bool hasInstanceContext() const { |
180 | return HasInstanceContext; |
181 | } |
182 | |
183 | class SavedInstanceContext { |
184 | public: |
185 | SavedInstanceContext(SavedInstanceContext &&S) |
186 | : Target(S.Target), Has(S.Has) { |
187 | S.Target = nullptr; |
188 | } |
189 | ~SavedInstanceContext() { |
190 | if (Target) |
191 | Target->HasInstanceContext = Has; |
192 | } |
193 | |
194 | private: |
195 | friend struct AccessTarget; |
196 | explicit SavedInstanceContext(AccessTarget &Target) |
197 | : Target(&Target), Has(Target.HasInstanceContext) {} |
198 | AccessTarget *Target; |
199 | bool Has; |
200 | }; |
201 | |
202 | SavedInstanceContext saveInstanceContext() { |
203 | return SavedInstanceContext(*this); |
204 | } |
205 | |
206 | void suppressInstanceContext() { |
207 | HasInstanceContext = false; |
208 | } |
209 | |
210 | const CXXRecordDecl *resolveInstanceContext(Sema &S) const { |
211 | assert(HasInstanceContext); |
212 | if (CalculatedInstanceContext) |
213 | return InstanceContext; |
214 | |
215 | CalculatedInstanceContext = true; |
216 | DeclContext *IC = S.computeDeclContext(getBaseObjectType()); |
217 | InstanceContext = (IC ? cast<CXXRecordDecl>(IC)->getCanonicalDecl() |
218 | : nullptr); |
219 | return InstanceContext; |
220 | } |
221 | |
222 | const CXXRecordDecl *getDeclaringClass() const { |
223 | return DeclaringClass; |
224 | } |
225 | |
226 | |
227 | |
228 | const CXXRecordDecl *getEffectiveNamingClass() const { |
229 | const CXXRecordDecl *namingClass = getNamingClass(); |
230 | while (namingClass->isAnonymousStructOrUnion()) |
231 | namingClass = cast<CXXRecordDecl>(namingClass->getParent()); |
232 | return namingClass->getCanonicalDecl(); |
233 | } |
234 | |
235 | private: |
236 | void initialize() { |
237 | HasInstanceContext = (isMemberAccess() && |
238 | !getBaseObjectType().isNull() && |
239 | getTargetDecl()->isCXXInstanceMember()); |
240 | CalculatedInstanceContext = false; |
241 | InstanceContext = nullptr; |
242 | |
243 | if (isMemberAccess()) |
244 | DeclaringClass = FindDeclaringClass(getTargetDecl()); |
245 | else |
246 | DeclaringClass = getBaseClass(); |
247 | DeclaringClass = DeclaringClass->getCanonicalDecl(); |
248 | } |
249 | |
250 | bool HasInstanceContext : 1; |
251 | mutable bool CalculatedInstanceContext : 1; |
252 | mutable const CXXRecordDecl *InstanceContext; |
253 | const CXXRecordDecl *DeclaringClass; |
254 | }; |
255 | |
256 | } |
257 | |
258 | |
259 | static bool MightInstantiateTo(const CXXRecordDecl *From, |
260 | const CXXRecordDecl *To) { |
261 | |
262 | if (From->getDeclName() != To->getDeclName()) |
263 | return false; |
264 | |
265 | const DeclContext *FromDC = From->getDeclContext()->getPrimaryContext(); |
266 | const DeclContext *ToDC = To->getDeclContext()->getPrimaryContext(); |
267 | if (FromDC == ToDC) return true; |
268 | if (FromDC->isFileContext() || ToDC->isFileContext()) return false; |
269 | |
270 | |
271 | return true; |
272 | } |
273 | |
274 | |
275 | |
276 | |
277 | |
278 | |
279 | static AccessResult IsDerivedFromInclusive(const CXXRecordDecl *Derived, |
280 | const CXXRecordDecl *Target) { |
281 | getCanonicalDecl() == Derived", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 281, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(Derived->getCanonicalDecl() == Derived); |
282 | getCanonicalDecl() == Target", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 282, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(Target->getCanonicalDecl() == Target); |
283 | |
284 | if (Derived == Target) return AR_accessible; |
285 | |
286 | bool CheckDependent = Derived->isDependentContext(); |
287 | if (CheckDependent && MightInstantiateTo(Derived, Target)) |
288 | return AR_dependent; |
289 | |
290 | AccessResult OnFailure = AR_inaccessible; |
291 | SmallVector<const CXXRecordDecl*, 8> Queue; |
292 | |
293 | while (true) { |
294 | if (Derived->isDependentContext() && !Derived->hasDefinition() && |
295 | !Derived->isLambda()) |
296 | return AR_dependent; |
297 | |
298 | for (const auto &I : Derived->bases()) { |
299 | const CXXRecordDecl *RD; |
300 | |
301 | QualType T = I.getType(); |
302 | if (const RecordType *RT = T->getAs<RecordType>()) { |
303 | RD = cast<CXXRecordDecl>(RT->getDecl()); |
304 | } else if (const InjectedClassNameType *IT |
305 | = T->getAs<InjectedClassNameType>()) { |
306 | RD = IT->getDecl(); |
307 | } else { |
308 | (0) . __assert_fail ("T->isDependentType() && \"non-dependent base wasn't a record?\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 308, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(T->isDependentType() && "non-dependent base wasn't a record?"); |
309 | OnFailure = AR_dependent; |
310 | continue; |
311 | } |
312 | |
313 | RD = RD->getCanonicalDecl(); |
314 | if (RD == Target) return AR_accessible; |
315 | if (CheckDependent && MightInstantiateTo(RD, Target)) |
316 | OnFailure = AR_dependent; |
317 | |
318 | Queue.push_back(RD); |
319 | } |
320 | |
321 | if (Queue.empty()) break; |
322 | |
323 | Derived = Queue.pop_back_val(); |
324 | } |
325 | |
326 | return OnFailure; |
327 | } |
328 | |
329 | |
330 | static bool MightInstantiateTo(Sema &S, DeclContext *Context, |
331 | DeclContext *Friend) { |
332 | if (Friend == Context) |
333 | return true; |
334 | |
335 | (0) . __assert_fail ("!Friend->isDependentContext() && \"can't handle friends with dependent contexts here\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 336, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(!Friend->isDependentContext() && |
336 | (0) . __assert_fail ("!Friend->isDependentContext() && \"can't handle friends with dependent contexts here\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 336, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "can't handle friends with dependent contexts here"); |
337 | |
338 | if (!Context->isDependentContext()) |
339 | return false; |
340 | |
341 | if (Friend->isFileContext()) |
342 | return false; |
343 | |
344 | |
345 | return true; |
346 | } |
347 | |
348 | |
349 | |
350 | static bool MightInstantiateTo(Sema &S, CanQualType Context, CanQualType Friend) { |
351 | if (Friend == Context) |
352 | return true; |
353 | |
354 | if (!Friend->isDependentType() && !Context->isDependentType()) |
355 | return false; |
356 | |
357 | |
358 | return true; |
359 | } |
360 | |
361 | static bool MightInstantiateTo(Sema &S, |
362 | FunctionDecl *Context, |
363 | FunctionDecl *Friend) { |
364 | if (Context->getDeclName() != Friend->getDeclName()) |
365 | return false; |
366 | |
367 | if (!MightInstantiateTo(S, |
368 | Context->getDeclContext(), |
369 | Friend->getDeclContext())) |
370 | return false; |
371 | |
372 | CanQual<FunctionProtoType> FriendTy |
373 | = S.Context.getCanonicalType(Friend->getType()) |
374 | ->getAs<FunctionProtoType>(); |
375 | CanQual<FunctionProtoType> ContextTy |
376 | = S.Context.getCanonicalType(Context->getType()) |
377 | ->getAs<FunctionProtoType>(); |
378 | |
379 | |
380 | |
381 | if (FriendTy.getQualifiers() != ContextTy.getQualifiers()) |
382 | return false; |
383 | |
384 | if (FriendTy->getNumParams() != ContextTy->getNumParams()) |
385 | return false; |
386 | |
387 | if (!MightInstantiateTo(S, ContextTy->getReturnType(), |
388 | FriendTy->getReturnType())) |
389 | return false; |
390 | |
391 | for (unsigned I = 0, E = FriendTy->getNumParams(); I != E; ++I) |
392 | if (!MightInstantiateTo(S, ContextTy->getParamType(I), |
393 | FriendTy->getParamType(I))) |
394 | return false; |
395 | |
396 | return true; |
397 | } |
398 | |
399 | static bool MightInstantiateTo(Sema &S, |
400 | FunctionTemplateDecl *Context, |
401 | FunctionTemplateDecl *Friend) { |
402 | return MightInstantiateTo(S, |
403 | Context->getTemplatedDecl(), |
404 | Friend->getTemplatedDecl()); |
405 | } |
406 | |
407 | static AccessResult MatchesFriend(Sema &S, |
408 | const EffectiveContext &EC, |
409 | const CXXRecordDecl *Friend) { |
410 | if (EC.includesClass(Friend)) |
411 | return AR_accessible; |
412 | |
413 | if (EC.isDependent()) { |
414 | for (const CXXRecordDecl *Context : EC.Records) { |
415 | if (MightInstantiateTo(Context, Friend)) |
416 | return AR_dependent; |
417 | } |
418 | } |
419 | |
420 | return AR_inaccessible; |
421 | } |
422 | |
423 | static AccessResult MatchesFriend(Sema &S, |
424 | const EffectiveContext &EC, |
425 | CanQualType Friend) { |
426 | if (const RecordType *RT = Friend->getAs<RecordType>()) |
427 | return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl())); |
428 | |
429 | |
430 | if (Friend->isDependentType()) |
431 | return AR_dependent; |
432 | |
433 | return AR_inaccessible; |
434 | } |
435 | |
436 | |
437 | |
438 | static AccessResult MatchesFriend(Sema &S, |
439 | const EffectiveContext &EC, |
440 | ClassTemplateDecl *Friend) { |
441 | AccessResult OnFailure = AR_inaccessible; |
442 | |
443 | |
444 | |
445 | for (SmallVectorImpl<CXXRecordDecl*>::const_iterator |
446 | I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) { |
447 | CXXRecordDecl *Record = *I; |
448 | |
449 | |
450 | ClassTemplateDecl *CTD; |
451 | |
452 | |
453 | if (isa<ClassTemplateSpecializationDecl>(Record)) { |
454 | CTD = cast<ClassTemplateSpecializationDecl>(Record) |
455 | ->getSpecializedTemplate(); |
456 | |
457 | |
458 | } else { |
459 | CTD = Record->getDescribedClassTemplate(); |
460 | if (!CTD) continue; |
461 | } |
462 | |
463 | |
464 | if (Friend == CTD->getCanonicalDecl()) |
465 | return AR_accessible; |
466 | |
467 | |
468 | if (!EC.isDependent()) |
469 | continue; |
470 | |
471 | |
472 | |
473 | if (CTD->getDeclName() != Friend->getDeclName()) |
474 | continue; |
475 | |
476 | |
477 | |
478 | if (!MightInstantiateTo(S, CTD->getDeclContext(), |
479 | Friend->getDeclContext())) |
480 | continue; |
481 | |
482 | |
483 | OnFailure = AR_dependent; |
484 | } |
485 | |
486 | return OnFailure; |
487 | } |
488 | |
489 | |
490 | |
491 | static AccessResult MatchesFriend(Sema &S, |
492 | const EffectiveContext &EC, |
493 | FunctionDecl *Friend) { |
494 | AccessResult OnFailure = AR_inaccessible; |
495 | |
496 | for (SmallVectorImpl<FunctionDecl*>::const_iterator |
497 | I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) { |
498 | if (Friend == *I) |
499 | return AR_accessible; |
500 | |
501 | if (EC.isDependent() && MightInstantiateTo(S, *I, Friend)) |
502 | OnFailure = AR_dependent; |
503 | } |
504 | |
505 | return OnFailure; |
506 | } |
507 | |
508 | |
509 | |
510 | static AccessResult MatchesFriend(Sema &S, |
511 | const EffectiveContext &EC, |
512 | FunctionTemplateDecl *Friend) { |
513 | if (EC.Functions.empty()) return AR_inaccessible; |
514 | |
515 | AccessResult OnFailure = AR_inaccessible; |
516 | |
517 | for (SmallVectorImpl<FunctionDecl*>::const_iterator |
518 | I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) { |
519 | |
520 | FunctionTemplateDecl *FTD = (*I)->getPrimaryTemplate(); |
521 | if (!FTD) |
522 | FTD = (*I)->getDescribedFunctionTemplate(); |
523 | if (!FTD) |
524 | continue; |
525 | |
526 | FTD = FTD->getCanonicalDecl(); |
527 | |
528 | if (Friend == FTD) |
529 | return AR_accessible; |
530 | |
531 | if (EC.isDependent() && MightInstantiateTo(S, FTD, Friend)) |
532 | OnFailure = AR_dependent; |
533 | } |
534 | |
535 | return OnFailure; |
536 | } |
537 | |
538 | |
539 | |
540 | static AccessResult MatchesFriend(Sema &S, |
541 | const EffectiveContext &EC, |
542 | FriendDecl *FriendD) { |
543 | |
544 | |
545 | if (FriendD->isInvalidDecl() || FriendD->isUnsupportedFriend()) |
546 | return AR_accessible; |
547 | |
548 | if (TypeSourceInfo *T = FriendD->getFriendType()) |
549 | return MatchesFriend(S, EC, T->getType()->getCanonicalTypeUnqualified()); |
550 | |
551 | NamedDecl *Friend |
552 | = cast<NamedDecl>(FriendD->getFriendDecl()->getCanonicalDecl()); |
553 | |
554 | |
555 | |
556 | if (isa<ClassTemplateDecl>(Friend)) |
557 | return MatchesFriend(S, EC, cast<ClassTemplateDecl>(Friend)); |
558 | |
559 | if (isa<FunctionTemplateDecl>(Friend)) |
560 | return MatchesFriend(S, EC, cast<FunctionTemplateDecl>(Friend)); |
561 | |
562 | if (isa<CXXRecordDecl>(Friend)) |
563 | return MatchesFriend(S, EC, cast<CXXRecordDecl>(Friend)); |
564 | |
565 | (0) . __assert_fail ("isa(Friend) && \"unknown friend decl kind\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 565, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(isa<FunctionDecl>(Friend) && "unknown friend decl kind"); |
566 | return MatchesFriend(S, EC, cast<FunctionDecl>(Friend)); |
567 | } |
568 | |
569 | static AccessResult GetFriendKind(Sema &S, |
570 | const EffectiveContext &EC, |
571 | const CXXRecordDecl *Class) { |
572 | AccessResult OnFailure = AR_inaccessible; |
573 | |
574 | |
575 | for (auto *Friend : Class->friends()) { |
576 | switch (MatchesFriend(S, EC, Friend)) { |
577 | case AR_accessible: |
578 | return AR_accessible; |
579 | |
580 | case AR_inaccessible: |
581 | continue; |
582 | |
583 | case AR_dependent: |
584 | OnFailure = AR_dependent; |
585 | break; |
586 | } |
587 | } |
588 | |
589 | |
590 | return OnFailure; |
591 | } |
592 | |
593 | namespace { |
594 | |
595 | |
596 | |
597 | struct ProtectedFriendContext { |
598 | Sema &S; |
599 | const EffectiveContext &EC; |
600 | const CXXRecordDecl *NamingClass; |
601 | bool CheckDependent; |
602 | bool EverDependent; |
603 | |
604 | |
605 | SmallVector<const CXXRecordDecl*, 20> CurPath; |
606 | |
607 | ProtectedFriendContext(Sema &S, const EffectiveContext &EC, |
608 | const CXXRecordDecl *InstanceContext, |
609 | const CXXRecordDecl *NamingClass) |
610 | : S(S), EC(EC), NamingClass(NamingClass), |
611 | CheckDependent(InstanceContext->isDependentContext() || |
612 | NamingClass->isDependentContext()), |
613 | EverDependent(false) {} |
614 | |
615 | |
616 | |
617 | bool checkFriendshipAlongPath(unsigned I) { |
618 | assert(I < CurPath.size()); |
619 | for (unsigned E = CurPath.size(); I != E; ++I) { |
620 | switch (GetFriendKind(S, EC, CurPath[I])) { |
621 | case AR_accessible: return true; |
622 | case AR_inaccessible: continue; |
623 | case AR_dependent: EverDependent = true; continue; |
624 | } |
625 | } |
626 | return false; |
627 | } |
628 | |
629 | |
630 | |
631 | |
632 | |
633 | |
634 | bool findFriendship(const CXXRecordDecl *Cur, unsigned PrivateDepth) { |
635 | |
636 | |
637 | |
638 | if (Cur == NamingClass) |
639 | return checkFriendshipAlongPath(PrivateDepth); |
640 | |
641 | if (CheckDependent && MightInstantiateTo(Cur, NamingClass)) |
642 | EverDependent = true; |
643 | |
644 | |
645 | for (const auto &I : Cur->bases()) { |
646 | |
647 | |
648 | unsigned BasePrivateDepth = PrivateDepth; |
649 | if (I.getAccessSpecifier() == AS_private) |
650 | BasePrivateDepth = CurPath.size() - 1; |
651 | |
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 | (0) . __assert_fail ("T->isDependentType() && \"non-dependent base wasn't a record?\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 661, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(T->isDependentType() && "non-dependent base wasn't a record?"); |
662 | EverDependent = true; |
663 | continue; |
664 | } |
665 | |
666 | |
667 | CurPath.push_back(RD); |
668 | if (findFriendship(RD->getCanonicalDecl(), BasePrivateDepth)) |
669 | return true; |
670 | CurPath.pop_back(); |
671 | } |
672 | |
673 | return false; |
674 | } |
675 | |
676 | bool findFriendship(const CXXRecordDecl *Cur) { |
677 | assert(CurPath.empty()); |
678 | CurPath.push_back(Cur); |
679 | return findFriendship(Cur, 0); |
680 | } |
681 | }; |
682 | } |
683 | |
684 | |
685 | |
686 | |
687 | |
688 | |
689 | |
690 | |
691 | |
692 | |
693 | |
694 | |
695 | |
696 | |
697 | |
698 | |
699 | |
700 | |
701 | |
702 | |
703 | |
704 | |
705 | |
706 | |
707 | |
708 | |
709 | |
710 | static AccessResult GetProtectedFriendKind(Sema &S, const EffectiveContext &EC, |
711 | const CXXRecordDecl *InstanceContext, |
712 | const CXXRecordDecl *NamingClass) { |
713 | getCanonicalDecl() == InstanceContext", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 714, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(InstanceContext == nullptr || |
714 | getCanonicalDecl() == InstanceContext", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 714, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> InstanceContext->getCanonicalDecl() == InstanceContext); |
715 | getCanonicalDecl() == NamingClass", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 715, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(NamingClass->getCanonicalDecl() == NamingClass); |
716 | |
717 | |
718 | |
719 | |
720 | if (!InstanceContext) return GetFriendKind(S, EC, NamingClass); |
721 | |
722 | 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 | |
728 | static AccessResult HasAccess(Sema &S, |
729 | const EffectiveContext &EC, |
730 | const CXXRecordDecl *NamingClass, |
731 | AccessSpecifier Access, |
732 | const AccessTarget &Target) { |
733 | (0) . __assert_fail ("NamingClass->getCanonicalDecl() == NamingClass && \"declaration should be canonicalized before being passed here\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 734, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(NamingClass->getCanonicalDecl() == NamingClass && |
734 | (0) . __assert_fail ("NamingClass->getCanonicalDecl() == NamingClass && \"declaration should be canonicalized before being passed here\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 734, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "declaration should be canonicalized before being passed here"); |
735 | |
736 | if (Access == AS_public) return AR_accessible; |
737 | assert(Access == AS_private || Access == AS_protected); |
738 | |
739 | AccessResult OnFailure = AR_inaccessible; |
740 | |
741 | for (EffectiveContext::record_iterator |
742 | I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) { |
743 | |
744 | |
745 | const CXXRecordDecl *ECRecord = *I; |
746 | |
747 | |
748 | if (Access == AS_private) { |
749 | if (ECRecord == NamingClass) |
750 | return AR_accessible; |
751 | |
752 | if (EC.isDependent() && MightInstantiateTo(ECRecord, NamingClass)) |
753 | OnFailure = AR_dependent; |
754 | |
755 | |
756 | } 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 | |
764 | |
765 | |
766 | |
767 | |
768 | |
769 | |
770 | |
771 | |
772 | |
773 | |
774 | |
775 | |
776 | |
777 | |
778 | |
779 | |
780 | |
781 | if (!Target.hasInstanceContext()) { |
782 | |
783 | if (!Target.isInstanceMember()) return AR_accessible; |
784 | |
785 | |
786 | |
787 | |
788 | |
789 | |
790 | |
791 | |
792 | if (S.getLangOpts().MSVCCompat && !EC.Functions.empty()) |
793 | if (CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(EC.Functions.front())) |
794 | if (MD->isStatic()) return AR_accessible; |
795 | |
796 | |
797 | |
798 | |
799 | |
800 | |
801 | |
802 | |
803 | |
804 | |
805 | |
806 | |
807 | |
808 | |
809 | |
810 | |
811 | |
812 | if (NamingClass == ECRecord) return AR_accessible; |
813 | |
814 | |
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 | |
826 | 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 | } |
832 | } |
833 | |
834 | |
835 | |
836 | |
837 | |
838 | |
839 | |
840 | |
841 | |
842 | |
843 | |
844 | if (Access == AS_protected && Target.isInstanceMember()) { |
845 | |
846 | const CXXRecordDecl *InstanceContext = nullptr; |
847 | if (Target.hasInstanceContext()) { |
848 | InstanceContext = Target.resolveInstanceContext(S); |
849 | if (!InstanceContext) return AR_dependent; |
850 | } |
851 | |
852 | switch (GetProtectedFriendKind(S, EC, InstanceContext, NamingClass)) { |
853 | case AR_accessible: return AR_accessible; |
854 | case AR_inaccessible: return OnFailure; |
855 | case AR_dependent: return AR_dependent; |
856 | } |
857 | llvm_unreachable("impossible friendship kind"); |
858 | } |
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 | |
867 | llvm_unreachable("impossible friendship kind"); |
868 | } |
869 | |
870 | |
871 | |
872 | |
873 | |
874 | |
875 | |
876 | |
877 | |
878 | |
879 | |
880 | |
881 | |
882 | |
883 | |
884 | |
885 | |
886 | |
887 | |
888 | |
889 | |
890 | |
891 | |
892 | |
893 | |
894 | |
895 | |
896 | |
897 | |
898 | |
899 | |
900 | |
901 | |
902 | |
903 | |
904 | |
905 | |
906 | |
907 | |
908 | |
909 | |
910 | |
911 | |
912 | |
913 | |
914 | |
915 | |
916 | |
917 | |
918 | |
919 | |
920 | |
921 | |
922 | |
923 | |
924 | |
925 | |
926 | static CXXBasePath *FindBestPath(Sema &S, |
927 | const EffectiveContext &EC, |
928 | AccessTarget &Target, |
929 | AccessSpecifier FinalAccess, |
930 | CXXBasePaths &Paths) { |
931 | |
932 | const CXXRecordDecl *Derived = Target.getNamingClass(); |
933 | const CXXRecordDecl *Base = Target.getDeclaringClass(); |
934 | |
935 | |
936 | bool isDerived = Derived->isDerivedFrom(const_cast<CXXRecordDecl*>(Base), |
937 | Paths); |
938 | (0) . __assert_fail ("isDerived && \"derived class not actually derived from base\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 938, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(isDerived && "derived class not actually derived from base"); |
939 | (void) isDerived; |
940 | |
941 | CXXBasePath *BestPath = nullptr; |
942 | |
943 | (0) . __assert_fail ("FinalAccess != AS_none && \"forbidden access after declaring class\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 943, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(FinalAccess != AS_none && "forbidden access after declaring class"); |
944 | |
945 | bool AnyDependent = false; |
946 | |
947 | |
948 | for (CXXBasePaths::paths_iterator PI = Paths.begin(), PE = Paths.end(); |
949 | PI != PE; ++PI) { |
950 | AccessTarget::SavedInstanceContext _ = Target.saveInstanceContext(); |
951 | |
952 | |
953 | AccessSpecifier PathAccess = FinalAccess; |
954 | CXXBasePath::iterator I = PI->end(), E = PI->begin(); |
955 | while (I != E) { |
956 | --I; |
957 | |
958 | assert(PathAccess != AS_none); |
959 | |
960 | |
961 | |
962 | |
963 | if (PathAccess == AS_private) { |
964 | PathAccess = AS_none; |
965 | break; |
966 | } |
967 | |
968 | const CXXRecordDecl *NC = I->Class->getCanonicalDecl(); |
969 | |
970 | AccessSpecifier BaseAccess = I->Base->getAccessSpecifier(); |
971 | PathAccess = std::max(PathAccess, BaseAccess); |
972 | |
973 | switch (HasAccess(S, EC, NC, PathAccess, Target)) { |
974 | case AR_inaccessible: break; |
975 | case AR_accessible: |
976 | PathAccess = AS_public; |
977 | |
978 | |
979 | |
980 | Target.suppressInstanceContext(); |
981 | break; |
982 | case AR_dependent: |
983 | AnyDependent = true; |
984 | goto Next; |
985 | } |
986 | } |
987 | |
988 | |
989 | |
990 | if (BestPath == nullptr || PathAccess < BestPath->Access) { |
991 | BestPath = &*PI; |
992 | BestPath->Access = PathAccess; |
993 | |
994 | |
995 | if (BestPath->Access == AS_public) |
996 | return BestPath; |
997 | } |
998 | |
999 | Next: ; |
1000 | } |
1001 | |
1002 | (0) . __assert_fail ("(!BestPath || BestPath->Access != AS_public) && \"fell out of loop with public path\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1003, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert((!BestPath || BestPath->Access != AS_public) && |
1003 | (0) . __assert_fail ("(!BestPath || BestPath->Access != AS_public) && \"fell out of loop with public path\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1003, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "fell out of loop with public path"); |
1004 | |
1005 | |
1006 | |
1007 | if (AnyDependent) |
1008 | return nullptr; |
1009 | |
1010 | return BestPath; |
1011 | } |
1012 | |
1013 | |
1014 | |
1015 | |
1016 | |
1017 | |
1018 | static bool TryDiagnoseProtectedAccess(Sema &S, const EffectiveContext &EC, |
1019 | AccessTarget &Target) { |
1020 | |
1021 | if (!Target.isInstanceMember()) |
1022 | return false; |
1023 | |
1024 | assert(Target.isMemberAccess()); |
1025 | |
1026 | const CXXRecordDecl *NamingClass = Target.getEffectiveNamingClass(); |
1027 | |
1028 | for (EffectiveContext::record_iterator |
1029 | I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) { |
1030 | const CXXRecordDecl *ECRecord = *I; |
1031 | switch (IsDerivedFromInclusive(ECRecord, NamingClass)) { |
1032 | case AR_accessible: break; |
1033 | case AR_inaccessible: continue; |
1034 | case AR_dependent: continue; |
1035 | } |
1036 | |
1037 | |
1038 | |
1039 | |
1040 | |
1041 | |
1042 | |
1043 | |
1044 | |
1045 | NamedDecl *D = Target.getTargetDecl(); |
1046 | |
1047 | |
1048 | |
1049 | if (!Target.hasInstanceContext()) { |
1050 | |
1051 | if (NamingClass == ECRecord) continue; |
1052 | |
1053 | |
1054 | |
1055 | S.Diag(D->getLocation(), diag::note_access_protected_restricted_noobject) |
1056 | << S.Context.getTypeDeclType(ECRecord); |
1057 | return true; |
1058 | } |
1059 | |
1060 | const CXXRecordDecl *InstanceContext = Target.resolveInstanceContext(S); |
1061 | (0) . __assert_fail ("InstanceContext && \"diagnosing dependent access\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1061, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(InstanceContext && "diagnosing dependent access"); |
1062 | |
1063 | switch (IsDerivedFromInclusive(InstanceContext, ECRecord)) { |
1064 | case AR_accessible: continue; |
1065 | case AR_dependent: continue; |
1066 | case AR_inaccessible: |
1067 | break; |
1068 | } |
1069 | |
1070 | |
1071 | |
1072 | |
1073 | if (isa<CXXConstructorDecl>(D) || isa<CXXDestructorDecl>(D) || |
1074 | (isa<FunctionTemplateDecl>(D) && |
1075 | isa<CXXConstructorDecl>( |
1076 | cast<FunctionTemplateDecl>(D)->getTemplatedDecl()))) { |
1077 | return S.Diag(D->getLocation(), |
1078 | diag::note_access_protected_restricted_ctordtor) |
1079 | << isa<CXXDestructorDecl>(D->getAsFunction()); |
1080 | } |
1081 | |
1082 | |
1083 | return S.Diag(D->getLocation(), |
1084 | diag::note_access_protected_restricted_object) |
1085 | << S.Context.getTypeDeclType(ECRecord); |
1086 | } |
1087 | |
1088 | return false; |
1089 | } |
1090 | |
1091 | |
1092 | |
1093 | static void diagnoseBadDirectAccess(Sema &S, |
1094 | const EffectiveContext &EC, |
1095 | AccessTarget &entity) { |
1096 | assert(entity.isMemberAccess()); |
1097 | NamedDecl *D = entity.getTargetDecl(); |
1098 | |
1099 | if (D->getAccess() == AS_protected && |
1100 | TryDiagnoseProtectedAccess(S, EC, entity)) |
1101 | return; |
1102 | |
1103 | |
1104 | while (D->isOutOfLine()) { |
1105 | NamedDecl *PrevDecl = nullptr; |
1106 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
1107 | PrevDecl = VD->getPreviousDecl(); |
1108 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) |
1109 | PrevDecl = FD->getPreviousDecl(); |
1110 | else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(D)) |
1111 | PrevDecl = TND->getPreviousDecl(); |
1112 | else if (TagDecl *TD = dyn_cast<TagDecl>(D)) { |
1113 | if (isa<RecordDecl>(D) && cast<RecordDecl>(D)->isInjectedClassName()) |
1114 | break; |
1115 | PrevDecl = TD->getPreviousDecl(); |
1116 | } |
1117 | if (!PrevDecl) break; |
1118 | D = PrevDecl; |
1119 | } |
1120 | |
1121 | CXXRecordDecl *DeclaringClass = FindDeclaringClass(D); |
1122 | Decl *ImmediateChild; |
1123 | if (D->getDeclContext() == DeclaringClass) |
1124 | ImmediateChild = D; |
1125 | else { |
1126 | DeclContext *DC = D->getDeclContext(); |
1127 | while (DC->getParent() != DeclaringClass) |
1128 | DC = DC->getParent(); |
1129 | ImmediateChild = cast<Decl>(DC); |
1130 | } |
1131 | |
1132 | |
1133 | |
1134 | bool isImplicit = true; |
1135 | for (const auto *I : DeclaringClass->decls()) { |
1136 | if (I == ImmediateChild) break; |
1137 | if (isa<AccessSpecDecl>(I)) { |
1138 | isImplicit = false; |
1139 | break; |
1140 | } |
1141 | } |
1142 | |
1143 | S.Diag(D->getLocation(), diag::note_access_natural) |
1144 | << (unsigned) (D->getAccess() == AS_protected) |
1145 | << isImplicit; |
1146 | } |
1147 | |
1148 | |
1149 | |
1150 | static void DiagnoseAccessPath(Sema &S, |
1151 | const EffectiveContext &EC, |
1152 | AccessTarget &entity) { |
1153 | |
1154 | AccessTarget::SavedInstanceContext _ = entity.saveInstanceContext(); |
1155 | |
1156 | |
1157 | |
1158 | |
1159 | |
1160 | AccessSpecifier accessSoFar = AS_public; |
1161 | |
1162 | |
1163 | if (entity.isMemberAccess()) { |
1164 | NamedDecl *D = entity.getTargetDecl(); |
1165 | accessSoFar = D->getAccess(); |
1166 | const CXXRecordDecl *declaringClass = entity.getDeclaringClass(); |
1167 | |
1168 | switch (HasAccess(S, EC, declaringClass, accessSoFar, entity)) { |
1169 | |
1170 | |
1171 | case AR_accessible: |
1172 | accessSoFar = AS_public; |
1173 | entity.suppressInstanceContext(); |
1174 | break; |
1175 | |
1176 | case AR_inaccessible: |
1177 | if (accessSoFar == AS_private || |
1178 | declaringClass == entity.getEffectiveNamingClass()) |
1179 | return diagnoseBadDirectAccess(S, EC, entity); |
1180 | break; |
1181 | |
1182 | case AR_dependent: |
1183 | llvm_unreachable("cannot diagnose dependent access"); |
1184 | } |
1185 | } |
1186 | |
1187 | CXXBasePaths paths; |
1188 | CXXBasePath &path = *FindBestPath(S, EC, entity, accessSoFar, paths); |
1189 | assert(path.Access != AS_public); |
1190 | |
1191 | CXXBasePath::iterator i = path.end(), e = path.begin(); |
1192 | CXXBasePath::iterator constrainingBase = i; |
1193 | while (i != e) { |
1194 | --i; |
1195 | |
1196 | assert(accessSoFar != AS_none && accessSoFar != AS_private); |
1197 | |
1198 | |
1199 | |
1200 | const CXXRecordDecl *derivingClass = i->Class->getCanonicalDecl(); |
1201 | const CXXBaseSpecifier *base = i->Base; |
1202 | |
1203 | |
1204 | |
1205 | AccessSpecifier baseAccess = base->getAccessSpecifier(); |
1206 | if (baseAccess > accessSoFar) { |
1207 | constrainingBase = i; |
1208 | accessSoFar = baseAccess; |
1209 | } |
1210 | |
1211 | switch (HasAccess(S, EC, derivingClass, accessSoFar, entity)) { |
1212 | case AR_inaccessible: break; |
1213 | case AR_accessible: |
1214 | accessSoFar = AS_public; |
1215 | entity.suppressInstanceContext(); |
1216 | constrainingBase = nullptr; |
1217 | break; |
1218 | case AR_dependent: |
1219 | llvm_unreachable("cannot diagnose dependent access"); |
1220 | } |
1221 | |
1222 | |
1223 | |
1224 | if (accessSoFar == AS_private) { |
1225 | assert(baseAccess == AS_private); |
1226 | assert(constrainingBase == i); |
1227 | break; |
1228 | } |
1229 | } |
1230 | |
1231 | |
1232 | |
1233 | if (constrainingBase == path.end()) |
1234 | return diagnoseBadDirectAccess(S, EC, entity); |
1235 | |
1236 | |
1237 | |
1238 | |
1239 | unsigned diagnostic; |
1240 | if (entity.isMemberAccess() || |
1241 | constrainingBase + 1 != path.end()) { |
1242 | diagnostic = diag::note_access_constrained_by_path; |
1243 | } else { |
1244 | diagnostic = diag::note_access_natural; |
1245 | } |
1246 | |
1247 | const CXXBaseSpecifier *base = constrainingBase->Base; |
1248 | |
1249 | S.Diag(base->getSourceRange().getBegin(), diagnostic) |
1250 | << base->getSourceRange() |
1251 | << (base->getAccessSpecifier() == AS_protected) |
1252 | << (base->getAccessSpecifierAsWritten() == AS_none); |
1253 | |
1254 | if (entity.isMemberAccess()) |
1255 | S.Diag(entity.getTargetDecl()->getLocation(), |
1256 | diag::note_member_declared_at); |
1257 | } |
1258 | |
1259 | static void DiagnoseBadAccess(Sema &S, SourceLocation Loc, |
1260 | const EffectiveContext &EC, |
1261 | AccessTarget &Entity) { |
1262 | const CXXRecordDecl *NamingClass = Entity.getNamingClass(); |
1263 | const CXXRecordDecl *DeclaringClass = Entity.getDeclaringClass(); |
1264 | NamedDecl *D = (Entity.isMemberAccess() ? Entity.getTargetDecl() : nullptr); |
1265 | |
1266 | S.Diag(Loc, Entity.getDiag()) |
1267 | << (Entity.getAccess() == AS_protected) |
1268 | << (D ? D->getDeclName() : DeclarationName()) |
1269 | << S.Context.getTypeDeclType(NamingClass) |
1270 | << S.Context.getTypeDeclType(DeclaringClass); |
1271 | DiagnoseAccessPath(S, EC, Entity); |
1272 | } |
1273 | |
1274 | |
1275 | |
1276 | |
1277 | |
1278 | |
1279 | |
1280 | |
1281 | |
1282 | |
1283 | |
1284 | |
1285 | |
1286 | |
1287 | |
1288 | |
1289 | |
1290 | |
1291 | |
1292 | |
1293 | |
1294 | static bool IsMicrosoftUsingDeclarationAccessBug(Sema& S, |
1295 | SourceLocation AccessLoc, |
1296 | AccessTarget &Entity) { |
1297 | if (UsingShadowDecl *Shadow = |
1298 | dyn_cast<UsingShadowDecl>(Entity.getTargetDecl())) { |
1299 | const NamedDecl *OrigDecl = Entity.getTargetDecl()->getUnderlyingDecl(); |
1300 | if (Entity.getTargetDecl()->getAccess() == AS_private && |
1301 | (OrigDecl->getAccess() == AS_public || |
1302 | OrigDecl->getAccess() == AS_protected)) { |
1303 | S.Diag(AccessLoc, diag::ext_ms_using_declaration_inaccessible) |
1304 | << Shadow->getUsingDecl()->getQualifiedNameAsString() |
1305 | << OrigDecl->getQualifiedNameAsString(); |
1306 | return true; |
1307 | } |
1308 | } |
1309 | return false; |
1310 | } |
1311 | |
1312 | |
1313 | |
1314 | static AccessResult IsAccessible(Sema &S, |
1315 | const EffectiveContext &EC, |
1316 | AccessTarget &Entity) { |
1317 | |
1318 | const CXXRecordDecl *NamingClass = Entity.getEffectiveNamingClass(); |
1319 | |
1320 | AccessSpecifier UnprivilegedAccess = Entity.getAccess(); |
1321 | (0) . __assert_fail ("UnprivilegedAccess != AS_public && \"public access not weeded out\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1321, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(UnprivilegedAccess != AS_public && "public access not weeded out"); |
1322 | |
1323 | |
1324 | |
1325 | |
1326 | |
1327 | if (UnprivilegedAccess != AS_none) { |
1328 | switch (HasAccess(S, EC, NamingClass, UnprivilegedAccess, Entity)) { |
1329 | case AR_dependent: |
1330 | |
1331 | |
1332 | |
1333 | |
1334 | |
1335 | |
1336 | |
1337 | return AR_dependent; |
1338 | |
1339 | case AR_accessible: return AR_accessible; |
1340 | case AR_inaccessible: break; |
1341 | } |
1342 | } |
1343 | |
1344 | AccessTarget::SavedInstanceContext _ = Entity.saveInstanceContext(); |
1345 | |
1346 | |
1347 | |
1348 | AccessSpecifier FinalAccess; |
1349 | |
1350 | if (Entity.isMemberAccess()) { |
1351 | |
1352 | |
1353 | NamedDecl *Target = Entity.getTargetDecl(); |
1354 | const CXXRecordDecl *DeclaringClass = Entity.getDeclaringClass(); |
1355 | |
1356 | FinalAccess = Target->getAccess(); |
1357 | switch (HasAccess(S, EC, DeclaringClass, FinalAccess, Entity)) { |
1358 | case AR_accessible: |
1359 | |
1360 | |
1361 | |
1362 | |
1363 | |
1364 | FinalAccess = AS_public; |
1365 | Entity.suppressInstanceContext(); |
1366 | break; |
1367 | case AR_inaccessible: break; |
1368 | case AR_dependent: return AR_dependent; |
1369 | } |
1370 | |
1371 | if (DeclaringClass == NamingClass) |
1372 | return (FinalAccess == AS_public ? AR_accessible : AR_inaccessible); |
1373 | } else { |
1374 | FinalAccess = AS_public; |
1375 | } |
1376 | |
1377 | assert(Entity.getDeclaringClass() != NamingClass); |
1378 | |
1379 | |
1380 | CXXBasePaths Paths; |
1381 | CXXBasePath *Path = FindBestPath(S, EC, Entity, FinalAccess, Paths); |
1382 | if (!Path) |
1383 | return AR_dependent; |
1384 | |
1385 | (0) . __assert_fail ("Path->Access <= UnprivilegedAccess && \"access along best path worse than direct?\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1386, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(Path->Access <= UnprivilegedAccess && |
1386 | (0) . __assert_fail ("Path->Access <= UnprivilegedAccess && \"access along best path worse than direct?\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1386, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "access along best path worse than direct?"); |
1387 | if (Path->Access == AS_public) |
1388 | return AR_accessible; |
1389 | return AR_inaccessible; |
1390 | } |
1391 | |
1392 | static void DelayDependentAccess(Sema &S, |
1393 | const EffectiveContext &EC, |
1394 | SourceLocation Loc, |
1395 | const AccessTarget &Entity) { |
1396 | (0) . __assert_fail ("EC.isDependent() && \"delaying non-dependent access\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1396, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(EC.isDependent() && "delaying non-dependent access"); |
1397 | DeclContext *DC = EC.getInnerContext(); |
1398 | (0) . __assert_fail ("DC->isDependentContext() && \"delaying non-dependent access\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1398, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(DC->isDependentContext() && "delaying non-dependent access"); |
1399 | DependentDiagnostic::Create(S.Context, DC, DependentDiagnostic::Access, |
1400 | Loc, |
1401 | Entity.isMemberAccess(), |
1402 | Entity.getAccess(), |
1403 | Entity.getTargetDecl(), |
1404 | Entity.getNamingClass(), |
1405 | Entity.getBaseObjectType(), |
1406 | Entity.getDiag()); |
1407 | } |
1408 | |
1409 | |
1410 | static AccessResult CheckEffectiveAccess(Sema &S, |
1411 | const EffectiveContext &EC, |
1412 | SourceLocation Loc, |
1413 | AccessTarget &Entity) { |
1414 | (0) . __assert_fail ("Entity.getAccess() != AS_public && \"called for public access!\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1414, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(Entity.getAccess() != AS_public && "called for public access!"); |
1415 | |
1416 | switch (IsAccessible(S, EC, Entity)) { |
1417 | case AR_dependent: |
1418 | DelayDependentAccess(S, EC, Loc, Entity); |
1419 | return AR_dependent; |
1420 | |
1421 | case AR_inaccessible: |
1422 | if (S.getLangOpts().MSVCCompat && |
1423 | IsMicrosoftUsingDeclarationAccessBug(S, Loc, Entity)) |
1424 | return AR_accessible; |
1425 | if (!Entity.isQuiet()) |
1426 | DiagnoseBadAccess(S, Loc, EC, Entity); |
1427 | return AR_inaccessible; |
1428 | |
1429 | case AR_accessible: |
1430 | return AR_accessible; |
1431 | } |
1432 | |
1433 | |
1434 | llvm_unreachable("invalid access result"); |
1435 | } |
1436 | |
1437 | static Sema::AccessResult CheckAccess(Sema &S, SourceLocation Loc, |
1438 | AccessTarget &Entity) { |
1439 | |
1440 | if (Entity.getAccess() == AS_public) |
1441 | return Sema::AR_accessible; |
1442 | |
1443 | |
1444 | |
1445 | |
1446 | |
1447 | |
1448 | |
1449 | |
1450 | |
1451 | |
1452 | |
1453 | |
1454 | if (S.DelayedDiagnostics.shouldDelayDiagnostics()) { |
1455 | S.DelayedDiagnostics.add(DelayedDiagnostic::makeAccess(Loc, Entity)); |
1456 | return Sema::AR_delayed; |
1457 | } |
1458 | |
1459 | EffectiveContext EC(S.CurContext); |
1460 | switch (CheckEffectiveAccess(S, EC, Loc, Entity)) { |
1461 | case AR_accessible: return Sema::AR_accessible; |
1462 | case AR_inaccessible: return Sema::AR_inaccessible; |
1463 | case AR_dependent: return Sema::AR_dependent; |
1464 | } |
1465 | llvm_unreachable("invalid access result"); |
1466 | } |
1467 | |
1468 | void Sema::HandleDelayedAccessCheck(DelayedDiagnostic &DD, Decl *D) { |
1469 | |
1470 | |
1471 | |
1472 | |
1473 | |
1474 | DeclContext *DC = D->getDeclContext(); |
1475 | if (D->isLocalExternDecl()) { |
1476 | DC = D->getLexicalDeclContext(); |
1477 | } else if (FunctionDecl *FN = dyn_cast<FunctionDecl>(D)) { |
1478 | DC = FN; |
1479 | } else if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) { |
1480 | DC = cast<DeclContext>(TD->getTemplatedDecl()); |
1481 | } |
1482 | |
1483 | EffectiveContext EC(DC); |
1484 | |
1485 | AccessTarget Target(DD.getAccessData()); |
1486 | |
1487 | if (CheckEffectiveAccess(*this, EC, DD.Loc, Target) == ::AR_inaccessible) |
1488 | DD.Triggered = true; |
1489 | } |
1490 | |
1491 | void Sema::HandleDependentAccessCheck(const DependentDiagnostic &DD, |
1492 | const MultiLevelTemplateArgumentList &TemplateArgs) { |
1493 | SourceLocation Loc = DD.getAccessLoc(); |
1494 | AccessSpecifier Access = DD.getAccess(); |
1495 | |
1496 | Decl *NamingD = FindInstantiatedDecl(Loc, DD.getAccessNamingClass(), |
1497 | TemplateArgs); |
1498 | if (!NamingD) return; |
1499 | Decl *TargetD = FindInstantiatedDecl(Loc, DD.getAccessTarget(), |
1500 | TemplateArgs); |
1501 | if (!TargetD) return; |
1502 | |
1503 | if (DD.isAccessToMember()) { |
1504 | CXXRecordDecl *NamingClass = cast<CXXRecordDecl>(NamingD); |
1505 | NamedDecl *TargetDecl = cast<NamedDecl>(TargetD); |
1506 | QualType BaseObjectType = DD.getAccessBaseObjectType(); |
1507 | if (!BaseObjectType.isNull()) { |
1508 | BaseObjectType = SubstType(BaseObjectType, TemplateArgs, Loc, |
1509 | DeclarationName()); |
1510 | if (BaseObjectType.isNull()) return; |
1511 | } |
1512 | |
1513 | AccessTarget Entity(Context, |
1514 | AccessTarget::Member, |
1515 | NamingClass, |
1516 | DeclAccessPair::make(TargetDecl, Access), |
1517 | BaseObjectType); |
1518 | Entity.setDiag(DD.getDiagnostic()); |
1519 | CheckAccess(*this, Loc, Entity); |
1520 | } else { |
1521 | AccessTarget Entity(Context, |
1522 | AccessTarget::Base, |
1523 | cast<CXXRecordDecl>(TargetD), |
1524 | cast<CXXRecordDecl>(NamingD), |
1525 | Access); |
1526 | Entity.setDiag(DD.getDiagnostic()); |
1527 | CheckAccess(*this, Loc, Entity); |
1528 | } |
1529 | } |
1530 | |
1531 | Sema::AccessResult Sema::CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E, |
1532 | DeclAccessPair Found) { |
1533 | if (!getLangOpts().AccessControl || |
1534 | !E->getNamingClass() || |
1535 | Found.getAccess() == AS_public) |
1536 | return AR_accessible; |
1537 | |
1538 | AccessTarget Entity(Context, AccessTarget::Member, E->getNamingClass(), |
1539 | Found, QualType()); |
1540 | Entity.setDiag(diag::err_access) << E->getSourceRange(); |
1541 | |
1542 | return CheckAccess(*this, E->getNameLoc(), Entity); |
1543 | } |
1544 | |
1545 | |
1546 | |
1547 | Sema::AccessResult Sema::CheckUnresolvedMemberAccess(UnresolvedMemberExpr *E, |
1548 | DeclAccessPair Found) { |
1549 | if (!getLangOpts().AccessControl || |
1550 | Found.getAccess() == AS_public) |
1551 | return AR_accessible; |
1552 | |
1553 | QualType BaseType = E->getBaseType(); |
1554 | if (E->isArrow()) |
1555 | BaseType = BaseType->getAs<PointerType>()->getPointeeType(); |
1556 | |
1557 | AccessTarget Entity(Context, AccessTarget::Member, E->getNamingClass(), |
1558 | Found, BaseType); |
1559 | Entity.setDiag(diag::err_access) << E->getSourceRange(); |
1560 | |
1561 | return CheckAccess(*this, E->getMemberLoc(), Entity); |
1562 | } |
1563 | |
1564 | |
1565 | |
1566 | bool Sema::isSpecialMemberAccessibleForDeletion(CXXMethodDecl *decl, |
1567 | AccessSpecifier access, |
1568 | QualType objectType) { |
1569 | |
1570 | if (access == AS_public || !getLangOpts().AccessControl) return true; |
1571 | |
1572 | AccessTarget entity(Context, AccessTarget::Member, decl->getParent(), |
1573 | DeclAccessPair::make(decl, access), objectType); |
1574 | |
1575 | |
1576 | entity.setDiag(PDiag()); |
1577 | |
1578 | switch (CheckAccess(*this, SourceLocation(), entity)) { |
1579 | case AR_accessible: return true; |
1580 | case AR_inaccessible: return false; |
1581 | case AR_dependent: llvm_unreachable("dependent for =delete computation"); |
1582 | case AR_delayed: llvm_unreachable("cannot delay =delete computation"); |
1583 | } |
1584 | llvm_unreachable("bad access result"); |
1585 | } |
1586 | |
1587 | Sema::AccessResult Sema::CheckDestructorAccess(SourceLocation Loc, |
1588 | CXXDestructorDecl *Dtor, |
1589 | const PartialDiagnostic &PDiag, |
1590 | QualType ObjectTy) { |
1591 | if (!getLangOpts().AccessControl) |
1592 | return AR_accessible; |
1593 | |
1594 | |
1595 | AccessSpecifier Access = Dtor->getAccess(); |
1596 | if (Access == AS_public) |
1597 | return AR_accessible; |
1598 | |
1599 | CXXRecordDecl *NamingClass = Dtor->getParent(); |
1600 | if (ObjectTy.isNull()) ObjectTy = Context.getTypeDeclType(NamingClass); |
1601 | |
1602 | AccessTarget Entity(Context, AccessTarget::Member, NamingClass, |
1603 | DeclAccessPair::make(Dtor, Access), |
1604 | ObjectTy); |
1605 | Entity.setDiag(PDiag); |
1606 | |
1607 | return CheckAccess(*this, Loc, Entity); |
1608 | } |
1609 | |
1610 | |
1611 | Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc, |
1612 | CXXConstructorDecl *Constructor, |
1613 | DeclAccessPair Found, |
1614 | const InitializedEntity &Entity, |
1615 | bool IsCopyBindingRefToTemp) { |
1616 | if (!getLangOpts().AccessControl || Found.getAccess() == AS_public) |
1617 | return AR_accessible; |
1618 | |
1619 | PartialDiagnostic PD(PDiag()); |
1620 | switch (Entity.getKind()) { |
1621 | default: |
1622 | PD = PDiag(IsCopyBindingRefToTemp |
1623 | ? diag::ext_rvalue_to_reference_access_ctor |
1624 | : diag::err_access_ctor); |
1625 | |
1626 | break; |
1627 | |
1628 | case InitializedEntity::EK_Base: |
1629 | PD = PDiag(diag::err_access_base_ctor); |
1630 | PD << Entity.isInheritedVirtualBase() |
1631 | << Entity.getBaseSpecifier()->getType() << getSpecialMember(Constructor); |
1632 | break; |
1633 | |
1634 | case InitializedEntity::EK_Member: { |
1635 | const FieldDecl *Field = cast<FieldDecl>(Entity.getDecl()); |
1636 | PD = PDiag(diag::err_access_field_ctor); |
1637 | PD << Field->getType() << getSpecialMember(Constructor); |
1638 | break; |
1639 | } |
1640 | |
1641 | case InitializedEntity::EK_LambdaCapture: { |
1642 | StringRef VarName = Entity.getCapturedVarName(); |
1643 | PD = PDiag(diag::err_access_lambda_capture); |
1644 | PD << VarName << Entity.getType() << getSpecialMember(Constructor); |
1645 | break; |
1646 | } |
1647 | |
1648 | } |
1649 | |
1650 | return CheckConstructorAccess(UseLoc, Constructor, Found, Entity, PD); |
1651 | } |
1652 | |
1653 | |
1654 | Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc, |
1655 | CXXConstructorDecl *Constructor, |
1656 | DeclAccessPair Found, |
1657 | const InitializedEntity &Entity, |
1658 | const PartialDiagnostic &PD) { |
1659 | if (!getLangOpts().AccessControl || |
1660 | Found.getAccess() == AS_public) |
1661 | return AR_accessible; |
1662 | |
1663 | CXXRecordDecl *NamingClass = Constructor->getParent(); |
1664 | |
1665 | |
1666 | |
1667 | |
1668 | |
1669 | |
1670 | |
1671 | |
1672 | CXXRecordDecl *ObjectClass; |
1673 | if ((Entity.getKind() == InitializedEntity::EK_Base || |
1674 | Entity.getKind() == InitializedEntity::EK_Delegating) && |
1675 | !Entity.getParent()) { |
1676 | ObjectClass = cast<CXXConstructorDecl>(CurContext)->getParent(); |
1677 | } else if (auto *Shadow = |
1678 | dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { |
1679 | |
1680 | |
1681 | ObjectClass = Shadow->getParent(); |
1682 | } else { |
1683 | ObjectClass = NamingClass; |
1684 | } |
1685 | |
1686 | AccessTarget AccessEntity( |
1687 | Context, AccessTarget::Member, NamingClass, |
1688 | DeclAccessPair::make(Constructor, Found.getAccess()), |
1689 | Context.getTypeDeclType(ObjectClass)); |
1690 | AccessEntity.setDiag(PD); |
1691 | |
1692 | return CheckAccess(*this, UseLoc, AccessEntity); |
1693 | } |
1694 | |
1695 | |
1696 | Sema::AccessResult Sema::CheckAllocationAccess(SourceLocation OpLoc, |
1697 | SourceRange PlacementRange, |
1698 | CXXRecordDecl *NamingClass, |
1699 | DeclAccessPair Found, |
1700 | bool Diagnose) { |
1701 | if (!getLangOpts().AccessControl || |
1702 | !NamingClass || |
1703 | Found.getAccess() == AS_public) |
1704 | return AR_accessible; |
1705 | |
1706 | AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found, |
1707 | QualType()); |
1708 | if (Diagnose) |
1709 | Entity.setDiag(diag::err_access) |
1710 | << PlacementRange; |
1711 | |
1712 | return CheckAccess(*this, OpLoc, Entity); |
1713 | } |
1714 | |
1715 | |
1716 | Sema::AccessResult Sema::CheckMemberAccess(SourceLocation UseLoc, |
1717 | CXXRecordDecl *NamingClass, |
1718 | DeclAccessPair Found) { |
1719 | if (!getLangOpts().AccessControl || |
1720 | !NamingClass || |
1721 | Found.getAccess() == AS_public) |
1722 | return AR_accessible; |
1723 | |
1724 | AccessTarget Entity(Context, AccessTarget::Member, NamingClass, |
1725 | Found, QualType()); |
1726 | |
1727 | return CheckAccess(*this, UseLoc, Entity); |
1728 | } |
1729 | |
1730 | |
1731 | Sema::AccessResult |
1732 | Sema::CheckStructuredBindingMemberAccess(SourceLocation UseLoc, |
1733 | CXXRecordDecl *DecomposedClass, |
1734 | DeclAccessPair Field) { |
1735 | if (!getLangOpts().AccessControl || |
1736 | Field.getAccess() == AS_public) |
1737 | return AR_accessible; |
1738 | |
1739 | AccessTarget Entity(Context, AccessTarget::Member, DecomposedClass, Field, |
1740 | Context.getRecordType(DecomposedClass)); |
1741 | Entity.setDiag(diag::err_decomp_decl_inaccessible_field); |
1742 | |
1743 | return CheckAccess(*this, UseLoc, Entity); |
1744 | } |
1745 | |
1746 | |
1747 | |
1748 | Sema::AccessResult Sema::CheckMemberOperatorAccess(SourceLocation OpLoc, |
1749 | Expr *ObjectExpr, |
1750 | Expr *ArgExpr, |
1751 | DeclAccessPair Found) { |
1752 | if (!getLangOpts().AccessControl || |
1753 | Found.getAccess() == AS_public) |
1754 | return AR_accessible; |
1755 | |
1756 | const RecordType *RT = ObjectExpr->getType()->castAs<RecordType>(); |
1757 | CXXRecordDecl *NamingClass = cast<CXXRecordDecl>(RT->getDecl()); |
1758 | |
1759 | AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found, |
1760 | ObjectExpr->getType()); |
1761 | Entity.setDiag(diag::err_access) |
1762 | << ObjectExpr->getSourceRange() |
1763 | << (ArgExpr ? ArgExpr->getSourceRange() : SourceRange()); |
1764 | |
1765 | return CheckAccess(*this, OpLoc, Entity); |
1766 | } |
1767 | |
1768 | |
1769 | Sema::AccessResult Sema::CheckFriendAccess(NamedDecl *target) { |
1770 | (target->getAsFunction())", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1770, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(isa<CXXMethodDecl>(target->getAsFunction())); |
1771 | |
1772 | |
1773 | |
1774 | AccessSpecifier access = target->getAccess(); |
1775 | |
1776 | if (!getLangOpts().AccessControl || access == AS_public) |
1777 | return AR_accessible; |
1778 | |
1779 | CXXMethodDecl *method = cast<CXXMethodDecl>(target->getAsFunction()); |
1780 | |
1781 | AccessTarget entity(Context, AccessTarget::Member, |
1782 | cast<CXXRecordDecl>(target->getDeclContext()), |
1783 | DeclAccessPair::make(target, access), |
1784 | QualType()); |
1785 | entity.setDiag(diag::err_access_friend_function) |
1786 | << (method->getQualifier() ? method->getQualifierLoc().getSourceRange() |
1787 | : method->getNameInfo().getSourceRange()); |
1788 | |
1789 | |
1790 | |
1791 | EffectiveContext EC(CurContext); |
1792 | switch (CheckEffectiveAccess(*this, EC, target->getLocation(), entity)) { |
1793 | case ::AR_accessible: return Sema::AR_accessible; |
1794 | case ::AR_inaccessible: return Sema::AR_inaccessible; |
1795 | case ::AR_dependent: return Sema::AR_dependent; |
1796 | } |
1797 | llvm_unreachable("invalid access result"); |
1798 | } |
1799 | |
1800 | Sema::AccessResult Sema::CheckAddressOfMemberAccess(Expr *OvlExpr, |
1801 | DeclAccessPair Found) { |
1802 | if (!getLangOpts().AccessControl || |
1803 | Found.getAccess() == AS_none || |
1804 | Found.getAccess() == AS_public) |
1805 | return AR_accessible; |
1806 | |
1807 | OverloadExpr *Ovl = OverloadExpr::find(OvlExpr).Expression; |
1808 | CXXRecordDecl *NamingClass = Ovl->getNamingClass(); |
1809 | |
1810 | AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found, |
1811 | QualType()); |
1812 | Entity.setDiag(diag::err_access) |
1813 | << Ovl->getSourceRange(); |
1814 | |
1815 | return CheckAccess(*this, Ovl->getNameLoc(), Entity); |
1816 | } |
1817 | |
1818 | |
1819 | |
1820 | |
1821 | |
1822 | |
1823 | |
1824 | Sema::AccessResult Sema::CheckBaseClassAccess(SourceLocation AccessLoc, |
1825 | QualType Base, |
1826 | QualType Derived, |
1827 | const CXXBasePath &Path, |
1828 | unsigned DiagID, |
1829 | bool ForceCheck, |
1830 | bool ForceUnprivileged) { |
1831 | if (!ForceCheck && !getLangOpts().AccessControl) |
1832 | return AR_accessible; |
1833 | |
1834 | if (Path.Access == AS_public) |
1835 | return AR_accessible; |
1836 | |
1837 | CXXRecordDecl *BaseD, *DerivedD; |
1838 | BaseD = cast<CXXRecordDecl>(Base->getAs<RecordType>()->getDecl()); |
1839 | DerivedD = cast<CXXRecordDecl>(Derived->getAs<RecordType>()->getDecl()); |
1840 | |
1841 | AccessTarget Entity(Context, AccessTarget::Base, BaseD, DerivedD, |
1842 | Path.Access); |
1843 | if (DiagID) |
1844 | Entity.setDiag(DiagID) << Derived << Base; |
1845 | |
1846 | if (ForceUnprivileged) { |
1847 | switch (CheckEffectiveAccess(*this, EffectiveContext(), |
1848 | AccessLoc, Entity)) { |
1849 | case ::AR_accessible: return Sema::AR_accessible; |
1850 | case ::AR_inaccessible: return Sema::AR_inaccessible; |
1851 | case ::AR_dependent: return Sema::AR_dependent; |
1852 | } |
1853 | llvm_unreachable("unexpected result from CheckEffectiveAccess"); |
1854 | } |
1855 | return CheckAccess(*this, AccessLoc, Entity); |
1856 | } |
1857 | |
1858 | |
1859 | void Sema::CheckLookupAccess(const LookupResult &R) { |
1860 | (0) . __assert_fail ("getLangOpts().AccessControl && \"performing access check without access control\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1861, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(getLangOpts().AccessControl |
1861 | (0) . __assert_fail ("getLangOpts().AccessControl && \"performing access check without access control\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1861, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> && "performing access check without access control"); |
1862 | (0) . __assert_fail ("R.getNamingClass() && \"performing access check without naming class\"", "/home/seafit/code_projects/clang_source/clang/lib/Sema/SemaAccess.cpp", 1862, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(R.getNamingClass() && "performing access check without naming class"); |
1863 | |
1864 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { |
1865 | if (I.getAccess() != AS_public) { |
1866 | AccessTarget Entity(Context, AccessedEntity::Member, |
1867 | R.getNamingClass(), I.getPair(), |
1868 | R.getBaseObjectType()); |
1869 | Entity.setDiag(diag::err_access); |
1870 | CheckAccess(*this, R.getNameLoc(), Entity); |
1871 | } |
1872 | } |
1873 | } |
1874 | |
1875 | |
1876 | |
1877 | |
1878 | |
1879 | |
1880 | |
1881 | |
1882 | |
1883 | |
1884 | |
1885 | |
1886 | |
1887 | |
1888 | |
1889 | |
1890 | |
1891 | |
1892 | bool Sema::IsSimplyAccessible(NamedDecl *Target, CXXRecordDecl *NamingClass, |
1893 | QualType BaseType) { |
1894 | |
1895 | if (Target->isCXXClassMember() && NamingClass) { |
1896 | if (!getLangOpts().CPlusPlus) |
1897 | return false; |
1898 | |
1899 | |
1900 | |
1901 | |
1902 | AccessTarget Entity(Context, AccessedEntity::Member, NamingClass, |
1903 | DeclAccessPair::make(Target, AS_none), BaseType); |
1904 | EffectiveContext EC(CurContext); |
1905 | return ::IsAccessible(*this, EC, Entity) != ::AR_inaccessible; |
1906 | } |
1907 | |
1908 | if (ObjCIvarDecl *Ivar = dyn_cast<ObjCIvarDecl>(Target)) { |
1909 | |
1910 | if (Ivar->getCanonicalAccessControl() == ObjCIvarDecl::Public || |
1911 | Ivar->getCanonicalAccessControl() == ObjCIvarDecl::Package) |
1912 | return true; |
1913 | |
1914 | |
1915 | |
1916 | ObjCInterfaceDecl *ClassOfMethodDecl = nullptr; |
1917 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
1918 | ClassOfMethodDecl = MD->getClassInterface(); |
1919 | else if (FunctionDecl *FD = getCurFunctionDecl()) { |
1920 | if (ObjCImplDecl *Impl |
1921 | = dyn_cast<ObjCImplDecl>(FD->getLexicalDeclContext())) { |
1922 | if (ObjCImplementationDecl *IMPD |
1923 | = dyn_cast<ObjCImplementationDecl>(Impl)) |
1924 | ClassOfMethodDecl = IMPD->getClassInterface(); |
1925 | else if (ObjCCategoryImplDecl* CatImplClass |
1926 | = dyn_cast<ObjCCategoryImplDecl>(Impl)) |
1927 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
1928 | } |
1929 | } |
1930 | |
1931 | |
1932 | if (!ClassOfMethodDecl) |
1933 | return false; |
1934 | |
1935 | |
1936 | if (declaresSameEntity(ClassOfMethodDecl, Ivar->getContainingInterface())) |
1937 | return true; |
1938 | |
1939 | |
1940 | if (Ivar->getCanonicalAccessControl() == ObjCIvarDecl::Private) |
1941 | return false; |
1942 | |
1943 | return Ivar->getContainingInterface()->isSuperClassOf(ClassOfMethodDecl); |
1944 | } |
1945 | |
1946 | return true; |
1947 | } |
1948 | |