aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs/sgsn_main.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-10-31 01:00:37 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2017-11-01 00:11:30 +0100
commitfea0609f4b53ea2b43424f17f9ca4a7fd7d7fbcb (patch)
tree1ba1657e6be77d501abbf6735153f75d00bb3a5e /src/gprs/sgsn_main.c
parent07e93ccee60907d8d6045ef4ad9938071ceda284 (diff)
change default config filename to osmo-sgsn.cfg, not osmo_sgsn.cfg
All other Osmocom programs I know of have a default config file using a dash. Comply. Be backwards compatible: when a legacy osmo_sgsn.cfg exists but no osmo-sgsn.cfg, use the old config file instead. (Verified to work by manual tests.) Change-Id: If804da17a7481e79e000fe40ae0d9c4be9722e61
Diffstat (limited to 'src/gprs/sgsn_main.c')
-rw-r--r--src/gprs/sgsn_main.c28
1 files changed, 26 insertions, 2 deletions
diff --git a/src/gprs/sgsn_main.c b/src/gprs/sgsn_main.c
index e48d8d10c..8cd68ff3a 100644
--- a/src/gprs/sgsn_main.c
+++ b/src/gprs/sgsn_main.c
@@ -85,8 +85,11 @@ const char *openbsc_copyright =
"This is free software: you are free to change and redistribute it.\r\n"
"There is NO WARRANTY, to the extent permitted by law.\r\n";
+#define CONFIG_FILE_DEFAULT "osmo-sgsn.cfg"
+#define CONFIG_FILE_LEGACY "osmo_sgsn.cfg"
+
static struct sgsn_instance sgsn_inst = {
- .config_file = "osmo_sgsn.cfg",
+ .config_file = NULL,
.cfg = {
.gtp_statedir = "./",
.auth_policy = SGSN_AUTH_POLICY_CLOSED,
@@ -216,7 +219,7 @@ static void print_help(void)
printf(" -D --daemonize\tFork the process into a background daemon\n");
printf(" -d option --debug\tenable Debugging\n");
printf(" -s --disable-color\n");
- printf(" -c --config-file\tThe config file to use [%s]\n", sgsn->config_file);
+ printf(" -c --config-file\tThe config file to use [%s]\n", CONFIG_FILE_DEFAULT);
printf(" -e --log-level number\tSet a global log level\n");
}
@@ -356,6 +359,12 @@ static const struct log_info gprs_log_info = {
int sgsn_ranap_iu_event(struct ranap_ue_conn_ctx *ctx, enum ranap_iu_event_type type, void *data);
#endif
+static bool file_exists(const char *path)
+{
+ struct stat sb;
+ return stat(path, &sb) ? false : true;
+}
+
int main(int argc, char **argv)
{
struct ctrl_handle *ctrl;
@@ -392,6 +401,21 @@ int main(int argc, char **argv)
handle_options(argc, argv);
+ /* Backwards compatibility: for years, the default config file name was
+ * osmo_sgsn.cfg. All other Osmocom programs use osmo-*.cfg with a
+ * dash. To be able to use the new config file name without breaking
+ * previous setups that might rely on the legacy default config file
+ * name, we need to look for the old config file if no -c option was
+ * passed AND no file exists with the new default file name. */
+ if (!sgsn_inst.config_file) {
+ /* No -c option was passed */
+ if (file_exists(CONFIG_FILE_LEGACY)
+ && !file_exists(CONFIG_FILE_DEFAULT))
+ sgsn_inst.config_file = CONFIG_FILE_LEGACY;
+ else
+ sgsn_inst.config_file = CONFIG_FILE_DEFAULT;
+ }
+
rate_ctr_init(tall_bsc_ctx);
gprs_ns_set_log_ss(DNS);