aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/youtube/Signature.cpp
blob: 7631182cd1b22a36d90b90d93d077f42ea5f9112 (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
#include "../../../plugins/youtube/Signature.hpp"
#include "../../../include/Storage.hpp"
#include "../../../include/Notification.hpp"
#include "../../../include/DownloadUtils.hpp"
#include "../../../include/StringUtils.hpp"
#include "../../../include/Program.hpp"
#include "../../../include/NetUtils.hpp"
#include <regex>
#include <mutex>
#include <unistd.h>

namespace QuickMedia {
    enum UpdateDecryptFunctionError {
        U_DEC_FUN_NET_ERR = 1,
        U_DEC_FUN_FAILED_MATCH_ERR = 2
    };

    static YoutubeSignatureDecryptor *instance = nullptr;
    static std::mutex update_signature_mutex;
    static const int timeout_default_sec = 60 * 5; // 5 minutes

    static bool is_whitespace(char c) {
        switch(c) {
            case ' ':
            case '\r':
            case '\n':
            case '\t':
                return true;
        }
        return false;
    }

    static std::string remove_whitespaces(const std::string &str) {
        std::string result;
        for(char c : str) {
            if(!is_whitespace(c))
                result += c;
        }
        return result;
    }

    bool YoutubeSignatureDecryptor::js_code_to_operations(const std::string &function_body_str, const std::string &var_body_str, std::vector<DecryptFuncCall> &new_func_calls, std::map<std::string, DecryptFunction> &new_func_decls) {
        std::vector<std::string> function_body;
        string_split(function_body_str, ';', [&function_body](const char *str, size_t size) {
            function_body.push_back(std::string(str, size));
            return true;
        });

        if(function_body.empty())
            return false;

        std::vector<std::string> var_body;
        string_split(var_body_str, "},", [&var_body](const char *str, size_t size) {
            var_body.push_back(std::string(str, size));
            return true;
        });

        if(var_body.empty())
            return false;

        //fprintf(stderr, "function body: %s\n", function_body_str.c_str());
        for(const std::string &func_call_str : function_body) {
            const size_t var_name_split_index = func_call_str.find('.');
            if(var_name_split_index == std::string::npos) return false;

            const size_t func_name_end_index = func_call_str.find('(', var_name_split_index + 1);
            if(func_name_end_index == std::string::npos) return false;

            const size_t values_index = func_call_str.find(',', func_name_end_index + 1);
            if(values_index == std::string::npos) return false;

            const size_t values_end_index = func_call_str.find(')', values_index + 1);
            if(values_end_index == std::string::npos) return false;

            std::string func_name = func_call_str.substr(var_name_split_index + 1, func_name_end_index - (var_name_split_index + 1));
            func_name = strip(func_name);
            std::string value_args = func_call_str.substr(values_index + 1, values_end_index - (values_index + 1));

            errno = 0;
            char *endptr;
            const long value_int = strtol(value_args.c_str(), &endptr, 10);
            if(endptr != value_args.c_str() && errno == 0)
                new_func_calls.push_back({ std::move(func_name), value_int });
            else
                return false;

            //fprintf(stderr, "func_call: %s, value: %ld\n", new_func_calls.back().func_name.c_str(), value_int);
        }

        //fprintf(stderr, "declaration body: %s\n", var_body_str.c_str());
        for(const std::string &func_decl_str : var_body) {
            const size_t func_name_split_index = func_decl_str.find(':');
            if(func_name_split_index == std::string::npos) return false;

            const size_t func_start_index = func_decl_str.find('{', func_name_split_index + 1);
            if(func_start_index == std::string::npos) return false;

            std::string func_name = func_decl_str.substr(0, func_name_split_index);
            func_name = strip(func_name);
            std::string function_body = func_decl_str.substr(func_start_index + 1);
            function_body = strip(remove_whitespaces(function_body));
            if(!function_body.empty() && function_body.back() == '}')
                function_body.pop_back();

            DecryptFunction decrypt_function;
            if(function_body == "a.reverse()")
                decrypt_function = DecryptFunction::REVERSE;
            else if(function_body == "a.splice(0,b)")
                decrypt_function = DecryptFunction::SPLICE;
            else if(function_body.find("a[0]=a[b%a.length]") != std::string::npos)
                decrypt_function = DecryptFunction::SWAP;
            else {
                fprintf(stderr, "Unexpected decryption function body: |%s|\n", function_body.c_str());
                return false;
            }
            //fprintf(stderr, "declared function: %s, body: |%s|\n", func_name.c_str(), function_body.c_str());
            new_func_decls[std::move(func_name)] = decrypt_function;
        }

        for(const auto &func_call : new_func_calls) {
            if(new_func_decls.find(func_call.func_name) == new_func_decls.end()) {
                fprintf(stderr, "YoutubeSignatureDecryptor: declaration for decryption function %s not found\n", func_call.func_name.c_str());
                fprintf(stderr, "YoutubeSignatureDecryptor: Regex match 10 invalid. Youtube likely updated and QuickMedia needs to be fixed?\n");
                return false;
            }
        }

        return true;
    }

    YoutubeSignatureDecryptor::YoutubeSignatureDecryptor() {
        {
            Path youtube_cache_dir = get_cache_dir().join("youtube");
            if(create_directory_recursive(youtube_cache_dir) != 0) {
                show_notification("QuickMedia", "Failed to create youtube cache directory", Urgency::CRITICAL);
                return;
            }

            youtube_cache_dir.join("decryption_function");
            if(file_get_content(youtube_cache_dir, decryption_function) == 0) {
                file_get_last_modified_time_seconds(youtube_cache_dir.data.c_str(), &decrypt_function_last_updated);

                size_t newline_index = decryption_function.find('\n');
                if(newline_index != std::string::npos) {
                    std::string function_body_str = decryption_function.substr(0, newline_index);
                    std::string var_body_str = decryption_function.substr(newline_index + 1);

                    std::vector<DecryptFuncCall> new_func_calls;
                    std::map<std::string, DecryptFunction> new_func_decls;
                    if(js_code_to_operations(function_body_str, var_body_str, new_func_calls, new_func_decls)) {
                        func_calls = std::move(new_func_calls);
                        func_decls = std::move(new_func_decls);

                        time_t time_now = time(nullptr);
                        if(time_now - decrypt_function_last_updated <= timeout_default_sec)
                            up_to_date = true;
                    }
                }
            }
        }

        running = true;
        poll_task = AsyncTask<void>([this]() mutable {
            bool has_notified_error = false;
            int decrypt_function_update_timeout_seconds = timeout_default_sec;
            while(running) {
                time_t time_now = time(nullptr);
                if(time_now - decrypt_function_last_updated > decrypt_function_update_timeout_seconds) {
                    int update_res = update_decrypt_function();
                    if(update_res != 0) {
                        if(!has_notified_error) {
                            if(program_is_dead_in_current_thread()) {
                                running = false;
                                return;
                            } else if(update_res == U_DEC_FUN_NET_ERR) {
                                show_notification("QuickMedia", "Failed to decrypt youtube signature. Is your internet down?", Urgency::CRITICAL);
                                decrypt_function_update_timeout_seconds = 10;
                            } else if(update_res == U_DEC_FUN_FAILED_MATCH_ERR) {
                                show_notification("QuickMedia", "Failed to decrypt youtube signature. Make sure you are running the latest version of QuickMedia", Urgency::CRITICAL);
                                running = false;
                                return;
                            }
                        }
                        has_notified_error = true;
                    } else {
                        decrypt_function_update_timeout_seconds = timeout_default_sec;
                    }
                }
                usleep(1 * 1000 * 1000); // 1 second
            }
        });
    }

    YoutubeSignatureDecryptor::~YoutubeSignatureDecryptor() {
        running = false;
    }

    // static
    YoutubeSignatureDecryptor& YoutubeSignatureDecryptor::get_instance() {
        std::lock_guard<std::mutex> lock(update_signature_mutex);
        if(!instance)
            instance = new YoutubeSignatureDecryptor();
        return *instance;
    }

    bool YoutubeSignatureDecryptor::decrypt(const std::string &s, const std::string &sp, std::string &sig_key, std::string &sig_value) {
        if(s.empty() || sp.empty())
            return false;

        if(!up_to_date) {
            int num_tries = 0;
            const int max_tries = 30;
            while(running && num_tries < max_tries && !program_is_dead_in_current_thread()) { // 6 seconds in total
                if(up_to_date)
                    break;
                ++num_tries;
                usleep(200 * 1000); // 200 milliseconds
            }

            if(num_tries == max_tries) {
                show_notification("QuickMedia", "Failed to get decryption function for youtube. Make sure your internet is up and that you are running the latest version of QuickMedia", Urgency::CRITICAL);
                return false;
            }
        }

        std::lock_guard<std::mutex> lock(update_signature_mutex);
        std::string sig = s;
        for(const auto &func_call : func_calls) {
            auto func_decl_it = func_decls.find(func_call.func_name);
            assert(func_decl_it != func_decls.end());
            
            switch(func_decl_it->second) {
                case DecryptFunction::REVERSE: {
                    std::reverse(sig.begin(), sig.end());
                    break;
                }
                case DecryptFunction::SPLICE: {
                    long int erase_index = func_call.arg;
                    if(erase_index > 0 && (size_t)erase_index < sig.size())
                        sig.erase(0, erase_index);
                    break;
                }
                case DecryptFunction::SWAP: {
                    if(sig.empty() || func_call.arg < 0) {
                        fprintf(stderr, "YoutubeSignatureDecryptor: sig unexpectedly empty in swap\n");
                    } else {
                        char c = sig[0];
                        sig[0] = sig[func_call.arg % sig.size()];
                        sig[func_call.arg % sig.size()] = c;
                    }
                    break;
                }
            }
        }

        sig_key = sp;
        sig_value = url_param_encode(sig);
        return true;
    }

    int YoutubeSignatureDecryptor::update_decrypt_function() {
        std::string response;
        DownloadResult download_result = download_to_string("https://www.youtube.com/watch?v=jNQXAC9IVRw&gl=US&hl=en", response, {}, true);
        if(download_result != DownloadResult::OK) {
            fprintf(stderr, "YoutubeSignatureDecryptor::update_decrypt_function failed. Failed to get youtube page\n");
            return U_DEC_FUN_NET_ERR;
        }

        std::smatch base_js_match;
        if(!std::regex_search(response, base_js_match, std::regex(R"END((\/s\/player\/[^\/]+\/player_ias[^\/]+\/en_US\/base\.js))END", std::regex::ECMAScript)) || base_js_match.size() != 2) {
            fprintf(stderr, "YoutubeSignatureDecryptor: Regex match 1 invalid. Youtube likely updated and QuickMedia needs to be fixed?\n");
            return U_DEC_FUN_FAILED_MATCH_ERR;
        }

        const std::string &url = base_js_match[1].str();
        download_result = download_to_string("https://www.youtube.com" + url, response, {}, true);
        if(download_result != DownloadResult::OK) {
            fprintf(stderr, "YoutubeSignatureDecryptor::update_decrypt_function failed. Failed to get https://www.youtube.com%s\n", url.c_str());
            return U_DEC_FUN_NET_ERR;
        }

        std::smatch function_match;
        if(!std::regex_search(response, function_match, std::regex(R"END((^|\n)\w+=function\(\w\)\{\w=\w\.split\(""\);([^\}]*)\})END", std::regex::ECMAScript)) || function_match.size() != 3) {
            fprintf(stderr, "YoutubeSignatureDecryptor: Regex match 2 invalid. Youtube likely updated and QuickMedia needs to be fixed?\n");
            return U_DEC_FUN_FAILED_MATCH_ERR;
        }

        std::string function_body_str = function_match[2].str();
        size_t last_semicolon_index = function_body_str.rfind(';');
        if(last_semicolon_index == std::string::npos) {
            fprintf(stderr, "YoutubeSignatureDecryptor: Regex match 3 invalid. Youtube likely updated and QuickMedia needs to be fixed?\n");
            return U_DEC_FUN_FAILED_MATCH_ERR;
        }

        function_body_str.erase(last_semicolon_index, function_body_str.size());
        string_replace_all(function_body_str, '\n', ' ');

        size_t var_dot_index = function_body_str.find('.');
        if(var_dot_index == std::string::npos) {
            fprintf(stderr, "YoutubeSignatureDecryptor: Regex match 5 invalid. Youtube likely updated and QuickMedia needs to be fixed?\n");
            return U_DEC_FUN_FAILED_MATCH_ERR;
        }

        std::string var_name = function_body_str.substr(0, var_dot_index);
        string_replace_all(response, '\n', ' ');
        std::smatch var_body_match;
        if(!std::regex_search(response, var_body_match, std::regex("var " + var_name + "=\\{(.*?)\\};", std::regex::ECMAScript)) || var_body_match.size() != 2) {
            fprintf(stderr, "YoutubeSignatureDecryptor: Regex match 6 invalid. Youtube likely updated and QuickMedia needs to be fixed?\n");
            return U_DEC_FUN_FAILED_MATCH_ERR;
        }

        std::string var_body_str = var_body_match[1].str();
        string_replace_all(var_body_str, '\n', ' ');
        
        std::vector<DecryptFuncCall> new_func_calls;
        std::map<std::string, DecryptFunction> new_func_decls;
        if(!js_code_to_operations(function_body_str, var_body_str, new_func_calls, new_func_decls)) {
            fprintf(stderr, "YoutubeSignatureDecryptor: Regex match 7 invalid. Youtube likely updated and QuickMedia needs to be fixed?\n");
            return U_DEC_FUN_FAILED_MATCH_ERR;
        }

        {
            std::lock_guard<std::mutex> lock(update_signature_mutex);
            decryption_function = function_body_str + "\n" + var_body_str;
            decrypt_function_last_updated = time(nullptr);
            up_to_date = true;
            func_calls = std::move(new_func_calls);
            func_decls = std::move(new_func_decls);
        }

        file_overwrite_atomic(get_cache_dir().join("youtube").join("decryption_function"), decryption_function);
        return 0;
    }
}