diff options
Diffstat (limited to 'lib/Sema')
-rw-r--r-- | lib/Sema/Sema.h | 1 | ||||
-rw-r--r-- | lib/Sema/SemaAccess.cpp | 25 | ||||
-rw-r--r-- | lib/Sema/SemaChecking.cpp | 3 | ||||
-rw-r--r-- | lib/Sema/SemaDeclCXX.cpp | 9 |
4 files changed, 34 insertions, 4 deletions
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h index 9e28b519ff..e49ce73319 100644 --- a/lib/Sema/Sema.h +++ b/lib/Sema/Sema.h @@ -2417,6 +2417,7 @@ public: AccessSpecifier Access); bool CheckConstructorAccess(SourceLocation Loc, CXXConstructorDecl *D, AccessSpecifier Access); + bool CheckDestructorAccess(SourceLocation Loc, QualType T); bool CheckMemberOperatorAccess(SourceLocation Loc, Expr *ObjectExpr, NamedDecl *D, AccessSpecifier Access); bool CheckAccess(const LookupResult &R, NamedDecl *D, AccessSpecifier Access); diff --git a/lib/Sema/SemaAccess.cpp b/lib/Sema/SemaAccess.cpp index ceee61df23..98beb610a5 100644 --- a/lib/Sema/SemaAccess.cpp +++ b/lib/Sema/SemaAccess.cpp @@ -306,6 +306,31 @@ bool Sema::CheckUnresolvedMemberAccess(UnresolvedMemberExpr *E, return false; } +bool Sema::CheckDestructorAccess(SourceLocation Loc, + QualType T) { + if (!getLangOptions().AccessControl) + return false; + + const RecordType *Record = T->getAs<RecordType>(); + if (!Record) + return false; + + CXXRecordDecl *NamingClass = cast<CXXRecordDecl>(Record->getDecl()); + CXXDestructorDecl *Dtor = NamingClass->getDestructor(Context); + + AccessSpecifier Access = Dtor->getAccess(); + if (Access == AS_public) + return false; + + LookupResult R(*this, Dtor->getDeclName(), Loc, LookupOrdinaryName); + R.suppressDiagnostics(); + + R.setNamingClass(NamingClass); + return CheckAccess(R, Dtor, Access); + + // FIXME: protected check +} + /// Checks access to a constructor. bool Sema::CheckConstructorAccess(SourceLocation UseLoc, CXXConstructorDecl *Constructor, diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp index c6b826b327..0d9918f6e4 100644 --- a/lib/Sema/SemaChecking.cpp +++ b/lib/Sema/SemaChecking.cpp @@ -2637,6 +2637,9 @@ bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) { Diag(Param->getLocation(), diag::err_array_star_in_function_definition); } } + + if (getLangOptions().AccessControl) + CheckDestructorAccess(Param->getLocation(), Param->getType()); } return HasInvalidParm; diff --git a/lib/Sema/SemaDeclCXX.cpp b/lib/Sema/SemaDeclCXX.cpp index 745bd513a2..931c058670 100644 --- a/lib/Sema/SemaDeclCXX.cpp +++ b/lib/Sema/SemaDeclCXX.cpp @@ -3985,10 +3985,11 @@ bool Sema::InitializeVarWithConstructor(VarDecl *VD, void Sema::FinalizeVarWithDestructor(VarDecl *VD, QualType DeclInitType) { CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>( DeclInitType->getAs<RecordType>()->getDecl()); - if (!ClassDecl->hasTrivialDestructor()) - if (CXXDestructorDecl *Destructor = - const_cast<CXXDestructorDecl*>(ClassDecl->getDestructor(Context))) - MarkDeclarationReferenced(VD->getLocation(), Destructor); + if (!ClassDecl->hasTrivialDestructor()) { + CXXDestructorDecl *Destructor = ClassDecl->getDestructor(Context); + MarkDeclarationReferenced(VD->getLocation(), Destructor); + CheckDestructorAccess(VD->getLocation(), VD->getType()); + } } /// AddCXXDirectInitializerToDecl - This action is called immediately after |