forked from logfellow/logstash-logback-encoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPathBasedFieldMasker.java
250 lines (234 loc) · 8.09 KB
/
PathBasedFieldMasker.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*
* Copyright 2013-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.logstash.logback.mask;
import java.util.Objects;
import com.fasterxml.jackson.core.JsonStreamContext;
/**
* Masks values of an absolute or partial path within a JSON stream.
*
* <p>Values for paths that match a given path string will be replaced with a given mask string.</p>
*
* <h2>Path String Format</h2>
*
* The path string to match follows a format similar to (but not exactly the same as) a
* <a href="http://tools.ietf.org/html/draft-ietf-appsawg-json-pointer-03">JSON Pointer</a> string,
* with the differences being:
* <ul>
* <li>At least one reference token is required (e.g. "" and "/" are not allowed)</li>
* <li>The path string does not need to start with {@value #TOKEN_SEPARATOR}.
* If a path string starts with {@value #TOKEN_SEPARATOR} it is interpreted as an absolute path.
* Otherwise, it is a partial path.</li>
* <li>A wildcard token ({@value WILDCARD_TOKEN}) is supported.</li>
* <li>The path string must end with a field name (not an array index)</li>
* </ul>
*
* <h2>Absolute Paths</h2>
*
* Absolute paths start with {@value #TOKEN_SEPARATOR}, followed by one or more
* reference tokens separated by {@value #TOKEN_SEPARATOR}.
* Absolute paths must match the full path from the root of the streaming context.
*
* <p>For example, given the following JSON:
*
* <pre>
* {
* "aaa": {
* "bbb": [
* {
* "ccc": "ddd"
* }
* ]
* },
* "bbb": [
* {
* "eee": "fff"
* }
* ]
* }
* </pre>
*
* Then the following matches occur:
*
* <ul>
* <li><code>/aaa</code> matches <code>{ "bbb" : [ { "ccc" : "ddd" } ] }</code></li>
* <li><code>/aaa/bbb</code> matches <code>[ { "ccc" : "ddd" } ]</code></li>
* <li><code>/aaa/bbb/0/ccc</code> matches <code>"ddd"</code></li>
* </ul>
*
* <h2>Partial Paths</h2>
*
* Partial paths do NOT start with {@value #TOKEN_SEPARATOR}, and contain
* one or more reference tokens separated by {@value #TOKEN_SEPARATOR}.
* Partial paths mask a partial path anywhere in the stream.
*
* <p>For example, given the following JSON:
*
* <pre>
* {
* "aaa": {
* "bbb": [
* {
* "ccc": "ddd"
* }
* ]
* },
* "bbb": [
* {
* "eee": "fff"
* }
* ]
* }
* </pre>
*
* Then the following matches occur:
*
* <ul>
* <li><code>aaa</code> matches <code>{ "bbb" : [ { "ccc" : "ddd" } ] }</code></li>
* <li><code>aaa/bbb</code> matches <code>[ { "ccc" : "ddd" } ]</code></li>
* <li><code>aaa/bbb/0/ccc</code> matches <code>"ddd"</code></li>
* <li><code>bbb</code> matches <code>[ { "ccc" : "ddd" } ]</code> and <code>[ { "eee" : "fff" } ]</code></li>
* <li><code>bbb/0/ccc</code> matches <code>"ddd"</code></li>
* <li><code>0/ccc</code> matches <code>"ddd"</code></li>
* <li><code>ccc</code> matches <code>"ddd"</code></li>
* </ul>
*
* For single field values (e.g. partial paths with only one token), consider
* using a {@link FieldNameBasedFieldMasker} instead.
* A single {@link FieldNameBasedFieldMasker} configured with many field names,
* is much more efficient than having a {@link PathBasedFieldMasker} per field name.
*
* <h2>Wildcard Tokens</h2>
*
* The wildcard value ({@value #WILDCARD_TOKEN}) can be used as a token in the path string.
* The wildcard token will match any token.
*
* <p>For example, given the following JSON:
*
* <pre>
* {
* "aaa": {
* "bbb": {
* "ccc": "ddd"
* },
* "eee": {
* "ccc": "hhh",
* },
* },
* "iii": {
* "jjj": {
* "ccc": "lll"
* },
* },
* "ccc": "mmm"
* }
* </pre>
*
* Then the following matches occur:
*
* <ul>
* <li><code>aaa/*/ccc</code> matches <code>"ddd"</code> and <code>"hhh"</code></li>
* <li><code>*/ccc</code> matches <code>"ddd"</code> and <code>"hhh"</code> and <code>"lll"</code></li>
* </ul>
*
* <h2>Escaping</h2>
*
* JSON Pointer escaping can be used to escape '/' and '~' within tokens. Specifically, use:
* <ul>
* <li>'~1' to represent '/' within a token</li>
* <li>'~0' to represent '~' within a token</li>
* </ul>
*
*/
public class PathBasedFieldMasker implements FieldMasker {
public static final String TOKEN_SEPARATOR = "/";
public static final String WILDCARD_TOKEN = "*";
private final boolean isAbsolutePath;
private final String[] tokens;
private final Object mask;
/**
* @param pathToMask the absolute or partial path to mask (see class javadoc)
* @param mask the value to write for any paths that match the pathToMask
*/
public PathBasedFieldMasker(String pathToMask, Object mask) {
validatePathToMask(pathToMask);
isAbsolutePath = pathToMask.startsWith(TOKEN_SEPARATOR);
if (isAbsolutePath) {
pathToMask = pathToMask.substring(TOKEN_SEPARATOR.length());
}
tokens = pathToMask.split(TOKEN_SEPARATOR);
for (int i = 0; i < tokens.length; i++) {
tokens[i] = unescapeJsonPointerToken(tokens[i]);
}
this.mask = mask;
}
static void validatePathToMask(String pathToMask) {
Objects.requireNonNull(pathToMask, "pathToMask must not be null");
if (pathToMask.isEmpty()) {
throw new IllegalArgumentException("pathToMask must not be empty");
}
if (pathToMask.equals(TOKEN_SEPARATOR)) {
throw new IllegalArgumentException("pathToMask must contain at least one token");
}
}
@Override
public Object mask(JsonStreamContext context) {
JsonStreamContext currentContext = context;
for (int i = tokens.length; --i >= 0; currentContext = currentContext.getParent()) {
if (!currentLeafMatches(currentContext, tokens[i])) {
return null;
}
}
return (currentContext != null && (!isAbsolutePath || currentContext.inRoot()))
? mask
: null;
}
private boolean currentLeafMatches(JsonStreamContext context, String leafName) {
if (context != null) {
if (WILDCARD_TOKEN.equals(leafName)) {
return true;
}
if (context.hasCurrentName()) {
return context.getCurrentName().equals(leafName);
}
if (context.hasCurrentIndex()) {
return Integer.toString(context.getCurrentIndex()).equals(leafName);
}
}
return false;
}
/**
* Returns true if the given path represents a single field name (e.g. not a multi token or wildcard path).
*
* @param path the path to check
* @return true if the given path represents a single field name (e.g. not a multi token or wildcard path).
*/
static boolean isSingleFieldName(String path) {
return !path.contains(PathBasedFieldMasker.TOKEN_SEPARATOR) && !path.contains(PathBasedFieldMasker.WILDCARD_TOKEN);
}
/**
* Unescapes "~1" as "/", and "~0" as "~" from a JSON pointer token.
*
* @param token the JSON pointer token to unescape
* @return the unescaped token value.
*/
static String unescapeJsonPointerToken(String token) {
return token
// As per JSON Pointer string spec, ~1 is used to escape "/"
.replace("~1", "/")
// As per JSON Pointer string spec, ~0 is used to escape "~"
.replace("~0", "~");
}
}