-
Notifications
You must be signed in to change notification settings - Fork 0
/
ape.c
260 lines (216 loc) · 5.42 KB
/
ape.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
* Copyright 2008-2013 Various Authors
* Copyright 2006 Chun-Yu Shei <cshei AT cs.indiana.edu>
*
* Cleaned up by Timo Hirvonen <tihirvon@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "ape.h"
#include "file.h"
#include "xmalloc.h"
#include "utils.h"
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <strings.h>
/* http://www.personal.uni-jena.de/~pfk/mpp/sv8/apetag.html */
#define PREAMBLE_SIZE (8)
static const char preamble[PREAMBLE_SIZE] = { 'A', 'P', 'E', 'T', 'A', 'G', 'E', 'X' };
/* NOTE: not sizeof(struct ape_header)! */
#define HEADER_SIZE (32)
/* returns position of APE header or -1 if not found */
static int find_ape_tag_slow(int fd)
{
char buf[4096];
int match = 0;
int pos = 0;
/* seek to start of file */
if (lseek(fd, pos, SEEK_SET) == -1)
return -1;
while (1) {
int i, got = read(fd, buf, sizeof(buf));
if (got == -1) {
if (errno == EAGAIN || errno == EINTR)
continue;
break;
}
if (got == 0)
break;
for (i = 0; i < got; i++) {
if (buf[i] != preamble[match]) {
match = 0;
continue;
}
match++;
if (match == PREAMBLE_SIZE)
return pos + i + 1 - PREAMBLE_SIZE;
}
pos += got;
}
return -1;
}
static int ape_parse_header(const char *buf, struct ape_header *h)
{
if (memcmp(buf, preamble, PREAMBLE_SIZE))
return 0;
h->version = read_le32(buf + 8);
h->size = read_le32(buf + 12);
h->count = read_le32(buf + 16);
h->flags = read_le32(buf + 20);
return 1;
}
static int read_header(int fd, struct ape_header *h)
{
char buf[HEADER_SIZE];
if (read_all(fd, buf, sizeof(buf)) != sizeof(buf))
return 0;
return ape_parse_header(buf, h);
}
/* sets fd right after the header and returns 1 if found,
* otherwise returns 0
*/
static int find_ape_tag(int fd, struct ape_header *h, int slow)
{
int pos;
if (lseek(fd, -HEADER_SIZE, SEEK_END) == -1)
return 0;
if (read_header(fd, h))
return 1;
if (!slow)
return 0;
pos = find_ape_tag_slow(fd);
if (pos == -1)
return 0;
if (lseek(fd, pos, SEEK_SET) == -1)
return 0;
return read_header(fd, h);
}
/*
* All keys are ASCII and length is 2..255
*
* UTF-8: Artist, Album, Title, Genre
* Integer: Track (N or N/M)
* Date: Year (release), "Record Date"
*
* UTF-8 strings are NOT zero terminated.
*
* Also support "discnumber" (vorbis) and "disc" (non-standard)
*/
static int ape_parse_one(const char *buf, int size, char **keyp, char **valp)
{
int pos = 0;
while (size - pos > 8) {
uint32_t val_len, flags;
char *key, *val;
int max_key_len, key_len;
val_len = read_le32(buf + pos); pos += 4;
flags = read_le32(buf + pos); pos += 4;
max_key_len = size - pos - val_len - 1;
if (max_key_len < 0) {
/* corrupt */
break;
}
for (key_len = 0; key_len < max_key_len && buf[pos + key_len]; key_len++)
; /* nothing */
if (buf[pos + key_len]) {
/* corrupt */
break;
}
if (!AF_IS_UTF8(flags)) {
/* ignore binary data */
pos += key_len + 1 + val_len;
continue;
}
key = xstrdup(buf + pos);
pos += key_len + 1;
/* should not be NUL-terminated */
val = xstrndup(buf + pos, val_len);
pos += val_len;
/* could be moved to comment.c but I don't think anyone else would use it */
if (!strcasecmp(key, "record date") || !strcasecmp(key, "year")) {
free(key);
key = xstrdup("date");
}
if (!strcasecmp(key, "date")) {
/* Date format
*
* 1999-08-11 12:34:56
* 1999-08-11 12:34
* 1999-08-11
* 1999-08
* 1999
* 1999-W34 (week 34, totally crazy)
*
* convert to year, pl.c supports only years anyways
*
* FIXME: which one is the most common tag (year or record date)?
*/
if (strlen(val) > 4)
val[4] = 0;
}
*keyp = key;
*valp = val;
return pos;
}
return -1;
}
static off_t get_size(int fd)
{
struct stat statbuf;
if (fstat(fd, &statbuf) || !S_ISREG(statbuf.st_mode))
return 0;
return statbuf.st_size;
}
/* return the number of comments, or -1 */
int ape_read_tags(struct apetag *ape, int fd, int slow)
{
struct ape_header *h = &ape->header;
int rc = -1;
off_t old_pos;
/* save position */
old_pos = lseek(fd, 0, SEEK_CUR);
if (!find_ape_tag(fd, h, slow))
goto fail;
if (AF_IS_FOOTER(h->flags)) {
/* seek back right after the header */
if (lseek(fd, get_size(fd) - h->size, SEEK_SET) == -1)
goto fail;
}
/* ignore insane tags */
if (h->size > 1024 * 1024)
goto fail;
ape->buf = xnew(char, h->size);
if (read_all(fd, ape->buf, h->size) != h->size)
goto fail;
rc = h->count;
fail:
lseek(fd, old_pos, SEEK_SET);
return rc;
}
/* returned key-name must be free'd */
char *ape_get_comment(struct apetag *ape, char **val)
{
struct ape_header *h = &ape->header;
char *key;
int rc;
if (ape->pos >= h->size)
return NULL;
rc = ape_parse_one(ape->buf + ape->pos, h->size - ape->pos, &key, val);
if (rc < 0)
return NULL;
ape->pos += rc;
return key;
}