/* -*- c-basic-offset: 4; -*- */ /* Icecast * * This program is distributed under the GNU General Public License, version 2. * A copy of this license is included with this source. * * Copyright 2000-2004, Jack Moffitt , * oddsock , * Karl Heyes * and others (see AUTHORS for details). */ /* format_mp3.c ** ** format plugin for mp3 ** */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #ifdef HAVE_STRINGS_H # include #endif #include "refbuf.h" #include "source.h" #include "client.h" #include "stats.h" #include "format.h" #include "httpp/httpp.h" #include "logging.h" #include "format_mp3.h" #ifdef WIN32 #define strcasecmp stricmp #define strncasecmp strnicmp #define snprintf _snprintf #endif #define CATMODULE "format-mp3" /* Note that this seems to be 8192 in shoutcast - perhaps we want to be the * same for compability with crappy clients? */ #define ICY_METADATA_INTERVAL 16000 static void format_mp3_free_plugin(format_plugin_t *self); static refbuf_t *mp3_get_filter_meta (source_t *source); static refbuf_t *mp3_get_no_meta (source_t *source); static int format_mp3_create_client_data (source_t *source, client_t *client); static void free_mp3_client_data (client_t *client); static int format_mp3_write_buf_to_client(format_plugin_t *self, client_t *client); static void format_mp3_send_headers(format_plugin_t *self, source_t *source, client_t *client); static void write_mp3_to_file (struct source_tag *source, refbuf_t *refbuf); typedef struct { int use_metadata; int metadata_offset; unsigned int since_meta_block; int in_metadata; refbuf_t *associated; } mp3_client_data; int format_mp3_get_plugin (source_t *source) { char *metadata; format_plugin_t *plugin; mp3_state *state = calloc(1, sizeof(mp3_state)); refbuf_t *meta; plugin = (format_plugin_t *)malloc(sizeof(format_plugin_t)); plugin->type = FORMAT_TYPE_MP3; plugin->get_buffer = mp3_get_no_meta; plugin->write_buf_to_client = format_mp3_write_buf_to_client; plugin->write_buf_to_file = write_mp3_to_file; plugin->create_client_data = format_mp3_create_client_data; plugin->client_send_headers = format_mp3_send_headers; plugin->free_plugin = format_mp3_free_plugin; plugin->format_description = "MP3 audio"; plugin->_state = state; meta = refbuf_new (1); memcpy (meta->data, "", 1); state->metadata = meta; state->interval = ICY_METADATA_INTERVAL; metadata = httpp_getvar (source->parser, "icy-metaint"); if (metadata) { state->inline_metadata_interval = atoi (metadata); state->offset = 0; plugin->get_buffer = mp3_get_filter_meta; } source->format = plugin; thread_mutex_create (&state->url_lock); return 0; } void mp3_set_tag (format_plugin_t *plugin, char *tag, char *value) { mp3_state *source_mp3 = plugin->_state; unsigned int len; const char meta[] = "StreamTitle='"; int size = sizeof (meta) + 1; if (tag==NULL || value == NULL) return; len = strlen (value)+1; size += len; /* protect against multiple updaters */ thread_mutex_lock (&source_mp3->url_lock); if (strcmp (tag, "title") == 0 || strcmp (tag, "song") == 0) { char *p = strdup (value); if (p) { free (source_mp3->url_title); free (source_mp3->url_artist); source_mp3->url_artist = NULL; source_mp3->url_title = p; source_mp3->update_metadata = 1; } } else if (strcmp (tag, "artist") == 0) { char *p = strdup (value); if (p) { free (source_mp3->url_artist); source_mp3->url_artist = p; source_mp3->update_metadata = 1; } } thread_mutex_unlock (&source_mp3->url_lock); } static void filter_shoutcast_metadata (source_t *source, char *metadata, unsigned int meta_len) { if (metadata) { char *end, *p; int len; do { metadata++; if (strncmp (metadata, "StreamTitle='", 13)) break; if ((end = strstr (metadata, "\';")) == NULL) break; len = (end - metadata) - 13; p = calloc (1, len+1); if (p) { memcpy (p, metadata+13, len); stats_event (source->mount, "title", p); yp_touch (source->mount); free (p); } } while (0); } } /* called from the source thread when the metadata has been updated. * The artist title are checked and made ready for clients to send */ void mp3_set_title (source_t *source) { const char meta[] = "StreamTitle='"; int size; unsigned char len_byte; refbuf_t *p; unsigned int len = sizeof(meta) + 2; /* the StreamTitle, quotes, ; and null */ mp3_state *source_mp3 = source->format->_state; /* make sure the url data does not disappear from under us */ thread_mutex_lock (&source_mp3->url_lock); /* work out message length */ if (source_mp3->url_artist) len += strlen (source_mp3->url_artist); if (source_mp3->url_title) len += strlen (source_mp3->url_title); if (source_mp3->url_artist && source_mp3->url_title) len += 3; #define MAX_META_LEN 255*16 if (len > MAX_META_LEN) { thread_mutex_unlock (&source_mp3->url_lock); WARN1 ("Metadata too long at %d chars", len); return; } /* work out the metadata len byte */ len_byte = (len-1) / 16 + 1; /* now we know how much space to allocate, +1 for the len byte */ size = len_byte * 16 + 1; p = refbuf_new (size); if (p) { mp3_state *source_mp3 = source->format->_state; memset (p->data, '\0', size); if (source_mp3->url_artist && source_mp3->url_title) snprintf (p->data, size, "%c%s%s - %s';", len_byte, meta, source_mp3->url_artist, source_mp3->url_title); else snprintf (p->data, size, "%c%s%s';", len_byte, meta, source_mp3->url_title); filter_shoutcast_metadata (source, p->data, size); refbuf_release (source_mp3->metadata); source_mp3->metadata = p; } thread_mutex_unlock (&source_mp3->url_lock); } /* send the appropriate metadata, and return the number of bytes written * which is 0 or greater. Check the client in_metadata value afterwards * to see if all metadata has been sent */ static int send_mp3_metadata (client_t *client, refbuf_t *associated) { int ret = 0; unsigned char *metadata; int meta_len; mp3_client_data *client_mp3 = client->format_data; /* If there is a change in metadata then send it else * send a single zero value byte in its place */ if (associated == client_mp3->associated) { metadata = "\0"; meta_len = 1; } else { metadata = associated->data + client_mp3->metadata_offset; meta_len = associated->len - client_mp3->metadata_offset; } ret = client_send_bytes (client, metadata, meta_len); if (ret == meta_len) { client_mp3->associated = associated; client_mp3->metadata_offset = 0; client_mp3->in_metadata = 0; client_mp3->since_meta_block = 0; return ret; } if (ret > 0) client_mp3->metadata_offset += ret; else ret = 0; client_mp3->in_metadata = 1; return ret; } /* Handler for writing mp3 data to a client, taking into account whether * client has requested shoutcast style metadata updates */ static int format_mp3_write_buf_to_client (format_plugin_t *self, client_t *client) { int ret, written = 0; mp3_client_data *client_mp3 = client->format_data; mp3_state *source_mp3 = self->_state; refbuf_t *refbuf = client->refbuf; char *buf; unsigned int len; if (refbuf->next == NULL && client->pos == refbuf->len) return 0; /* move to the next buffer if we have finished with the current one */ if (refbuf->next && client->pos == refbuf->len) { client_set_queue (client, refbuf->next); refbuf = client->refbuf; } buf = refbuf->data + client->pos; len = refbuf->len - client->pos; do { /* send any unwritten metadata to the client */ if (client_mp3->in_metadata) { refbuf_t *associated = refbuf->associated; ret = send_mp3_metadata (client, associated); if (client_mp3->in_metadata) break; written += ret; } /* see if we need to send the current metadata to the client */ if (client_mp3->use_metadata) { unsigned int remaining = source_mp3->interval - client_mp3->since_meta_block; /* sending the metadata block */ if (remaining <= len) { /* send any mp3 before the metadata block */ if (remaining) { ret = client_send_bytes (client, buf, remaining); if (ret > 0) { client_mp3->since_meta_block += ret; client->pos += ret; } if (ret < (int)remaining) break; written += ret; } ret = send_mp3_metadata (client, refbuf->associated); if (client_mp3->in_metadata) break; written += ret; /* change buf and len */ buf += remaining; len -= remaining; } } /* write any mp3, maybe after the metadata block */ if (len) { ret = client_send_bytes (client, buf, len); if (ret > 0) { client_mp3->since_meta_block += ret; client->pos += ret; } if (ret < (int)len) break; written += ret; } ret = 0; } while (0); if (ret > 0) written += ret; return written; } static void format_mp3_free_plugin(format_plugin_t *self) { /* free the plugin instance */ mp3_state *state = self->_state; thread_mutex_destroy (&state->url_lock); free (state->url_artist); free (state->url_title); refbuf_release (state->metadata); free(state); free(self); } /* read an mp3 stream which does not have shoutcast style metadata */ static refbuf_t *mp3_get_no_meta (source_t *source) { int bytes; refbuf_t *refbuf; mp3_state *source_mp3 = source->format->_state; if ((refbuf = refbuf_new (2048)) == NULL) return NULL; bytes = sock_read_bytes (source->con->sock, refbuf->data, 2048); if (bytes == 0) { INFO1 ("End of stream %s", source->mount); source->running = 0; refbuf_release (refbuf); return NULL; } if (source_mp3->update_metadata) { mp3_set_title (source); source_mp3->update_metadata = 0; } if (bytes > 0) { refbuf->len = bytes; refbuf->associated = source_mp3->metadata; refbuf_addref (source_mp3->metadata); return refbuf; } refbuf_release (refbuf); if (!sock_recoverable (sock_error())) source->running = 0; return NULL; } /* read mp3 data with inlined metadata from the source. Filter out the * metadata so that the mp3 data itself is store on the queue and the * metadata is is associated with it */ static refbuf_t *mp3_get_filter_meta (source_t *source) { refbuf_t *refbuf; format_plugin_t *plugin = source->format; mp3_state *source_mp3 = plugin->_state; unsigned char *src; unsigned int bytes, mp3_block; int ret; refbuf = refbuf_new (2048); src = refbuf->data; ret = sock_read_bytes (source->con->sock, refbuf->data, 2048); if (ret == 0) { INFO1 ("End of stream %s", source->mount); source->running = 0; refbuf_release (refbuf); return NULL; } if (source_mp3->update_metadata) { mp3_set_title (source); source_mp3->update_metadata = 0; } if (ret < 0) { refbuf_release (refbuf); if (sock_recoverable (sock_error())) return NULL; /* go back to waiting */ INFO0 ("Error on connection from source"); source->running = 0; return NULL; } /* fill the buffer with the read data */ bytes = (unsigned int)ret; refbuf->len = 0; while (bytes > 0) { unsigned int metadata_remaining; mp3_block = source_mp3->inline_metadata_interval - source_mp3->offset; /* is there only enough to account for mp3 data */ if (bytes <= mp3_block) { refbuf->len += bytes; source_mp3->offset += bytes; break; } /* we have enough data to get to the metadata * block, but only transfer upto it */ if (mp3_block) { src += mp3_block; bytes -= mp3_block; refbuf->len += mp3_block; source_mp3->offset += mp3_block; continue; } /* process the inline metadata, len == 0 indicates not seen any yet */ if (source_mp3->build_metadata_len == 0) { memset (source_mp3->build_metadata, 0, sizeof (source_mp3->build_metadata)); source_mp3->build_metadata_offset = 0; source_mp3->build_metadata_len = 1 + (*src * 16); } /* do we have all of the metatdata block */ metadata_remaining = source_mp3->build_metadata_len - source_mp3->build_metadata_offset; if (bytes < metadata_remaining) { memcpy (source_mp3->build_metadata + source_mp3->build_metadata_offset, src, bytes); source_mp3->build_metadata_offset += bytes; break; } /* copy all bytes except the last one, that way we * know a null byte terminates the message */ memcpy (source_mp3->build_metadata + source_mp3->build_metadata_offset, src, metadata_remaining-1); /* overwrite metadata in the buffer */ bytes -= metadata_remaining; memmove (src, src+metadata_remaining, bytes); /* assign metadata if it's not 1 byte, as that indicates a change */ if (source_mp3->build_metadata_len > 1) { refbuf_t *meta = refbuf_new (source_mp3->build_metadata_len); memcpy (meta->data, source_mp3->build_metadata, source_mp3->build_metadata_len); DEBUG1("shoutcast metadata %.4080s", meta->data+1); if (strncmp (meta->data+1, "StreamTitle=", 12) == 0) { filter_shoutcast_metadata (source, source_mp3->build_metadata, source_mp3->build_metadata_len); refbuf_release (source_mp3->metadata); source_mp3->metadata = meta; } else { ERROR0 ("Incorrect metadata format, ending stream"); source->running = 0; refbuf_release (refbuf); return NULL; } } source_mp3->offset = 0; source_mp3->build_metadata_len = 0; } /* the data we have just read may of just been metadata */ if (refbuf->len == 0) { refbuf_release (refbuf); return NULL; } refbuf->associated = source_mp3->metadata; refbuf_addref (source_mp3->metadata); return refbuf; } static int format_mp3_create_client_data(source_t *source, client_t *client) { mp3_client_data *data = calloc(1,sizeof(mp3_client_data)); char *metadata; if (data == NULL) return -1; client->format_data = data; client->free_client_data = free_mp3_client_data; metadata = httpp_getvar(client->parser, "icy-metadata"); if(metadata) data->use_metadata = atoi(metadata)>0?1:0; return 0; } static void free_mp3_client_data (client_t *client) { free (client->format_data); client->format_data = NULL; } static void format_mp3_send_headers(format_plugin_t *self, source_t *source, client_t *client) { int bytes; char *content_length; mp3_client_data *mp3data = client->format_data; client->respcode = 200; /* This little bit of code is for compatability with flash mp3 streaming. Flash requires a content-length in order for it to stream mp3s, and so based off a trial and error effort, the following number was derived. It is the largest content-length that we can send, anything larger causes flash streaming not to work. Note that it is also possible that other flash-based players may not send this request header (x-flash-version), but given the sampleset I had access to, this should suffice. */ if (httpp_getvar(client->parser, "x-flash-version")) { content_length = "Content-Length: 347122319\r\n"; } else { content_length = ""; } /* TODO: This may need to be ICY/1.0 for shoutcast-compatibility? */ bytes = sock_write(client->con->sock, "HTTP/1.0 200 OK\r\n" "Content-Type: %s\r\n" "%s", format_get_mimetype(source->format->type), content_length); if (bytes > 0) client->con->sent_bytes += bytes; if (mp3data->use_metadata) { int bytes = sock_write(client->con->sock, "icy-metaint:%d\r\n", ICY_METADATA_INTERVAL); if(bytes > 0) client->con->sent_bytes += bytes; } format_send_general_headers(self, source, client); } static void write_mp3_to_file (struct source_tag *source, refbuf_t *refbuf) { if (refbuf->len == 0) return; if (fwrite (refbuf->data, 1, refbuf->len, source->dumpfile) < (size_t)refbuf->len) { WARN0 ("Write to dump file failed, disabling"); fclose (source->dumpfile); source->dumpfile = NULL; } }