ffserver.c 149 KB
Newer Older
Fabrice Bellard's avatar
Fabrice Bellard committed
1 2
/*
 * Multiple format streaming server
3
 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
Fabrice Bellard's avatar
Fabrice Bellard committed
4
 *
5 6 7 8
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
Fabrice Bellard's avatar
Fabrice Bellard committed
9
 *
10
 * This library is distributed in the hope that it will be useful,
Fabrice Bellard's avatar
Fabrice Bellard committed
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
Fabrice Bellard's avatar
Fabrice Bellard committed
14
 *
15 16 17
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
Fabrice Bellard's avatar
Fabrice Bellard committed
18
 */
19 20 21
#define HAVE_AV_CONFIG_H
#include "avformat.h"

Fabrice Bellard's avatar
Fabrice Bellard committed
22 23 24 25 26 27 28
#include <stdarg.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/poll.h>
#include <errno.h>
#include <sys/time.h>
29
#undef time //needed because HAVE_AV_CONFIG_H is defined on top
Fabrice Bellard's avatar
Fabrice Bellard committed
30 31 32
#include <time.h>
#include <sys/types.h>
#include <sys/socket.h>
33
#include <sys/wait.h>
34
#include <netinet/in.h>
35
#include <arpa/inet.h>
Fabrice Bellard's avatar
Fabrice Bellard committed
36 37
#include <netdb.h>
#include <signal.h>
38
#ifdef CONFIG_HAVE_DLFCN
39
#include <dlfcn.h>
40
#endif
41 42

#include "ffserver.h"
Fabrice Bellard's avatar
Fabrice Bellard committed
43 44 45 46 47 48 49 50

/* maximum number of simultaneous HTTP connections */
#define HTTP_MAX_CONNECTIONS 2000

enum HTTPState {
    HTTPSTATE_WAIT_REQUEST,
    HTTPSTATE_SEND_HEADER,
    HTTPSTATE_SEND_DATA_HEADER,
51
    HTTPSTATE_SEND_DATA,          /* sending TCP or UDP data */
Fabrice Bellard's avatar
Fabrice Bellard committed
52
    HTTPSTATE_SEND_DATA_TRAILER,
53 54 55 56 57 58
    HTTPSTATE_RECEIVE_DATA,       
    HTTPSTATE_WAIT_FEED,          /* wait for data from the feed */
    HTTPSTATE_READY,

    RTSPSTATE_WAIT_REQUEST,
    RTSPSTATE_SEND_REPLY,
59
    RTSPSTATE_SEND_PACKET,
Fabrice Bellard's avatar
Fabrice Bellard committed
60 61 62
};

const char *http_state[] = {
63 64 65
    "HTTP_WAIT_REQUEST",
    "HTTP_SEND_HEADER",

Fabrice Bellard's avatar
Fabrice Bellard committed
66 67 68 69 70
    "SEND_DATA_HEADER",
    "SEND_DATA",
    "SEND_DATA_TRAILER",
    "RECEIVE_DATA",
    "WAIT_FEED",
71 72 73 74
    "READY",

    "RTSP_WAIT_REQUEST",
    "RTSP_SEND_REPLY",
75
    "RTSP_SEND_PACKET",
Fabrice Bellard's avatar
Fabrice Bellard committed
76 77
};

78
#define IOBUFFER_INIT_SIZE 8192
Fabrice Bellard's avatar
Fabrice Bellard committed
79 80 81 82 83

/* coef for exponential mean for bitrate estimation in statistics */
#define AVG_COEF 0.9

/* timeouts are in ms */
84 85 86
#define HTTP_REQUEST_TIMEOUT (15 * 1000)
#define RTSP_REQUEST_TIMEOUT (3600 * 24 * 1000)

Fabrice Bellard's avatar
Fabrice Bellard committed
87 88
#define SYNC_TIMEOUT (10 * 1000)

89
typedef struct {
90
    int64_t count1, count2;
91 92 93
    long time1, time2;
} DataRateData;

Fabrice Bellard's avatar
Fabrice Bellard committed
94 95 96 97 98 99 100
/* context associated with one connection */
typedef struct HTTPContext {
    enum HTTPState state;
    int fd; /* socket file descriptor */
    struct sockaddr_in from_addr; /* origin */
    struct pollfd *poll_entry; /* used when polling */
    long timeout;
101
    uint8_t *buffer_ptr, *buffer_end;
Fabrice Bellard's avatar
Fabrice Bellard committed
102 103
    int http_error;
    struct HTTPContext *next;
104
    int got_key_frame; /* stream 0 => 1, stream 1 => 2, stream 2=> 4 */
105
    int64_t data_count;
Fabrice Bellard's avatar
Fabrice Bellard committed
106 107 108 109
    /* feed input */
    int feed_fd;
    /* input format handling */
    AVFormatContext *fmt_in;
110
    long start_time;            /* In milliseconds - this wraps fairly often */
111
    int64_t first_pts;            /* initial pts value */
112 113 114 115 116 117 118
    int64_t cur_pts;             /* current pts value from the stream in us */
    int64_t cur_frame_duration;  /* duration of the current frame in us */
    int cur_frame_bytes;       /* output frame size, needed to compute
                                  the time at which we send each
                                  packet */
    int pts_stream_index;        /* stream we choose as clock reference */
    int64_t cur_clock;           /* current clock reference value in us */
Fabrice Bellard's avatar
Fabrice Bellard committed
119 120
    /* output format handling */
    struct FFStream *stream;
121 122 123 124
    /* -1 is invalid stream */
    int feed_streams[MAX_STREAMS]; /* index of streams in the feed */
    int switch_feed_streams[MAX_STREAMS]; /* index of streams in the feed */
    int switch_pending;
125
    AVFormatContext fmt_ctx; /* instance of FFStream for one user */
Fabrice Bellard's avatar
Fabrice Bellard committed
126
    int last_packet_sent; /* true if last data packet was sent */
127
    int suppress_log;
128
    DataRateData datarate;
129
    int wmp_client_id;
130 131 132
    char protocol[16];
    char method[16];
    char url[128];
133
    int buffer_size;
134
    uint8_t *buffer;
135 136 137 138
    int is_packetized; /* if true, the stream is packetized */
    int packet_stream_index; /* current stream for output in state machine */
    
    /* RTSP state specific */
139
    uint8_t *pb_buffer; /* XXX: use that in all the code */
140 141
    ByteIOContext *pb;
    int seq; /* RTSP sequence number */
142
    
143 144 145 146
    /* RTP state specific */
    enum RTSPProtocol rtp_protocol;
    char session_id[32]; /* session id */
    AVFormatContext *rtp_ctx[MAX_STREAMS];
147

148 149 150 151 152 153
    /* RTP/UDP specific */
    URLContext *rtp_handles[MAX_STREAMS];

    /* RTP/TCP specific */
    struct HTTPContext *rtsp_c;
    uint8_t *packet_buffer, *packet_buffer_ptr, *packet_buffer_end;
Fabrice Bellard's avatar
Fabrice Bellard committed
154 155
} HTTPContext;

156 157
static AVFrame dummy_frame;

Fabrice Bellard's avatar
Fabrice Bellard committed
158 159 160 161
/* each generated stream is described here */
enum StreamType {
    STREAM_TYPE_LIVE,
    STREAM_TYPE_STATUS,
162
    STREAM_TYPE_REDIRECT,
Fabrice Bellard's avatar
Fabrice Bellard committed
163 164
};

165 166 167 168 169 170 171 172
enum IPAddressAction {
    IP_ALLOW = 1,
    IP_DENY,
};

typedef struct IPAddressACL {
    struct IPAddressACL *next;
    enum IPAddressAction action;
173
    /* These are in host order */
174 175 176 177
    struct in_addr first;
    struct in_addr last;
} IPAddressACL;

Fabrice Bellard's avatar
Fabrice Bellard committed
178 179 180 181
/* description of each stream of the ffserver.conf file */
typedef struct FFStream {
    enum StreamType stream_type;
    char filename[1024];     /* stream filename */
182 183
    struct FFStream *feed;   /* feed we are using (can be null if
                                coming from file) */
184 185
    AVFormatParameters *ap_in; /* input parameters */
    AVInputFormat *ifmt;       /* if non NULL, force input format */
186
    AVOutputFormat *fmt;
187
    IPAddressACL *acl;
Fabrice Bellard's avatar
Fabrice Bellard committed
188
    int nb_streams;
189
    int prebuffer;      /* Number of millseconds early to start */
190
    long max_time;      /* Number of milliseconds to run */
191
    int send_on_key;
Fabrice Bellard's avatar
Fabrice Bellard committed
192 193 194 195
    AVStream *streams[MAX_STREAMS];
    int feed_streams[MAX_STREAMS]; /* index of streams in the feed */
    char feed_filename[1024]; /* file name of the feed storage, or
                                 input file name for a stream */
196 197 198 199
    char author[512];
    char title[512];
    char copyright[512];
    char comment[512];
200
    pid_t pid;  /* Of ffmpeg process */
201
    time_t pid_start;  /* Of ffmpeg process */
202
    char **child_argv;
Fabrice Bellard's avatar
Fabrice Bellard committed
203
    struct FFStream *next;
204
    int bandwidth; /* bandwidth, in kbits/s */
205 206
    /* RTSP options */
    char *rtsp_option;
207 208 209 210
    /* multicast specific */
    int is_multicast;
    struct in_addr multicast_ip;
    int multicast_port; /* first port used for multicast */
211 212
    int multicast_ttl;
    int loop; /* if true, send the stream in loops (only meaningful if file) */
213

Fabrice Bellard's avatar
Fabrice Bellard committed
214
    /* feed specific */
215
    int feed_opened;     /* true if someone is writing to the feed */
Fabrice Bellard's avatar
Fabrice Bellard committed
216
    int is_feed;         /* true if it is a feed */
217
    int readonly;        /* True if writing is prohibited to the file */
218
    int conns_served;
219 220 221 222
    int64_t bytes_served;
    int64_t feed_max_size;      /* maximum storage size */
    int64_t feed_write_index;   /* current write position in feed (it wraps round) */
    int64_t feed_size;          /* current size of feed */
Fabrice Bellard's avatar
Fabrice Bellard committed
223 224 225 226 227 228 229 230
    struct FFStream *next_feed;
} FFStream;

typedef struct FeedData {
    long long data_count;
    float avg_frame_size;   /* frame size averraged over last frames with exponential mean */
} FeedData;

231 232 233
struct sockaddr_in my_http_addr;
struct sockaddr_in my_rtsp_addr;

Fabrice Bellard's avatar
Fabrice Bellard committed
234 235 236 237 238
char logfilename[1024];
HTTPContext *first_http_ctx;
FFStream *first_feed;   /* contains only feeds */
FFStream *first_stream; /* contains all streams, including feeds */

239 240 241 242 243
static void new_connection(int server_fd, int is_rtsp);
static void close_connection(HTTPContext *c);

/* HTTP handling */
static int handle_connection(HTTPContext *c);
Fabrice Bellard's avatar
Fabrice Bellard committed
244
static int http_parse_request(HTTPContext *c);
245
static int http_send_data(HTTPContext *c);
Fabrice Bellard's avatar
Fabrice Bellard committed
246 247 248 249
static void compute_stats(HTTPContext *c);
static int open_input_stream(HTTPContext *c, const char *info);
static int http_start_receive_data(HTTPContext *c);
static int http_receive_data(HTTPContext *c);
250 251 252 253

/* RTSP handling */
static int rtsp_parse_request(HTTPContext *c);
static void rtsp_cmd_describe(HTTPContext *c, const char *url);
254
static void rtsp_cmd_options(HTTPContext *c, const char *url);
255 256 257 258 259
static void rtsp_cmd_setup(HTTPContext *c, const char *url, RTSPHeader *h);
static void rtsp_cmd_play(HTTPContext *c, const char *url, RTSPHeader *h);
static void rtsp_cmd_pause(HTTPContext *c, const char *url, RTSPHeader *h);
static void rtsp_cmd_teardown(HTTPContext *c, const char *url, RTSPHeader *h);

260
/* SDP handling */
261
static int prepare_sdp_description(FFStream *stream, uint8_t **pbuffer, 
262 263
                                   struct in_addr my_ip);

264
/* RTP handling */
265
static HTTPContext *rtp_new_connection(struct sockaddr_in *from_addr, 
266 267
                                       FFStream *stream, const char *session_id,
                                       enum RTSPProtocol rtp_protocol);
268
static int rtp_new_av_stream(HTTPContext *c, 
269 270
                             int stream_index, struct sockaddr_in *dest_addr,
                             HTTPContext *rtsp_c);
Fabrice Bellard's avatar
Fabrice Bellard committed
271

272
static const char *my_program_name;
273
static const char *my_program_dir;
274

275
static int ffserver_debug;
276
static int ffserver_daemon;
277
static int no_launch;
278
static int need_to_start_children;
279

Fabrice Bellard's avatar
Fabrice Bellard committed
280 281 282
int nb_max_connections;
int nb_connections;

283 284
int max_bandwidth;
int current_bandwidth;
285

286 287
static long cur_time;           // Making this global saves on passing it around everywhere

Fabrice Bellard's avatar
Fabrice Bellard committed
288 289 290 291 292 293 294 295 296 297
static long gettime_ms(void)
{
    struct timeval tv;

    gettimeofday(&tv,NULL);
    return (long long)tv.tv_sec * 1000 + (tv.tv_usec / 1000);
}

static FILE *logfile = NULL;

