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
|
Chris Hertel, Samba Team
November 1997
This is a quick overview of the lexical analysis, syntax, and semantics
of the smb.conf file.
Lexical Analysis:
Basically, the file is processed on a line by line basis. There are
four types of lines that are recognized by the lexical analyzer
(params.c):
Blank lines - Lines containing only whitespace.
Comment lines - Lines beginning with either a semi-colon or a
pound sign (';' or '#').
Section header lines - Lines beginning with an open square bracket
('[').
Parameter lines - Lines beginning with any other character.
(The default line type.)
The first two are handled exclusively by the lexical analyzer, which
ignores them. The latter two line types are scanned for
- Section names
- Parameter names
- Parameter values
These are the only tokens passed to the parameter loader
(loadparm.c). Parameter names and values are divided from one
another by an equal sign: '='.
Handling of Whitespace:
Whitespace is defined as all characters recognized by the isspace()
function (see ctype(3C)) except for the newline character ('\n')
The newline is excluded because it identifies the end of the line.
- The lexical analyzer scans past white space at the beginning of a
line.
- Section and parameter names may contain internal white space. All
whitespace within a name is compressed to a single space character.
- Internal whitespace within a parameter value is kept verbatim with
the exception of carriage return characters ('\r'), all of which
are removed.
- Leading and trailing whitespace is removed from names and values.
Handling of Line Continuation:
Long section header and parameter lines may be extended across
multiple lines by use of the backslash character ('\\'). Line
continuation is ignored for blank and comment lines.
If the last (non-whitespace) character within a section header or on
a parameter line is a backslash, then the next line will be
(logically) concatonated with the current line by the lexical
analyzer. For example:
param name = parameter value string \
with line continuation.
Would be read as
param name = parameter value string with line continuation.
Note that there are five spaces following the word 'string',
representing the one space between 'string' and '\\' in the top
line, plus the four preceeding the word 'with' in the second line.
(Yes, I'm counting the indentation.)
Line continuation characters are ignored on blank lines and at the end
of comments. They are *only* recognized within section and parameter
lines.
Line Continuation Quirks:
Note the following example:
param name = parameter value string \
\
with line continuation.
The middle line is *not* parsed as a blank line because it is first
concatonated with the top line. The result is
param name = parameter value string with line continuation.
The same is true for comment lines.
param name = parameter value string \
; comment \
with a comment.
This becomes:
param name = parameter value string ; comment with a comment.
On a section header line, the closing bracket (']') is considered a
terminating character, and the rest of the line is ignored. The lines
[ section name ] garbage \
param name = value
are read as
[section name]
param name = value
Syntax:
The syntax of the smb.conf file is as follows:
<file> :== { <section> } EOF
<section> :== <section header> { <parameter line> }
<section header> :== '[' NAME ']'
<parameter line> :== NAME '=' VALUE NL
Basically, this means that
- a file is made up of zero or more sections, and is terminated by
an EOF (we knew that).
- A section is made up of a section header followed by zero or more
parameter lines.
- A section header is identified by an opening bracket and
terminated by the closing bracket. The enclosed NAME identifies
the section.
- A parameter line is divided into a NAME and a VALUE. The *first*
equal sign on the line separates the NAME from the VALUE. The
VALUE is terminated by a newline character (NL = '\n').
About params.c:
The parsing of the config file is a bit unusual if you are used to
lex, yacc, bison, etc. Both lexical analysis (scanning) and parsing
are performed by params.c. Values are loaded via callbacks to
loadparm.c.
|