2 * Copyright (C) 2003-2010 The Music Player Daemon Project
3 * http://www.musicpd.org
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "config.h" /* must be first for large file support */
26 #include <sys/types.h>
33 #define G_LOG_DOMAIN "riff"
41 struct riff_chunk_header
{
47 riff_seek_id3(FILE *file
)
51 struct riff_header header
;
52 struct riff_chunk_header chunk
;
55 /* determine the file size */
57 ret
= fstat(fileno(file
), &st
);
59 g_warning("Failed to stat file descriptor: %s",
64 /* seek to the beginning and read the RIFF header */
66 ret
= fseek(file
, 0, SEEK_SET
);
68 g_warning("Failed to seek: %s", g_strerror(errno
));
72 size
= fread(&header
, sizeof(header
), 1, file
);
74 memcmp(header
.id
, "RIFF", 4) != 0 ||
75 GUINT32_FROM_LE(header
.size
) > (uint32_t)st
.st_size
)
80 /* read the chunk header */
82 size
= fread(&chunk
, sizeof(chunk
), 1, file
);
86 size
= GUINT32_FROM_LE(chunk
.size
);
87 if (size
> G_MAXINT32
)
88 /* too dangerous, bail out: possible integer
89 underflow when casting to off_t */
96 if (memcmp(chunk
.id
, "id3 ", 4) == 0)
100 ret
= fseek(file
, size
, SEEK_CUR
);