[icedtea-web] RFC: integrate proxy configuration into netx/plugin

Omair Majid omajid at redhat.com
Tue Nov 23 07:08:38 PST 2010


On 11/22/2010 03:17 PM, Deepak Bhole wrote:
> * Omair Majid<omajid at redhat.com>  [2010-11-18 18:16]:
>> On 11/17/2010 04:24 PM, Deepak Bhole wrote:
>>> * Omair Majid<omajid at redhat.com>   [2010-11-15 12:27]:
>>>> Hi,
>>>>
>>> ...
>>>> +
>>>> +    /**
>>>> +     * Returns true if the host is the hostname or the IP address of the
>>>> +     * localhost
>>>> +     */
>>>> +    private boolean isLocalHost(String host) {
>>>> +        if (host.equals("localhost")) {
>>>> +            return true;
>>>> +        }
>>>> +
>>>> +        if (host.equals("127.0.0.1")) {
>>>> +            return true;
>>>> +        }
>>>> +
>>>> +        try {
>>>> +            if (host.equals(InetAddress.getLocalHost().getHostName())) {
>>>> +                return true;
>>>> +            }
>>>> +        } catch (UnknownHostException e) {
>>>> +            // continue
>>>> +        }
>>>> +
>>>> +        try {
>>>> +            if (host.equals(InetAddress.getLocalHost().getHostAddress())) {
>>>> +                return true;
>>>> +            }
>>>> +        } catch (UnknownHostException e) {
>>>> +            // continue
>>>> +        }
>>>> +
>>>> +        return false;
>>>> +    }
>>>> +
>>>
>>> The above check will fail for something like 127.0.0.2 which is also
>>> local. Can't we use InetAddress.isLoopbackAddress() here?
>>>
>>
>> I actually wanted to avoid doing a DNS lookup on the (possibly
>> untrusted) hostname (not sure if that even matters), but I cant see
>> another way. Fixed using the method you suggested. The last two
>> conditions are still present as they check if something like
>> "fully.qualified.domain.name" is the local machine, something that
>> isLoopbackAddress does not do.
>>
>
> Looks good, OK for HEAD!
>

Thanks. Pushed to HEAD.

Cheers,
Omair



More information about the distro-pkg-dev mailing list