jellyfin/MediaBrowser.Dlna/Ssdp/SsdpHandler.cs

456 lines
14 KiB
C#
Raw Normal View History

2014-06-29 19:35:05 +02:00
using MediaBrowser.Common.Configuration;
2014-06-22 07:52:31 +02:00
using MediaBrowser.Common.Events;
2014-04-27 05:42:05 +02:00
using MediaBrowser.Controller.Configuration;
2014-04-25 19:30:41 +02:00
using MediaBrowser.Dlna.Server;
2014-03-24 13:47:39 +01:00
using MediaBrowser.Model.Logging;
using System;
2014-04-10 17:06:54 +02:00
using System.Collections.Concurrent;
2014-03-24 13:47:39 +01:00
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
2014-06-29 19:35:05 +02:00
using System.Text;
2014-04-10 17:06:54 +02:00
using System.Threading;
2014-03-24 13:47:39 +01:00
2014-04-25 19:30:41 +02:00
namespace MediaBrowser.Dlna.Ssdp
2014-03-24 13:47:39 +01:00
{
public class SsdpHandler : IDisposable
{
2014-04-25 19:30:41 +02:00
private Socket _socket;
2014-04-10 17:06:54 +02:00
2014-03-24 13:47:39 +01:00
private readonly ILogger _logger;
private readonly IServerConfigurationManager _config;
const string SSDPAddr = "239.255.255.250";
const int SSDPPort = 1900;
2014-04-25 19:30:41 +02:00
private readonly string _serverSignature;
2014-03-24 13:47:39 +01:00
private readonly IPAddress _ssdpIp = IPAddress.Parse(SSDPAddr);
2014-04-25 19:30:41 +02:00
private readonly IPEndPoint _ssdpEndp = new IPEndPoint(IPAddress.Parse(SSDPAddr), SSDPPort);
2014-03-24 13:47:39 +01:00
2014-04-10 17:06:54 +02:00
private Timer _queueTimer;
private Timer _notificationTimer;
2014-04-27 05:42:05 +02:00
2014-04-25 19:30:41 +02:00
private readonly AutoResetEvent _datagramPosted = new AutoResetEvent(false);
private readonly ConcurrentQueue<Datagram> _messageQueue = new ConcurrentQueue<Datagram>();
2014-04-10 17:06:54 +02:00
2014-04-25 19:30:41 +02:00
private bool _isDisposed;
private readonly ConcurrentDictionary<Guid, List<UpnpDevice>> _devices = new ConcurrentDictionary<Guid, List<UpnpDevice>>();
2014-04-27 05:42:05 +02:00
2014-03-24 13:47:39 +01:00
public SsdpHandler(ILogger logger, IServerConfigurationManager config, string serverSignature)
{
_logger = logger;
_config = config;
_serverSignature = serverSignature;
2014-04-28 17:05:28 +02:00
2014-06-29 19:35:05 +02:00
_config.NamedConfigurationUpdated += _config_ConfigurationUpdated;
2014-04-28 17:05:28 +02:00
}
2014-06-29 19:35:05 +02:00
void _config_ConfigurationUpdated(object sender, ConfigurationUpdateEventArgs e)
2014-04-28 17:05:28 +02:00
{
2014-06-29 19:35:05 +02:00
if (string.Equals(e.Key, "dlna", StringComparison.OrdinalIgnoreCase))
{
ReloadAliveNotifier();
}
2014-04-25 19:30:41 +02:00
}
public event EventHandler<SsdpMessageEventArgs> MessageReceived;
2014-03-24 13:47:39 +01:00
2014-04-25 19:30:41 +02:00
private void OnMessageReceived(SsdpMessageEventArgs args)
{
if (string.Equals(args.Method, "M-SEARCH", StringComparison.OrdinalIgnoreCase))
{
RespondToSearch(args.EndPoint, args.Headers["st"]);
}
2014-04-27 05:42:05 +02:00
EventHelper.FireEventIfNotNull(MessageReceived, this, args, _logger);
2014-03-24 13:47:39 +01:00
}
2014-04-25 19:30:41 +02:00
public IEnumerable<UpnpDevice> RegisteredDevices
2014-03-24 13:47:39 +01:00
{
get
{
2014-04-25 19:30:41 +02:00
return _devices.Values.SelectMany(i => i).ToList();
2014-03-24 13:47:39 +01:00
}
}
2014-04-27 05:42:05 +02:00
2014-04-25 19:30:41 +02:00
public void Start()
2014-03-24 13:47:39 +01:00
{
2014-04-25 19:30:41 +02:00
_socket = CreateMulticastSocket();
2014-03-24 13:47:39 +01:00
_logger.Info("SSDP service started");
Receive();
2014-04-10 17:06:54 +02:00
2014-04-28 17:05:28 +02:00
ReloadAliveNotifier();
2014-03-24 13:47:39 +01:00
}
public void SendSearchMessage(IPEndPoint localIp)
2014-06-22 07:52:31 +02:00
{
var values = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
values["HOST"] = "239.255.255.250:1900";
values["USER-AGENT"] = "UPnP/1.0 DLNADOC/1.50 Platinum/1.0.4.2";
2014-07-30 05:31:35 +02:00
2014-06-22 07:52:31 +02:00
values["MAN"] = "\"ssdp:discover\"";
2014-07-30 05:31:35 +02:00
// Search target
values["ST"] = "ssdp:all";
// Seconds to delay response
values["MX"] = "3";
2014-06-22 07:52:31 +02:00
SendDatagram("M-SEARCH * HTTP/1.1", values, localIp);
}
2014-04-25 19:30:41 +02:00
public void SendDatagram(string header,
Dictionary<string, string> values,
2014-06-22 07:52:31 +02:00
IPEndPoint localAddress,
2014-04-25 19:30:41 +02:00
int sendCount = 1)
{
SendDatagram(header, values, _ssdpEndp, localAddress, sendCount);
}
2014-04-27 05:42:05 +02:00
public void SendDatagram(string header,
Dictionary<string, string> values,
2014-04-25 19:30:41 +02:00
IPEndPoint endpoint,
2014-06-22 07:52:31 +02:00
IPEndPoint localAddress,
2014-04-25 19:30:41 +02:00
int sendCount = 1)
{
var msg = new SsdpMessageBuilder().BuildMessage(header, values);
var dgram = new Datagram(endpoint, localAddress, _logger, msg, sendCount);
if (_messageQueue.Count == 0)
{
dgram.Send();
return;
}
_messageQueue.Enqueue(dgram);
StartQueueTimer();
}
public void SendDatagramFromDevices(string header,
Dictionary<string, string> values,
IPEndPoint endpoint,
string deviceType)
{
foreach (var d in RegisteredDevices)
{
2014-04-27 05:42:05 +02:00
if (string.Equals(deviceType, "ssdp:all", StringComparison.OrdinalIgnoreCase) ||
2014-04-25 19:30:41 +02:00
string.Equals(deviceType, d.Type, StringComparison.OrdinalIgnoreCase))
{
2014-06-22 07:52:31 +02:00
SendDatagram(header, values, endpoint, new IPEndPoint(d.Address, 0));
2014-04-25 19:30:41 +02:00
}
}
}
private void RespondToSearch(IPEndPoint endpoint, string deviceType)
{
2014-06-29 19:35:05 +02:00
if (_config.GetDlnaConfiguration().EnableDebugLogging)
2014-04-25 19:30:41 +02:00
{
_logger.Debug("RespondToSearch");
}
const string header = "HTTP/1.1 200 OK";
foreach (var d in RegisteredDevices)
{
if (string.Equals(deviceType, "ssdp:all", StringComparison.OrdinalIgnoreCase) ||
string.Equals(deviceType, d.Type, StringComparison.OrdinalIgnoreCase))
{
var values = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
values["CACHE-CONTROL"] = "max-age = 600";
values["DATE"] = DateTime.Now.ToString("R");
values["EXT"] = "";
values["LOCATION"] = d.Descriptor.ToString();
values["SERVER"] = _serverSignature;
values["ST"] = d.Type;
values["USN"] = d.USN;
2014-05-01 05:24:55 +02:00
SendDatagram(header, values, endpoint, null);
2014-04-25 19:30:41 +02:00
2014-06-29 19:35:05 +02:00
if (_config.GetDlnaConfiguration().EnableDebugLogging)
2014-06-04 05:34:36 +02:00
{
_logger.Debug("{1} - Responded to a {0} request to {2}", d.Type, endpoint, d.Address.ToString());
}
2014-04-25 19:30:41 +02:00
}
2014-04-27 05:42:05 +02:00
}
2014-04-25 19:30:41 +02:00
}
private readonly object _queueTimerSyncLock = new object();
private void StartQueueTimer()
{
lock (_queueTimerSyncLock)
{
if (_queueTimer == null)
{
_queueTimer = new Timer(QueueTimerCallback, null, 1000, Timeout.Infinite);
}
else
{
_queueTimer.Change(1000, Timeout.Infinite);
}
}
}
private void QueueTimerCallback(object state)
{
while (_messageQueue.Count != 0)
{
Datagram msg;
if (!_messageQueue.TryPeek(out msg))
{
continue;
}
if (msg != null && (!_isDisposed || msg.TotalSendCount > 1))
{
msg.Send();
if (msg.SendCount > msg.TotalSendCount)
{
_messageQueue.TryDequeue(out msg);
}
break;
}
_messageQueue.TryDequeue(out msg);
}
_datagramPosted.Set();
if (_messageQueue.Count > 0)
{
StartQueueTimer();
}
else
{
DisposeQueueTimer();
}
}
2014-03-24 13:47:39 +01:00
private void Receive()
{
try
{
2014-04-25 19:30:41 +02:00
var buffer = new byte[1024];
EndPoint endpoint = new IPEndPoint(IPAddress.Any, SSDPPort);
_socket.BeginReceiveFrom(buffer, 0, buffer.Length, SocketFlags.None, ref endpoint, ReceiveCallback, buffer);
2014-03-24 13:47:39 +01:00
}
catch (ObjectDisposedException)
{
}
}
private void ReceiveCallback(IAsyncResult result)
{
2014-04-25 19:30:41 +02:00
if (_isDisposed)
{
return;
}
2014-03-24 13:47:39 +01:00
try
{
2014-04-25 19:30:41 +02:00
EndPoint endpoint = new IPEndPoint(IPAddress.Any, SSDPPort);
2014-06-22 07:52:31 +02:00
var length = _socket.EndReceiveFrom(result, ref endpoint);
2014-04-25 19:30:41 +02:00
var received = (byte[])result.AsyncState;
2014-03-24 13:47:39 +01:00
2014-06-29 19:35:05 +02:00
if (_config.GetDlnaConfiguration().EnableDebugLogging)
2014-06-22 07:52:31 +02:00
{
_logger.Debug(Encoding.ASCII.GetString(received));
}
2014-04-27 05:42:05 +02:00
var args = SsdpHelper.ParseSsdpResponse(received, (IPEndPoint)endpoint);
2014-03-24 13:47:39 +01:00
2014-06-29 19:35:05 +02:00
if (_config.GetDlnaConfiguration().EnableDebugLogging)
2014-03-24 13:47:39 +01:00
{
2014-04-27 05:42:05 +02:00
var headerTexts = args.Headers.Select(i => string.Format("{0}={1}", i.Key, i.Value));
var headerText = string.Join(",", headerTexts.ToArray());
2014-03-24 13:47:39 +01:00
_logger.Debug("{0} message received from {1} on {3}. Headers: {2}", args.Method, args.EndPoint, headerText, _socket.LocalEndPoint);
2014-03-24 13:47:39 +01:00
}
2014-04-27 05:42:05 +02:00
OnMessageReceived(args);
2014-03-24 13:47:39 +01:00
}
catch (Exception ex)
{
_logger.ErrorException("Failed to read SSDP message", ex);
}
2014-04-25 19:30:41 +02:00
if (_socket != null)
2014-03-24 13:47:39 +01:00
{
Receive();
}
}
2014-04-25 19:30:41 +02:00
public void Dispose()
2014-03-24 13:47:39 +01:00
{
2014-06-29 19:35:05 +02:00
_config.NamedConfigurationUpdated -= _config_ConfigurationUpdated;
2014-04-28 17:05:28 +02:00
2014-04-25 19:30:41 +02:00
_isDisposed = true;
while (_messageQueue.Count != 0)
2014-03-24 13:47:39 +01:00
{
2014-04-25 19:30:41 +02:00
_datagramPosted.WaitOne();
2014-03-24 13:47:39 +01:00
}
2014-04-10 17:06:54 +02:00
2014-04-25 19:30:41 +02:00
DisposeSocket();
DisposeQueueTimer();
DisposeNotificationTimer();
2014-04-10 17:06:54 +02:00
2014-04-25 19:30:41 +02:00
_datagramPosted.Dispose();
2014-03-24 13:47:39 +01:00
}
2014-04-25 19:30:41 +02:00
private void DisposeSocket()
2014-03-24 13:47:39 +01:00
{
2014-04-25 19:30:41 +02:00
if (_socket != null)
2014-03-24 13:47:39 +01:00
{
2014-04-25 19:30:41 +02:00
_socket.Close();
_socket.Dispose();
_socket = null;
2014-03-24 13:47:39 +01:00
}
2014-04-10 17:06:54 +02:00
}
2014-04-25 19:30:41 +02:00
private void DisposeQueueTimer()
2014-04-10 17:06:54 +02:00
{
2014-04-25 19:30:41 +02:00
lock (_queueTimerSyncLock)
2014-04-10 17:06:54 +02:00
{
2014-04-25 19:30:41 +02:00
if (_queueTimer != null)
2014-04-10 17:06:54 +02:00
{
2014-04-25 19:30:41 +02:00
_queueTimer.Dispose();
_queueTimer = null;
2014-04-10 17:06:54 +02:00
}
}
2014-04-25 19:30:41 +02:00
}
2014-04-10 17:06:54 +02:00
2014-04-25 19:30:41 +02:00
private Socket CreateMulticastSocket()
{
var socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, true);
socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
socket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, 4);
socket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(_ssdpIp, 0));
2014-04-10 17:06:54 +02:00
2014-04-25 19:30:41 +02:00
socket.Bind(new IPEndPoint(IPAddress.Any, SSDPPort));
return socket;
2014-03-24 13:47:39 +01:00
}
private void NotifyAll()
{
2014-06-29 19:35:05 +02:00
if (_config.GetDlnaConfiguration().EnableDebugLogging)
2014-04-21 18:02:30 +02:00
{
_logger.Debug("Sending alive notifications");
}
2014-04-25 19:30:41 +02:00
foreach (var d in RegisteredDevices)
2014-03-24 13:47:39 +01:00
{
2014-04-25 19:30:41 +02:00
NotifyDevice(d, "alive");
2014-03-24 13:47:39 +01:00
}
}
2014-04-25 19:30:41 +02:00
private void NotifyDevice(UpnpDevice dev, string type, int sendCount = 1)
2014-03-24 13:47:39 +01:00
{
2014-04-25 19:30:41 +02:00
const string header = "NOTIFY * HTTP/1.1";
2014-04-20 07:21:08 +02:00
2014-04-25 19:30:41 +02:00
var values = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2014-03-24 13:47:39 +01:00
2014-04-25 19:30:41 +02:00
// If needed later for non-server devices, these headers will need to be dynamic
values["HOST"] = "239.255.255.250:1900";
values["CACHE-CONTROL"] = "max-age = 600";
values["LOCATION"] = dev.Descriptor.ToString();
values["SERVER"] = _serverSignature;
values["NTS"] = "ssdp:" + type;
values["NT"] = dev.Type;
values["USN"] = dev.USN;
2014-04-10 17:06:54 +02:00
2014-06-29 19:35:05 +02:00
if (_config.GetDlnaConfiguration().EnableDebugLogging)
2014-04-21 18:02:30 +02:00
{
_logger.Debug("{0} said {1}", dev.USN, type);
}
2014-06-22 07:52:31 +02:00
SendDatagram(header, values, new IPEndPoint(dev.Address, 0), sendCount);
2014-03-24 13:47:39 +01:00
}
2014-04-25 19:30:41 +02:00
public void RegisterNotification(Guid uuid, Uri descriptionUri, IPAddress address, IEnumerable<string> services)
2014-03-24 13:47:39 +01:00
{
List<UpnpDevice> list;
lock (_devices)
{
2014-04-10 17:06:54 +02:00
if (!_devices.TryGetValue(uuid, out list))
2014-03-24 13:47:39 +01:00
{
2014-04-25 19:30:41 +02:00
_devices.TryAdd(uuid, list = new List<UpnpDevice>());
2014-03-24 13:47:39 +01:00
}
}
2014-04-25 19:30:41 +02:00
list.AddRange(services.Select(i => new UpnpDevice(uuid, i, descriptionUri, address)));
2014-03-24 13:47:39 +01:00
NotifyAll();
2014-04-25 19:30:41 +02:00
_logger.Debug("Registered mount {0} at {1}", uuid, descriptionUri);
2014-03-24 13:47:39 +01:00
}
2014-04-25 19:30:41 +02:00
public void UnregisterNotification(Guid uuid)
2014-03-24 13:47:39 +01:00
{
List<UpnpDevice> dl;
2014-04-25 19:30:41 +02:00
if (_devices.TryRemove(uuid, out dl))
2014-03-24 13:47:39 +01:00
{
2014-04-25 19:30:41 +02:00
foreach (var d in dl.ToList())
2014-04-10 17:06:54 +02:00
{
2014-04-25 19:30:41 +02:00
NotifyDevice(d, "byebye", 2);
2014-04-10 17:06:54 +02:00
}
2014-04-25 19:30:41 +02:00
_logger.Debug("Unregistered mount {0}", uuid);
2014-04-10 17:06:54 +02:00
}
}
private readonly object _notificationTimerSyncLock = new object();
2014-04-28 17:05:28 +02:00
private int _aliveNotifierIntervalMs;
private void ReloadAliveNotifier()
2014-04-10 17:06:54 +02:00
{
2014-06-29 19:35:05 +02:00
if (!_config.GetDlnaConfiguration().BlastAliveMessages)
2014-04-20 07:21:08 +02:00
{
2014-04-28 17:05:28 +02:00
DisposeNotificationTimer();
2014-04-20 07:21:08 +02:00
return;
}
2014-06-29 19:35:05 +02:00
var intervalMs = _config.GetDlnaConfiguration().BlastAliveMessageIntervalSeconds * 1000;
2014-04-10 17:06:54 +02:00
2014-04-28 17:05:28 +02:00
if (_notificationTimer == null || _aliveNotifierIntervalMs != intervalMs)
2014-04-10 17:06:54 +02:00
{
2014-04-28 17:05:28 +02:00
lock (_notificationTimerSyncLock)
2014-04-10 17:06:54 +02:00
{
2014-04-28 17:05:28 +02:00
if (_notificationTimer == null)
{
_logger.Debug("Starting alive notifier");
const int initialDelayMs = 3000;
_notificationTimer = new Timer(state => NotifyAll(), null, initialDelayMs, intervalMs);
}
else
{
_logger.Debug("Updating alive notifier");
_notificationTimer.Change(intervalMs, intervalMs);
}
_aliveNotifierIntervalMs = intervalMs;
2014-04-10 17:06:54 +02:00
}
}
}
private void DisposeNotificationTimer()
{
lock (_notificationTimerSyncLock)
{
if (_notificationTimer != null)
{
2014-04-28 17:05:28 +02:00
_logger.Debug("Stopping alive notifier");
2014-04-10 17:06:54 +02:00
_notificationTimer.Dispose();
_notificationTimer = null;
}
}
2014-03-24 13:47:39 +01:00
}
}
}