jellyfin/Emby.Server.Implementations/Udp/UdpServer.cs

138 lines
4.8 KiB
C#
Raw Normal View History

using System;
using System.Net;
2020-01-12 18:59:10 +01:00
using System.Net.Sockets;
using System.Text;
2020-01-12 18:59:10 +01:00
using System.Text.Json;
2017-02-05 21:44:08 +01:00
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller;
using MediaBrowser.Model.ApiClient;
2020-05-02 18:56:09 +02:00
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
2022-02-14 14:39:33 +01:00
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
2016-11-04 19:56:47 +01:00
namespace Emby.Server.Implementations.Udp
{
/// <summary>
2020-01-12 18:59:10 +01:00
/// Provides a Udp Server.
/// </summary>
2020-01-12 18:59:10 +01:00
public sealed class UdpServer : IDisposable
{
/// <summary>
/// The _logger.
/// </summary>
2013-03-27 23:13:46 +01:00
private readonly ILogger _logger;
2014-07-28 00:01:29 +02:00
private readonly IServerApplicationHost _appHost;
2020-05-02 18:56:09 +02:00
private readonly IConfiguration _config;
2020-01-12 18:59:10 +01:00
private readonly byte[] _receiveBuffer = new byte[8192];
2014-07-28 00:01:29 +02:00
2023-10-08 00:31:46 +02:00
private readonly Socket _udpSocket;
private readonly IPEndPoint _endpoint;
private bool _disposed;
/// <summary>
2020-01-12 18:59:10 +01:00
/// Initializes a new instance of the <see cref="UdpServer" /> class.
/// </summary>
2021-05-28 14:33:54 +02:00
/// <param name="logger">The logger.</param>
/// <param name="appHost">The application host.</param>
/// <param name="configuration">The configuration manager.</param>
/// <param name="bindAddress"> The bind address.</param>
2021-05-28 14:33:54 +02:00
/// <param name="port">The port.</param>
public UdpServer(
ILogger logger,
IServerApplicationHost appHost,
IConfiguration configuration,
IPAddress bindAddress,
2021-05-28 14:33:54 +02:00
int port)
2016-09-03 19:16:36 +02:00
{
2020-01-12 18:59:10 +01:00
_logger = logger;
_appHost = appHost;
2020-05-02 18:56:09 +02:00
_config = configuration;
2021-05-28 14:33:54 +02:00
_endpoint = new IPEndPoint(bindAddress, port);
2021-05-28 14:33:54 +02:00
2023-10-11 00:02:37 +02:00
_udpSocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp)
{
MulticastLoopback = false,
};
2021-05-28 14:33:54 +02:00
_udpSocket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
2016-09-03 19:16:36 +02:00
}
2021-11-16 12:24:17 +01:00
private async Task RespondToV2Message(EndPoint endpoint, CancellationToken cancellationToken)
2014-07-28 00:01:29 +02:00
{
2022-02-14 14:39:33 +01:00
string? localUrl = _config[AddressOverrideKey];
2021-05-28 14:33:54 +02:00
if (string.IsNullOrEmpty(localUrl))
{
localUrl = _appHost.GetSmartApiUrl(((IPEndPoint)endpoint).Address);
}
2013-03-27 23:13:46 +01:00
2021-05-28 14:33:54 +02:00
if (string.IsNullOrEmpty(localUrl))
2014-07-28 00:01:29 +02:00
{
2022-02-14 14:39:33 +01:00
_logger.LogWarning("Unable to respond to server discovery request because the local ip address could not be determined.");
2021-05-28 14:33:54 +02:00
return;
}
2014-07-28 00:01:29 +02:00
2021-05-28 14:33:54 +02:00
var response = new ServerDiscoveryInfo(localUrl, _appHost.SystemId, _appHost.FriendlyName);
try
{
2023-10-11 00:02:37 +02:00
_logger.LogDebug("Sending AutoDiscovery response");
2021-11-16 12:24:17 +01:00
await _udpSocket.SendToAsync(JsonSerializer.SerializeToUtf8Bytes(response), SocketFlags.None, endpoint, cancellationToken).ConfigureAwait(false);
2014-07-28 00:01:29 +02:00
}
2021-05-28 14:33:54 +02:00
catch (SocketException ex)
2014-07-28 00:01:29 +02:00
{
2021-05-28 14:33:54 +02:00
_logger.LogError(ex, "Error sending response message");
2013-03-27 23:13:46 +01:00
}
}
/// <summary>
/// Starts the specified port.
/// </summary>
2021-02-23 16:45:10 +01:00
/// <param name="cancellationToken">The cancellation token to cancel operation.</param>
2021-05-28 14:33:54 +02:00
public void Start(CancellationToken cancellationToken)
2013-12-07 16:52:38 +01:00
{
2020-01-12 18:59:10 +01:00
_udpSocket.Bind(_endpoint);
2017-05-24 21:12:55 +02:00
2020-01-12 18:59:10 +01:00
_ = Task.Run(async () => await BeginReceiveAsync(cancellationToken).ConfigureAwait(false), cancellationToken).ConfigureAwait(false);
2013-12-07 16:52:38 +01:00
}
2020-01-12 18:59:10 +01:00
private async Task BeginReceiveAsync(CancellationToken cancellationToken)
{
2020-01-12 18:59:10 +01:00
while (!cancellationToken.IsCancellationRequested)
{
2020-01-12 18:59:10 +01:00
try
2015-05-17 05:17:23 +02:00
{
2023-10-11 00:02:37 +02:00
var endpoint = (EndPoint)new IPEndPoint(IPAddress.Any, 0);
var result = await _udpSocket.ReceiveFromAsync(_receiveBuffer, endpoint, cancellationToken).ConfigureAwait(false);
2020-01-12 18:59:10 +01:00
var text = Encoding.UTF8.GetString(_receiveBuffer, 0, result.ReceivedBytes);
if (text.Contains("who is JellyfinServer?", StringComparison.OrdinalIgnoreCase))
{
2021-11-16 12:24:17 +01:00
await RespondToV2Message(result.RemoteEndPoint, cancellationToken).ConfigureAwait(false);
2020-01-12 18:59:10 +01:00
}
}
catch (SocketException ex)
2017-03-26 21:00:35 +02:00
{
2020-05-02 18:56:09 +02:00
_logger.LogError(ex, "Failed to receive data from socket");
2020-01-12 18:59:10 +01:00
}
catch (OperationCanceledException)
{
2023-10-11 00:02:37 +02:00
_logger.LogDebug("Broadcast socket operation cancelled");
2017-03-26 21:00:35 +02:00
}
}
}
2020-01-12 18:59:10 +01:00
/// <inheritdoc />
public void Dispose()
{
2020-01-12 18:59:10 +01:00
if (_disposed)
2016-12-28 07:08:18 +01:00
{
2020-01-12 18:59:10 +01:00
return;
}
2023-10-08 00:31:46 +02:00
_udpSocket.Dispose();
_disposed = true;
}
}
}