Bug 6485 - force_lookup parameter to get_peer_name not effective
Summary: force_lookup parameter to get_peer_name not effective
Status: RESOLVED WORKSFORME
Alias: None
Product: Samba 3.3
Classification: Unclassified
Component: Domain Control (show other bugs)
Version: 3.3.5
Hardware: Sparc Solaris
: P3 normal
Target Milestone: ---
Assignee: Guenther Deschner
QA Contact: Samba QA Contact
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-06-18 07:40 UTC by Tom Crummey
Modified: 2021-02-27 14:59 UTC (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tom Crummey 2009-06-18 07:40:22 UTC
If the hostname lookups config parameter is false (the default) then force_lookup will not cause get_peer_name to lookup and return the peer's DNS name. The reason is that if get_peer_name has previously been called with force_lookup set to false and hostname lookups is false, the IP address is cached instead of the name and subsequent calls always return the cached value even if force_lookup is true.

get_peer_name() is in util_sock.c at line 1815

The code would seem to imply that it was intended that force_lookup would cause a full DNS lookup no matter what the status of hostname lookups, but it doesn't work due to the cache feature.

What is the intended behaviour?
As it is, the result is that hostnames in allow hosts or deny hosts lists will not be matched unless hostname lookups is true. This is not documented in the hosts allow/deny section of the man page, though it is hinted at in the hostname lookups section.

I'm happy to provide code/words to do one of the following:

fix get_peer_name to honour the force_lookup flag (would need some input on how the cache works)
add some words to hosts allow/deny manual section saying that hostnames will never be matched if hostname lookups is false
add some words to the %M section of the manual page saying that IP addresses will appear unless hostname lookups is true.
Comment 1 Daniel Kobras (dead mail address) 2009-10-13 07:00:08 UTC
We've hit this problem when upgrading from 3.0.28a to 3.2.15: In the 3.0 version, hostnames in hosts allow/deny were correctly matched even without "hostname lookups = yes". In 3.2, we get

[2009/10/13 09:56:02,  3] lib/access.c:check_access(396)
  check_access: hostnames in host allow/deny list.
[2009/10/13 09:56:02,  0] lib/access.c:check_access(410)
  Denied connection from 1.2.3.4 (1.2.3.4)

This indicates that get_peer_name() returned an IP address instead of a hostname even with parameter "force_lookup" set as true. Reverse lookup of "1.2.3.4" works fine on the Samba server.

For us using "hosts allow" only, this just implies a regression from 3.0 to 3.2. However, considering configurations like "hosts deny = <hostname>", the issue amounts to a security problem, I believe.
Comment 2 Björn Jacke 2021-02-27 14:59:28 UTC
force_lookup has been removed long ago