aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/youtube/YoutubeMediaProxy.cpp
blob: 0c0d8ddc540c31c0832d874a56d1c382144ebec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
#include "../../../plugins/youtube/YoutubeMediaProxy.hpp"
#include "../../../include/NetUtils.hpp"
#include "../../../include/Utils.hpp"

#include <vector>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
#include <inttypes.h>
#include <assert.h>

#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <fcntl.h>

// TODO: What if the client sends a new header without reconnecting? is that even allowed by http standard?
// TODO: Detect when download has finished (and close connection).

static ssize_t read_eintr(int fd, void *buffer, size_t size) {
    while(true) {
        ssize_t bytes_read = read(fd, buffer, size);
        if(bytes_read == -1) {
            if(errno != EINTR)
                return -1;
        } else {
            return bytes_read;
        }
    }
}

static ssize_t write_all(int fd, const void *buffer, size_t size) {
    ssize_t bytes_written = 0;
    while((size_t)bytes_written < size) {
        ssize_t written = write(fd, (char*)buffer + bytes_written, size - bytes_written);
        if(written == -1) {
            if(errno != EINTR)
                return -1;
        } else {
            bytes_written += written;
        }
    }
    return bytes_written;
}

static ssize_t write_all_blocking(int fd, const void *buffer, size_t size) {
    ssize_t bytes_written = 0;
    while((size_t)bytes_written < size) {
        ssize_t written = write(fd, (char*)buffer + bytes_written, size - bytes_written);
        if(written == -1) {
            if(errno != EINTR && errno != EWOULDBLOCK)
                return -1;
        } else {
            bytes_written += written;
        }
    }
    return bytes_written;
}

namespace QuickMedia {
    static const int MAX_BUFFER_SIZE = 65536;
    static const int64_t RANGE = 5242870;
    static const char download_error_response_msg[] = 
        "HTTP/1.1 500 Internal Server Error\r\n"
        "Content-Length: 0\r\n\r\n";
    static const char download_finished_response_msg[] = 
        "HTTP/1.1 200 OK\r\n"
        "Content-Length: 0\r\n\r\n";

