smb.conf.5: add clarification how configuration changes reflected by Samba
[samba.git] / docs-xml / manpages / smb.conf.5.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE refentry PUBLIC "-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" "http://www.samba.org/samba/DTD/samba-doc">
3 <refentry id="smb.conf.5" xmlns:xi="http://www.w3.org/2003/XInclude"
4                          xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
5         
6 <refmeta>
7         <refentrytitle>smb.conf</refentrytitle>
8         <manvolnum>5</manvolnum>
9         <refmiscinfo class="source">Samba</refmiscinfo>
10         <refmiscinfo class="manual">File Formats and Conventions</refmiscinfo>
11         <refmiscinfo class="version">&doc.version;</refmiscinfo>
12 </refmeta>
13
14
15 <refnamediv>
16         <refname>smb.conf</refname>
17         <refpurpose>The configuration file for the Samba suite</refpurpose>
18 </refnamediv>
19
20 <refsect1>
21         <title>SYNOPSIS</title>
22
23         <para>
24         The <filename moreinfo="none">smb.conf</filename> file is a configuration  file for the Samba suite. <filename
25         moreinfo="none">smb.conf</filename> contains  runtime configuration information for the Samba programs. The
26         complete description of the file format and possible parameters held within are here for reference purposes.
27         </para>
28 </refsect1>
29
30 <refsect1>
31         <title>HOW CONFIGURATION CHANGES ARE APPLIED</title>
32
33         <para>
34         The Samba suite includes a number of different programs. Some of them operate in a client mode, others are
35         server daemons that provide various services to its clients. The <filename moreinfo="none">smb.conf
36         </filename> file is processed in the following way:
37         </para>
38
39         <itemizedlist>
40                 <listitem><para>
41                 The Samba suite's client applications read their configuration only once. Any changes made after start aren't
42                 reflected in the context of already running client code.
43                 </para></listitem>
44
45                 <listitem><para>
46                 The Samba suite's server daemons reload their configuration when requested. However, already active connections
47                 do not change their configuration. More detailed information can be found in
48                 <citerefentry><refentrytitle>smbd</refentrytitle><manvolnum>8</manvolnum></citerefentry> and <citerefentry>
49                 <refentrytitle>winbindd</refentrytitle><manvolnum>8</manvolnum></citerefentry> manual pages.
50                 </para></listitem>
51         </itemizedlist>
52
53         <para>
54         To request Samba server daemons to refresh their configuration, please use
55         <citerefentry><refentrytitle>smbcontrol</refentrytitle><manvolnum>1</manvolnum></citerefentry> utility.
56         </para>
57
58 </refsect1>
59
60 <refsect1 id="FILEFORMATSECT">
61         <title>FILE FORMAT</title>
62
63         <para>
64         The file consists of sections and parameters. A section begins with the name of the section in square brackets
65         and continues until the next section begins. Sections contain parameters of the form:
66 <programlisting>
67 <replaceable>name</replaceable> = <replaceable>value </replaceable>
68 </programlisting>
69         </para>
70
71         <para>
72         The file is line-based - that is, each newline-terminated line represents either a comment, a section name or
73         a parameter.
74         </para>
75
76         <para>Section and parameter names are not case sensitive.</para>
77
78         <para>
79         Only the first equals sign in a parameter is significant.  Whitespace before or after the first equals sign is
80         discarded.  Leading, trailing and internal whitespace in section and parameter names is irrelevant. Leading
81         and trailing whitespace in a parameter value is discarded. Internal whitespace within a parameter value is
82         retained verbatim.
83         </para>
84
85         <para>
86         Any line beginning with a semicolon (<quote>;</quote>) or a hash (<quote>#</quote>) 
87         character is ignored, as are lines containing only whitespace.
88         </para>
89
90         <para>
91         Any line ending in a <quote><literal>\</literal></quote> is continued on the next line in the customary UNIX fashion.
92         </para>
93
94         <para>
95         The values following the equals sign in parameters are all either a string (no quotes needed) or a boolean,
96         which may be given as yes/no, 1/0 or true/false. Case is not significant in boolean values, but is preserved
97         in string values. Some items such as create masks are numeric.
98         </para>
99
100 </refsect1>
101
102 <refsect1>
103         <title>SECTION DESCRIPTIONS</title>
104
105         <para>
106         Each section in the configuration file (except for the [global] section) describes a shared resource (known as
107         a <quote>share</quote>). The section name is the name of the shared resource and the parameters within the
108         section define the shares attributes.
109         </para>
110
111         <para>
112         There are three special sections, [global], [homes] and [printers], which are described under
113          <emphasis>special sections</emphasis>. The following notes apply to ordinary section descriptions.
114         </para>
115
116         <para>
117         A share consists of a directory to which access is being given plus a description of the access rights
118         which are granted to the user of the service. Some housekeeping options are also specifiable.
119         </para>
120         
121         <para>
122         Sections are either file share services (used by the client as an extension of their native file systems)
123         or printable services (used by the client to access print services on the host running the server).
124         </para>
125         
126         <para>
127         Sections may be designated <emphasis>guest</emphasis> services, in which case no password is required to
128         access them. A specified UNIX <emphasis>guest account</emphasis> is used to define access privileges in this
129         case.
130         </para>
131
132         <para>
133         Sections other than guest services will require a password to access them. The client provides the
134         username. As older clients only provide passwords and not usernames, you may specify a list of usernames to
135         check against the password using the <literal>user =</literal> option in the share definition. For modern clients
136         such as Windows 95/98/ME/NT/2000, this should not be necessary.
137         </para> 
138
139         <para>
140         The access rights granted by the server are masked by the access rights granted to the specified or guest
141         UNIX user by the host system. The server does not grant more access than the host system grants.
142         </para>
143         
144         <para>
145         The following sample section defines a file space share.  The user has write access to the path <filename
146         moreinfo="none">/home/bar</filename>.  The share is accessed via the share name <literal>foo</literal>:
147 <programlisting>
148         <smbconfsection name="[foo]"/>
149         <smbconfoption name="path">/home/bar</smbconfoption>
150         <smbconfoption name="read only">no</smbconfoption>
151 </programlisting>
152         </para>
153
154         <para>
155         The following sample section defines a printable share.  The share is read-only, but printable. That is,
156         the only write access permitted is via calls to open, write to and close a spool file. The <emphasis>guest
157         ok</emphasis> parameter means access will be permitted as the default guest user (specified elsewhere):
158 <programlisting>
159         <smbconfsection name="[aprinter]"/>
160         <smbconfoption name="path">/usr/spool/public</smbconfoption>
161         <smbconfoption name="read only">yes</smbconfoption>
162         <smbconfoption name="printable">yes</smbconfoption>
163         <smbconfoption name="guest ok">yes</smbconfoption>
164 </programlisting>
165         </para>
166
167 </refsect1>
168
169 <refsect1>
170         <title>SPECIAL SECTIONS</title>
171         
172         <refsect2>
173                 <title>The [global] section</title>
174                 
175                 <para>
176                 Parameters in this section apply to the server as a whole, or are defaults for sections that do not
177                 specifically define certain items. See the notes under PARAMETERS for more information.
178                 </para>
179         </refsect2>
180         
181         <refsect2 id="HOMESECT">
182                 <title>The [homes] section</title>
183                 
184                 <para>
185                 If a section called [homes] is included in the configuration file, services connecting clients
186                 to their home directories can be created on the fly by the server.
187                 </para>
188
189                 <para>
190                 When the connection request is made, the existing sections are scanned. If a match is found, it is
191                 used. If no match is found, the requested section name is treated as a username and looked up in the local
192                 password file. If the name exists and the correct password has been given, a share is created by cloning the
193                 [homes] section.
194                 </para>
195                 
196                 <para>
197                 Some modifications are then made to the newly created share:
198                 </para>
199                 
200                 <itemizedlist>
201                         <listitem><para>
202                         The share name is changed from homes to the located username.
203                         </para></listitem>
204
205                         <listitem><para>
206                         If no path was given, the path is set to the user's home directory.
207                         </para></listitem>
208                 </itemizedlist>
209
210                 <para>
211                 If you decide to use a <emphasis>path =</emphasis> line in your [homes] section, it may be useful 
212                 to use the %S macro. For example:
213 <programlisting>
214 <userinput moreinfo="none">path = /data/pchome/%S</userinput>
215 </programlisting>
216                 is useful if you have different home directories for your PCs than for UNIX access.
217                 </para>
218
219                 <para>
220                 This is a fast and simple way to give a large number of clients access to their home directories with a minimum 
221                 of fuss.
222                 </para>
223
224                 <para>
225                 A similar process occurs if the requested section name is <quote>homes</quote>, except that the share
226                 name is not changed to that of the requesting user. This method of using the [homes] section works well if
227                 different users share a client PC.
228                 </para>
229                 
230                 <para>
231                 The [homes] section can specify all the parameters a normal service section can specify, though some make more sense 
232                 than others. The following is a typical and suitable [homes] section:
233 <programlisting>
234 <smbconfsection name="[homes]"/>
235 <smbconfoption name="read only">no</smbconfoption>
236 </programlisting>
237                 </para>
238         
239                 <para>
240                 An important point is that if guest access is specified in the [homes] section, all home directories will be 
241                 visible to all clients <emphasis>without a password</emphasis>.  In the very unlikely event that this is actually
242                 desirable, it is wise to also specify <emphasis>read only access</emphasis>.
243                 </para>
244
245                 <para>
246                 The <emphasis>browseable</emphasis> flag for auto home directories will be inherited from the global browseable 
247                 flag, not the [homes] browseable flag. This is useful as it means setting <emphasis>browseable = no</emphasis> in
248                 the [homes] section will hide the [homes] share but make any auto home directories visible.
249                 </para>
250         </refsect2>
251
252         <refsect2 id="PRINTERSSECT">
253                 <title>The [printers] section</title>
254                 
255                 <para>
256                 This section works like [homes], but for printers.
257                 </para>
258
259                 <para>
260                 If a [printers] section occurs in the configuration file, users are able to connect to any printer 
261                 specified in the local host's printcap file.
262                 </para>
263
264                 <para>
265                 When a connection request is made, the existing sections are scanned. If a match is found, it is used.
266                 If no match is found, but a [homes] section exists, it is used as described above. Otherwise, the requested
267                 section name is treated as a printer name and the appropriate printcap file is scanned to see if the requested
268                 section name is a valid printer share name. If a match is found, a new printer share is created by cloning the
269                 [printers] section.
270                 </para>
271
272                 <para>
273                 A few modifications are then made to the newly created share:
274                 </para>
275
276                 <itemizedlist>
277                         <listitem><para>The share name is set to the located printer name</para></listitem>
278
279                         <listitem><para>If no printer name was given, the printer name is set to the located printer name</para></listitem>
280
281                         <listitem><para>If the share does not permit guest access and no username was given, the username is set
282                                 to the located printer name.</para></listitem>
283                 </itemizedlist>
284
285                 <para>
286                 The [printers] service MUST be printable - if you specify otherwise, the server will refuse 
287                 to load the configuration file.
288                 </para>
289                 
290                 <para>
291                 Typically the path specified is that of a world-writeable spool directory with the sticky bit set on 
292                 it. A typical [printers] entry looks like this:
293 <programlisting>
294 <smbconfsection name="[printers]"/>
295 <smbconfoption name="path">/usr/spool/public</smbconfoption>
296 <smbconfoption name="guest ok">yes</smbconfoption>
297 <smbconfoption name="printable">yes</smbconfoption>
298 </programlisting>
299                 </para>
300
301                 <para>
302                 All aliases given for a printer in the printcap file are legitimate printer names as far as the server is concerned. 
303                 If your printing subsystem doesn't work like that, you will have to set up a pseudo-printcap. This is a file
304                 consisting of one or more lines like this:
305 <programlisting>
306 alias|alias|alias|alias...    
307 </programlisting>
308                 </para>
309
310                 <para>
311                 Each alias should be an acceptable printer name for your printing subsystem. In the [global] section,
312                 specify the new file as your printcap.  The server will only recognize names found in your pseudo-printcap,
313                 which of course can contain whatever aliases you like. The same technique could be used simply to limit access
314                 to a subset of your local printers.
315                 </para>
316
317                 <para>
318                 An alias, by the way, is defined as any component of the first entry of a printcap record. Records are separated by newlines,
319                 components (if there are more than one) are separated by vertical bar symbols (<literal>|</literal>).
320                 </para>
321                 
322                 <note><para>
323                 On SYSV systems which use lpstat to determine what printers are defined on the system you may be able to use
324                 <literal>printcap name = lpstat</literal> to automatically obtain a list of printers. See the
325                 <literal>printcap name</literal> option for more details.
326                 </para></note>
327         </refsect2>
328 </refsect1>
329
330 <refsect1>
331         <title>USERSHARES</title>
332
333         <para>Starting with Samba version 3.0.23 the capability for non-root users to add, modify, and delete
334         their own share definitions has been added. This capability is called <emphasis>usershares</emphasis> and
335         is controlled by a set of parameters in the [global] section of the smb.conf.
336         The relevant parameters are :
337         </para>
338
339         <variablelist>
340                 <varlistentry>
341                 <term>usershare allow guests</term>
342                 <listitem><para>Controls if usershares can permit guest access.</para></listitem>
343                 </varlistentry>
344
345                 <varlistentry>
346                 <term>usershare max shares</term>
347                 <listitem><para>Maximum number of user defined shares allowed.</para></listitem>
348                 </varlistentry>
349
350                 <varlistentry>
351                 <term>usershare owner only</term>
352                 <listitem><para>If set only directories owned by the sharing user can be shared.</para></listitem>
353                 </varlistentry>
354
355                 <varlistentry>
356                 <term>usershare path</term>
357                 <listitem><para>Points to the directory containing the user defined share definitions.
358                 The filesystem permissions on this directory control who can create user defined shares.</para></listitem>
359                 </varlistentry>
360
361                 <varlistentry>
362                 <term>usershare prefix allow list</term>
363                 <listitem><para>Comma-separated list of absolute pathnames restricting what directories
364                 can be shared. Only directories below the pathnames in this list are permitted.</para></listitem>
365                 </varlistentry>
366
367                 <varlistentry>
368                 <term>usershare prefix deny list</term>
369                 <listitem><para>Comma-separated list of absolute pathnames restricting what directories
370                 can be shared. Directories below the pathnames in this list are prohibited.</para></listitem>
371                 </varlistentry>
372
373                 <varlistentry>
374                 <term>usershare template share</term>
375                 <listitem><para>Names a pre-existing share used as a template for creating new usershares.
376                 All other share parameters not specified in the user defined share definition
377                 are copied from this named share.</para></listitem>
378                 </varlistentry>
379         </variablelist>
380
381         <para>To allow members of the UNIX group <literal>foo</literal> to create user defined
382         shares, create the directory to contain the share definitions as follows:
383         </para>
384         <para>Become root:</para>
385 <programlisting>
386 mkdir /usr/local/samba/lib/usershares
387 chgrp foo /usr/local/samba/lib/usershares
388 chmod 1770 /usr/local/samba/lib/usershares
389 </programlisting>
390 <para>Then add the parameters 
391
392 <programlisting>
393         <smbconfoption name="usershare path">/usr/local/samba/lib/usershares</smbconfoption>
394         <smbconfoption name="usershare max shares">10</smbconfoption> # (or the desired number of shares)
395 </programlisting> 
396
397         to the global
398         section of your <filename>smb.conf</filename>. Members of the group foo may then manipulate the user defined shares
399         using the following commands.</para>
400
401         <variablelist>
402                 <varlistentry>
403                 <term>net usershare add sharename path [comment] [acl] [guest_ok=[y|n]]</term>
404                 <listitem><para>To create or modify (overwrite) a user defined share.</para></listitem>
405                 </varlistentry>
406
407                 <varlistentry>
408                 <term>net usershare delete sharename</term>
409                 <listitem><para>To delete a user defined share.</para></listitem>
410                 </varlistentry>
411
412                 <varlistentry>
413                 <term>net usershare list wildcard-sharename</term>
414                 <listitem><para>To list user defined shares.</para></listitem>
415                 </varlistentry>
416
417                 <varlistentry>
418                 <term>net usershare info wildcard-sharename</term>
419                 <listitem><para>To print information about user defined shares.</para></listitem>
420                 </varlistentry>
421         </variablelist>
422 </refsect1>
423         
424 <refsect1>
425         <title>PARAMETERS</title>
426
427         <para>Parameters define the specific attributes of sections.</para>
428
429         <para>
430         Some parameters are specific to the [global] section (e.g., <emphasis>security</emphasis>).  Some parameters
431         are usable in all sections (e.g., <emphasis>create mask</emphasis>). All others are permissible only in normal
432         sections. For the purposes of the following descriptions the [homes] and [printers] sections will be
433         considered normal.  The letter <emphasis>G</emphasis> in parentheses indicates that a parameter is specific to
434         the [global] section. The letter <emphasis>S</emphasis> indicates that a parameter can be specified in a
435         service specific section. All <emphasis>S</emphasis> parameters can also be specified in the [global] section
436         - in which case they will define the default behavior for all services.
437         </para>
438
439         <para>
440         Parameters are arranged here in alphabetical order - this may not create best bedfellows, but at least you can
441         find them! Where there are synonyms, the preferred synonym is described, others refer to the preferred
442         synonym.
443         </para>
444 </refsect1>
445
446 <refsect1>
447         <title>VARIABLE SUBSTITUTIONS</title>
448
449         <para>
450         Many of the strings that are settable in the config file can take substitutions. For example the option
451         <quote>path = /tmp/%u</quote> is interpreted as <quote>path = /tmp/john</quote> if the user connected with the
452         username john.
453         </para>
454
455         <para>
456         These substitutions are mostly noted in the descriptions below, but there are some general substitutions
457         which apply whenever they might be relevant. These are:
458         </para>
459
460         <variablelist>
461                 <varlistentry>
462                 <term>%U</term>
463                 <listitem><para>session username (the username that the client wanted, not
464                         necessarily the same as the one they got).</para></listitem>
465                 </varlistentry>
466                 
467                 <varlistentry>
468                 <term>%G</term>
469                 <listitem><para>primary group name of %U.</para></listitem>
470                 </varlistentry>
471
472                 <varlistentry>
473                 <term>%h</term>
474                 <listitem><para>the Internet hostname that Samba is running on.</para></listitem>
475                 </varlistentry>
476
477                 <varlistentry>
478                 <term>%m</term>
479                 <listitem><para>the NetBIOS name of the client machine (very useful).</para>
480
481                         <para>This parameter is not available when Samba listens on port 445, as clients no longer
482                         send this information. If you use this macro in an include statement on a domain that has
483                         a Samba domain controller be sure to set in the [global] section <parameter>smb ports =
484                         139</parameter>. This will cause Samba to not listen on port 445 and will permit include
485                         functionality to function as it did with Samba 2.x.
486                         </para></listitem>
487
488                 </varlistentry>
489                 
490                 <varlistentry>
491                 <term>%L</term>
492                 <listitem><para>the NetBIOS name of the server. This allows you to change your config based on what
493                         the client calls you. Your server can have a <quote>dual personality</quote>.
494                 </para></listitem>
495                 </varlistentry>
496                 
497                 <varlistentry>
498                 <term>%M</term>
499                 <listitem><para>the Internet name of the client machine.
500                 </para></listitem>
501                 </varlistentry>
502                 
503                 <varlistentry>
504                 <term>%R</term>
505                 <listitem><para>the selected protocol level after protocol negotiation. It can be one of
506                         CORE, COREPLUS, LANMAN1, LANMAN2, NT1,
507                         SMB2_02, SMB2_10, SMB2_22, SMB2_24,
508                         SMB3_00, SMB3_02, SMB3_10, SMB3_11
509                         or SMB2_FF.</para></listitem>
510                 </varlistentry>
511
512                 <varlistentry>
513                 <term>%d</term>
514                 <listitem><para>the process id of the current server
515                         process.</para></listitem>
516                 </varlistentry>
517                 
518                 <varlistentry>
519                 <term>%a</term>
520                 <listitem><para>
521                     The architecture of the remote
522                     machine.  It currently recognizes Samba (<constant>Samba</constant>), 
523                     the Linux CIFS file system (<constant>CIFSFS</constant>), OS/2, (<constant>OS2</constant>),
524                     Mac OS X (<constant>OSX</constant>), Windows for Workgroups (<constant>WfWg</constant>), Windows 9x/ME 
525                     (<constant>Win95</constant>), Windows NT (<constant>WinNT</constant>),
526                     Windows 2000 (<constant>Win2K</constant>),
527                     Windows XP (<constant>WinXP</constant>),
528                     Windows XP 64-bit(<constant>WinXP64</constant>),
529                     Windows 2003 including
530                     2003R2 (<constant>Win2K3</constant>), and Windows
531                     Vista (<constant>Vista</constant>).  Anything else will be known as 
532                     <constant>UNKNOWN</constant>.</para> 
533                 </listitem>
534                 </varlistentry>
535                 
536                 <varlistentry>
537                 <term>%I</term>
538                 <listitem><para>the IP address of the client machine.</para>
539                 <para>Before 4.0.0 it could contain IPv4 mapped IPv6 addresses,
540                         now it only contains IPv4 or IPv6 addresses.</para>
541                 </listitem>
542                 </varlistentry>
543
544                 <varlistentry>
545                 <term>%J</term>
546                 <listitem><para>the IP address of the client machine,
547                         colons/dots replaced by underscores.</para>
548                 </listitem>
549                 </varlistentry>
550
551                 <varlistentry>
552                 <term>%i</term>
553                 <listitem><para>the local IP address to which a client connected.</para>
554                 <para>Before 4.0.0 it could contain IPv4 mapped IPv6 addresses,
555                         now it only contains IPv4 or IPv6 addresses.</para>
556                 </listitem>
557                 </varlistentry>
558
559                 <varlistentry>
560                 <term>%j</term>
561                 <listitem><para>the local IP address to which a client connected,
562                         colons/dots replaced by underscores.</para>
563                 </listitem>
564                 </varlistentry>
565
566                 <varlistentry>
567                 <term>%T</term>
568                 <listitem><para>the current date and time.</para></listitem>
569                 </varlistentry>
570
571                 <varlistentry>
572                 <term>%t</term>
573                 <listitem><para>the current date and time in a minimal format without colons (YYYYYmmdd_HHMMSS).</para></listitem>
574                 </varlistentry>
575
576                 <varlistentry>
577                 <term>%D</term>
578                 <listitem><para>name of the domain or workgroup of the current user.</para></listitem>
579                 </varlistentry>
580                 
581                 <varlistentry>
582                 <term>%w</term>
583                 <listitem><para>the winbind separator.</para></listitem>
584                 </varlistentry>
585                 
586                 <varlistentry>
587                 <term>%$(<replaceable>envvar</replaceable>)</term>
588                 <listitem><para>the value of the environment variable
589                 <replaceable>envar</replaceable>.</para></listitem>
590                 </varlistentry>
591         </variablelist>
592
593         <para>
594         The following substitutes apply only to some configuration options (only those that are
595         used when a connection has been established):
596         </para>
597
598         <variablelist>
599                 <varlistentry>
600                 <term>%S</term>
601                 <listitem><para>the name of the current service, if any.</para>
602                 </listitem>
603                 </varlistentry>
604         
605                 <varlistentry>
606                 <term>%P</term>
607                 <listitem><para>the root directory of the current service, if any.</para></listitem>
608                 </varlistentry>
609         
610                 <varlistentry>
611                 <term>%u</term>
612                 <listitem><para>username of the current service, if any.</para>
613                 </listitem>
614                 </varlistentry>
615         
616                 <varlistentry>
617                 <term>%g</term>
618                 <listitem><para>primary group name of %u.</para></listitem>
619                 </varlistentry>
620         
621                 <varlistentry>
622                 <term>%H</term>
623                 <listitem><para>the home directory of the user given by %u.</para></listitem>
624                 </varlistentry>
625
626                 <varlistentry>
627                 <term>%N</term>
628                 <listitem><para>
629                         the name of your NIS home directory server.  This is obtained from your NIS auto.map entry. 
630                         If you have not compiled Samba with the <emphasis>--with-automount</emphasis> option, this
631                         value will be the same as %L.</para></listitem>
632                 </varlistentry>
633         
634                 <varlistentry>
635                 <term>%p</term>
636                 <listitem><para>
637                         the path of the service's home directory, obtained from your NIS auto.map entry. The NIS
638                         auto.map entry is split up as <literal>%N:%p</literal>.</para></listitem>
639                 </varlistentry>
640         </variablelist>
641         
642         <para>
643         There are some quite creative things that can be done with these substitutions and other
644         <filename moreinfo="none">smb.conf</filename> options.
645         </para>
646 </refsect1>
647
648 <refsect1 id="NAMEMANGLINGSECT">
649         <title>NAME MANGLING</title>
650         
651         <para>
652         Samba supports <literal>name mangling</literal> so that DOS and Windows clients can use files that don't
653         conform to the 8.3 format. It can also be set to adjust the case of 8.3 format filenames.
654         </para>
655
656         <para>
657         There are several options that control the way mangling is performed, and they are grouped here rather
658         than listed separately. For the defaults look at the output of the testparm program.
659         </para>
660
661         <para>
662         These options can be set separately for each service.
663         </para>
664
665         <para>
666         The options are:
667         </para>
668         
669         <variablelist>
670         
671         <varlistentry>
672                 <term>case sensitive = yes/no/auto</term>
673                 <listitem><para>
674                 controls whether filenames are case sensitive. If they aren't, Samba must do a filename search and match on
675                 passed names. The default setting of auto allows clients that support case sensitive filenames (Linux CIFSVFS
676                 and smbclient 3.0.5 and above currently) to tell the Samba server on a per-packet basis that they wish to
677                 access the file system in a case-sensitive manner (to support UNIX case sensitive semantics). No Windows or
678                 DOS system supports case-sensitive filename so setting this option to auto is that same as setting it to no
679                 for them. Default <emphasis>auto</emphasis>.
680                 </para></listitem>
681                 </varlistentry> 
682
683                 <varlistentry>
684                 <term>default case = upper/lower</term>
685                 <listitem><para>
686                 controls what the default case is for new filenames (ie. files that don't currently exist in the filesystem).
687                 Default <emphasis>lower</emphasis>.  IMPORTANT NOTE: As part of the optimizations for directories containing
688                 large numbers of files, the following special case applies. If the options
689                 <smbconfoption  name="case sensitive">yes</smbconfoption>, <smbconfoption name="preserve case">No</smbconfoption>, and
690                 <smbconfoption name="short preserve case">No</smbconfoption> are set, then the case of <emphasis>all</emphasis>
691                 incoming client filenames, not just new filenames, will be modified. See additional notes below.
692                 </para></listitem>
693                 </varlistentry> 
694         
695                 <varlistentry>
696                 <term>preserve case = yes/no</term>
697                 <listitem><para>
698                 controls whether new files (ie. files that don't currently exist in the filesystem) are created with the case
699                 that the client passes, or if they are forced to be the <literal>default</literal> case. Default
700                 <emphasis>yes</emphasis>.
701                 </para></listitem>
702                 </varlistentry> 
703
704                 <varlistentry>
705                 <term>short preserve case = yes/no</term>
706                 <listitem><para>
707                 controls if new files (ie. files that don't currently exist in the filesystem) which conform to 8.3 syntax,
708                 that is all in upper case and of suitable length, are created upper case, or if they are forced to be the
709                 <literal>default</literal> case. This option can be used with <literal>preserve case = yes</literal> to permit
710                 long filenames to retain their case, while short names are lowercased. Default <emphasis>yes</emphasis>.
711                 </para></listitem>
712                 </varlistentry> 
713         </variablelist>
714         
715         <para>
716         By default, Samba 3.0 has the same semantics as a Windows NT server, in that it is case insensitive
717         but case preserving. As a special case for directories with large numbers of files, if the case
718         options are set as follows, "case sensitive = yes", "case preserve = no", "short preserve case = no"
719         then the "default case" option will be applied and will modify all filenames sent from the client
720         when accessing this share.
721         </para>
722         
723 </refsect1>
724
725 <refsect1>
726         <title>REGISTRY-BASED CONFIGURATION</title>
727
728         <para>
729                 Starting with Samba version 3.2.0, the capability to
730                 store Samba configuration in the registry is available.
731                 The configuration is stored in the registry key
732                  <emphasis><literal>HKLM\Software\Samba\smbconf</literal></emphasis>.
733                 There are two levels of registry configuration:
734         </para>
735
736         <orderedlist continuation="restarts" inheritnum="ignore" numeration="arabic">
737                 <listitem><para>Share definitions stored in registry are used.
738                 This is triggered by setting the global 
739                 parameter <parameter>registry shares</parameter>
740                 to <quote>yes</quote> in <emphasis>smb.conf</emphasis>.
741                 </para>
742
743                 <para>The registry shares are loaded not at startup but
744                 on demand at runtime by <emphasis>smbd</emphasis>.
745                 Shares defined in <emphasis>smb.conf</emphasis> take
746                 priority over shares of the same name defined in
747                 registry.</para></listitem>
748
749                 <listitem>
750                 <para>Global <emphasis>smb.conf</emphasis>
751                 options stored in registry are used. This can be activated
752                 in two different ways:</para>
753
754                 <para>Firstly, a registry only configuration is triggered
755                 by setting
756                 <smbconfoption name="config backend">registry</smbconfoption>
757                 in the [global] section of <emphasis>smb.conf</emphasis>.
758                 This resets everything that has been read from config files
759                 to this point and reads the content of the global configuration
760                 section from the registry.
761                 This is the recommended method of using registry based
762                 configuration.</para>
763
764                 <para>Secondly, a mixed configuration can be activated
765                 by a special new meaning of the parameter
766                 <smbconfoption name="include">registry</smbconfoption>
767                 in the [global] section of <emphasis>smb.conf</emphasis>.
768                 This reads the global options from registry with the same
769                 priorities as for an include of a text file.
770                 This may be especially useful in cases where an initial
771                 configuration is needed to access the registry.</para>
772
773                 <para>Activation of global registry options automatically
774                 activates registry shares. So in the registry only case,
775                 shares are loaded on demand only.</para>
776                 </listitem>
777         </orderedlist>
778
779         <para>
780                 Note: To make registry-based configurations foolproof
781                 at least to a certain extent, the use
782                 of <parameter>lock directory</parameter> and
783                  <parameter>config backend</parameter>
784                 inside the registry configuration has been disabled:
785                 Especially by changing the
786                  <parameter>lock directory</parameter> inside the registry
787                 configuration, one would create a broken setup where the daemons
788                 do not see the configuration they loaded once it is active.
789         </para>
790
791         <para>
792                 The registry configuration can be accessed with
793                 tools like <emphasis>regedit</emphasis> or <emphasis>net (rpc)
794                 registry</emphasis> in the key
795                  <emphasis><literal>HKLM\Software\Samba\smbconf</literal></emphasis>.
796
797                 More conveniently, the <emphasis>conf</emphasis> subcommand of the
798                  <citerefentry><refentrytitle>net</refentrytitle>
799                 <manvolnum>8</manvolnum></citerefentry> utility
800                 offers a dedicated interface to read and write the
801                 registry based configuration locally, i.e. directly
802                 accessing the database file, circumventing the
803                 server.
804         </para>
805
806 </refsect1>
807
808 <refsect1 ID="IDMAPCONSIDERATIONS">
809         <title>IDENTITY MAPPING CONSIDERATIONS</title>
810
811         <para>
812         In the SMB protocol, users, groups, and machines are represented by their security identifiers (SIDs).
813         On POSIX system Samba processes need to run under corresponding POSIX user identities and
814         with supplemental POSIX groups to allow access to the files owned by those users and groups.
815         The process of mapping SIDs to POSIX users and groups is called <emphasis>IDENTITY MAPPING</emphasis>
816         or, in short, <emphasis>ID MAPPING</emphasis>.
817         </para>
818
819         <para>
820         Samba supports multiple ways to map SIDs to POSIX users and groups. The configuration is driven by
821         the <smbconfoption name="idmap config DOMAIN : OPTION"/> option which allows one to specify identity
822         mapping (idmap) options for each domain separately.
823         </para>
824
825         <para>
826         Identity mapping modules implement different strategies for mapping of SIDs to POSIX user and group
827         identities. They are applicable to different use cases and scenarios. It is advised to read the documentation
828         of the individual identity mapping modules before choosing a specific scenario to use. Each identity
829         management module is documented in a separate manual page. The standard idmap backends are
830         tdb (<citerefentry><refentrytitle>idmap_tdb</refentrytitle><manvolnum>8</manvolnum></citerefentry>),
831         tdb2 (<citerefentry><refentrytitle>idmap_tdb2</refentrytitle><manvolnum>8</manvolnum></citerefentry>),
832         ldap (<citerefentry><refentrytitle>idmap_ldap</refentrytitle><manvolnum>8</manvolnum></citerefentry>),
833         rid (<citerefentry><refentrytitle>idmap_rid</refentrytitle><manvolnum>8</manvolnum></citerefentry>),
834         hash (<citerefentry><refentrytitle>idmap_hash</refentrytitle><manvolnum>8</manvolnum></citerefentry>),
835         autorid (<citerefentry><refentrytitle>idmap_autorid</refentrytitle><manvolnum>8</manvolnum></citerefentry>),
836         ad (<citerefentry><refentrytitle>idmap_ad</refentrytitle> <manvolnum>8</manvolnum></citerefentry>),
837         nss (<citerefentry><refentrytitle>idmap_nss</refentrytitle> <manvolnum>8</manvolnum></citerefentry>), and
838         rfc2307 (<citerefentry><refentrytitle>idmap_rfc2307</refentrytitle> <manvolnum>8</manvolnum></citerefentry>).
839         </para>
840
841         <para>
842         Overall, ID mapping configuration should be decided carefully. Changes to the already deployed ID mapping
843         configuration may create the risk of losing access to the data or disclosing the data to the wrong parties.
844         </para>
845
846         <para>
847         This example shows how to configure two domains with <citerefentry><refentrytitle>idmap_rid</refentrytitle>
848         <manvolnum>8</manvolnum> </citerefentry>, the principal domain and a trusted domain,
849         leaving the default id mapping scheme at tdb.
850         </para>
851
852         <programlisting>
853         [global]
854         security = domain
855         workgroup = MAIN
856
857         idmap config * : backend        = tdb
858         idmap config * : range          = 1000000-1999999
859
860         idmap config MAIN : backend     = rid
861         idmap config MAIN : range       = 5000000-5999999
862
863         idmap config TRUSTED : backend  = rid
864         idmap config TRUSTED : range    = 6000000-6999999
865         </programlisting>
866 </refsect1>
867
868 <refsect1>
869         <title>EXPLANATION OF EACH PARAMETER</title>
870         
871         <samba:parameterlist>
872                 <!-- The URI below is resolved to local generated version of parameters.all.xml //-->
873                 <!-- WAF build places it in bin/default/docs-xml/smbdotconf/parameters.all.xml //-->
874                 <!-- and we redirect there via use of XML_CATALOG_FILES, see docs-xml/build/catalog.xml.in //-->
875                 <xi:include href="http://www.samba.org/samba/smbdotconf/parameters.all.xml" parse="xml"/>
876         </samba:parameterlist>
877
878 </refsect1>
879
880 <refsect1>
881         <title>WARNINGS</title>
882         
883         <para>
884         Although the configuration file permits service names to contain spaces, your client software may not.
885         Spaces will be ignored in comparisons anyway, so it shouldn't be a problem - but be aware of the possibility.
886         </para>
887
888         <para>
889         On a similar note, many clients - especially DOS clients - limit service names to eight characters.
890         <citerefentry><refentrytitle>smbd</refentrytitle> <manvolnum>8</manvolnum></citerefentry> has no such
891         limitation, but attempts to connect from such clients will fail if they truncate the service names.  For this
892         reason you should probably keep your service names down to eight characters in length.
893         </para>
894
895         <para>
896         Use of the <literal>[homes]</literal> and <literal>[printers]</literal> special sections make life 
897         for an administrator easy, but the various combinations of default attributes can be tricky. Take extreme
898         care when designing these sections. In particular, ensure that the permissions on spool directories are
899         correct.
900         </para>
901
902 </refsect1>
903
904 <refsect1>
905         <title>VERSION</title>
906
907         <para>This man page is part of version &doc.version; of the Samba suite.</para>
908 </refsect1>
909
910 <refsect1>
911         <title>SEE ALSO</title>
912         <para>
913         <citerefentry><refentrytitle>samba</refentrytitle>
914         <manvolnum>7</manvolnum></citerefentry>, <citerefentry><refentrytitle>smbpasswd</refentrytitle>
915         <manvolnum>8</manvolnum></citerefentry>, <citerefentry><refentrytitle>smbd</refentrytitle>
916         <manvolnum>8</manvolnum></citerefentry>, <citerefentry><refentrytitle>nmbd</refentrytitle>
917         <manvolnum>8</manvolnum></citerefentry>, <citerefentry><refentrytitle>winbindd</refentrytitle>
918         <manvolnum>8</manvolnum></citerefentry>, <citerefentry><refentrytitle>samba</refentrytitle>
919         <manvolnum>8</manvolnum></citerefentry>, <citerefentry><refentrytitle>samba-tool</refentrytitle>
920         <manvolnum>8</manvolnum></citerefentry>, <citerefentry><refentrytitle>smbclient</refentrytitle>
921         <manvolnum>1</manvolnum></citerefentry>, <citerefentry><refentrytitle>nmblookup</refentrytitle>
922         <manvolnum>1</manvolnum></citerefentry>, <citerefentry><refentrytitle>testparm</refentrytitle>
923         <manvolnum>1</manvolnum></citerefentry>.</para>
924 </refsect1>
925
926 <refsect1>
927         <title>AUTHOR</title>
928         
929         <para>
930         The original Samba software and related utilities were created by Andrew Tridgell. Samba is now developed
931         by the Samba Team as an Open Source project similar to the way the Linux kernel is developed.
932         </para>
933 </refsect1>
934
935 </refentry>