mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
8ac17fff80
The vfs_catia man page currently recommends the mapping of server-side space-characters (0x20) to client-side plus-minus characters (0xb1). This recommendation should not be made, as 0x20 is a valid filename component on both system character sets. Signed-off-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
136 lines
4.2 KiB
XML
136 lines
4.2 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!DOCTYPE refentry PUBLIC "-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" "http://www.samba.org/samba/DTD/samba-doc">
|
|
<refentry id="vfs_catia.8">
|
|
|
|
<refmeta>
|
|
<refentrytitle>vfs_catia</refentrytitle>
|
|
<manvolnum>8</manvolnum>
|
|
<refmiscinfo class="source">Samba</refmiscinfo>
|
|
<refmiscinfo class="manual">System Administration tools</refmiscinfo>
|
|
<refmiscinfo class="version">4.0</refmiscinfo>
|
|
</refmeta>
|
|
|
|
|
|
<refnamediv>
|
|
<refname>vfs_catia</refname>
|
|
<refpurpose>translate illegal characters in Catia filenames</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsynopsisdiv>
|
|
<cmdsynopsis>
|
|
<command>vfs objects = catia</command>
|
|
</cmdsynopsis>
|
|
</refsynopsisdiv>
|
|
|
|
<refsect1>
|
|
<title>DESCRIPTION</title>
|
|
|
|
<para>This VFS module is part of the
|
|
<citerefentry><refentrytitle>samba</refentrytitle>
|
|
<manvolnum>7</manvolnum></citerefentry> suite.</para>
|
|
|
|
<para>The Catia CAD package commonly creates filenames that
|
|
use characters that are illegal in CIFS filenames. The
|
|
<command>vfs_catia</command> VFS module implements a character
|
|
mapping so that these files can be shared with CIFS clients.
|
|
</para>
|
|
|
|
<para>This module is stackable.</para>
|
|
|
|
<para>Up to samba version 3.4.x a fixed character mapping was used.
|
|
The invalid windows characters \ / : * ? " < > | and the blank
|
|
character were mapped in a hardcoded way.
|
|
</para>
|
|
|
|
<para>Starting with samba-3.5.0 a more flexible mapping was introduced.
|
|
The new parameter "catia:mappings" now specifies the mapping on a char by char
|
|
basis using the notation: unix hex char 0x.. : windows hex char 0x..
|
|
Multiple character mappings are separated by a comma.
|
|
</para>
|
|
|
|
|
|
</refsect1>
|
|
|
|
|
|
<refsect1>
|
|
<title>EXAMPLES</title>
|
|
|
|
<para>Samba versions up to 3.4.x:</para>
|
|
<para>Map Catia filenames on the [CAD] share:</para>
|
|
|
|
<programlisting>
|
|
<smbconfsection name="[CAD]"/>
|
|
<smbconfoption name="path">/data/cad</smbconfoption>
|
|
<smbconfoption name="vfs objects">catia</smbconfoption>
|
|
</programlisting>
|
|
|
|
<para>Samba versions 3.5.0 and later:</para>
|
|
<para>Map Catia filenames on the [CAD] share:</para>
|
|
|
|
<programlisting>
|
|
<smbconfsection name="[CAD]"/>
|
|
<smbconfoption name="path">/data/cad</smbconfoption>
|
|
<smbconfoption name="vfs objects">catia</smbconfoption>
|
|
<smbconfoption name="catia:mappings">0x22:0xa8</smbconfoption>
|
|
</programlisting>
|
|
|
|
<para>To get the full formerly fixed mappings:</para>
|
|
<programlisting>
|
|
<smbconfsection name="[CAD]"/>
|
|
<smbconfoption name="path">/data/cad</smbconfoption>
|
|
<smbconfoption name="vfs objects">catia</smbconfoption>
|
|
<smbconfoption name="catia:mappings">0x22:0xa8,0x2a:0xa4,0x2f:0xf8,0x3a:0xf7,0x3c:0xab,0x3e:0xbb,0x3f:0xbf,0x5c:0xff,0x7c:0xa6</smbconfoption>
|
|
</programlisting>
|
|
|
|
<para>Unix filename to be translated (Note that the path delimiter "/" is not used here):
|
|
</para>
|
|
<para>a\a:a*a?a"a<a>a|a</para>
|
|
|
|
<para>Resulting windows filename:</para>
|
|
|
|
<para>aÿa÷a¤a¿a¨a«a»a¦a
|
|
</para>
|
|
|
|
<para>Note that the character mapping must work in BOTH directions
|
|
(unix -> windows and windows -> unix) to get unique and existing file names!
|
|
</para>
|
|
|
|
<para>A NOT working example:</para>
|
|
|
|
<programlisting>
|
|
<smbconfsection name="[CAD]"/>
|
|
<smbconfoption name="path">/data/cad</smbconfoption>
|
|
<smbconfoption name="vfs objects">catia</smbconfoption>
|
|
<smbconfoption name="catia:mappings">0x3a:0x5f</smbconfoption>
|
|
</programlisting>
|
|
|
|
<para>Here the colon ":" is mapped to the underscore "_".</para>
|
|
<para>Assuming a unix filename "a:should_work", which is well translated
|
|
to windows as "a_should_work".</para>
|
|
<para>BUT the reverse mapping from windows "a_should_work" to unix
|
|
will result in "a:should:work" - something like "file not found"
|
|
will be returned.
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1>
|
|
<title>VERSION</title>
|
|
|
|
<para>This man page is correct for all versions up to 4.0.3 of the Samba suite.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1>
|
|
<title>AUTHOR</title>
|
|
|
|
<para>The original Samba software and related utilities
|
|
were created by Andrew Tridgell. Samba is now developed
|
|
by the Samba Team as an Open Source project similar
|
|
to the way the Linux kernel is developed.</para>
|
|
<para>New version written by Guenter Kukkukk kukks@samba.org</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|