298
static void __attribute__ ((format (printf, 1, 2))) http_log(const char *fmt, ...) 
Fabrice Bellard's avatar
Fabrice Bellard committed
299 300 301 302
{
    va_list ap;
    va_start(ap, fmt);
    
303
    if (logfile) {
Fabrice Bellard's avatar
Fabrice Bellard committed
304
        vfprintf(logfile, fmt, ap);
305 306
        fflush(logfile);
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
307 308 309
    va_end(ap);
}

310
static char *ctime1(char *buf2)
311 312
{
    time_t ti;
313
    char *p;
314 315 316 317 318 319 320

    ti = time(NULL);
    p = ctime(&ti);
    strcpy(buf2, p);
    p = buf2 + strlen(p) - 1;
    if (*p == '\n')
        *p = '\0';
321 322 323 324 325 326 327 328 329 330
    return buf2;
}

static void log_connection(HTTPContext *c)
{
    char buf2[32];

    if (c->suppress_log) 
        return;

331
    http_log("%s - - [%s] \"%s %s %s\" %d %lld\n", 
332 333 334
             inet_ntoa(c->from_addr.sin_addr), 
             ctime1(buf2), c->method, c->url, 
             c->protocol, (c->http_error ? c->http_error : 200), c->data_count);
335 336
}

337
static void update_datarate(DataRateData *drd, int64_t count)
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
{
    if (!drd->time1 && !drd->count1) {
        drd->time1 = drd->time2 = cur_time;
        drd->count1 = drd->count2 = count;
    } else {
        if (cur_time - drd->time2 > 5000) {
            drd->time1 = drd->time2;
            drd->count1 = drd->count2;
            drd->time2 = cur_time;
            drd->count2 = count;
        }
    }
}

/* In bytes per second */
353
static int compute_datarate(DataRateData *drd, int64_t count)
354 355 356
{
    if (cur_time == drd->time1)
        return 0;
357
    
358 359 360
    return ((count - drd->count1) * 1000) / (cur_time - drd->time1);
}

361
static int get_longterm_datarate(DataRateData *drd, int64_t count)
362 363 364 365 366 367 368 369
{
    /* You get the first 3 seconds flat out */
    if (cur_time - drd->time1 < 3000)
        return 0;
    return compute_datarate(drd, count);
}


370 371
static void start_children(FFStream *feed)
{
372 373 374
    if (no_launch)
        return;

375
    for (; feed; feed = feed->next) {
376 377 378
        if (feed->child_argv && !feed->pid) {
            feed->pid_start = time(0);

379 380 381 382 383 384 385 386 387 388 389 390
            feed->pid = fork();

            if (feed->pid < 0) {
                fprintf(stderr, "Unable to create children\n");
                exit(1);
            }
            if (!feed->pid) {
                /* In child */
                char pathname[1024];
                char *slash;
                int i;

391 392 393
                for (i = 3; i < 256; i++) {
                    close(i);
                }
394

395
                if (!ffserver_debug) {
396 397 398 399 400
                    i = open("/dev/null", O_RDWR);
                    if (i)
                        dup2(i, 0);
                    dup2(i, 1);
                    dup2(i, 2);
401 402
                    if (i)
                        close(i);
403
                }
404 405 406 407 408 409 410 411 412 413 414

                pstrcpy(pathname, sizeof(pathname), my_program_name);

                slash = strrchr(pathname, '/');
                if (!slash) {
                    slash = pathname;
                } else {
                    slash++;
                }
                strcpy(slash, "ffmpeg");

415 416 417
                /* This is needed to make relative pathnames work */
                chdir(my_program_dir);

418 419
                signal(SIGPIPE, SIG_DFL);

420 421 422 423 424 425
                execvp(pathname, feed->child_argv);

                _exit(1);
            }
        }
    }
426 427
}

428 429
/* open a listening socket */
static int socket_open_listen(struct sockaddr_in *my_addr)
Fabrice Bellard's avatar
Fabrice Bellard committed
430
{
431
    int server_fd, tmp;
Fabrice Bellard's avatar
Fabrice Bellard committed
432 433 434 435 436 437 438 439 440 441

    server_fd = socket(AF_INET,SOCK_STREAM,0);
    if (server_fd < 0) {
        perror ("socket");
        return -1;
    }
        
    tmp = 1;
    setsockopt(server_fd, SOL_SOCKET, SO_REUSEADDR, &tmp, sizeof(tmp));

442
    if (bind (server_fd, (struct sockaddr *) my_addr, sizeof (*my_addr)) < 0) {
443 444 445
        char bindmsg[32];
        snprintf(bindmsg, sizeof(bindmsg), "bind(port %d)", ntohs(my_addr->sin_port));
        perror (bindmsg);
Fabrice Bellard's avatar
Fabrice Bellard committed
446 447 448 449 450 451 452 453 454
        close(server_fd);
        return -1;
    }
  
    if (listen (server_fd, 5) < 0) {
        perror ("listen");
        close(server_fd);
        return -1;
    }
455 456 457 458 459
    fcntl(server_fd, F_SETFL, O_NONBLOCK);

    return server_fd;
}

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
/* start all multicast streams */
static void start_multicast(void)
{
    FFStream *stream;
    char session_id[32];
    HTTPContext *rtp_c;
    struct sockaddr_in dest_addr;
    int default_port, stream_index;

    default_port = 6000;
    for(stream = first_stream; stream != NULL; stream = stream->next) {
        if (stream->is_multicast) {
            /* open the RTP connection */
            snprintf(session_id, sizeof(session_id), 
                     "%08x%08x", (int)random(), (int)random());

            /* choose a port if none given */
            if (stream->multicast_port == 0) {
                stream->multicast_port = default_port;
                default_port += 100;
            }

            dest_addr.sin_family = AF_INET;
            dest_addr.sin_addr = stream->multicast_ip;
            dest_addr.sin_port = htons(stream->multicast_port);

486 487
            rtp_c = rtp_new_connection(&dest_addr, stream, session_id, 
                                       RTSP_PROTOCOL_RTP_UDP_MULTICAST);
488 489 490 491 492 493 494 495 496 497 498 499 500 501
            if (!rtp_c) {
                continue;
            }
            if (open_input_stream(rtp_c, "") < 0) {
                fprintf(stderr, "Could not open input stream for stream '%s'\n", 
                        stream->filename);
                continue;
            }

            /* open each RTP stream */
            for(stream_index = 0; stream_index < stream->nb_streams; 
                stream_index++) {
                dest_addr.sin_port = htons(stream->multicast_port + 
                                           2 * stream_index);
502
                if (rtp_new_av_stream(rtp_c, stream_index, &dest_addr, NULL) < 0) {
503 504 505
                    fprintf(stderr, "Could not open output stream '%s/streamid=%d'\n", 
                            stream->filename, stream_index);
                    exit(1);
506 507 508 509 510 511 512 513
                }
            }

            /* change state to send data */
            rtp_c->state = HTTPSTATE_SEND_DATA;
        }
    }
}
514 515 516 517 518 519 520 521 522 523 524

/* main loop of the http server */
static int http_server(void)
{
    int server_fd, ret, rtsp_server_fd, delay, delay1;
    struct pollfd poll_table[HTTP_MAX_CONNECTIONS + 2], *poll_entry;
    HTTPContext *c, *c_next;

    server_fd = socket_open_listen(&my_http_addr);
    if (server_fd < 0)
        return -1;
Fabrice Bellard's avatar
Fabrice Bellard committed
525

526 527 528 529
    rtsp_server_fd = socket_open_listen(&my_rtsp_addr);
    if (rtsp_server_fd < 0)
        return -1;
    
Fabrice Bellard's avatar
Fabrice Bellard committed
530 531
    http_log("ffserver started.\n");

532 533
    start_children(first_feed);

Fabrice Bellard's avatar
Fabrice Bellard committed
534 535
    first_http_ctx = NULL;
    nb_connections = 0;
536 537 538

    start_multicast();

Fabrice Bellard's avatar
Fabrice Bellard committed
539 540 541 542 543 544
    for(;;) {
        poll_entry = poll_table;
        poll_entry->fd = server_fd;
        poll_entry->events = POLLIN;
        poll_entry++;

545 546 547 548
        poll_entry->fd = rtsp_server_fd;
        poll_entry->events = POLLIN;
        poll_entry++;

Fabrice Bellard's avatar
Fabrice Bellard committed
549 550
        /* wait for events on each HTTP handle */
        c = first_http_ctx;
551
        delay = 1000;
Fabrice Bellard's avatar
Fabrice Bellard committed
552 553 554 555
        while (c != NULL) {
            int fd;
            fd = c->fd;
            switch(c->state) {
556 557
            case HTTPSTATE_SEND_HEADER:
            case RTSPSTATE_SEND_REPLY:
558
            case RTSPSTATE_SEND_PACKET:
Fabrice Bellard's avatar
Fabrice Bellard committed
559 560
                c->poll_entry = poll_entry;
                poll_entry->fd = fd;
561
                poll_entry->events = POLLOUT;
Fabrice Bellard's avatar
Fabrice Bellard committed
562 563 564 565 566
                poll_entry++;
                break;
            case HTTPSTATE_SEND_DATA_HEADER:
            case HTTPSTATE_SEND_DATA:
            case HTTPSTATE_SEND_DATA_TRAILER:
567 568 569 570 571 572 573
                if (!c->is_packetized) {
                    /* for TCP, we output as much as we can (may need to put a limit) */
                    c->poll_entry = poll_entry;
                    poll_entry->fd = fd;
                    poll_entry->events = POLLOUT;
                    poll_entry++;
                } else {
574 575 576 577 578 579
                    /* when ffserver is doing the timing, we work by
                       looking at which packet need to be sent every
                       10 ms */
                    delay1 = 10; /* one tick wait XXX: 10 ms assumed */
                    if (delay1 < delay)
                        delay = delay1;
580
                }
Fabrice Bellard's avatar
Fabrice Bellard committed
581
                break;
582
            case HTTPSTATE_WAIT_REQUEST:
Fabrice Bellard's avatar
Fabrice Bellard committed
583 584
            case HTTPSTATE_RECEIVE_DATA:
            case HTTPSTATE_WAIT_FEED:
585
            case RTSPSTATE_WAIT_REQUEST:
Fabrice Bellard's avatar
Fabrice Bellard committed
586 587 588
                /* need to catch errors */
                c->poll_entry = poll_entry;
                poll_entry->fd = fd;
589
                poll_entry->events = POLLIN;/* Maybe this will work */
Fabrice Bellard's avatar
Fabrice Bellard committed
590 591 592 593 594 595 596 597 598 599 600 601
                poll_entry++;
                break;
            default:
                c->poll_entry = NULL;
                break;
            }
            c = c->next;
        }

        /* wait for an event on one connection. We poll at least every
           second to handle timeouts */
        do {
602
            ret = poll(poll_table, poll_entry - poll_table, delay);
603 604 605
            if (ret < 0 && errno != EAGAIN && errno != EINTR)
                return -1;
        } while (ret <= 0);
Fabrice Bellard's avatar
Fabrice Bellard committed
606 607 608
        
        cur_time = gettime_ms();

609 610 611 612 613
        if (need_to_start_children) {
            need_to_start_children = 0;
            start_children(first_feed);
        }

Fabrice Bellard's avatar
Fabrice Bellard committed
614
        /* now handle the events */
615 616 617
        for(c = first_http_ctx; c != NULL; c = c_next) {
            c_next = c->next;
            if (handle_connection(c) < 0) {
Fabrice Bellard's avatar
Fabrice Bellard committed
618
                /* close and free the connection */
619
                log_connection(c);
620
                close_connection(c);
Fabrice Bellard's avatar
Fabrice Bellard committed
621 622 623 624
            }
        }

        poll_entry = poll_table;
625
        /* new HTTP connection request ? */
Fabrice Bellard's avatar
Fabrice Bellard committed
626
        if (poll_entry->revents & POLLIN) {
627
            new_connection(server_fd, 0);
Fabrice Bellard's avatar
Fabrice Bellard committed
628 629
        }
        poll_entry++;
630 631 632 633
        /* new RTSP connection request ? */
        if (poll_entry->revents & POLLIN) {
            new_connection(rtsp_server_fd, 1);
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
634 635 636
    }
}

637 638
/* start waiting for a new HTTP/RTSP request */
static void start_wait_request(HTTPContext *c, int is_rtsp)
Fabrice Bellard's avatar
Fabrice Bellard committed
639
{
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
    c->buffer_ptr = c->buffer;
    c->buffer_end = c->buffer + c->buffer_size - 1; /* leave room for '\0' */

    if (is_rtsp) {
        c->timeout = cur_time + RTSP_REQUEST_TIMEOUT;
        c->state = RTSPSTATE_WAIT_REQUEST;
    } else {
        c->timeout = cur_time + HTTP_REQUEST_TIMEOUT;
        c->state = HTTPSTATE_WAIT_REQUEST;
    }
}

static void new_connection(int server_fd, int is_rtsp)
{
    struct sockaddr_in from_addr;
    int fd, len;
    HTTPContext *c = NULL;

    len = sizeof(from_addr);
    fd = accept(server_fd, (struct sockaddr *)&from_addr, 
                &len);
    if (fd < 0)
        return;
    fcntl(fd, F_SETFL, O_NONBLOCK);

    /* XXX: should output a warning page when coming
       close to the connection limit */
    if (nb_connections >= nb_max_connections)
        goto fail;
    
    /* add a new connection */
    c = av_mallocz(sizeof(HTTPContext));
    if (!c)
        goto fail;
    
    c->fd = fd;
    c->poll_entry = NULL;
    c->from_addr = from_addr;
    c->buffer_size = IOBUFFER_INIT_SIZE;
    c->buffer = av_malloc(c->buffer_size);
    if (!c->buffer)
        goto fail;
682 683 684

    c->next = first_http_ctx;
    first_http_ctx = c;
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
    nb_connections++;
    
    start_wait_request(c, is_rtsp);

    return;

 fail:
    if (c) {
        av_free(c->buffer);
        av_free(c);
    }
    close(fd);
}

static void close_connection(HTTPContext *c)
{
    HTTPContext **cp, *c1;
    int i, nb_streams;
    AVFormatContext *ctx;
    URLContext *h;
    AVStream *st;

    /* remove connection from list */
    cp = &first_http_ctx;
    while ((*cp) != NULL) {
        c1 = *cp;
        if (c1 == c) {
            *cp = c->next;
        } else {
            cp = &c1->next;
        }
    }

718 719 720 721 722 723
    /* remove references, if any (XXX: do it faster) */
    for(c1 = first_http_ctx; c1 != NULL; c1 = c1->next) {
        if (c1->rtsp_c == c)
            c1->rtsp_c = NULL;
    }

724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
    /* remove connection associated resources */
    if (c->fd >= 0)
        close(c->fd);
    if (c->fmt_in) {
        /* close each frame parser */
        for(i=0;i<c->fmt_in->nb_streams;i++) {
            st = c->fmt_in->streams[i];
            if (st->codec.codec) {
                avcodec_close(&st->codec);
            }
        }
        av_close_input_file(c->fmt_in);
    }

    /* free RTP output streams if any */
    nb_streams = 0;
    if (c->stream) 
        nb_streams = c->stream->nb_streams;
    
    for(i=0;i<nb_streams;i++) {
        ctx = c->rtp_ctx[i];
        if (ctx) {
            av_write_trailer(ctx);
            av_free(ctx);
        }
        h = c->rtp_handles[i];
        if (h) {
            url_close(h);
        }
    }
754
    
755 756
    ctx = &c->fmt_ctx;

757 758 759 760 761
    if (!c->last_packet_sent) {
        if (ctx->oformat) {
            /* prepare header */
            if (url_open_dyn_buf(&ctx->pb) >= 0) {
                av_write_trailer(ctx);
762
                url_close_dyn_buf(&ctx->pb, &c->pb_buffer);
763 764 765 766
            }
        }
    }

767 768 769
    for(i=0; i<ctx->nb_streams; i++) 
        av_free(ctx->streams[i]) ; 

770 771
    if (c->stream)
        current_bandwidth -= c->stream->bandwidth;
772
    av_freep(&c->pb_buffer);
773
    av_freep(&c->packet_buffer);
774 775 776 777 778 779 780 781
    av_free(c->buffer);
    av_free(c);
    nb_connections--;
}

static int handle_connection(HTTPContext *c)
{
    int len, ret;
Fabrice Bellard's avatar
Fabrice Bellard committed
782 783 784
    
    switch(c->state) {
    case HTTPSTATE_WAIT_REQUEST:
785
    case RTSPSTATE_WAIT_REQUEST:
Fabrice Bellard's avatar
Fabrice Bellard committed
786 787 788 789 790 791 792 793 794 795
        /* timeout ? */
        if ((c->timeout - cur_time) < 0)
            return -1;
        if (c->poll_entry->revents & (POLLERR | POLLHUP))
            return -1;

        /* no need to read if no events */
        if (!(c->poll_entry->revents & POLLIN))
            return 0;
        /* read the data */
796
    read_loop:
797
        len = read(c->fd, c->buffer_ptr, 1);
Fabrice Bellard's avatar
Fabrice Bellard committed
798 799 800 801 802 803
        if (len < 0) {
            if (errno != EAGAIN && errno != EINTR)
                return -1;
        } else if (len == 0) {
            return -1;
        } else {
804
            /* search for end of request. */
805
            uint8_t *ptr;
Fabrice Bellard's avatar
Fabrice Bellard committed
806 807 808 809 810
            c->buffer_ptr += len;
            ptr = c->buffer_ptr;
            if ((ptr >= c->buffer + 2 && !memcmp(ptr-2, "\n\n", 2)) ||
                (ptr >= c->buffer + 4 && !memcmp(ptr-4, "\r\n\r\n", 4))) {
                /* request found : parse it and reply */
811 812 813 814 815 816
                if (c->state == HTTPSTATE_WAIT_REQUEST) {
                    ret = http_parse_request(c);
                } else {
                    ret = rtsp_parse_request(c);
                }
                if (ret < 0)
Fabrice Bellard's avatar
Fabrice Bellard committed
817 818 819 820
                    return -1;
            } else if (ptr >= c->buffer_end) {
                /* request too long: cannot do anything */
                return -1;
821
            } else goto read_loop;
Fabrice Bellard's avatar
Fabrice Bellard committed
822 823 824 825 826 827 828
        }
        break;

    case HTTPSTATE_SEND_HEADER:
        if (c->poll_entry->revents & (POLLERR | POLLHUP))
            return -1;

829
        /* no need to write if no events */
Fabrice Bellard's avatar
Fabrice Bellard committed
830 831 832 833 834 835
        if (!(c->poll_entry->revents & POLLOUT))
            return 0;
        len = write(c->fd, c->buffer_ptr, c->buffer_end - c->buffer_ptr);
        if (len < 0) {
            if (errno != EAGAIN && errno != EINTR) {
                /* error : close connection */
836
                av_freep(&c->pb_buffer);
Fabrice Bellard's avatar
Fabrice Bellard committed
837 838 839 840
                return -1;
            }
        } else {
            c->buffer_ptr += len;
841 842
            if (c->stream)
                c->stream->bytes_served += len;
843
            c->data_count += len;
Fabrice Bellard's avatar
Fabrice Bellard committed
844
            if (c->buffer_ptr >= c->buffer_end) {
845
                av_freep(&c->pb_buffer);
Fabrice Bellard's avatar
Fabrice Bellard committed
846
                /* if error, exit */
847
                if (c->http_error) {
Fabrice Bellard's avatar
Fabrice Bellard committed
848
                    return -1;
849 850
                }
                /* all the buffer was sent : synchronize to the incoming stream */
Fabrice Bellard's avatar
Fabrice Bellard committed
851 852 853 854 855 856 857 858 859
                c->state = HTTPSTATE_SEND_DATA_HEADER;
                c->buffer_ptr = c->buffer_end = c->buffer;
            }
        }
        break;

    case HTTPSTATE_SEND_DATA:
    case HTTPSTATE_SEND_DATA_HEADER:
    case HTTPSTATE_SEND_DATA_TRAILER:
860 861 862 863 864 865 866 867 868 869 870
        /* for packetized output, we consider we can always write (the
           input streams sets the speed). It may be better to verify
           that we do not rely too much on the kernel queues */
        if (!c->is_packetized) {
            if (c->poll_entry->revents & (POLLERR | POLLHUP))
                return -1;
            
            /* no need to read if no events */
            if (!(c->poll_entry->revents & POLLOUT))
                return 0;
        }
871
        if (http_send_data(c) < 0)
Fabrice Bellard's avatar
Fabrice Bellard committed
872 873 874 875 876 877 878 879 880 881 882 883 884
            return -1;
        break;
    case HTTPSTATE_RECEIVE_DATA:
        /* no need to read if no events */
        if (c->poll_entry->revents & (POLLERR | POLLHUP))
            return -1;
        if (!(c->poll_entry->revents & POLLIN))
            return 0;
        if (http_receive_data(c) < 0)
            return -1;
        break;
    case HTTPSTATE_WAIT_FEED:
        /* no need to read if no events */
885
        if (c->poll_entry->revents & (POLLIN | POLLERR | POLLHUP))
Fabrice Bellard's avatar
Fabrice Bellard committed
886 887 888 889
            return -1;

        /* nothing to do, we'll be waken up by incoming feed packets */
        break;
890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915

    case RTSPSTATE_SEND_REPLY:
        if (c->poll_entry->revents & (POLLERR | POLLHUP)) {
            av_freep(&c->pb_buffer);
            return -1;
        }
        /* no need to write if no events */
        if (!(c->poll_entry->revents & POLLOUT))
            return 0;
        len = write(c->fd, c->buffer_ptr, c->buffer_end - c->buffer_ptr);
        if (len < 0) {
            if (errno != EAGAIN && errno != EINTR) {
                /* error : close connection */
                av_freep(&c->pb_buffer);
                return -1;
            }
        } else {
            c->buffer_ptr += len;
            c->data_count += len;
            if (c->buffer_ptr >= c->buffer_end) {
                /* all the buffer was sent : wait for a new request */
                av_freep(&c->pb_buffer);
                start_wait_request(c, 1);
            }
        }
        break;
916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940
    case RTSPSTATE_SEND_PACKET:
        if (c->poll_entry->revents & (POLLERR | POLLHUP)) {
            av_freep(&c->packet_buffer);
            return -1;
        }
        /* no need to write if no events */
        if (!(c->poll_entry->revents & POLLOUT))
            return 0;
        len = write(c->fd, c->packet_buffer_ptr, 
                    c->packet_buffer_end - c->packet_buffer_ptr);
        if (len < 0) {
            if (errno != EAGAIN && errno != EINTR) {
                /* error : close connection */
                av_freep(&c->packet_buffer);
                return -1;
            }
        } else {
            c->packet_buffer_ptr += len;
            if (c->packet_buffer_ptr >= c->packet_buffer_end) {
                /* all the buffer was sent : wait for a new request */
                av_freep(&c->packet_buffer);
                c->state = RTSPSTATE_WAIT_REQUEST;
            }
        }
        break;
941 942 943
    case HTTPSTATE_READY:
        /* nothing to do */
        break;
Fabrice Bellard's avatar
Fabrice Bellard committed
944 945 946 947 948 949
    default:
        return -1;
    }
    return 0;
}

950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
static int extract_rates(char *rates, int ratelen, const char *request)
{
    const char *p;

    for (p = request; *p && *p != '\r' && *p != '\n'; ) {
        if (strncasecmp(p, "Pragma:", 7) == 0) {
            const char *q = p + 7;

            while (*q && *q != '\n' && isspace(*q))
                q++;

            if (strncasecmp(q, "stream-switch-entry=", 20) == 0) {
                int stream_no;
                int rate_no;

                q += 20;

967
                memset(rates, 0xff, ratelen);
968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997

                while (1) {
                    while (*q && *q != '\n' && *q != ':')
                        q++;

                    if (sscanf(q, ":%d:%d", &stream_no, &rate_no) != 2) {
                        break;
                    }
                    stream_no--;
                    if (stream_no < ratelen && stream_no >= 0) {
                        rates[stream_no] = rate_no;
                    }

                    while (*q && *q != '\n' && !isspace(*q))
                        q++;
                }

                return 1;
            }
        }
        p = strchr(p, '\n');
        if (!p)
            break;

        p++;
    }

    return 0;
}

998
static int find_stream_in_feed(FFStream *feed, AVCodecContext *codec, int bit_rate)
999 1000
{
    int i;
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
    int best_bitrate = 100000000;
    int best = -1;

    for (i = 0; i < feed->nb_streams; i++) {
        AVCodecContext *feed_codec = &feed->streams[i]->codec;

        if (feed_codec->codec_id != codec->codec_id ||
            feed_codec->sample_rate != codec->sample_rate ||
            feed_codec->width != codec->width ||
            feed_codec->height != codec->height) {
            continue;
        }

        /* Potential stream */

        /* We want the fastest stream less than bit_rate, or the slowest 
         * faster than bit_rate
         */

        if (feed_codec->bit_rate <= bit_rate) {
            if (best_bitrate > bit_rate || feed_codec->bit_rate > best_bitrate) {
                best_bitrate = feed_codec->bit_rate;
                best = i;
            }
        } else {
            if (feed_codec->bit_rate < best_bitrate) {
                best_bitrate = feed_codec->bit_rate;
                best = i;
            }
        }
    }

    return best;
}

static int modify_current_stream(HTTPContext *c, char *rates)
{
    int i;
    FFStream *req = c->stream;
    int action_required = 0;
1041

1042 1043 1044 1045
    /* Not much we can do for a feed */
    if (!req->feed)
        return 0;

1046 1047 1048 1049 1050
    for (i = 0; i < req->nb_streams; i++) {
        AVCodecContext *codec = &req->streams[i]->codec;

        switch(rates[i]) {
            case 0:
1051
                c->switch_feed_streams[i] = req->feed_streams[i];
1052 1053
                break;
            case 1:
1054
                c->switch_feed_streams[i] = find_stream_in_feed(req->feed, codec, codec->bit_rate / 2);
1055 1056
                break;
            case 2:
1057 1058 1059 1060 1061 1062 1063
                /* Wants off or slow */
                c->switch_feed_streams[i] = find_stream_in_feed(req->feed, codec, codec->bit_rate / 4);
#ifdef WANTS_OFF
                /* This doesn't work well when it turns off the only stream! */
                c->switch_feed_streams[i] = -2;
                c->feed_streams[i] = -2;
#endif
1064 1065 1066
                break;
        }

1067 1068 1069
        if (c->switch_feed_streams[i] >= 0 && c->switch_feed_streams[i] != c->feed_streams[i])
            action_required = 1;
    }
1070

1071 1072
    return action_required;
}
1073 1074


1075 1076 1077 1078 1079 1080
static void do_switch_stream(HTTPContext *c, int i)
{
    if (c->switch_feed_streams[i] >= 0) {
#ifdef PHILIP        
        c->feed_streams[i] = c->switch_feed_streams[i];
#endif
1081

1082
        /* Now update the stream */
1083
    }
1084
    c->switch_feed_streams[i] = -1;
1085
}
1086

1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
/* XXX: factorize in utils.c ? */
/* XXX: take care with different space meaning */
static void skip_spaces(const char **pp)
{
    const char *p;
    p = *pp;
    while (*p == ' ' || *p == '\t')
        p++;
    *pp = p;
}

static void get_word(char *buf, int buf_size, const char **pp)
{
    const char *p;
    char *q;

    p = *pp;
    skip_spaces(&p);
    q = buf;
    while (!isspace(*p) && *p != '\0') {
        if ((q - buf) < buf_size - 1)
            *q++ = *p;
        p++;
    }
    if (buf_size > 0)
        *q = '\0';
    *pp = p;
}

1116 1117 1118 1119 1120
static int validate_acl(FFStream *stream, HTTPContext *c)
{
    enum IPAddressAction last_action = IP_DENY;
    IPAddressACL *acl;
    struct in_addr *src = &c->from_addr.sin_addr;
1121
    unsigned long src_addr = ntohl(src->s_addr);
1122 1123

    for (acl = stream->acl; acl; acl = acl->next) {
1124
        if (src_addr >= acl->first.s_addr && src_addr <= acl->last.s_addr) {
1125 1126 1127 1128 1129 1130 1131 1132 1133
            return (acl->action == IP_ALLOW) ? 1 : 0;
        }
        last_action = acl->action;
    }

    /* Nothing matched, so return not the last action */
    return (last_action == IP_DENY) ? 1 : 0;
}

1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
/* compute the real filename of a file by matching it without its
   extensions to all the stream filenames */
static void compute_real_filename(char *filename, int max_size)
{
    char file1[1024];
    char file2[1024];
    char *p;
    FFStream *stream;

    /* compute filename by matching without the file extensions */
    pstrcpy(file1, sizeof(file1), filename);
    p = strrchr(file1, '.');
    if (p)
        *p = '\0';
    for(stream = first_stream; stream != NULL; stream = stream->next) {
        pstrcpy(file2, sizeof(file2), stream->filename);
        p = strrchr(file2, '.');
        if (p)
            *p = '\0';
        if (!strcmp(file1, file2)) {
            pstrcpy(filename, max_size, stream->filename);
            break;
        }
    }
}

enum RedirType {
    REDIR_NONE,
    REDIR_ASX,
    REDIR_RAM,
    REDIR_ASF,
    REDIR_RTSP,
    REDIR_SDP,
};

Fabrice Bellard's avatar
Fabrice Bellard committed
1169 1170 1171 1172 1173
/* parse http request and prepare header */
static int http_parse_request(HTTPContext *c)
{
    char *p;
    int post;
1174
    enum RedirType redir_type;
Fabrice Bellard's avatar
Fabrice Bellard committed
1175 1176 1177 1178 1179 1180 1181
    char cmd[32];
    char info[1024], *filename;
    char url[1024], *q;
    char protocol[32];
    char msg[1024];
    const char *mime_type;
    FFStream *stream;
1182
    int i;
1183
    char ratebuf[32];
1184
    char *useragent = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
1185 1186

    p = c->buffer;
1187
    get_word(cmd, sizeof(cmd), (const char **)&p);
1188
    pstrcpy(c->method, sizeof(c->method), cmd);
1189

Fabrice Bellard's avatar
Fabrice Bellard committed
1190 1191 1192 1193 1194 1195 1196
    if (!strcmp(cmd, "GET"))
        post = 0;
    else if (!strcmp(cmd, "POST"))
        post = 1;
    else
        return -1;

1197
    get_word(url, sizeof(url), (const char **)&p);
1198
    pstrcpy(c->url, sizeof(c->url), url);
1199

1200
    get_word(protocol, sizeof(protocol), (const char **)&p);
Fabrice Bellard's avatar
Fabrice Bellard committed
1201 1202
    if (strcmp(protocol, "HTTP/1.0") && strcmp(protocol, "HTTP/1.1"))
        return -1;
1203

1204
    pstrcpy(c->protocol, sizeof(c->protocol), protocol);
Fabrice Bellard's avatar
Fabrice Bellard committed
1205 1206 1207 1208 1209 1210 1211 1212
    
    /* find the filename and the optional info string in the request */
    p = url;
    if (*p == '/')
        p++;
    filename = p;
    p = strchr(p, '?');
    if (p) {
1213
        pstrcpy(info, sizeof(info), p);
Fabrice Bellard's avatar
Fabrice Bellard committed
1214 1215 1216 1217 1218
        *p = '\0';
    } else {
        info[0] = '\0';
    }

1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
    for (p = c->buffer; *p && *p != '\r' && *p != '\n'; ) {
        if (strncasecmp(p, "User-Agent:", 11) == 0) {
            useragent = p + 11;
            if (*useragent && *useragent != '\n' && isspace(*useragent))
                useragent++;
            break;
        }
        p = strchr(p, '\n');
        if (!p)
            break;

        p++;
    }

1233 1234 1235
    redir_type = REDIR_NONE;
    if (match_ext(filename, "asx")) {
        redir_type = REDIR_ASX;
1236
        filename[strlen(filename)-1] = 'f';
1237
    } else if (match_ext(filename, "asf") &&
1238 1239
        (!useragent || strncasecmp(useragent, "NSPlayer", 8) != 0)) {
        /* if this isn't WMP or lookalike, return the redirector file */
1240 1241 1242
        redir_type = REDIR_ASF;
    } else if (match_ext(filename, "rpm,ram")) {
        redir_type = REDIR_RAM;
1243
        strcpy(filename + strlen(filename)-2, "m");
1244 1245 1246 1247 1248 1249
    } else if (match_ext(filename, "rtsp")) {
        redir_type = REDIR_RTSP;
        compute_real_filename(filename, sizeof(url) - 1);
    } else if (match_ext(filename, "sdp")) {
        redir_type = REDIR_SDP;
        compute_real_filename(filename, sizeof(url) - 1);
1250
    }
1251
    
Fabrice Bellard's avatar
Fabrice Bellard committed
1252 1253
    stream = first_stream;
    while (stream != NULL) {
1254
        if (!strcmp(stream->filename, filename) && validate_acl(stream, c))
Fabrice Bellard's avatar
Fabrice Bellard committed
1255 1256 1257 1258
            break;
        stream = stream->next;
    }
    if (stream == NULL) {
1259
        snprintf(msg, sizeof(msg), "File '%s' not found", url);
Fabrice Bellard's avatar
Fabrice Bellard committed
1260 1261
        goto send_error;
    }
1262

1263 1264 1265 1266 1267 1268 1269
    c->stream = stream;
    memcpy(c->feed_streams, stream->feed_streams, sizeof(c->feed_streams));
    memset(c->switch_feed_streams, -1, sizeof(c->switch_feed_streams));

    if (stream->stream_type == STREAM_TYPE_REDIRECT) {
        c->http_error = 301;
        q = c->buffer;
1270 1271 1272 1273 1274 1275 1276
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "HTTP/1.0 301 Moved\r\n");
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Location: %s\r\n", stream->feed_filename);
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Content-type: text/html\r\n");
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "\r\n");
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "<html><head><title>Moved</title></head><body>\r\n");
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "You should be <a href=\"%s\">redirected</a>.\r\n", stream->feed_filename);
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "</body></html>\r\n");
1277 1278 1279 1280 1281 1282 1283 1284

        /* prepare output buffer */
        c->buffer_ptr = c->buffer;
        c->buffer_end = q;
        c->state = HTTPSTATE_SEND_HEADER;
        return 0;
    }

