Skip to content

Commit 7a26f2e

Browse files
committed
implement COMMIT at the end of iptables-save
1 parent 65029ea commit 7a26f2e

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

parser.go

+8
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ func (d Policy) String() string {
6464
return fmt.Sprintf("%s%s %s", prefix, d.Chain, d.Action)
6565
}
6666

67+
type Commit struct{}
68+
69+
func (c Commit) String() string {
70+
return "COMMIT"
71+
}
72+
6773
// Rule represents a rule in an iptables dump. Normally the start with -A.
6874
// The parser treats the -A flag like any other flag, thus does not require
6975
// the -A flag as the leading flag.
@@ -373,6 +379,8 @@ func (p *Parser) Parse() (l Line, err error) {
373379
return p.parseRule()
374380
case COLON:
375381
return p.parseDefault(p.s.scanLine())
382+
case COMMIT:
383+
return Commit{}, nil
376384
case EOF:
377385
return nil, io.EOF // ErrEOF
378386
case NEWLINE:

parser_test.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ func TestParser_ParseMore(t *testing.T) {
12241224
},
12251225
},
12261226
{
1227-
name: "Parse some rules from iptables -S",
1227+
name: "Parse some rules from iptables -S as well as iptables-save",
12281228
s: `-P INPUT ACCEPT
12291229
-P FORWARD DROP
12301230
-P OUTPUT ACCEPT
@@ -1233,7 +1233,8 @@ func TestParser_ParseMore(t *testing.T) {
12331233
-N DOCKER-ISOLATION-STAGE-2
12341234
-N DOCKER-USER
12351235
-A FORWARD -j DOCKER-USER
1236-
-A FORWARD -j DOCKER-ISOLATION-STAGE-1`,
1236+
-A FORWARD -j DOCKER-ISOLATION-STAGE-1
1237+
COMMIT`,
12371238
r: []interface{}{
12381239
Policy{
12391240
UserDefined: &_false,
@@ -1278,6 +1279,7 @@ func TestParser_ParseMore(t *testing.T) {
12781279
Name: "DOCKER-ISOLATION-STAGE-1",
12791280
},
12801281
},
1282+
Commit{},
12811283
},
12821284
},
12831285
} {

scanner.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ func (s *scanner) scan() (tok Token, lit string) {
2727
return s.scanWhitespace()
2828
case isLetter(ch) || isDigit(ch):
2929
s.unread()
30-
return s.scanIdent()
30+
tok, lit := s.scanIdent()
31+
if lit == "COMMIT" {
32+
return COMMIT, "COMMIT"
33+
}
34+
return tok, lit
3135
}
3236

3337
// Otherwise read the individual character.

token.go

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const (
1010

1111
// Literals
1212
IDENT // main
13+
COMMIT
1314

1415
// Misc characters
1516
COLON // :

0 commit comments

Comments
 (0)