|
| 1 | +package logrus_sentry |
| 2 | + |
| 3 | +import ( |
| 4 | + "fmt" |
| 5 | + "strings" |
| 6 | +) |
| 7 | + |
| 8 | +/* |
| 9 | +Copyright (c) 2009,2014 Google Inc. All rights reserved. |
| 10 | +
|
| 11 | +Redistribution and use in source and binary forms, with or without |
| 12 | +modification, are permitted provided that the following conditions are |
| 13 | +met: |
| 14 | +
|
| 15 | + * Redistributions of source code must retain the above copyright |
| 16 | +notice, this list of conditions and the following disclaimer. |
| 17 | + * Redistributions in binary form must reproduce the above |
| 18 | +copyright notice, this list of conditions and the following disclaimer |
| 19 | +in the documentation and/or other materials provided with the |
| 20 | +distribution. |
| 21 | + * Neither the name of Google Inc. nor the names of its |
| 22 | +contributors may be used to endorse or promote products derived from |
| 23 | +this software without specific prior written permission. |
| 24 | +
|
| 25 | +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 26 | +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 27 | +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 28 | +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 29 | +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 30 | +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 31 | +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 32 | +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 33 | +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 34 | +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 35 | +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 36 | +*/ |
| 37 | + |
| 38 | +// A UUID is a 128 bit (16 byte) Universal Unique IDentifier as defined in RFC |
| 39 | +// 4122. |
| 40 | +type uuid []byte |
| 41 | + |
| 42 | +// parseUUID decodes s into a UUID or returns nil. Both the UUID form of |
| 43 | +// xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx and |
| 44 | +// xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx and |
| 45 | +// urn:uuid:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx are decoded. |
| 46 | +func parseUUID(s string) uuid { |
| 47 | + //If it is in no dash format "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" |
| 48 | + if len(s) == 32 { |
| 49 | + uuid := make([]byte, 16) |
| 50 | + for i, x := range []int{ |
| 51 | + 0, 2, 4, 6, 8, 10, |
| 52 | + 12, 14, 16, 18, 20, |
| 53 | + 22, 24, 26, 28, 30} { |
| 54 | + if v, ok := xtob(s[x:]); !ok { |
| 55 | + return nil |
| 56 | + } else { |
| 57 | + uuid[i] = v |
| 58 | + } |
| 59 | + } |
| 60 | + return uuid |
| 61 | + } |
| 62 | + |
| 63 | + if len(s) == 36+9 { |
| 64 | + if strings.ToLower(s[:9]) != "urn:uuid:" { |
| 65 | + return nil |
| 66 | + } |
| 67 | + s = s[9:] |
| 68 | + } else if len(s) != 36 { |
| 69 | + return nil |
| 70 | + } |
| 71 | + if s[8] != '-' || s[13] != '-' || s[18] != '-' || s[23] != '-' { |
| 72 | + return nil |
| 73 | + } |
| 74 | + uuid := make([]byte, 16) |
| 75 | + for i, x := range []int{ |
| 76 | + 0, 2, 4, 6, |
| 77 | + 9, 11, |
| 78 | + 14, 16, |
| 79 | + 19, 21, |
| 80 | + 24, 26, 28, 30, 32, 34} { |
| 81 | + if v, ok := xtob(s[x:]); !ok { |
| 82 | + return nil |
| 83 | + } else { |
| 84 | + uuid[i] = v |
| 85 | + } |
| 86 | + } |
| 87 | + return uuid |
| 88 | +} |
| 89 | + |
| 90 | +// String returns the string form of uuid, xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx |
| 91 | +// , or "" if uuid is invalid. |
| 92 | +func (uuid uuid) string() string { |
| 93 | + if uuid == nil || len(uuid) != 16 { |
| 94 | + return "" |
| 95 | + } |
| 96 | + b := []byte(uuid) |
| 97 | + return fmt.Sprintf("%08x-%04x-%04x-%04x-%012x", |
| 98 | + b[:4], b[4:6], b[6:8], b[8:10], b[10:]) |
| 99 | +} |
| 100 | + |
| 101 | +func (uuid uuid) noDashString() string { |
| 102 | + if uuid == nil || len(uuid) != 16 { |
| 103 | + return "" |
| 104 | + } |
| 105 | + b := []byte(uuid) |
| 106 | + return fmt.Sprintf("%08x%04x%04x%04x%012x", |
| 107 | + b[:4], b[4:6], b[6:8], b[8:10], b[10:]) |
| 108 | +} |
| 109 | + |
| 110 | +// xvalues returns the value of a byte as a hexadecimal digit or 255. |
| 111 | +var xvalues = []byte{ |
| 112 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 113 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 114 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 115 | + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 255, 255, 255, 255, 255, 255, |
| 116 | + 255, 10, 11, 12, 13, 14, 15, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 117 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 118 | + 255, 10, 11, 12, 13, 14, 15, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 119 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 120 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 121 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 122 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 123 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 124 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 125 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 126 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 127 | + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
| 128 | +} |
| 129 | + |
| 130 | +// xtob converts the the first two hex bytes of x into a byte. |
| 131 | +func xtob(x string) (byte, bool) { |
| 132 | + b1 := xvalues[x[0]] |
| 133 | + b2 := xvalues[x[1]] |
| 134 | + return (b1 << 4) | b2, b1 != 255 && b2 != 255 |
| 135 | +} |
0 commit comments