From ac83deb73049f055f0ef159a5f3e5ec29a28efda Mon Sep 17 00:00:00 2001 From: John Terpstra Date: Thu, 23 Jun 2005 21:27:46 +0000 Subject: [PATCH] Update. --- docs/Samba3-HOWTO/TOSHARG-NetworkBrowsing.xml | 14 ++ docs/Samba3-HOWTO/TOSHARG-Securing.xml | 263 ++++++++++++++++---------- docs/Samba3-HOWTO/TOSHARG-locking.xml | 89 ++++----- 3 files changed, 220 insertions(+), 146 deletions(-) diff --git a/docs/Samba3-HOWTO/TOSHARG-NetworkBrowsing.xml b/docs/Samba3-HOWTO/TOSHARG-NetworkBrowsing.xml index c5a5d7633ab..379cc449e7d 100644 --- a/docs/Samba3-HOWTO/TOSHARG-NetworkBrowsing.xml +++ b/docs/Samba3-HOWTO/TOSHARG-NetworkBrowsing.xml @@ -1641,6 +1641,20 @@ Some people find browsing fails because they do not have the global IPC$ connection that lists the shares is done as guest and so you must have a valid guest account. + +IPC$ +Windows Explorer +browse resources +Network Neighborhood +My Network Places +The IPC$ share is used by all SMB/CIFS clients to obtain the list of resources +that is available on the server. This is the source of the list of shares and printers when browsing +an SMB/CIFS server (also Windows machines) using the Windows Explorer to browse resources through +the Windows Network Neighborhood (also called My Network Places) through to a Windows server. At +this point the client has opened a connection to the \\server\IPC4 resource. +Clicking on a share will then open up a connection to the \\server\share. + + guest account anonymous access diff --git a/docs/Samba3-HOWTO/TOSHARG-Securing.xml b/docs/Samba3-HOWTO/TOSHARG-Securing.xml index a35c48e807c..00ac4591fc4 100644 --- a/docs/Samba3-HOWTO/TOSHARG-Securing.xml +++ b/docs/Samba3-HOWTO/TOSHARG-Securing.xml @@ -12,10 +12,23 @@ Introduction + -This note was attached to the Samba 2.2.8 release notes because it contains an -important security fix. The information contained here applies to Samba -installations in general. +security +direct internet access +firewall +private network +barriers +deterents +secured networks +The information contained in this chapter applies in general to all Samba installations. Security us +everyone's concern in the information technology world. A surprising number of Samba servers are being +installed on machines that have direct internet access, thus security is made more critical than had the +server been located behind a firewall and on a private network. Paranoia regarding server security is causing +some network administrators to insist on the installation of robust firewalls even on server that are located +inside secured networks. This chapter provides brief information to assist the administrator who understands +how to create the needed barriers and deterents against the enemy, no matter where [s]he may +come from.
@@ -38,6 +51,10 @@ of knowledge with which we may unlock the secrets of the masters. Features and Benefits +moderately secure +perimeter firewall +host security +Samba security There are three levels at which security principles must be observed in order to render a site at least moderately secure. They are the perimeter firewall, the configuration of the host server that is running Samba, and Samba itself. @@ -49,16 +66,21 @@ the latest protocols to permit more secure MS Windows file and print operations. -Samba may be secured from connections that originate from outside the local network. This may be -done using host-based protection, using Samba's implementation of a technology -known as tcpwrappers, or it may be done be using interface-based exclusion -so &smbd; will bind only to specifically permitted interfaces. It is also -possible to set specific share or resource-based exclusions, for example, on the -autoshare. The share is used for browsing purposes as well as to establish -TCP/IP connections. +host-based protection +interface-based exclusion +resource-based exclusion +Samba can be secured from connections that originate from outside the local network. This can be done using +host-based protection, using Samba's implementation of a technology known as +tcpwrappers, or it may be done be using interface-based exclusion so +&smbd; will bind only to specifically permitted interfaces. It is also possible to set specific share or +resource-based exclusions, for example, on the autoshare. The share is used for browsing purposes as well as to establish TCP/IP connections. +Access Control EntriesACE +ACL +controls Another method by which Samba may be secured is by setting Access Control Entries (ACEs) in an Access Control List (ACL) on the shares themselves. This is discussed in File, Directory, and Share Access Controls. @@ -81,6 +103,9 @@ before someone will find yet another vulnerability. Using Host-Based Protection +outside threat +insecure +Internet In many installations of Samba, the greatest threat comes from outside your immediate network. By default, Samba accepts connections from any host, which means that if you run an insecure version of Samba on @@ -89,21 +114,25 @@ before someone will find yet another vulnerability. +allow access +range of hosts One of the simplest fixes in this case is to use the and options in the Samba &smb.conf; configuration file to allow access to your server only from a specific range of hosts. An example might be: + + 127.0.0.1 192.168.2.0/24 192.168.3.0/24 + 0.0.0.0/0 + - -127.0.0.1 192.168.2.0/24 192.168.3.0/24 -0.0.0.0/0 - - +localhost +private networks +called name The above will allow SMB connections only from localhost (your own computer) and from the two private networks 192.168.2 and 192.168.3. All other connections will be refused as soon as the client sends its first packet. The refusal - will be marked as not listening on called name error. + will be marked as not listening on called name error. @@ -114,13 +143,13 @@ before someone will find yet another vulnerability. If you want to restrict access to your server to valid users only, then the following method may be of use. In the &smb.conf; section put: + + @smbusers, jacko + - -@smbusers, jacko - - +smbusers This restricts all server access either to the user jacko or to members of the system group smbusers. @@ -132,6 +161,9 @@ before someone will find yet another vulnerability. Using Interface Protection +network interface +accept connections +Internet By default, Samba accepts connections on any network interface that it finds on your system. That means if you have an ISDN line or a PPP connection to the Internet then Samba will accept connections on those @@ -140,27 +172,46 @@ before someone will find yet another vulnerability. You can change this behavior using options like this: + + eth* lo + yes + - -eth* lo -yes - + +interfaces +loopback interface +Ethernet adapters +listen for connections + This tells Samba to listen for connections only on interfaces with a name starting with + eth such as eth0 or eth1, plus on the loopback interface called + lo. The name you will need to use depends on what OS you are using. In the above, I used + the common name for Ethernet adapters on Linux. + - This tells Samba to only listen for connections on interfaces with a - name starting with eth such as eth0 or eth1, plus on the loopback - interface called lo. The name you will need to use depends on what - OS you are using. In the above, I used the common name for Ethernet - adapters on Linux. +PPP +SMB +cracker +confirm address + If you use the above and someone tries to make an SMB connection to your host over a PPP interface called + ppp0, then [s]he will get a TCP connection refused reply. In that case, no Samba code + is run at all, because the operating system has been told not to pass connections from that interface to any + Samba process. However, the refusal helps a would-be cracker by confirming that the IP address provides + valid active services. - If you use the above and someone tries to make an SMB connection to - your host over a PPP interface called ppp0, then he or she will get a TCP - connection refused reply. In that case, no Samba code is run at all because - the operating system has been told not to pass connections from that - interface to any Samba process. +ignore connection +refusing connection +exploitation +denial of service +firewall + A better response would be to ignore the connection (from, e.g., ppp0) altogether. The + advantage of ignoring the connection attempt, as compared with refusing it, is that it foils those who + probe an interface with the sole intention of finding valid IP addresses for later use in exploitation + or denial of service attacks. This method of dealing with potential malicious activity demands the + use of appropriate firewall mechanisms. @@ -169,36 +220,45 @@ before someone will find yet another vulnerability. Using a Firewall - Many people use a firewall to deny access to services they do not - want exposed outside their network. This can be a good idea, - although I recommend using it in conjunction with the above - methods so you are protected even if your firewall is not active - for some reason. +deny access +exposed +firewall active + Many people use a firewall to deny access to services they do not want exposed outside their network. This can + be a good idea, although I recommend using it in conjunction with the above methods so you are protected even + if your firewall is not active for some reason. - If you are setting up a firewall, you need to know what TCP and - UDP ports to allow and block. Samba uses the following: + If you are setting up a firewall, you need to know what TCP and UDP ports to allow and block. Samba uses + the following: +Port 135/TCP +Port 137/UDP +Port 138/UDP +Port 139/TCP +Port 445/TCP - UDP/137 - used by nmbd - UDP/138 - used by nmbd - TCP/139 - used by smbd - TCP/445 - used by smbd + Port 135/TCP - used by smbd + Port 137/UDP - used by nmbd + Port 138/UDP - used by nmbd + Port 139/TCP - used by smbd + Port 445/TCP - used by smbd - The last one is important because many older firewall setups may not be - aware of it, given that this port was only added to the protocol in - recent years. +firewall setups + The last one is important because many older firewall setups may not be aware of it, given that this port + was only added to the protocol in recent years. - When configuring a firewall, the high order ports (1024-65535) are often - used for outgoing connections and therefore should be permitted through the - firewall. It is prudent to block incoming packets on the high order ports - except for established connections. +configuring a firewall +high order ports +block incoming packets + When configuring a firewall, the high order ports (1024-65535) are often used for outgoing connections and + therefore should be permitted through the firewall. It is prudent to block incoming packets on the high order + ports except for established connections. @@ -207,37 +267,41 @@ before someone will find yet another vulnerability. Using IPC$ Share-Based Denials - If the above methods are not suitable, then you could also place a - more specific deny on the IPC$ share that is used in the recently - discovered security hole. This allows you to offer access to other - shares while denying access to IPC$ from potentially untrustworthy - hosts. +IPC$ +deny +security hole + If the above methods are not suitable, then you could also place a more specific deny on the IPC$ share that + is used in the recently discovered security hole. This allows you to offer access to other shares while + denying access to IPC$ from potentially untrustworthy hosts. To do this you could use: + + + 192.168.115.0/24 127.0.0.1 + 0.0.0.0/0 + - - -192.168.115.0/24 127.0.0.1 -0.0.0.0/0 - - - This instructs Samba that IPC$ connections are not allowed from - anywhere except the two listed network addresses (localhost and the 192.168.115 - subnet). Connections to other shares are still allowed. Because the - IPC$ share is the only share that is always accessible anonymously, - this provides some level of protection against attackers who do not - know a valid username/password for your host. +IPC$ +protection against attackers +valid username/password + This instructs Samba that IPC$ connections are not allowed from anywhere except the two listed network + addresses (localhost and the 192.168.115 subnet). Connections to other shares are still allowed. Because the + IPC$ share is the only share that is always accessible anonymously, this provides some level of protection + against attackers who do not know a valid username/password for your host. - If you use this method, then clients will be given an `access denied' - reply when they try to access the IPC$ share. Those clients will not be able to - browse shares and may also be unable to access some other resources. This is not - recommended unless for some reason you cannot use one of the other methods just discussed. +access denied +IPC$ +browse shares + If you use this method, then clients will be given an `access denied' reply when they try + to access the IPC$ share. Those clients will not be able to browse shares and may also be unable to access + some other resources. This is not recommended unless for some reason you cannot use one of the other methods + just discussed. @@ -246,6 +310,7 @@ before someone will find yet another vulnerability. NTLMv2 Security +NTLMv2 To configure NTLMv2 authentication, the following registry keys are worth knowing about: @@ -281,10 +346,13 @@ before someone will find yet another vulnerability. Upgrading Samba -Please check regularly on http://www.samba.org/ for updates and -important announcements. Occasionally security releases are made, and -it is highly recommended to upgrade Samba when a security vulnerability -is discovered. Check with your OS vendor for OS-specific upgrades. +updates +important announcements +security vulnerability +Please check regularly on http://www.samba.org/ for +updates and important announcements. Occasionally security releases are made, and it is highly recommended to +upgrade Samba promptly when a security vulnerability is discovered. Check with your OS vendor for OS-specific +upgrades. @@ -293,17 +361,17 @@ is discovered. Check with your OS vendor for OS-specific upgrades. Common Errors -If all of Samba and host platform configurations were really as intuitive as one might like them to be, this -section would not be necessary. Security issues are often vexing for a support person to resolve, not -because of the complexity of the problem, but because most administrators who post what turns -out to be a security problem request are totally convinced that the problem is with Samba. +If all Samba and host platform configurations were really as intuitive as one might like them to be, this +chapter would not be necessary. Security issues are often vexing for a support person to resolve, not because +of the complexity of the problem, but because most administrators who post what turns out to be a security +problem request are totally convinced that the problem is with Samba. Smbclient Works on Localhost, but the Network Is Dead - This is a common problem. Red Hat Linux (and others) installs a default firewall. + This is a common problem. Linux vendors tend to install a default firewall. With the default firewall in place, only traffic on the loopback adapter (IP address 127.0.0.1) is allowed through the firewall. @@ -317,36 +385,41 @@ out to be a security problem request are totally convinced that the problem is w - Why Can Users Access Home Directories of Other Users? + Why Can Users Access Other Users Home Directories? - We are unable to keep individual users from mapping to any other user's - home directory once they have supplied a valid password! They only need - to enter their own password. I have not found any method to configure - Samba so that users may map only their own home directory. +mapping home directory +own home directory + We are unable to keep individual users from mapping to any other user's home directory once they have + supplied a valid password! They only need to enter their own password. I have not found any method to + configure Samba so that users may map only their own home directory. - User xyzzy can map his home directory. Once mapped, user xyzzy can also map - anyone else's home directory. + User xyzzy can map his home directory. Once mapped, user xyzzy can also map anyone else's home directory. - This is not a security flaw, it is by design. Samba allows users to have - exactly the same access to the UNIX file system as when they were logged - onto the UNIX box, except that it only allows such views onto the file +security flaw +defined shares + This is not a security flaw, it is by design. Samba allows users to have exactly the same access to the UNIX + file system as when they were logged onto the UNIX box, except that it only allows such views onto the file system as are allowed by the defined shares. +UNIX home directories +permissions If your UNIX home directories are set up so that one user can happily cd into another user's directory and execute ls, the UNIX security solution is to change file permissions on the user's home directories so that the cd and ls are denied. +security policies +permissions Samba tries very hard not to second guess the UNIX administrator's security policies and trusts the UNIX admin to set the policies and permissions he or she desires. @@ -360,11 +433,11 @@ out to be a security problem request are totally convinced that the problem is w The works in conjunction with the list, so to get the behavior you require, add the line: -%S - + %S + This is equivalent to adding -%S + %S to the definition of the share, as recommended in the &smb.conf; man page. diff --git a/docs/Samba3-HOWTO/TOSHARG-locking.xml b/docs/Samba3-HOWTO/TOSHARG-locking.xml index e76f456ffa2..4a433fb6c3c 100644 --- a/docs/Samba3-HOWTO/TOSHARG-locking.xml +++ b/docs/Samba3-HOWTO/TOSHARG-locking.xml @@ -69,7 +69,7 @@ server as well as on each MS Windows client! deny modes There are two types of locking that need to be performed by an SMB server. The first is record locking that allows a client to lock -a range of bytes in a open file. The second is the deny modes +a range of bytes in an open file. The second is the deny modes that are specified when a file is open. @@ -92,7 +92,7 @@ many more differences, too many to be listed here. record locking byte-range lock -Samba 2.2 and above implement record locking completely independent of the +Samba 2.2 and above implement record locking completely independently of the underlying UNIX system. If a byte-range lock that the client requests happens to fall into the range of 0 to 2^31, Samba hands this request down to the UNIX system. No other locks can be seen by UNIX, anyway. @@ -103,8 +103,8 @@ No other locks can be seen by UNIX, anyway. rpc.lockd Strictly speaking, an SMB server should check for locks before every read and write call on a file. Unfortunately, with the way fcntl() works, this can be slow and may overstress -the rpc.lockd. This is almost always unnecessary because clients are supposed to -independently make locking calls before reads and writes if locking is +the rpc.lockd. This is almost always unnecessary because clients are +independently supposed to make locking calls before reads and writes if locking is important to them. By default, Samba only makes locking calls when explicitly asked to by a client, but if you set yes, it will make lock checking calls on every read and write call. @@ -450,13 +450,10 @@ regularly opening the same file. Multiuser databases management bottleneck oplocks disabled -Multiuser databases clearly pose a risk due to their very nature &smbmdash; -they are typically heavily accessed by numerous users at random -intervals. Placing a multiuser database on a share with oplocks -enabled will likely result in a locking management bottleneck -on the Samba server. Whether the database application is developed -in-house or a commercially available product, ensure that the share -has oplocks disabled. +Multiuser databases clearly pose a risk due to their very nature &smbmdash; they are typically heavily +accessed by numerous users at random intervals. Placing a multiuser database on a share with oplocks enabled +will likely result in a locking management bottleneck on the Samba server. Whether the database application is +developed in-house or a commercially available product, ensure that the share has oplocks disabled. @@ -470,18 +467,13 @@ has oplocks disabled. client-side data caching oplocks management disabling oplocks -Process data management (PDM) applications such as IMAN, Enovia, and -Clearcase are increasing in usage with Windows client platforms and -therefore with SMB datastores. PDM applications manage multiuser -environments for critical data security and access. The typical PDM -environment is usually associated with sophisticated client design -applications that will load data locally as demanded. In addition, the -PDM application will usually monitor the data state of each client. -In this case, client-side data caching is best left to the local -application and PDM server to negotiate and maintain. It is -appropriate to eliminate the client OS from any caching tasks, and the -server from any oplocks management, by disabling oplocks on -the share. +Process data management (PDM) applications such as IMAN, Enovia, and Clearcase are increasing in usage with +Windows client platforms and therefore with SMB datastores. PDM applications manage multiuser environments for +critical data security and access. The typical PDM environment is usually associated with sophisticated client +design applications that will load data locally as demanded. In addition, the PDM application will usually +monitor the data state of each client. In this case, client-side data caching is best left to the local +application and PDM server to negotiate and maintain. It is appropriate to eliminate the client OS from any +caching tasks, and the server from any oplocks management, by disabling oplocks on the share. @@ -491,16 +483,12 @@ the share. oplock break -Samba includes an &smb.conf; parameter called - that changes -the user accessing a share from the incoming user to whatever user is -defined by the smb.conf variable. If oplocks is enabled -on a share, the change in user access causes an oplock break to be sent -to the client, even if the user has not explicitly loaded a file. In -cases where the network is slow or unreliable, an oplock break can -become lost without the user even accessing a file. This can cause -apparent performance degradation as the client continually reconnects -to overcome the lost oplock break. +Samba includes an &smb.conf; parameter called that changes the user +accessing a share from the incoming user to whatever user is defined by the &smb.conf; variable. If oplocks is +enabled on a share, the change in user access causes an oplock break to be sent to the client, even if the +user has not explicitly loaded a file. In cases where the network is slow or unreliable, an oplock break can +become lost without the user even accessing a file. This can cause apparent performance degradation as the +client continually reconnects to overcome the lost oplock break. @@ -542,7 +530,7 @@ likely cause problems. The parameters are turn oplocks off For most users, administrators, and environments, if these parameters -are required, then the better option is to simply turn oplocks off. +are required, then the better option is simply to turn oplocks off. The Samba SWAT help text for both parameters reads: Do not change this parameter unless you have read and understood the Samba oplock code. This is good advice. @@ -1096,6 +1084,7 @@ tdb(/usr/local/samba_2.2.7/var/locks/locking.tdb): rec_read bad magic Problems Saving Files in MS Office on Windows XP +KB 812937 This is a bug in Windows XP. More information can be found in Microsoft Knowledge Base article 812937. @@ -1107,6 +1096,7 @@ tdb(/usr/local/samba_2.2.7/var/locks/locking.tdb): rec_read bad magic It sometimes takes approximately 35 seconds to delete files over the network after XP SP1 has been applied. +KB 811492 This is a bug in Windows XP. More information can be found in Microsoft Knowledge Base article 811492. @@ -1117,9 +1107,9 @@ tdb(/usr/local/samba_2.2.7/var/locks/locking.tdb): rec_read bad magic Additional Reading -You may want to check for an updated version of this white paper on our Web site from -time to time. Many of our white papers are updated as information changes. For those papers, -the last edited date is always at the top of the paper. +You may want to check for an updated documentation regarding file and record locking issues on the Microsoft +Support web site. Additionally, a search for the work +locking on the Samba web site. @@ -1127,26 +1117,23 @@ Section of the Microsoft MSDN Library on opportunistic locking: -Opportunistic Locks, Microsoft Developer Network (MSDN), Windows Development > -Windows Base Services > Files and I/O > SDK Documentation > File Storage > File Systems -> About File Systems > Opportunistic Locks, Microsoft Corporation -http://msdn.microsoft.com/library/en-us/fileio/storage_5yk3.asp. +KB 224992 +Microsoft Knowledge Base, Maintaining Transactional Integrity with OPLOCKS, +Microsoft Corporation, April 1999, Microsoft +KB Article 224992. - Microsoft Knowledge Base Article Q224992, Maintaining Transactional Integrity -with OPLOCKS, -Microsoft Corporation, April 1999, http://support.microsoft.com/default.aspx?scid=kb;en-us;Q224992. +KB 296264 +Microsoft Knowledge Base, Configuring Opportunistic Locking in Windows 2000, +Microsoft Corporation, April 2001 Microsoft KB Article 296264. -Microsoft Knowledge Base Article Q296264, Configuring Opportunistic Locking in Windows 2000, -Microsoft Corporation, April 2001 http://support.microsoft.com/default.aspx?scid=kb;en-us;Q296264. - - - -Microsoft Knowledge Base Article Q129202, PC Ext: Explanation of Opportunistic Locking on Windows NT, -Microsoft Corporation, April 1995 http://support.microsoft.com/default.aspx?scid=kb;en-us;Q129202. +KB 129202 +Microsoft Knowledge Base, PC Ext: Explanation of Opportunistic Locking on Windows NT, +Microsoft Corporation, April 1995 Microsoft +KB Article 129202. -- 2.11.4.GIT