home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 5 / CD_Magazyn_EXEC_nr_5.iso / Programy / Internet / Samba / smbfs.lha / smbfs.doc < prev   
Text File  |  2001-03-03  |  19KB  |  423 lines

  1. A SMB file system wrapper for AmigaOS, using the AmiTCP V3 API
  2. ==============================================================
  3.  
  4. 1. What is it?
  5.  
  6. This document briefly describes the SMBFS program, which implements an SMB
  7. file system for AmigaOS. This file system can be used to access files made
  8. available by file servers which implement the SMB protocol, such as 'Microsoft
  9. Windows' or any other platform which supports the free 'Samba' product. These
  10. files can be accessed using shell commands such as 'List', the Workbench or
  11. utilities such as 'Directory Opus' as if the file server were a local disk
  12. drive.
  13.  
  14.  
  15. 2. What do you need to get started?
  16.  
  17. You need a TCP/IP stack that supports the AmiTCP V3 API, such as 'Miami', the
  18. original free 'AmiTCP 3.0' release, 'AmiTCP 4.x', 'Miami Deluxe' or 'AmiTCP
  19. Genesis' and the obligatory networking gear. All these items need to be in
  20. good shape and properly configured.
  21.  
  22. Most important, you need a computer which exports file sharing services using
  23. the SMB protocol.
  24.  
  25. It often helps to have 'Samba' installed on your Amiga, too, as this can aid
  26. in tracking down bugs and obtaining information which SMBFS cannot obtain all
  27. by itself.
  28.  
  29. Last but not least, you need to be proficient in configuring and using the
  30. TCP/IP stack; networking knowledge is definitely assumed.
  31.  
  32. SMBFS requires AmigaOS 2.04 or higher to work.
  33.  
  34.  
  35. 3. Preparations
  36.  
  37. You need to know which computer's files you want to share using the SMBFS file
  38. system. That computer must be known by name, it is not sufficient just to know
  39. its IP address. If you know the IP address but cannot refer to the host by its
  40. name then SMBFS will not work. In that case, make sure that you add a host
  41. name entry referring to the IP address to your TCP/IP stack's host database
  42. (e.g. the "AmiTCP:bin/hosts" file or the corresponding page in the stack's
  43. configuration user interface).
  44.  
  45. The name of the computer to connect to must not be too long. If it is longer
  46. than 16 characters, SMBFS will not work properly.
  47.  
  48. You need to know which service you want to connect to on the target computer.
  49. You can find out which services are available on a certain computer by using
  50. the Samba 'smbclient' program. For example, if you were to query the services
  51. offered by a machine called 'sourcery' you could enter the following:
  52.  
  53.    samba:bin/smbclient -L sourcery
  54.  
  55. And you might get the following information:
  56.  
  57.    added interface ip=192.168.0.1 bcast=192.168.0.255 nmask=255.255.255.0
  58.    Password: Domain=[ARBEITSGRUPPE] OS=[AmigaOS] Server=[Samba 2.0.7]
  59.  
  60.            Sharename      Type      Comment
  61.            ---------      ----      -------
  62.            All            Disk      All volumes in the system
  63.            IPC$           IPC       IPC Service (Amiga 3000UX)
  64.            olsen          Disk      Home Directories
  65.  
  66.            Server               Comment
  67.            ---------            -------
  68.            SOURCERY             Amiga 3000UX
  69.  
  70.            Workgroup            Master
  71.            ---------            -------
  72.            ARBEITSGRUPPE        SOURCERY
  73.    
  74. The share name to connect to would be "ALL" in this case.
  75.  
  76. You need to know which login name and which password are required to connect
  77. to the shared resource, and you need to know the name of the workgroup or
  78. domain the file server is a member of.
  79.  
  80.  
  81. 4. Starting and stopping the file system
  82.  
  83. SMBFS is an uncommon kind of file system in that you do not use the 'Mount'
  84. command to mount it. In fact, SMBFS is a shell program which can be launched
  85. from the shell, using command line parameters to tell it which resources
  86. should be used. But you can also start it from Workbench: in this case you
  87. would have to put the program's command line options into icon tool types.
  88.  
  89. By now you should have assembled the following information:
  90.  
  91.    - Name of the computer to connect to; this would be the
  92.      file server
  93.    - Name of the shared SMB resource to connect to
  94.    - Login name and password
  95.  
  96. That's basically everything you need to know to continue -- unless something
  97. goes wrong, but more on that lateron.
  98.  
  99. Now you can start the file system. For example, to connect to the file server
  100. called 'sourcery' and the shared 'all' resource it exports, with that computer
  101. being a member of the workgroup 'Arbeitsgruppe', using the login name
  102. 'PCGuest' and not providing any password you would enter the following:
  103.  
  104.    Run >NIL: SMBFS Workgroup=Arbeitsgruppe User=PCGuest Service=//sourcery/all
  105.  
  106. This would cause a new device by the name of "SMBFS:" to be mounted, showing
  107. all files and directories the 'sourcery' server makes available for sharing.
  108.  
  109. How do you 'unmount' the file system? That's very easy, just check the output
  110. of the 'Status' shell command. You might get the following output:
  111.  
  112.    Process  1: Loaded as command: TURBOTEXT
  113.    Process  2: Loaded as command: Work:Tools/Blowup
  114.    Process  3: Loaded as command: Work:Tools/Sashimi
  115.    Process  4: Loaded as command: Work:CyberTools/CyberGuard
  116.    Process  5: Loaded as command: Work:Tools/OpenDevicePatch
  117.    Process  6: Loaded as command: CED
  118.    Process  7: Loaded as command: Workbench
  119.    Process  8: Loaded as command: Status
  120.    Process  9: No command loaded
  121.    Process 10: Loaded as command: SMBFS '//sourcery/all'
  122.  
  123. Look at the last line describing process number 10: it shows the name of the
  124. file system program SMBFS and the name of the SMB share it is connected to. To
  125. stop this file system and effectively unmount it, use the shell 'Break'
  126. command; in this case you would enter "Break 10" to stop the file system. Note
  127. that the program may not terminate immediately; it may have to wait until the
  128. last client has released all resources referring to the file system. You may
  129. have to send more than one "Break" command to stop the program.
  130.  
  131.  
  132. 5. Startup options
  133.  
  134. The SMBFS program supports a number of command line options, as will be
  135. described below. The command template looks like this:
  136.  
  137.    DOMAIN=WORKGROUP/K,USER=USERNAME/K,PASSWORD/K,CHANGECASE/S,
  138.    CASE=CASESENSITIVE/S,OMITHIDDEN/S,QUIET/S,CLIENT=CLIENTNAME/K,
  139.    SERVER=SERVERNAME/K,DEVICE=DEVICENAME/K,VOLUME=VOLUMENAME/K,
  140.    CACHE=CACHESIZE/N/K,DEBUGLEVEL=DEBUG/N/K,TRANSLATE=TRANSLATIONFILE/K,
  141.    SERVICE/A
  142.  
  143. The individual options serve the following purposes:
  144.  
  145.    DOMAIN=WORKGROUP/K
  146.  
  147.       You must specify the name of the workgroup or domain the file server to
  148.       connect to is a member of. The name of this workgroup or domain must not
  149.       be longer than 16 characters. The name you provide will be translated to
  150.       all upper case characters.
  151.  
  152.       You need not provide for a work group or domain name on the command line.
  153.       Alternatively, you may configure an environment variable whose contents
  154.       will be used instead. The variable could be set up like this:
  155.  
  156.          SetEnv smbfs_workgroup <name of domain or workgroup>
  157.          Copy ENV:smbfs_workgroup ENVARC:
  158.  
  159.       You may also use the 'smbfs_domain' environment varilable in place of the
  160.       'smbfs_workgroup' variable. The two are aliases for one another, but
  161.       smbfs will read only one of the two.
  162.  
  163.    USER=USERNAME/K
  164.  
  165.       To connect to an SMB share you must authenticate yourself by providing a
  166.       user name. With this program the user name is optional; if you do not
  167.       provide one, SMBFS will use the default, which is "GUEST". The user name
  168.       must not be longer than 64 characters. The name you provide will be
  169.       translated to all upper case characters.
  170.  
  171.       You need not provide for a user name on the command line. Alternatively,
  172.       you may configure an environment variable whose contents will be used
  173.       instead. The variable could be set up like this:
  174.  
  175.          SetEnv smbfs_username <your user name>
  176.          Copy ENV:smbfs_username ENVARC:
  177.  
  178.       You may also use the 'smbfs_user' environment varilable in place of the
  179.       'smbfs_username' variable. The two are aliases for one another, but
  180.       smbfs will read only one of the two.
  181.  
  182.    PASSWORD/K
  183.  
  184.       As part of the authentication process required to make the connection to
  185.       an SMB share, you must provide for a user name and a password. The
  186.       password is optional; if you do not provide one, an empty password will
  187.       be transmitted. The password must not be longer than 64 characters.
  188.  
  189.       You need not provide for a password on the command line. Alternatively,
  190.       you may configure an environment variable whose contents will be used
  191.       instead. The variable could be set up like this:
  192.  
  193.          SetEnv smbfs_password <your password>
  194.          Copy ENV:smbfs_password ENVARC:
  195.  
  196.       Keep in mind that passwords like these really should not be exposed by
  197.       storing them in environment variables. But then the protocol smbfs uses
  198.       is almost as insecure as it gets anyway.
  199.  
  200.    CHANGECASE/S
  201.  
  202.       By default the password will not be changed to all upper case characters.
  203.       If this is required, you should either provide the password in this
  204.       form or resort to this option, which will cause it to be translated
  205.       to all upper case characters.
  206.  
  207.    CASE=CASESENSITIVE/S
  208.  
  209.       Some file servers treat file and directory names differently which
  210.       differ only in whether they are written using upper/lower case
  211.       characters. For these servers you should activate the CASESENSITIVE
  212.       switch to treat those files properly. There is a catch though: the
  213.       AmigaDOS file naming scheme does not follow this model and you may
  214.       run into problems when you are trying to use it. By default, the
  215.       file system does not treat file and directory names differently
  216.       which only differ with respect to the case of letters.
  217.  
  218.    OMITHIDDEN/S
  219.  
  220.       When requesting a directory listing, the server may return some files
  221.       and directories tagges as being hidden. By default this file system
  222.       will report these 'hidden' entries anyway, but you can request
  223.       specifically that what is intended to be hidden should be omitted
  224.       from directory listings, too. Note that even though a file may be
  225.       hidden you should still be able to open and examine it.
  226.  
  227.    QUIET/S
  228.  
  229.       When started from Shell, SMBFS will print a message as soon as the
  230.       connection to the file server has been established. If you do not
  231.       want to see that message displayed, use the QUIET parameter. Also,
  232.       no such message will appear if the program has been started to run
  233.       in the background.
  234.  
  235.    CLIENT=CLIENTNAME/K
  236.  
  237.       SMBFS will attempt to connect to the file server by providing the name
  238.       of the computer you connect from. In some cases this may be undesirable
  239.       as the computer's name differs from what the file server expects. You
  240.       can use the CLIENT parameter to tell SMBFS under which name it should
  241.       announce itself to the server. This parameter is optional and will be
  242.       translated to all upper case characters; it cannot be longer than 16
  243.       characters.
  244.  
  245.    SERVER=SERVERNAME/K
  246.  
  247.       SMBFS will attempt to connect to the file server by providing the name
  248.       you specified using the SERVICE command line parameter. In some cases
  249.       this may be undesirable as the server's name differs from what you
  250.       specified as the share name. You can use the SERVER parameter to tell
  251.       SMBFS under which name it should contact the server. This parameter is
  252.       optional and will be translated to all upper case characters; it cannot
  253.       be longer than 16 characters.
  254.  
  255.    DEVICE=DEVICENAME/K
  256.    VOLUME=VOLUMENAME/K
  257.  
  258.       The SMBFS program can announce itself as an AmigaDOS file system by
  259.       using one of two different methods.
  260.  
  261.       The first method involves announcing itself only as a file system
  262.       device. This should be sufficient in most cases but has a drawback in
  263.       that the device will not be usable from Workbench since the file system
  264.       will not appear as a disk icon. You tell SMBFS to use a specific device
  265.       name by using the DEVICE command line parameter, e.g. "DEVICE=SMBFS:".
  266.       Note that device names must be unique, i.e. there must be no other
  267.       device by the same name in the system; SMBFS will report an error and
  268.       exit if it finds one.
  269.  
  270.       The second method involves announcing itself as a volume. This has the
  271.       benefit of making the file system usable from Workbench since a disk
  272.       icon will appear for it. You tell SMBFS to use a specific volume name by
  273.       using the VOLUME command line parameter, e.g. "VOLUME=Sourcery:".
  274.  
  275.       Both methods have advantages and drawbacks. The drawback of the VOLUME
  276.       method is that it may deadlock the native Amiga Samba port as soon as
  277.       the file system is mounted. The drawback of the DEVICE method is that
  278.       the file system will not be usable from Workbench.
  279.  
  280.       If you wish, you can combine both methods; this is the approach most
  281.       other file systems use. And in fact, when you tell SMBFS to add a
  282.       volume it will also add a device to go along with it.
  283.  
  284.       The VOLUME and DEVICE keywords are optional; if you omit both, SMBFS
  285.       will pretend that you had used the "DEVICE=SMBFS:" parameter.
  286.  
  287.    CACHE=CACHESIZE/N/K
  288.  
  289.       The file system attempts to optimize accesses to the file server when
  290.       directory contents are being scanned. These contents are buffered in
  291.       a directory cache which by default will hold 170 entries. Since each
  292.       entry will require about 255 bytes of storage, the entire 170 entry
  293.       cache will occupy more than 40K bytes of memory. You may want to change
  294.       this requirement, by making the cache smaller or larger using the
  295.       CACHESIZE parameter. The size of the directory cache cannot be smaller
  296.       than 10 entries.
  297.  
  298.    DEBUGLEVEL=DEBUG/N/K
  299.  
  300.       By default SMBFS operates in silent mode. It does not report what it is
  301.       doing, it just tries to respond to file system requests. To obtain
  302.       debugging output you may want to use the DEBUG option and specify a
  303.       debug level greater than 0. The larger the number you specify the more
  304.       debugging output will be created. Note that all debugging output will be
  305.       produced using the operating system's debug output functionality which
  306.       requires that you have a capturing program like 'Sashimi' running in the
  307.       background.
  308.  
  309.    TRANSLATE=TRANSLATIONFILE/K
  310.  
  311.       The Amiga and the file server SMBFS connects to may not share the same
  312.       character set. International characters used in file names on either
  313.       side may not come out correctly on the other side. To remedy this
  314.       problem, you can resort to file name translation. How the individual
  315.       names are to be translated is determined by the contents of a file
  316.       name translation table file such as the ones that ship with Workbench
  317.       in the "L:FileSystem_Trans" drawer. The first 256 bytes of each such
  318.       file must consist of the mapping of Amiga characters to the different
  319.       character set, and the second 256 characters must describe a mapping
  320.       back from the different character set to the Amiga. In most cases the
  321.       "L:FileSystem_Trans/INTL.crossdos" translation table file should be
  322.       sufficient. To specify which file contains the translation tables to
  323.       use you would use the TRANSLATIONFILE parameter.
  324.  
  325.    SERVICE/A
  326.  
  327.       This is the last parameter to be specified on the command line. It
  328.       should refer to the file server you want to connect to and the resource
  329.       it exports, e.g. a file system. This parameter must start with two
  330.       slashes which must be immediately followed by the file server's name,
  331.       which must be followed by the resource to connect to.
  332.  
  333. The same parameters are also used when starting SMBFS from Workbench. SMBFS
  334. will examine its icon tool types and use these in place of the shell command
  335. line.
  336.  
  337.  
  338. 6. Known problems
  339.  
  340. The design of smbfs follows the original file system concept behind the
  341. code which the 'Sharity-Light' file system is based upon. And that is a
  342. Unix file system which differs from Amiga specific file systems in many
  343. ways which can lead to problems which should be discussed briefly below:
  344.  
  345.    - Single threaded design
  346.  
  347.      This means that it is not possible for several programs to fairly
  348.      share the use of the file system. For example, a program that posts
  349.      a long read request can tie up the file system almost exclusively
  350.      for itself, and while it is busy all other clients will have to
  351.      wait. Same goes for directory scanning.
  352.  
  353.    - Poor scalability
  354.  
  355.      This is associated with the single threaded design. When several
  356.      programs are accessing the file system at the same time, overhead
  357.      and unfair sharing of resources will drastically reduce the
  358.      performance of the file system.
  359.  
  360.    - Separation of file data and metadata
  361.  
  362.      This means that the core of the file system treats the contents of
  363.      a directory and the data attached to each file inside that
  364.      directory as something different. This is a common concept with
  365.      Unix file systems, but it is very different with Amiga file systems.
  366.      In smbfs this data separation can cause problems when deleting
  367.      files from a directory while that directory is being scanned,
  368.      such as how this is being done by the 'Delete' shell command. The
  369.      effects of these problems are that a directory may not be deleted
  370.      even though it is empty or that for the same directory the same
  371.      file may be reported twice in the listing.
  372.  
  373. While there are no easy solutions for any of these problems, it does not
  374. mean that smbfs is unusable. You just have to be more careful when you
  375. use the file system. For example, if a directory's contents cannot be
  376. deleted due to one of the problems mentioned above, you might want to
  377. retry later.
  378.  
  379. It should be noted that the problems described above are not inherent
  380. to the original file system design. It's just that transferring that
  381. design to an Amiga file system created the problems.
  382.  
  383.  
  384. 7. Credits
  385.  
  386. This file system is based upon prior work by Paal-Kr. Engstad, Volker
  387. Lendecke, Mark A. Shand, Donald J. Becker, Rick Sladkey, Fred N. van Kempen,
  388. Eric Kasten and Rudolf Koenig. It is a direct descendant of the
  389. 'Sharity-Light' file system written by Christian Starkjohann.
  390.  
  391. The password encryption code was lifted from the Samba package. It was
  392. written by Andrew Tridgell and the Samba Team.
  393.  
  394.  
  395. 8. Author
  396.  
  397. The 'Sharity-Light' source code was adapted and wrapped into an AmigaOS layer
  398. by Olaf `Olsen' Barthel. If you wish to contact me, please send e-mail to the
  399. following address:
  400.  
  401.    olsen@sourcery.han.de
  402.  
  403. Or, alternatively, you might want to contact me via my postal address:
  404.  
  405.    Olaf Barthel
  406.    Brabeckstr. 35
  407.    D-30559 Hannover
  408.    Federal Republic of Germany
  409.  
  410. If you want to submit a bug report or an enhancement request, please enclose
  411. sufficient information to allow me to make sense of the problem. That includes
  412. debugging logs produced using the DEBUG option.
  413.  
  414.  
  415. 9. Source code
  416.  
  417. SMBFS is distributed under the terms of the GNU General Public License
  418. (version 2). The source code should have accompanied this program; if it
  419. hasn't, please contact the author for a copy.
  420.  
  421. The program was compiled using the SAS/C 6.58 compiler, with the Miami SDK
  422. providing for the TCP/IP stack API header files.
  423.