mirror of
https://github.com/janet-lang/janet
synced 2024-12-26 00:10:27 +00:00
Add range checking to bit-shift code to prevent undefined behavior.
This commit is contained in:
parent
b738319f8d
commit
bd420aeb0e
@ -138,7 +138,7 @@
|
|||||||
vm_pcnext();\
|
vm_pcnext();\
|
||||||
}\
|
}\
|
||||||
}
|
}
|
||||||
#define _vm_bitop_immediate(op, type1)\
|
#define _vm_bitop_immediate(op, type1, rangecheck, msg)\
|
||||||
{\
|
{\
|
||||||
Janet op1 = stack[B];\
|
Janet op1 = stack[B];\
|
||||||
if (!janet_checktype(op1, JANET_NUMBER)) {\
|
if (!janet_checktype(op1, JANET_NUMBER)) {\
|
||||||
@ -147,13 +147,15 @@
|
|||||||
stack[A] = janet_mcall(#op, 2, _argv);\
|
stack[A] = janet_mcall(#op, 2, _argv);\
|
||||||
vm_checkgc_pcnext();\
|
vm_checkgc_pcnext();\
|
||||||
} else {\
|
} else {\
|
||||||
type1 x1 = (type1) janet_unwrap_number(op1);\
|
double y1 = janet_unwrap_number(op1);\
|
||||||
|
if (!rangecheck(y1)) { vm_commit(); janet_panicf("value %v out of range for " msg, op1); }\
|
||||||
|
type1 x1 = (type1) y1;\
|
||||||
stack[A] = janet_wrap_number((type1) (x1 op CS));\
|
stack[A] = janet_wrap_number((type1) (x1 op CS));\
|
||||||
vm_pcnext();\
|
vm_pcnext();\
|
||||||
}\
|
}\
|
||||||
}
|
}
|
||||||
#define vm_bitop_immediate(op) _vm_bitop_immediate(op, int32_t);
|
#define vm_bitop_immediate(op) _vm_bitop_immediate(op, int32_t, janet_checkintrange, "32-bit signed integers");
|
||||||
#define vm_bitopu_immediate(op) _vm_bitop_immediate(op, uint32_t);
|
#define vm_bitopu_immediate(op) _vm_bitop_immediate(op, uint32_t, janet_checkuintrange, "32-bit unsigned integers");
|
||||||
#define _vm_binop(op, wrap)\
|
#define _vm_binop(op, wrap)\
|
||||||
{\
|
{\
|
||||||
Janet op1 = stack[B];\
|
Janet op1 = stack[B];\
|
||||||
@ -170,13 +172,17 @@
|
|||||||
}\
|
}\
|
||||||
}
|
}
|
||||||
#define vm_binop(op) _vm_binop(op, janet_wrap_number)
|
#define vm_binop(op) _vm_binop(op, janet_wrap_number)
|
||||||
#define _vm_bitop(op, type1)\
|
#define _vm_bitop(op, type1, rangecheck, msg)\
|
||||||
{\
|
{\
|
||||||
Janet op1 = stack[B];\
|
Janet op1 = stack[B];\
|
||||||
Janet op2 = stack[C];\
|
Janet op2 = stack[C];\
|
||||||
if (janet_checktype(op1, JANET_NUMBER) && janet_checktype(op2, JANET_NUMBER)) {\
|
if (janet_checktype(op1, JANET_NUMBER) && janet_checktype(op2, JANET_NUMBER)) {\
|
||||||
type1 x1 = (type1) janet_unwrap_number(op1);\
|
double y1 = janet_unwrap_number(op1);\
|
||||||
int32_t x2 = janet_unwrap_integer(op2);\
|
double y2 = janet_unwrap_number(op2);\
|
||||||
|
if (!rangecheck(y1)) { vm_commit(); janet_panicf("value %v out of range for " msg, op1); }\
|
||||||
|
if (!janet_checkintrange(y2)) { vm_commit(); janet_panicf("rhs must be valid 32-bit signed integer, got %f", op2); }\
|
||||||
|
type1 x1 = (type1) y1;\
|
||||||
|
int32_t x2 = (int32_t) y2;\
|
||||||
stack[A] = janet_wrap_number((type1) (x1 op x2));\
|
stack[A] = janet_wrap_number((type1) (x1 op x2));\
|
||||||
vm_pcnext();\
|
vm_pcnext();\
|
||||||
} else {\
|
} else {\
|
||||||
@ -185,8 +191,8 @@
|
|||||||
vm_checkgc_pcnext();\
|
vm_checkgc_pcnext();\
|
||||||
}\
|
}\
|
||||||
}
|
}
|
||||||
#define vm_bitop(op) _vm_bitop(op, int32_t)
|
#define vm_bitop(op) _vm_bitop(op, int32_t, janet_checkintrange, "32-bit signed integers")
|
||||||
#define vm_bitopu(op) _vm_bitop(op, uint32_t)
|
#define vm_bitopu(op) _vm_bitop(op, uint32_t, janet_checkuintrange, "32-bit unsigned integers")
|
||||||
#define vm_compop(op) \
|
#define vm_compop(op) \
|
||||||
{\
|
{\
|
||||||
Janet op1 = stack[B];\
|
Janet op1 = stack[B];\
|
||||||
|
@ -30,10 +30,12 @@
|
|||||||
(assert (= 1 (brshift 4 2)) "right shift")
|
(assert (= 1 (brshift 4 2)) "right shift")
|
||||||
# unsigned shift
|
# unsigned shift
|
||||||
(assert (= 32768 (brushift 0x80000000 16)) "right shift unsigned 1")
|
(assert (= 32768 (brushift 0x80000000 16)) "right shift unsigned 1")
|
||||||
(assert (= -32768 (brshift 0x80000000 16)) "right shift unsigned 2")
|
(assert-error "right shift unsigned 2" (= -32768 (brshift 0x80000000 16)))
|
||||||
|
(assert (= -1 (brshift -1 16)) "right shift unsigned 3")
|
||||||
# non-immediate forms
|
# non-immediate forms
|
||||||
(assert (= 32768 (brushift 0x80000000 (+ 0 16))) "right shift unsigned non-immediate")
|
(assert (= 32768 (brushift 0x80000000 (+ 0 16))) "right shift unsigned non-immediate")
|
||||||
(assert (= -32768 (brshift 0x80000000 (+ 0 16))) "right shift non-immediate")
|
(assert-error "right shift non-immediate" (= -32768 (brshift 0x80000000 (+ 0 16))))
|
||||||
|
(assert (= -1 (brshift -1 (+ 0 16))) "right shift non-immediate 2")
|
||||||
(assert (= 32768 (blshift 1 (+ 0 15))) "left shift non-immediate")
|
(assert (= 32768 (blshift 1 (+ 0 15))) "left shift non-immediate")
|
||||||
# 7e46ead
|
# 7e46ead
|
||||||
(assert (< 1 2 3 4 5 6) "less than integers")
|
(assert (< 1 2 3 4 5 6) "less than integers")
|
||||||
|
Loading…
Reference in New Issue
Block a user