Skip to content

Commit dc33466

Browse files
authoredMay 31, 2023
Fix a bunch of UB bugs (fixed_point mode) (#141)
After fixing some oss-fuzz discoveries new ones have arrived. Most interesting: typo in (sbr) DST4_32 - it affects both fixed-point and float version.
1 parent 9377380 commit dc33466

File tree

5 files changed

+24
-14
lines changed

5 files changed

+24
-14
lines changed
 

‎libfaad/common.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ real_t pow2_fix(real_t val)
358358
int32_t whole = (val >> REAL_BITS);
359359

360360
/* rest = [0..1] */
361-
int32_t rest = val - (whole << REAL_BITS);
361+
int32_t rest = val & ((1 << REAL_BITS) - 1);
362362

363363
/* index into pow2_tab */
364364
int32_t index = rest >> (REAL_BITS-TABLE_BITS);
@@ -401,7 +401,7 @@ int32_t pow2_int(real_t val)
401401
int32_t whole = (val >> REAL_BITS);
402402

403403
/* rest = [0..1] */
404-
int32_t rest = val - (whole << REAL_BITS);
404+
int32_t rest = val & ((1 << REAL_BITS) - 1);
405405

406406
/* index into pow2_tab */
407407
int32_t index = rest >> (REAL_BITS-TABLE_BITS);

‎libfaad/fixed.h

+6-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ extern "C" {
4848
/* FRAC is the fractional only part of the fixed point number [0.0..1.0) */
4949
#define FRAC_SIZE 32 /* frac is a 32 bit integer */
5050
#define FRAC_BITS 31
51-
#define FRAC_PRECISION ((uint32_t)(1 << FRAC_BITS))
51+
/* Multiplication by power of 2 will be compiled to left-shift */
52+
#define FRAC_MUL (1u << (FRAC_SIZE - FRAC_BITS))
53+
#define FRAC_PRECISION ((uint32_t)(1u << FRAC_BITS))
5254
#define FRAC_MAX 0x7FFFFFFF
5355

5456
typedef int32_t real_t;
@@ -262,7 +264,7 @@ static INLINE void ComplexMult(real_t *y1, real_t *y2,
262264
: "=d" (__xxo) : "d" (X), "d" (Y) : "A0","A1"); __xxo; })
263265
#else
264266
#define _MulHigh(A,B) (real_t)(((int64_t)(A)*(int64_t)(B)+(1u << (FRAC_SIZE-1))) >> FRAC_SIZE)
265-
#define MUL_F(A,B) (real_t)(((int64_t)(A)*(int64_t)(B)+(1 << (FRAC_BITS-1))) >> FRAC_BITS)
267+
#define MUL_F(A,B) (real_t)(((int64_t)(A)*(int64_t)(B)+(1u << (FRAC_BITS-1))) >> FRAC_BITS)
266268
#endif
267269
#endif
268270
#define MUL_Q2(A,B) (real_t)(((int64_t)(A)*(int64_t)(B)+(1 << (Q2_BITS-1))) >> Q2_BITS)
@@ -273,8 +275,8 @@ static INLINE void ComplexMult(real_t *y1, real_t *y2,
273275
static INLINE void ComplexMult(real_t *y1, real_t *y2,
274276
real_t x1, real_t x2, real_t c1, real_t c2)
275277
{
276-
*y1 = (_MulHigh(x1, c1) + _MulHigh(x2, c2))<<(FRAC_SIZE-FRAC_BITS);
277-
*y2 = (_MulHigh(x2, c1) - _MulHigh(x1, c2))<<(FRAC_SIZE-FRAC_BITS);
278+
*y1 = (_MulHigh(x1, c1) + _MulHigh(x2, c2)) * FRAC_MUL;
279+
*y2 = (_MulHigh(x2, c1) - _MulHigh(x1, c2)) * FRAC_MUL;
278280
}
279281

280282
#endif

‎libfaad/sbr_dct.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ void DST4_32(real_t *y, real_t *x)
675675
f148 = f145 + f146;
676676
f149 = f147 - f146;
677677
f150 = f4 + f26;
678-
f151 = MUL_F(FRAC_CONST(1.2130114330978077), f4);
678+
f151 = MUL_C(COEF_CONST(1.2130114330978077), f4);
679679
f152 = MUL_F(FRAC_CONST(-0.9700312531945440), f150);
680680
f153 = MUL_F(FRAC_CONST(-0.7270510732912803), f26);
681681
f154 = f151 + f152;

‎libfaad/sbr_hfadj.c

+11-3
Original file line numberDiff line numberDiff line change
@@ -520,12 +520,16 @@ static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch)
520520
else
521521
acc1 = log2_int(acc1);
522522

523+
if (acc2 == 0)
524+
acc2 = LOG2_MIN_INF;
525+
else
526+
acc2 = log2_int(acc2);
523527

524528
/* calculate the maximum gain */
525529
/* ratio of the energy of the original signal and the energy
526530
* of the HF generated signal
527531
*/
528-
G_max = acc1 - log2_int(acc2) + limGain[sbr->bs_limiter_gains];
532+
G_max = acc1 - acc2 + limGain[sbr->bs_limiter_gains];
529533
G_max = min(G_max, limGain[3]);
530534

531535

@@ -647,7 +651,7 @@ static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch)
647651
Q_M_size++;
648652
}
649653
} else {
650-
/* G > G_max */
654+
/* G >= G_max */
651655
Q_M_lim[m] = Q_M + G_max - G;
652656
G_lim[m] = G_max;
653657

@@ -670,10 +674,14 @@ static void calculate_gain(sbr_info *sbr, sbr_hfadj_info *adj, uint8_t ch)
670674
den += pow2_int(log2_int_tab[Q_M_size] + Q_M);
671675
}
672676

677+
if (den == 0)
678+
den = LOG2_MIN_INF;
679+
else
680+
den = log2_int(den /*+ EPS*/);
673681

674682
/* calculate the final gain */
675683
/* G_boost: [0..2.51188643] */
676-
G_boost = acc1 - log2_int(den /*+ EPS*/);
684+
G_boost = acc1 - den;
677685
G_boost = min(G_boost, REAL_CONST(1.328771237) /* log2(1.584893192 ^ 2) */);
678686

679687

‎libfaad/specrec.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -654,10 +654,10 @@ static uint8_t quant_to_spec(NeAACDecStruct *hDecoder,
654654
spec_data[wb+2] = iq2 >> -exp;
655655
spec_data[wb+3] = iq3 >> -exp;
656656
} else {
657-
spec_data[wb+0] = iq0 << exp;
658-
spec_data[wb+1] = iq1 << exp;
659-
spec_data[wb+2] = iq2 << exp;
660-
spec_data[wb+3] = iq3 << exp;
657+
spec_data[wb+0] = (int32_t)((uint32_t)iq0 << exp);
658+
spec_data[wb+1] = (int32_t)((uint32_t)iq1 << exp);
659+
spec_data[wb+2] = (int32_t)((uint32_t)iq2 << exp);
660+
spec_data[wb+3] = (int32_t)((uint32_t)iq3 << exp);
661661
}
662662
if (frac != 0)
663663
{

0 commit comments

Comments
 (0)
Please sign in to comment.