/usr/include/ace/SOCK_Dgram_Mcast.h is in libace-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 | // -*- C++ -*-
//=============================================================================
/**
* @file SOCK_Dgram_Mcast.h
*
* $Id: SOCK_Dgram_Mcast.h 92580 2010-11-15 09:48:02Z johnnyw $
*
* @author Irfan Pyrali <irfan@cs.wustl.edu>
* @author Tim Harrison <harrison@cs.wustl.edu>
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
* @author Bill Fulton <bill_a_fulton@raytheon.com>
* @author Don Hinton <dhinton@objectsciences.com>
*/
//=============================================================================
#ifndef ACE_SOCK_DGRAM_MCAST_H
#define ACE_SOCK_DGRAM_MCAST_H
#include /**/ "ace/pre.h"
#include /**/ "ace/ACE_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/SOCK_Dgram.h"
#include "ace/INET_Addr.h"
#if defined (ACE_SOCK_DGRAM_MCAST_DUMPABLE)
# include "ace/Containers_T.h"
# include "ace/Synch_Traits.h"
# include "ace/Thread_Mutex.h"
# if !defined (ACE_SDM_LOCK)
# define ACE_SDM_LOCK ACE_SYNCH_MUTEX
# endif /* ACE_SDM_LOCK */
#endif /* ACE_SOCK_DGRAM_MCAST_DUMPABLE */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class ACE_SOCK_Dgram_Mcast
*
* @brief Defines the ACE socket wrapper for UDP/IP multicast.
*
* Supports multiple simultaneous subscriptions, unsubscription from one or
* all subscriptions, and independent send/recv address and interface
* specifications. Template parameters and/or ctor arguments determine
* per-instance optional functionality.
*
* Note that multicast semantics and implementation details are _very_
* environment-specific; this class is just a wrapper around the underlying
* implementation and does not try to normalize the concept of multicast
* communications.
*
* Usage Notes:
* - Send and Recv addresses and network interfaces, but not port#, are
* independent. While this instance is open, 1 send interface (and a default
* send address) is in effect and 0, 1, or multiple recv addresses/interfaces
* are in effect.
* - The first open()/subscribe() invocation defines the network interface
* and default address used for all sends by this instance, defines the
* port# and optionally the multicast address bound to the underlying
* socket, and defines the (one) port# that is used for all subscribes
* (subsequent subscribes must pass the same port# or '0').
* - The default loopback state is not explicitly set; the environment will
* determine the default state. Note that some environments (e.g. some Win32)
* do not allow the default to be changed, and that the semantics of
* loopback control are environment dependent (e.g. sender vs receiver
* control).
* - In general, due to multicast design and implementation quirks/bugs, it is
* difficult to tell which address a received message was sent to or which
* interface it was received on (even if only one subscription is active).
* However; there are filtering options that can be applied, to narrow it
* down considerably.
*
* Interface specification notes (for subscribe() and unsubscribe()):
* - If net_if == 0, the null_iface_opt option determines whether only the
* system "default" interface or all interfaces is affected. Specifying
* "all" interfaces is supported only for environments for which
* ACE_Sock_Connect::get_ip_interfaces() is properly implemented.
* - Multiple subscriptions for the same address but different interfaces is
* normally supported, but re-subscription to an address/interface that is
* already subscribed is normally not allowed.
* - The <net_if> interface specification syntax is environment-specific.
* UNIX systems will normally use device specifications such as "le0" or
* "elxl1", while other systems will use the IP address of the interface.
* Some platforms, such as pSoS, support only cardinal numbers as network
* interface specifications; for these platforms, just give these numbers in
* alphanumeric form and <subscribe> will convert them into numbers via
* ACE_OS::atoi().
*/
class ACE_Export ACE_SOCK_Dgram_Mcast : public ACE_SOCK_Dgram
{
public:
/**
* @brief Option parameters.
*
* These control per-instance optional functionality. They are set via
* optional constructor arguments.
* @note Certain option values are not valid for all environments (see
* comments in source file for environment-specific restrictions). Default
* values are always valid values for the compilation environment.
*/
enum options
{
// Define whether a specific (multicast) address (in addition to the port#)
// is bound to the socket.
// Notes:
// - Effect of doing this is stack/environment dependent, but in most
// environments can be used to filter out unwanted unicast, broadcast, and
// (other) multicast messages sent to the same port#.
// - Some IP stacks (e.g. some Win32) do not support binding multicast
// addresses. Using this option will always cause an <open> error.
// - It's not strictly possible for user code to do this level of filtering
// w/out the bind; some environments support ways to determine which address
// a message was sent _to_, but this class interface does not support access
// to that info.
// - The address (and port#) passed to <open> (or the first <subscribe>, if
// <open> is not explicitly invoked) is the one that is bound.
//
/// Disable address bind. (Bind only port.)
/// @note This might seem odd, but we need a way to distinguish between
/// default behavior, which might or might not be to bind, and explicitly
/// choosing to bind or not to bind--which "is the question." ;-)
OPT_BINDADDR_NO = 0,
/// Enable address bind. (Bind port and address.)
OPT_BINDADDR_YES = 1,
/// Default value for BINDADDR option. (Environment-dependent.)
#if defined (ACE_LACKS_PERFECT_MULTICAST_FILTERING) \
&& (ACE_LACKS_PERFECT_MULTICAST_FILTERING == 1)
/// Platforms that don't support perfect filtering. Note that perfect
/// filtering only really applies to multicast traffic, not unicast
/// or broadcast.
DEFOPT_BINDADDR = OPT_BINDADDR_YES,
# else
/// At least some Win32 OS's can not bind mcast addr, so disable it.
/// General-purpose default behavior is 'disabled', since effect is
/// environment-specific and side-effects might be surprising.
DEFOPT_BINDADDR = OPT_BINDADDR_NO,
#endif /* ACE_LACKS_PERFECT_MULTICAST_FILTERING = 1) */
/// Define the interpretation of 'NULL' as a recv interface specification.
/// If the interface part of a multicast address specification is NULL, it
/// will be interpreted to mean either "the default interface" or "all
/// interfaces", depending on the setting of this option.
/// Notes:
/// - The 'nulliface_all' option can not be used in environments which do
/// not fully support the ACE_Sock_Connect::get_ip_interfaces() method
/// (e.g. non-Windows).
/// If it is, using NULL for iface will _always_ fail.
/// - The default behavior in most IP stacks is to use the 'default' interface,
/// where 'default' has rather ad-hoc semantics.
/// - This applies only to receives, not sends (which always use only one
/// interface; NULL means use the "system default" interface).
/// Supported values:
/// If (net_if==NULL), use default interface.
/// @note This might seem odd, but we need a way to distinguish between
/// default behavior, which might or might not be to bind, and explicitly
/// choosing to bind or not to bind--which "is the question." ;-)
OPT_NULLIFACE_ONE = 0,
/// If (net_if==NULL), use all mcast interfaces.
OPT_NULLIFACE_ALL = 2,
/// Default value for NULLIFACE option. (Environment-dependent.)
#ifdef ACE_WIN32
/// This is the (ad-hoc) legacy behavior for Win32/WinSock.
/// @note Older version of WinSock/MSVC may not get all multicast-capable
/// interfaces (e.g. PPP interfaces).
DEFOPT_NULLIFACE = OPT_NULLIFACE_ALL,
#else
/// General-purpose default behavior (as per legacy behavior).
DEFOPT_NULLIFACE = OPT_NULLIFACE_ONE,
#endif /* ACE_WIN32 */
/// All default options.
DEFOPTS = DEFOPT_BINDADDR | DEFOPT_NULLIFACE
};
// = Initialization routines.
/// Ctor - Create an unitialized instance and define per-instance optional
/// functionality.
/**
* You must invoke open() or subscribe(), to create/bind a socket and define
* operational parameters, before performing any I/O with this instance.
*/
ACE_SOCK_Dgram_Mcast (options opts = DEFOPTS);
/// Dtor - Release all resources and implicitly or explicitly unsubscribe
/// from all currently subscribed groups.
/**
* The OPT_DTORUNSUB_YES_ option defines whether an explicit unsubscribe() is
* done by the destructor. If not, most systems will automatically
* unsubscribe upon the close of the socket.
*/
~ACE_SOCK_Dgram_Mcast (void);
/// Explicitly open/bind the socket and define the network interface
/// and default multicast address used for sending messages.
/**
* This method is optional; if not explicitly invoked, it is invoked by
* the first subscribe(), using the subscribed address/port# and network
* interface parameters.
* The @a mcast_addr parameter defines the default send address/port# and
* also the port# and, if the OPT_BINDADDR_YES option is used,
* the multicast address that is bound to this socket.
* If the @a net_if parameter != 0, it defines the network interface
* used for all sends by this instance, otherwise the system "default"
* interface is used. (The @a net_if parameter is ignored if this
* feature is not supported by the environment.)
* The port# in @a mcast_addr may be 0, in which case a system-assigned
* (ephemeral) port# is used for sending and receiving.
* If @a reuse_addr != 0, the SO_REUSEADDR option and, if it is supported,
* the SO_REUSEPORT option are enabled.
*
* Returns: -1 if the call fails. Failure can occur due to problems with
* the address, port#, and/or interface parameters or during system open()
* or socket option processing.
*/
int open (const ACE_INET_Addr &mcast_addr, // Bound & sendto address.
const ACE_TCHAR *net_if = 0, // Net interface for sends.
int reuse_addr = 1); // Reuse addr/port sock opt.
// = Multicast group subscribe/unsubscribe routines.
/// Join a multicast group on a given interface (or all interfaces, if
/// supported).
/**
* The given group is joined on the specified interface. If option
* OPT_NULLIFACE_ALL is used and @a net_if is = 0, the group is joined on
* all multicast capable interfaces (IFF supported). Multiple subscriptions
* to various address and interface combinations are supported and tracked.
* If this is the first invocation of subscribe(), and open() was not
* previously invoked, open() will be invoked using @a mcast_addr for binding
* the socket and @a net_if as the interface for send().
*
* Returns: -1 if the call fails. Failure can occur due to problems with
* the address, port#, and/or interface parameters or during the subscription
* attempt. Once bind() has been invoked (by the first open() or
* subscribe()), returns errno of ENXIO if the port# is not 0 and does not
* match the bound port#, or if OPT_BINDADDR_YES option is used
* and the address does not match the bound address. Returns errno of
* ENODEV if the addr/port#/interface parameters appeared valid, but no
* subscription(s) succeeded. An error is unconditionally returned if
* option OPT_NULLIFACE_ALL is used, @a net_if is NULL, and
* ACE_Sock_Connect::get_ip_interfaces() is not implemented in this
* environment.
*
* Note that the optional @a reuse_addr parameter does not apply to
* subscriptions; it is only used if open() is implicitly invoked (see above).
*
* Uses the mcast_addr to determine protocol_family, and protocol which
* we always pass as 0 anyway.
*/
int join (const ACE_INET_Addr &mcast_addr,
int reuse_addr = 1, // (see above)
const ACE_TCHAR *net_if = 0);
/// Leave a multicast group on a given interface (or all interfaces, if
/// supported).
/**
* The specified group/interface combination is unsubscribed. If option
* OPT_NULLIFACE_ALL is used and @a net_if is = 0, the group is unsubscribed
* from all interfaces (IFF supported).
*
* Returns: -1 if the unsubscribe failed. Most environments will return -1
* if there was no active subscription for this address/interface combination.
* An error is unconditionally returned if option OPT_NULLIFACE_ALL is used,
* @a net_if is = 0, and ACE_Sock_Connect::get_ip_interfaces() is not
* implemented in this environment (_even if_ the subscribe() specifies a
* non- NULL @a net_if).
*
* leave() replaces unsubscribe() and uses mcast_addr to determine
* protocol_family, and protocol which we always pass as 0 anyway.
*/
int leave (const ACE_INET_Addr &mcast_addr,
const ACE_TCHAR *net_if = 0);
// = Data transfer routines.
/// Send @a n bytes in @a buf, using the multicast address and network interface
/// defined by the first open() or subscribe().
ssize_t send (const void *buf,
size_t n,
int flags = 0) const;
/// Send @a n iovecs, using the multicast address and network interface
/// defined by the first open() or subscribe().
ssize_t send (const iovec iov[],
int n,
int flags = 0) const;
// = Options.
/// Set a socket option.
/**
* Set an IP option that takes a char as input, such as IP_MULTICAST_LOOP
* or IP_MULTICAST_TTL. This is just a more concise, nice interface to a
* subset of possible ACE_SOCK::set_option calls, but only works for
* IPPROTO_IP or IPPROTO_IPV6 level options.
*
* Returns 0 on success, -1 on failure.
*
* @deprecated This method has been deprecated since it cannot be used
* easily with with IPv6 options. Use ACE_SOCK::set_option instead.
*/
int set_option (int option, char optval);
/// Dump the state of an object.
/**
* Logs the setting of all options, the bound address, the send address and
* interface, and the list of current subscriptions.
*/
void dump (void) const;
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
private:
/// Subscribe to a multicast address on one or more network interface(s).
/// (No QoS support.)
int subscribe_ifs (const ACE_INET_Addr &mcast_addr,
const ACE_TCHAR *net_if,
int reuse_addr);
/// Do subscription processing w/out updating the subscription list.
/// (Layered method for <subscribe> processing).
int subscribe_i (const ACE_INET_Addr &mcast_addr,
int reuse_addr = 1,
const ACE_TCHAR *net_if = 0);
/// Unsubscribe from a multicast address on one or more network interface(s).
int unsubscribe_ifs (const ACE_INET_Addr &mcast_addr,
const ACE_TCHAR *net_if = 0);
/// Do unsubscription processing w/out udpating subscription list.
/// (Layered method for <unsubscribe> processing).
int unsubscribe_i (const ACE_INET_Addr &mcast_addr,
const ACE_TCHAR *net_if = 0);
protected:
/// Contains common open functionality so that inheriting classes can
/// reuse it.
int open_i (const ACE_INET_Addr &mcast_addr, // Bound & sendto address.
const ACE_TCHAR *net_if = 0, // Net interface for sends.
int reuse_addr = 1);
/// Empty the dynamic subscription list.
int clear_subs_list (void);
private:
/// Per-instance options..
int opts_;
/// Multicast address to which local send() methods send datagrams.
ACE_INET_Addr send_addr_;
/// Network interface to which all send() methods send multicast datagrams.
ACE_TCHAR *send_net_if_;
#if defined (ACE_SOCK_DGRAM_MCAST_DUMPABLE)
typedef ACE_DLList<ip_mreq> subscription_list_t;
typedef ACE_DLList_Iterator<ip_mreq> subscription_list_iter_t;
/// List of currently subscribed addr/iface pairs (and assc. types).
mutable subscription_list_t subscription_list_;
/// Lock used to protect subscription list.
mutable ACE_SDM_LOCK subscription_list_lock_;
// (Lock type does not need to support recursive locking.)
#endif /* ACE_SOCK_DGRAM_MCAST_DUMPABLE */
};
ACE_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
#include "ace/SOCK_Dgram_Mcast.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* ACE_SOCK_DGRAM_MCAST_H */
|