aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2019-12-03 21:49:06 +0100
committerHarald Welte <laforge@osmocom.org>2019-12-03 21:49:31 +0100
commit2ca002f4af22aabbed89434440fc3443c8619295 (patch)
treed56b6d70aacd0935bd71e8166102ef89ed3fb8a7 /src
parenta1d175ab664e210d9c4dfa89c374cd581d6bb0c1 (diff)
exit(2) on unsupported positional arguments on command line
Diffstat (limited to 'src')
-rw-r--r--src/ipaccess/ipaccess-proxy.c4
-rw-r--r--src/osmo-bsc/osmo_bsc_main.c5
-rw-r--r--src/utils/bs11_config.c4
3 files changed, 13 insertions, 0 deletions
diff --git a/src/ipaccess/ipaccess-proxy.c b/src/ipaccess/ipaccess-proxy.c
index 3d5f301d8..f4d620b34 100644
--- a/src/ipaccess/ipaccess-proxy.c
+++ b/src/ipaccess/ipaccess-proxy.c
@@ -1200,6 +1200,10 @@ static void handle_options(int argc, char** argv)
break;
}
}
+ if (argc > optind) {
+ fprintf(stderr, "Unsupported positional arguments on command line\n");
+ exit(2);
+ }
if ((options_mask & (IPA_PROXY_OPT_LISTEN_IP | IPA_PROXY_OPT_BSC_IP))
!= (IPA_PROXY_OPT_LISTEN_IP | IPA_PROXY_OPT_BSC_IP)) {
printf("ERROR: You have to specify `--listen' and `--bsc' "
diff --git a/src/osmo-bsc/osmo_bsc_main.c b/src/osmo-bsc/osmo_bsc_main.c
index b18172cc4..6b1427903 100644
--- a/src/osmo-bsc/osmo_bsc_main.c
+++ b/src/osmo-bsc/osmo_bsc_main.c
@@ -171,6 +171,11 @@ static void handle_options(int argc, char **argv)
break;
}
}
+
+ if (argc > optind) {
+ fprintf(stderr, "Unsupported positional arguments on command line\n");
+ exit(2);
+ }
}
/* Callback function for NACK on the OML NM */
diff --git a/src/utils/bs11_config.c b/src/utils/bs11_config.c
index 2a2340c4a..7cd420354 100644
--- a/src/utils/bs11_config.c
+++ b/src/utils/bs11_config.c
@@ -854,6 +854,10 @@ static void handle_options(int argc, char **argv)
if (optind+1 < argc)
value = argv[optind+1];
}
+ if (optind+2 < argc) {
+ fprintf(stderr, "Unsupported positional arguments on command line\n");
+ exit(2);
+ }
}