summaryrefslogtreecommitdiffstats
path: root/usr.bin/iscsictl
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2014-02-10 15:04:59 +0000
committertrasz <trasz@FreeBSD.org>2014-02-10 15:04:59 +0000
commit681aea1f2d6107ed7a97b15bc407324731fb18df (patch)
treea7822f1ae088c219ed0843a29f5bb00245a6e7f4 /usr.bin/iscsictl
parent5ac128b24d3ab1af941c39482f52434760571403 (diff)
downloadFreeBSD-src-681aea1f2d6107ed7a97b15bc407324731fb18df.zip
FreeBSD-src-681aea1f2d6107ed7a97b15bc407324731fb18df.tar.gz
Make iscsictl(8) properly handle (optional) semicolons in iscsi.conf,
instead of ignoring them and echoing them to stdout. Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'usr.bin/iscsictl')
-rw-r--r--usr.bin/iscsictl/parse.y4
-rw-r--r--usr.bin/iscsictl/token.l2
2 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/iscsictl/parse.y b/usr.bin/iscsictl/parse.y
index b43fb8c..e6343f8 100644
--- a/usr.bin/iscsictl/parse.y
+++ b/usr.bin/iscsictl/parse.y
@@ -57,7 +57,7 @@ extern void yyrestart(FILE *);
%token AUTH_METHOD HEADER_DIGEST DATA_DIGEST TARGET_NAME TARGET_ADDRESS
%token INITIATOR_NAME INITIATOR_ADDRESS INITIATOR_ALIAS USER SECRET
-%token MUTUAL_USER MUTUAL_SECRET SESSION_TYPE PROTOCOL IGNORED
+%token MUTUAL_USER MUTUAL_SECRET SEMICOLON SESSION_TYPE PROTOCOL IGNORED
%token EQUALS OPENING_BRACKET CLOSING_BRACKET
%union
@@ -86,6 +86,8 @@ target: STR OPENING_BRACKET target_entries CLOSING_BRACKET
target_entries:
|
target_entries target_entry
+ |
+ target_entries target_entry SEMICOLON
;
target_entry:
diff --git a/usr.bin/iscsictl/token.l b/usr.bin/iscsictl/token.l
index f6c03ae..499ddb8 100644
--- a/usr.bin/iscsictl/token.l
+++ b/usr.bin/iscsictl/token.l
@@ -87,7 +87,9 @@ chapDigest { return IGNORED; }
\{ { return OPENING_BRACKET; }
\} { return CLOSING_BRACKET; }
= { return EQUALS; }
+; { return SEMICOLON; }
#.*$ /* ignore comments */;
\n { lineno++; }
[ \t]+ /* ignore whitespace */;
+. { yylval.str = strdup(yytext); return STR; }
%%
OpenPOWER on IntegriCloud