OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
controller_dns.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #include "base/util.h"
6 #include "base/logging.h"
7 #include "base/connection_info.h"
8 #include "base/address_util.h"
9 #include "cmn/agent_cmn.h"
12 #include "xmpp/xmpp_channel.h"
13 #include "pugixml/pugixml.hpp"
14 #include "xml/xml_pugi.h"
15 #include "bind/xmpp_dns_agent.h"
16 
18 using process::ConnectionType;
19 using process::ConnectionStatus;
20 
23 
25  std::string xmpp_server, uint8_t xs_idx)
26  : channel_(NULL), xmpp_server_(xmpp_server), xs_idx_(xs_idx),
27  agent_(agent) {
28 }
29 
31  if (channel_) {
34  }
35 }
36 
38  if (channel == NULL)
39  return;
40 
41  channel_ = channel;
42  channel->RegisterReceive(xmps::DNS,
43  boost::bind(&AgentDnsXmppChannel::ReceiveInternal, this, _1));
44 }
45 
46 bool AgentDnsXmppChannel::SendMsg(uint8_t *msg, std::size_t len) {
48  return false;
49 
50  return channel_->Send((const uint8_t *)msg, len, xmps::DNS,
51  boost::bind(&AgentDnsXmppChannel::WriteReadyCb, this, _1));
52 }
53 
55  if (msg && msg->type == XmppStanza::IQ_STANZA) {
56  std::unique_ptr<XmlBase> impl(XmppXmlImplFactory::Instance()->GetXmlImpl());
57  XmlPugi *pugi = reinterpret_cast<XmlPugi *>(impl.get());
58  XmlPugi *msg_pugi = reinterpret_cast<XmlPugi *>(msg->dom.get());
59  pugi->LoadXmlDoc(msg_pugi->doc()); //Verify Xmpp message format
60  boost::shared_ptr<ControllerXmppData> data(new ControllerXmppData(xmps::DNS,
62  xs_idx_,
63  std::move(impl),
64  true));
65  agent_->controller()->Enqueue(data);
66  }
67 }
68 
70  ReceiveMsg(msg);
71 }
72 
73 void AgentDnsXmppChannel::ReceiveDnsMessage(std::unique_ptr<XmlBase> impl) {
74  XmlPugi *pugi = reinterpret_cast<XmlPugi *>(impl.get());
75  pugi::xml_node node = pugi->FindNode("dns");
76  DnsAgentXmpp::XmppType xmpp_type;
77  uint32_t xid;
78  uint16_t code;
79  std::unique_ptr<DnsUpdateData> xmpp_data(new DnsUpdateData);
80  if (DnsAgentXmpp::DnsAgentXmppDecode(node, xmpp_type, xid,
81  code, xmpp_data.get())) {
82  if (!dns_message_handler_cb_.empty())
83  dns_message_handler_cb_(xmpp_data.release(), xmpp_type,
84  NULL, false);
85  }
86 }
87 
88 std::string AgentDnsXmppChannel::ToString() const {
89  return channel_->ToString();
90 }
91 
92 void AgentDnsXmppChannel::WriteReadyCb(const boost::system::error_code &ec) {
93 }
94 
96  xmps::PeerState state) {
97  std::unique_ptr<XmlBase> dummy_dom;
98  boost::shared_ptr<ControllerXmppData> data(new ControllerXmppData(xmps::DNS,
99  state,
100  peer->GetXmppServerIdx(),
101  std::move(dummy_dom),
102  false));
103  peer->agent()->controller()->Enqueue(data);
104 }
105 
106 /*
107  * AgentDnsXmppChannel state TimedOut
108  *
109  * If there are more than two channels available in config, then try picking
110  * other channel to replace this timed out channel. And push this channel at the
111  * end of the channel list so that it is picked only in worst case.
112  *
113  * If there are only two channels configured, no action to be taken.
114  */
116  bool update_list = false;
117  std::vector<string>::iterator iter = agent_->GetDnslist().begin();
118  std::vector<string>::iterator end = agent_->GetDnslist().end();
119  for (; iter != end; iter++) {
120  std::vector<string> server;
121  boost::split(server, *iter, boost::is_any_of(":"));
122  if (GetXmppServer().compare(server[0]) == 0) {
123  // Add the TIMEDOUT server to the end.
124  if (iter + 1 == end) break;
125  std::rotate(iter, iter + 1, end);
126  update_list = true;
127  break;
128  }
129  }
130  if (update_list) {
132  }
133 }
134 
136  xmps::PeerState state) {
137  peer->UpdateConnectionInfo(state);
138  if (state == xmps::READY) {
139  if (!peer->dns_xmpp_event_handler_cb_.empty())
140  peer->dns_xmpp_event_handler_cb_(peer);
141  } else if (state == xmps::TIMEDOUT) {
142  peer->TimedOut();
143  }
144 }
145 
148 }
149 
152 }
153 
155  if (agent_->connection_state() == NULL)
156  return;
157 
158  boost::asio::ip::tcp::endpoint ep;
159  boost::system::error_code ec;
160  std::string last_state_name;
161  ep.address(AddressFromString(agent_->dns_server(xs_idx_), &ec));
162  ep.port(agent_->dns_server_port(xs_idx_));
163  const std::string name = agent_->xmpp_dns_server_prefix() +
164  ep.address().to_string();
165  XmppChannel *xc = GetXmppChannel();
166  if (xc) {
167  last_state_name = xc->LastStateName();
168  }
169  if (state == xmps::READY) {
170  agent_->connection_state()->Update(ConnectionType::XMPP, name,
171  ConnectionStatus::UP, ep,
172  last_state_name);
173  } else {
174  agent_->connection_state()->Update(ConnectionType::XMPP, name,
175  ConnectionStatus::DOWN, ep,
176  last_state_name);
177  }
178 }
pugi::xml_node FindNode(const std::string &name)
Definition: xml_pugi.cc:51
static void HandleXmppClientChannelEvent(AgentDnsXmppChannel *peer, xmps::PeerState state)
XmppMessageType type
Definition: xmpp_proto.h:57
virtual void WriteReadyCb(const boost::system::error_code &ec)
static DnsXmppEventHandler dns_xmpp_event_handler_cb_
static DnsMessageHandler dns_message_handler_cb_
virtual void RegisterReceive(xmps::PeerId, ReceiveCb)=0
virtual ~AgentDnsXmppChannel()
std::vector< string > & GetDnslist()
Definition: agent.h:700
const std::string & dns_server(uint8_t idx) const
Definition: agent.h:857
virtual bool SendMsg(uint8_t *msg, std::size_t len)
uint8_t GetXmppServerIdx()
const pugi::xml_document & doc()
Definition: xml_pugi.h:68
boost::function< void(DnsUpdateData *, DnsAgentXmpp::XmppType, VmInterface const *, bool)> DnsMessageHandler
Agent * agent() const
void Enqueue(ControllerWorkQueueDataType data)
virtual xmps::PeerState GetPeerState() const =0
void UpdateConnectionInfo(xmps::PeerState state)
void RegisterXmppChannel(XmppChannel *channel)
static void set_dns_xmpp_event_handler_cb(DnsXmppEventHandler cb)
virtual bool Send(const uint8_t *, size_t, xmps::PeerId, SendReadyCb)=0
virtual void ReceiveMsg(const XmppStanza::XmppMessage *msg)
std::unique_ptr< XmlBase > dom
Definition: xmpp_proto.h:62
void ReceiveInternal(const XmppStanza::XmppMessage *msg)
Definition: agent.h:358
std::string GetXmppServer()
static void set_dns_message_handler_cb(DnsMessageHandler cb)
VNController * controller() const
Definition: agent.cc:981
virtual std::string ToString() const
void LoadXmlDoc(const pugi::xml_document &doc)
Definition: xml_pugi.h:67
XmppChannel * channel_
static const std::string & xmpp_dns_server_prefix()
Definition: agent.h:444
virtual const std::string & ToString() const =0
virtual void UnRegisterReceive(xmps::PeerId)=0
virtual std::string LastStateName() const =0
const uint16_t dns_server_port(uint8_t idx) const
Definition: agent.h:868
IpAddress AddressFromString(const std::string &ip_address_str, boost::system::error_code *ec)
static int compare(const Type &lhs, const Type &rhs)
boost::function< void(AgentDnsXmppChannel *)> DnsXmppEventHandler
static bool DnsAgentXmppDecode(const pugi::xml_node dns, XmppType &type, uint32_t &xid, uint16_t &resp_code, DnsUpdateData *data, std::string source_name="")
virtual void UnRegisterWriteReady(xmps::PeerId id)=0
XmppChannel * GetXmppChannel()
static void XmppClientChannelEvent(AgentDnsXmppChannel *peer, xmps::PeerState state)
static XmppXmlImplFactory * Instance()
Definition: xml_base.cc:18
process::ConnectionState * connection_state() const
Definition: agent.h:953
void ReceiveDnsMessage(std::unique_ptr< XmlBase > impl)
AgentDnsXmppChannel(Agent *agent, std::string xmpp_server, uint8_t xs_idx)
void ReConnectDnsServer()