aboutsummaryrefslogtreecommitdiffstats
path: root/awall-cli
blob: 154fbdd5c133fd1751a1ea261366fd725d69eb79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
#!/usr/bin/lua

--[[
Alpine Wall
Copyright (C) 2012-2013 Kaarle Ritvanen
See LICENSE file for license details
]]--

require 'alt_getopt'
require 'lfs'
require 'signal'
require 'stringy'

function help()
   io.stderr:write([[
Alpine Wall
Copyright (C) 2012-2013 Kaarle Ritvanen
This is free software with ABSOLUTELY NO WARRANTY,
available under the terms of the GNU General Public License, version 2

Usage:

Translate policy files to firewall configuration files:
    awall translate [-o|--output <dir>] [-V|--verify]

    The --verify option makes awall verify the configuration using the
    test mode of iptables-restore before overwriting the old files.

    Specifying the output directory allows testing awall policies
    without overwriting the current iptables and ipset configuration
    files. By default, awall generates the configuration to
    /etc/iptables and /etc/ipset.d, which are read by the init
    scripts.

Run-time activation of new firewall configuration:
    awall activate [-f|--force]

    This command genereates firewall configuration from the policy
    files and enables it. If the user confirms the new configuration
    by hitting RETURN within 10 seconds or the --force option is used,
    the configuration is saved to the files. Otherwise, the old
    configuration is restored.

Flush firewall configuration:
    awall flush

    This command deletes all firewall rules and configures it to drop
    all packets.

Enable/disable optional policies:
    awall {enable|disable} <policy>...

List optional policies:
    awall list [-a|--all]

    The 'enabled' status means that the policy has been enabled by the
    user. The 'disabled' status means that the policy is not in
    use. The 'required' status means that the policy has not been
    enabled by the user but is in use because it is required by
    another policy which is in use.

    Normally, the command lists only optional policies. Specifying
    --all makes it list all policies and more information about them.

Dump variable and zone definitions:
    awall dump [level]

    Verbosity level is an integer in range 0-5 and defaults to 0.

]])
   os.exit(1)
end

if not arg[1] then help() end

if not stringy.startswith(arg[1], '-') then
   mode = arg[1]
   table.remove(arg, 1)
end

opts, opind = alt_getopt.get_opts(
   arg,
   'afo:V',
   {all='a', force='f', ['output-dir']='o', verify='V'}
)
for switch, value in pairs(opts) do
   if switch == 'a' then all = true
   elseif switch == 'f' then force = true
   elseif switch == 'c' then verbose = true
   elseif switch == 'V' then verify = true
   elseif switch == 'o' then outputdir = value
   else assert(false) end
end

if not mode then
   mode = arg[opind]
   opind = opind + 1
end


require 'awall.util'
util = awall.util

if not util.contains({'translate', 'activate', 'fallback', 'flush',
		      'enable', 'disable', 'list', 'dump'},
		     mode) then help() end

pol_paths = {}
for i, cls in ipairs{'mandatory', 'optional', 'private'} do
   path = os.getenv('AWALL_PATH_'..string.upper(cls))
   if path then pol_paths[cls] = util.split(path, ':') end
end

if stringy.endswith(arg[0], '/awall-cli') then
   basedir = string.sub(arg[0], 1, -11)
   if not pol_paths.mandatory then
      pol_paths.mandatory = {'/etc/awall'}
   end
   table.insert(pol_paths.mandatory, basedir..'/json')
end

local uerror = require('awall.uerror')

