summaryrefslogtreecommitdiff
path: root/src/main.cc
blob: 79946965b03c7da8e132c14e856f2ffac157e4a7 (plain)
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
/*
 * Module: main.cc
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published
 * by the Free Software Foundation.
 */
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <signal.h>
#include <syslog.h>
#include <stdio.h>
#include "stdlib.h"
#include <unistd.h>
#include <iostream>
#include <unistd.h>
#include "loadbalance.hh"

bool g_check_path = false;
LoadBalance *g_lb = NULL;
pid_t pid_output (const char *path);


static void usage()
{
  cout << "lb -ftviodh" << endl;
  cout << "  -f [file] configuration file" << endl;
  cout << "  -t load configuration file only and exit" << endl;
  cout << "  -v print debug output" << endl;
  cout << "  -i specify location of pid directory" << endl;
  cout << "  -o specify location of output directory" << endl;
  cout << "  -d run as daemon" << endl;
  cout << "  -h help" << endl;

}

static void sig_end(int signo)
{
  if (g_lb)
    delete g_lb;
  cerr << "End signal: " << signo << endl;
  syslog(LOG_ERR, "wan_lb, exit signal caught, exiting..");
  exit(0);
}

static void sig_user1(int signo)
{
  if (g_lb)
    delete g_lb;
  cerr << "User signal: " << signo << endl;
  syslog(LOG_ERR, "wan_lb, user exit signal caught, exiting..");
  exit(0);
}

static void sig_user2(int signo)
{
  //used to wake up the process to check paths
  g_check_path = true;
  cerr << "User signal: " << signo << endl;
  syslog(LOG_ERR, "wan_lb, rechecking interfaces..");
}


int main(int argc, char* argv[])
{
  int ch;
  bool debug = false;
  bool config_debug_mode = false, daemon = false;
  string pid_path = "/var/run";
  string output_path = "/var/run/load-balance";
  string c_file;

  //grab inputs
  while ((ch = getopt(argc, argv, "f:hti:o:dv")) != -1) {
    switch (ch) {
    case 'f':
      c_file = optarg;
      break;
    case 'h':
      usage();
      exit(0);
    case 't':
      config_debug_mode = true;
      break;
    case 'i':
      pid_path = optarg;
      break;
    case 'o':
      output_path = optarg;
      break;
    case 'd':
      daemon = true;
      break;
    case 'v':
      debug = true;
      break;
    default:
      usage();
      exit(0);
    }
  }


  //parse conf file
  if (c_file.empty()) {
    cout << "Configuration file is empty" << endl;
    exit(0);
  }
 
  int s = 0;
  if (daemon) {
    if (fork() != 0) {
      wait(&s);
      exit(0);
    }
  }

  if (pid_path.empty() == false) {
    pid_output(pid_path.c_str());
  }

  g_lb = new LoadBalance(debug, output_path);
  
  bool success = g_lb->set_conf(c_file);
  if (success == false) {
    syslog(LOG_ERR, "wan_lb: error loading configuration file: %s", c_file.c_str());
    exit(0);
  }

  if (config_debug_mode) {
    exit(0);
  }

  if (debug) {
    cout << "STARTING CYCLE" << endl;
  }

  g_lb->init();

  
  //signal handler here
  //  sighup...
  signal(SIGINT, sig_end);
  signal(SIGTERM, sig_end);
  signal(SIGUSR1, sig_user1);
  signal(SIGUSR2, sig_user2);

    //drop into event loop
  do {
    if (debug) {
      cout << "main.cc: starting new cycle" << endl;
    }

    //check interface address and nexthop
    if (g_check_path == true) {
      g_lb->update_paths();
      g_check_path = false;
    }

    //health test
    g_lb->health_test();

    //apply rules
    g_lb->apply_rules();

    //update show output
    g_lb->output();

    g_lb->sleep();
  } while (g_lb->start_cycle());

  if (g_lb) {
    delete g_lb;
  }

  exit(0);
}

/**
 *
 *below borrowed from quagga library.
 **/
#define PIDFILE_MASK 0644
pid_t
pid_output (const char *path)
{
  FILE *fp;
  pid_t pid;
  mode_t oldumask;

  pid = getpid();

  oldumask = umask(0777 & ~PIDFILE_MASK);
  fp = fopen (path, "w");
  if (fp != NULL) 
    {
      fprintf (fp, "%d\n", (int) pid);
      fclose (fp);
      umask(oldumask);
      return pid;
    }
  /* XXX Why do we continue instead of exiting?  This seems incompatible
     with the behavior of the fcntl version below. */
  syslog(LOG_ERR,"Can't fopen pid lock file %s, continuing",
            path);
  umask(oldumask);
  return -1;
}