Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
ba710eb1
Commit
ba710eb1
authored
Aug 16, 2014
by
dscho
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #20 from newsoft/master
Fix integer overflow in MallocFrameBuffer()
parents
9453be42
85a778c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
5 deletions
+28
-5
rfbproto.c
libvncclient/rfbproto.c
+7
-3
vncviewer.c
libvncclient/vncviewer.c
+21
-2
No files found.
libvncclient/rfbproto.c
View file @
ba710eb1
...
...
@@ -1829,7 +1829,8 @@ HandleRFBServerMessage(rfbClient* client)
client
->
updateRect
.
x
=
client
->
updateRect
.
y
=
0
;
client
->
updateRect
.
w
=
client
->
width
;
client
->
updateRect
.
h
=
client
->
height
;
client
->
MallocFrameBuffer
(
client
);
if
(
!
client
->
MallocFrameBuffer
(
client
))
return
FALSE
;
SendFramebufferUpdateRequest
(
client
,
0
,
0
,
rect
.
r
.
w
,
rect
.
r
.
h
,
FALSE
);
rfbClientLog
(
"Got new framebuffer size: %dx%d
\n
"
,
rect
.
r
.
w
,
rect
.
r
.
h
);
continue
;
...
...
@@ -2290,7 +2291,9 @@ HandleRFBServerMessage(rfbClient* client)
client
->
updateRect
.
x
=
client
->
updateRect
.
y
=
0
;
client
->
updateRect
.
w
=
client
->
width
;
client
->
updateRect
.
h
=
client
->
height
;
client
->
MallocFrameBuffer
(
client
);
if
(
!
client
->
MallocFrameBuffer
(
client
))
return
FALSE
;
SendFramebufferUpdateRequest
(
client
,
0
,
0
,
client
->
width
,
client
->
height
,
FALSE
);
rfbClientLog
(
"Got new framebuffer size: %dx%d
\n
"
,
client
->
width
,
client
->
height
);
break
;
...
...
@@ -2306,7 +2309,8 @@ HandleRFBServerMessage(rfbClient* client)
client
->
updateRect
.
x
=
client
->
updateRect
.
y
=
0
;
client
->
updateRect
.
w
=
client
->
width
;
client
->
updateRect
.
h
=
client
->
height
;
client
->
MallocFrameBuffer
(
client
);
if
(
!
client
->
MallocFrameBuffer
(
client
))
return
FALSE
;
SendFramebufferUpdateRequest
(
client
,
0
,
0
,
client
->
width
,
client
->
height
,
FALSE
);
rfbClientLog
(
"Got new framebuffer size: %dx%d
\n
"
,
client
->
width
,
client
->
height
);
break
;
...
...
libvncclient/vncviewer.c
View file @
ba710eb1
...
...
@@ -82,9 +82,27 @@ static char* ReadPassword(rfbClient* client) {
#endif
}
static
rfbBool
MallocFrameBuffer
(
rfbClient
*
client
)
{
uint64_t
allocSize
;
if
(
client
->
frameBuffer
)
free
(
client
->
frameBuffer
);
client
->
frameBuffer
=
malloc
(
client
->
width
*
client
->
height
*
client
->
format
.
bitsPerPixel
/
8
);
/* SECURITY: promote 'width' into uint64_t so that the multiplication does not overflow
'width' and 'height' are 16-bit integers per RFB protocol design
SIZE_MAX is the maximum value that can fit into size_t
*/
allocSize
=
(
uint64_t
)
client
->
width
*
client
->
height
*
client
->
format
.
bitsPerPixel
/
8
;
if
(
allocSize
>=
SIZE_MAX
)
{
rfbClientErr
(
"CRITICAL: cannot allocate frameBuffer, requested size is too large
\n
"
);
return
FALSE
;
}
client
->
frameBuffer
=
malloc
(
(
size_t
)
allocSize
);
if
(
client
->
frameBuffer
==
NULL
)
rfbClientErr
(
"CRITICAL: frameBuffer allocation failed, requested size too large or not enough memory?
\n
"
);
return
client
->
frameBuffer
?
TRUE
:
FALSE
;
}
...
...
@@ -232,7 +250,8 @@ static rfbBool rfbInitConnection(rfbClient* client)
client
->
width
=
client
->
si
.
framebufferWidth
;
client
->
height
=
client
->
si
.
framebufferHeight
;
client
->
MallocFrameBuffer
(
client
);
if
(
!
client
->
MallocFrameBuffer
(
client
))
return
FALSE
;
if
(
!
SetFormatAndEncodings
(
client
))
return
FALSE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment