Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | // Copyright (c) 2006, Google Inc. |
michael@0 | 2 | // All rights reserved. |
michael@0 | 3 | // |
michael@0 | 4 | // Redistribution and use in source and binary forms, with or without |
michael@0 | 5 | // modification, are permitted provided that the following conditions are |
michael@0 | 6 | // met: |
michael@0 | 7 | // |
michael@0 | 8 | // * Redistributions of source code must retain the above copyright |
michael@0 | 9 | // notice, this list of conditions and the following disclaimer. |
michael@0 | 10 | // * Redistributions in binary form must reproduce the above |
michael@0 | 11 | // copyright notice, this list of conditions and the following disclaimer |
michael@0 | 12 | // in the documentation and/or other materials provided with the |
michael@0 | 13 | // distribution. |
michael@0 | 14 | // * Neither the name of Google Inc. nor the names of its |
michael@0 | 15 | // contributors may be used to endorse or promote products derived from |
michael@0 | 16 | // this software without specific prior written permission. |
michael@0 | 17 | // |
michael@0 | 18 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
michael@0 | 19 | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
michael@0 | 20 | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
michael@0 | 21 | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
michael@0 | 22 | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
michael@0 | 23 | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
michael@0 | 24 | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
michael@0 | 25 | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
michael@0 | 26 | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
michael@0 | 27 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
michael@0 | 28 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
michael@0 | 29 | |
michael@0 | 30 | // macho_id.h: Functions to gather identifying information from a macho file |
michael@0 | 31 | // |
michael@0 | 32 | // Author: Dan Waylonis |
michael@0 | 33 | |
michael@0 | 34 | #ifndef COMMON_MAC_MACHO_ID_H__ |
michael@0 | 35 | #define COMMON_MAC_MACHO_ID_H__ |
michael@0 | 36 | |
michael@0 | 37 | #include <limits.h> |
michael@0 | 38 | #include <mach/machine.h> |
michael@0 | 39 | #include <mach-o/loader.h> |
michael@0 | 40 | |
michael@0 | 41 | #include "common/mac/macho_walker.h" |
michael@0 | 42 | #include "common/md5.h" |
michael@0 | 43 | |
michael@0 | 44 | namespace MacFileUtilities { |
michael@0 | 45 | |
michael@0 | 46 | class MachoID { |
michael@0 | 47 | public: |
michael@0 | 48 | MachoID(const char *path); |
michael@0 | 49 | MachoID(const char *path, void *memory, size_t size); |
michael@0 | 50 | ~MachoID(); |
michael@0 | 51 | |
michael@0 | 52 | // For the given |cpu_type| and |cpu_subtype|, return a UUID from the LC_UUID |
michael@0 | 53 | // command. |
michael@0 | 54 | // Return false if there isn't a LC_UUID command. |
michael@0 | 55 | bool UUIDCommand(cpu_type_t cpu_type, |
michael@0 | 56 | cpu_subtype_t cpu_subtype, |
michael@0 | 57 | unsigned char identifier[16]); |
michael@0 | 58 | |
michael@0 | 59 | // For the given |cpu_type| and |cpu_subtype|, return a UUID from the |
michael@0 | 60 | // LC_ID_DYLIB command. |
michael@0 | 61 | // Return false if there isn't a LC_ID_DYLIB command. |
michael@0 | 62 | bool IDCommand(cpu_type_t cpu_type, |
michael@0 | 63 | cpu_subtype_t cpu_subtype, |
michael@0 | 64 | unsigned char identifier[16]); |
michael@0 | 65 | |
michael@0 | 66 | // For the given |cpu_type| and |cpu_subtype|, return the Adler32 CRC for the |
michael@0 | 67 | // mach-o data segment(s). |
michael@0 | 68 | // Return 0 on error (e.g., if the file is not a mach-o file) |
michael@0 | 69 | uint32_t Adler32(cpu_type_t cpu_type, |
michael@0 | 70 | cpu_subtype_t cpu_subtype); |
michael@0 | 71 | |
michael@0 | 72 | // For the given |cpu_type|, and |cpu_subtype| return the MD5 for the mach-o |
michael@0 | 73 | // data segment(s). |
michael@0 | 74 | // Return true on success, false otherwise |
michael@0 | 75 | bool MD5(cpu_type_t cpu_type, |
michael@0 | 76 | cpu_subtype_t cpu_subtype, |
michael@0 | 77 | unsigned char identifier[16]); |
michael@0 | 78 | |
michael@0 | 79 | private: |
michael@0 | 80 | // Signature of class member function to be called with data read from file |
michael@0 | 81 | typedef void (MachoID::*UpdateFunction)(unsigned char *bytes, size_t size); |
michael@0 | 82 | |
michael@0 | 83 | // Update the CRC value by examining |size| |bytes| and applying the algorithm |
michael@0 | 84 | // to each byte. |
michael@0 | 85 | void UpdateCRC(unsigned char *bytes, size_t size); |
michael@0 | 86 | |
michael@0 | 87 | // Update the MD5 value by examining |size| |bytes| and applying the algorithm |
michael@0 | 88 | // to each byte. |
michael@0 | 89 | void UpdateMD5(unsigned char *bytes, size_t size); |
michael@0 | 90 | |
michael@0 | 91 | // Bottleneck for update routines |
michael@0 | 92 | void Update(MachoWalker *walker, off_t offset, size_t size); |
michael@0 | 93 | |
michael@0 | 94 | // Factory for the MachoWalker |
michael@0 | 95 | bool WalkHeader(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype, |
michael@0 | 96 | MachoWalker::LoadCommandCallback callback, void *context); |
michael@0 | 97 | |
michael@0 | 98 | // The callback from the MachoWalker for CRC and MD5 |
michael@0 | 99 | static bool WalkerCB(MachoWalker *walker, load_command *cmd, off_t offset, |
michael@0 | 100 | bool swap, void *context); |
michael@0 | 101 | |
michael@0 | 102 | // The callback from the MachoWalker for LC_UUID |
michael@0 | 103 | static bool UUIDWalkerCB(MachoWalker *walker, load_command *cmd, off_t offset, |
michael@0 | 104 | bool swap, void *context); |
michael@0 | 105 | |
michael@0 | 106 | // The callback from the MachoWalker for LC_ID_DYLIB |
michael@0 | 107 | static bool IDWalkerCB(MachoWalker *walker, load_command *cmd, off_t offset, |
michael@0 | 108 | bool swap, void *context); |
michael@0 | 109 | |
michael@0 | 110 | // File path |
michael@0 | 111 | char path_[PATH_MAX]; |
michael@0 | 112 | |
michael@0 | 113 | // Memory region to read from |
michael@0 | 114 | void *memory_; |
michael@0 | 115 | |
michael@0 | 116 | // Size of the memory region |
michael@0 | 117 | size_t memory_size_; |
michael@0 | 118 | |
michael@0 | 119 | // The current crc value |
michael@0 | 120 | uint32_t crc_; |
michael@0 | 121 | |
michael@0 | 122 | // The MD5 context |
michael@0 | 123 | google_breakpad::MD5Context md5_context_; |
michael@0 | 124 | |
michael@0 | 125 | // The current update to call from the Update callback |
michael@0 | 126 | UpdateFunction update_function_; |
michael@0 | 127 | }; |
michael@0 | 128 | |
michael@0 | 129 | } // namespace MacFileUtilities |
michael@0 | 130 | |
michael@0 | 131 | #endif // COMMON_MAC_MACHO_ID_H__ |