OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
controller/src/vnsw/agent/contrail/main.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #include <boost/program_options.hpp>
6 #include <base/logging.h>
7 #include <base/contrail_ports.h>
8 
9 #include <pugixml/pugixml.hpp>
10 
11 #include <base/task.h>
12 #include <io/event_manager.h>
13 #include <sandesh/common/vns_types.h>
14 #include <sandesh/common/vns_constants.h>
15 #include <base/misc_utils.h>
16 
17 #include <cmn/buildinfo.h>
18 #include <cmn/agent_cmn.h>
19 
20 #include <cfg/cfg_init.h>
21 #include <cfg/cfg_mirror.h>
22 
23 #include <init/agent_param.h>
24 
25 #include <oper/operdb_init.h>
26 #include <oper/vrf.h>
27 #include <oper/multicast.h>
28 #include <oper/mirror_table.h>
31 #include <pkt/pkt_init.h>
32 #include <services/services_init.h>
34 #include <uve/agent_uve.h>
35 #include <kstate/kstate.h>
36 #include <pkt/proto.h>
37 #include <diag/diag.h>
38 #include <boost/functional/factory.hpp>
39 #include <cmn/agent_factory.h>
40 
41 #include "contrail_agent_init.h"
42 #define MAX_RETRY 60
43 namespace opt = boost::program_options;
44 
45 void RouterIdDepInit(Agent *agent) {
46  // Parse config and then connect
48  LOG(DEBUG, "Router ID Dependent modules (Nova and BGP) INITIALIZED");
49 }
50 
52  struct ifreq ifr;
53  int sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
54  memset(&ifr, 0, sizeof(ifr));
55  strcpy(ifr.ifr_name, "vhost0");
56  int err = ioctl(sock, SIOCGIFFLAGS, &ifr);
57  if (err < 0 || !(ifr.ifr_flags & IFF_UP)) {
58  close(sock);
59  LOG(DEBUG, "vhost is down");
60  return false;
61  }
62  err = ioctl(sock, SIOCGIFADDR, &ifr);
63  if (err < 0) {
64  close(sock);
65  LOG(DEBUG, "vhost is up, but ip is not set");
66  return false;
67  }
68  close(sock);
69  return true;
70 }
71 
72 bool GetBuildInfo(std::string &build_info_str) {
73  return MiscUtils::GetBuildInfo(MiscUtils::Agent, BuildInfo, build_info_str);
74 }
75 
76 int main(int argc, char *argv[]) {
77  AgentParam params;
78  srand(unsigned(time(NULL)));
79  try {
80  params.ParseArguments(argc, argv);
81  } catch (...) {
82  std::cout << "Invalid arguments. ";
83  std::cout << params.options() << std::endl;
84  exit(0);
85  }
86 
87  opt::variables_map var_map = params.var_map();
88  if (var_map.count("help")) {
89  std::cout << params.options() << std::endl;
90  exit(0);
91  }
92 
93  if (var_map.count("version")) {
94  string build_info;
95  MiscUtils::GetBuildInfo(MiscUtils::Agent, BuildInfo, build_info);
96  std::cout << params.options() << std::endl;
97  exit(0);
98  }
99 
100  string init_file = "";
101  if (var_map.count("config_file")) {
102  init_file = var_map["config_file"].as<string>();
103  struct stat s;
104  if (stat(init_file.c_str(), &s) != 0) {
105  std::cout << "Error opening config file <" << init_file
106  << ">. Error number <" << errno << ">";
107  exit(EINVAL);
108  }
109  }
110 
111  // Read agent parameters from config file and arguments
112  params.Init(init_file, argv[0]);
113 
114  if (!params.cat_is_agent_mocked() &&
115  params.loopback_ip() == Ip4Address(0)) {
116 
117  uint16_t i;
118 
119  for (i = 0; i < MAX_RETRY; i++) {
120  std::cout << "INFO: wait vhost0 to be initilaized... "
121  << i << "/" << MAX_RETRY << std::endl;
122  if (is_vhost_interface_up()) {
123  std::cout << "INFO: vhost0 is ready." << std::endl;
124  break;
125  }
126  usleep(5000000); //sleep for 5 seconds
127  }
128 
129  if (i == MAX_RETRY) {
130  std::cout << "INFO: vhost0 is not ready." << std::endl;
131  exit(0);
132  }
133  }
134 
135  // Initialize TBB
136  // Call to GetScheduler::GetInstance() will also create Task Scheduler
138 
139  // Initialize the agent-init control class
141  if (params.cat_is_agent_mocked()) {
142  init.set_create_vhost(false);
143  }
144 
145  init.set_agent_param(&params);
146  // kick start initialization
147  int ret = 0;
148  if ((ret = init.Start()) != 0) {
149  return ret;
150  }
151 
152  string build_info;
153  GetBuildInfo(build_info);
154  MiscUtils::LogVersionInfo(build_info, Category::VROUTER);
155 
156  Agent *agent = init.agent();
158  agent->event_manager()->Run();
159 
160  return 0;
161 }
void init()
Definition: bgp_log.cc:37
static Agent * GetInstance()
Definition: agent.h:436
static void Initialize(uint32_t thread_count=0, EventManager *evm=NULL)
Definition: task.cc:478
uint32_t tbb_thread_count() const
Definition: agent_param.h:453
const Ip4Address & loopback_ip() const
Definition: agent_param.h:577
static bool GetBuildInfo(BuildModule id, const std::string &build_info, std::string &result)
Definition: misc_utils.cc:99
static void LogVersionInfo(const std::string str, Category::type categ)
Definition: misc_utils.cc:38
void set_event_manager(EventManager *evm)
Definition: task.cc:493
void ParseArguments(int argc, char *argv[])
Definition: agent.h:358
static TaskScheduler * GetInstance()
Definition: task.cc:547
const boost::program_options::variables_map & var_map() const
Definition: agent_param.h:373
VNController * controller() const
Definition: agent.cc:981
EventManager * event_manager() const
Definition: agent.h:1103
boost::asio::ip::address_v4 Ip4Address
Definition: address.h:14
boost::program_options::options_description options() const
Definition: agent_param.h:377
#define LOG(_Level, _Msg)
Definition: logging.h:33
void RouterIdDepInit(Agent *agent)
void Init(const std::string &config_file, const std::string &program_name)
bool GetBuildInfo(std::string &build_info_str)
bool cat_is_agent_mocked() const
Definition: agent_param.h:569