Handle malloc failure in mode_create gracefully without leaking memory.

This commit is contained in:
Gregory Maxwell 2009-06-04 17:17:35 -04:00 committed by Jean-Marc Valin
parent 1716999bbe
commit dc67fa9a4c
6 changed files with 122 additions and 21 deletions

View file

@ -179,8 +179,8 @@ void celt_encoder_destroy(CELTEncoder *st)
if (st->marker == ENCODERFREED) if (st->marker == ENCODERFREED)
{ {
return;
celt_warning("Freeing an encoder which has already been freed"); celt_warning("Freeing an encoder which has already been freed");
return;
} }
if (st->marker != ENCODERVALID && st->marker != ENCODERPARTIAL) if (st->marker != ENCODERVALID && st->marker != ENCODERPARTIAL)

View file

@ -64,7 +64,11 @@ void mdct_init(mdct_lookup *l,int N)
l->n = N; l->n = N;
N2 = N>>1; N2 = N>>1;
l->kfft = cpx32_fft_alloc(N>>2); l->kfft = cpx32_fft_alloc(N>>2);
if (l->kfft==NULL)
return;
l->trig = (kiss_twiddle_scalar*)celt_alloc(N2*sizeof(kiss_twiddle_scalar)); l->trig = (kiss_twiddle_scalar*)celt_alloc(N2*sizeof(kiss_twiddle_scalar));
if (l->trig==NULL)
return;
/* We have enough points that sine isn't necessary */ /* We have enough points that sine isn't necessary */
#if defined(FIXED_POINT) #if defined(FIXED_POINT)
#if defined(DOUBLE_PRECISION) & !defined(MIXED_PRECISION) #if defined(DOUBLE_PRECISION) & !defined(MIXED_PRECISION)

View file

