OSDN Git Service

glapi/glx: Add overflow checks to the client-side indirect code
authorAdam Jackson <ajax@redhat.com>
Tue, 24 May 2016 19:45:11 +0000 (15:45 -0400)
committerAdam Jackson <ajax@redhat.com>
Wed, 8 Jun 2016 18:39:46 +0000 (14:39 -0400)
Coverity complains that the computed sizes can lead to negative lengths
passed to memcpy. If that happens we've been handed invalid arguments
anyway, so just bomb out.

The funky "0%s" is because the size string for the variable-length part
of the request is of the form "+ safe_pad() ...", and a unary + would
coerce the result to always be positive, defeating the overflow check.

Signed-off-by: Adam Jackson <ajax@redhat.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mapi/glapi/gen/glX_proto_send.py

index 10abcff..26e7ab6 100644 (file)
@@ -635,6 +635,15 @@ generic_%u_byte( GLint rop, const void * ptr )
         if name != None and name not in f.glx_vendorpriv_names:
             print '#endif'
 
+        if f.command_variable_length() != "":
+            print "    if (0%s < 0) {" % f.command_variable_length()
+            print "        __glXSetError(gc, GL_INVALID_VALUE);"
+            if f.return_type != 'void':
+                print "        return 0;"
+            else:
+                print "        return;"
+            print "    }"
+
         condition_list = []
         for p in f.parameterIterateCounters():
             condition_list.append( "%s >= 0" % (p.name) )