aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/uapi/linux/icmpv6.h2
-rw-r--r--net/ipv6/icmp.c10
2 files changed, 11 insertions, 1 deletions
diff --git a/include/uapi/linux/icmpv6.h b/include/uapi/linux/icmpv6.h
index e0133c73c304..590beda78ea0 100644
--- a/include/uapi/linux/icmpv6.h
+++ b/include/uapi/linux/icmpv6.h
@@ -115,6 +115,8 @@ struct icmp6hdr {
115#define ICMPV6_NOT_NEIGHBOUR 2 115#define ICMPV6_NOT_NEIGHBOUR 2
116#define ICMPV6_ADDR_UNREACH 3 116#define ICMPV6_ADDR_UNREACH 3
117#define ICMPV6_PORT_UNREACH 4 117#define ICMPV6_PORT_UNREACH 4
118#define ICMPV6_POLICY_FAIL 5
119#define ICMPV6_REJECT_ROUTE 6
118 120
119/* 121/*
120 * Codes for Time Exceeded 122 * Codes for Time Exceeded
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c
index b4ff0a42b8c7..70e704d49007 100644
--- a/net/ipv6/icmp.c
+++ b/net/ipv6/icmp.c
@@ -931,6 +931,14 @@ static const struct icmp6_err {
931 .err = ECONNREFUSED, 931 .err = ECONNREFUSED,
932 .fatal = 1, 932 .fatal = 1,
933 }, 933 },
934 { /* POLICY_FAIL */
935 .err = EACCES,
936 .fatal = 1,
937 },
938 { /* REJECT_ROUTE */
939 .err = EACCES,
940 .fatal = 1,
941 },
934}; 942};
935 943
936int icmpv6_err_convert(u8 type, u8 code, int *err) 944int icmpv6_err_convert(u8 type, u8 code, int *err)
@@ -942,7 +950,7 @@ int icmpv6_err_convert(u8 type, u8 code, int *err)
942 switch (type) { 950 switch (type) {
943 case ICMPV6_DEST_UNREACH: 951 case ICMPV6_DEST_UNREACH:
944 fatal = 1; 952 fatal = 1;
945 if (code <= ICMPV6_PORT_UNREACH) { 953 if (code < ARRAY_SIZE(tab_unreach)) {
946 *err = tab_unreach[code].err; 954 *err = tab_unreach[code].err;
947 fatal = tab_unreach[code].fatal; 955 fatal = tab_unreach[code].fatal;
948 } 956 }