Blame SOURCES/dnsmasq-2.78-fips.patch

6484a4
From 89f57e39b69f92beacb6bad9c68d61f9c4fb0e77 Mon Sep 17 00:00:00 2001
6484a4
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
6484a4
Date: Fri, 2 Mar 2018 13:17:04 +0100
6484a4
Subject: [PATCH] Print warning on FIPS machine with dnssec enabled. Dnsmasq
6484a4
 has no proper FIPS 140-2 compliant implementation.
6484a4
6484a4
---
6484a4
 src/dnsmasq.c | 6 +++++-
6484a4
 1 file changed, 5 insertions(+), 1 deletion(-)
6484a4
6484a4
diff --git a/src/dnsmasq.c b/src/dnsmasq.c
6484a4
index ce44809..9f6c020 100644
6484a4
--- a/src/dnsmasq.c
6484a4
+++ b/src/dnsmasq.c
6484a4
@@ -187,6 +187,7 @@ int main (int argc, char **argv)
6484a4
       
6484a4
       if (daemon->cachesize < CACHESIZ)
6484a4
 	die(_("cannot reduce cache size from default when DNSSEC enabled"), NULL, EC_BADCONF);
6484a4
+           
6484a4
 #else 
6484a4
       die(_("DNSSEC not available: set HAVE_DNSSEC in src/config.h"), NULL, EC_BADCONF);
6484a4
 #endif
6484a4
@@ -769,7 +770,10 @@ int main (int argc, char **argv)
6484a4
 	}
6484a4
       
6484a4
       my_syslog(LOG_INFO, _("DNSSEC validation enabled"));
6484a4
-      
6484a4
+
6484a4
+      if (access("/etc/system-fips", F_OK) == 0)
6484a4
+        my_syslog(LOG_WARNING, _("DNSSEC support is not FIPS 140-2 compliant"));
6484a4
+
6484a4
       daemon->dnssec_no_time_check = option_bool(OPT_DNSSEC_TIME);
6484a4
       if (option_bool(OPT_DNSSEC_TIME) && !daemon->back_to_the_future)
6484a4
 	my_syslog(LOG_INFO, _("DNSSEC signature timestamps not checked until receipt of SIGINT"));
6484a4
-- 
6484a4
2.14.4
6484a4