2021-05-20 19:28:18 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-05-29 09:28:19 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2016-11-04 08:31:05 +00:00
|
|
|
using System.Net;
|
|
|
|
using System.Net.Sockets;
|
|
|
|
using MediaBrowser.Model.Net;
|
|
|
|
|
2017-08-16 06:43:41 +00:00
|
|
|
namespace Emby.Server.Implementations.Net
|
2016-11-04 08:31:05 +00:00
|
|
|
{
|
|
|
|
public class SocketFactory : ISocketFactory
|
|
|
|
{
|
2021-09-03 16:46:34 +00:00
|
|
|
/// <inheritdoc />
|
2017-03-13 04:08:23 +00:00
|
|
|
public ISocket CreateUdpBroadcastSocket(int localPort)
|
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
if (localPort < 0)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("localPort cannot be less than zero.", nameof(localPort));
|
|
|
|
}
|
2017-03-13 04:08:23 +00:00
|
|
|
|
2021-12-15 17:25:36 +00:00
|
|
|
var retVal = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
|
2017-03-13 04:08:23 +00:00
|
|
|
try
|
|
|
|
{
|
2020-06-24 16:11:02 +00:00
|
|
|
retVal.EnableBroadcast = true;
|
2017-03-13 04:08:23 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
|
|
|
|
retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 1);
|
|
|
|
|
|
|
|
return new UdpSocket(retVal, localPort, IPAddress.Any);
|
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
retVal?.Dispose();
|
2017-03-13 04:08:23 +00:00
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
2017-08-17 20:19:02 +00:00
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public ISocket CreateSsdpUdpSocket(IPAddress localIp, int localPort)
|
2016-11-04 08:31:05 +00:00
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
if (localPort < 0)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("localPort cannot be less than zero.", nameof(localPort));
|
|
|
|
}
|
2016-11-04 08:31:05 +00:00
|
|
|
|
2021-12-15 17:25:36 +00:00
|
|
|
var retVal = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
|
2016-11-04 08:31:05 +00:00
|
|
|
try
|
|
|
|
{
|
2020-06-24 16:11:02 +00:00
|
|
|
retVal.EnableBroadcast = true;
|
2016-11-04 08:31:05 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
|
|
|
|
retVal.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, 4);
|
2016-12-04 21:30:38 +00:00
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(IPAddress.Parse("239.255.255.250"), localIp));
|
|
|
|
return new UdpSocket(retVal, localPort, localIp);
|
2016-11-04 08:31:05 +00:00
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
retVal?.Dispose();
|
2016-11-04 08:31:05 +00:00
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-03 16:46:34 +00:00
|
|
|
/// <inheritdoc />
|
2020-06-24 16:11:02 +00:00
|
|
|
public ISocket CreateUdpMulticastSocket(string ipAddress, int multicastTimeToLive, int localPort)
|
2016-11-04 08:31:05 +00:00
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
if (ipAddress == null)
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException(nameof(ipAddress));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ipAddress.Length == 0)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("ipAddress cannot be an empty string.", nameof(ipAddress));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (multicastTimeToLive <= 0)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("multicastTimeToLive cannot be zero or less.", nameof(multicastTimeToLive));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (localPort < 0)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("localPort cannot be less than zero.", nameof(localPort));
|
|
|
|
}
|
2016-11-04 08:31:05 +00:00
|
|
|
|
2021-12-15 17:25:36 +00:00
|
|
|
var retVal = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
|
2016-11-04 08:31:05 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2017-08-17 20:19:02 +00:00
|
|
|
// not supported on all platforms. throws on ubuntu with .net core 2.0
|
2017-05-24 19:12:55 +00:00
|
|
|
retVal.ExclusiveAddressUse = false;
|
2017-08-17 20:19:02 +00:00
|
|
|
}
|
|
|
|
catch (SocketException)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2017-11-10 21:22:38 +00:00
|
|
|
// seeing occasional exceptions thrown on qnap
|
|
|
|
// System.Net.Sockets.SocketException (0x80004005): Protocol not available
|
2016-11-04 08:31:05 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
|
2017-11-10 21:22:38 +00:00
|
|
|
}
|
|
|
|
catch (SocketException)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2020-06-24 16:11:02 +00:00
|
|
|
retVal.EnableBroadcast = true;
|
2020-06-14 09:11:11 +00:00
|
|
|
// retVal.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, true);
|
2016-11-04 08:31:05 +00:00
|
|
|
retVal.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, multicastTimeToLive);
|
2016-12-04 21:30:38 +00:00
|
|
|
|
|
|
|
var localIp = IPAddress.Any;
|
|
|
|
|
|
|
|
retVal.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(IPAddress.Parse(ipAddress), localIp));
|
2016-11-04 08:31:05 +00:00
|
|
|
retVal.MulticastLoopback = true;
|
2020-06-24 16:23:16 +00:00
|
|
|
|
2016-12-04 21:30:38 +00:00
|
|
|
return new UdpSocket(retVal, localPort, localIp);
|
2016-11-04 08:31:05 +00:00
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
2019-03-13 16:51:33 +00:00
|
|
|
retVal?.Dispose();
|
2016-11-04 08:31:05 +00:00
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|