| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Globalization; |
| | 4 | | using System.IO; |
| | 5 | | using System.Linq; |
| | 6 | | using System.Net; |
| | 7 | | using System.Runtime.InteropServices; |
| | 8 | | using System.Runtime.Versioning; |
| | 9 | | using System.Text; |
| | 10 | | using System.Threading.Tasks; |
| | 11 | | using Emby.Server.Implementations; |
| | 12 | | using MediaBrowser.Common.Configuration; |
| | 13 | | using MediaBrowser.Controller.Extensions; |
| | 14 | | using MediaBrowser.Model.IO; |
| | 15 | | using Microsoft.Extensions.Configuration; |
| | 16 | | using Microsoft.Extensions.Logging; |
| | 17 | | using Serilog; |
| | 18 | | using ILogger = Microsoft.Extensions.Logging.ILogger; |
| | 19 | |
|
| | 20 | | namespace Jellyfin.Server.Helpers; |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// A class containing helper methods for server startup. |
| | 24 | | /// </summary> |
| | 25 | | public static class StartupHelpers |
| | 26 | | { |
| 0 | 27 | | private static readonly string[] _relevantEnvVarPrefixes = { "JELLYFIN_", "DOTNET_", "ASPNETCORE_" }; |
| | 28 | |
|
| | 29 | | /// <summary> |
| | 30 | | /// Logs relevant environment variables and information about the host. |
| | 31 | | /// </summary> |
| | 32 | | /// <param name="logger">The logger to use.</param> |
| | 33 | | /// <param name="appPaths">The application paths to use.</param> |
| | 34 | | public static void LogEnvironmentInfo(ILogger logger, IApplicationPaths appPaths) |
| | 35 | | { |
| | 36 | | // Distinct these to prevent users from reporting problems that aren't actually problems |
| 0 | 37 | | var commandLineArgs = Environment |
| 0 | 38 | | .GetCommandLineArgs() |
| 0 | 39 | | .Distinct(); |
| | 40 | |
|
| | 41 | | // Get all relevant environment variables |
| 0 | 42 | | var allEnvVars = Environment.GetEnvironmentVariables(); |
| 0 | 43 | | var relevantEnvVars = new Dictionary<object, object>(); |
| 0 | 44 | | foreach (var key in allEnvVars.Keys) |
| | 45 | | { |
| 0 | 46 | | if (_relevantEnvVarPrefixes.Any(prefix => key.ToString()!.StartsWith(prefix, StringComparison.OrdinalIgnoreC |
| | 47 | | { |
| 0 | 48 | | relevantEnvVars.Add(key, allEnvVars[key]!); |
| | 49 | | } |
| | 50 | | } |
| | 51 | |
|
| 0 | 52 | | logger.LogInformation("Environment Variables: {EnvVars}", relevantEnvVars); |
| 0 | 53 | | logger.LogInformation("Arguments: {Args}", commandLineArgs); |
| 0 | 54 | | logger.LogInformation("Operating system: {OS}", RuntimeInformation.OSDescription); |
| 0 | 55 | | logger.LogInformation("Architecture: {Architecture}", RuntimeInformation.OSArchitecture); |
| 0 | 56 | | logger.LogInformation("64-Bit Process: {Is64Bit}", Environment.Is64BitProcess); |
| 0 | 57 | | logger.LogInformation("User Interactive: {IsUserInteractive}", Environment.UserInteractive); |
| 0 | 58 | | logger.LogInformation("Processor count: {ProcessorCount}", Environment.ProcessorCount); |
| 0 | 59 | | logger.LogInformation("Program data path: {ProgramDataPath}", appPaths.ProgramDataPath); |
| 0 | 60 | | logger.LogInformation("Log directory path: {LogDirectoryPath}", appPaths.LogDirectoryPath); |
| 0 | 61 | | logger.LogInformation("Config directory path: {ConfigurationDirectoryPath}", appPaths.ConfigurationDirectoryPath |
| 0 | 62 | | logger.LogInformation("Cache path: {CachePath}", appPaths.CachePath); |
| 0 | 63 | | logger.LogInformation("Temp directory path: {TempDirPath}", appPaths.TempDirectory); |
| 0 | 64 | | logger.LogInformation("Web resources path: {WebPath}", appPaths.WebPath); |
| 0 | 65 | | logger.LogInformation("Application directory: {ApplicationPath}", appPaths.ProgramSystemPath); |
| 0 | 66 | | } |
| | 67 | |
|
| | 68 | | /// <summary> |
| | 69 | | /// Create the data, config and log paths from the variety of inputs(command line args, |
| | 70 | | /// environment variables) or decide on what default to use. For Windows it's %AppPath% |
| | 71 | | /// for everything else the |
| | 72 | | /// <a href="https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html">XDG approach</a> |
| | 73 | | /// is followed. |
| | 74 | | /// </summary> |
| | 75 | | /// <param name="options">The <see cref="StartupOptions" /> for this instance.</param> |
| | 76 | | /// <returns><see cref="ServerApplicationPaths" />.</returns> |
| | 77 | | public static ServerApplicationPaths CreateApplicationPaths(StartupOptions options) |
| | 78 | | { |
| | 79 | | // LocalApplicationData |
| | 80 | | // Windows: %LocalAppData% |
| | 81 | | // macOS: NSApplicationSupportDirectory |
| | 82 | | // UNIX: $XDG_DATA_HOME |
| 0 | 83 | | var dataDir = options.DataDir |
| 0 | 84 | | ?? Environment.GetEnvironmentVariable("JELLYFIN_DATA_DIR") |
| 0 | 85 | | ?? Path.Join( |
| 0 | 86 | | Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData, Environment.SpecialFolderOptio |
| 0 | 87 | | "jellyfin"); |
| | 88 | |
|
| 0 | 89 | | var configDir = options.ConfigDir ?? Environment.GetEnvironmentVariable("JELLYFIN_CONFIG_DIR"); |
| 0 | 90 | | if (configDir is null) |
| | 91 | | { |
| 0 | 92 | | configDir = Path.Join(dataDir, "config"); |
| 0 | 93 | | if (options.DataDir is null |
| 0 | 94 | | && !Directory.Exists(configDir) |
| 0 | 95 | | && !OperatingSystem.IsWindows() |
| 0 | 96 | | && !OperatingSystem.IsMacOS()) |
| | 97 | | { |
| | 98 | | // UNIX: $XDG_CONFIG_HOME |
| 0 | 99 | | configDir = Path.Join( |
| 0 | 100 | | Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData, Environment.SpecialFolderOption |
| 0 | 101 | | "jellyfin"); |
| | 102 | | } |
| | 103 | | } |
| | 104 | |
|
| 0 | 105 | | var cacheDir = options.CacheDir ?? Environment.GetEnvironmentVariable("JELLYFIN_CACHE_DIR"); |
| 0 | 106 | | if (cacheDir is null) |
| | 107 | | { |
| 0 | 108 | | if (OperatingSystem.IsWindows() || OperatingSystem.IsMacOS()) |
| | 109 | | { |
| 0 | 110 | | cacheDir = Path.Join(dataDir, "cache"); |
| | 111 | | } |
| | 112 | | else |
| | 113 | | { |
| 0 | 114 | | cacheDir = Path.Join(GetXdgCacheHome(), "jellyfin"); |
| | 115 | | } |
| | 116 | | } |
| | 117 | |
|
| 0 | 118 | | var webDir = options.WebDir ?? Environment.GetEnvironmentVariable("JELLYFIN_WEB_DIR"); |
| 0 | 119 | | if (webDir is null) |
| | 120 | | { |
| 0 | 121 | | webDir = Path.Join(AppContext.BaseDirectory, "jellyfin-web"); |
| | 122 | | } |
| | 123 | |
|
| 0 | 124 | | var logDir = options.LogDir ?? Environment.GetEnvironmentVariable("JELLYFIN_LOG_DIR"); |
| 0 | 125 | | if (logDir is null) |
| | 126 | | { |
| 0 | 127 | | logDir = Path.Join(dataDir, "log"); |
| | 128 | | } |
| | 129 | |
|
| | 130 | | // Normalize paths. Only possible with GetFullPath for now - https://github.com/dotnet/runtime/issues/2162 |
| 0 | 131 | | dataDir = Path.GetFullPath(dataDir); |
| 0 | 132 | | logDir = Path.GetFullPath(logDir); |
| 0 | 133 | | configDir = Path.GetFullPath(configDir); |
| 0 | 134 | | cacheDir = Path.GetFullPath(cacheDir); |
| 0 | 135 | | webDir = Path.GetFullPath(webDir); |
| | 136 | |
|
| | 137 | | // Ensure the main folders exist before we continue |
| | 138 | | try |
| | 139 | | { |
| 0 | 140 | | Directory.CreateDirectory(dataDir); |
| 0 | 141 | | Directory.CreateDirectory(logDir); |
| 0 | 142 | | Directory.CreateDirectory(configDir); |
| 0 | 143 | | Directory.CreateDirectory(cacheDir); |
| 0 | 144 | | } |
| 0 | 145 | | catch (IOException ex) |
| | 146 | | { |
| 0 | 147 | | Console.Error.WriteLine("Error whilst attempting to create folder"); |
| 0 | 148 | | Console.Error.WriteLine(ex.ToString()); |
| 0 | 149 | | Environment.Exit(1); |
| 0 | 150 | | } |
| | 151 | |
|
| 0 | 152 | | return new ServerApplicationPaths(dataDir, logDir, configDir, cacheDir, webDir); |
| | 153 | | } |
| | 154 | |
|
| | 155 | | private static string GetXdgCacheHome() |
| | 156 | | { |
| | 157 | | // $XDG_CACHE_HOME defines the base directory relative to which |
| | 158 | | // user specific non-essential data files should be stored. |
| 0 | 159 | | var cacheHome = Environment.GetEnvironmentVariable("XDG_CACHE_HOME"); |
| | 160 | |
|
| | 161 | | // If $XDG_CACHE_HOME is either not set or a relative path, |
| | 162 | | // a default equal to $HOME/.cache should be used. |
| 0 | 163 | | if (cacheHome is null || !cacheHome.StartsWith('/')) |
| | 164 | | { |
| 0 | 165 | | cacheHome = Path.Join( |
| 0 | 166 | | Environment.GetFolderPath(Environment.SpecialFolder.UserProfile, Environment.SpecialFolderOption.DoNotVe |
| 0 | 167 | | ".cache"); |
| | 168 | | } |
| | 169 | |
|
| 0 | 170 | | return cacheHome; |
| | 171 | | } |
| | 172 | |
|
| | 173 | | /// <summary> |
| | 174 | | /// Gets the path for the unix socket Kestrel should bind to. |
| | 175 | | /// </summary> |
| | 176 | | /// <param name="startupConfig">The startup config.</param> |
| | 177 | | /// <param name="appPaths">The application paths.</param> |
| | 178 | | /// <returns>The path for Kestrel to bind to.</returns> |
| | 179 | | public static string GetUnixSocketPath(IConfiguration startupConfig, IApplicationPaths appPaths) |
| | 180 | | { |
| 0 | 181 | | var socketPath = startupConfig.GetUnixSocketPath(); |
| | 182 | |
|
| 0 | 183 | | if (string.IsNullOrEmpty(socketPath)) |
| | 184 | | { |
| | 185 | | const string SocketFile = "jellyfin.sock"; |
| | 186 | |
|
| 0 | 187 | | var xdgRuntimeDir = Environment.GetEnvironmentVariable("XDG_RUNTIME_DIR"); |
| 0 | 188 | | if (xdgRuntimeDir is null) |
| | 189 | | { |
| | 190 | | // Fall back to config dir |
| 0 | 191 | | socketPath = Path.Join(appPaths.ConfigurationDirectoryPath, SocketFile); |
| | 192 | | } |
| | 193 | | else |
| | 194 | | { |
| 0 | 195 | | socketPath = Path.Join(xdgRuntimeDir, SocketFile); |
| | 196 | | } |
| | 197 | | } |
| | 198 | |
|
| 0 | 199 | | return socketPath; |
| | 200 | | } |
| | 201 | |
|
| | 202 | | /// <summary> |
| | 203 | | /// Sets the unix file permissions for Kestrel's socket file. |
| | 204 | | /// </summary> |
| | 205 | | /// <param name="startupConfig">The startup config.</param> |
| | 206 | | /// <param name="socketPath">The socket path.</param> |
| | 207 | | /// <param name="logger">The logger.</param> |
| | 208 | | [UnsupportedOSPlatform("windows")] |
| | 209 | | public static void SetUnixSocketPermissions(IConfiguration startupConfig, string socketPath, ILogger logger) |
| | 210 | | { |
| 0 | 211 | | var socketPerms = startupConfig.GetUnixSocketPermissions(); |
| | 212 | |
|
| 0 | 213 | | if (!string.IsNullOrEmpty(socketPerms)) |
| | 214 | | { |
| 0 | 215 | | File.SetUnixFileMode(socketPath, (UnixFileMode)Convert.ToInt32(socketPerms, 8)); |
| 0 | 216 | | logger.LogInformation("Kestrel unix socket permissions set to {SocketPerms}", socketPerms); |
| | 217 | | } |
| 0 | 218 | | } |
| | 219 | |
|
| | 220 | | /// <summary> |
| | 221 | | /// Initialize the logging configuration file using the bundled resource file as a default if it doesn't exist |
| | 222 | | /// already. |
| | 223 | | /// </summary> |
| | 224 | | /// <param name="appPaths">The application paths.</param> |
| | 225 | | /// <returns>A task representing the creation of the configuration file, or a completed task if the file already exi |
| | 226 | | public static async Task InitLoggingConfigFile(IApplicationPaths appPaths) |
| | 227 | | { |
| | 228 | | // Do nothing if the config file already exists |
| | 229 | | string configPath = Path.Combine(appPaths.ConfigurationDirectoryPath, Program.LoggingConfigFileDefault); |
| | 230 | | if (File.Exists(configPath)) |
| | 231 | | { |
| | 232 | | return; |
| | 233 | | } |
| | 234 | |
|
| | 235 | | // Get a stream of the resource contents |
| | 236 | | // NOTE: The .csproj name is used instead of the assembly name in the resource path |
| | 237 | | const string ResourcePath = "Jellyfin.Server.Resources.Configuration.logging.json"; |
| | 238 | | Stream resource = typeof(Program).Assembly.GetManifestResourceStream(ResourcePath) |
| | 239 | | ?? throw new InvalidOperationException($"Invalid resource path: '{ResourcePath}'"); |
| | 240 | | await using (resource.ConfigureAwait(false)) |
| | 241 | | { |
| | 242 | | Stream dst = new FileStream(configPath, FileMode.CreateNew, FileAccess.Write, FileShare.None, IODefaults.Fil |
| | 243 | | await using (dst.ConfigureAwait(false)) |
| | 244 | | { |
| | 245 | | // Copy the resource contents to the expected file path for the config file |
| | 246 | | await resource.CopyToAsync(dst).ConfigureAwait(false); |
| | 247 | | } |
| | 248 | | } |
| | 249 | | } |
| | 250 | |
|
| | 251 | | /// <summary> |
| | 252 | | /// Initialize Serilog using configuration and fall back to defaults on failure. |
| | 253 | | /// </summary> |
| | 254 | | /// <param name="configuration">The configuration object.</param> |
| | 255 | | /// <param name="appPaths">The application paths.</param> |
| | 256 | | public static void InitializeLoggingFramework(IConfiguration configuration, IApplicationPaths appPaths) |
| | 257 | | { |
| | 258 | | try |
| | 259 | | { |
| | 260 | | // Serilog.Log is used by SerilogLoggerFactory when no logger is specified |
| 0 | 261 | | Log.Logger = new LoggerConfiguration() |
| 0 | 262 | | .ReadFrom.Configuration(configuration) |
| 0 | 263 | | .Enrich.FromLogContext() |
| 0 | 264 | | .Enrich.WithThreadId() |
| 0 | 265 | | .CreateLogger(); |
| 0 | 266 | | } |
| 0 | 267 | | catch (Exception ex) |
| | 268 | | { |
| 0 | 269 | | Log.Logger = new LoggerConfiguration() |
| 0 | 270 | | .WriteTo.Console( |
| 0 | 271 | | outputTemplate: "[{Timestamp:HH:mm:ss}] [{Level:u3}] [{ThreadId}] {SourceContext}: {Message:lj}{NewL |
| 0 | 272 | | formatProvider: CultureInfo.InvariantCulture) |
| 0 | 273 | | .WriteTo.Async(x => x.File( |
| 0 | 274 | | Path.Combine(appPaths.LogDirectoryPath, "log_.log"), |
| 0 | 275 | | rollingInterval: RollingInterval.Day, |
| 0 | 276 | | outputTemplate: "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz}] [{Level:u3}] [{ThreadId}] {SourceContext} |
| 0 | 277 | | formatProvider: CultureInfo.InvariantCulture, |
| 0 | 278 | | encoding: Encoding.UTF8)) |
| 0 | 279 | | .Enrich.FromLogContext() |
| 0 | 280 | | .Enrich.WithThreadId() |
| 0 | 281 | | .CreateLogger(); |
| | 282 | |
|
| 0 | 283 | | Log.Logger.Fatal(ex, "Failed to create/read logger configuration"); |
| 0 | 284 | | } |
| 0 | 285 | | } |
| | 286 | |
|
| | 287 | | /// <summary> |
| | 288 | | /// Call static initialization methods for the application. |
| | 289 | | /// </summary> |
| | 290 | | public static void PerformStaticInitialization() |
| | 291 | | { |
| | 292 | | // Make sure we have all the code pages we can get |
| | 293 | | // Ref: https://docs.microsoft.com/en-us/dotnet/api/system.text.codepagesencodingprovider.instance?view=netcore- |
| 1 | 294 | | Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); |
| 1 | 295 | | } |
| | 296 | | } |