Skip to content

Commit 70fbdb5

Browse files
committed
Improve create volume error messages and path validation
Correctly validate paths on the client when checking key/path items in a config map or secret volume. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1397788 Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1397789
1 parent b0c62bb commit 70fbdb5

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

app/scripts/controllers/addConfigVolume.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,11 @@ angular.module('openshiftConsole')
225225
$window.history.back();
226226
},
227227
function(result) {
228-
displayError("An error occurred attaching the persistent volume claim to the " + $filter('humanizeKind')($routeParams.kind) + ".", getErrorDetails(result));
228+
$scope.disableInputs = false;
229+
var humanizeKind = $filter('humanizeKind');
230+
var sourceKind = humanizeKind(source.kind);
231+
var targetKind = humanizeKind($routeParams.kind);
232+
displayError("An error occurred attaching the " + sourceKind + " to the " + targetKind + ".", getErrorDetails(result));
229233
}
230234
);
231235
};

app/views/add-config-volume.html

+14
Original file line numberDiff line numberDiff line change
@@ -136,19 +136,33 @@ <h3>Keys and Paths</h3>
136136
</div>
137137
<div class="form-group col-md-6">
138138
<label ng-attr-for="path-{{$id}}" class="required">Path</label>
139+
<!--
140+
Regex matches any paths not starting with `/` or containing `..` as path elements.
141+
Use negative lookaheads to assert that the value does not match those patterns.
142+
143+
(?!(\.\.)?\/) do not match strings starting with `/` or `../`
144+
(?!.*\/\.\.(\/|$)) do not match strings containing `/../` or ending in `/..`
145+
-->
139146
<input
140147
ng-attr-id="path-{{$id}}"
141148
class="form-control"
142149
ng-class="{ 'has-error': forms.addConfigVolumeForm['path-' + $id].$invalid && forms.addConfigVolumeForm['path-' + $id].$touched }"
143150
type="text"
144151
name="path-{{$id}}"
145152
ng-model="item.path"
153+
ng-pattern="/^(?!(\.\.)?\/)(?!.*\/\.\.(\/|$)).*$/"
146154
required
147155
osc-unique="itemPaths"
148156
placeholder="example: config/app.properties"
149157
autocorrect="off"
150158
autocapitalize="off"
151159
spellcheck="false">
160+
<div class="has-error" ng-show="forms.addConfigVolumeForm['path-' + $id].$error.pattern">
161+
<span class="help-block">
162+
Path must be a relative path. It cannot start with <code>/</code> or
163+
contain <code>..</code> path elements.
164+
</span>
165+
</div>
152166
<div class="has-error" ng-show="forms.addConfigVolumeForm['path-' + $id].$error.oscUnique">
153167
<span class="help-block">
154168
Paths must be unique.

dist/scripts/scripts.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -8308,8 +8308,10 @@ items:r
83088308
}
83098309
i.spec.volumes = i.spec.volumes || [], i.spec.volumes.push(s), c.alerts = {}, c.disableInputs = !0, g.update(l, e.metadata.name, c.targetObject, h).then(function() {
83108310
d.history.back();
8311-
}, function(c) {
8312-
n("An error occurred attaching the persistent volume claim to the " + a("humanizeKind")(b.kind) + ".", k(c));
8311+
}, function(d) {
8312+
c.disableInputs = !1;
8313+
var e = a("humanizeKind"), g = e(f.kind), h = e(b.kind);
8314+
n("An error occurred attaching the " + g + " to the " + h + ".", k(d));
83138315
});
83148316
}
83158317
};

dist/scripts/templates.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,13 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
10281028
"</div>\n" +
10291029
"<div class=\"form-group col-md-6\">\n" +
10301030
"<label ng-attr-for=\"path-{{$id}}\" class=\"required\">Path</label>\n" +
1031-
"<input ng-attr-id=\"path-{{$id}}\" class=\"form-control\" ng-class=\"{ 'has-error': forms.addConfigVolumeForm['path-' + $id].$invalid && forms.addConfigVolumeForm['path-' + $id].$touched }\" type=\"text\" name=\"path-{{$id}}\" ng-model=\"item.path\" required osc-unique=\"itemPaths\" placeholder=\"example: config/app.properties\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\">\n" +
1031+
"\n" +
1032+
"<input ng-attr-id=\"path-{{$id}}\" class=\"form-control\" ng-class=\"{ 'has-error': forms.addConfigVolumeForm['path-' + $id].$invalid && forms.addConfigVolumeForm['path-' + $id].$touched }\" type=\"text\" name=\"path-{{$id}}\" ng-model=\"item.path\" ng-pattern=\"/^(?!(\\.\\.)?\\/)(?!.*\\/\\.\\.(\\/|$)).*$/\" required osc-unique=\"itemPaths\" placeholder=\"example: config/app.properties\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\">\n" +
1033+
"<div class=\"has-error\" ng-show=\"forms.addConfigVolumeForm['path-' + $id].$error.pattern\">\n" +
1034+
"<span class=\"help-block\">\n" +
1035+
"Path must be a relative path. It cannot start with <code>/</code> or contain <code>..</code> path elements.\n" +
1036+
"</span>\n" +
1037+
"</div>\n" +
10321038
"<div class=\"has-error\" ng-show=\"forms.addConfigVolumeForm['path-' + $id].$error.oscUnique\">\n" +
10331039
"<span class=\"help-block\">\n" +
10341040
"Paths must be unique.\n" +

0 commit comments

Comments
 (0)