| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #include "modules/webdatabase/DatabaseAuthorizer.h" | 29 #include "modules/webdatabase/DatabaseAuthorizer.h" |
| 30 | 30 |
| 31 #include "wtf/HashSet.h" | 31 #include "wtf/HashSet.h" |
| 32 #include "wtf/StdLibExtras.h" | 32 #include "wtf/StdLibExtras.h" |
| 33 #include "wtf/Threading.h" |
| 33 #include "wtf/text/StringHash.h" | 34 #include "wtf/text/StringHash.h" |
| 34 | 35 |
| 35 namespace blink { | 36 namespace blink { |
| 36 | 37 |
| 37 DatabaseAuthorizer* DatabaseAuthorizer::create(const String& databaseInfoTableNa
me) | 38 DatabaseAuthorizer* DatabaseAuthorizer::create(const String& databaseInfoTableNa
me) |
| 38 { | 39 { |
| 39 return new DatabaseAuthorizer(databaseInfoTableName); | 40 return new DatabaseAuthorizer(databaseInfoTableName); |
| 40 } | 41 } |
| 41 | 42 |
| 42 DatabaseAuthorizer::DatabaseAuthorizer(const String& databaseInfoTableName) | 43 DatabaseAuthorizer::DatabaseAuthorizer(const String& databaseInfoTableName) |
| (...skipping 15 matching lines...) Expand all Loading... |
| 58 void DatabaseAuthorizer::resetDeletes() | 59 void DatabaseAuthorizer::resetDeletes() |
| 59 { | 60 { |
| 60 m_hadDeletes = false; | 61 m_hadDeletes = false; |
| 61 } | 62 } |
| 62 | 63 |
| 63 namespace { | 64 namespace { |
| 64 using FunctionNameList = HashSet<String, CaseFoldingHash>; | 65 using FunctionNameList = HashSet<String, CaseFoldingHash>; |
| 65 | 66 |
| 66 const FunctionNameList& whitelistedFunctions() | 67 const FunctionNameList& whitelistedFunctions() |
| 67 { | 68 { |
| 68 DEFINE_STATIC_LOCAL(FunctionNameList, list, ({ | 69 DEFINE_THREAD_SAFE_STATIC_LOCAL(FunctionNameList, list, new FunctionNameList
({ |
| 69 // SQLite functions used to help implement some operations | 70 // SQLite functions used to help implement some operations |
| 70 // ALTER TABLE helpers | 71 // ALTER TABLE helpers |
| 71 "sqlite_rename_table", | 72 "sqlite_rename_table", |
| 72 "sqlite_rename_trigger", | 73 "sqlite_rename_trigger", |
| 73 // GLOB helpers | 74 // GLOB helpers |
| 74 "glob", | 75 "glob", |
| 75 // SQLite core functions | 76 // SQLite core functions |
| 76 "abs", | 77 "abs", |
| 77 "changes", | 78 "changes", |
| 78 "coalesce", | 79 "coalesce", |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 | 424 |
| 424 int DatabaseAuthorizer::updateDeletesBasedOnTableName(const String& tableName) | 425 int DatabaseAuthorizer::updateDeletesBasedOnTableName(const String& tableName) |
| 425 { | 426 { |
| 426 int allow = denyBasedOnTableName(tableName); | 427 int allow = denyBasedOnTableName(tableName); |
| 427 if (allow) | 428 if (allow) |
| 428 m_hadDeletes = true; | 429 m_hadDeletes = true; |
| 429 return allow; | 430 return allow; |
| 430 } | 431 } |
| 431 | 432 |
| 432 } // namespace blink | 433 } // namespace blink |
| OLD | NEW |