All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgroups.protocols.MPING Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

There is a newer version: 34.0.0.Final
Show newest version
package org.jgroups.protocols;

import org.jgroups.BytesMessage;
import org.jgroups.Event;
import org.jgroups.Global;
import org.jgroups.Message;
import org.jgroups.annotations.LocalAddress;
import org.jgroups.annotations.Property;
import org.jgroups.conf.PropertyConverters;
import org.jgroups.util.*;

import java.io.DataInput;
import java.io.IOException;
import java.net.*;
import java.util.*;

/**
 * Uses its own IP multicast socket to send and receive discovery requests/responses. Can be used in
 * conjuntion with a non-UDP transport, e.g. TCP.
* The discovery is asymmetric: discovery requests are broadcast via the multicast socket, and received via the * multicast socket by everyone in the group. However, the discovery responses are sent back via the regular transport * (e.g. TCP) to the sender (discovery request contains sender's regular address, e.g. 192.168.0.2:7800). * @author Bela Ban */ public class MPING extends PING implements Runnable { /* ----------------------------------------- Properties -------------------------------------------------- */ @LocalAddress @Property(description="Bind address for multicast socket. " + "The following special values are also recognized: GLOBAL, SITE_LOCAL, LINK_LOCAL and NON_LOOPBACK", systemProperty={Global.BIND_ADDR}) protected InetAddress bind_addr; @Property(name="bind_interface", converter=PropertyConverters.BindInterface.class, description="The interface (NIC) which should be used by this transport",dependsUpon="bind_addr") protected String bind_interface_str; @Property(description="Time to live for discovery packets. Default is 8", systemProperty=Global.MPING_IP_TTL) protected int ip_ttl=8; @Property(description="Multicast address to be used for discovery", name="mcast_addr", systemProperty=Global.MPING_MCAST_ADDR, defaultValueIPv4="232.5.6.7", defaultValueIPv6="ff0e::5:6:7") protected InetAddress mcast_addr; @Property(description="Multicast port for discovery packets. Default is 7555", systemProperty=Global.MPING_MCAST_PORT) protected int mcast_port=7555; @Property(description="If true, the transport should use all available interfaces to receive multicast messages") protected boolean receive_on_all_interfaces; /** * List of interfaces to receive multicasts on. The multicast receive socket will listen on all * of these interfaces. This is a comma-separated list of IP addresses or interface names. E.g. * "192.168.5.1,eth1,127.0.0.1". Duplicates are discarded; we only bind to an interface once. If this property * is set, it overrides receive_on_all_interfaces. */ @Property(converter=PropertyConverters.NetworkInterfaceList.class, description="List of interfaces to receive multicasts on") protected List receive_interfaces; /** * If true, the transport should use all available interfaces to send multicast messages. This means the same * multicast message is sent N times, so use with care */ @Property(description="Whether send messages are sent on all interfaces. Default is false") protected boolean send_on_all_interfaces; /** * List of interfaces to send multicasts on. The multicast send socket will send the same multicast * message on all of these interfaces. This is a comma-separated list of IP addresses or interface names. * E.g. "192.168.5.1,eth1,127.0.0.1". Duplicates are discarded. If this property is set, it override send_on_all_interfaces. */ @Property(converter=PropertyConverters.NetworkInterfaceList.class, description="List of interfaces to send multicasts on") protected List send_interfaces; /* --------------------------------------------- Fields ------------------------------------------------------ */ // for reception of multicast packets protected MulticastSocket mcast_receive_sock; // for sending in multicast packets protected MulticastSocket mcast_send_sock; // sending of mcast packets, if we have multiple mcast send sockets, e.g. send_on_all_interfaces enabled protected MulticastSocket[] mcast_send_sockets; protected volatile Thread receiver; public MPING() { } public InetAddress getBindAddr() {return bind_addr;} public MPING setBindAddr(InetAddress b) {this.bind_addr=b; return this;} public List getReceiveInterfaces() {return receive_interfaces;} public List getSendInterfaces() {return send_interfaces;} public boolean isReceiveOnAllInterfaces() {return receive_on_all_interfaces;} public boolean isSendOnAllInterfaces() {return send_on_all_interfaces;} public int getTTL() {return ip_ttl;} public MPING setTTL(int ip_ttl) {this.ip_ttl=ip_ttl; return this;} public InetAddress getMcastAddr() {return mcast_addr;} public MPING mcastAddress(InetAddress a) {this.mcast_addr=a; return this;} public MPING setMcastAddr(InetAddress a) {this.mcast_addr=a; return this;} public int getMcastPort() {return mcast_port;} public MPING setMcastPort(int p) {this.mcast_port=p; return this;} public MPING setMulticastAddress(String a) throws UnknownHostException {mcast_addr=InetAddress.getByName(a); return this;} public Object up(Event evt) { if(evt.getType() == Event.CONFIG) { if(bind_addr == null) { Map config=evt.getArg(); bind_addr=(InetAddress)config.get("bind_addr"); } return up_prot.up(evt); } return super.up(evt); } public void init() throws Exception { super.init(); log.debug("bind_addr=%s, mcast_addr=%s, mcast_port=%d", bind_addr, mcast_addr, mcast_port); } public void start() throws Exception { if(bind_addr == null) bind_addr=getTransport().getBindAddr(); if(Util.can_bind_to_mcast_addr) // https://issues.redhat.com/browse/JGRP-836 - prevent cross talking on Linux mcast_receive_sock=Util.createMulticastSocket(getSocketFactory(), "jgroups.mping.mcast_sock", mcast_addr, mcast_port, log); else mcast_receive_sock=getSocketFactory().createMulticastSocket("jgroups.mping.mcast_sock", mcast_port); mcast_receive_sock.setTimeToLive(ip_ttl); if(receive_on_all_interfaces || (receive_interfaces != null && !receive_interfaces.isEmpty())) { List interfaces; if(receive_interfaces != null) interfaces=receive_interfaces; else interfaces=Util.getAllAvailableInterfaces(); bindToInterfaces(interfaces, mcast_receive_sock, mcast_addr); } else { if(bind_addr != null) mcast_receive_sock.setNetworkInterface(NetworkInterface.getByInetAddress(bind_addr)); InetSocketAddress group=new InetSocketAddress(mcast_addr, mcast_port); NetworkInterface intf=bind_addr == null? null : NetworkInterface.getByInetAddress(bind_addr); log.debug("%s: joining group %s on NIC %s\n", local_addr, group, intf); mcast_receive_sock.joinGroup(group, intf); } // Create mcast sender socket if(send_on_all_interfaces || (send_interfaces != null && !send_interfaces.isEmpty())) { List nics=send_interfaces != null? send_interfaces : Util.getAllAvailableInterfaces(); mcast_send_sockets=new MulticastSocket[nics.size()]; int index=0; for(Iterator it=nics.iterator(); it.hasNext();) { NetworkInterface intf=it.next(); mcast_send_sockets[index]=new MulticastSocket(); mcast_send_sockets[index].setNetworkInterface(intf); mcast_send_sockets[index].setTimeToLive(ip_ttl); index++; } } else mcast_send_sock=createMulticastSocket("jgroups.mping.mcast-send-sock", 0); startReceiver(); super.start(); } public void stop() { receiver=null; Util.close(mcast_receive_sock); mcast_receive_sock=null; super.stop(); } public void run() { final byte[] receive_buf=new byte[65535]; DatagramPacket packet=new DatagramPacket(receive_buf, receive_buf.length); while(mcast_receive_sock != null && Thread.currentThread().equals(receiver)) { packet.setData(receive_buf, 0, receive_buf.length); try { mcast_receive_sock.receive(packet); DataInput inp=new ByteArrayDataInputStream(packet.getData(), packet.getOffset(), packet.getLength()); Message msg=new BytesMessage(); msg.readFrom(inp); if(!Objects.equals(local_addr,msg.getSrc())) // discard discovery request from self up(msg); } catch(SocketException socketEx) { break; } catch(Throwable ex) { log.error(Util.getMessage("FailedReceivingPacketFrom"), packet.getSocketAddress(), ex); } } } protected MulticastSocket createMulticastSocket(String service_name, int port) throws Exception { // Creates an *unbound* multicast socket (because SocketAddress is null) MulticastSocket retval=getSocketFactory().createMulticastSocket(service_name, null); // causes *no* binding ! if(bind_addr != null) setInterface(bind_addr, retval); retval.setTimeToLive(ip_ttl); retval.setReuseAddress(false); // so we get a conflict if binding to the same port and increment the port retval.bind(new InetSocketAddress(bind_addr, port)); return retval; } protected T setInterface(InetAddress intf, MulticastSocket s) { try { if(s != null && intf != null) s.setNetworkInterface(NetworkInterface.getByInetAddress(intf)); } catch(Throwable ex) { log.error("failed setting interface to %s: %s", intf, ex); } return (T)this; } protected void bindToInterfaces(List interfaces, MulticastSocket s, InetAddress mcast_addr) throws IOException { SocketAddress tmp_mcast_addr=new InetSocketAddress(mcast_addr, mcast_port); for(Iterator it=interfaces.iterator(); it.hasNext();) { NetworkInterface i=(NetworkInterface)it.next(); for(Enumeration en2=i.getInetAddresses(); en2.hasMoreElements();) { InetAddress addr=(InetAddress)en2.nextElement(); if ((Util.getIpStackType() == StackType.IPv4 && addr instanceof Inet4Address) || (Util.getIpStackType() == StackType.IPv6 && addr instanceof Inet6Address)) { s.joinGroup(tmp_mcast_addr, i); log.trace("joined " + tmp_mcast_addr + " on " + i.getName() + " (" + addr + ")"); break; } } } } protected void startReceiver() { if(receiver == null || !receiver.isAlive()) { ThreadFactory factory=getThreadFactory(); receiver=factory != null? factory.newThread(this, "MPING") : new Thread(this, "MPING)"); receiver.setDaemon(true); receiver.start(); log.debug("receiver thread started"); } } @Override protected void sendMcastDiscoveryRequest(Message msg) { try { if(msg.getSrc() == null) msg.setSrc(local_addr); ByteArrayDataOutputStream out=new ByteArrayDataOutputStream(msg.size()+1); msg.writeTo(out); ByteArray buf=out.getBuffer(); DatagramPacket packet=new DatagramPacket(buf.getArray(), buf.getOffset(), buf.getLength(), mcast_addr, mcast_port); if(mcast_send_sockets != null) { MulticastSocket s; for(int i=0; i < mcast_send_sockets.length; i++) { s=mcast_send_sockets[i]; try { s.send(packet); } catch(Exception e) { log.error(Util.getMessage("FailedSendingPacketOnSocket"), s); } } } else { // DEFAULT path if(mcast_send_sock != null) mcast_send_sock.send(packet); } } catch(Exception ex) { log.error(String.format("%s: failed sending discovery request to %s", local_addr, mcast_addr + ":" + mcast_port), ex); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy