Coverage Report

Created: 2024-01-26 06:35

/src/libtheora/lib/decinfo.c
Line
Count
Source (jump to first uncovered line)
1
/********************************************************************
2
 *                                                                  *
3
 * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE.   *
4
 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
5
 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6
 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
7
 *                                                                  *
8
 * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2009                *
9
 * by the Xiph.Org Foundation and contributors http://www.xiph.org/ *
10
 *                                                                  *
11
 ********************************************************************
12
13
  function:
14
    last mod: $Id$
15
16
 ********************************************************************/
17
18
#include <stdlib.h>
19
#include <string.h>
20
#include <limits.h>
21
#include "decint.h"
22
23
/*Only used for fuzzing.*/
24
#if defined(HAVE_MEMORY_CONSTRAINT)
25
static const int MAX_FUZZING_WIDTH = 16384;
26
static const int MAX_FUZZING_HEIGHT = 16384;
27
#endif
28
29
30
/*Unpacks a series of octets from a given byte array into the pack buffer.
31
  No checking is done to ensure the buffer contains enough data.
32
  _opb: The pack buffer to read the octets from.
33
  _buf: The byte array to store the unpacked bytes in.
34
  _len: The number of octets to unpack.*/
35
25.4k
static void oc_unpack_octets(oc_pack_buf *_opb,char *_buf,size_t _len){
36
279k
  while(_len-->0){
37
254k
    long val;
38
254k
    val=oc_pack_read(_opb,8);
39
254k
    *_buf++=(char)val;
40
254k
  }
41
25.4k
}
42
43
/*Unpacks a 32-bit integer encoded by octets in little-endian form.*/
44
22.3k
static long oc_unpack_length(oc_pack_buf *_opb){
45
22.3k
  long ret[4];
46
22.3k
  int  i;
47
111k
  for(i=0;i<4;i++)ret[i]=oc_pack_read(_opb,8);
48
22.3k
  return ret[0]|ret[1]<<8|ret[2]<<16|ret[3]<<24;
49
22.3k
}
50
51
1.83k
static int oc_info_unpack(oc_pack_buf *_opb,th_info *_info){
52
1.83k
  long val;
53
  /*Check the codec bitstream version.*/
54
1.83k
  val=oc_pack_read(_opb,8);
55
1.83k
  _info->version_major=(unsigned char)val;
56
1.83k
  val=oc_pack_read(_opb,8);
57
1.83k
  _info->version_minor=(unsigned char)val;
58
1.83k
  val=oc_pack_read(_opb,8);
59
1.83k
  _info->version_subminor=(unsigned char)val;
60
  /*verify we can parse this bitstream version.
61
     We accept earlier minors and all subminors, by spec*/
62
1.83k
  if(_info->version_major>TH_VERSION_MAJOR||
63
1.83k
   (_info->version_major==TH_VERSION_MAJOR&&
64
1.82k
   _info->version_minor>TH_VERSION_MINOR)){
65
14
    return TH_EVERSION;
66
14
  }
67
  /*Read the encoded frame description.*/
68
1.82k
  val=oc_pack_read(_opb,16);
69
1.82k
  _info->frame_width=(ogg_uint32_t)val<<4;
70
1.82k
  val=oc_pack_read(_opb,16);
71
1.82k
  _info->frame_height=(ogg_uint32_t)val<<4;
72
1.82k
  val=oc_pack_read(_opb,24);
73
1.82k
  _info->pic_width=(ogg_uint32_t)val;
74
1.82k
  val=oc_pack_read(_opb,24);
75
1.82k
  _info->pic_height=(ogg_uint32_t)val;
76
1.82k
  val=oc_pack_read(_opb,8);
77
1.82k
  _info->pic_x=(ogg_uint32_t)val;
78
1.82k
  val=oc_pack_read(_opb,8);
79
1.82k
  _info->pic_y=(ogg_uint32_t)val;
80
1.82k
  val=oc_pack_read(_opb,32);
81
1.82k
  _info->fps_numerator=(ogg_uint32_t)val;
82
1.82k
  val=oc_pack_read(_opb,32);
83
1.82k
  _info->fps_denominator=(ogg_uint32_t)val;
84
1.82k
  if(_info->frame_width==0||_info->frame_height==0||
85
1.82k
   _info->pic_width+_info->pic_x>_info->frame_width||
86
1.82k
   _info->pic_height+_info->pic_y>_info->frame_height||
87
1.82k
   _info->fps_numerator==0||_info->fps_denominator==0){
88
105
    return TH_EBADHEADER;
89
105
  }
90
#if defined(HAVE_MEMORY_CONSTRAINT)
91
  if(_info->frame_width>=MAX_FUZZING_WIDTH&&_info->frame_height>=MAX_FUZZING_HEIGHT){
92
    return TH_EBADHEADER;
93
  }
94
#endif
95
  /*Note: The sense of pic_y is inverted in what we pass back to the
96
     application compared to how it is stored in the bitstream.
97
    This is because the bitstream uses a right-handed coordinate system, while
98
     applications expect a left-handed one.*/
99
1.71k
  _info->pic_y=_info->frame_height-_info->pic_height-_info->pic_y;
100
1.71k
  val=oc_pack_read(_opb,24);
101
1.71k
  _info->aspect_numerator=(ogg_uint32_t)val;
102
1.71k
  val=oc_pack_read(_opb,24);
103
1.71k
  _info->aspect_denominator=(ogg_uint32_t)val;
104
1.71k
  val=oc_pack_read(_opb,8);
105
1.71k
  _info->colorspace=(th_colorspace)val;
106
1.71k
  val=oc_pack_read(_opb,24);
107
1.71k
  _info->target_bitrate=(int)val;
108
1.71k
  val=oc_pack_read(_opb,6);
109
1.71k
  _info->quality=(int)val;
110
1.71k
  val=oc_pack_read(_opb,5);
111
1.71k
  _info->keyframe_granule_shift=(int)val;
112
1.71k
  val=oc_pack_read(_opb,2);
113
1.71k
  _info->pixel_fmt=(th_pixel_fmt)val;
114
1.71k
  if(_info->pixel_fmt==TH_PF_RSVD)return TH_EBADHEADER;
115
1.71k
  val=oc_pack_read(_opb,3);
116
1.71k
  if(val!=0||oc_pack_bytes_left(_opb)<0)return TH_EBADHEADER;
117
1.65k
  return 0;
118
1.71k
}
119
120
1.58k
static int oc_comment_unpack(oc_pack_buf *_opb,th_comment *_tc){
121
1.58k
  long len;
122
1.58k
  int  i;
123
  /*Read the vendor string.*/
124
1.58k
  len=oc_unpack_length(_opb);
125
1.58k
  if(len<0||len>oc_pack_bytes_left(_opb))return TH_EBADHEADER;
126
1.51k
  _tc->vendor=_ogg_malloc((size_t)len+1);
127
1.51k
  if(_tc->vendor==NULL)return TH_EFAULT;
128
1.51k
  oc_unpack_octets(_opb,_tc->vendor,len);
129
1.51k
  _tc->vendor[len]='\0';
130
  /*Read the user comments.*/
131
1.51k
  _tc->comments=(int)oc_unpack_length(_opb);
132
1.51k
  len=_tc->comments;
133
1.51k
  if(len<0||len>(LONG_MAX>>2)||len<<2>oc_pack_bytes_left(_opb)){
134
120
    _tc->comments=0;
135
120
    return TH_EBADHEADER;
136
120
  }
137
1.39k
  _tc->comment_lengths=(int *)_ogg_malloc(
138
1.39k
   _tc->comments*sizeof(_tc->comment_lengths[0]));
139
1.39k
  _tc->user_comments=(char **)_ogg_malloc(
140
1.39k
   _tc->comments*sizeof(_tc->user_comments[0]));
141
1.39k
  if(_tc->comment_lengths==NULL||_tc->user_comments==NULL){
142
0
    _tc->comments=0;
143
0
    return TH_EFAULT;
144
0
  }
145
20.5k
  for(i=0;i<_tc->comments;i++){
146
19.2k
    len=oc_unpack_length(_opb);
147
19.2k
    if(len<0||len>oc_pack_bytes_left(_opb)){
148
98
      _tc->comments=i;
149
98
      return TH_EBADHEADER;
150
98
    }
151
19.1k
    _tc->comment_lengths[i]=len;
152
19.1k
    _tc->user_comments[i]=_ogg_malloc((size_t)len+1);
153
19.1k
    if(_tc->user_comments[i]==NULL){
154
0
      _tc->comments=i;
155
0
      return TH_EFAULT;
156
0
    }
157
19.1k
    oc_unpack_octets(_opb,_tc->user_comments[i],len);
158
19.1k
    _tc->user_comments[i][len]='\0';
159
19.1k
  }
160
1.29k
  return oc_pack_bytes_left(_opb)<0?TH_EBADHEADER:0;
161
1.39k
}
162
163
1.26k
static int oc_setup_unpack(oc_pack_buf *_opb,th_setup_info *_setup){
164
1.26k
  int ret;
165
  /*Read the quantizer tables.*/
166
1.26k
  ret=oc_quant_params_unpack(_opb,&_setup->qinfo);
167
1.26k
  if(ret<0)return ret;
168
  /*Read the Huffman trees.*/
169
1.25k
  return oc_huff_trees_unpack(_opb,_setup->huff_tables);
170
1.26k
}
171
172
1.26k
static void oc_setup_clear(th_setup_info *_setup){
173
1.26k
  oc_quant_params_clear(&_setup->qinfo);
174
1.26k
  oc_huff_trees_clear(_setup->huff_tables);
175
1.26k
}
176
177
static int oc_dec_headerin(oc_pack_buf *_opb,th_info *_info,
178
4.80k
 th_comment *_tc,th_setup_info **_setup,ogg_packet *_op){
179
4.80k
  char buffer[6];
180
4.80k
  long val;
181
4.80k
  int  packtype;
182
4.80k
  int  ret;
183
4.80k
  val=oc_pack_read(_opb,8);
184
4.80k
  packtype=(int)val;
185
  /*If we're at a data packet...*/
186
4.80k
  if(!(packtype&0x80)){
187
    /*Check to make sure we received all three headers...
188
      If we haven't seen any valid headers, assume this is not actually
189
       Theora.*/
190
38
    if(_info->frame_width<=0)return TH_ENOTFORMAT;
191
    /*Follow our documentation, which says we'll return TH_EFAULT if this
192
       are NULL (_info was checked by our caller).*/
193
20
    if(_tc==NULL)return TH_EFAULT;
194
    /*And if any other headers were missing, declare this packet "out of
195
       sequence" instead.*/
196
20
    if(_tc->vendor==NULL)return TH_EBADHEADER;
197
    /*Don't check this until it's needed, since we allow passing NULL for the
198
       arguments that we're not expecting the next header to fill in yet.*/
199
3
    if(_setup==NULL)return TH_EFAULT;
200
3
    if(*_setup==NULL)return TH_EBADHEADER;
201
    /*If we got everything, we're done.*/
202
0
    return 0;
203
3
  }
204
  /*Check the codec string.*/
205
4.77k
  oc_unpack_octets(_opb,buffer,6);
206
4.77k
  if(memcmp(buffer,"theora",6)!=0)return TH_ENOTFORMAT;
207
4.72k
  switch(packtype){
208
    /*Codec info header.*/
209
1.84k
    case 0x80:{
210
      /*This should be the first packet, and we should not already be
211
         initialized.*/
212
1.84k
      if(!_op->b_o_s||_info->frame_width>0)return TH_EBADHEADER;
213
1.83k
      ret=oc_info_unpack(_opb,_info);
214
1.83k
      if(ret<0)th_info_clear(_info);
215
1.65k
      else ret=3;
216
1.83k
    }break;
217
    /*Comment header.*/
218
1.59k
    case 0x81:{
219
1.59k
      if(_tc==NULL)return TH_EFAULT;
220
      /*We shoud have already decoded the info header, and should not yet have
221
         decoded the comment header.*/
222
1.59k
      if(_info->frame_width==0||_tc->vendor!=NULL)return TH_EBADHEADER;
223
1.58k
      ret=oc_comment_unpack(_opb,_tc);
224
1.58k
      if(ret<0)th_comment_clear(_tc);
225
1.29k
      else ret=2;
226
1.58k
    }break;
227
    /*Codec setup header.*/
228
1.27k
    case 0x82:{
229
1.27k
      oc_setup_info *setup;
230
1.27k
      if(_tc==NULL||_setup==NULL)return TH_EFAULT;
231
      /*We should have already decoded the info header and the comment header,
232
         and should not yet have decoded the setup header.*/
233
1.27k
      if(_info->frame_width==0||_tc->vendor==NULL||*_setup!=NULL){
234
13
        return TH_EBADHEADER;
235
13
      }
236
1.26k
      setup=(oc_setup_info *)_ogg_calloc(1,sizeof(*setup));
237
1.26k
      if(setup==NULL)return TH_EFAULT;
238
1.26k
      ret=oc_setup_unpack(_opb,setup);
239
1.26k
      if(ret<0){
240
172
        oc_setup_clear(setup);
241
172
        _ogg_free(setup);
242
172
      }
243
1.09k
      else{
244
1.09k
        *_setup=setup;
245
1.09k
        ret=1;
246
1.09k
      }
247
1.26k
    }break;
248
2
    default:{
249
      /*We don't know what this header is.*/
250
2
      return TH_EBADHEADER;
251
1.26k
    }break;
252
4.72k
  }
253
4.69k
  return ret;
254
4.72k
}
255
256
257
/*Decodes one header packet.
258
  This should be called repeatedly with the packets at the beginning of the
259
   stream until it returns 0.*/
260
int th_decode_headerin(th_info *_info,th_comment *_tc,
261
4.80k
 th_setup_info **_setup,ogg_packet *_op){
262
4.80k
  oc_pack_buf opb;
263
4.80k
  if(_op==NULL)return TH_EBADHEADER;
264
4.80k
  if(_info==NULL)return TH_EFAULT;
265
4.80k
  oc_pack_readinit(&opb,_op->packet,_op->bytes);
266
4.80k
  return oc_dec_headerin(&opb,_info,_tc,_setup,_op);
267
4.80k
}
268
269
1.09k
void th_setup_free(th_setup_info *_setup){
270
1.09k
  if(_setup!=NULL){
271
1.09k
    oc_setup_clear(_setup);
272
1.09k
    _ogg_free(_setup);
273
1.09k
  }
274
1.09k
}