1285 1286
    /* If this is WMP, get the rate information */
    if (extract_rates(ratebuf, sizeof(ratebuf), c->buffer)) {
1287 1288 1289 1290 1291 1292
        if (modify_current_stream(c, ratebuf)) {
            for (i = 0; i < sizeof(c->feed_streams) / sizeof(c->feed_streams[0]); i++) {
                if (c->switch_feed_streams[i] >= 0)
                    do_switch_stream(c, i);
            }
        }
1293 1294
    }

1295
    if (post == 0 && stream->stream_type == STREAM_TYPE_LIVE) {
1296
        current_bandwidth += stream->bandwidth;
1297
    }
1298 1299
    
    if (post == 0 && max_bandwidth < current_bandwidth) {
1300 1301
        c->http_error = 200;
        q = c->buffer;
1302 1303 1304 1305 1306 1307
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "HTTP/1.0 200 Server too busy\r\n");
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Content-type: text/html\r\n");
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "\r\n");
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "<html><head><title>Too busy</title></head><body>\r\n");
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "The server is too busy to serve your request at this time.<p>\r\n");
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "The bandwidth being served (including your stream) is %dkbit/sec, and this exceeds the limit of %dkbit/sec\r\n",
1308
            current_bandwidth, max_bandwidth);
1309
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "</body></html>\r\n");
1310 1311 1312 1313 1314 1315 1316 1317

        /* prepare output buffer */
        c->buffer_ptr = c->buffer;
        c->buffer_end = q;
        c->state = HTTPSTATE_SEND_HEADER;
        return 0;
    }
    
1318
    if (redir_type != REDIR_NONE) {
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
        char *hostinfo = 0;
        
        for (p = c->buffer; *p && *p != '\r' && *p != '\n'; ) {
            if (strncasecmp(p, "Host:", 5) == 0) {
                hostinfo = p + 5;
                break;
            }
            p = strchr(p, '\n');
            if (!p)
                break;

            p++;
        }

        if (hostinfo) {
            char *eoh;
            char hostbuf[260];

            while (isspace(*hostinfo))
                hostinfo++;

            eoh = strchr(hostinfo, '\n');
            if (eoh) {
                if (eoh[-1] == '\r')
                    eoh--;

                if (eoh - hostinfo < sizeof(hostbuf) - 1) {
                    memcpy(hostbuf, hostinfo, eoh - hostinfo);
                    hostbuf[eoh - hostinfo] = 0;

                    c->http_error = 200;
                    q = c->buffer;
1351 1352
                    switch(redir_type) {
                    case REDIR_ASX:
1353 1354 1355 1356 1357 1358
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "HTTP/1.0 200 ASX Follows\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Content-type: video/x-ms-asf\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "<ASX Version=\"3\">\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "<!-- Autogenerated by ffserver -->\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "<ENTRY><REF HREF=\"http://%s/%s%s\"/></ENTRY>\r\n", 
1359
                                hostbuf, filename, info);
1360
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "</ASX>\r\n");
1361 1362
                        break;
                    case REDIR_RAM:
1363 1364 1365 1366 1367
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "HTTP/1.0 200 RAM Follows\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Content-type: audio/x-pn-realaudio\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "# Autogenerated by ffserver\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "http://%s/%s%s\r\n", 
1368
                                hostbuf, filename, info);
1369 1370
                        break;
                    case REDIR_ASF:
1371 1372 1373 1374 1375
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "HTTP/1.0 200 ASF Redirect follows\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Content-type: video/x-ms-asf\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "[Reference]\r\n");
                        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Ref1=http://%s/%s%s\r\n", 
1376
                                hostbuf, filename, info);
1377 1378 1379 1380 1381 1382 1383 1384 1385
                        break;
                    case REDIR_RTSP:
                        {
                            char hostname[256], *p;
                            /* extract only hostname */
                            pstrcpy(hostname, sizeof(hostname), hostbuf);
                            p = strrchr(hostname, ':');
                            if (p)
                                *p = '\0';
1386
                            q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "HTTP/1.0 200 RTSP Redirect follows\r\n");
1387
                            /* XXX: incorrect mime type ? */
1388 1389 1390
                            q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Content-type: application/x-rtsp\r\n");
                            q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "\r\n");
                            q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "rtsp://%s:%d/%s\r\n", 
1391 1392 1393 1394 1395 1396
                                         hostname, ntohs(my_rtsp_addr.sin_port), 
                                         filename);
                        }
                        break;
                    case REDIR_SDP:
                        {
1397
                            uint8_t *sdp_data;
1398 1399 1400
                            int sdp_data_size, len;
                            struct sockaddr_in my_addr;

1401 1402 1403
                            q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "HTTP/1.0 200 OK\r\n");
                            q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Content-type: application/sdp\r\n");
                            q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "\r\n");
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420

                            len = sizeof(my_addr);
                            getsockname(c->fd, (struct sockaddr *)&my_addr, &len);
                            
                            /* XXX: should use a dynamic buffer */
                            sdp_data_size = prepare_sdp_description(stream, 
                                                                    &sdp_data, 
                                                                    my_addr.sin_addr);
                            if (sdp_data_size > 0) {
                                memcpy(q, sdp_data, sdp_data_size);
                                q += sdp_data_size;
                                *q = '\0';
                                av_free(sdp_data);
                            }
                        }
                        break;
                    default:
1421
                        av_abort();
1422
                        break;
1423
                    }
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433

                    /* prepare output buffer */
                    c->buffer_ptr = c->buffer;
                    c->buffer_end = q;
                    c->state = HTTPSTATE_SEND_HEADER;
                    return 0;
                }
            }
        }

1434
        snprintf(msg, sizeof(msg), "ASX/RAM file not handled");
1435
        goto send_error;
Fabrice Bellard's avatar
Fabrice Bellard committed
1436 1437
    }

1438
    stream->conns_served++;
1439

Fabrice Bellard's avatar
Fabrice Bellard committed
1440 1441 1442 1443 1444
    /* XXX: add there authenticate and IP match */

    if (post) {
        /* if post, it means a feed is being sent */
        if (!stream->is_feed) {
1445 1446 1447 1448
            /* However it might be a status report from WMP! Lets log the data
             * as it might come in handy one day
             */
            char *logline = 0;
1449
            int client_id = 0;
1450 1451 1452 1453 1454 1455
            
            for (p = c->buffer; *p && *p != '\r' && *p != '\n'; ) {
                if (strncasecmp(p, "Pragma: log-line=", 17) == 0) {
                    logline = p;
                    break;
                }
1456 1457 1458
                if (strncasecmp(p, "Pragma: client-id=", 18) == 0) {
                    client_id = strtol(p + 18, 0, 10);
                }
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
                p = strchr(p, '\n');
                if (!p)
                    break;

                p++;
            }

            if (logline) {
                char *eol = strchr(logline, '\n');

                logline += 17;

                if (eol) {
                    if (eol[-1] == '\r')
                        eol--;
Falk Hüffner's avatar
Falk Hüffner committed
1474
                    http_log("%.*s\n", (int) (eol - logline), logline);
1475 1476 1477
                    c->suppress_log = 1;
                }
            }
1478

1479 1480
#ifdef DEBUG_WMP
            http_log("\nGot request:\n%s\n", c->buffer);
1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
#endif

            if (client_id && extract_rates(ratebuf, sizeof(ratebuf), c->buffer)) {
                HTTPContext *wmpc;

                /* Now we have to find the client_id */
                for (wmpc = first_http_ctx; wmpc; wmpc = wmpc->next) {
                    if (wmpc->wmp_client_id == client_id)
                        break;
                }

                if (wmpc) {
1493 1494
                    if (modify_current_stream(wmpc, ratebuf)) {
                        wmpc->switch_pending = 1;
1495 1496 1497
                    }
                }
            }
1498
            
1499
            snprintf(msg, sizeof(msg), "POST command not handled");
1500
            c->stream = 0;
Fabrice Bellard's avatar
Fabrice Bellard committed
1501 1502 1503
            goto send_error;
        }
        if (http_start_receive_data(c) < 0) {
1504
            snprintf(msg, sizeof(msg), "could not open feed");
Fabrice Bellard's avatar
Fabrice Bellard committed
1505 1506 1507 1508 1509 1510 1511
            goto send_error;
        }
        c->http_error = 0;
        c->state = HTTPSTATE_RECEIVE_DATA;
        return 0;
    }

1512
#ifdef DEBUG_WMP
1513
    if (strcmp(stream->filename + strlen(stream->filename) - 4, ".asf") == 0) {
1514
        http_log("\nGot request:\n%s\n", c->buffer);
1515 1516 1517
    }
#endif

Fabrice Bellard's avatar
Fabrice Bellard committed
1518 1519 1520 1521 1522
    if (c->stream->stream_type == STREAM_TYPE_STATUS)
        goto send_stats;

    /* open input stream */
    if (open_input_stream(c, info) < 0) {
1523
        snprintf(msg, sizeof(msg), "Input stream corresponding to '%s' not found", url);
Fabrice Bellard's avatar
Fabrice Bellard committed
1524 1525 1526 1527 1528
        goto send_error;
    }

    /* prepare http header */
    q = c->buffer;
1529
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "HTTP/1.0 200 OK\r\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1530 1531 1532
    mime_type = c->stream->fmt->mime_type;
    if (!mime_type)
        mime_type = "application/x-octet_stream";
1533
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Pragma: no-cache\r\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1534 1535

    /* for asf, we need extra headers */
1536
    if (!strcmp(c->stream->fmt->name,"asf_stream")) {
1537 1538
        /* Need to allocate a client id */

1539
        c->wmp_client_id = random() & 0x7fffffff;
1540

1541
        q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Server: Cougar 4.1.0.3923\r\nCache-Control: no-cache\r\nPragma: client-id=%d\r\nPragma: features=\"broadcast\"\r\n", c->wmp_client_id);
Fabrice Bellard's avatar
Fabrice Bellard committed
1542
    }
1543 1544
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Content-Type: %s\r\n", mime_type);
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "\r\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554
    
    /* prepare output buffer */
    c->http_error = 0;
    c->buffer_ptr = c->buffer;
    c->buffer_end = q;
    c->state = HTTPSTATE_SEND_HEADER;
    return 0;
 send_error:
    c->http_error = 404;
    q = c->buffer;
1555 1556 1557 1558 1559 1560 1561
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "HTTP/1.0 404 Not Found\r\n");
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "Content-type: %s\r\n", "text/html");
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "\r\n");
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "<HTML>\n");
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "<HEAD><TITLE>404 Not Found</TITLE></HEAD>\n");
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "<BODY>%s</BODY>\n", msg);
    q += snprintf(q, q - (char *) c->buffer + c->buffer_size, "</HTML>\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575

    /* prepare output buffer */
    c->buffer_ptr = c->buffer;
    c->buffer_end = q;
    c->state = HTTPSTATE_SEND_HEADER;
    return 0;
 send_stats:
    compute_stats(c);
    c->http_error = 200; /* horrible : we use this value to avoid
                            going to the send data state */
    c->state = HTTPSTATE_SEND_HEADER;
    return 0;
}

1576
static void fmt_bytecount(ByteIOContext *pb, int64_t count)
1577 1578 1579 1580 1581 1582 1583
{
    static const char *suffix = " kMGTP";
    const char *s;

    for (s = suffix; count >= 100000 && s[1]; count /= 1000, s++) {
    }

1584
    url_fprintf(pb, "%lld%c", count, *s);
1585 1586
}

