Skip to content

Commit 04c0afd

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 04c0afd

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

app/scripts/controllers/addConfigVolume.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ angular.module('openshiftConsole')
9696
var generateName = $filter('generateName');
9797

9898
var displayError = function(errorMessage, errorDetails) {
99-
$scope.disableInputs = true;
10099
$scope.alerts['attach-persistent-volume-claim'] = {
101100
type: "error",
102101
message: errorMessage,
@@ -225,7 +224,11 @@ angular.module('openshiftConsole')
225224
$window.history.back();
226225
},
227226
function(result) {
228-
displayError("An error occurred attaching the persistent volume claim to the " + $filter('humanizeKind')($routeParams.kind) + ".", getErrorDetails(result));
227+
$scope.disableInputs = false;
228+
var humanizeKind = $filter('humanizeKind');
229+
var sourceKind = humanizeKind(source.kind);
230+
var targetKind = humanizeKind($routeParams.kind);
231+
displayError("An error occurred attaching the " + sourceKind + " to the " + targetKind + ".", getErrorDetails(result));
229232
}
230233
);
231234
};

app/views/add-config-volume.html

+15
Original file line numberDiff line numberDiff line change
@@ -136,19 +136,34 @@ <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 `/`
144+
(?!\.\.(\/|$)) do not match strings starting with `../` or exactly `..`
145+
(?!.*\/\.\.(\/|$)) do not match strings containing `/../` or ending in `/..`
146+
-->
139147
<input
140148
ng-attr-id="path-{{$id}}"
141149
class="form-control"
142150
ng-class="{ 'has-error': forms.addConfigVolumeForm['path-' + $id].$invalid && forms.addConfigVolumeForm['path-' + $id].$touched }"
143151
type="text"
144152
name="path-{{$id}}"
145153
ng-model="item.path"
154+
ng-pattern="/^(?!\/)(?!\.\.(\/|$))(?!.*\/\.\.(\/|$)).*$/"
146155
required
147156
osc-unique="itemPaths"
148157
placeholder="example: config/app.properties"
149158
autocorrect="off"
150159
autocapitalize="off"
151160
spellcheck="false">
161+
<div class="has-error" ng-show="forms.addConfigVolumeForm['path-' + $id].$error.pattern">
162+
<span class="help-block">
163+
Path must be a relative path. It cannot start with <code>/</code> or
164+
contain <code>..</code> path elements.
165+
</span>
166+
</div>
152167
<div class="has-error" ng-show="forms.addConfigVolumeForm['path-' + $id].$error.oscUnique">
153168
<span class="help-block">
154169
Paths must be unique.

dist/scripts/scripts.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -8239,7 +8239,7 @@ c.attach.items.splice(a, 1), o();
82398239
}, i.get(b.project).then(_.spread(function(e, h) {
82408240
c.project = e;
82418241
var i = a("orderByDisplayName"), k = a("getErrorDetails"), m = a("generateName"), n = function(a, b) {
8242-
c.disableInputs = !0, c.alerts["attach-persistent-volume-claim"] = {
8242+
c.alerts["attach-persistent-volume-claim"] = {
82438243
type:"error",
82448244
message:a,
82458245
details:b
@@ -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)