Issue Details (XML | Word | Printable)

Key: MODPYTHON-64
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Unassigned
Reporter: Deron Meranda
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
mod_python

local_addr and remote_addr not using APR to make IP address strings, breaks with IPv6

Created: 15/Jul/05 12:25 AM   Updated: 05/Mar/06 02:11 PM
Return to search
Issue 119 of 174 issue(s)
<< Previous | MODPYTHON-64 | Next >>
Component/s: core
Affects Version/s: 3.1.4
Fix Version/s: 3.2.7

Time Tracking:
Not Specified

Environment: Apache built with IPv6 support.

Resolution Date: 13/Nov/05 04:42 AM


 Description  « Hide
In the connection object the local_addr and remote_addr members are not
correctly built. This has the result that under IPv6-enabled Apache the IP address
strings are always zero-length.

I think the following diff fixes this by using the appropriate APR functions,
apr_sockaddr_ip_get() and apr_sockaddr_port_get(), to build these strings
(although I'm not an APR expert). This patch does appear to work correctly
for me.

--- connobject.c.orig 2004-02-16 14:47:27.000000000 -0500
+++ connobject.c 2005-07-14 11:22:09.076148325 -0400
@@ -292,12 +292,15 @@

 static PyObject *makeipaddr(struct apr_sockaddr_t *addr)
 {
- long x = ntohl(addr->sa.sin.sin_addr.s_addr);
- char buf[100];
- sprintf(buf, "%d.%d.%d.%d",
- (int) (x>>24) & 0xff, (int) (x>>16) & 0xff,
- (int) (x>> 8) & 0xff, (int) (x>> 0) & 0xff);
- return PyString_FromString(buf);
+ char *str = NULL;
+ apr_status_t rc;
+ PyObject *ret = NULL;
+
+ rc = apr_sockaddr_ip_get( &str, addr );
+ if (rc==APR_SUCCESS) {
+ ret = PyString_FromString( str );
+ }
+ return ret;
 }

 /**
@@ -311,7 +314,9 @@
     PyObject *addrobj = makeipaddr(addr);
     PyObject *ret = NULL;
     if (addrobj) {
- ret = Py_BuildValue("Oi", addrobj, ntohs(addr->sa.sin.sin_port));
+ apr_port_t port;
+ apr_sockaddr_port_get(&port, addr);
+ ret = Py_BuildValue("Oi", addrobj, port );
         Py_DECREF(addrobj);
     }
     return ret;


 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
No work has yet been logged on this issue.