summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2005-12-15 20:19:49 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2005-12-15 20:19:49 +0000
commit2c20c42db624528a8761a4f1cf52ee08d7f6f1c7 (patch)
tree4467fe2f2c1923f71baad02f740e732f1d44903d /usr.sbin
parentbfbe9c6966dfe44d7ee7862e5a5cc2f11a3b912c (diff)
Fix memory leaks in the parser. Make the string passed with area more strict.
Finaly implement clear_config(). OK norby@
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ospfd/parse.y20
1 files changed, 14 insertions, 6 deletions
diff --git a/usr.sbin/ospfd/parse.y b/usr.sbin/ospfd/parse.y
index 46ff1b1f1d3..8e769d1c658 100644
--- a/usr.sbin/ospfd/parse.y
+++ b/usr.sbin/ospfd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.21 2005/11/04 10:15:43 claudio Exp $ */
+/* $OpenBSD: parse.y,v 1.22 2005/12/15 20:19:48 claudio Exp $ */
/*
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
@@ -217,12 +217,13 @@ conf_main : METRIC number {
}
defaults.rxmt_interval = $2;
}
- | ROUTERID string {
+ | ROUTERID STRING {
if (!inet_aton($2, &conf->rtr_id)) {
yyerror("error parsing router-id");
free($2);
YYERROR;
}
+ free($2);
}
| FIBUPDATE yesno {
if ($2 == 0)
@@ -331,7 +332,8 @@ authkey : AUTHKEY STRING {
YYERROR;
}
iface->auth_key = $2;
- }
+ } else
+ free($2);
}
;
@@ -342,7 +344,7 @@ optnl : '\n' optnl
nl : '\n' optnl /* one newline or more */
;
-area : AREA string {
+area : AREA STRING {
struct in_addr id;
if (inet_aton($2, &id) == 0) {
yyerror("error parsing area");
@@ -968,8 +970,14 @@ conf_get_if(struct kif *kif)
void
clear_config(struct ospfd_conf *xconf)
{
- /* XXX clear conf */
- /* ... */
+ struct area *a;
+
+ while ((a = LIST_FIRST(&xconf->area_list)) != NULL) {
+ LIST_REMOVE(a, entry);
+ area_del(a);
+ }
+
+ free(xconf);
}
u_int32_t