@ -44,8 +44,9 @@
#include "static_modes.c" #include "static_modes.c"
#endif #endif
#define MODEVALID 0xa110ca7e #define MODEVALID 0xa110ca7e
#define MODEFREED 0xb10cf8ee #define MODEPARTIAL 0x7eca10a1
#define MODEFREED 0xb10cf8ee
#ifndef M_PI #ifndef M_PI
#define M_PI 3.141592653 #define M_PI 3.141592653
@ -54,6 +55,8 @@
int celt_mode_info(const CELTMode *mode, int request, celt_int32_t *value) int celt_mode_info(const CELTMode *mode, int request, celt_int32_t *value)
{ {
if (check_mode(mode) != CELT_OK)
return CELT_INVALID_MODE;
switch (request) switch (request)
{ {
case CELT_GET_FRAME_SIZE: case CELT_GET_FRAME_SIZE:
@ -148,6 +151,9 @@ static celt_int16_t *compute_ebands(celt_int32_t Fs, int frame_size, int *nbEBan
*nbEBands = low+high; *nbEBands = low+high;
eBands = celt_alloc(sizeof(celt_int16_t)*(*nbEBands+2)); eBands = celt_alloc(sizeof(celt_int16_t)*(*nbEBands+2));
if (eBands==NULL)
return NULL;
/* Linear spacing (min_width) */ /* Linear spacing (min_width) */
for (i=0;i<low;i++) for (i=0;i<low;i++)
eBands[i] = MIN_BINS*i; eBands[i] = MIN_BINS*i;
@ -176,6 +182,9 @@ static void compute_pbands(CELTMode *mode, int res)
int i; int i;
celt_int16_t *pBands; celt_int16_t *pBands;
pBands=celt_alloc(sizeof(celt_int16_t)*(PBANDS+2)); pBands=celt_alloc(sizeof(celt_int16_t)*(PBANDS+2));
mode->pBands = pBands;
if (pBands==NULL)
return;
mode->nbPBands = PBANDS; mode->nbPBands = PBANDS;
for (i=0;i<PBANDS+1;i++) for (i=0;i<PBANDS+1;i++)
{ {
@ -203,7 +212,6 @@ static void compute_pbands(CELTMode *mode, int res)
/*for (i=0;i<mode->nbPBands+2;i++) /*for (i=0;i<mode->nbPBands+2;i++)
printf("%d ", pBands[i]); printf("%d ", pBands[i]);
printf ("\n");*/ printf ("\n");*/
mode->pBands = pBands;
mode->pitchEnd = pBands[PBANDS]; mode->pitchEnd = pBands[PBANDS];
} }
@ -220,6 +228,8 @@ static void compute_allocation_table(CELTMode *mode, int res)
mode->nbAllocVectors = BITALLOC_SIZE; mode->nbAllocVectors = BITALLOC_SIZE;
allocVectors = celt_alloc(sizeof(celt_int16_t)*(BITALLOC_SIZE*mode->nbEBands)); allocVectors = celt_alloc(sizeof(celt_int16_t)*(BITALLOC_SIZE*mode->nbEBands));
if (allocVectors==NULL)
return;
/* Compute per-codec-band allocation from per-critical-band matrix */ /* Compute per-codec-band allocation from per-critical-band matrix */
for (i=0;i<BITALLOC_SIZE;i++) for (i=0;i<BITALLOC_SIZE;i++)
{ {
@ -269,6 +279,13 @@ CELTMode *celt_mode_create(celt_int32_t Fs, int channels, int frame_size, int *e
const CELTMode *m = NULL; const CELTMode *m = NULL;
CELTMode *mode=NULL; CELTMode *mode=NULL;
ALLOC_STACK; ALLOC_STACK;
#if !defined(VAR_ARRAYS) && !defined(USE_ALLOCA)
if (global_stack==NULL)
{
celt_free(global_stack);
goto failure;
}
#endif
for (i=0;i<TOTAL_MODES;i++) for (i=0;i<TOTAL_MODES;i++)
{ {
if (Fs == static_mode_list[i]->Fs && if (Fs == static_mode_list[i]->Fs &&
@ -287,12 +304,22 @@ CELTMode *celt_mode_create(celt_int32_t Fs, int channels, int frame_size, int *e
return NULL; return NULL;
} }
mode = (CELTMode*)celt_alloc(sizeof(CELTMode)); mode = (CELTMode*)celt_alloc(sizeof(CELTMode));
if (mode==NULL)
goto failure;
CELT_COPY(mode, m, 1); CELT_COPY(mode, m, 1);
mode->marker_start = MODEPARTIAL;
#else #else
int res; int res;
CELTMode *mode; CELTMode *mode;
celt_word16_t *window; celt_word16_t *window;
ALLOC_STACK; ALLOC_STACK;
#if !defined(VAR_ARRAYS) && !defined(USE_ALLOCA)
if (global_stack==NULL)
{
celt_free(global_stack);
goto failure;
}
#endif
/* The good thing here is that permutation of the arguments will automatically be invalid */ /* The good thing here is that permutation of the arguments will automatically be invalid */
@ -320,11 +347,18 @@ CELTMode *celt_mode_create(celt_int32_t Fs, int channels, int frame_size, int *e
res = (Fs+frame_size)/(2*frame_size); res = (Fs+frame_size)/(2*frame_size);
mode = celt_alloc(sizeof(CELTMode)); mode = celt_alloc(sizeof(CELTMode));
if (mode==NULL)
goto failure;
mode->marker_start = MODEPARTIAL;
mode->Fs = Fs; mode->Fs = Fs;
mode->mdctSize = frame_size; mode->mdctSize = frame_size;
mode->nbChannels = channels; mode->nbChannels = channels;
mode->eBands = compute_ebands(Fs, frame_size, &mode->nbEBands); mode->eBands = compute_ebands(Fs, frame_size, &mode->nbEBands);
if (mode->eBands==NULL)
goto failure;
compute_pbands(mode, res); compute_pbands(mode, res);
if (mode->pBands==NULL)
goto failure;
mode->ePredCoef = QCONST16(.8f,15); mode->ePredCoef = QCONST16(.8f,15);
if (frame_size > 384 && (frame_size%8)==0) if (frame_size > 384 && (frame_size%8)==0)
@ -356,9 +390,13 @@ CELTMode *celt_mode_create(celt_int32_t Fs, int channels, int frame_size, int *e
mode->overlap = (frame_size>>3)<<2; mode->overlap = (frame_size>>3)<<2;
compute_allocation_table(mode, res); compute_allocation_table(mode, res);
if (mode->allocVectors==NULL)
goto failure;
/*printf ("%d bands\n", mode->nbEBands);*/ /*printf ("%d bands\n", mode->nbEBands);*/
window = (celt_word16_t*)celt_alloc(mode->overlap*sizeof(celt_word16_t)); window = (celt_word16_t*)celt_alloc(mode->overlap*sizeof(celt_word16_t));
if (window==NULL)
goto failure;
#ifndef FIXED_POINT #ifndef FIXED_POINT
for (i=0;i<mode->overlap;i++) for (i=0;i<mode->overlap;i++)
@ -370,13 +408,15 @@ CELTMode *celt_mode_create(celt_int32_t Fs, int channels, int frame_size, int *e
mode->window = window; mode->window = window;
mode->bits = (const celt_int16_t **)compute_alloc_cache(mode, 1); mode->bits = (const celt_int16_t **)compute_alloc_cache(mode, 1);
if (mode->bits==NULL)
goto failure;
#ifndef SHORTCUTS #ifndef SHORTCUTS
psydecay_init(&mode->psy, MAX_PERIOD/2, mode->Fs); psydecay_init(&mode->psy, MAX_PERIOD/2, mode->Fs);
if (mode->psy.decayR==NULL)
goto failure;
#endif #endif
mode->marker_start = MODEVALID;
mode->marker_end = MODEVALID;
#endif /* !STATIC_MODES */ #endif /* !STATIC_MODES */
mdct_init(&mode->mdct, 2*mode->mdctSize); mdct_init(&mode->mdct, 2*mode->mdctSize);
mode->fft = pitch_state_alloc(MAX_PERIOD); mode->fft = pitch_state_alloc(MAX_PERIOD);
@ -384,38 +424,65 @@ CELTMode *celt_mode_create(celt_int32_t Fs, int channels, int frame_size, int *e
mode->shortMdctSize = mode->mdctSize/mode->nbShortMdcts; mode->shortMdctSize = mode->mdctSize/mode->nbShortMdcts;
mdct_init(&mode->shortMdct, 2*mode->shortMdctSize); mdct_init(&mode->shortMdct, 2*mode->shortMdctSize);
mode->shortWindow = mode->window; mode->shortWindow = mode->window;
mode->prob = quant_prob_alloc(mode); mode->prob = quant_prob_alloc(mode);
if ((mode->mdct.trig==NULL) || (mode->mdct.kfft==NULL) || (mode->fft==NULL) ||
(mode->shortMdct.trig==NULL) || (mode->shortMdct.kfft==NULL) || (mode->prob==NULL))
goto failure;
mode->marker_start = MODEVALID;
mode->marker_end = MODEVALID;
if (error) if (error)
*error = CELT_OK; *error = CELT_OK;
return mode; return mode;
failure:
if (error)
*error = CELT_INVALID_MODE;
if (mode!=NULL)
celt_mode_destroy(mode);
return NULL;
} }
void celt_mode_destroy(CELTMode *mode) void celt_mode_destroy(CELTMode *mode)
{ {
if (mode == NULL)
{
celt_warning("NULL passed to celt_mode_destroy");
return;
}
if (mode->marker_start == MODEFREED || mode->marker_end == MODEFREED)
{
celt_warning("Freeing a mode which has already been freed");
return;
}
if (mode->marker_start != MODEVALID && mode->marker_start != MODEPARTIAL)
{
celt_warning("This is not a valid CELT mode structure");
return;
}
mode->marker_start = MODEFREED;
#ifndef STATIC_MODES #ifndef STATIC_MODES
int i; int i;
const celt_int16_t *prevPtr = NULL; const celt_int16_t *prevPtr = NULL;
for (i=0;i<mode->nbEBands;i++) if (mode->bits!=NULL)
{ {
if (mode->bits[i] != prevPtr) for (i=0;i<mode->nbEBands;i++)
{ {
prevPtr = mode->bits[i]; if (mode->bits[i] != prevPtr)
celt_free((int*)mode->bits[i]); {
prevPtr = mode->bits[i];
celt_free((int*)mode->bits[i]);
}
} }
} }
celt_free((int**)mode->bits); celt_free((int**)mode->bits);
if (check_mode(mode) != CELT_OK)
return;
celt_free((int*)mode->eBands); celt_free((int*)mode->eBands);
celt_free((int*)mode->pBands); celt_free((int*)mode->pBands);
celt_free((int*)mode->allocVectors); celt_free((int*)mode->allocVectors);
celt_free((celt_word16_t*)mode->window); celt_free((celt_word16_t*)mode->window);
mode->marker_start = MODEFREED;
mode->marker_end = MODEFREED;
#ifndef SHORTCUTS #ifndef SHORTCUTS
psydecay_clear(&mode->psy); psydecay_clear(&mode->psy);
#endif #endif
@ -424,11 +491,14 @@ void celt_mode_destroy(CELTMode *mode)
mdct_clear(&mode->shortMdct); mdct_clear(&mode->shortMdct);
pitch_state_free(mode->fft); pitch_state_free(mode->fft);
quant_prob_free(mode->prob); quant_prob_free(mode->prob);
mode->marker_end = MODEFREED;
celt_free((CELTMode *)mode); celt_free((CELTMode *)mode);
} }
int check_mode(const CELTMode *mode) int check_mode(const CELTMode *mode)
{ {
if (mode==NULL)
return CELT_INVALID_MODE;
if (mode->marker_start == MODEVALID && mode->marker_end == MODEVALID) if (mode->marker_start == MODEVALID && mode->marker_end == MODEVALID)
return CELT_OK; return CELT_OK;
if (mode->marker_start == MODEFREED || mode->marker_end == MODEFREED) if (mode->marker_start == MODEFREED || mode->marker_end == MODEFREED)

View file

@ -53,7 +53,9 @@ void psydecay_init(struct PsyDecay *decay, int len, celt_int32_t Fs)
{ {
int i; int i;
celt_word16_t *decayR = (celt_word16_t*)celt_alloc(sizeof(celt_word16_t)*len); celt_word16_t *decayR = (celt_word16_t*)celt_alloc(sizeof(celt_word16_t)*len);
/*decay->decayL = celt_alloc(sizeof(celt_word16_t)*len);*/ decay->decayR = decayR;
if (decayR==NULL)
return;
for (i=0;i<len;i++) for (i=0;i<len;i++)
{ {
float f; float f;
@ -70,7 +72,6 @@ void psydecay_init(struct PsyDecay *decay, int len, celt_int32_t Fs)
/*decay->decayL[i] = Q15ONE*pow(0.0031623f, deriv);*/ /*decay->decayL[i] = Q15ONE*pow(0.0031623f, deriv);*/
/*printf ("%f %f\n", decayL[i], decayR[i]);*/ /*printf ("%f %f\n", decayL[i], decayR[i]);*/
} }
decay->decayR = decayR;
} }
void psydecay_clear(struct PsyDecay *decay) void psydecay_clear(struct PsyDecay *decay)

View file

@ -104,6 +104,8 @@ int *quant_prob_alloc(const CELTMode *m)
int i; int i;
int *prob; int *prob;
prob = celt_alloc(4*m->nbEBands*sizeof(int)); prob = celt_alloc(4*m->nbEBands*sizeof(int));
if (prob==NULL)
return NULL;
for (i=0;i<m->nbEBands;i++) for (i=0;i<m->nbEBands;i++)
{ {
prob[2*i] = 6000-i*200; prob[2*i] = 6000-i*200;

View file

@ -48,10 +48,13 @@
celt_int16_t **compute_alloc_cache(CELTMode *m, int C) celt_int16_t **compute_alloc_cache(CELTMode *m, int C)
{ {
int i, prevN; int i, prevN;
int error = 0;
celt_int16_t **bits; celt_int16_t **bits;
const celt_int16_t *eBands = m->eBands; const celt_int16_t *eBands = m->eBands;
bits = celt_alloc(m->nbEBands*sizeof(celt_int16_t*)); bits = celt_alloc(m->nbEBands*sizeof(celt_int16_t*));
if (bits==NULL)
return NULL;
prevN = -1; prevN = -1;
for (i=0;i<m->nbEBands;i++) for (i=0;i<m->nbEBands;i++)
@ -62,10 +65,31 @@ celt_int16_t **compute_alloc_cache(CELTMode *m, int C)
bits[i] = bits[i-1]; bits[i] = bits[i-1];
} else { } else {
bits[i] = celt_alloc(MAX_PULSES*sizeof(celt_int16_t)); bits[i] = celt_alloc(MAX_PULSES*sizeof(celt_int16_t));
get_required_bits(bits[i], N, MAX_PULSES, BITRES); if (bits[i]!=NULL) {
get_required_bits(bits[i], N, MAX_PULSES, BITRES);
} else {
error=1;
}
prevN = N; prevN = N;
} }
} }
if (error)
{
const celt_int16_t *prevPtr = NULL;
if (bits!=NULL)
{
for (i=0;i<m->nbEBands;i++)
{
if (bits[i] != prevPtr)
{
prevPtr = bits[i];
celt_free((int*)bits[i]);
}
}
free(bits);
bits=NULL;
}
}
return bits; return bits;
} }