3 ### Makefile for the DNS zones I maintain.
5 ### (c) 2011 Mark Wooding
7 ###--------------------------------------------------------------------------
8 ### Silent-rules machinery.
11 v_tag = $(call v_tag_$V,$1)
12 v_tag_0 = @printf " %-6s %s\n" "$1" "$@";
17 ###--------------------------------------------------------------------------
18 ### Programs and options.
21 CHECKZONE = named-checkzone -i full \
22 -k fail -M fail -n fail -S fail -W fail
26 inside_MASTER = precision
28 ifeq ($(MASTER),localhost)
29 ZONEINST = userv zoneconf install
31 ZONEINST = ssh zoneconf@$(MASTER)
34 ###--------------------------------------------------------------------------
35 ### Utility functions.
37 dir-nosl = $(patsubst %/,%,$(dir $1))
39 ###--------------------------------------------------------------------------
40 ### Keeping all of the files straight.
42 ## Establish a default target. We'll sort out what it does later.
49 REALCLEANFILES = $(CLEANFILES)
50 REALCLEANDIRS = $(CLEANDIRS)
52 ## We work in terms of `zonesets'. Each one corresponds to a Lisp source
53 ## file to be passed to `zone'. A zoneset has a number of different nets
54 ## associated with it, in the variable zoneset_NETS, and we must run it
55 ## through `zone' once for each net. The zoneset will make a number of
56 ## zones, listed in zoneset_ZONES.
59 ###--------------------------------------------------------------------------
60 ### The distorted.org.uk zones.
64 distorted_VIEWS = inside outside
65 distorted_outside_NETS = dmz
66 distorted_inside_NETS = any unsafe vpn upn
68 distorted_all_ZONES += distorted.org.uk
70 distorted_all_ZONES += 195.113.2.81.in-addr.arpa
71 distorted_all_ZONES += 128-143.238.187.81.in-addr.arpa
72 distorted_all_ZONES += 64-79.12.169.217.in-addr.arpa
73 distorted_all_ZONES += 2.9.c.0.0.b.8.0.1.0.0.2.ip6.arpa
74 distorted_all_ZONES += 9.d.1.0.8.a.b.0.1.0.0.2.ip6.arpa
76 distorted_all_ZONES += 199.29.172.in-addr.arpa
78 distorted_outside_NSDIFF = -sradius.dmz.distorted.org.uk
80 ###--------------------------------------------------------------------------
85 binswood_VIEWS = outside
86 binswood_all_ZONES += binswood.org.uk
87 binswood_all_ZONES += 27.165.10.in-addr.arpa
91 escorted_VIEWS = outside
92 escorted_all_ZONES += escorted.org.uk
97 odin_all_ZONES = odin.gg
99 ###--------------------------------------------------------------------------
100 ### Zone construction machinery.
103 V_ZONE = $(call v_tag,ZONE)$(ZONE)
106 .SECONDEXPANSION: #sorry
108 ## For each net/zoneset pair, we make a stamp file net/zoneset.stamp to
109 ## remember that we've made the corresponding zones.
110 ALL_ZONESTAMPS = $(foreach s,$(ZONESETS), \
111 $(patsubst %,%/$s.zonestamp,$($s_VIEWS)))
112 $(ALL_ZONESTAMPS) : %.zonestamp : $$(notdir $$*).lisp hosts.lisp
113 $(V_AT)mkdir -p $(dir $*)
114 $(V_ZONE) -d$(dir $*) -fview/$(call dir-nosl,$*)$(hack \
115 hack) $(addprefix -s, \
116 $($(notdir $*)_$(call dir-nosl,$*)_NETS)) $(ZONEOPTS) $<
118 all: $(ALL_ZONESTAMPS)
119 CLEANFILES += $(sort $(foreach s,$(ZONESETS), \
120 $(foreach v,$($s_VIEWS), \
121 $v/*.zonestamp $v/*.zone)))
122 REALCLEANFILES += $(sort $(foreach s,$(ZONESETS), \
123 $(foreach v,$($s_VIEWS), \
125 REALCLEANDIRS += $(sort $(foreach s,$(ZONESETS),$($s_VIEWS)))
127 ## Now explain that each generated zone file depends on the corresponding
128 ## zonestamp. This is where things start getting a little hairy.
129 $(foreach s,$(ZONESETS), \
130 $(foreach v,$($s_VIEWS), \
131 $(foreach z,$($s_all_ZONES) $($s_$v_ZONES), \
132 $(eval $v/$z.zone: $v/$s.zonestamp))))
134 ## Prepare a mapping from zone names back to their owning zonesets.
135 $(foreach s,$(ZONESETS), \
136 $(foreach z,$(sort $(foreach v,$($s_VIEWS), \
137 $($s_all_ZONES) $($s_$v_ZONES))), \
138 $(eval $z_ZONESET = $s)))
140 ## Now we have to check the individual zone files.
141 ALL_ZONECHECKS = $(foreach s,$(ZONESETS), \
142 $(foreach v,$($s_VIEWS), \
143 $(foreach z,$($s_all_ZONES) $($s_$v_ZONES), \
145 $(ALL_ZONECHECKS) : %.check : %.zone
147 { $(CHECKZONE) $(notdir $*) $^ || kill $$$$; } | \
148 { grep -Ev 'loaded serial|OK' || :; }
149 check: $(ALL_ZONECHECKS)
150 .PHONY: check $(ALL_ZONECHECKS)
152 ## If nsdiff(1) is available then we can show what changes we will make if
153 ## we install the new zone files.
154 ALL_ZONEDIFFS = $(foreach s,$(ZONESETS), \
155 $(foreach v,$($s_VIEWS), \
156 $(foreach z,$($s_all_ZONES) $($s_$v_ZONES), \
158 run-nsdiff = nsdiff -v "" $2 \
159 $($($(call notdir,$1)_ZONESET)_$(call dir-nosl,$1)_NSDIFF) \
160 $(call notdir,$1) $1.zone
161 $(ALL_ZONEDIFFS) : %.zonediff : %.zone
162 $(call v_tag,NSDIFF)$(call run-nsdiff,$*,-q); \
163 rc=$$?; case $$rc in 1) $(call run-nsdiff,$*); rc=$$? ;; esac; \
164 case $$rc in 0 | 1) : ;; *) exit $$rc ;; esac
165 diff: $(ALL_ZONEDIFFS)
167 ## Finally we have to install the zone files.
168 ALL_INSTALLS = $(foreach s,$(ZONESETS), \
169 $(foreach v,$($s_VIEWS), \
170 $(foreach z,$($s_all_ZONES) $($s_$v_ZONES), \
172 $(ALL_INSTALLS) : %.inst : %.check
173 $(call v_tag,INST)$(ZONEINST) \
174 $(call dir-nosl,$*) $(notdir $*) <$*.zone
175 install: $(ALL_INSTALLS)
176 .PHONY: install $(ALL_INSTALLS)
181 [ "$(CLEANDIRS)x" = x ] || rmdir $(CLEANDIRS) || :
183 rm -f $(REALCLEANFILES)
184 [ "$(REALCLEANDIRS)x" = x ] || rmdir $(REALCLEANDIRS) || :
185 .PHONY: clean realclean
187 ###----- That's all, folks --------------------------------------------------