OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011, Google Inc. |
| 2 // All rights reserved. |
| 3 // |
| 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are |
| 6 // met: |
| 7 // |
| 8 // * Redistributions of source code must retain the above copyright |
| 9 // notice, this list of conditions and the following disclaimer. |
| 10 // * Redistributions in binary form must reproduce the above |
| 11 // copyright notice, this list of conditions and the following disclaimer |
| 12 // in the documentation and/or other materials provided with the |
| 13 // distribution. |
| 14 // * Neither the name of Google Inc. nor the names of its |
| 15 // contributors may be used to endorse or promote products derived from |
| 16 // this software without specific prior written permission. |
| 17 // |
| 18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 |
| 30 // --- |
| 31 // Author: Rebecca Shapiro |
| 32 // |
| 33 // Posix metadata encryption/encoding implementation. |
| 34 |
| 35 #include "config.h" |
| 36 #include <errno.h> |
| 37 #include <fcntl.h> |
| 38 #ifdef HAVE_STDINT_H |
| 39 #include <stdint.h> // for uintptr_t |
| 40 #endif |
| 41 #include "base/logging.h" |
| 42 |
| 43 |
| 44 namespace { |
| 45 static uintptr_t key_ = 0; |
| 46 static uintptr_t ReadFromFD(int fd, size_t size) { |
| 47 uintptr_t ret; |
| 48 size_t num_read_bytes = 0; |
| 49 while (num_read_bytes < size) { |
| 50 ssize_t num_bytes = read(fd, reinterpret_cast<void *>(&ret)+num_read_bytes, |
| 51 size-num_read_bytes); |
| 52 if (num_bytes < 0) { |
| 53 CHECK(errno == EINTR); |
| 54 } else if (num_bytes == 0) { |
| 55 break; |
| 56 } |
| 57 num_read_bytes += num_bytes; |
| 58 } |
| 59 CHECK(num_read_bytes == size); |
| 60 return ret; |
| 61 } |
| 62 |
| 63 // Initialization code is not thread safe. |
| 64 void InitMetadataEncoderPosix() { // TODO: doesn't link when not inline |
| 65 // Ensure this function only executes once. |
| 66 CHECK(key_ == false); |
| 67 |
| 68 // Read random bytes from urandom to initialize key. |
| 69 int fd = open("/dev/urandom", O_RDONLY); |
| 70 if (fd > 0 && errno == ENOENT) { // If urandom doesn't exist. |
| 71 fd = open("/dev/random", O_RDONLY); |
| 72 } |
| 73 CHECK(fd > 0); |
| 74 key_ = ReadFromFD(fd, sizeof(uintptr_t)); |
| 75 if (key_ == 0 ) { // Try reading from (u)random again. |
| 76 key_ = ReadFromFD(fd, sizeof(uintptr_t)); |
| 77 } |
| 78 CHECK(key_ != 0); |
| 79 close(fd); |
| 80 } |
| 81 |
| 82 uintptr_t EncodeUintptrPosix(uintptr_t ptr) { return ptr ^ key_; } |
| 83 |
| 84 uintptr_t DecodeUintptrPosix(uintptr_t ptr) { return EncodeUintptrPosix(ptr); } |
| 85 |
| 86 } |
| 87 |
| 88 namespace tcmalloc { |
| 89 |
| 90 void InitMetadataEncoder() { InitMetadataEncoderPosix(); } |
| 91 |
| 92 uintptr_t EncodeUintptr(uintptr_t ptr){ return EncodeUintptrPosix(ptr); } |
| 93 |
| 94 uintptr_t DecodeUintptr(uintptr_t ptr){ return DecodeUintptrPosix(ptr); } |
| 95 |
| 96 } |
OLD | NEW |