Fabrice Bellard's avatar
Fabrice Bellard committed
1587 1588 1589 1590
static void compute_stats(HTTPContext *c)
{
    HTTPContext *c1;
    FFStream *stream;
1591
    char *p;
Fabrice Bellard's avatar
Fabrice Bellard committed
1592
    time_t ti;
1593 1594
    int i, len;
    ByteIOContext pb1, *pb = &pb1;
1595

1596 1597
    if (url_open_dyn_buf(pb) < 0) {
        /* XXX: return an error ? */
1598
        c->buffer_ptr = c->buffer;
1599 1600
        c->buffer_end = c->buffer;
        return;
1601
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
1602

1603 1604 1605 1606
    url_fprintf(pb, "HTTP/1.0 200 OK\r\n");
    url_fprintf(pb, "Content-type: %s\r\n", "text/html");
    url_fprintf(pb, "Pragma: no-cache\r\n");
    url_fprintf(pb, "\r\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1607
    
1608
    url_fprintf(pb, "<HEAD><TITLE>FFServer Status</TITLE>\n");
1609
    if (c->stream->feed_filename) {
1610
        url_fprintf(pb, "<link rel=\"shortcut icon\" href=\"%s\">\n", c->stream->feed_filename);
1611
    }
1612 1613
    url_fprintf(pb, "</HEAD>\n<BODY>");
    url_fprintf(pb, "<H1>FFServer Status</H1>\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1614
    /* format status */
1615 1616 1617
    url_fprintf(pb, "<H2>Available Streams</H2>\n");
    url_fprintf(pb, "<TABLE cellspacing=0 cellpadding=4>\n");
    url_fprintf(pb, "<TR><Th valign=top>Path<th align=left>Served<br>Conns<Th><br>bytes<Th valign=top>Format<Th>Bit rate<br>kbits/s<Th align=left>Video<br>kbits/s<th><br>Codec<Th align=left>Audio<br>kbits/s<th><br>Codec<Th align=left valign=top>Feed\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1618 1619
    stream = first_stream;
    while (stream != NULL) {
1620 1621 1622
        char sfilename[1024];
        char *eosf;

1623
        if (stream->feed != stream) {
1624
            pstrcpy(sfilename, sizeof(sfilename) - 10, stream->filename);
1625 1626 1627 1628 1629 1630
            eosf = sfilename + strlen(sfilename);
            if (eosf - sfilename >= 4) {
                if (strcmp(eosf - 4, ".asf") == 0) {
                    strcpy(eosf - 4, ".asx");
                } else if (strcmp(eosf - 3, ".rm") == 0) {
                    strcpy(eosf - 3, ".ram");
1631
                } else if (stream->fmt == &rtp_mux) {
1632 1633 1634
                    /* generate a sample RTSP director if
                       unicast. Generate an SDP redirector if
                       multicast */
1635 1636 1637
                    eosf = strrchr(sfilename, '.');
                    if (!eosf)
                        eosf = sfilename + strlen(sfilename);
1638 1639 1640 1641
                    if (stream->is_multicast)
                        strcpy(eosf, ".sdp");
                    else
                        strcpy(eosf, ".rtsp");
1642
                }
1643
            }
1644
            
1645
            url_fprintf(pb, "<TR><TD><A HREF=\"/%s\">%s</A> ", 
1646
                         sfilename, stream->filename);
1647
            url_fprintf(pb, "<td align=right> %d <td align=right> ",
1648
                        stream->conns_served);
1649
            fmt_bytecount(pb, stream->bytes_served);
1650 1651 1652 1653 1654
            switch(stream->stream_type) {
            case STREAM_TYPE_LIVE:
                {
                    int audio_bit_rate = 0;
                    int video_bit_rate = 0;
Zdenek Kabelac's avatar
Zdenek Kabelac committed
1655 1656 1657 1658
                    const char *audio_codec_name = "";
                    const char *video_codec_name = "";
                    const char *audio_codec_name_extra = "";
                    const char *video_codec_name_extra = "";
1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679

                    for(i=0;i<stream->nb_streams;i++) {
                        AVStream *st = stream->streams[i];
                        AVCodec *codec = avcodec_find_encoder(st->codec.codec_id);
                        switch(st->codec.codec_type) {
                        case CODEC_TYPE_AUDIO:
                            audio_bit_rate += st->codec.bit_rate;
                            if (codec) {
                                if (*audio_codec_name)
                                    audio_codec_name_extra = "...";
                                audio_codec_name = codec->name;
                            }
                            break;
                        case CODEC_TYPE_VIDEO:
                            video_bit_rate += st->codec.bit_rate;
                            if (codec) {
                                if (*video_codec_name)
                                    video_codec_name_extra = "...";
                                video_codec_name = codec->name;
                            }
                            break;
1680 1681 1682
                        case CODEC_TYPE_DATA:
                            video_bit_rate += st->codec.bit_rate;
                            break;
1683
                        default:
1684
                            av_abort();
1685
                        }
Fabrice Bellard's avatar
Fabrice Bellard committed
1686
                    }
1687
                    url_fprintf(pb, "<TD align=center> %s <TD align=right> %d <TD align=right> %d <TD> %s %s <TD align=right> %d <TD> %s %s", 
1688
                                 stream->fmt->name,
1689
                                 stream->bandwidth,
1690 1691 1692
                                 video_bit_rate / 1000, video_codec_name, video_codec_name_extra,
                                 audio_bit_rate / 1000, audio_codec_name, audio_codec_name_extra);
                    if (stream->feed) {
1693
                        url_fprintf(pb, "<TD>%s", stream->feed->filename);
1694
                    } else {
1695
                        url_fprintf(pb, "<TD>%s", stream->feed_filename);
1696
                    }
1697
                    url_fprintf(pb, "\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1698
                }
1699 1700
                break;
            default:
1701
                url_fprintf(pb, "<TD align=center> - <TD align=right> - <TD align=right> - <td><td align=right> - <TD>\n");
1702
                break;
Fabrice Bellard's avatar
Fabrice Bellard committed
1703 1704 1705 1706
            }
        }
        stream = stream->next;
    }
1707
    url_fprintf(pb, "</TABLE>\n");
1708 1709 1710 1711

    stream = first_stream;
    while (stream != NULL) {
        if (stream->feed == stream) {
1712
            url_fprintf(pb, "<h2>Feed %s</h2>", stream->filename);
1713
            if (stream->pid) {
1714
                url_fprintf(pb, "Running as pid %d.\n", stream->pid);
1715

1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
#if defined(linux) && !defined(CONFIG_NOCUTILS)
                {
                    FILE *pid_stat;
                    char ps_cmd[64];

                    /* This is somewhat linux specific I guess */
                    snprintf(ps_cmd, sizeof(ps_cmd), 
                             "ps -o \"%%cpu,cputime\" --no-headers %d", 
                             stream->pid);
                    
                    pid_stat = popen(ps_cmd, "r");
                    if (pid_stat) {
                        char cpuperc[10];
                        char cpuused[64];
                        
                        if (fscanf(pid_stat, "%10s %64s", cpuperc, 
                                   cpuused) == 2) {
                            url_fprintf(pb, "Currently using %s%% of the cpu. Total time used %s.\n",
                                         cpuperc, cpuused);
                        }
                        fclose(pid_stat);
1737 1738 1739 1740
                    }
                }
#endif

1741
                url_fprintf(pb, "<p>");
1742
            }
1743
            url_fprintf(pb, "<table cellspacing=0 cellpadding=4><tr><th>Stream<th>type<th>kbits/s<th align=left>codec<th align=left>Parameters\n");
1744 1745 1746 1747

            for (i = 0; i < stream->nb_streams; i++) {
                AVStream *st = stream->streams[i];
                AVCodec *codec = avcodec_find_encoder(st->codec.codec_id);
1748
                const char *type = "unknown";
1749 1750 1751
                char parameters[64];

                parameters[0] = 0;
1752 1753 1754 1755 1756 1757 1758

                switch(st->codec.codec_type) {
                case CODEC_TYPE_AUDIO:
                    type = "audio";
                    break;
                case CODEC_TYPE_VIDEO:
                    type = "video";
1759
                    snprintf(parameters, sizeof(parameters), "%dx%d, q=%d-%d, fps=%d", st->codec.width, st->codec.height,
1760
                                st->codec.qmin, st->codec.qmax, st->codec.frame_rate / st->codec.frame_rate_base);
1761 1762
                    break;
                default:
1763
                    av_abort();
1764
                }
1765
                url_fprintf(pb, "<tr><td align=right>%d<td>%s<td align=right>%d<td>%s<td>%s\n",
1766
                        i, type, st->codec.bit_rate/1000, codec ? codec->name : "", parameters);
1767
            }
1768
            url_fprintf(pb, "</table>\n");
1769 1770 1771 1772

        }       
        stream = stream->next;
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
    
#if 0
    {
        float avg;
        AVCodecContext *enc;
        char buf[1024];
        
        /* feed status */
        stream = first_feed;
        while (stream != NULL) {
1783 1784 1785
            url_fprintf(pb, "<H1>Feed '%s'</H1>\n", stream->filename);
            url_fprintf(pb, "<TABLE>\n");
            url_fprintf(pb, "<TR><TD>Parameters<TD>Frame count<TD>Size<TD>Avg bitrate (kbits/s)\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1786 1787 1788 1789 1790 1791 1792 1793 1794
            for(i=0;i<stream->nb_streams;i++) {
                AVStream *st = stream->streams[i];
                FeedData *fdata = st->priv_data;
                enc = &st->codec;
            
                avcodec_string(buf, sizeof(buf), enc);
                avg = fdata->avg_frame_size * (float)enc->rate * 8.0;
                if (enc->codec->type == CODEC_TYPE_AUDIO && enc->frame_size > 0)
                    avg /= enc->frame_size;
1795
                url_fprintf(pb, "<TR><TD>%s <TD> %d <TD> %Ld <TD> %0.1f\n", 
Fabrice Bellard's avatar
Fabrice Bellard committed
1796 1797
                             buf, enc->frame_number, fdata->data_count, avg / 1000.0);
            }
1798
            url_fprintf(pb, "</TABLE>\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1799 1800 1801 1802 1803 1804
            stream = stream->next_feed;
        }
    }
#endif

    /* connection status */
1805
    url_fprintf(pb, "<H2>Connection Status</H2>\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1806

1807
    url_fprintf(pb, "Number of connections: %d / %d<BR>\n",
Fabrice Bellard's avatar
Fabrice Bellard committed
1808 1809
                 nb_connections, nb_max_connections);

1810
    url_fprintf(pb, "Bandwidth in use: %dk / %dk<BR>\n",
1811
                 current_bandwidth, max_bandwidth);
1812

1813 1814
    url_fprintf(pb, "<TABLE>\n");
    url_fprintf(pb, "<TR><th>#<th>File<th>IP<th>Proto<th>State<th>Target bits/sec<th>Actual bits/sec<th>Bytes transferred\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1815 1816
    c1 = first_http_ctx;
    i = 0;
1817
    while (c1 != NULL) {
1818 1819 1820 1821
        int bitrate;
        int j;

        bitrate = 0;
1822 1823 1824 1825 1826 1827 1828 1829 1830
        if (c1->stream) {
            for (j = 0; j < c1->stream->nb_streams; j++) {
                if (!c1->stream->feed) {
                    bitrate += c1->stream->streams[j]->codec.bit_rate;
                } else {
                    if (c1->feed_streams[j] >= 0) {
                        bitrate += c1->stream->feed->streams[c1->feed_streams[j]]->codec.bit_rate;
                    }
                }
1831 1832 1833
            }
        }

Fabrice Bellard's avatar
Fabrice Bellard committed
1834 1835
        i++;
        p = inet_ntoa(c1->from_addr.sin_addr);
1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848
        url_fprintf(pb, "<TR><TD><B>%d</B><TD>%s%s<TD>%s<TD>%s<TD>%s<td align=right>", 
                    i, 
                    c1->stream ? c1->stream->filename : "", 
                    c1->state == HTTPSTATE_RECEIVE_DATA ? "(input)" : "",
                    p, 
                    c1->protocol,
                    http_state[c1->state]);
        fmt_bytecount(pb, bitrate);
        url_fprintf(pb, "<td align=right>");
        fmt_bytecount(pb, compute_datarate(&c1->datarate, c1->data_count) * 8);
        url_fprintf(pb, "<td align=right>");
        fmt_bytecount(pb, c1->data_count);
        url_fprintf(pb, "\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1849 1850
        c1 = c1->next;
    }
1851
    url_fprintf(pb, "</TABLE>\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1852 1853 1854 1855
    
    /* date */
    ti = time(NULL);
    p = ctime(&ti);
1856 1857
    url_fprintf(pb, "<HR size=1 noshade>Generated at %s", p);
    url_fprintf(pb, "</BODY>\n</HTML>\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
1858

1859 1860 1861
    len = url_close_dyn_buf(pb, &c->pb_buffer);
    c->buffer_ptr = c->pb_buffer;
    c->buffer_end = c->pb_buffer + len;
Fabrice Bellard's avatar
Fabrice Bellard committed
1862 1863
}

1864 1865
/* check if the parser needs to be opened for stream i */
static void open_parser(AVFormatContext *s, int i)
Fabrice Bellard's avatar
Fabrice Bellard committed
1866
{
1867 1868
    AVStream *st = s->streams[i];
    AVCodec *codec;
1869

1870 1871 1872 1873 1874 1875 1876
    if (!st->codec.codec) {
        codec = avcodec_find_decoder(st->codec.codec_id);
        if (codec && (codec->capabilities & CODEC_CAP_PARSE_ONLY)) {
            st->codec.parse_only = 1;
            if (avcodec_open(&st->codec, codec) < 0) {
                st->codec.parse_only = 0;
            }
1877 1878
        }
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
1879 1880 1881 1882 1883 1884 1885
}

static int open_input_stream(HTTPContext *c, const char *info)
{
    char buf[128];
    char input_filename[1024];
    AVFormatContext *s;
1886
    int buf_size, i;
1887
    int64_t stream_pos;
Fabrice Bellard's avatar
Fabrice Bellard committed
1888 1889 1890 1891 1892 1893 1894 1895

    /* find file name */
    if (c->stream->feed) {
        strcpy(input_filename, c->stream->feed->feed_filename);
        buf_size = FFM_PACKET_SIZE;
        /* compute position (absolute time) */
        if (find_info_tag(buf, sizeof(buf), "date", info)) {
            stream_pos = parse_date(buf, 0);
1896 1897
        } else if (find_info_tag(buf, sizeof(buf), "buffer", info)) {
            int prebuffer = strtol(buf, 0, 10);
1898
            stream_pos = av_gettime() - prebuffer * (int64_t)1000000;
Fabrice Bellard's avatar
Fabrice Bellard committed
1899
        } else {
1900
            stream_pos = av_gettime() - c->stream->prebuffer * (int64_t)1000;
Fabrice Bellard's avatar
Fabrice Bellard committed
1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
        }
    } else {
        strcpy(input_filename, c->stream->feed_filename);
        buf_size = 0;
        /* compute position (relative time) */
        if (find_info_tag(buf, sizeof(buf), "date", info)) {
            stream_pos = parse_date(buf, 1);
        } else {
            stream_pos = 0;
        }
    }
    if (input_filename[0] == '\0')
        return -1;

1915 1916 1917 1918 1919 1920
#if 0
    { time_t when = stream_pos / 1000000;
    http_log("Stream pos = %lld, time=%s", stream_pos, ctime(&when));
    }
#endif

Fabrice Bellard's avatar
Fabrice Bellard committed
1921
    /* open stream */
1922 1923
    if (av_open_input_file(&s, input_filename, c->stream->ifmt, 
                           buf_size, c->stream->ap_in) < 0) {
1924
        http_log("%s not found", input_filename);
Fabrice Bellard's avatar
Fabrice Bellard committed
1925
        return -1;
1926
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
1927
    c->fmt_in = s;
1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941
    
    /* open each parser */
    for(i=0;i<s->nb_streams;i++)
        open_parser(s, i);

    /* choose stream as clock source (we favorize video stream if
       present) for packet sending */
    c->pts_stream_index = 0;
    for(i=0;i<c->stream->nb_streams;i++) {
        if (c->pts_stream_index == 0 && 
            c->stream->streams[i]->codec.codec_type == CODEC_TYPE_VIDEO) {
            c->pts_stream_index = i;
        }
    }
Fabrice Bellard's avatar
Fabrice Bellard committed
1942

1943
#if 0
1944 1945
    if (c->fmt_in->iformat->read_seek) {
        c->fmt_in->iformat->read_seek(c->fmt_in, stream_pos);
Fabrice Bellard's avatar
Fabrice Bellard committed
1946
    }
1947
#endif
1948 1949 1950
    /* set the start time (needed for maxtime and RTP packet timing) */
    c->start_time = cur_time;
    c->first_pts = AV_NOPTS_VALUE;
Fabrice Bellard's avatar
Fabrice Bellard committed
1951 1952 1953
    return 0;
}

1954 1955
/* return the server clock (in us) */
static int64_t get_server_clock(HTTPContext *c)
1956
{
1957 1958
    /* compute current pts value from system time */
    return (int64_t)(cur_time - c->start_time) * 1000LL;
1959 1960
}

1961 1962 1963
/* return the estimated time at which the current packet must be sent
   (in us) */
static int64_t get_packet_send_clock(HTTPContext *c)
1964
{
1965
    int bytes_left, bytes_sent, frame_bytes;
1966
    
1967 1968 1969
    frame_bytes = c->cur_frame_bytes;
    if (frame_bytes <= 0) {
        return c->cur_pts;
1970
    } else {
1971 1972 1973
        bytes_left = c->buffer_end - c->buffer_ptr;
        bytes_sent = frame_bytes - bytes_left;
        return c->cur_pts + (c->cur_frame_duration * bytes_sent) / frame_bytes;
1974 1975 1976 1977 1978 1979 1980 1981 1982
    }
}


static int http_prepare_data(HTTPContext *c)
{
    int i, len, ret;
    AVFormatContext *ctx;

1983
    av_freep(&c->pb_buffer);
1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011
    switch(c->state) {
    case HTTPSTATE_SEND_DATA_HEADER:
        memset(&c->fmt_ctx, 0, sizeof(c->fmt_ctx));
        pstrcpy(c->fmt_ctx.author, sizeof(c->fmt_ctx.author), 
                c->stream->author);
        pstrcpy(c->fmt_ctx.comment, sizeof(c->fmt_ctx.comment), 
                c->stream->comment);
        pstrcpy(c->fmt_ctx.copyright, sizeof(c->fmt_ctx.copyright), 
                c->stream->copyright);
        pstrcpy(c->fmt_ctx.title, sizeof(c->fmt_ctx.title), 
                c->stream->title);

        /* open output stream by using specified codecs */
        c->fmt_ctx.oformat = c->stream->fmt;
        c->fmt_ctx.nb_streams = c->stream->nb_streams;
        for(i=0;i<c->fmt_ctx.nb_streams;i++) {
            AVStream *st;
            st = av_mallocz(sizeof(AVStream));
            c->fmt_ctx.streams[i] = st;
            /* if file or feed, then just take streams from FFStream struct */
            if (!c->stream->feed || 
                c->stream->feed == c->stream)
                memcpy(st, c->stream->streams[i], sizeof(AVStream));
            else
                memcpy(st, c->stream->feed->streams[c->stream->feed_streams[i]],
                           sizeof(AVStream));
            st->codec.frame_number = 0; /* XXX: should be done in
                                           AVStream, not in codec */
2012 2013 2014 2015
            /* I'm pretty sure that this is not correct...
             * However, without it, we crash
             */
            st->codec.coded_frame = &dummy_frame;
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025
        }
        c->got_key_frame = 0;

        /* prepare header and save header data in a stream */
        if (url_open_dyn_buf(&c->fmt_ctx.pb) < 0) {
            /* XXX: potential leak */
            return -1;
        }
        c->fmt_ctx.pb.is_streamed = 1;

2026
        av_set_parameters(&c->fmt_ctx, NULL);
2027 2028 2029 2030 2031 2032 2033
        av_write_header(&c->fmt_ctx);

        len = url_close_dyn_buf(&c->fmt_ctx.pb, &c->pb_buffer);
        c->buffer_ptr = c->pb_buffer;
        c->buffer_end = c->pb_buffer + len;

        c->state = HTTPSTATE_SEND_DATA;
Fabrice Bellard's avatar
Fabrice Bellard committed
2034 2035 2036 2037 2038 2039
        c->last_packet_sent = 0;
        break;
    case HTTPSTATE_SEND_DATA:
        /* find a new packet */
        {
            AVPacket pkt;
2040
            
Fabrice Bellard's avatar
Fabrice Bellard committed
2041 2042 2043 2044 2045 2046
            /* read a packet from the input stream */
            if (c->stream->feed) {
                ffm_set_write_index(c->fmt_in, 
                                    c->stream->feed->feed_write_index,
                                    c->stream->feed->feed_size);
            }
2047 2048

            if (c->stream->max_time && 
2049
                c->stream->max_time + c->start_time - cur_time < 0) {
2050 2051
                /* We have timed out */
                c->state = HTTPSTATE_SEND_DATA_TRAILER;
Fabrice Bellard's avatar
Fabrice Bellard committed
2052
            } else {
2053
            redo:
2054 2055 2056 2057 2058 2059 2060
                if (av_read_frame(c->fmt_in, &pkt) < 0) {
                    if (c->stream->feed && c->stream->feed->feed_opened) {
                        /* if coming from feed, it means we reached the end of the
                           ffm file, so must wait for more data */
                        c->state = HTTPSTATE_WAIT_FEED;
                        return 1; /* state changed */
                    } else {
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071
                        if (c->stream->loop) {
                            av_close_input_file(c->fmt_in);
                            c->fmt_in = NULL;
                            if (open_input_stream(c, "") < 0)
                                goto no_loop;
                            goto redo;
                        } else {
                        no_loop:
                            /* must send trailer now because eof or error */
                            c->state = HTTPSTATE_SEND_DATA_TRAILER;
                        }
2072 2073 2074
                    }
                } else {
                    /* update first pts if needed */
2075
                    if (c->first_pts == AV_NOPTS_VALUE) {
2076
                        c->first_pts = pkt.dts;
2077 2078
                        c->start_time = cur_time;
                    }
2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094
                    /* send it to the appropriate stream */
                    if (c->stream->feed) {
                        /* if coming from a feed, select the right stream */
                        if (c->switch_pending) {
                            c->switch_pending = 0;
                            for(i=0;i<c->stream->nb_streams;i++) {
                                if (c->switch_feed_streams[i] == pkt.stream_index) {
                                    if (pkt.flags & PKT_FLAG_KEY) {
                                        do_switch_stream(c, i);
                                    }
                                }
                                if (c->switch_feed_streams[i] >= 0) {
                                    c->switch_pending = 1;
                                }
                            }
                        }
2095
                        for(i=0;i<c->stream->nb_streams;i++) {
2096 2097
                            if (c->feed_streams[i] == pkt.stream_index) {
                                pkt.stream_index = i;
2098
                                if (pkt.flags & PKT_FLAG_KEY) {
2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110
                                    c->got_key_frame |= 1 << i;
                                }
                                /* See if we have all the key frames, then 
                                 * we start to send. This logic is not quite
                                 * right, but it works for the case of a 
                                 * single video stream with one or more
                                 * audio streams (for which every frame is 
                                 * typically a key frame). 
                                 */
                                if (!c->stream->send_on_key || 
                                    ((c->got_key_frame + 1) >> c->stream->nb_streams)) {
                                    goto send_it;
2111 2112 2113
                                }
                            }
                        }
2114 2115 2116 2117 2118 2119 2120 2121
                    } else {
                        AVCodecContext *codec;
                        
                    send_it:
                        /* specific handling for RTP: we use several
                           output stream (one for each RTP
                           connection). XXX: need more abstract handling */
                        if (c->is_packetized) {
2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137
                            AVStream *st;
                            /* compute send time and duration */
                            st = c->fmt_in->streams[pkt.stream_index];
                            c->cur_pts = pkt.dts;
                            if (st->start_time != AV_NOPTS_VALUE)
                                c->cur_pts -= st->start_time;
                            c->cur_frame_duration = pkt.duration;
#if 0
                            printf("index=%d pts=%0.3f duration=%0.6f\n",
                                   pkt.stream_index,
                                   (double)c->cur_pts / 
                                   AV_TIME_BASE,
                                   (double)c->cur_frame_duration / 
                                   AV_TIME_BASE);
#endif
                            /* find RTP context */
2138 2139
                            c->packet_stream_index = pkt.stream_index;
                            ctx = c->rtp_ctx[c->packet_stream_index];
2140 2141
                            if(!ctx) {
                              av_free_packet(&pkt);
2142
                              break;
2143
                            }
2144
                            codec = &ctx->streams[0]->codec;
2145 2146
                            /* only one stream per RTP connection */
                            pkt.stream_index = 0;
2147 2148 2149 2150
                        } else {
                            ctx = &c->fmt_ctx;
                            /* Fudge here */
                            codec = &ctx->streams[pkt.stream_index]->codec;
Fabrice Bellard's avatar
Fabrice Bellard committed
2151
                        }
2152
                        
2153
                        codec->coded_frame->key_frame = ((pkt.flags & PKT_FLAG_KEY) != 0);
2154
                        if (c->is_packetized) {
2155 2156 2157 2158 2159 2160
                            int max_packet_size;
                            if (c->rtp_protocol == RTSP_PROTOCOL_RTP_TCP)
                                max_packet_size = RTSP_TCP_MAX_PACKET_SIZE;
                            else
                                max_packet_size = url_get_max_packet_size(c->rtp_handles[c->packet_stream_index]);
                            ret = url_open_dyn_packet_buf(&ctx->pb, max_packet_size);
2161 2162 2163 2164 2165 2166 2167
                        } else {
                            ret = url_open_dyn_buf(&ctx->pb);
                        }
                        if (ret < 0) {
                            /* XXX: potential leak */
                            return -1;
                        }
2168
                        if (av_write_frame(ctx, &pkt)) {
2169 2170 2171 2172
                            c->state = HTTPSTATE_SEND_DATA_TRAILER;
                        }
                        
                        len = url_close_dyn_buf(&ctx->pb, &c->pb_buffer);
2173
                        c->cur_frame_bytes = len;
2174 2175 2176 2177
                        c->buffer_ptr = c->pb_buffer;
                        c->buffer_end = c->pb_buffer + len;
                        
                        codec->frame_number++;
2178 2179
                        if (len == 0)
                            goto redo;
2180
                    }
2181
                    av_free_packet(&pkt);
Fabrice Bellard's avatar
Fabrice Bellard committed
2182 2183 2184 2185 2186 2187 2188
                }
            }
        }
        break;
    default:
    case HTTPSTATE_SEND_DATA_TRAILER:
        /* last packet test ? */
2189
        if (c->last_packet_sent || c->is_packetized)
Fabrice Bellard's avatar
Fabrice Bellard committed
2190
            return -1;
2191
        ctx = &c->fmt_ctx;
Fabrice Bellard's avatar
Fabrice Bellard committed
2192
        /* prepare header */
2193 2194 2195 2196 2197 2198 2199 2200 2201
        if (url_open_dyn_buf(&ctx->pb) < 0) {
            /* XXX: potential leak */
            return -1;
        }
        av_write_trailer(ctx);
        len = url_close_dyn_buf(&ctx->pb, &c->pb_buffer);
        c->buffer_ptr = c->pb_buffer;
        c->buffer_end = c->pb_buffer + len;

Fabrice Bellard's avatar
Fabrice Bellard committed
2202 2203 2204 2205 2206 2207
        c->last_packet_sent = 1;
        break;
    }
    return 0;
}

2208 2209 2210
/* in bit/s */
#define SHORT_TERM_BANDWIDTH 8000000

Fabrice Bellard's avatar
Fabrice Bellard committed
2211
/* should convert the format at the same time */
2212 2213
/* send data starting at c->buffer_ptr to the output connection
   (either UDP or TCP connection) */
2214
static int http_send_data(HTTPContext *c)
Fabrice Bellard's avatar
Fabrice Bellard committed
2215
{
2216
    int len, ret;
Fabrice Bellard's avatar
Fabrice Bellard committed
2217

2218 2219 2220 2221 2222 2223 2224 2225
    for(;;) {
        if (c->buffer_ptr >= c->buffer_end) {
            ret = http_prepare_data(c);
            if (ret < 0)
                return -1;
            else if (ret != 0) {
                /* state change requested */
                break;
2226
            }
2227
        } else {
2228 2229 2230 2231 2232 2233 2234
            if (c->is_packetized) {
                /* RTP data output */
                len = c->buffer_end - c->buffer_ptr;
                if (len < 4) {
                    /* fail safe - should never happen */
                fail1:
                    c->buffer_ptr = c->buffer_end;
2235 2236
                    return 0;
                }
2237 2238 2239 2240 2241 2242
                len = (c->buffer_ptr[0] << 24) |
                    (c->buffer_ptr[1] << 16) |
                    (c->buffer_ptr[2] << 8) |
                    (c->buffer_ptr[3]);
                if (len > (c->buffer_end - c->buffer_ptr))
                    goto fail1;
2243 2244 2245 2246 2247 2248 2249 2250 2251 2252
                if ((get_packet_send_clock(c) - get_server_clock(c)) > 0) {
                    /* nothing to send yet: we can wait */
                    return 0;
                }

                c->data_count += len;
                update_datarate(&c->datarate, c->data_count);
                if (c->stream)
                    c->stream->bytes_served += len;

2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286
                if (c->rtp_protocol == RTSP_PROTOCOL_RTP_TCP) {
                    /* RTP packets are sent inside the RTSP TCP connection */
                    ByteIOContext pb1, *pb = &pb1;
                    int interleaved_index, size;
                    uint8_t header[4];
                    HTTPContext *rtsp_c;
                    
                    rtsp_c = c->rtsp_c;
                    /* if no RTSP connection left, error */
                    if (!rtsp_c)
                        return -1;
                    /* if already sending something, then wait. */
                    if (rtsp_c->state != RTSPSTATE_WAIT_REQUEST) {
                        break;
                    }
                    if (url_open_dyn_buf(pb) < 0)
                        goto fail1;
                    interleaved_index = c->packet_stream_index * 2;
                    /* RTCP packets are sent at odd indexes */
                    if (c->buffer_ptr[1] == 200)
                        interleaved_index++;
                    /* write RTSP TCP header */
                    header[0] = '$';
                    header[1] = interleaved_index;
                    header[2] = len >> 8;
                    header[3] = len;
                    put_buffer(pb, header, 4);
                    /* write RTP packet data */
                    c->buffer_ptr += 4;
                    put_buffer(pb, c->buffer_ptr, len);
                    size = url_close_dyn_buf(pb, &c->packet_buffer);
                    /* prepare asynchronous TCP sending */
                    rtsp_c->packet_buffer_ptr = c->packet_buffer;
                    rtsp_c->packet_buffer_end = c->packet_buffer + size;
2287
                    c->buffer_ptr += len;
2288
                    
2289 2290 2291 2292 2293
                    /* send everything we can NOW */
                    len = write(rtsp_c->fd, rtsp_c->packet_buffer_ptr, 
                                rtsp_c->packet_buffer_end - rtsp_c->packet_buffer_ptr);
                    if (len > 0) {
                        rtsp_c->packet_buffer_ptr += len;
2294
                    }
2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306
                    if (rtsp_c->packet_buffer_ptr < rtsp_c->packet_buffer_end) {
                        /* if we could not send all the data, we will
                           send it later, so a new state is needed to
                           "lock" the RTSP TCP connection */
                        rtsp_c->state = RTSPSTATE_SEND_PACKET;
                        break;
                    } else {
                        /* all data has been sent */
                        av_freep(&c->packet_buffer);
                    }
                } else {
                    /* send RTP packet directly in UDP */
2307 2308 2309
                    c->buffer_ptr += 4;
                    url_write(c->rtp_handles[c->packet_stream_index], 
                              c->buffer_ptr, len);
2310 2311
                    c->buffer_ptr += len;
                    /* here we continue as we can send several packets per 10 ms slot */
2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325
                }
            } else {
                /* TCP data output */
                len = write(c->fd, c->buffer_ptr, c->buffer_end - c->buffer_ptr);
                if (len < 0) {
                    if (errno != EAGAIN && errno != EINTR) {
                        /* error : close connection */
                        return -1;
                    } else {
                        return 0;
                    }
                } else {
                    c->buffer_ptr += len;
                }
2326 2327 2328 2329 2330
                c->data_count += len;
                update_datarate(&c->datarate, c->data_count);
                if (c->stream)
                    c->stream->bytes_served += len;
                break;
2331
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
2332
        }
2333
    } /* for(;;) */
Fabrice Bellard's avatar
Fabrice Bellard committed
2334 2335 2336 2337 2338 2339 2340 2341 2342 2343
    return 0;
}

static int http_start_receive_data(HTTPContext *c)
{
    int fd;

    if (c->stream->feed_opened)
        return -1;

2344 2345 2346 2347
    /* Don't permit writing to this one */
    if (c->stream->readonly)
        return -1;

Fabrice Bellard's avatar
Fabrice Bellard committed
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368
    /* open feed */
    fd = open(c->stream->feed_filename, O_RDWR);
    if (fd < 0)
        return -1;
    c->feed_fd = fd;
    
    c->stream->feed_write_index = ffm_read_write_index(fd);
    c->stream->feed_size = lseek(fd, 0, SEEK_END);
    lseek(fd, 0, SEEK_SET);

    /* init buffer input */
    c->buffer_ptr = c->buffer;
    c->buffer_end = c->buffer + FFM_PACKET_SIZE;
    c->stream->feed_opened = 1;
    return 0;
}
    
static int http_receive_data(HTTPContext *c)
{
    HTTPContext *c1;

2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383
    if (c->buffer_end > c->buffer_ptr) {
        int len;

        len = read(c->fd, c->buffer_ptr, c->buffer_end - c->buffer_ptr);
        if (len < 0) {
            if (errno != EAGAIN && errno != EINTR) {
                /* error : close connection */
                goto fail;
            }
        } else if (len == 0) {
            /* end of connection : close it */
            goto fail;
        } else {
            c->buffer_ptr += len;
            c->data_count += len;
2384
            update_datarate(&c->datarate, c->data_count);
2385 2386 2387
        }
    }

2388 2389 2390 2391 2392 2393 2394 2395
    if (c->buffer_ptr - c->buffer >= 2 && c->data_count > FFM_PACKET_SIZE) {
        if (c->buffer[0] != 'f' ||
            c->buffer[1] != 'm') {
            http_log("Feed stream has become desynchronized -- disconnecting\n");
            goto fail;
        }
    }

Fabrice Bellard's avatar
Fabrice Bellard committed
2396
    if (c->buffer_ptr >= c->buffer_end) {
2397
        FFStream *feed = c->stream;
Fabrice Bellard's avatar
Fabrice Bellard committed
2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425
        /* a packet has been received : write it in the store, except
           if header */
        if (c->data_count > FFM_PACKET_SIZE) {
            
            //            printf("writing pos=0x%Lx size=0x%Lx\n", feed->feed_write_index, feed->feed_size);
            /* XXX: use llseek or url_seek */
            lseek(c->feed_fd, feed->feed_write_index, SEEK_SET);
            write(c->feed_fd, c->buffer, FFM_PACKET_SIZE);
            
            feed->feed_write_index += FFM_PACKET_SIZE;
            /* update file size */
            if (feed->feed_write_index > c->stream->feed_size)
                feed->feed_size = feed->feed_write_index;

            /* handle wrap around if max file size reached */
            if (feed->feed_write_index >= c->stream->feed_max_size)
                feed->feed_write_index = FFM_PACKET_SIZE;

            /* write index */
            ffm_write_write_index(c->feed_fd, feed->feed_write_index);

            /* wake up any waiting connections */
            for(c1 = first_http_ctx; c1 != NULL; c1 = c1->next) {
                if (c1->state == HTTPSTATE_WAIT_FEED && 
                    c1->stream->feed == c->stream->feed) {
                    c1->state = HTTPSTATE_SEND_DATA;
                }
            }
2426 2427 2428
        } else {
            /* We have a header in our hands that contains useful data */
            AVFormatContext s;
2429
            AVInputFormat *fmt_in;
2430 2431 2432 2433 2434 2435 2436 2437 2438
            ByteIOContext *pb = &s.pb;
            int i;

            memset(&s, 0, sizeof(s));

            url_open_buf(pb, c->buffer, c->buffer_end - c->buffer, URL_RDONLY);
            pb->buf_end = c->buffer_end;        /* ?? */
            pb->is_streamed = 1;

2439 2440 2441 2442 2443
            /* use feed output format name to find corresponding input format */
            fmt_in = av_find_input_format(feed->fmt->name);
            if (!fmt_in)
                goto fail;

2444 2445 2446 2447 2448 2449
            if (fmt_in->priv_data_size > 0) {
                s.priv_data = av_mallocz(fmt_in->priv_data_size);
                if (!s.priv_data)
                    goto fail;
	    } else
	        s.priv_data = NULL;
2450

2451
            if (fmt_in->read_header(&s, 0) < 0) {
2452
                av_freep(&s.priv_data);
2453 2454 2455 2456 2457
                goto fail;
            }

            /* Now we have the actual streams */
            if (s.nb_streams != feed->nb_streams) {
2458
                av_freep(&s.priv_data);
2459 2460 2461
                goto fail;
            }
            for (i = 0; i < s.nb_streams; i++) {
2462 2463
                memcpy(&feed->streams[i]->codec, 
                       &s.streams[i]->codec, sizeof(AVCodecContext));
2464
            } 
2465
            av_freep(&s.priv_data);
Fabrice Bellard's avatar
Fabrice Bellard committed
2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476
        }
        c->buffer_ptr = c->buffer;
    }

    return 0;
 fail:
    c->stream->feed_opened = 0;
    close(c->feed_fd);
    return -1;
}

2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580
/********************************************************************/
/* RTSP handling */

static void rtsp_reply_header(HTTPContext *c, enum RTSPStatusCode error_number)
{
    const char *str;
    time_t ti;
    char *p;
    char buf2[32];

    switch(error_number) {
#define DEF(n, c, s) case c: str = s; break; 
#include "rtspcodes.h"
#undef DEF
    default:
        str = "Unknown Error";
        break;
    }
     
    url_fprintf(c->pb, "RTSP/1.0 %d %s\r\n", error_number, str);
    url_fprintf(c->pb, "CSeq: %d\r\n", c->seq);

    /* output GMT time */
    ti = time(NULL);
    p = ctime(&ti);
    strcpy(buf2, p);
    p = buf2 + strlen(p) - 1;
    if (*p == '\n')
        *p = '\0';
    url_fprintf(c->pb, "Date: %s GMT\r\n", buf2);
}

static void rtsp_reply_error(HTTPContext *c, enum RTSPStatusCode error_number)
{
    rtsp_reply_header(c, error_number);
    url_fprintf(c->pb, "\r\n");
}

static int rtsp_parse_request(HTTPContext *c)
{
    const char *p, *p1, *p2;
    char cmd[32];
    char url[1024];
    char protocol[32];
    char line[1024];
    ByteIOContext pb1;
    int len;
    RTSPHeader header1, *header = &header1;
    
    c->buffer_ptr[0] = '\0';
    p = c->buffer;
    
    get_word(cmd, sizeof(cmd), &p);
    get_word(url, sizeof(url), &p);
    get_word(protocol, sizeof(protocol), &p);

    pstrcpy(c->method, sizeof(c->method), cmd);
    pstrcpy(c->url, sizeof(c->url), url);
    pstrcpy(c->protocol, sizeof(c->protocol), protocol);

    c->pb = &pb1;
    if (url_open_dyn_buf(c->pb) < 0) {
        /* XXX: cannot do more */
        c->pb = NULL; /* safety */
        return -1;
    }

    /* check version name */
    if (strcmp(protocol, "RTSP/1.0") != 0) {
        rtsp_reply_error(c, RTSP_STATUS_VERSION);
        goto the_end;
    }

    /* parse each header line */
    memset(header, 0, sizeof(RTSPHeader));
    /* skip to next line */
    while (*p != '\n' && *p != '\0')
        p++;
    if (*p == '\n')
        p++;
    while (*p != '\0') {
        p1 = strchr(p, '\n');
        if (!p1)
            break;
        p2 = p1;
        if (p2 > p && p2[-1] == '\r')
            p2--;
        /* skip empty line */
        if (p2 == p)
            break;
        len = p2 - p;
        if (len > sizeof(line) - 1)
            len = sizeof(line) - 1;
        memcpy(line, p, len);
        line[len] = '\0';
        rtsp_parse_line(header, line);
        p = p1 + 1;
    }

    /* handle sequence number */
    c->seq = header->seq;

    if (!strcmp(cmd, "DESCRIBE")) {
        rtsp_cmd_describe(c, url);
2581 2582
    } else if (!strcmp(cmd, "OPTIONS")) {
        rtsp_cmd_options(c, url);
2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606
    } else if (!strcmp(cmd, "SETUP")) {
        rtsp_cmd_setup(c, url, header);
    } else if (!strcmp(cmd, "PLAY")) {
        rtsp_cmd_play(c, url, header);
    } else if (!strcmp(cmd, "PAUSE")) {
        rtsp_cmd_pause(c, url, header);
    } else if (!strcmp(cmd, "TEARDOWN")) {
        rtsp_cmd_teardown(c, url, header);
    } else {
        rtsp_reply_error(c, RTSP_STATUS_METHOD);
    }
 the_end:
    len = url_close_dyn_buf(c->pb, &c->pb_buffer);
    c->pb = NULL; /* safety */
    if (len < 0) {
        /* XXX: cannot do more */
        return -1;
    }
    c->buffer_ptr = c->pb_buffer;
    c->buffer_end = c->pb_buffer + len;
    c->state = RTSPSTATE_SEND_REPLY;
    return 0;
}

2607 2608
/* XXX: move that to rtsp.c, but would need to replace FFStream by
   AVFormatContext */
2609
static int prepare_sdp_description(FFStream *stream, uint8_t **pbuffer, 
2610
                                   struct in_addr my_ip)
2611 2612
{
    ByteIOContext pb1, *pb = &pb1;
2613
    int i, payload_type, port, private_payload_type, j;
2614 2615 2616 2617 2618 2619 2620 2621 2622
    const char *ipstr, *title, *mediatype;
    AVStream *st;
    
    if (url_open_dyn_buf(pb) < 0)
        return -1;
    
    /* general media info */

    url_fprintf(pb, "v=0\n");
2623
    ipstr = inet_ntoa(my_ip);
2624 2625 2626 2627 2628 2629 2630
    url_fprintf(pb, "o=- 0 0 IN IP4 %s\n", ipstr);
    title = stream->title;
    if (title[0] == '\0')
        title = "No Title";
    url_fprintf(pb, "s=%s\n", title);
    if (stream->comment[0] != '\0')
        url_fprintf(pb, "i=%s\n", stream->comment);
2631 2632 2633
    if (stream->is_multicast) {
        url_fprintf(pb, "c=IN IP4 %s\n", inet_ntoa(stream->multicast_ip));
    }
2634
    /* for each stream, we output the necessary info */
2635
    private_payload_type = RTP_PT_PRIVATE;
2636 2637
    for(i = 0; i < stream->nb_streams; i++) {
        st = stream->streams[i];
2638
        if (st->codec.codec_id == CODEC_ID_MPEG2TS) {
2639
            mediatype = "video";
2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651
        } else {
            switch(st->codec.codec_type) {
            case CODEC_TYPE_AUDIO:
                mediatype = "audio";
                break;
            case CODEC_TYPE_VIDEO:
                mediatype = "video";
                break;
            default:
                mediatype = "application";
                break;
            }
2652
        }
2653 2654
        /* NOTE: the port indication is not correct in case of
           unicast. It is not an issue because RTSP gives it */
2655
        payload_type = rtp_get_payload_type(&st->codec);
2656 2657
        if (payload_type < 0)
            payload_type = private_payload_type++;
2658 2659 2660 2661 2662
        if (stream->is_multicast) {
            port = stream->multicast_port + 2 * i;
        } else {
            port = 0;
        }
2663
        url_fprintf(pb, "m=%s %d RTP/AVP %d\n", 
2664
                    mediatype, port, payload_type);
2665
        if (payload_type >= RTP_PT_PRIVATE) {
2666 2667 2668 2669 2670 2671 2672 2673 2674 2675
            /* for private payload type, we need to give more info */
            switch(st->codec.codec_id) {
            case CODEC_ID_MPEG4:
                {
                    uint8_t *data;
                    url_fprintf(pb, "a=rtpmap:%d MP4V-ES/%d\n", 
                                payload_type, 90000);
                    /* we must also add the mpeg4 header */
                    data = st->codec.extradata;
                    if (data) {
2676
                        url_fprintf(pb, "a=fmtp:%d config=", payload_type);
2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688
                        for(j=0;j<st->codec.extradata_size;j++) {
                            url_fprintf(pb, "%02x", data[j]);
                        }
                        url_fprintf(pb, "\n");
                    }
                }
                break;
            default:
                /* XXX: add other codecs ? */
                goto fail;
            }
        }
2689 2690 2691
        url_fprintf(pb, "a=control:streamid=%d\n", i);
    }
    return url_close_dyn_buf(pb, pbuffer);
2692 2693 2694 2695
 fail:
    url_close_dyn_buf(pb, pbuffer);
    av_free(*pbuffer);
    return -1;
2696 2697
}

2698 2699 2700 2701 2702 2703 2704 2705 2706
static void rtsp_cmd_options(HTTPContext *c, const char *url)
{
//    rtsp_reply_header(c, RTSP_STATUS_OK);
    url_fprintf(c->pb, "RTSP/1.0 %d %s\r\n", RTSP_STATUS_OK, "OK");
    url_fprintf(c->pb, "CSeq: %d\r\n", c->seq);
    url_fprintf(c->pb, "Public: %s\r\n", "OPTIONS, DESCRIBE, SETUP, TEARDOWN, PLAY, PAUSE");
    url_fprintf(c->pb, "\r\n");
}

2707 2708 2709 2710 2711
static void rtsp_cmd_describe(HTTPContext *c, const char *url)
{
    FFStream *stream;
    char path1[1024];
    const char *path;
2712
    uint8_t *content;
2713 2714
    int content_length, len;
    struct sockaddr_in my_addr;
2715 2716
    
    /* find which url is asked */
2717
    url_split(NULL, 0, NULL, 0, NULL, 0, NULL, path1, sizeof(path1), url);
2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733
    path = path1;
    if (*path == '/')
        path++;

    for(stream = first_stream; stream != NULL; stream = stream->next) {
        if (!stream->is_feed && stream->fmt == &rtp_mux &&
            !strcmp(path, stream->filename)) {
            goto found;
        }
    }
    /* no stream found */
    rtsp_reply_error(c, RTSP_STATUS_SERVICE); /* XXX: right error ? */
    return;

 found:
    /* prepare the media description in sdp format */
2734 2735 2736 2737 2738

    /* get the host IP */
    len = sizeof(my_addr);
    getsockname(c->fd, (struct sockaddr *)&my_addr, &len);
    content_length = prepare_sdp_description(stream, &content, my_addr.sin_addr);
2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763
    if (content_length < 0) {
        rtsp_reply_error(c, RTSP_STATUS_INTERNAL);
        return;
    }
    rtsp_reply_header(c, RTSP_STATUS_OK);
    url_fprintf(c->pb, "Content-Type: application/sdp\r\n");
    url_fprintf(c->pb, "Content-Length: %d\r\n", content_length);
    url_fprintf(c->pb, "\r\n");
    put_buffer(c->pb, content, content_length);
}

static HTTPContext *find_rtp_session(const char *session_id)
{
    HTTPContext *c;

    if (session_id[0] == '\0')
        return NULL;

    for(c = first_http_ctx; c != NULL; c = c->next) {
        if (!strcmp(c->session_id, session_id))
            return c;
    }
    return NULL;
}

2764
static RTSPTransportField *find_transport(RTSPHeader *h, enum RTSPProtocol protocol)
2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790
{
    RTSPTransportField *th;
    int i;

    for(i=0;i<h->nb_transports;i++) {
        th = &h->transports[i];
        if (th->protocol == protocol)
            return th;
    }
    return NULL;
}

static void rtsp_cmd_setup(HTTPContext *c, const char *url, 
                           RTSPHeader *h)
{
    FFStream *stream;
    int stream_index, port;
    char buf[1024];
    char path1[1024];
    const char *path;
    HTTPContext *rtp_c;
    RTSPTransportField *th;
    struct sockaddr_in dest_addr;
    RTSPActionServerSetup setup;
    
    /* find which url is asked */
2791
    url_split(NULL, 0, NULL, 0, NULL, 0, NULL, path1, sizeof(path1), url);
2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831
    path = path1;
    if (*path == '/')
        path++;

    /* now check each stream */
    for(stream = first_stream; stream != NULL; stream = stream->next) {
        if (!stream->is_feed && stream->fmt == &rtp_mux) {
            /* accept aggregate filenames only if single stream */
            if (!strcmp(path, stream->filename)) {
                if (stream->nb_streams != 1) {
                    rtsp_reply_error(c, RTSP_STATUS_AGGREGATE);
                    return;
                }
                stream_index = 0;
                goto found;
            }
                
            for(stream_index = 0; stream_index < stream->nb_streams;
                stream_index++) {
                snprintf(buf, sizeof(buf), "%s/streamid=%d", 
                         stream->filename, stream_index);
                if (!strcmp(path, buf))
                    goto found;
            }
        }
    }
    /* no stream found */
    rtsp_reply_error(c, RTSP_STATUS_SERVICE); /* XXX: right error ? */
    return;
 found:

    /* generate session id if needed */
    if (h->session_id[0] == '\0') {
        snprintf(h->session_id, sizeof(h->session_id), 
                 "%08x%08x", (int)random(), (int)random());
    }

    /* find rtp session, and create it if none found */
    rtp_c = find_rtp_session(h->session_id);
    if (!rtp_c) {
2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843
        /* always prefer UDP */
        th = find_transport(h, RTSP_PROTOCOL_RTP_UDP);
        if (!th) {
            th = find_transport(h, RTSP_PROTOCOL_RTP_TCP);
            if (!th) {
                rtsp_reply_error(c, RTSP_STATUS_TRANSPORT);
                return;
            }
        }

        rtp_c = rtp_new_connection(&c->from_addr, stream, h->session_id,
                                   th->protocol);
2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894
        if (!rtp_c) {
            rtsp_reply_error(c, RTSP_STATUS_BANDWIDTH);
            return;
        }

        /* open input stream */
        if (open_input_stream(rtp_c, "") < 0) {
            rtsp_reply_error(c, RTSP_STATUS_INTERNAL);
            return;
        }
    }
    
    /* test if stream is OK (test needed because several SETUP needs
       to be done for a given file) */
    if (rtp_c->stream != stream) {
        rtsp_reply_error(c, RTSP_STATUS_SERVICE);
        return;
    }
    
    /* test if stream is already set up */
    if (rtp_c->rtp_ctx[stream_index]) {
        rtsp_reply_error(c, RTSP_STATUS_STATE);
        return;
    }

    /* check transport */
    th = find_transport(h, rtp_c->rtp_protocol);
    if (!th || (th->protocol == RTSP_PROTOCOL_RTP_UDP && 
                th->client_port_min <= 0)) {
        rtsp_reply_error(c, RTSP_STATUS_TRANSPORT);
        return;
    }

    /* setup default options */
    setup.transport_option[0] = '\0';
    dest_addr = rtp_c->from_addr;
    dest_addr.sin_port = htons(th->client_port_min);
    
    /* add transport option if needed */
    if (ff_rtsp_callback) {
        setup.ipaddr = ntohl(dest_addr.sin_addr.s_addr);
        if (ff_rtsp_callback(RTSP_ACTION_SERVER_SETUP, rtp_c->session_id, 
                             (char *)&setup, sizeof(setup),
                             stream->rtsp_option) < 0) {
            rtsp_reply_error(c, RTSP_STATUS_TRANSPORT);
            return;
        }
        dest_addr.sin_addr.s_addr = htonl(setup.ipaddr);
    }
    
    /* setup stream */
2895
    if (rtp_new_av_stream(rtp_c, stream_index, &dest_addr, c) < 0) {
2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937
        rtsp_reply_error(c, RTSP_STATUS_TRANSPORT);
        return;
    }

    /* now everything is OK, so we can send the connection parameters */
    rtsp_reply_header(c, RTSP_STATUS_OK);
    /* session ID */
    url_fprintf(c->pb, "Session: %s\r\n", rtp_c->session_id);

    switch(rtp_c->rtp_protocol) {
    case RTSP_PROTOCOL_RTP_UDP:
        port = rtp_get_local_port(rtp_c->rtp_handles[stream_index]);
        url_fprintf(c->pb, "Transport: RTP/AVP/UDP;unicast;"
                    "client_port=%d-%d;server_port=%d-%d",
                    th->client_port_min, th->client_port_min + 1,
                    port, port + 1);
        break;
    case RTSP_PROTOCOL_RTP_TCP:
        url_fprintf(c->pb, "Transport: RTP/AVP/TCP;interleaved=%d-%d",
                    stream_index * 2, stream_index * 2 + 1);
        break;
    default:
        break;
    }
    if (setup.transport_option[0] != '\0') {
        url_fprintf(c->pb, ";%s", setup.transport_option);
    }
    url_fprintf(c->pb, "\r\n");
    

    url_fprintf(c->pb, "\r\n");
}


/* find an rtp connection by using the session ID. Check consistency
   with filename */
static HTTPContext *find_rtp_session_with_url(const char *url, 
                                              const char *session_id)
{
    HTTPContext *rtp_c;
    char path1[1024];
    const char *path;
2938 2939
    char buf[1024];
    int s;
2940 2941 2942 2943 2944 2945

    rtp_c = find_rtp_session(session_id);
    if (!rtp_c)
        return NULL;

    /* find which url is asked */
2946
    url_split(NULL, 0, NULL, 0, NULL, 0, NULL, path1, sizeof(path1), url);
2947 2948 2949
    path = path1;
    if (*path == '/')
        path++;
2950 2951 2952 2953 2954 2955 2956 2957 2958 2959
    if(!strcmp(path, rtp_c->stream->filename)) return rtp_c;
    for(s=0; s<rtp_c->stream->nb_streams; ++s) {
      snprintf(buf, sizeof(buf), "%s/streamid=%d",
        rtp_c->stream->filename, s);
      if(!strncmp(path, buf, sizeof(buf))) {
    // XXX: Should we reply with RTSP_STATUS_ONLY_AGGREGATE if nb_streams>1?
        return rtp_c;
      }
    }
    return NULL;
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978
}

static void rtsp_cmd_play(HTTPContext *c, const char *url, RTSPHeader *h)
{
    HTTPContext *rtp_c;

    rtp_c = find_rtp_session_with_url(url, h->session_id);
    if (!rtp_c) {
        rtsp_reply_error(c, RTSP_STATUS_SESSION);
        return;
    }
    
    if (rtp_c->state != HTTPSTATE_SEND_DATA &&
        rtp_c->state != HTTPSTATE_WAIT_FEED &&
        rtp_c->state != HTTPSTATE_READY) {
        rtsp_reply_error(c, RTSP_STATUS_STATE);
        return;
    }

2979 2980 2981 2982 2983 2984 2985 2986
#if 0
    /* XXX: seek in stream */
    if (h->range_start != AV_NOPTS_VALUE) {
        printf("range_start=%0.3f\n", (double)h->range_start / AV_TIME_BASE);
        av_seek_frame(rtp_c->fmt_in, -1, h->range_start);
    }
#endif

2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012
    rtp_c->state = HTTPSTATE_SEND_DATA;
    
    /* now everything is OK, so we can send the connection parameters */
    rtsp_reply_header(c, RTSP_STATUS_OK);
    /* session ID */
    url_fprintf(c->pb, "Session: %s\r\n", rtp_c->session_id);
    url_fprintf(c->pb, "\r\n");
}

static void rtsp_cmd_pause(HTTPContext *c, const char *url, RTSPHeader *h)
{
    HTTPContext *rtp_c;

    rtp_c = find_rtp_session_with_url(url, h->session_id);
    if (!rtp_c) {
        rtsp_reply_error(c, RTSP_STATUS_SESSION);
        return;
    }
    
    if (rtp_c->state != HTTPSTATE_SEND_DATA &&
        rtp_c->state != HTTPSTATE_WAIT_FEED) {
        rtsp_reply_error(c, RTSP_STATUS_STATE);
        return;
    }
    
    rtp_c->state = HTTPSTATE_READY;
3013
    rtp_c->first_pts = AV_NOPTS_VALUE;
3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050
    /* now everything is OK, so we can send the connection parameters */
    rtsp_reply_header(c, RTSP_STATUS_OK);
    /* session ID */
    url_fprintf(c->pb, "Session: %s\r\n", rtp_c->session_id);
    url_fprintf(c->pb, "\r\n");
}

static void rtsp_cmd_teardown(HTTPContext *c, const char *url, RTSPHeader *h)
{
    HTTPContext *rtp_c;

    rtp_c = find_rtp_session_with_url(url, h->session_id);
    if (!rtp_c) {
        rtsp_reply_error(c, RTSP_STATUS_SESSION);
        return;
    }
    
    /* abort the session */
    close_connection(rtp_c);

    if (ff_rtsp_callback) {
        ff_rtsp_callback(RTSP_ACTION_SERVER_TEARDOWN, rtp_c->session_id, 
                         NULL, 0,
                         rtp_c->stream->rtsp_option);
    }

    /* now everything is OK, so we can send the connection parameters */
    rtsp_reply_header(c, RTSP_STATUS_OK);
    /* session ID */
    url_fprintf(c->pb, "Session: %s\r\n", rtp_c->session_id);
    url_fprintf(c->pb, "\r\n");
}


/********************************************************************/
/* RTP handling */

3051
static HTTPContext *rtp_new_connection(struct sockaddr_in *from_addr, 
3052 3053
                                       FFStream *stream, const char *session_id,
                                       enum RTSPProtocol rtp_protocol)
3054 3055
{
    HTTPContext *c = NULL;
3056 3057
    const char *proto_str;
    
3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069
    /* XXX: should output a warning page when coming
       close to the connection limit */
    if (nb_connections >= nb_max_connections)
        goto fail;
    
    /* add a new connection */
    c = av_mallocz(sizeof(HTTPContext));
    if (!c)
        goto fail;
    
    c->fd = -1;
    c->poll_entry = NULL;
3070
    c->from_addr = *from_addr;
3071 3072 3073 3074 3075 3076 3077 3078 3079
    c->buffer_size = IOBUFFER_INIT_SIZE;
    c->buffer = av_malloc(c->buffer_size);
    if (!c->buffer)
        goto fail;
    nb_connections++;
    c->stream = stream;
    pstrcpy(c->session_id, sizeof(c->session_id), session_id);
    c->state = HTTPSTATE_READY;
    c->is_packetized = 1;
3080 3081
    c->rtp_protocol = rtp_protocol;

3082
    /* protocol is shown in statistics */
3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098
    switch(c->rtp_protocol) {
    case RTSP_PROTOCOL_RTP_UDP_MULTICAST:
        proto_str = "MCAST";
        break;
    case RTSP_PROTOCOL_RTP_UDP:
        proto_str = "UDP";
        break;
    case RTSP_PROTOCOL_RTP_TCP:
        proto_str = "TCP";
        break;
    default:
        proto_str = "???";
        break;
    }
    pstrcpy(c->protocol, sizeof(c->protocol), "RTP/");
    pstrcat(c->protocol, sizeof(c->protocol), proto_str);
3099

3100 3101
    current_bandwidth += stream->bandwidth;

3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114
    c->next = first_http_ctx;
    first_http_ctx = c;
    return c;
        
 fail:
    if (c) {
        av_free(c->buffer);
        av_free(c);
    }
    return NULL;
}

/* add a new RTP stream in an RTP connection (used in RTSP SETUP
3115
   command). If RTP/TCP protocol is used, TCP connection 'rtsp_c' is
3116 3117
   used. */
static int rtp_new_av_stream(HTTPContext *c, 
3118 3119
                             int stream_index, struct sockaddr_in *dest_addr,
                             HTTPContext *rtsp_c)
3120 3121 3122 3123 3124
{
    AVFormatContext *ctx;
    AVStream *st;
    char *ipaddr;
    URLContext *h;
3125
    uint8_t *dummy_buf;
3126
    char buf2[32];
3127
    int max_packet_size;
3128
    
3129
    /* now we can open the relevant output stream */
3130
    ctx = av_alloc_format_context();
3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149
    if (!ctx)
        return -1;
    ctx->oformat = &rtp_mux;

    st = av_mallocz(sizeof(AVStream));
    if (!st)
        goto fail;
    ctx->nb_streams = 1;
    ctx->streams[0] = st;

    if (!c->stream->feed || 
        c->stream->feed == c->stream) {
        memcpy(st, c->stream->streams[stream_index], sizeof(AVStream));
    } else {
        memcpy(st, 
               c->stream->feed->streams[c->stream->feed_streams[stream_index]],
               sizeof(AVStream));
    }
    
3150 3151 3152 3153 3154 3155 3156
    /* build destination RTP address */
    ipaddr = inet_ntoa(dest_addr->sin_addr);

    switch(c->rtp_protocol) {
    case RTSP_PROTOCOL_RTP_UDP:
    case RTSP_PROTOCOL_RTP_UDP_MULTICAST:
        /* RTP/UDP case */
3157
        
3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170
        /* XXX: also pass as parameter to function ? */
        if (c->stream->is_multicast) {
            int ttl;
            ttl = c->stream->multicast_ttl;
            if (!ttl)
                ttl = 16;
            snprintf(ctx->filename, sizeof(ctx->filename),
                     "rtp://%s:%d?multicast=1&ttl=%d", 
                     ipaddr, ntohs(dest_addr->sin_port), ttl);
        } else {
            snprintf(ctx->filename, sizeof(ctx->filename),
                     "rtp://%s:%d", ipaddr, ntohs(dest_addr->sin_port));
        }
3171 3172 3173 3174

        if (url_open(&h, ctx->filename, URL_WRONLY) < 0)
            goto fail;
        c->rtp_handles[stream_index] = h;
3175 3176 3177 3178 3179 3180 3181 3182
        max_packet_size = url_get_max_packet_size(h);
        break;
    case RTSP_PROTOCOL_RTP_TCP:
        /* RTP/TCP case */
        c->rtsp_c = rtsp_c;
        max_packet_size = RTSP_TCP_MAX_PACKET_SIZE;
        break;
    default:
3183 3184 3185
        goto fail;
    }

3186
    http_log("%s:%d - - [%s] \"PLAY %s/streamid=%d %s\"\n",
3187 3188
             ipaddr, ntohs(dest_addr->sin_port), 
             ctime1(buf2), 
3189
             c->stream->filename, stream_index, c->protocol);
3190

3191
    /* normally, no packets should be output here, but the packet size may be checked */
3192
    if (url_open_dyn_packet_buf(&ctx->pb, max_packet_size) < 0) {
3193 3194 3195
        /* XXX: close stream */
        goto fail;
    }
3196
    av_set_parameters(ctx, NULL);
3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213
    if (av_write_header(ctx) < 0) {
    fail:
        if (h)
            url_close(h);
        av_free(ctx);
        return -1;
    }
    url_close_dyn_buf(&ctx->pb, &dummy_buf);
    av_free(dummy_buf);
    
    c->rtp_ctx[stream_index] = ctx;
    return 0;
}

/********************************************************************/
/* ffserver initialization */

3214
static AVStream *add_av_stream1(FFStream *stream, AVCodecContext *codec)
3215 3216 3217 3218 3219 3220 3221 3222
{
    AVStream *fst;

    fst = av_mallocz(sizeof(AVStream));
    if (!fst)
        return NULL;
    fst->priv_data = av_mallocz(sizeof(FeedData));
    memcpy(&fst->codec, codec, sizeof(AVCodecContext));
3223
    fst->codec.coded_frame = &dummy_frame;
3224
    fst->index = stream->nb_streams;
3225 3226 3227 3228
    stream->streams[stream->nb_streams++] = fst;
    return fst;
}

Fabrice Bellard's avatar
Fabrice Bellard committed
3229
/* return the stream number in the feed */
3230
static int add_av_stream(FFStream *feed, AVStream *st)
Fabrice Bellard's avatar
Fabrice Bellard committed
3231 3232 3233 3234 3235 3236 3237 3238 3239
{
    AVStream *fst;
    AVCodecContext *av, *av1;
    int i;

    av = &st->codec;
    for(i=0;i<feed->nb_streams;i++) {
        st = feed->streams[i];
        av1 = &st->codec;
3240 3241
        if (av1->codec_id == av->codec_id &&
            av1->codec_type == av->codec_type &&
Fabrice Bellard's avatar
Fabrice Bellard committed
3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253
            av1->bit_rate == av->bit_rate) {

            switch(av->codec_type) {
            case CODEC_TYPE_AUDIO:
                if (av1->channels == av->channels &&
                    av1->sample_rate == av->sample_rate)
                    goto found;
                break;
            case CODEC_TYPE_VIDEO:
                if (av1->width == av->width &&
                    av1->height == av->height &&
                    av1->frame_rate == av->frame_rate &&
3254
                    av1->frame_rate_base == av->frame_rate_base &&
Fabrice Bellard's avatar
Fabrice Bellard committed
3255 3256 3257
                    av1->gop_size == av->gop_size)
                    goto found;
                break;
3258
            default:
3259
                av_abort();
Fabrice Bellard's avatar
Fabrice Bellard committed
3260 3261 3262 3263
            }
        }
    }
    
3264
    fst = add_av_stream1(feed, av);
Fabrice Bellard's avatar
Fabrice Bellard committed
3265 3266 3267 3268 3269 3270 3271
    if (!fst)
        return -1;
    return feed->nb_streams - 1;
 found:
    return i;
}

3272
static void remove_stream(FFStream *stream)
3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284
{
    FFStream **ps;
    ps = &first_stream;
    while (*ps != NULL) {
        if (*ps == stream) {
            *ps = (*ps)->next;
        } else {
            ps = &(*ps)->next;
        }
    }
}

3285
/* specific mpeg4 handling : we extract the raw parameters */
3286
static void extract_mpeg4_header(AVFormatContext *infile)
3287 3288 3289 3290
{
    int mpeg4_count, i, size;
    AVPacket pkt;
    AVStream *st;
3291
    const uint8_t *p;
3292 3293 3294 3295 3296

    mpeg4_count = 0;
    for(i=0;i<infile->nb_streams;i++) {
        st = infile->streams[i];
        if (st->codec.codec_id == CODEC_ID_MPEG4 &&
3297
            st->codec.extradata_size == 0) {
3298 3299 3300 3301 3302 3303
            mpeg4_count++;
        }
    }
    if (!mpeg4_count)
        return;

3304
    printf("MPEG4 without extra data: trying to find header in %s\n", infile->filename);
3305 3306 3307 3308 3309
    while (mpeg4_count > 0) {
        if (av_read_packet(infile, &pkt) < 0)
            break;
        st = infile->streams[pkt.stream_index];
        if (st->codec.codec_id == CODEC_ID_MPEG4 &&
3310 3311
            st->codec.extradata_size == 0) {
            av_freep(&st->codec.extradata);
3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333
            /* fill extradata with the header */
            /* XXX: we make hard suppositions here ! */
            p = pkt.data;
            while (p < pkt.data + pkt.size - 4) {
                /* stop when vop header is found */
                if (p[0] == 0x00 && p[1] == 0x00 && 
                    p[2] == 0x01 && p[3] == 0xb6) {
                    size = p - pkt.data;
                    //                    av_hex_dump(pkt.data, size);
                    st->codec.extradata = av_malloc(size);
                    st->codec.extradata_size = size;
                    memcpy(st->codec.extradata, pkt.data, size);
                    break;
                }
                p++;
            }
            mpeg4_count--;
        }
        av_free_packet(&pkt);
    }
}

3334
/* compute the needed AVStream for each file */
3335
static void build_file_streams(void)
3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348
{
    FFStream *stream, *stream_next;
    AVFormatContext *infile;
    int i;

    /* gather all streams */
    for(stream = first_stream; stream != NULL; stream = stream_next) {
        stream_next = stream->next;
        if (stream->stream_type == STREAM_TYPE_LIVE &&
            !stream->feed) {
            /* the stream comes from a file */
            /* try to open the file */
            /* open stream */
3349 3350 3351 3352 3353 3354 3355 3356
            stream->ap_in = av_mallocz(sizeof(AVFormatParameters));
            if (stream->fmt == &rtp_mux) {
                /* specific case : if transport stream output to RTP,
                   we use a raw transport stream reader */
                stream->ap_in->mpeg2ts_raw = 1;
                stream->ap_in->mpeg2ts_compute_pcr = 1;
            }
            
3357
            if (av_open_input_file(&infile, stream->feed_filename, 
3358
                                   stream->ifmt, 0, stream->ap_in) < 0) {
3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371
                http_log("%s not found", stream->feed_filename);
                /* remove stream (no need to spend more time on it) */
            fail:
                remove_stream(stream);
            } else {
                /* find all the AVStreams inside and reference them in
                   'stream' */
                if (av_find_stream_info(infile) < 0) {
                    http_log("Could not find codec parameters from '%s'", 
                             stream->feed_filename);
                    av_close_input_file(infile);
                    goto fail;
                }
3372 3373
                extract_mpeg4_header(infile);

3374 3375 3376 3377 3378 3379 3380 3381 3382
                for(i=0;i<infile->nb_streams;i++) {
                    add_av_stream1(stream, &infile->streams[i]->codec);
                }
                av_close_input_file(infile);
            }
        }
    }
}

Fabrice Bellard's avatar
Fabrice Bellard committed
3383
/* compute the needed AVStream for each feed */
3384
static void build_feed_streams(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
3385 3386 3387 3388 3389 3390 3391 3392 3393
{
    FFStream *stream, *feed;
    int i;

    /* gather all streams */
    for(stream = first_stream; stream != NULL; stream = stream->next) {
        feed = stream->feed;
        if (feed) {
            if (!stream->is_feed) {
3394
                /* we handle a stream coming from a feed */
Fabrice Bellard's avatar
Fabrice Bellard committed
3395 3396 3397
                for(i=0;i<stream->nb_streams;i++) {
                    stream->feed_streams[i] = add_av_stream(feed, stream->streams[i]);
                }
3398 3399 3400 3401 3402 3403 3404 3405 3406
            }
        }
    }

    /* gather all streams */
    for(stream = first_stream; stream != NULL; stream = stream->next) {
        feed = stream->feed;
        if (feed) {
            if (stream->is_feed) {
Fabrice Bellard's avatar
Fabrice Bellard committed
3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417
                for(i=0;i<stream->nb_streams;i++) {
                    stream->feed_streams[i] = i;
                }
            }
        }
    }

    /* create feed files if needed */
    for(feed = first_feed; feed != NULL; feed = feed->next_feed) {
        int fd;

3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433
        if (url_exist(feed->feed_filename)) {
            /* See if it matches */
            AVFormatContext *s;
            int matches = 0;

            if (av_open_input_file(&s, feed->feed_filename, NULL, FFM_PACKET_SIZE, NULL) >= 0) {
                /* Now see if it matches */
                if (s->nb_streams == feed->nb_streams) {
                    matches = 1;
                    for(i=0;i<s->nb_streams;i++) {
                        AVStream *sf, *ss;
                        sf = feed->streams[i];
                        ss = s->streams[i];

                        if (sf->index != ss->index ||
                            sf->id != ss->id) {
3434 3435
                            printf("Index & Id do not match for stream %d (%s)\n", 
                                   i, feed->feed_filename);
3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451
                            matches = 0;
                        } else {
                            AVCodecContext *ccf, *ccs;

                            ccf = &sf->codec;
                            ccs = &ss->codec;
#define CHECK_CODEC(x)  (ccf->x != ccs->x)

                            if (CHECK_CODEC(codec) || CHECK_CODEC(codec_type)) {
                                printf("Codecs do not match for stream %d\n", i);
                                matches = 0;
                            } else if (CHECK_CODEC(bit_rate) || CHECK_CODEC(flags)) {
                                printf("Codec bitrates do not match for stream %d\n", i);
                                matches = 0;
                            } else if (ccf->codec_type == CODEC_TYPE_VIDEO) {
                                if (CHECK_CODEC(frame_rate) ||
3452
                                    CHECK_CODEC(frame_rate_base) ||
3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483
                                    CHECK_CODEC(width) ||
                                    CHECK_CODEC(height)) {
                                    printf("Codec width, height and framerate do not match for stream %d\n", i);
                                    matches = 0;
                                }
                            } else if (ccf->codec_type == CODEC_TYPE_AUDIO) {
                                if (CHECK_CODEC(sample_rate) ||
                                    CHECK_CODEC(channels) ||
                                    CHECK_CODEC(frame_size)) {
                                    printf("Codec sample_rate, channels, frame_size do not match for stream %d\n", i);
                                    matches = 0;
                                }
                            } else {
                                printf("Unknown codec type\n");
                                matches = 0;
                            }
                        }
                        if (!matches) {
                            break;
                        }
                    }
                } else {
                    printf("Deleting feed file '%s' as stream counts differ (%d != %d)\n",
                        feed->feed_filename, s->nb_streams, feed->nb_streams);
                }

                av_close_input_file(s);
            } else {
                printf("Deleting feed file '%s' as it appears to be corrupt\n",
                        feed->feed_filename);
            }
3484 3485 3486 3487 3488 3489
            if (!matches) {
                if (feed->readonly) {
                    printf("Unable to delete feed file '%s' as it is marked readonly\n",
                        feed->feed_filename);
                    exit(1);
                }
3490
                unlink(feed->feed_filename);
3491
            }
3492
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
3493 3494 3495
        if (!url_exist(feed->feed_filename)) {
            AVFormatContext s1, *s = &s1;

3496 3497 3498 3499 3500 3501
            if (feed->readonly) {
                printf("Unable to create feed file '%s' as it is marked readonly\n",
                    feed->feed_filename);
                exit(1);
            }

Fabrice Bellard's avatar
Fabrice Bellard committed
3502 3503 3504 3505 3506 3507
            /* only write the header of the ffm file */
            if (url_fopen(&s->pb, feed->feed_filename, URL_WRONLY) < 0) {
                fprintf(stderr, "Could not open output feed file '%s'\n",
                        feed->feed_filename);
                exit(1);
            }
3508
            s->oformat = feed->fmt;
Fabrice Bellard's avatar
Fabrice Bellard committed
3509 3510 3511 3512 3513 3514
            s->nb_streams = feed->nb_streams;
            for(i=0;i<s->nb_streams;i++) {
                AVStream *st;
                st = feed->streams[i];
                s->streams[i] = st;
            }
3515
            av_set_parameters(s, NULL);
3516 3517 3518
            av_write_header(s);
            /* XXX: need better api */
            av_freep(&s->priv_data);
Fabrice Bellard's avatar
Fabrice Bellard committed
3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538
            url_fclose(&s->pb);
        }
        /* get feed size and write index */
        fd = open(feed->feed_filename, O_RDONLY);
        if (fd < 0) {
            fprintf(stderr, "Could not open output feed file '%s'\n",
                    feed->feed_filename);
            exit(1);
        }

        feed->feed_write_index = ffm_read_write_index(fd);
        feed->feed_size = lseek(fd, 0, SEEK_END);
        /* ensure that we do not wrap before the end of file */
        if (feed->feed_max_size < feed->feed_size)
            feed->feed_max_size = feed->feed_size;

        close(fd);
    }
}

3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561
/* compute the bandwidth used by each stream */
static void compute_bandwidth(void)
{
    int bandwidth, i;
    FFStream *stream;
    
    for(stream = first_stream; stream != NULL; stream = stream->next) {
        bandwidth = 0;
        for(i=0;i<stream->nb_streams;i++) {
            AVStream *st = stream->streams[i];
            switch(st->codec.codec_type) {
            case CODEC_TYPE_AUDIO:
            case CODEC_TYPE_VIDEO:
                bandwidth += st->codec.bit_rate;
                break;
            default:
                break;
            }
        }
        stream->bandwidth = (bandwidth + 999) / 1000;
    }
}

Fabrice Bellard's avatar
Fabrice Bellard committed
3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594
static void get_arg(char *buf, int buf_size, const char **pp)
{
    const char *p;
    char *q;
    int quote;

    p = *pp;
    while (isspace(*p)) p++;
    q = buf;
    quote = 0;
    if (*p == '\"' || *p == '\'')
        quote = *p++;
    for(;;) {
        if (quote) {
            if (*p == quote)
                break;
        } else {
            if (isspace(*p))
                break;
        }
        if (*p == '\0')
            break;
        if ((q - buf) < buf_size - 1)
            *q++ = *p;
        p++;
    }
    *q = '\0';
    if (quote && *p == quote)
        p++;
    *pp = p;
}

/* add a codec and set the default parameters */
3595
static void add_codec(FFStream *stream, AVCodecContext *av)
Fabrice Bellard's avatar
Fabrice Bellard committed
3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611
{
    AVStream *st;

    /* compute default parameters */
    switch(av->codec_type) {
    case CODEC_TYPE_AUDIO:
        if (av->bit_rate == 0)
            av->bit_rate = 64000;
        if (av->sample_rate == 0)
            av->sample_rate = 22050;
        if (av->channels == 0)
            av->channels = 1;
        break;
    case CODEC_TYPE_VIDEO:
        if (av->bit_rate == 0)
            av->bit_rate = 64000;
3612 3613 3614 3615
        if (av->frame_rate == 0){
            av->frame_rate = 5;
            av->frame_rate_base = 1;
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
3616 3617 3618 3619
        if (av->width == 0 || av->height == 0) {
            av->width = 160;
            av->height = 128;
        }
3620
        /* Bitrate tolerance is less for streaming */
3621 3622 3623 3624 3625 3626 3627 3628
        if (av->bit_rate_tolerance == 0)
            av->bit_rate_tolerance = av->bit_rate / 4;
        if (av->qmin == 0)
            av->qmin = 3;
        if (av->qmax == 0)
            av->qmax = 31;
        if (av->max_qdiff == 0)
            av->max_qdiff = 3;
3629 3630
        av->qcompress = 0.5;
        av->qblur = 0.5;
3631

3632 3633 3634
        if (!av->rc_eq)
            av->rc_eq = "tex^qComp";
        if (!av->i_quant_factor)
3635
            av->i_quant_factor = -0.8;
3636 3637 3638 3639
        if (!av->b_quant_factor)
            av->b_quant_factor = 1.25;
        if (!av->b_quant_offset)
            av->b_quant_offset = 1.25;
3640 3641
        if (!av->rc_max_rate)
            av->rc_max_rate = av->bit_rate * 2;
3642

Fabrice Bellard's avatar
Fabrice Bellard committed
3643
        break;
3644
    default:
3645
        av_abort();
Fabrice Bellard's avatar
Fabrice Bellard committed
3646 3647 3648 3649 3650 3651 3652 3653 3654
    }

    st = av_mallocz(sizeof(AVStream));
    if (!st)
        return;
    stream->streams[stream->nb_streams++] = st;
    memcpy(&st->codec, av, sizeof(AVCodecContext));
}

3655
static int opt_audio_codec(const char *arg)
3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671
{
    AVCodec *p;

    p = first_avcodec;
    while (p) {
        if (!strcmp(p->name, arg) && p->type == CODEC_TYPE_AUDIO)
            break;
        p = p->next;
    }
    if (p == NULL) {
        return CODEC_ID_NONE;
    }

    return p->id;
}

3672
static int opt_video_codec(const char *arg)
3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688
{
    AVCodec *p;

    p = first_avcodec;
    while (p) {
        if (!strcmp(p->name, arg) && p->type == CODEC_TYPE_VIDEO)
            break;
        p = p->next;
    }
    if (p == NULL) {
        return CODEC_ID_NONE;
    }

    return p->id;
}

3689 3690
/* simplistic plugin support */

3691
#ifdef CONFIG_HAVE_DLOPEN
3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712
void load_module(const char *filename)
{
    void *dll;
    void (*init_func)(void);
    dll = dlopen(filename, RTLD_NOW);
    if (!dll) {
        fprintf(stderr, "Could not load module '%s' - %s\n",
                filename, dlerror());
        return;
    }
    
    init_func = dlsym(dll, "ffserver_module_init");
    if (!init_func) {
        fprintf(stderr, 
                "%s: init function 'ffserver_module_init()' not found\n",
                filename);
        dlclose(dll);
    }

    init_func();
}
3713
#endif
3714

3715
static int parse_ffconfig(const char *filename)
Fabrice Bellard's avatar
Fabrice Bellard committed
3716 3717 3718 3719 3720 3721 3722
{
    FILE *f;
    char line[1024];
    char cmd[64];
    char arg[1024];
    const char *p;
    int val, errors, line_num;
3723
    FFStream **last_stream, *stream, *redirect;
Fabrice Bellard's avatar
Fabrice Bellard committed
3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741
    FFStream **last_feed, *feed;
    AVCodecContext audio_enc, video_enc;
    int audio_id, video_id;

    f = fopen(filename, "r");
    if (!f) {
        perror(filename);
        return -1;
    }
    
    errors = 0;
    line_num = 0;
    first_stream = NULL;
    last_stream = &first_stream;
    first_feed = NULL;
    last_feed = &first_feed;
    stream = NULL;
    feed = NULL;
3742
    redirect = NULL;
Fabrice Bellard's avatar
Fabrice Bellard committed
3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758
    audio_id = CODEC_ID_NONE;
    video_id = CODEC_ID_NONE;
    for(;;) {
        if (fgets(line, sizeof(line), f) == NULL)
            break;
        line_num++;
        p = line;
        while (isspace(*p)) 
            p++;
        if (*p == '\0' || *p == '#')
            continue;

        get_arg(cmd, sizeof(cmd), &p);
        
        if (!strcasecmp(cmd, "Port")) {
            get_arg(arg, sizeof(arg), &p);
3759
            my_http_addr.sin_port = htons (atoi(arg));
Fabrice Bellard's avatar
Fabrice Bellard committed
3760 3761
        } else if (!strcasecmp(cmd, "BindAddress")) {
            get_arg(arg, sizeof(arg), &p);
3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774
            if (!inet_aton(arg, &my_http_addr.sin_addr)) {
                fprintf(stderr, "%s:%d: Invalid IP address: %s\n", 
                        filename, line_num, arg);
                errors++;
            }
        } else if (!strcasecmp(cmd, "NoDaemon")) {
            ffserver_daemon = 0;
        } else if (!strcasecmp(cmd, "RTSPPort")) {
            get_arg(arg, sizeof(arg), &p);
            my_rtsp_addr.sin_port = htons (atoi(arg));
        } else if (!strcasecmp(cmd, "RTSPBindAddress")) {
            get_arg(arg, sizeof(arg), &p);
            if (!inet_aton(arg, &my_rtsp_addr.sin_addr)) {
Fabrice Bellard's avatar
Fabrice Bellard committed
3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788
                fprintf(stderr, "%s:%d: Invalid IP address: %s\n", 
                        filename, line_num, arg);
                errors++;
            }
        } else if (!strcasecmp(cmd, "MaxClients")) {
            get_arg(arg, sizeof(arg), &p);
            val = atoi(arg);
            if (val < 1 || val > HTTP_MAX_CONNECTIONS) {
                fprintf(stderr, "%s:%d: Invalid MaxClients: %s\n", 
                        filename, line_num, arg);
                errors++;
            } else {
                nb_max_connections = val;
            }
3789 3790 3791 3792 3793 3794 3795 3796
        } else if (!strcasecmp(cmd, "MaxBandwidth")) {
            get_arg(arg, sizeof(arg), &p);
            val = atoi(arg);
            if (val < 10 || val > 100000) {
                fprintf(stderr, "%s:%d: Invalid MaxBandwidth: %s\n", 
                        filename, line_num, arg);
                errors++;
            } else {
3797
                max_bandwidth = val;
3798
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828
        } else if (!strcasecmp(cmd, "CustomLog")) {
            get_arg(logfilename, sizeof(logfilename), &p);
        } else if (!strcasecmp(cmd, "<Feed")) {
            /*********************************************/
            /* Feed related options */
            char *q;
            if (stream || feed) {
                fprintf(stderr, "%s:%d: Already in a tag\n",
                        filename, line_num);
            } else {
                feed = av_mallocz(sizeof(FFStream));
                /* add in stream list */
                *last_stream = feed;
                last_stream = &feed->next;
                /* add in feed list */
                *last_feed = feed;
                last_feed = &feed->next_feed;
                
                get_arg(feed->filename, sizeof(feed->filename), &p);
                q = strrchr(feed->filename, '>');
                if (*q)
                    *q = '\0';
                feed->fmt = guess_format("ffm", NULL, NULL);
                /* defaut feed file */
                snprintf(feed->feed_filename, sizeof(feed->feed_filename),
                         "/tmp/%s.ffm", feed->filename);
                feed->feed_max_size = 5 * 1024 * 1024;
                feed->is_feed = 1;
                feed->feed = feed; /* self feeding :-) */
            }
3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844
        } else if (!strcasecmp(cmd, "Launch")) {
            if (feed) {
                int i;

                feed->child_argv = (char **) av_mallocz(64 * sizeof(char *));

                feed->child_argv[0] = av_malloc(7);
                strcpy(feed->child_argv[0], "ffmpeg");

                for (i = 1; i < 62; i++) {
                    char argbuf[256];

                    get_arg(argbuf, sizeof(argbuf), &p);
                    if (!argbuf[0])
                        break;

3845 3846
                    feed->child_argv[i] = av_malloc(strlen(argbuf) + 1);
                    strcpy(feed->child_argv[i], argbuf);
3847 3848 3849 3850 3851
                }

                feed->child_argv[i] = av_malloc(30 + strlen(feed->filename));

                snprintf(feed->child_argv[i], 256, "http://127.0.0.1:%d/%s", 
3852
                    ntohs(my_http_addr.sin_port), feed->filename);
3853
            }
3854 3855 3856 3857 3858 3859 3860
        } else if (!strcasecmp(cmd, "ReadOnlyFile")) {
            if (feed) {
                get_arg(feed->feed_filename, sizeof(feed->feed_filename), &p);
                feed->readonly = 1;
            } else if (stream) {
                get_arg(stream->feed_filename, sizeof(stream->feed_filename), &p);
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885
        } else if (!strcasecmp(cmd, "File")) {
            if (feed) {
                get_arg(feed->feed_filename, sizeof(feed->feed_filename), &p);
            } else if (stream) {
                get_arg(stream->feed_filename, sizeof(stream->feed_filename), &p);
            }
        } else if (!strcasecmp(cmd, "FileMaxSize")) {
            if (feed) {
                const char *p1;
                double fsize;

                get_arg(arg, sizeof(arg), &p);
                p1 = arg;
                fsize = strtod(p1, (char **)&p1);
                switch(toupper(*p1)) {
                case 'K':
                    fsize *= 1024;
                    break;
                case 'M':
                    fsize *= 1024 * 1024;
                    break;
                case 'G':
                    fsize *= 1024 * 1024 * 1024;
                    break;
                }
3886
                feed->feed_max_size = (int64_t)fsize;
Fabrice Bellard's avatar
Fabrice Bellard committed
3887 3888 3889 3890 3891 3892
            }
        } else if (!strcasecmp(cmd, "</Feed>")) {
            if (!feed) {
                fprintf(stderr, "%s:%d: No corresponding <Feed> for </Feed>\n",
                        filename, line_num);
                errors++;
3893
#if 0
3894 3895
            } else {
                /* Make sure that we start out clean */
3896 3897 3898 3899 3900 3901
                if (unlink(feed->feed_filename) < 0 
                    && errno != ENOENT) {
                    fprintf(stderr, "%s:%d: Unable to clean old feed file '%s': %s\n",
                        filename, line_num, feed->feed_filename, strerror(errno));
                    errors++;
                }
3902
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920
            }
            feed = NULL;
        } else if (!strcasecmp(cmd, "<Stream")) {
            /*********************************************/
            /* Stream related options */
            char *q;
            if (stream || feed) {
                fprintf(stderr, "%s:%d: Already in a tag\n",
                        filename, line_num);
            } else {
                stream = av_mallocz(sizeof(FFStream));
                *last_stream = stream;
                last_stream = &stream->next;

                get_arg(stream->filename, sizeof(stream->filename), &p);
                q = strrchr(stream->filename, '>');
                if (*q)
                    *q = '\0';
3921
                stream->fmt = guess_stream_format(NULL, stream->filename, NULL);
Fabrice Bellard's avatar
Fabrice Bellard committed
3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955
                memset(&audio_enc, 0, sizeof(AVCodecContext));
                memset(&video_enc, 0, sizeof(AVCodecContext));
                audio_id = CODEC_ID_NONE;
                video_id = CODEC_ID_NONE;
                if (stream->fmt) {
                    audio_id = stream->fmt->audio_codec;
                    video_id = stream->fmt->video_codec;
                }
            }
        } else if (!strcasecmp(cmd, "Feed")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                FFStream *sfeed;
                
                sfeed = first_feed;
                while (sfeed != NULL) {
                    if (!strcmp(sfeed->filename, arg))
                        break;
                    sfeed = sfeed->next_feed;
                }
                if (!sfeed) {
                    fprintf(stderr, "%s:%d: feed '%s' not defined\n",
                            filename, line_num, arg);
                } else {
                    stream->feed = sfeed;
                }
            }
        } else if (!strcasecmp(cmd, "Format")) {
            get_arg(arg, sizeof(arg), &p);
            if (!strcmp(arg, "status")) {
                stream->stream_type = STREAM_TYPE_STATUS;
                stream->fmt = NULL;
            } else {
                stream->stream_type = STREAM_TYPE_LIVE;
Fabrice Bellard's avatar
Fabrice Bellard committed
3956 3957 3958
                /* jpeg cannot be used here, so use single frame jpeg */
                if (!strcmp(arg, "jpeg"))
                    strcpy(arg, "singlejpeg");
3959
                stream->fmt = guess_stream_format(arg, NULL, NULL);
Fabrice Bellard's avatar
Fabrice Bellard committed
3960 3961 3962 3963 3964 3965 3966 3967 3968 3969
                if (!stream->fmt) {
                    fprintf(stderr, "%s:%d: Unknown Format: %s\n", 
                            filename, line_num, arg);
                    errors++;
                }
            }
            if (stream->fmt) {
                audio_id = stream->fmt->audio_codec;
                video_id = stream->fmt->video_codec;
            }
3970 3971 3972 3973 3974 3975
        } else if (!strcasecmp(cmd, "InputFormat")) {
            stream->ifmt = av_find_input_format(arg);
            if (!stream->ifmt) {
                fprintf(stderr, "%s:%d: Unknown input format: %s\n", 
                        filename, line_num, arg);
            }
3976 3977 3978 3979 3980 3981 3982 3983
        } else if (!strcasecmp(cmd, "FaviconURL")) {
            if (stream && stream->stream_type == STREAM_TYPE_STATUS) {
                get_arg(stream->feed_filename, sizeof(stream->feed_filename), &p);
            } else {
                fprintf(stderr, "%s:%d: FaviconURL only permitted for status streams\n", 
                            filename, line_num);
                errors++;
            }
3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999
        } else if (!strcasecmp(cmd, "Author")) {
            if (stream) {
                get_arg(stream->author, sizeof(stream->author), &p);
            }
        } else if (!strcasecmp(cmd, "Comment")) {
            if (stream) {
                get_arg(stream->comment, sizeof(stream->comment), &p);
            }
        } else if (!strcasecmp(cmd, "Copyright")) {
            if (stream) {
                get_arg(stream->copyright, sizeof(stream->copyright), &p);
            }
        } else if (!strcasecmp(cmd, "Title")) {
            if (stream) {
                get_arg(stream->title, sizeof(stream->title), &p);
            }
4000 4001 4002
        } else if (!strcasecmp(cmd, "Preroll")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
4003
                stream->prebuffer = atof(arg) * 1000;
4004
            }
4005 4006 4007 4008
        } else if (!strcasecmp(cmd, "StartSendOnKey")) {
            if (stream) {
                stream->send_on_key = 1;
            }
4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024
        } else if (!strcasecmp(cmd, "AudioCodec")) {
            get_arg(arg, sizeof(arg), &p);
            audio_id = opt_audio_codec(arg);
            if (audio_id == CODEC_ID_NONE) {
                fprintf(stderr, "%s:%d: Unknown AudioCodec: %s\n", 
                        filename, line_num, arg);
                errors++;
            }
        } else if (!strcasecmp(cmd, "VideoCodec")) {
            get_arg(arg, sizeof(arg), &p);
            video_id = opt_video_codec(arg);
            if (video_id == CODEC_ID_NONE) {
                fprintf(stderr, "%s:%d: Unknown VideoCodec: %s\n", 
                        filename, line_num, arg);
                errors++;
            }
4025 4026 4027
        } else if (!strcasecmp(cmd, "MaxTime")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
4028
                stream->max_time = atof(arg) * 1000;
4029
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044
        } else if (!strcasecmp(cmd, "AudioBitRate")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                audio_enc.bit_rate = atoi(arg) * 1000;
            }
        } else if (!strcasecmp(cmd, "AudioChannels")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                audio_enc.channels = atoi(arg);
            }
        } else if (!strcasecmp(cmd, "AudioSampleRate")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                audio_enc.sample_rate = atoi(arg);
            }
4045 4046 4047
	} else if (!strcasecmp(cmd, "AudioQuality")) {
	    get_arg(arg, sizeof(arg), &p);
            if (stream) {
Michael Niedermayer's avatar
Michael Niedermayer committed
4048
//                audio_enc.quality = atof(arg) * 1000;
4049
            }
4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064
        } else if (!strcasecmp(cmd, "VideoBitRateRange")) {
            if (stream) {
                int minrate, maxrate;

                get_arg(arg, sizeof(arg), &p);

                if (sscanf(arg, "%d-%d", &minrate, &maxrate) == 2) {
                    video_enc.rc_min_rate = minrate * 1000;
                    video_enc.rc_max_rate = maxrate * 1000;
                } else {
                    fprintf(stderr, "%s:%d: Incorrect format for VideoBitRateRange -- should be <min>-<max>: %s\n", 
                            filename, line_num, arg);
                    errors++;
                }
            }
4065 4066 4067 4068 4069
        } else if (!strcasecmp(cmd, "VideoBufferSize")) {
            if (stream) {
                get_arg(arg, sizeof(arg), &p);
                video_enc.rc_buffer_size = atoi(arg) * 1024;
            }
4070 4071 4072 4073 4074
        } else if (!strcasecmp(cmd, "VideoBitRateTolerance")) {
            if (stream) {
                get_arg(arg, sizeof(arg), &p);
                video_enc.bit_rate_tolerance = atoi(arg) * 1000;
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093
        } else if (!strcasecmp(cmd, "VideoBitRate")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                video_enc.bit_rate = atoi(arg) * 1000;
            }
        } else if (!strcasecmp(cmd, "VideoSize")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                parse_image_size(&video_enc.width, &video_enc.height, arg);
                if ((video_enc.width % 16) != 0 ||
                    (video_enc.height % 16) != 0) {
                    fprintf(stderr, "%s:%d: Image size must be a multiple of 16\n",
                            filename, line_num);
                    errors++;
                }
            }
        } else if (!strcasecmp(cmd, "VideoFrameRate")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
4094 4095
                video_enc.frame_rate_base= DEFAULT_FRAME_RATE_BASE;
                video_enc.frame_rate = (int)(strtod(arg, NULL) * video_enc.frame_rate_base);
Fabrice Bellard's avatar
Fabrice Bellard committed
4096 4097 4098 4099 4100 4101 4102 4103 4104 4105
            }
        } else if (!strcasecmp(cmd, "VideoGopSize")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                video_enc.gop_size = atoi(arg);
            }
        } else if (!strcasecmp(cmd, "VideoIntraOnly")) {
            if (stream) {
                video_enc.gop_size = 1;
            }
4106 4107
        } else if (!strcasecmp(cmd, "VideoHighQuality")) {
            if (stream) {
4108
                video_enc.mb_decision = FF_MB_DECISION_BITS;
4109
            }
4110 4111
        } else if (!strcasecmp(cmd, "Video4MotionVector")) {
            if (stream) {
4112
                video_enc.mb_decision = FF_MB_DECISION_BITS; //FIXME remove
4113 4114
                video_enc.flags |= CODEC_FLAG_4MV;
            }
4115
        } else if (!strcasecmp(cmd, "VideoQDiff")) {
4116
            get_arg(arg, sizeof(arg), &p);
4117 4118 4119 4120 4121 4122 4123 4124 4125
            if (stream) {
                video_enc.max_qdiff = atoi(arg);
                if (video_enc.max_qdiff < 1 || video_enc.max_qdiff > 31) {
                    fprintf(stderr, "%s:%d: VideoQDiff out of range\n",
                            filename, line_num);
                    errors++;
                }
            }
        } else if (!strcasecmp(cmd, "VideoQMax")) {
4126
            get_arg(arg, sizeof(arg), &p);
4127 4128 4129 4130 4131 4132 4133 4134 4135
            if (stream) {
                video_enc.qmax = atoi(arg);
                if (video_enc.qmax < 1 || video_enc.qmax > 31) {
                    fprintf(stderr, "%s:%d: VideoQMax out of range\n",
                            filename, line_num);
                    errors++;
                }
            }
        } else if (!strcasecmp(cmd, "VideoQMin")) {
4136
            get_arg(arg, sizeof(arg), &p);
4137 4138 4139 4140 4141 4142 4143 4144
            if (stream) {
                video_enc.qmin = atoi(arg);
                if (video_enc.qmin < 1 || video_enc.qmin > 31) {
                    fprintf(stderr, "%s:%d: VideoQMin out of range\n",
                            filename, line_num);
                    errors++;
                }
            }
4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164
        } else if (!strcasecmp(cmd, "LumaElim")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                video_enc.luma_elim_threshold = atoi(arg);
            }
        } else if (!strcasecmp(cmd, "ChromaElim")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                video_enc.chroma_elim_threshold = atoi(arg);
            }
        } else if (!strcasecmp(cmd, "LumiMask")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                video_enc.lumi_masking = atof(arg);
            }
        } else if (!strcasecmp(cmd, "DarkMask")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                video_enc.dark_masking = atof(arg);
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
4165 4166 4167 4168
        } else if (!strcasecmp(cmd, "NoVideo")) {
            video_id = CODEC_ID_NONE;
        } else if (!strcasecmp(cmd, "NoAudio")) {
            audio_id = CODEC_ID_NONE;
4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192
        } else if (!strcasecmp(cmd, "ACL")) {
            IPAddressACL acl;
            struct hostent *he;

            get_arg(arg, sizeof(arg), &p);
            if (strcasecmp(arg, "allow") == 0) {
                acl.action = IP_ALLOW;
            } else if (strcasecmp(arg, "deny") == 0) {
                acl.action = IP_DENY;
            } else {
                fprintf(stderr, "%s:%d: ACL action '%s' is not ALLOW or DENY\n",
                        filename, line_num, arg);
                errors++;
            }

            get_arg(arg, sizeof(arg), &p);

            he = gethostbyname(arg);
            if (!he) {
                fprintf(stderr, "%s:%d: ACL refers to invalid host or ip address '%s'\n",
                        filename, line_num, arg);
                errors++;
            } else {
                /* Only take the first */
4193
                acl.first.s_addr = ntohl(((struct in_addr *) he->h_addr_list[0])->s_addr);
4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206
                acl.last = acl.first;
            }

            get_arg(arg, sizeof(arg), &p);

            if (arg[0]) {
                he = gethostbyname(arg);
                if (!he) {
                    fprintf(stderr, "%s:%d: ACL refers to invalid host or ip address '%s'\n",
                            filename, line_num, arg);
                    errors++;
                } else {
                    /* Only take the first */
4207
                    acl.last.s_addr = ntohl(((struct in_addr *) he->h_addr_list[0])->s_addr);
4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234
                }
            }

            if (!errors) {
                IPAddressACL *nacl = (IPAddressACL *) av_mallocz(sizeof(*nacl));
                IPAddressACL **naclp = 0;

                *nacl = acl;
                nacl->next = 0;

                if (stream) {
                    naclp = &stream->acl;
                } else if (feed) {
                    naclp = &feed->acl;
                } else {
                    fprintf(stderr, "%s:%d: ACL found not in <stream> or <feed>\n",
                            filename, line_num);
                    errors++;
                }

                if (naclp) {
                    while (*naclp)
                        naclp = &(*naclp)->next;

                    *naclp = nacl;
                }
            }
4235 4236 4237 4238 4239 4240 4241 4242 4243 4244
        } else if (!strcasecmp(cmd, "RTSPOption")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                av_freep(&stream->rtsp_option);
                /* XXX: av_strdup ? */
                stream->rtsp_option = av_malloc(strlen(arg) + 1);
                if (stream->rtsp_option) {
                    strcpy(stream->rtsp_option, arg);
                }
            }
4245 4246 4247 4248 4249 4250 4251 4252 4253
        } else if (!strcasecmp(cmd, "MulticastAddress")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                if (!inet_aton(arg, &stream->multicast_ip)) {
                    fprintf(stderr, "%s:%d: Invalid IP address: %s\n", 
                            filename, line_num, arg);
                    errors++;
                }
                stream->is_multicast = 1;
4254
                stream->loop = 1; /* default is looping */
4255 4256 4257 4258 4259 4260
            }
        } else if (!strcasecmp(cmd, "MulticastPort")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                stream->multicast_port = atoi(arg);
            }
4261 4262 4263 4264 4265 4266 4267 4268 4269
        } else if (!strcasecmp(cmd, "MulticastTTL")) {
            get_arg(arg, sizeof(arg), &p);
            if (stream) {
                stream->multicast_ttl = atoi(arg);
            }
        } else if (!strcasecmp(cmd, "NoLoop")) {
            if (stream) {
                stream->loop = 0;
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288
        } else if (!strcasecmp(cmd, "</Stream>")) {
            if (!stream) {
                fprintf(stderr, "%s:%d: No corresponding <Stream> for </Stream>\n",
                        filename, line_num);
                errors++;
            }
            if (stream->feed && stream->fmt && strcmp(stream->fmt->name, "ffm") != 0) {
                if (audio_id != CODEC_ID_NONE) {
                    audio_enc.codec_type = CODEC_TYPE_AUDIO;
                    audio_enc.codec_id = audio_id;
                    add_codec(stream, &audio_enc);
                }
                if (video_id != CODEC_ID_NONE) {
                    video_enc.codec_type = CODEC_TYPE_VIDEO;
                    video_enc.codec_id = video_id;
                    add_codec(stream, &video_enc);
                }
            }
            stream = NULL;
4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322
        } else if (!strcasecmp(cmd, "<Redirect")) {
            /*********************************************/
            char *q;
            if (stream || feed || redirect) {
                fprintf(stderr, "%s:%d: Already in a tag\n",
                        filename, line_num);
                errors++;
            } else {
                redirect = av_mallocz(sizeof(FFStream));
                *last_stream = redirect;
                last_stream = &redirect->next;

                get_arg(redirect->filename, sizeof(redirect->filename), &p);
                q = strrchr(redirect->filename, '>');
                if (*q)
                    *q = '\0';
                redirect->stream_type = STREAM_TYPE_REDIRECT;
            }
        } else if (!strcasecmp(cmd, "URL")) {
            if (redirect) {
                get_arg(redirect->feed_filename, sizeof(redirect->feed_filename), &p);
            }
        } else if (!strcasecmp(cmd, "</Redirect>")) {
            if (!redirect) {
                fprintf(stderr, "%s:%d: No corresponding <Redirect> for </Redirect>\n",
                        filename, line_num);
                errors++;
            }
            if (!redirect->feed_filename[0]) {
                fprintf(stderr, "%s:%d: No URL found for <Redirect>\n",
                        filename, line_num);
                errors++;
            }
            redirect = NULL;
4323 4324
        } else if (!strcasecmp(cmd, "LoadModule")) {
            get_arg(arg, sizeof(arg), &p);
4325
#ifdef CONFIG_HAVE_DLOPEN
4326
            load_module(arg);
4327 4328 4329 4330 4331
#else
            fprintf(stderr, "%s:%d: Module support not compiled into this version: '%s'\n", 
                    filename, line_num, arg);
            errors++;
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348
        } else {
            fprintf(stderr, "%s:%d: Incorrect keyword: '%s'\n", 
                    filename, line_num, cmd);
            errors++;
        }
    }

    fclose(f);
    if (errors)
        return -1;
    else
        return 0;
}


#if 0
static void write_packet(FFCodec *ffenc,
4349
                         uint8_t *buf, int size)
Fabrice Bellard's avatar
Fabrice Bellard committed
4350 4351 4352
{
    PacketHeader hdr;
    AVCodecContext *enc = &ffenc->enc;
4353
    uint8_t *wptr;
Fabrice Bellard's avatar
Fabrice Bellard committed
4354 4355
    mk_header(&hdr, enc, size);
    wptr = http_fifo.wptr;
4356
    fifo_write(&http_fifo, (uint8_t *)&hdr, sizeof(hdr), &wptr);
Fabrice Bellard's avatar
Fabrice Bellard committed
4357 4358 4359 4360 4361 4362 4363 4364
    fifo_write(&http_fifo, buf, size, &wptr);
    /* atomic modification of wptr */
    http_fifo.wptr = wptr;
    ffenc->data_count += size;
    ffenc->avg_frame_size = ffenc->avg_frame_size * AVG_COEF + size * (1.0 - AVG_COEF);
}
#endif

4365
static void show_banner(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
4366
{
4367 4368 4369 4370 4371 4372 4373
    printf("ffserver version " FFMPEG_VERSION ", Copyright (c) 2000-2003 Fabrice Bellard\n");
}

static void show_help(void)
{
    show_banner();
    printf("usage: ffserver [-L] [-h] [-f configfile]\n"
Fabrice Bellard's avatar
Fabrice Bellard committed
4374 4375
           "Hyper fast multi format Audio/Video streaming server\n"
           "\n"
4376
           "-L            : print the LICENSE\n"
Fabrice Bellard's avatar
Fabrice Bellard committed
4377 4378 4379 4380 4381
           "-h            : this help\n"
           "-f configfile : use configfile instead of /etc/ffserver.conf\n"
           );
}

4382
static void show_license(void)
Fabrice Bellard's avatar
Fabrice Bellard committed
4383
{
4384
    show_banner();
Fabrice Bellard's avatar
Fabrice Bellard committed
4385
    printf(
4386 4387 4388 4389
    "This library is free software; you can redistribute it and/or\n"
    "modify it under the terms of the GNU Lesser General Public\n"
    "License as published by the Free Software Foundation; either\n"
    "version 2 of the License, or (at your option) any later version.\n"
Fabrice Bellard's avatar
Fabrice Bellard committed
4390
    "\n"
4391
    "This library is distributed in the hope that it will be useful,\n"
Fabrice Bellard's avatar
Fabrice Bellard committed
4392
    "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
4393 4394
    "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n"
    "Lesser General Public License for more details.\n"
Fabrice Bellard's avatar
Fabrice Bellard committed
4395
    "\n"
4396 4397 4398
    "You should have received a copy of the GNU Lesser General Public\n"
    "License along with this library; if not, write to the Free Software\n"
    "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\n"
Fabrice Bellard's avatar
Fabrice Bellard committed
4399 4400 4401
    );
}

4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427
static void handle_child_exit(int sig)
{
    pid_t pid;
    int status;

    while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
        FFStream *feed;

        for (feed = first_feed; feed; feed = feed->next) {
            if (feed->pid == pid) {
                int uptime = time(0) - feed->pid_start;

                feed->pid = 0;
                fprintf(stderr, "%s: Pid %d exited with status %d after %d seconds\n", feed->filename, pid, status, uptime);

                if (uptime < 30) {
                    /* Turn off any more restarts */
                    feed->child_argv = 0;
                }    
            }
        }
    }

    need_to_start_children = 1;
}

Fabrice Bellard's avatar
Fabrice Bellard committed
4428 4429 4430 4431
int main(int argc, char **argv)
{
    const char *config_filename;
    int c;
4432
    struct sigaction sigact;
Fabrice Bellard's avatar
Fabrice Bellard committed
4433

4434
    av_register_all();
Fabrice Bellard's avatar
Fabrice Bellard committed
4435 4436 4437

    config_filename = "/etc/ffserver.conf";

4438
    my_program_name = argv[0];
4439
    my_program_dir = getcwd(0, 0);
4440 4441
    ffserver_daemon = 1;
    
Fabrice Bellard's avatar
Fabrice Bellard committed
4442
    for(;;) {
4443
        c = getopt(argc, argv, "ndLh?f:");
Fabrice Bellard's avatar
Fabrice Bellard committed
4444 4445 4446 4447
        if (c == -1)
            break;
        switch(c) {
        case 'L':
4448
            show_license();
Fabrice Bellard's avatar
Fabrice Bellard committed
4449 4450 4451
            exit(1);
        case '?':
        case 'h':
4452
            show_help();
Fabrice Bellard's avatar
Fabrice Bellard committed
4453
            exit(1);
4454 4455 4456 4457 4458
        case 'n':
            no_launch = 1;
            break;
        case 'd':
            ffserver_debug = 1;
4459
            ffserver_daemon = 0;
4460
            break;
Fabrice Bellard's avatar
Fabrice Bellard committed
4461 4462 4463 4464 4465 4466 4467 4468
        case 'f':
            config_filename = optarg;
            break;
        default:
            exit(2);
        }
    }

4469 4470
    putenv("http_proxy");               /* Kill the http_proxy */

4471 4472
    srandom(gettime_ms() + (getpid() << 16));

4473 4474 4475 4476 4477 4478 4479 4480 4481 4482
    /* address on which the server will handle HTTP connections */
    my_http_addr.sin_family = AF_INET;
    my_http_addr.sin_port = htons (8080);
    my_http_addr.sin_addr.s_addr = htonl (INADDR_ANY);

    /* address on which the server will handle RTSP connections */
    my_rtsp_addr.sin_family = AF_INET;
    my_rtsp_addr.sin_port = htons (5454);
    my_rtsp_addr.sin_addr.s_addr = htonl (INADDR_ANY);
    
Fabrice Bellard's avatar
Fabrice Bellard committed
4483
    nb_max_connections = 5;
4484
    max_bandwidth = 1000;
Fabrice Bellard's avatar
Fabrice Bellard committed
4485 4486 4487
    first_stream = NULL;
    logfilename[0] = '\0';

4488 4489 4490 4491 4492
    memset(&sigact, 0, sizeof(sigact));
    sigact.sa_handler = handle_child_exit;
    sigact.sa_flags = SA_NOCLDSTOP | SA_RESTART;
    sigaction(SIGCHLD, &sigact, 0);

Fabrice Bellard's avatar
Fabrice Bellard committed
4493 4494 4495 4496 4497
    if (parse_ffconfig(config_filename) < 0) {
        fprintf(stderr, "Incorrect config file - exiting.\n");
        exit(1);
    }

4498 4499
    build_file_streams();

Fabrice Bellard's avatar
Fabrice Bellard committed
4500 4501
    build_feed_streams();

4502 4503
    compute_bandwidth();

4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520
    /* put the process in background and detach it from its TTY */
    if (ffserver_daemon) {
        int pid;

        pid = fork();
        if (pid < 0) {
            perror("fork");
            exit(1);
        } else if (pid > 0) {
            /* parent : exit */
            exit(0);
        } else {
            /* child */
            setsid();
            chdir("/");
            close(0);
            open("/dev/null", O_RDWR);
4521
            if (strcmp(logfilename, "-") != 0) {
4522 4523 4524 4525
                close(1);
                dup(0);
            }
            close(2);
4526 4527 4528 4529
            dup(0);
        }
    }

Fabrice Bellard's avatar
Fabrice Bellard committed
4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540
    /* signal init */
    signal(SIGPIPE, SIG_IGN);

    /* open log file if needed */
    if (logfilename[0] != '\0') {
        if (!strcmp(logfilename, "-"))
            logfile = stdout;
        else
            logfile = fopen(logfilename, "w");
    }

4541 4542
    if (http_server() < 0) {
        fprintf(stderr, "Could not start server\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
4543 4544 4545 4546 4547
        exit(1);
    }

    return 0;
}