Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 8cd9241

Browse files
committedApr 14, 2020
8242330: Arrays should be cloned in several JAAS Callback classes
Reviewed-by: mullan
1 parent d34f732 commit 8cd9241

File tree

3 files changed

+132
-25
lines changed

3 files changed

+132
-25
lines changed
 

‎src/java.base/share/classes/javax/security/auth/callback/ChoiceCallback.java

+15-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -43,23 +43,23 @@ public class ChoiceCallback implements Callback, java.io.Serializable {
4343
* @serial
4444
* @since 1.4
4545
*/
46-
private String prompt;
46+
private final String prompt;
4747
/**
4848
* @serial the list of choices
4949
* @since 1.4
5050
*/
51-
private String[] choices;
51+
private final String[] choices;
5252
/**
5353
* @serial the choice to be used as the default choice
5454
* @since 1.4
5555
*/
56-
private int defaultChoice;
56+
private final int defaultChoice;
5757
/**
5858
* @serial whether multiple selections are allowed from the list of
5959
* choices
6060
* @since 1.4
6161
*/
62-
private boolean multipleSelectionsAllowed;
62+
private final boolean multipleSelectionsAllowed;
6363
/**
6464
* @serial the selected choices, represented as indexes into the
6565
* {@code choices} list.
@@ -75,7 +75,8 @@ public class ChoiceCallback implements Callback, java.io.Serializable {
7575
*
7676
* @param prompt the prompt used to describe the list of choices.
7777
*
78-
* @param choices the list of choices.
78+
* @param choices the list of choices. The array is cloned to protect
79+
* against subsequent modification.
7980
*
8081
* @param defaultChoice the choice to be used as the default choice
8182
* when the list of choices are displayed. This value
@@ -110,7 +111,7 @@ public ChoiceCallback(String prompt, String[] choices,
110111
}
111112

112113
this.prompt = prompt;
113-
this.choices = choices;
114+
this.choices = choices.clone();
114115
this.defaultChoice = defaultChoice;
115116
this.multipleSelectionsAllowed = multipleSelectionsAllowed;
116117
}
@@ -127,10 +128,10 @@ public String getPrompt() {
127128
/**
128129
* Get the list of choices.
129130
*
130-
* @return the list of choices.
131+
* @return a copy of the list of choices.
131132
*/
132133
public String[] getChoices() {
133-
return choices;
134+
return choices.clone();
134135
}
135136

136137
/**
@@ -170,7 +171,8 @@ public void setSelectedIndex(int selection) {
170171
* Set the selected choices.
171172
*
172173
* @param selections the selections represented as indexes into the
173-
* {@code choices} list.
174+
* {@code choices} list. The array is cloned to protect
175+
* against subsequent modification.
174176
*
175177
* @exception UnsupportedOperationException if multiple selections are
176178
* not allowed, as determined by
@@ -181,18 +183,18 @@ public void setSelectedIndex(int selection) {
181183
public void setSelectedIndexes(int[] selections) {
182184
if (!multipleSelectionsAllowed)
183185
throw new UnsupportedOperationException();
184-
this.selections = selections;
186+
this.selections = selections == null ? null : selections.clone();
185187
}
186188

187189
/**
188190
* Get the selected choices.
189191
*
190-
* @return the selected choices, represented as indexes into the
192+
* @return a copy of the selected choices, represented as indexes into the
191193
* {@code choices} list.
192194
*
193195
* @see #setSelectedIndexes
194196
*/
195197
public int[] getSelectedIndexes() {
196-
return selections;
198+
return selections == null ? null : selections.clone();
197199
}
198200
}

‎src/java.base/share/classes/javax/security/auth/callback/ConfirmationCallback.java

