Search
lxdream.org :: lxdream/src/gdrom/nrg.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/gdrom/nrg.c
changeset 342:850502f0e8de
prev168:203a72138e16
next422:61a0598e07ff
author nkeynes
date Wed Sep 19 12:09:33 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Add a 'translate and run' method for running uncached code
view annotate diff log raw
     1 /**
     2  * $Id: nrg.c,v 1.4 2007-01-31 10:58:42 nkeynes Exp $
     3  *
     4  * Nero (NRG) CD file format. File information stolen shamelessly from
     5  * libcdio.
     6  *
     7  * Copyright (c) 2005 Nathan Keynes.
     8  *
     9  * This program is free software; you can redistribute it and/or modify
    10  * it under the terms of the GNU General Public License as published by
    11  * the Free Software Foundation; either version 2 of the License, or
    12  * (at your option) any later version.
    13  *
    14  * This program is distributed in the hope that it will be useful,
    15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    17  * GNU General Public License for more details.
    18  */
    20 #include <assert.h>
    21 #include <stdio.h>
    22 #include <errno.h>
    23 #include "gdrom/gdrom.h"
    24 #include "dream.h"
    26 static gboolean nrg_image_is_valid( FILE *f );
    27 static gdrom_disc_t nrg_image_open( const gchar *filename, FILE *f );
    29 struct gdrom_image_class nrg_image_class = { "Nero", "nrg", 
    30 					     nrg_image_is_valid, nrg_image_open };
    32 #define NERO_V55_ID  0x4e455235 
    33 #define NERO_V50_ID  0x4e45524f 
    35 /* Courtesy of libcdio */
    36 /* 5.0 or earlier */
    37 #define NERO_ID  0x4e45524f  /* Nero pre 5.5.x */
    38 #define CUES_ID  0x43554553  /* Nero pre version 5.5.x-6.x */
    39 #define DAOI_ID  0x44414f49
    40 #define ETNF_ID  0x45544e46
    41 #define SINF_ID  0x53494e46  /* Session information */
    42 #define END_ID  0x454e4421
    43 /* 5.5+ only */
    44 #define NER5_ID  0x4e455235  /* Nero version 5.5.x */
    45 #define CDTX_ID  0x43445458  /* CD TEXT */
    46 #define CUEX_ID  0x43554558  /* Nero version 5.5.x-6.x */
    47 #define DAOX_ID  0x44414f58  /* Nero version 5.5.x-6.x */
    48 #define ETN2_ID  0x45544e32
    49 #define MTYP_ID  0x4d545950  /* Disc Media type? */
    52 union nrg_footer {
    53     struct nrg_footer_v50 {
    54 	uint32_t dummy;
    55 	uint32_t id;
    56 	uint32_t offset;
    57     } v50;
    58     struct nrg_footer_v55 {
    59 	uint32_t id;
    60 	uint64_t offset;
    61     } v55;
    62 };
    64 struct nrg_chunk {
    65     uint32_t id;
    66     uint32_t length;
    67 };
    69 struct nrg_etnf {
    70     uint32_t offset;
    71     uint32_t length;
    72     uint32_t mode;
    73     uint32_t lba;
    74     uint32_t padding;
    75 };
    77 struct nrg_cues {
    78     uint8_t type;
    79     uint8_t track;
    80     uint8_t control;
    81     uint8_t pad;
    82     uint32_t addr;
    83 };
    85 struct nrg_daoi {
    86     uint32_t length;
    87     char mcn[14];
    88     uint8_t disc_mode;
    89     uint8_t unknown[2]; /* always 01 01? */
    90     uint8_t track_count;
    91     struct nrg_daoi_track {
    92 	char unknown[10];
    93 	uint32_t sector_size __attribute__((packed)); /* Always 0? */
    94 	uint8_t mode;
    95 	uint8_t unknown2[3]; /* Always 00 00 01? */
    96 	uint32_t pregap __attribute__((packed));
    97 	uint32_t offset __attribute__((packed));
    98 	uint32_t end __attribute__((packed));
    99     } track[0];
   100 } __attribute__((packed));
   102 /**
   103  * Convert an 8-bit BCD number to normal integer form. 
   104  * Eg, 0x79 => 79
   105  */
   106 uint8_t static bcd_to_uint8( uint8_t bcd )
   107 {
   108     return (bcd & 0x0F) + (((bcd & 0xF0)>>4)*10);
   109 }
   112 /**
   113  * Convert a 32 bit MSF address (BCD coded) to the
   114  * equivalent LBA form. 
   115  * Eg, 0x
   116  */
   117 uint32_t static msf_to_lba( uint32_t msf )
   118 {
   119     msf = ntohl(msf);
   120     int f = bcd_to_uint8(msf);
   121     int s = bcd_to_uint8(msf>>8);
   122     int m = bcd_to_uint8(msf>>16);
   123     return (m * 60 + s) * 75 + f;
   125 }
   127 uint32_t static nrg_track_mode( uint8_t mode )
   128 {
   129     switch( mode ) {
   130     case 0: return GDROM_MODE1;
   131     case 2: return GDROM_MODE2_XA1;
   132     case 3: return GDROM_MODE2;
   133     case 7: return GDROM_CDDA;
   134     default: 
   135 	ERROR( "Unrecognized track mode %d in Nero image", mode );
   136 	return -1;
   137     }
   138 }
   140 static gboolean nrg_image_is_valid( FILE *f )
   141 {
   142     union nrg_footer footer;
   144     fseek( f, -12, SEEK_END );
   145     fread( &footer, sizeof(footer), 1, f );
   146     if( ntohl(footer.v50.id) == NERO_V50_ID ) {
   147 	return TRUE;
   148     } else {
   149 	return FALSE;
   150     }
   151 }
   153 static gdrom_disc_t nrg_image_open( const gchar *filename, FILE *f )
   154 {
   155     union nrg_footer footer;
   156     struct nrg_chunk chunk;
   157     struct nrg_daoi *dao;
   158     gdrom_disc_t disc;
   159     gdrom_image_t image;
   160     gboolean end = FALSE;
   161     int session_id = 0;
   162     int session_track_id = 0;
   163     int track_id = 0;
   164     int cue_track_id = 0, cue_track_count = 0;
   165     int i;
   167     fseek( f, -12, SEEK_END );
   168     fread( &footer, sizeof(footer), 1, f );
   169     if( ntohl(footer.v50.id) == NERO_V50_ID ) {
   170 	INFO( "Loading Nero 5.0 image" );
   171 	fseek( f, ntohl(footer.v50.offset), SEEK_SET );
   172     } else if( ntohl(footer.v55.id) == NERO_V55_ID ) {
   173 	INFO( "Loading Nero 5.5+ image" );
   174 	fseek( f, ntohl(footer.v55.offset), SEEK_SET );
   175     } else {
   176 	/* Not a (recognized) Nero image */
   177 	return NULL;
   178     }
   180     disc = gdrom_image_new(f);
   181     if( disc == NULL ) {
   182 	fclose(f);
   183 	ERROR("Unable to allocate memory!");
   184 	return NULL;
   185     }
   186     image = (gdrom_image_t)disc;
   188     do {
   189 	fread( &chunk, sizeof(chunk), 1, f );
   190 	chunk.length = ntohl(chunk.length);
   191 	char data[chunk.length];
   192 	fread( data, chunk.length, 1, f );
   193 	switch( ntohl(chunk.id) ) {
   194 	case CUES_ID:
   195 	    cue_track_id = track_id;
   196 	    cue_track_count = ((chunk.length / sizeof(struct nrg_cues)) >> 1) - 1;
   197 	    track_id += cue_track_count;
   198 	    for( i=0; i<chunk.length; i+= sizeof(struct nrg_cues) ) {
   199 		struct nrg_cues *cue = (struct nrg_cues *)(data+i);
   200 		int track = 0;
   201 		if( cue->track == 0 )
   202 		    continue; /* Track 0. Leadin? always 0? */
   203 		if( cue->track == 0xAA ) { /* end of disc */
   204 		    image->track[track_id-1].sector_count =
   205 			msf_to_lba( cue->addr ) - image->track[track_id-1].lba;
   206 		} else {
   207 		    track = cue_track_id + bcd_to_uint8(cue->track) - 1;
   208 		    if( (cue->control & 0x01) == 0 ) { 
   209 			/* Pre-gap address. */
   210 			if( track != 0 ) {
   211 			    image->track[track-1].sector_count = 
   212 				msf_to_lba( cue->addr ) - image->track[track-1].lba;
   213 			}
   214 		    } else { /* Track-start address */
   215 			image->track[track].lba = msf_to_lba( cue->addr );
   216 			image->track[track].flags = cue->type;
   217 		    }
   218 		}
   219 	    }
   220 	    break;
   221 	case DAOI_ID:
   222 	    dao = (struct nrg_daoi *)data;
   223 	    memcpy( image->mcn, dao->mcn, 13 );
   224 	    image->mcn[13] = '\0';
   225 	    assert( dao->track_count * 30 + 22 == chunk.length );
   226 	    assert( dao->track_count == cue_track_count );
   227 	    for( i=0; i<dao->track_count; i++ ) {
   228 		image->track[cue_track_id].sector_size = ntohl(dao->track[i].sector_size);
   229 		image->track[cue_track_id].offset = ntohl(dao->track[i].offset);
   230 		image->track[cue_track_id].mode = nrg_track_mode( dao->track[i].mode );
   231 		image->track[cue_track_id].sector_count =
   232 		    (ntohl(dao->track[i].end) - ntohl(dao->track[i].offset))/
   233 		    ntohl(dao->track[i].sector_size);
   234 		cue_track_id++;
   235 	    }
   236 	    break;
   237 	case SINF_ID: 
   238 	    /* Data is a single 32-bit number representing number of tracks in session */
   239 	    i = ntohl( *(uint32_t *)data );
   240 	    while( i-- > 0 )
   241 		image->track[session_track_id++].session = session_id;
   242 	    session_id++;
   243 	    break;
   244 	case ETNF_ID:
   245 	    for( i=0; i < chunk.length; i+= 0x14 ) {
   246 		struct nrg_etnf *etnf = (struct nrg_etnf *)(data+i);
   247 		image->track[track_id].offset = ntohl(etnf->offset);
   248 		image->track[track_id].lba = ntohl(etnf->lba) + (i+1)*GDROM_PREGAP;
   249 		image->track[track_id].mode = nrg_track_mode( ntohl(etnf->mode) );
   250 		if( image->track[track_id].mode == -1 ) {
   251 		    disc->close(disc);
   252 		    return NULL;
   253 		}
   254 		if( image->track[track_id].mode == GDROM_CDDA )
   255 		    image->track[track_id].flags = 0x01;
   256 		else
   257 		    image->track[track_id].flags = 0x01 | TRACK_DATA;
   258 		image->track[track_id].sector_size = GDROM_SECTOR_SIZE(image->track[track_id].mode);
   259 		image->track[track_id].sector_count = ntohl(etnf->length) / 
   260 		    image->track[track_id].sector_size;
   261 		track_id++;
   262 	    }
   263 	    break;
   264 	case END_ID:
   265 	    end = TRUE;
   266 	    break;
   267 	}
   268     } while( !end );
   269     image->track_count = track_id;
   270     return disc;
   271 }
.