/* The MIT License (MIT) Copyright (c) 2013-2015 SRS(ossrs) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; // Whether we are in docker, defined in main module. extern bool _srs_in_docker; void srs_build_features(stringstream& ss) { ss << "&docker=" << _srs_in_docker << "&packager=" << SRS_AUTO_PACKAGER; } SrsLatestVersion::SrsLatestVersion() { trd_ = new SrsSTCoroutine("signal", this); } SrsLatestVersion::~SrsLatestVersion() { srs_freep(trd_); } srs_error_t SrsLatestVersion::start() { if (!_srs_config->whether_query_latest_version()) { return srs_success; } if (true) { uuid_t uuid; uuid_generate_time(uuid); char buf[32]; for (int i = 0; i < 16; i++) { snprintf(buf + i * 2, sizeof(buf), "%02x", uuid[i]); } server_id_ = string(buf, sizeof(buf)); } return trd_->start(); } srs_error_t SrsLatestVersion::cycle() { srs_error_t err = srs_success; srs_utime_t first_random_wait = 0; srs_random_generate((char*)&first_random_wait, 8); first_random_wait = srs_utime_t(uint64_t((first_random_wait + srs_update_system_time() + getpid())) % (5 * 60)) * SRS_UTIME_SECONDS; // in s. // Only report after 5+ minutes. first_random_wait += 5 * 60 * SRS_UTIME_SECONDS; srs_trace("Startup query id=%s, eip=%s, wait=%ds", server_id_.c_str(), srs_get_public_internet_address().c_str(), srsu2msi(first_random_wait)/1000); srs_usleep(first_random_wait); while (true) { srs_utime_t starttime = srs_update_system_time(); if ((err = query_latest_version()) != srs_success) { srs_warn("query err %s", srs_error_desc(err).c_str()); srs_freep(err); // Ignore any error. } srs_trace("Finish query id=%s, eip=%s, match=%s, stable=%s, cost=%dms", server_id_.c_str(), srs_get_public_internet_address().c_str(), match_version_.c_str(), stable_version_.c_str(), srsu2msi(srs_update_system_time() - starttime)); srs_usleep(3600 * SRS_UTIME_SECONDS); // Every an hour. } return err; } srs_error_t SrsLatestVersion::query_latest_version() { srs_error_t err = srs_success; // Generate uri and parse to object. stringstream ss; ss << "http://api.ossrs.net/service/v1/releases?" << "version=v" << VERSION_MAJOR << "." << VERSION_MINOR << "." << VERSION_REVISION << "&id=" << server_id_ << "&role=srs" << "&eip=" << srs_get_public_internet_address() << "&ts=" << srs_get_system_time() << "&alive=" << srsu2ms(srs_get_system_time() - srs_get_system_startup_time()) / 1000; srs_build_features(ss); string url = ss.str(); SrsHttpUri uri; if ((err = uri.initialize(url)) != srs_success) { return srs_error_wrap(err, "http: post failed. url=%s", url.c_str()); } // Start HTTP request and read response. SrsHttpClient http; if ((err = http.initialize(uri.get_host(), uri.get_port())) != srs_success) { return err; } // Path with query. string path = uri.get_path(); path += "?"; path += uri.get_query(); ISrsHttpMessage* msg = NULL; if ((err = http.get(path, "", &msg)) != srs_success) { return err; } SrsAutoFree(ISrsHttpMessage, msg); string res; int code = msg->status_code(); if ((err = msg->body_read_all(res)) != srs_success) { return err; } // Check the response code and content. if (code != SRS_CONSTS_HTTP_OK) { return srs_error_new(ERROR_HTTP_STATUS_INVALID, "invalid response status=%d", code); } if (res.empty()) { return srs_error_new(ERROR_HTTP_DATA_INVALID, "invalid empty response"); } // Response in json object. SrsJsonAny* jres = SrsJsonAny::loads((char*)res.c_str()); if (!jres || !jres->is_object()) { return srs_error_new(ERROR_HTTP_DATA_INVALID, "invalid response %s", res.c_str()); } SrsAutoFree(SrsJsonAny, jres); SrsJsonObject* obj = jres->to_object(); SrsJsonAny* prop = NULL; // Parse fields of response. if ((prop = obj->ensure_property_string("match_version")) == NULL) { return srs_error_new(ERROR_RESPONSE_CODE, "no match_version"); } match_version_ = prop->to_str(); if ((prop = obj->ensure_property_string("stable_version")) == NULL) { return srs_error_new(ERROR_RESPONSE_CODE, "no stable_version"); } stable_version_ = prop->to_str(); return err; }