+21-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -122,31 +122,32 @@ public class ConfirmationCallback implements Callback, java.io.Serializable {
122122

123123
/** ERROR message type. */
124124
public static final int ERROR = 2;
125+
125126
/**
126127
* @serial
127128
* @since 1.4
128129
*/
129-
private String prompt;
130+
private final String prompt;
130131
/**
131132
* @serial
132133
* @since 1.4
133134
*/
134-
private int messageType;
135+
private final int messageType;
135136
/**
136137
* @serial
137138
* @since 1.4
138139
*/
139-
private int optionType = UNSPECIFIED_OPTION;
140+
private final int optionType;
140141
/**
141142
* @serial
142143
* @since 1.4
143144
*/
144-
private int defaultOption;
145+
private final int defaultOption;
145146
/**
146147
* @serial
147148
* @since 1.4
148149
*/
149-
private String[] options;
150+
private final String[] options;
150151
/**
151152
* @serial
152153
* @since 1.4
@@ -206,8 +207,10 @@ public ConfirmationCallback(int messageType,
206207
break;
207208
}
208209

210+
this.prompt = null;
209211
this.messageType = messageType;
210212
this.optionType = optionType;
213+
this.options = null;
211214
this.defaultOption = defaultOption;
212215
}
213216

@@ -225,7 +228,8 @@ public ConfirmationCallback(int messageType,
225228
* @param messageType the message type ({@code INFORMATION},
226229
* {@code WARNING} or {@code ERROR}).
227230
*
228-
* @param options the list of confirmation options.
231+
* @param options the list of confirmation options. The array is cloned
232+
* to protect against subsequent modification.
229233
*
230234
* @param defaultOption the default option, represented as an index
231235
* into the {@code options} array.
@@ -253,8 +257,10 @@ public ConfirmationCallback(int messageType,
253257
throw new IllegalArgumentException();
254258
}
255259

260+
this.prompt = null;
256261
this.messageType = messageType;
257-
this.options = options;
262+
this.optionType = UNSPECIFIED_OPTION;
263+
this.options = options.clone();
258264
this.defaultOption = defaultOption;
259265
}
260266

@@ -319,6 +325,7 @@ public ConfirmationCallback(String prompt, int messageType,
319325
this.prompt = prompt;
320326
this.messageType = messageType;
321327
this.optionType = optionType;
328+
this.options = null;
322329
this.defaultOption = defaultOption;
323330
}
324331

@@ -338,7 +345,8 @@ public ConfirmationCallback(String prompt, int messageType,
338345
* @param messageType the message type ({@code INFORMATION},
339346
* {@code WARNING} or {@code ERROR}).
340347
*
341-
* @param options the list of confirmation options.
348+
* @param options the list of confirmation options. The array is cloned
349+
* to protect against subsequent modification.
342350
*
343351
* @param defaultOption the default option, represented as an index
344352
* into the {@code options} array.
@@ -371,7 +379,8 @@ public ConfirmationCallback(String prompt, int messageType,
371379

372380
this.prompt = prompt;
373381
this.messageType = messageType;
374-
this.options = options;
382+
this.optionType = UNSPECIFIED_OPTION;
383+
this.options = options.clone();
375384
this.defaultOption = defaultOption;
376385
}
377386

@@ -418,12 +427,12 @@ public int getOptionType() {
418427
/**
419428
* Get the confirmation options.
420429
*
421-
* @return the list of confirmation options, or null if this
430+
* @return a copy of the list of confirmation options, or null if this
422431
* {@code ConfirmationCallback} was instantiated with
423432
* an {@code optionType} instead of {@code options}.
424433
*/
425434
public String[] getOptions() {
426-
return options;
435+
return options == null ? null : options.clone();
427436
}
428437

429438
/**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/*
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8242330
27+
* @library /test/lib
28+
* @summary Arrays should be cloned in several JAAS Callback classes
29+
*/
30+
31+
import javax.security.auth.callback.ChoiceCallback;
32+
import javax.security.auth.callback.ConfirmationCallback;
33+
34+
import static jdk.test.lib.Asserts.assertEQ;
35+
36+
public class Mutability {
37+
public static void main(String[] args) {
38+
39+
// #1. ConfirmationCallback.new(3)
40+
String[] i11 = {"1", "2"};
41+
ConfirmationCallback c1 = new ConfirmationCallback(
42+
ConfirmationCallback.INFORMATION,
43+
i11,
44+
0);
45+
46+
// Modify argument of constructor
47+
i11[0] = "x";
48+
String[] o11 = c1.getOptions();
49+
assertEQ(o11[0], "1");
50+
// Modify output
51+
o11[0] = "y";
52+
String[] o12 = c1.getOptions();
53+
assertEQ(o12[0], "1");
54+
55+
// #2. ConfirmationCallback.new(4)
56+
String[] i21 = {"1", "2"};
57+
ConfirmationCallback c2 = new ConfirmationCallback(
58+
"Hi",
59+
ConfirmationCallback.INFORMATION,
60+
i21,
61+
0);
62+
63+
// Modify argument of constructor
64+
i21[0] = "x";
65+
assertEQ(c2.getOptions()[0], "1");
66+
67+
// #3. ChoiceCallback.new
68+
String[] i31 = {"1", "2"};
69+
ChoiceCallback c3 = new ChoiceCallback(
70+
"Hi",
71+
i31,
72+
0,
73+
true);
74+
75+
// Modify argument of constructor
76+
i31[0] = "x";
77+
String[] o31 = c3.getChoices();
78+
assertEQ(o31[0], "1");
79+
// Modify output of getChoices
80+
o31[0] = "y";
81+
String[] o32 = c3.getChoices();
82+
assertEQ(o32[0], "1");
83+
84+
int[] s31 = {0, 1};
85+
c3.setSelectedIndexes(s31);
86+
87+
// Modify argument of setSelectedIndexes
88+
s31[0] = 1;
89+
int[] s32 = c3.getSelectedIndexes();
90+
assertEQ(s32[0], 0);
91+
// Modify output of getSelectedIndexes
92+
s32[1] = 0;
93+
int[] s33 = c3.getSelectedIndexes();
94+
assertEQ(s33[1], 1);
95+
}
96+
}

0 commit comments

Comments
 (0)
This repository has been archived.