if not uerror.call(
   function()
      
      require 'awall'

      policyset = awall.PolicySet.new(pol_paths)

      if mode == 'list' then
	 imported = policyset:load().policies
	 data = {}
	 
	 for i, name in util.sortedkeys(policyset.policies) do
	    policy = policyset.policies[name]

	    if all or policy.type == 'optional' then
	       if policy.enabled then status = 'enabled'
	       elseif util.contains(imported, name) then status = 'required'
	       else status = 'disabled' end

	       polinfo = {name, status, policy:load().description}

	       if all then
		  table.insert(polinfo, 2, policy.type)
		  table.insert(polinfo, 4, policy.path)
	       end

	       table.insert(data, polinfo)
	    end
	 end
	 
	 util.printtabular(data)
	 os.exit()
      end

      if util.contains({'disable', 'enable'}, mode) then
	 if opind > #arg then help() end
	 repeat
	    name = arg[opind]
	    policy = policyset.policies[name]
	    if not policy then uerror.raise('No such policy: '..name) end
	    policy[mode](policy)
	    opind = opind + 1
	 until opind > #arg
	 os.exit()
      end


      input = policyset:load()

      if mode == 'dump' then level = 0 + (arg[opind] or 0) end

      if mode ~= 'dump' or level > 3 then
	 awall.loadmodules(basedir)
	 config = awall.Config.new(input)
      end


      require 'awall.iptables'

      if mode == 'dump' then
	 require 'json'
	 expinput = input:expand()

	 function capitalize(cls)
	    return string.upper(string.sub(cls, 1, 1))..string.sub(cls, 2, -1)
	 end

	 for cls, objs in pairs(input.data) do
	    if level > 2 or (level == 2 and cls ~= 'service') or util.contains(
	       {'variable', 'zone'},
	       cls
	    ) then
	       if level == 0 then print(capitalize(cls)..'s:') end
	 
	       items = {}
	       for k, v in pairs(objs) do
		  exp = expinput[cls][k]
		  expj = json.encode(exp)
		  src = input.source[cls][k]

		  if level == 0 then table.insert(items, {k, expj, src})

		  else
		     data = {
			{capitalize(cls)..' '..k, json.encode(v)},
			{
			   '('..src..')',
			   util.compare(exp, v) and '' or '-> '..expj
			}
		     }

		     if level > 3 then
			obj = config.objects[cls][k]
			if type(obj) == 'table' and obj.info then
			   util.extend(data, obj:info())
			end
		     end
	       
		     table.insert(items, {k, data})
		  end
	       end
	       table.sort(items, function(a, b) return a[1] < b[1] end)

	       if level == 0 then util.printtabular(items)
	       else
		  util.printtabulars(
		     util.map(items, function(x) return x[2] end)
		  )
		  print()
	       end
	    end
	 end

	 if level > 4 then config:print() end

      elseif mode == 'translate' then
	 if verify then config:test() end
	 config:dump(outputdir)
   
      elseif mode == 'activate' then

	 awall.iptables.backup()

	 if not force then
	    signal.signal(
	       'SIGCHLD',
	       function()
		  if pid and lpc.wait(pid, 1) then os.exit(2) end
	       end
	    )
	    for i, sig in ipairs({'INT', 'TERM'}) do
	       signal.signal(
		  'SIG'..sig,
		  function()
		     interrupted = true
		     io.stdin:close()
		  end
	       )
	    end

	    require 'lpc'
	    pid, stdio, stdout = lpc.run(arg[0], 'fallback')
	    stdio:close()
	    stdout:close()
	 end

	 function kill()
	    signal.signal('SIGCHLD', 'default')
	    signal.kill(pid, 'SIGTERM')
	    lpc.wait(pid)
	 end

	 function revert()
	    awall.iptables.revert()
	    os.exit(1)
	 end

	 if uerror.call(config.activate, config) then

	    if not force then
	       io.stderr:write('New firewall configuration activated\n')
	       io.stderr:write('Press RETURN to commit changes permanently: ')
	       interrupted = not io.read()

	       kill()

	       if interrupted then
		  io.stderr:write(
		     '\nActivation canceled, reverting to the old configuration\n'
		  )
		  revert()
	       end
	    end

	    config:dump()

	 else
	    if not force then kill() end
	    revert()
	 end


      elseif mode == 'fallback' then
   
	 for i, sig in ipairs({'HUP', 'PIPE'}) do
	    signal.signal('SIG'..sig, function() end)
	 end

	 require 'lsleep'
	 lsleep.sleep(10)

	 io.stderr:write('\nTimeout, reverting to the old configuration\n')
	 awall.iptables.revert()

      elseif mode == 'flush' then awall.iptables.flush()

      else assert(false) end

   end
) then os.exit(1) end