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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
|
/* $OpenBSD: rip.c,v 1.8 2008/06/30 23:35:39 av Exp $ */
/*
* Copyright (c) 2007 Alexey Vatchenko <av@bsdua.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/signal.h>
#include <sys/device.h>
#include <sys/audioio.h>
#include <sys/cdio.h>
#include <sys/ioctl.h>
#include <sys/scsiio.h>
#include <sys/stat.h>
#include <scsi/scsi_all.h>
#include <scsi/scsi_disk.h>
#include <scsi/scsiconf.h>
#include <scsi/cd.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
extern int fd;
extern int msf;
extern struct cd_toc_entry *toc_buffer;
extern u_int msf2lba(u_char m, u_char s, u_char f);
extern int read_toc_entrys(int size);
/*
* Arguments parser
*/
TAILQ_HEAD(track_pair_head, track_pair);
static int _parse_val(char *start, char *nxt, int *val);
static int _parse_pair(char *start, char *nxt, int *val1, int *val2);
static int _add_pair(struct track_pair_head *head, int val1, int val2,
int issorted);
struct track_pair {
u_char start;
u_char end;
TAILQ_ENTRY(track_pair) list;
};
void parse_tracks_init(struct track_pair_head *head);
void parse_tracks_final(struct track_pair_head *head);
int parse_tracks(struct track_pair_head *head, u_char first, u_char last,
const char *arg, int issorted);
int parse_tracks_add(struct track_pair_head *head, u_char first,
u_char last, int issorted);
/*
* Tracks ripping
*/
/* Header of the canonical WAVE file */
static u_char wavehdr[44] = {
'R', 'I', 'F', 'F', 0x0, 0x0, 0x0, 0x0, 'W', 'A', 'V', 'E',
'f', 'm', 't', ' ', 0x10, 0x0, 0x0, 0x0, 0x1, 0x0, 0x2, 0x0,
0x44, 0xac, 0x0, 0x0, 0x10, 0xb1, 0x2, 0x0, 0x4, 0x0, 0x10, 0x0,
'd', 'a', 't', 'a', 0x0, 0x0, 0x0, 0x0
};
static int write_sector(int, u_char *, u_int32_t);
int read_data_sector(u_int32_t, u_char *, u_int32_t);
struct track_info {
int fd; /* descriptor of output file */
u_int track; /* track number */
char name[12]; /* output file name, i.e. trackXX.wav/trackXX.dat */
u_char isaudio; /* true if audio track, otherwise it's data track */
u_int32_t start_lba; /* starting address of this track */
u_int32_t end_lba; /* starting address of the next track */
};
int read_track(int, struct track_info *);
int rip_next_track(struct track_info *);
int play_next_track(struct track_info *);
static int rip_tracks_loop(struct track_pair *tp, u_int n_tracks,
int (*next_track)(struct track_info *));
int rip_tracks(char *arg, int (*next_track)(struct track_info *),
int issorted);
/* Next-Track function exit codes */
#define NXTRACK_OK 0
#define NXTRACK_FAIL 1
#define NXTRACK_SKIP 2
static int
_parse_val(char *start, char *nxt, int *val)
{
char *p;
int i, base, n;
n = nxt - start;
if (n > 3 || n < 1)
return (-1);
for (p = start; p < nxt; p++) {
if (!isdigit(*p))
return (-1);
}
*val = 0;
base = 1;
for (i = 0; i < n; i++) {
*val += base * (start[n - i - 1] - '0');
base *= 10;
}
return (0);
}
static int
_parse_pair(char *start, char *nxt, int *val1, int *val2)
{
char *p, *delim;
int error;
delim = NULL;
p = start;
while (p < nxt) {
if (*p == '-')
delim = p;
p++;
}
if (delim != NULL) {
error = 0;
if (delim - start < 1)
*val1 = -1;
else
error = _parse_val(start, delim, val1);
if (error == 0) {
if ((nxt - delim - 1) < 1)
*val2 = -1;
else
error = _parse_val(delim + 1, nxt, val2);
}
} else {
error = _parse_val(start, nxt, val1);
*val2 = *val1;
}
if (error == 0) {
if (*val1 > 99 || *val2 > 99)
error = -1;
}
return (error);
}
static int
_add_pair(struct track_pair_head *head, int val1, int val2, int issorted)
{
u_char v1, v2, v3;
struct track_pair *tp, *entry;
int fix;
v1 = (u_char)val1;
v2 = (u_char)val2;
if (issorted) {
/* 1. Fix order */
if (v1 > v2) {
v3 = v1;
v1 = v2;
v2 = v3;
}
/* 2. Find closest range and fix it */
fix = 0;
TAILQ_FOREACH(entry, head, list) {
if (v1 + 1 == entry->start || v1 == entry->start)
fix = 1;
else if (v1 > entry->start && v1 <= entry->end + 1)
fix = 1;
else if (v2 + 1 == entry->start || v2 == entry->start)
fix = 1;
else if (v2 > entry->start && v2 <= entry->end + 1)
fix = 1;
if (fix)
break;
}
if (fix) {
if (v1 < entry->start)
entry->start = v1;
if (v2 > entry->end)
entry->end = v2;
return (0);
}
}
tp = (struct track_pair *)malloc(sizeof(*tp));
if (tp == NULL)
return (-1);
tp->start = v1;
tp->end = v2;
TAILQ_INSERT_TAIL(head, tp, list);
return (0);
}
void
parse_tracks_init(struct track_pair_head *head)
{
memset(head, 0, sizeof(*head));
TAILQ_INIT(head);
}
void
parse_tracks_final(struct track_pair_head *head)
{
struct track_pair *tp;
while ((tp = TAILQ_FIRST(head)) != TAILQ_END(head)) {
TAILQ_REMOVE(head, tp, list);
free(tp);
}
}
int
parse_tracks(struct track_pair_head *head, u_char first, u_char last,
const char *arg, int issorted)
{
char *p, *nxt;
int error, val1, val2;
p = (char *)arg;
for (;;) {
/* Skip trailing spaces */
while (*p != '\0' && isspace(*p))
++p;
if (*p == '\0')
break;
/* Search for the next space symbol */
nxt = p;
while (*nxt != '\0' && !isspace(*nxt))
++nxt;
/* ``nxt'' can't be equal to ``p'' here */
error = _parse_pair(p, nxt, &val1, &val2);
if (error != 0)
break; /* parse error */
if (val1 == -1)
val1 = first;
if (val2 == -1)
val2 = last;
error = _add_pair(head, val1, val2, issorted);
if (error != 0)
break; /* allocation error */
p = nxt;
}
return (0);
}
int
parse_tracks_add(struct track_pair_head *head, u_char first, u_char last,
int issorted)
{
return _add_pair(head, first, last, issorted);
}
static int
write_sector(int fd, u_char *sec, u_int32_t secsize)
{
ssize_t res;
while (secsize > 0) {
res = write(fd, sec, secsize);
if (res < 0)
return (-1);
sec += res;
secsize -= res;
}
return (0);
}
/*
* ERRORS
* The function can return
* [EBUSY] Device is busy.
* [ETIMEDOUT] Operation timeout.
* [EIO] Any other errors.
* [EAGAIN] The operation must be made again. XXX - not implemented
*/
int
read_data_sector(u_int32_t lba, u_char *sec, u_int32_t secsize)
{
scsireq_t scr;
u_char *cmd;
int error;
memset(&scr, 0, sizeof(scr));
cmd = (u_char *)scr.cmd;
cmd[0] = 0xbe; /* READ CD */
_lto4b(lba, cmd + 2); /* Starting Logical Block Address */
_lto3b(1, cmd + 6); /* Transfer Length in Blocks */
cmd[9] = 0x10; /* User Data field */
scr.flags = SCCMD_ESCAPE | SCCMD_READ;
scr.databuf = sec;
scr.datalen = secsize;
scr.cmdlen = 12;
scr.timeout = 120000;
scr.senselen = SENSEBUFLEN;
/* XXX - what's wrong with DVD? */
error = ioctl(fd, SCIOCCOMMAND, &scr);
if (error == -1)
return (EIO);
else if (scr.retsts == SCCMD_BUSY)
return (EBUSY);
else if (scr.retsts == SCCMD_TIMEOUT)
return (ETIMEDOUT);
else if (scr.retsts != SCCMD_OK)
return (EIO);
return (0);
}
int
read_track(int fd, struct track_info *ti)
{
struct timeval tv, otv, atv;
u_int32_t i, blksize, n_sec;
u_char *sec;
int error;
n_sec = ti->end_lba - ti->start_lba;
blksize = (ti->isaudio) ? 2352 : 2048;
sec = (u_char *)malloc(blksize);
if (sec == NULL)
return (-1);
timerclear(&otv);
atv.tv_sec = 1;
atv.tv_usec = 0;
for (i = 0; i < n_sec; ) {
gettimeofday(&tv, NULL);
if (timercmp(&tv, &otv, >)) {
fprintf(stderr, "\rtrack %u '%c' %08u/%08u %3u%%",
ti->track,
(ti->isaudio) ? 'a' : 'd', i, n_sec,
100 * i / n_sec);
timeradd(&tv, &atv, &otv);
}
error = read_data_sector(i + ti->start_lba, sec, blksize);
if (error == 0) {
if (write_sector(ti->fd, sec, blksize) != 0) {
free(sec);
warnx("\nerror while writing to the %s file",
ti->name);
return (-1);
}
i++;
} else if (error != EAGAIN) {
free(sec);
warnx("\nerror while reading from device");
return (-1);
}
}
free(sec);
fprintf(stderr, "\rtrack %u '%c' %08u/%08u 100%%\n",
ti->track,
(ti->isaudio) ? 'a' : 'd', i, n_sec);
return (0);
}
int
rip_next_track(struct track_info *info)
{
int error;
u_int32_t size;
info->fd = open(info->name, O_CREAT | O_TRUNC | O_RDWR,
S_IRUSR | S_IWUSR);
if (info->fd == -1) {
warnx("can't open %s file", info->name);
return (NXTRACK_FAIL);
}
if (info->isaudio) {
/*
* Prepend audio track with Wave header
*/
size = 2352 * (info->end_lba - info->start_lba);
*(u_int32_t *)(wavehdr + 4) = htole32(size + 36);
*(u_int32_t *)(wavehdr + 40) = htole32(size);
error = write_sector(info->fd, wavehdr, sizeof(wavehdr));
if (error == -1) {
warnx("can't write WAVE header for %s file",
info->name);
return (NXTRACK_FAIL);
}
}
return (NXTRACK_OK);
}
int
play_next_track(struct track_info *info)
{
int fd, error;
audio_info_t ai;
if (!info->isaudio)
return (NXTRACK_SKIP);
info->fd = open("/dev/audio", O_CREAT | O_TRUNC | O_RDWR,
S_IRUSR | S_IWUSR);
if (info->fd == -1) {
warnx("can't open /dev/audio");
return (NXTRACK_FAIL);
}
fd = open("/dev/audioctl", O_RDWR);
if (fd != -1) {
AUDIO_INITINFO(&ai);
ai.play.sample_rate = 44100;
ai.play.channels = 2;
ai.play.precision = 16;
ai.play.encoding = AUDIO_ENCODING_SLINEAR_LE;
error = ioctl(fd, AUDIO_SETINFO, &ai);
close(fd);
} else
error = -1;
if (error == -1) {
warnx("can't configure audio device");
close(info->fd);
info->fd = -1;
return (NXTRACK_FAIL);
}
return (NXTRACK_OK);
}
static int
rip_tracks_loop(struct track_pair *tp, u_int n_tracks,
int (*next_track)(struct track_info *))
{
struct track_info info;
u_char trk;
u_int i;
char order;
int error;
order = (tp->start > tp->end) ? -1 : 1;
trk = tp->start;
for (;;) {
error = 0;
for (i = 0; i < n_tracks; i++) {
if (trk == toc_buffer[i].track)
break;
}
if (i != n_tracks) {
/* Track is found */
info.track = toc_buffer[i].track;
info.isaudio = (toc_buffer[i].control & 4) == 0;
snprintf(info.name, sizeof(info.name), "track%02u.%s",
toc_buffer[i].track,
(info.isaudio) ? "wav" : "dat");
if (msf) {
info.start_lba = msf2lba(
toc_buffer[i].addr.msf.minute,
toc_buffer[i].addr.msf.second,
toc_buffer[i].addr.msf.frame);
info.end_lba = msf2lba(
toc_buffer[i + 1].addr.msf.minute,
toc_buffer[i + 1].addr.msf.second,
toc_buffer[i + 1].addr.msf.frame);
} else {
info.start_lba = toc_buffer[i].addr.lba;
info.end_lba = toc_buffer[i + 1].addr.lba;
}
error = next_track(&info);
if (error == NXTRACK_FAIL) {
error = -1;
break;
} else if (error != NXTRACK_SKIP) {
error = read_track(fd, &info);
close(info.fd);
if (error != 0) {
warnx("can't rip %u track",
toc_buffer[i].track);
break;
}
}
}
if (trk == tp->end)
break;
trk += order;
}
return (error);
}
int
rip_tracks(char *arg, int (*next_track)(struct track_info *), int issorted)
{
struct track_pair_head list;
struct track_pair *tp;
struct ioc_toc_header h;
u_int n;
int rc;
rc = ioctl(fd, CDIOREADTOCHEADER, &h);
if (rc < 0)
return (rc);
if (h.starting_track > h.ending_track) {
warnx("TOC starting_track > TOC ending_track");
return (0);
}
n = h.ending_track - h.starting_track + 1;
rc = read_toc_entrys((n + 1) * sizeof(struct cd_toc_entry));
if (rc < 0)
return (rc);
parse_tracks_init(&list);
/* We assume that all spaces are skipped in ``arg''. */
if (arg == NULL || *arg == '\0') {
rc = parse_tracks_add(&list, h.starting_track, h.ending_track,
0);
} else {
rc = parse_tracks(&list, h.starting_track, h.ending_track, arg,
issorted);
}
if (rc < 0) {
warnx("can't create track list");
parse_tracks_final(&list);
return (rc);
}
TAILQ_FOREACH(tp, &list, list) {
rc = rip_tracks_loop(tp, n, next_track);
if (rc < 0)
break;
}
parse_tracks_final(&list);
return (0);
}
int
cdrip(char *arg)
{
return rip_tracks(arg, rip_next_track, 1);
}
int
cdplay(char *arg)
{
return rip_tracks(arg, play_next_track, 0);
}
|