Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F146144833
D55133.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D55133.diff
View Options
diff --git a/sys/netpfil/ipfilter/netinet/fil.c b/sys/netpfil/ipfilter/netinet/fil.c
--- a/sys/netpfil/ipfilter/netinet/fil.c
+++ b/sys/netpfil/ipfilter/netinet/fil.c
@@ -236,6 +236,11 @@
{ IPSO_CLASS_RES1, 0x80 }
};
+/*
+ * Internal errors set by ipf_check_names_string().
+ */
+static const int interr_tbl[3] = { 152, 156, 153 };
+
char ipfilter_version[] = IPL_VERSION;
int ipf_features = 0
@@ -3906,7 +3911,7 @@
frentry_t *frt, *start = fr;
frdest_t *fdp;
char *name;
- int error;
+ int error, interr;
void *ifa;
int v, i;
@@ -3933,6 +3938,21 @@
}
if ((fr->fr_type & ~FR_T_BUILTIN) == FR_T_IPF) {
+ /*
+ * We do the validation for fr_sifpidx here because
+ * it is a union that contains an offset only when
+ * fr_sifpidx points to an interface name, an offset
+ * into fr_names. The union is an offset into
+ * fr_names in this case only.
+ *
+ * Note that sifpidx is only used in ipf_sync() which
+ * implments ipf -y.
+ */
+ if ((interr = ipf_check_names_string(fr->fr_names, fr->fr_namelen, fr->fr_sifpidx)) != 0) {
+ IPFERROR(interr_tbl[interr-1]);
+ error = EINVAL;
+ goto unwind;
+ }
if (fr->fr_satype != FRI_NORMAL &&
fr->fr_satype != FRI_LOOKUP) {
ifa = ipf_resolvenic(softc, fr->fr_names +
@@ -4404,7 +4424,6 @@
int set, int makecopy)
{
int error = 0, in, family, need_free = 0, interr, i;
- int interr_tbl[3] = { 152, 156, 153};
enum { OP_ADD, /* add rule */
OP_REM, /* remove rule */
OP_ZERO /* zero statistics and counters */ }
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 1, 5:03 AM (14 h, 34 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28449460
Default Alt Text
D55133.diff (1 KB)
Attached To
Mode
D55133: ipfilter: Interface name must not extend beyond end of buffer
Attached
Detach File
Event Timeline
Log In to Comment