libavformat/apetag.c
191e34cd
 /*
  * APE tag handling
  * Copyright (c) 2007 Benjamin Zores <ben@geexbox.org>
  *  based upon libdemac from Dave Chapman.
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include "libavutil/intreadwrite.h"
d2d67e42
 #include "libavutil/dict.h"
191e34cd
 #include "avformat.h"
c53ffb2c
 #include "apetag.h"
191e34cd
 
 #define APE_TAG_VERSION               2000
 #define APE_TAG_FOOTER_BYTES          32
 #define APE_TAG_FLAG_CONTAINS_HEADER  (1 << 31)
 #define APE_TAG_FLAG_IS_HEADER        (1 << 29)
 
 static int ape_tag_read_field(AVFormatContext *s)
 {
471fe57e
     AVIOContext *pb = s->pb;
12ad6671
     uint8_t key[1024], *value;
e65ab9d9
     uint32_t size;
18a49f11
     int i, c;
191e34cd
 
e63a3628
     size = avio_rl32(pb);  /* field size */
e65ab9d9
     avio_skip(pb, 4);      /* field flags */
191e34cd
     for (i = 0; i < sizeof(key) - 1; i++) {
e63a3628
         c = avio_r8(pb);
191e34cd
         if (c < 0x20 || c > 0x7E)
             break;
         else
             key[i] = c;
     }
     key[i] = 0;
     if (c != 0) {
         av_log(s, AV_LOG_WARNING, "Invalid APE tag key '%s'.\n", key);
         return -1;
     }
12ad6671
     if (size >= UINT_MAX)
         return -1;
     value = av_malloc(size+1);
     if (!value)
2874c81c
         return AVERROR(ENOMEM);
e63a3628
     avio_read(pb, value, size);
12ad6671
     value[size] = 0;
d2d67e42
     av_dict_set(&s->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
191e34cd
     return 0;
 }
 
 void ff_ape_parse_tag(AVFormatContext *s)
 {
471fe57e
     AVIOContext *pb = s->pb;
db44ea96
     int file_size = avio_size(pb);
191e34cd
     uint32_t val, fields, tag_bytes;
     uint8_t buf[8];
     int i;
 
     if (file_size < APE_TAG_FOOTER_BYTES)
         return;
 
f59d8ff8
     avio_seek(pb, file_size - APE_TAG_FOOTER_BYTES, SEEK_SET);
191e34cd
 
e63a3628
     avio_read(pb, buf, 8);     /* APETAGEX */
191e34cd
     if (strncmp(buf, "APETAGEX", 8)) {
         return;
     }
 
e63a3628
     val = avio_rl32(pb);       /* APE tag version */
191e34cd
     if (val > APE_TAG_VERSION) {
         av_log(s, AV_LOG_ERROR, "Unsupported tag version. (>=%d)\n", APE_TAG_VERSION);
         return;
     }
 
e63a3628
     tag_bytes = avio_rl32(pb); /* tag size */
191e34cd
     if (tag_bytes - APE_TAG_FOOTER_BYTES > (1024 * 1024 * 16)) {
         av_log(s, AV_LOG_ERROR, "Tag size is way too big\n");
         return;
     }
 
e63a3628
     fields = avio_rl32(pb);    /* number of fields */
191e34cd
     if (fields > 65536) {
         av_log(s, AV_LOG_ERROR, "Too many tag fields (%d)\n", fields);
         return;
     }
 
e63a3628
     val = avio_rl32(pb);       /* flags */
191e34cd
     if (val & APE_TAG_FLAG_IS_HEADER) {
         av_log(s, AV_LOG_ERROR, "APE Tag is a header\n");
         return;
     }
 
f59d8ff8
     avio_seek(pb, file_size - tag_bytes, SEEK_SET);
191e34cd
 
     for (i=0; i<fields; i++)
         if (ape_tag_read_field(s) < 0) break;
 }