Files
osmo-trx/Transceiver52M/multiTRX.cpp
Thomas Tsou 91ac934749 Transceiver52M: Verify global config sanity at start
The configuration table is instantiated as a global variable with
no means to check constructor status. This means various types
of database failure conditions (e.g. file existence, permissions,
etc.) are not reported. This patch performs a small number of
checks to make sure that the configuration is sane.

Signed-off-by: Thomas Tsou <tom@tsou.cc>
2013-09-05 06:07:50 -04:00

202 lines
4.5 KiB
C++

/*
* Copyright 2012 Thomas Tsou <ttsou@vt.edu>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* See the COPYING file in the main directory for details.
*/
#include <time.h>
#include <signal.h>
#include <GSMCommon.h>
#include <Logger.h>
#include <Configuration.h>
#include "Transceiver.h"
#include "radioDevice.h"
#define CONFIGDB "/etc/OpenBTS/OpenBTS.db"
ConfigurationTable gConfig(CONFIGDB);
volatile bool gbShutdown = false;
int Transceiver::mTSC = -1;
static void sigHandler(int signum)
{
LOG(NOTICE) << "Received shutdown signal";
gbShutdown = true;
}
static int setupSignals()
{
struct sigaction action;
action.sa_handler = sigHandler;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
if (sigaction(SIGINT, &action, NULL) < 0)
return -1;
if (sigaction(SIGTERM, &action, NULL) < 0)
return -1;
return 0;
}
/*
* Attempt to open and test the database file before
* accessing the configuration table. We do this because
* the global table constructor cannot provide notification
* in the event of failure.
*/
static int testConfig(const char *filename)
{
int rc, val = 9999;
sqlite3 *db;
std::string test = "sadf732zdvj2";
const char *keys[3] = {
"Log.Level",
"TRX.Port",
"TRX.IP",
};
/* Try to open the database */
rc = sqlite3_open(filename, &db);
if (rc || !db) {
std::cerr << "Config: Database could not be opened"
<< std::endl;
return -1;
} else {
sqlite3_close(db);
}
/* Attempt to set a value in the global config */
if (!gConfig.set(test, val)) {
std::cerr << "Config: Failed to set test key - "
<< "permission to access the database?"
<< std::endl;
return -1;
} else {
gConfig.remove(test);
}
/* Attempt to query */
for (int i = 0; i < 3; i++) {
try {
gConfig.getStr(keys[i]);
} catch (...) {
std::cerr << "Config: Failed query on "
<< keys[i] << std::endl;
return -1;
}
}
return 0;
}
int main(int argc, char *argv[])
{
int trxPort, numARFCN = 1;
std::string logLevel, trxAddr, deviceArgs = "";
switch (argc) {
case 3:
deviceArgs = std::string(argv[2]);
case 2:
numARFCN = atoi(argv[1]);
if (numARFCN > CHAN_MAX) {
LOG(ALERT) << numARFCN << " channels not supported "
<< " with with current build";
exit(-1);
}
case 1:
break;
default:
std::cout << argv[0] << " <chans> <device args>" << std::endl;
return -1;
}
if (setupSignals() < 0) {
LOG(ERR) << "Failed to setup signal handlers, exiting...";
exit(-1);
}
/* Configure logger */
if (testConfig(CONFIGDB) < 0) {
std::cerr << "Config: Database failure" << std::endl;
return EXIT_FAILURE;
}
logLevel = gConfig.getStr("Log.Level");
trxPort = gConfig.getNum("TRX.Port");
trxAddr = gConfig.getStr("TRX.IP");
gLogInit("transceiver", logLevel.c_str(), LOG_LOCAL7);
srandom(time(NULL));
RadioDevice *device = RadioDevice::make(SAMPSPERSYM);
int radioType = device->open(deviceArgs);
if (radioType < 0) {
LOG(ALERT) << "Failed to open device, exiting...";
return EXIT_FAILURE;
}
RadioInterface *radio;
switch (radioType) {
case RadioDevice::NORMAL:
radio = new RadioInterface(device, numARFCN);
break;
case RadioDevice::RESAMP:
default:
LOG(ALERT) << "Unsupported configuration";
return EXIT_FAILURE;
}
DriveLoop *drive;
drive = new DriveLoop(trxPort, trxAddr.c_str(), radio, numARFCN, 0);
if (!drive->init()) {
LOG(ALERT) << "Failed to initialize drive loop";
}
Transceiver *trx[CHAN_MAX];
bool primary = true;
for (int i = 0; i < numARFCN; i++) {
trx[i] = new Transceiver(trxPort + 2 * i, trxAddr.c_str(),
drive, radio, SAMPSPERSYM,
i, primary);
trx[i]->start();
primary = false;
}
while (!gbShutdown)
sleep(1);
LOG(NOTICE) << "Shutting down transceivers...";
for (int i = 0; i < numARFCN; i++)
trx[i]->shutdown();
/* Allow time for threads to end before we start freeing objects */
sleep(2);
for (int i = 0; i < numARFCN; i++)
delete trx[i];
delete drive;
delete radio;
delete device;
}