Bug 43588 - Tomcat uses hardcoded 127.0.0.1 for localhost
Summary: Tomcat uses hardcoded 127.0.0.1 for localhost
Status: RESOLVED FIXED
Alias: None
Product: Tomcat 6
Classification: Unclassified
Component: Catalina (show other bugs)
Version: unspecified
Hardware: PC Linux
: P2 normal (vote)
Target Milestone: default
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
: 44505 (view as bug list)
Depends on:
Blocks:
 
Reported: 2007-10-10 10:09 UTC by Roman Fiedler
Modified: 2008-03-31 14:55 UTC (History)
1 user (show)



Attachments
This patch changes hardcoded references of 127.0.0.1 (7.22 KB, patch)
2007-10-16 05:00 UTC, Paul Shemansky
Details | Diff
Revised patch. Please review / vote. (5.19 KB, patch)
2007-10-24 08:58 UTC, Paul Shemansky
Details | Diff
Incl. Nio (5.89 KB, patch)
2007-10-24 12:21 UTC, Filip Hanik
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Roman Fiedler 2007-10-10 10:09:09 UTC
Tomcat uses IP 127.0.0.1 when talking to localhost. This will be correct in most
cases but will not work on special setups, e.g. linux vserver guests where
127.0.0.1 is the host machine, the guest machine "localhost IP" can be any other
(e.g. 127.0.0.2 or 10.0.0.1). Though unusual, such configuration seems to be ok
according to the IP RFCs. 

The problem is that tomcat ignores this possibility and does not ask the OS for
the localhost IP via getAddressByName("localhost"), it uses a hardcoded
127.0.0.1, e.g.

./java/org/apache/catalina/startup/Catalina.java:            Socket socket = new
Socket("127.0.0.1", server.getPort());
Comment 1 Paul Shemansky 2007-10-16 05:00:21 UTC
Created attachment 20989 [details]
This patch changes hardcoded references of 127.0.0.1

Please review this patch, and ensure that there are no errors or potential
regression issues.  Apply accordingly.
Comment 2 Paul Shemansky 2007-10-24 08:58:34 UTC
Created attachment 21036 [details]
Revised patch.  Please review / vote.
Comment 3 Filip Hanik 2007-10-24 12:13:49 UTC
I think this patch is invalid,
for the end points, if I bind to an interface, then I can't unlock the accept by
doing ("localhost",port), since the port wont be bound to localhost at all.

granted, that the problem I'm describing is already existing, and not related to
the localhost bug

Filip
Comment 4 Filip Hanik 2007-10-24 12:14:27 UTC
ignore my previous comment, I'm a retard, didn't look into it enough
Comment 5 Filip Hanik 2007-10-24 12:21:16 UTC
Created attachment 21039 [details]
Incl. Nio

Added NIO connector to patch
Comment 6 Peter Rossbach 2007-10-29 23:18:51 UTC
Can we change the patch?

See comment at STATUS File:
-1: funkman InetAddress.getLocalHost() != localhost - it should be
            InetAddress.getByName("localhost").getHostAddress()
Comment 7 Paul Shemansky 2007-10-31 05:15:32 UTC
(In reply to comment #6)
> Can we change the patch?
> See comment at STATUS File:
> -1: funkman InetAddress.getLocalHost() != localhost - it should be
>             InetAddress.getByName("localhost").getHostAddress()

I will not claim to be an expert in IPv4 or IPv6.  Granted, after tracing the
actual InetAddress source code for both getLocalHost() and getByName(), I
believe the original patch should stay, keeping getLocalHost().  If anyone
disagrees with my choice, and feels that getByName("localhost") is better, I
would have to further recommend that we use : getAllByName("localhost")[0],
which is a shortcut to the new proposal.  If I am completely incorrect, I
apologize - please correct me in a separate email so that I have a better
understanding.

New Choices/My Votes :
1.) +1  - Keep : InetAddress.getLocalHost() and apply current proposed patch
2.) -1  - Change to new proposal : InetAddress.getByName("localhost")
3.) +1? - Change to new proposal 'shortcut' :
InetAddress.getAllByName("localhost")[0]

(In reply to comment #4)
> ignore my previous comment, I'm a retard, didn't look into it enough

Filip, did you get the same results I did?  Why did you agree with me?
Comment 8 Tim Funk 2007-10-31 05:27:18 UTC
InetAddress.getLocalHost().getHostAddress() does not necessarily return 
localhost - it (can and usually) returns the IP address that other folks can 
see.

This means that the shutdown listener by default would listen on a publicly 
addressable location - which means now ANYONE by default can shutdown tomcat 
instead of someone who has access to the machine. 
Comment 9 Paul Shemansky 2007-10-31 08:18:22 UTC
(In reply to comment #8)
Okay, I can see how that can definitely a problem.

However, by using getByName("localhost") OR getAllByName("localhost")[0], the
java.net API, seems to automatically use the "common" loopback address of
127.0.0.1, completely ignoring the system configuration.  This brings us back to
the original bug post which involves not being able to use any customized IP for
the "localhost" (i.e. 127.0.0.2 or 10.0.0.1).

Should we instead be looking to separate the shutdown listener somehow?

Comment 10 Lucas Galfaso 2007-10-31 19:05:05 UTC
(In reply to comment #9)
Instead of doing a refactor, and if no solution is best, why not just add a new
property "org.apache.tomcat.localhost.ip" that defaults to "127.0.0.1" that
whoever starts tomcat is able to override?
Not an automagic solution, but will address the original issue and will not
create any new security issues
Comment 11 Paul Shemansky 2007-11-01 04:46:31 UTC
(In reply to comment #10)
> (In reply to comment #9)
> Instead of doing a refactor, and if no solution is best, why not just add a new
> property "org.apache.tomcat.localhost.ip" that defaults to "127.0.0.1" that
> whoever starts tomcat is able to override?
> Not an automagic solution, but will address the original issue and will not
> create any new security issues

+1 - That still requires slight refactoring, but it sounds like a worthy idea to
me. ;)

Comment 12 Filip Hanik 2007-11-01 08:48:03 UTC
(In reply to comment #8)
> InetAddress.getLocalHost().getHostAddress() does not necessarily return 
> localhost - it (can and usually) returns the IP address that other folks can 
> see.
> 
> This means that the shutdown listener by default would listen on a publicly 
> addressable location - which means now ANYONE by default can shutdown tomcat 
> instead of someone who has access to the machine. 
> 

For all the connectors:
The correct way is doing InetAddress.getLocalHost().getHostAddress()
we are not trying to get the IP of "localhost" here, we are trying to just get
one of the interfaces that Tomcat listens to so that we can release the accept
thread. 

What I would suggest, use InetAddress.getLocalHost().getHostAddress() wherever
we need to access a port that is listening on 0.0.0.0, and file a separate
bugzilla item for the other locations

Filip
Comment 13 Marcel May 2007-12-21 10:14:58 UTC
Proposed solution for StandardServer.java:

Keep 127.0.0.1 as a default and enable an override 'address' field for a
different default ip address. So that you can set the shutdown ip address like
for the other connectors etc. in the server.xml. This is a very flexible and
consistent way to configure the shutdown ip address.
Comment 14 Tim Funk 2007-12-26 18:18:09 UTC
This was fixed with
http://svn.apache.org/viewvc?view=rev&revision=596761
Comment 15 Mark Thomas 2008-03-31 14:55:47 UTC
*** Bug 44505 has been marked as a duplicate of this bug. ***