summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2013-01-02 20:43:49 +0100
committerSylvain Munaut <tnt@246tNt.com>2013-01-02 20:43:49 +0100
commit1e2117e70cbd4fec344b71978b44e0c55cb02a0e (patch)
treede895330bf07136e642d004bd70ade614e0fa180
parent1776eaabe93bc220fab016b5082348587499b846 (diff)
host/cell_log: Prevent buffer overflow when displaying arfcn range
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--src/host/layer23/src/misc/app_cell_log.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/host/layer23/src/misc/app_cell_log.c b/src/host/layer23/src/misc/app_cell_log.c
index 6669a955..a7f42c37 100644
--- a/src/host/layer23/src/misc/app_cell_log.c
+++ b/src/host/layer23/src/misc/app_cell_log.c
@@ -110,14 +110,13 @@ static int l23_getopt_options(struct option **options)
return ARRAY_SIZE(opts);
}
-static char* print_band_range(uint16_t range[][2], char* buf)
+static char* print_band_range(uint16_t range[][2], char* buf, size_t buf_len)
{
int i = 0;
int idx = 0;
- while(range[i][0] != 0 || range[i][1] != 0) {
- sprintf(buf + idx, "%u-%u,", range[i][0], range[i][1]);
+ while (idx < buf_len && (range[i][0] != 0 || range[i][1] != 0)) {
+ idx += snprintf(&buf[idx], buf_len - idx, "%u-%u,", range[i][0], range[i][1]);
i++;
- idx = strlen(buf);
}
buf[idx-1] = '\0';
return buf;
@@ -223,7 +222,7 @@ static int l23_cfg_handle(int c, const char *optarg)
break;
case 'A':
parse_band_range((char*)optarg);
- printf("New frequencies range: %s\n", print_band_range(*band_range, buf));
+ printf("New frequencies range: %s\n", print_band_range(*band_range, buf, sizeof(buf)));
break;
}
return 0;