// // Copyright (c) 2013-2021 Winlin // // SPDX-License-Identifier: MIT // #include #include #include #include #include using namespace std; #include #include #include #include SrsPps* _srs_pps_cids_get = NULL; SrsPps* _srs_pps_cids_set = NULL; #define SRS_BASIC_LOG_SIZE 8192 SrsThreadContext::SrsThreadContext() { } SrsThreadContext::~SrsThreadContext() { } SrsContextId SrsThreadContext::generate_id() { SrsContextId cid = SrsContextId(); return cid.set_value(srs_random_str(8)); } const SrsContextId& SrsThreadContext::get_id() { ++_srs_pps_cids_get->sugar; return cache[srs_thread_self()]; } const SrsContextId& SrsThreadContext::set_id(const SrsContextId& v) { ++_srs_pps_cids_set->sugar; srs_thread_t self = srs_thread_self(); if (cache.find(self) == cache.end()) { cache[self] = v; return v; } const SrsContextId& ov = cache[self]; cache[self] = v; return ov; } void SrsThreadContext::clear_cid() { srs_thread_t self = srs_thread_self(); std::map::iterator it = cache.find(self); if (it != cache.end()) { cache.erase(it); } } impl_SrsContextRestore::impl_SrsContextRestore(SrsContextId cid) { cid_ = cid; } impl_SrsContextRestore::~impl_SrsContextRestore() { _srs_context->set_id(cid_); } // LCOV_EXCL_START SrsConsoleLog::SrsConsoleLog(SrsLogLevel l, bool u) { level = l; utc = u; buffer = new char[SRS_BASIC_LOG_SIZE]; } SrsConsoleLog::~SrsConsoleLog() { srs_freepa(buffer); } srs_error_t SrsConsoleLog::initialize() { return srs_success; } void SrsConsoleLog::reopen() { } void SrsConsoleLog::verbose(const char* tag, SrsContextId context_id, const char* fmt, ...) { if (level > SrsLogLevelVerbose) { return; } int size = 0; if (!srs_log_header(buffer, SRS_BASIC_LOG_SIZE, utc, false, tag, context_id, "Verb", &size)) { return; } va_list ap; va_start(ap, fmt); // we reserved 1 bytes for the new line. size += vsnprintf(buffer + size, SRS_BASIC_LOG_SIZE - size, fmt, ap); va_end(ap); fprintf(stdout, "%s\n", buffer); } void SrsConsoleLog::info(const char* tag, SrsContextId context_id, const char* fmt, ...) { if (level > SrsLogLevelInfo) { return; } int size = 0; if (!srs_log_header(buffer, SRS_BASIC_LOG_SIZE, utc, false, tag, context_id, "Debug", &size)) { return; } va_list ap; va_start(ap, fmt); // we reserved 1 bytes for the new line. size += vsnprintf(buffer + size, SRS_BASIC_LOG_SIZE - size, fmt, ap); va_end(ap); fprintf(stdout, "%s\n", buffer); } void SrsConsoleLog::trace(const char* tag, SrsContextId context_id, const char* fmt, ...) { if (level > SrsLogLevelTrace) { return; } int size = 0; if (!srs_log_header(buffer, SRS_BASIC_LOG_SIZE, utc, false, tag, context_id, "Trace", &size)) { return; } va_list ap; va_start(ap, fmt); // we reserved 1 bytes for the new line. size += vsnprintf(buffer + size, SRS_BASIC_LOG_SIZE - size, fmt, ap); va_end(ap); fprintf(stdout, "%s\n", buffer); } void SrsConsoleLog::warn(const char* tag, SrsContextId context_id, const char* fmt, ...) { if (level > SrsLogLevelWarn) { return; } int size = 0; if (!srs_log_header(buffer, SRS_BASIC_LOG_SIZE, utc, true, tag, context_id, "Warn", &size)) { return; } va_list ap; va_start(ap, fmt); // we reserved 1 bytes for the new line. size += vsnprintf(buffer + size, SRS_BASIC_LOG_SIZE - size, fmt, ap); va_end(ap); fprintf(stderr, "%s\n", buffer); } void SrsConsoleLog::error(const char* tag, SrsContextId context_id, const char* fmt, ...) { if (level > SrsLogLevelError) { return; } int size = 0; if (!srs_log_header(buffer, SRS_BASIC_LOG_SIZE, utc, true, tag, context_id, "Error", &size)) { return; } va_list ap; va_start(ap, fmt); // we reserved 1 bytes for the new line. size += vsnprintf(buffer + size, SRS_BASIC_LOG_SIZE - size, fmt, ap); va_end(ap); // add strerror() to error msg. if (errno != 0) { size += snprintf(buffer + size, SRS_BASIC_LOG_SIZE - size, "(%s)", strerror(errno)); } fprintf(stderr, "%s\n", buffer); } // LCOV_EXCL_STOP bool srs_log_header(char* buffer, int size, bool utc, bool dangerous, const char* tag, SrsContextId cid, const char* level, int* psize) { // clock time timeval tv; if (gettimeofday(&tv, NULL) == -1) { return false; } // to calendar time struct tm now; // Each of these functions returns NULL in case an error was detected. @see https://linux.die.net/man/3/localtime_r if (utc) { if (gmtime_r(&tv.tv_sec, &now) == NULL) { return false; } } else { if (localtime_r(&tv.tv_sec, &now) == NULL) { return false; } } int written = -1; if (dangerous) { if (tag) { written = snprintf(buffer, size, "[%d-%02d-%02d %02d:%02d:%02d.%03d][%s][%d][%s][%d][%s] ", 1900 + now.tm_year, 1 + now.tm_mon, now.tm_mday, now.tm_hour, now.tm_min, now.tm_sec, (int)(tv.tv_usec / 1000), level, getpid(), cid.c_str(), errno, tag); } else { written = snprintf(buffer, size, "[%d-%02d-%02d %02d:%02d:%02d.%03d][%s][%d][%s][%d] ", 1900 + now.tm_year, 1 + now.tm_mon, now.tm_mday, now.tm_hour, now.tm_min, now.tm_sec, (int)(tv.tv_usec / 1000), level, getpid(), cid.c_str(), errno); } } else { if (tag) { written = snprintf(buffer, size, "[%d-%02d-%02d %02d:%02d:%02d.%03d][%s][%d][%s][%s] ", 1900 + now.tm_year, 1 + now.tm_mon, now.tm_mday, now.tm_hour, now.tm_min, now.tm_sec, (int)(tv.tv_usec / 1000), level, getpid(), cid.c_str(), tag); } else { written = snprintf(buffer, size, "[%d-%02d-%02d %02d:%02d:%02d.%03d][%s][%d][%s] ", 1900 + now.tm_year, 1 + now.tm_mon, now.tm_mday, now.tm_hour, now.tm_min, now.tm_sec, (int)(tv.tv_usec / 1000), level, getpid(), cid.c_str()); } } // Exceed the size, ignore this log. // Check size to avoid security issue https://github.com/ossrs/srs/issues/1229 if (written >= size) { return false; } if (written == -1) { return false; } // write the header size. *psize = written; return true; }