Skip to content

Commit eeda6e0

Browse files
Prevent out-of-bounds read if strings are not \0 terminated
The documentation does not state whether the strings in DEVMODE are \0 terminated so assume they might be not
1 parent 0477646 commit eeda6e0

File tree

1 file changed

+12
-7
lines changed
  • contrib/platform/src/com/sun/jna/platform/win32

1 file changed

+12
-7
lines changed

contrib/platform/src/com/sun/jna/platform/win32/WinGDI.java

+12-7
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
*/
2424
package com.sun.jna.platform.win32;
2525

26+
import com.sun.jna.Native;
2627
import com.sun.jna.NativeLong;
2728
import com.sun.jna.Pointer;
2829
import com.sun.jna.Structure;
2930
import com.sun.jna.Structure.FieldOrder;
3031
import com.sun.jna.platform.win32.WinNT.HANDLE;
3132
import com.sun.jna.Union;
3233

33-
import java.text.ParseException;
34-
3534
import static com.sun.jna.platform.win32.WinDef.*;
35+
import java.nio.charset.StandardCharsets;
3636

3737
/**
3838
* Ported from WinGDI.h.
@@ -276,19 +276,24 @@ public static class ByReference extends DEVMODE implements Structure.ByReference
276276
* Converts dmDeviceName from raw byte[] to String
277277
*/
278278
public String getDmDeviceName() {
279-
int offset = fieldOffset("dmDeviceName");
280-
return CHAR_WIDTH == 1 ? getPointer().getString(offset) : getPointer().getWideString(offset);
279+
if(CHAR_WIDTH == 1) {
280+
return Native.toString(dmFormName);
281+
} else {
282+
return new String(dmDeviceName, StandardCharsets.UTF_16LE);
283+
}
281284
}
282285

283286
/**
284287
* Converts dmFormName from raw byte[] to String
285288
*/
286289
public String getDmFormName() {
287-
int offset = fieldOffset("dmFormName");
288-
return CHAR_WIDTH == 1 ? getPointer().getString(offset) : getPointer().getWideString(offset);
290+
if(CHAR_WIDTH == 1) {
291+
return Native.toString(dmFormName);
292+
} else {
293+
return new String(dmFormName, StandardCharsets.UTF_16LE);
294+
}
289295
}
290296

291-
292297
public static class DUMMYUNIONNAME extends Union {
293298
public DUMMYSTRUCTNAME dummystructname;
294299

0 commit comments

Comments
 (0)