    static bool set_non_blocking(int fd) {
        const int flags = fcntl(fd, F_GETFL, 0);
        if(fd == -1 || fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
            return false;
        return true;
    }

    // TODO: Restrict range end to remote file size (content-length which we have saved).
    // TODO: Check if custom youtube redirect code is needed
    bool YoutubeMediaProxy::start_download(const std::string &media_url, ReadProgram &read_program, int64_t range_start, int64_t end_range, bool include_header) {
        std::string r = std::to_string(range_start) + "-" + std::to_string(end_range);

        std::string url = media_url;;
        std::vector<const char*> args = { "curl",
            "-H", "Accept-Language: en-US,en;q=0.5", "-H", "Connection: keep-alive",
            "--no-buffer",
            "-H", "user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36",
            "-g", "-s", "-L", "-f", "-r", r.c_str() };

        if(include_header)
            args.push_back("-i");

        //fprintf(stderr, "url: %s\n", url.c_str());

        args.insert(args.end(), { "--", url.c_str(), nullptr });

        if(exec_program_pipe(args.data(), &read_program) != 0)
            return false;

        if(!set_non_blocking(read_program.read_fd)) {
            perror("start_download: failed to set curl pipe non blocking mode");
            close(read_program.read_fd);
            kill(read_program.pid, SIGTERM);
            read_program.read_fd = -1;
            read_program.pid = -1;
            return false;
        }

        return true;
    }

    YoutubeStaticMediaProxy::YoutubeStaticMediaProxy() {

    }

    YoutubeStaticMediaProxy::~YoutubeStaticMediaProxy() {
        stop();
    }

    bool YoutubeStaticMediaProxy::start(const std::string &youtube_media_url, int64_t content_length) {
        if(socket_fd != -1)
            return false;

        socket_fd = socket(AF_INET, SOCK_STREAM, 0);
        if(socket_fd == -1) {
            perror("YoutubeStaticMediaProxy::start: socket failed");
            return false;
        }

        socklen_t response_sock_addr_len;
        struct sockaddr_in server_addr;
        memset(&server_addr, 0, sizeof(server_addr));
        server_addr.sin_family = AF_INET;
        server_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
        server_addr.sin_port = htons(0);

        next_range_length = RANGE;

        if(bind(socket_fd, (struct sockaddr*)&server_addr, sizeof(server_addr)) == -1) {
            perror("YoutubeStaticMediaProxy::start: bind failed");
            goto err;
        }

        if(listen(socket_fd, 2) == -1) {
            perror("YoutubeStaticMediaProxy::start: listen failed");
            goto err;
        }

        if(!set_non_blocking(socket_fd)) {
            perror("YoutubeStaticMediaProxy::start: failed to set socket non blocking mode");
            goto err;
        }

        struct sockaddr_in response_sock_addr;
        response_sock_addr_len = sizeof(response_sock_addr);
        if(getsockname(socket_fd, (struct sockaddr*)&response_sock_addr, &response_sock_addr_len) == -1) {
            perror("YoutubeStaticMediaProxy::start: getsockname failed");
            goto err;
        }

        port = ntohs(response_sock_addr.sin_port);
        this->youtube_media_url = youtube_media_url;
        this->content_length = content_length;
        return true;

        err:
        if(downloader_read_program.read_fd != -1)
            close(downloader_read_program.read_fd);
        if(downloader_read_program.pid != -1)
            kill(downloader_read_program.pid, SIGTERM);
        close(socket_fd);
        socket_fd = -1;
        return false;
    }

    void YoutubeStaticMediaProxy::stop() {
        if(downloader_read_program.read_fd != -1) {
            close(downloader_read_program.read_fd);
            downloader_read_program.read_fd = -1;
        }

        if(downloader_read_program.pid != -1) {
            kill(downloader_read_program.pid, SIGTERM);
            wait_program(downloader_read_program.pid);
            downloader_read_program.pid = -1;
        }

        if(client_fd != -1) {
            close(client_fd);
            client_fd = -1;
        }

        if(socket_fd != -1) {
            close(socket_fd);
            socket_fd = -1;
        }

        clear_download_state();
        client_request_buffer.clear();
        client_request_finished = false;
    }

    YoutubeStaticMediaProxy::Error YoutubeStaticMediaProxy::update() {
        if(socket_fd == -1)
            return Error::OK;

        if(client_fd == -1) {
            client_fd = accept_client();
            if(client_fd == -1)
                return Error::OK;
        } else {
            const int new_client_fd = accept_client();
            if(new_client_fd != -1) {
                on_client_disconnect();
                client_fd = new_client_fd;
            }
        }

        Error err = read_client_data();
        if(err != Error::OK || !client_request_finished)
            return err;
        if(downloader_read_program.pid == -1)
            return Error::ERROR;
        return handle_download();
    }

    bool YoutubeStaticMediaProxy::get_address(std::string &address) {
        if(socket_fd == -1)
            return false;

        address = "http://127.0.0.1:" + std::to_string(port);
        return true;
    }

    void YoutubeStaticMediaProxy::on_client_disconnect() {
        client_request_buffer.clear();
        client_request_finished = false;
        download_started = false;

        if(client_fd != -1) {
            close(client_fd);
            client_fd = -1;
        }

        if(downloader_read_program.pid != -1)
            kill(downloader_read_program.pid, SIGTERM);

        update_download_program_status(true);
    }

    // Returns 0 if start range is not found
    static int64_t header_extract_start_range(const std::string &header) {
        std::string range = header_extract_value(header, "range");
        if(range.empty())
            return 0;

        int64_t start_range = 0;
        if(sscanf(range.c_str(), " bytes=%" PRId64, &start_range) != 1)
            return 0;

        return start_range;
    }

    static int64_t header_extract_content_length(const std::string &header) {
        std::string content_length_str = header_extract_value(header, "content-length");
        if(content_length_str.empty())
            return 0;

        errno = 0;
        char *endptr;
        int64_t content_length = strtoll(content_length_str.c_str(), &endptr, 10);
        if(endptr == content_length_str.c_str() || errno != 0)
            return 0;

        return content_length;
    }

    // TODO: What about hls (live streams)? need to test with that. There may not be a need to use YoutubeMediaProxy for that case (in that case document it).
    YoutubeStaticMediaProxy::Error YoutubeStaticMediaProxy::read_client_data() {
        if(client_request_finished)
            return Error::OK;

        char read_buffer[4096];
        const ssize_t num_bytes_read = read_eintr(client_fd, read_buffer, sizeof(read_buffer));
        if(num_bytes_read == -1) {
            const int err = errno;
            if(err == EAGAIN || err == EWOULDBLOCK) {
                return Error::OK;
            } else if(err == EPIPE || err == ECONNRESET) {
                //fprintf(stderr, "YoutubeStaticMediaProxy::read_client_data: client disconnected\n");
                on_client_disconnect();
                return Error::ERROR;
            } else {
                perror("YoutubeStaticMediaProxy::read_client_data: read failed");
                return Error::ERROR;
            }
        } else if(num_bytes_read == 0) {
            //fprintf(stderr, "YoutubeStaticMediaProxy::read_client_data: client disconnected\n");
            on_client_disconnect();
            return Error::ERROR;
        }

        client_request_buffer.append(read_buffer, num_bytes_read);
        const size_t header_end = client_request_buffer.find("\r\n\r\n");
        if(header_end != std::string::npos) {
            client_request_buffer.erase(header_end + 4);
            client_request_finished = true;
            download_started = false;
            download_read_buffer_offset = 0;

            const int64_t new_start_range = header_extract_start_range(client_request_buffer);
            if(downloader_read_program.pid != -1) {
                kill(downloader_read_program.pid, SIGTERM);
                wait_program(downloader_read_program.pid);
                downloader_read_program.pid = -1;
            }
            clear_download_state();
            return update_download_program_status(false, new_start_range, true);
        } else {
            if(client_request_buffer.size() > MAX_BUFFER_SIZE) {
                client_request_finished = true;
                fprintf(stderr, "YoutubeStaticMediaProxy::read_client_data: buffer is full (malicious client?)\n");
                return Error::ERROR;
            }
        }
        return Error::OK;
    }

    void YoutubeStaticMediaProxy::clear_download_state() {
        download_header.clear();
        download_header_finished = false;
        download_header_sent = false;
        download_header_remaining_sent = false;
        download_header_written_offset = 0;
        download_read_buffer_offset = 0;
        next_range_length = RANGE;
        end_of_file = false;
    }

    YoutubeStaticMediaProxy::Error YoutubeStaticMediaProxy::update_download_program_status(bool client_disconnected, int64_t new_range_start, bool restart_download) {
        int program_status = 0;
        if(downloader_read_program.pid != -1) {
            if(client_disconnected) {
                wait_program(downloader_read_program.pid);
            } else {
                if(wait_program_non_blocking(downloader_read_program.pid, &program_status) == 0 && program_status == 0)
                    return Error::OK;
            }
            downloader_read_program.pid = -1;
        }
        
        if(downloader_read_program.read_fd != -1) {
            close(downloader_read_program.read_fd);
            downloader_read_program.read_fd = -1;
        }

        if(program_status != 0) {
            //fprintf(stderr, "YoutubeStaticMediaProxy::update_download_program_status: download failed, exit status: %d\n", program_status);
            if(client_fd != -1) {
                write_all_blocking(client_fd, download_finished_response_msg, sizeof(download_finished_response_msg) - 1);
                close(client_fd);
                client_fd = -1;
                client_request_buffer.clear();
                client_request_finished = false;
            }
            return Error::ERROR;
        }

        if(client_disconnected) {
            current_download_range = 0;
        } else {
            current_download_range += next_range_length;
        }

        if(new_range_start != -1) {
            download_range_start = new_range_start;
            current_download_range = download_range_start;
        }

        if(new_range_start == -1) {
            download_header_finished = true;
            download_header_sent = true;
            download_header_remaining_sent = true;
        } else {
            clear_download_state();
        }

        if(client_disconnected) {
            clear_download_state();
            return Error::ERROR;
        }

        if(!restart_download)
            return Error::OK;

        if(new_range_start == -1) {
            download_header_finished = true;
            download_header_sent = true;
            download_header_remaining_sent = true;
        }

        int64_t end_range = current_download_range + RANGE;
        if(end_range > content_length) {
            end_range = content_length;
            end_of_file = true;
        }

        const bool start_download_success = start_download(youtube_media_url, downloader_read_program, current_download_range, end_range, new_range_start != -1);
        if(!start_download_success) {
            fprintf(stderr, "YoutubeStaticMediaProxy::update_download_program_status: failed to start download\n");
            if(client_fd != -1) {
                write_all_blocking(client_fd, download_error_response_msg, sizeof(download_error_response_msg) - 1);
                close(client_fd);
                client_fd = -1;
                client_request_buffer.clear();
                client_request_finished = false;
            }

            clear_download_state();
            return Error::ERROR;
        }

        return Error::OK;
    }

    static void header_replace_content_length(std::string &header, size_t header_size, int64_t new_content_length) {
        if(new_content_length < 0)
            new_content_length = 0;

        const char *content_length_p = strcasestr(header.c_str(), "content-length:");
        if(!content_length_p)
            return;

        const size_t content_length_start = (content_length_p + 15) - header.c_str();
        if(content_length_start >= header_size)
            return;
        const size_t line_end = header.find("\r\n", content_length_start);
        header.replace(content_length_start, line_end - content_length_start, std::to_string(new_content_length));
    }

    YoutubeStaticMediaProxy::Error YoutubeStaticMediaProxy::continue_send(const char *buffer_start, size_t total_bytes_to_write, int &buffer_offset) {
        int num_bytes_to_write = total_bytes_to_write - buffer_offset;
        //assert(num_bytes_to_write >= 0);
        if(num_bytes_to_write < 0) num_bytes_to_write = 0;
        if(num_bytes_to_write == 0) {
            buffer_offset = 0;
            return Error::OK;
        }

        const ssize_t num_bytes_written = write_all_blocking(client_fd, buffer_start + buffer_offset, num_bytes_to_write);
        if(num_bytes_written == -1) {
            const int err = errno;
            if(err == EAGAIN || err == EWOULDBLOCK) {
                return Error::OK;
            } else if(err == EPIPE || err == ECONNRESET) {
                //fprintf(stderr, "YoutubeStaticMediaProxy::continue_send: client disconnected\n");
                on_client_disconnect();
                return Error::ERROR;
            } else {
                perror("YoutubeStaticMediaProxy::continue_send: write failed");
                return Error::ERROR;
            }
        } else if(num_bytes_written == 0) {
            //fprintf(stderr, "YoutubeStaticMediaProxy::continue_send: client disconnected\n");
            on_client_disconnect();
            return Error::ERROR;
        } else if(num_bytes_written != num_bytes_to_write) {
            buffer_offset += num_bytes_written;
        } else {
            buffer_offset = 0;
        }
        return Error::OK;
    }

    static bool http_is_redirect(const char *header, size_t size) {
        const void *end_of_first_line_p = memmem(header, size, "\r\n", 2);
        if(!end_of_first_line_p)
            return false;
        return memmem(header, (const char*)end_of_first_line_p - header, " 30", 3) != nullptr;
    }

    static size_t find_start_of_first_non_redirect_header(const char *headers, size_t size, size_t &header_end) {
        const char *start = headers;
        while(size > 0) {
            const void *end_of_header = memmem(headers, size, "\r\n\r\n", 4);
            if(!end_of_header)
                return std::string::npos;

            const size_t offset_to_end_of_headers = ((const char*)end_of_header + 4) - headers;
            if(!http_is_redirect(headers, offset_to_end_of_headers)) {
                header_end = (headers - start) + offset_to_end_of_headers;
                return headers - start;
            }

            headers += offset_to_end_of_headers;
            size -= offset_to_end_of_headers;
        }
        return std::string::npos;
    }

    YoutubeStaticMediaProxy::Error YoutubeStaticMediaProxy::handle_download() {
        // TODO: Maybe read even if write is being slow and failing?
        if(download_read_buffer_offset == 0) {
            downloader_num_read_bytes = read_eintr(downloader_read_program.read_fd, download_read_buffer, sizeof(download_read_buffer));
            if(downloader_num_read_bytes == -1) {
                const int err = errno;
                if(err == EAGAIN || err == EWOULDBLOCK) {
                    return Error::OK;
                } else {
                    perror("YoutubeStaticMediaProxy::handle_download: curl read failed");
                    return Error::ERROR;
                }
            } else if(downloader_num_read_bytes == 0) {
                if(end_of_file) {
                    if(client_fd != -1) {
                        write_all_blocking(client_fd, download_finished_response_msg, sizeof(download_finished_response_msg) - 1);
                        close(client_fd);
                        client_fd = -1;
                        client_request_buffer.clear();
                        client_request_finished = false;
                    }
                    return Error::OK;
                }

                Error err = update_download_program_status(false, -1, true);
                if(err != Error::OK)
                    return err;
            } else {
                if(!download_started) {
                    total_downloaded_bytes = 0;
                    download_started = true;
                    download_start_time = get_boottime_milliseconds();
                }
                total_downloaded_bytes += downloader_num_read_bytes;
            }
        }

        // TODO: Remove this code and instead create the header ourselves and send it to the client. Then pipe the curl output directly to the client input.
        if(!download_header_finished) {
            download_header.append(download_read_buffer, downloader_num_read_bytes);
            size_t header_end = std::string::npos;
            const size_t offset_to_start_of_header = find_start_of_first_non_redirect_header(download_header.c_str(), download_header.size(), header_end);
            if(header_end != std::string::npos) {
                download_header.erase(0, offset_to_start_of_header);
                header_end -= offset_to_start_of_header;

                download_header_finished = true;
                download_header_sent = false;
                download_header_remaining_sent = false;
                download_header_written_offset = 0;
                download_header_offset_to_end_of_header = header_end;
                download_read_buffer_offset = -1;

                next_range_length = header_extract_content_length(download_header.substr(0, header_end));
                header_replace_content_length(download_header, header_end, content_length - download_range_start);
            } else {
                if(download_header.size() > MAX_BUFFER_SIZE) {
                    fprintf(stderr, "YoutubeStaticMediaProxy::handle_download: buffer is full (malicious server?)\n");
                    if(downloader_read_program.pid != -1) {
                        kill(downloader_read_program.pid, SIGTERM);
                        wait_program(downloader_read_program.pid);
                        downloader_read_program.pid = -1;
                    }
                    clear_download_state();
                    update_download_program_status(false, 0, false);
                    return Error::ERROR;
                }
            }
        }

        if(download_header_finished && !download_header_sent) {
            Error err = continue_send(download_header.data(), download_header_offset_to_end_of_header, download_header_written_offset);
            if(err != Error::OK)
                return err;

            if(download_header_written_offset == 0) {
                download_header_sent = true;
                download_header_written_offset = download_header_offset_to_end_of_header;
            }
        }

        if(download_header_finished && !download_header_remaining_sent) {
            Error err = continue_send(download_header.data(), download_header.size(), download_header_written_offset);
            if(err != Error::OK)
                return err;

            if(download_header_written_offset == 0) {
                download_header_remaining_sent = true;
                download_read_buffer_offset = 0;
                return Error::OK;
            }
        }

        if(download_header_remaining_sent)
            return continue_send(download_read_buffer, downloader_num_read_bytes, download_read_buffer_offset);

        return Error::OK;
    }

    int YoutubeStaticMediaProxy::accept_client() {
        struct sockaddr_in client_addr;
        socklen_t client_addr_len = sizeof(client_addr);
        int new_client_fd = accept(socket_fd, (struct sockaddr*)&client_addr, &client_addr_len);
        if(new_client_fd == -1) {
            const int err = errno;
            if(err == EAGAIN || err == EWOULDBLOCK) {
                return -1;
            } else {
                perror("YoutubeStaticMediaProxy::accept_client accept failed");
                return -1;
            }
        }

        if(!set_non_blocking(new_client_fd)) {
            perror("YoutubeStaticMediaProxy::accept_client: failed to set client socket non blocking mode");
            close(new_client_fd);
            return -1;
        }

        //fprintf(stderr, "YoutubeStaticMediaProxy::accept_client: client connected!\n");
        return new_client_fd;
    }
}