aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_dahdi.c
diff options
context:
space:
mode:
authorrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-24 21:01:43 +0000
committerrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-24 21:01:43 +0000
commit2da3a2067a00445095ba341336658389227e2820 (patch)
treea4b7aaf7b101381f4b7192629d62a42d80f6eb1c /channels/chan_dahdi.c
parentfbe745b7e7358a165a78c04cf280f451b5b20278 (diff)
Improved chan_dahdi.conf pritimer error checking.
Valid format is: pritimer=timer_name,timer_value * Fixed segfault if the ',' is missing. * Completely check the range returned by pri_timer2idx() to prevent possible access outside array bounds. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@203036 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_dahdi.c')
-rw-r--r--channels/chan_dahdi.c41
1 files changed, 26 insertions, 15 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 9ced0cc6c..99c745eab 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -11823,26 +11823,37 @@ static int process_dahdi(struct dahdi_chan_conf *confp, const char *cat, struct
#endif
} else if (!strcasecmp(v->name, "pritimer")) {
#ifdef PRI_GETSET_TIMERS
- char *timerc, *c;
- int timer, timeridx;
- c = v->value;
+ char tmp[20];
+ char *timerc;
+ char *c;
+ int timer;
+ int timeridx;
+
+ ast_copy_string(tmp, v->value, sizeof(tmp));
+ c = tmp;
timerc = strsep(&c, ",");
- if (timerc) {
+ if (!ast_strlen_zero(timerc) && !ast_strlen_zero(c)) {
+ timeridx = pri_timer2idx(timerc);
timer = atoi(c);
- if (!timer)
- ast_log(LOG_WARNING, "'%s' is not a valid value for an ISDN timer\n", timerc);
- else {
- if ((timeridx = pri_timer2idx(timerc)) >= 0)
- pritimers[timeridx] = timer;
- else
- ast_log(LOG_WARNING, "'%s' is not a valid ISDN timer\n", timerc);
+ if (timeridx < 0 || PRI_MAX_TIMERS <= timeridx) {
+ ast_log(LOG_WARNING,
+ "'%s' is not a valid ISDN timer at line %d.\n", timerc,
+ v->lineno);
+ } else if (!timer) {
+ ast_log(LOG_WARNING,
+ "'%s' is not a valid value for ISDN timer '%s' at line %d.\n",
+ c, timerc, v->lineno);
+ } else {
+ pritimers[timeridx] = timer;
}
- } else
- ast_log(LOG_WARNING, "'%s' is not a valid ISDN timer configuration string\n", v->value);
-
+ } else {
+ ast_log(LOG_WARNING,
+ "'%s' is not a valid ISDN timer configuration string at line %d.\n",
+ v->value, v->lineno);
+ }
+#endif /* PRI_GETSET_TIMERS */
} else if (!strcasecmp(v->name, "facilityenable")) {
confp->pri.facilityenable = ast_true(v->value);
-#endif /* PRI_GETSET_TIMERS */
#endif /* HAVE_PRI */
} else if (!strcasecmp(v->name, "cadence")) {
/* setup to scan our argument */