public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting
@ 2004-08-06  7:59 a dot guru at sympatico dot ca
  2004-08-06  8:01 ` [Bug libc/304] " a dot guru at sympatico dot ca
                   ` (17 more replies)
  0 siblings, 18 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-06  7:59 UTC (permalink / raw)
  To: glibc-bugs

According to

  <http://www.opengroup.org/onlinepubs/009695399/functions/getaddrinfo.html>,

regarding AI_CANONNAME

  "A numeric host address string is not a ``name'', and thus does not
   have a ``canonical name'' form; no address to host name translation
   is performed. See below for handling of the case where a canonical
   name cannot be obtained."

  "if the canonical name is not available, then ai_canonname shall
   refer to the nodename argument or a string with the same contents."

The current glibc version of getaddrinfo() attempts to fill
ai_canonname even when the name argument turned out to be an
IP address.  The caller might count on the fact that no DNS server
is ever contacted on his behalf when he provides a numerical address
(for privacy or security reasons).  This is fixed by the attached
patch.

Also

  "the ai_canonname field of the first returned addrinfo structure"

Since the glibc implementation of getaddrinfo() performs sorting of
these structures according to RFC 3484, which one of them is the
first is only known after sorting.  Therefore, the appropriate
ai_canonname field can only be filled after the sort is done.  The
implementation also has the problem that it attemptsto fill the
field for many structures when more than one service is found (first
value of at2, _all_ values of st2 in the nested for loops of
gaih_inet()).  The attached patch also attempts to solve this problem.
We have to be careful with memory in the solution because

  "The freeaddrinfo() function shall support the freeing of
   arbitrary sublists of an addrinfo list originally returned
   by getaddrinfo()"

        ********

There is another issue with AI_CANONNAME that is _not_ addressed
by the attached patch.

  "the function shall attempt to determine the canonical name
   corresponding to nodename (for example, if nodename is an
   alias or shorthand notation for a complete name)."

  "the terms ``canonical name'' and ``alias''"

  "Domain Name System implementations are expected to interpret
   them as they are used in RFC 1034."

>From RFC 1034:

  "CNAME identifies the canonical name of an alias"

  "CNAME chains should be followed"

  "A name error indicating that the name does not exist.  This
   may include CNAME RRs that indicate that the original query
   name was an alias for a name which does not exist."

This implies that, in the DNS case, ai_canonname should contain
a copy of the "owner" of the found A or AAAA (or A6) resource
record(s) that provided the address(es) that were found, possibly
after having followed a CNAME chain.

The current implementation systematically uses __gethostbyaddr_r(),
which translates into a PTR query in the DNS case, instead of somehow
using the result of the AAAA and A queries that were already performed
(since we must only fill ai_canonname if the name argument is not
null and is an actual name, not an address).  There are problems with
this.  There might not even be a PTR RR even if there is one or more
AAAA or A RR(s).  If there is a PTR RR, it may be on another DNS server
than the AAAA or A one and the caller might not want or expect that
this other server be contacted on his behalf (for privacy or security
reasons).

I don't know how to fix this behavior because I am not familiar with
the implementation of the lookup functions on which getaddrinfo() is
based.

        ********

The proposed patch follows.  I wrote it and I am putting it in the
public domain.  It is relative to cvs version 1.63 of the file.

-- 
           Summary: AI_CANONNAME in getaddrinfo(): name is an address;
                    result sorting
           Product: glibc
           Version: 2.3.3
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: gotom at debian dot or dot jp
        ReportedBy: a dot guru at sympatico dot ca
                CC: glibc-bugs at sources dot redhat dot com
 GCC build triplet: n/a
  GCC host triplet: n/a
GCC target triplet: n/a


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
@ 2004-08-06  8:01 ` a dot guru at sympatico dot ca
  2004-08-06  8:49 ` a dot guru at sympatico dot ca
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-06  8:01 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From a dot guru at sympatico dot ca  2004-08-06 08:01 -------
Created an attachment (id=152)
 --> (http://sources.redhat.com/bugzilla/attachment.cgi?id=152&action=view)
patch for first 2 of 3 problems described


-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
  2004-08-06  8:01 ` [Bug libc/304] " a dot guru at sympatico dot ca
@ 2004-08-06  8:49 ` a dot guru at sympatico dot ca
  2004-08-08  0:30 ` a dot guru at sympatico dot ca
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-06  8:49 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From a dot guru at sympatico dot ca  2004-08-06 08:49 -------
Created an attachment (id=153)
 --> (http://sources.redhat.com/bugzilla/attachment.cgi?id=153&action=view)
oops... this is still necessary (apply on top of first patch)


-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
  2004-08-06  8:01 ` [Bug libc/304] " a dot guru at sympatico dot ca
  2004-08-06  8:49 ` a dot guru at sympatico dot ca
@ 2004-08-08  0:30 ` a dot guru at sympatico dot ca
  2004-08-08  0:38 ` a dot guru at sympatico dot ca
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-08  0:30 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From a dot guru at sympatico dot ca  2004-08-08 00:30 -------
Created an attachment (id=155)
 --> (http://sources.redhat.com/bugzilla/attachment.cgi?id=155&action=view)
patch for ""If hints is a null pointer, ... value zero for the ai_flags... "


-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (2 preceding siblings ...)
  2004-08-08  0:30 ` a dot guru at sympatico dot ca
@ 2004-08-08  0:38 ` a dot guru at sympatico dot ca
  2004-08-08  0:44 ` a dot guru at sympatico dot ca
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-08  0:38 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From a dot guru at sympatico dot ca  2004-08-08 00:38 -------
Created an attachment (id=156)
 --> (http://sources.redhat.com/bugzilla/attachment.cgi?id=156&action=view)
patch to solve third of 3 problems described


-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (3 preceding siblings ...)
  2004-08-08  0:38 ` a dot guru at sympatico dot ca
@ 2004-08-08  0:44 ` a dot guru at sympatico dot ca
  2004-08-16 14:25 ` darin at meer dot net
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-08  0:44 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From a dot guru at sympatico dot ca  2004-08-08 00:44 -------
Created an attachment (id=157)
 --> (http://sources.redhat.com/bugzilla/attachment.cgi?id=157&action=view)
Fix typo + safety check.  (Apply on top of first patch.)


-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (4 preceding siblings ...)
  2004-08-08  0:44 ` a dot guru at sympatico dot ca
@ 2004-08-16 14:25 ` darin at meer dot net
  2004-08-16 18:52 ` drepper at redhat dot com
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: darin at meer dot net @ 2004-08-16 14:25 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |darin at meer dot net


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (5 preceding siblings ...)
  2004-08-16 14:25 ` darin at meer dot net
@ 2004-08-16 18:52 ` drepper at redhat dot com
  2004-08-16 18:54 ` drepper at redhat dot com
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: drepper at redhat dot com @ 2004-08-16 18:52 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2004-08-16 18:52 -------
None of this applies to the current sources anymore.

Consider updating your comments for the current sources and mark the patches
which are not useful as obsolete.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |drepper at redhat dot com
             Status|NEW                         |WAITING


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (6 preceding siblings ...)
  2004-08-16 18:52 ` drepper at redhat dot com
@ 2004-08-16 18:54 ` drepper at redhat dot com
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: drepper at redhat dot com @ 2004-08-16 18:54 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|gotom at debian dot or dot  |drepper at redhat dot com
                   |jp                          |
             Status|WAITING                     |ASSIGNED


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (7 preceding siblings ...)
  2004-08-16 18:54 ` drepper at redhat dot com
@ 2004-08-17  4:13 ` a dot guru at sympatico dot ca
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-17  4:13 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #152 is|0                           |1
           obsolete|                            |


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (9 preceding siblings ...)
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
@ 2004-08-17  4:13 ` a dot guru at sympatico dot ca
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-17  4:13 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #157 is|0                           |1
           obsolete|                            |


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (8 preceding siblings ...)
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
@ 2004-08-17  4:13 ` a dot guru at sympatico dot ca
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-17  4:13 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #156 is|0                           |1
           obsolete|                            |


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (10 preceding siblings ...)
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
@ 2004-08-17  4:13 ` a dot guru at sympatico dot ca
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-17  4:13 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #153 is|0                           |1
           obsolete|                            |


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (11 preceding siblings ...)
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
@ 2004-08-17  4:13 ` a dot guru at sympatico dot ca
  2004-08-17  4:20 ` a dot guru at sympatico dot ca
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-17  4:13 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #155 is|0                           |1
           obsolete|                            |


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (12 preceding siblings ...)
  2004-08-17  4:13 ` a dot guru at sympatico dot ca
@ 2004-08-17  4:20 ` a dot guru at sympatico dot ca
  2004-08-17  4:22 ` a dot guru at sympatico dot ca
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-17  4:20 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From a dot guru at sympatico dot ca  2004-08-17 04:19 -------
This comment replaces my previous ones.
All quotes are from

  <http://www.opengroup.org/onlinepubs/009695399/functions/getaddrinfo.html>.

All issues relative to cvs version 1.67 of getaddrinfo.c, which is
the latest at the time of writing.

Issues:

	-- "The freeaddrinfo() function shall support the freeing of
	    arbitrary sublists of an addrinfo list originally returned
	    by getaddrinfo()."

		For example:

			struct addrinfo hints = { .ai_flags = AI_CANNONNAME };
			rc = getaddrinfo(nodename, servname, &hints, &res);
			freeaddrinfo(res->ai_next);
			printf("%s\n", res->ai_canonname);

		This is legal (except for the error and non-NULL checkings).

		The problem is that the way ai_canonname is allocated
		(in the same malloc() as the original struct addrinfo
		itself), the first struct addrinfo after reordering may
		be other than the original one and now contains a pointer
		to memory in another malloc(), that of the original one.
		By the time the printf() above is executed, we may
		dereference freed memory.

		The solution is to either allocate ai_canonname separately
		(which is what I have done) or realloc() the new first
		struct addrinfo if it is not the original one and store a
		copy of ai_canonname in it.

		In the new patch, notice earlier use of local_hints, removal
		of "const" in prototypes, usage of req->ai_canonname, usage
		of strdup(), and usage of free(... ai_canonname).

	-- "In this hints structure every member other than ai_flags,
	    ai_family, ai_socktype, and ai_protocol shall be set to zero
	    or a null pointer."

	   "If hints is a null pointer, the behavior shall be as if it
	    referred to a structure containing the value zero for the
	    ai_flags, ai_socktype, and ai_protocol fields, and AF_UNSPEC
	    for the ai_family field."

		I removed all fields which should be zero in the
		initializer of default_hints which will accomplish
		just that.  No more AI_DEFAULT.

	-- "If the AI_CANONNAME flag is specified and the nodename argument
	    is not null..."

	   "A numeric host address string is not a ``name'', and thus
	    does not have a ``canonical name'' form; no address to host
	    name translation is performed. See below for handling of
	    the case where a canonical name cannot be obtained."

	   "... if the canonical name is not available, then ai_canonname
	    shall refer to the nodename argument or a string with the
	    same contents."

		Here, the nodename argument should be an unmodified
		"name", not some transformation of it by libidn.
		I've called the transformed version "iname" and used
		it where appropriate when HAVE_LIBIDN.

	-- The ai_canonname field should be the result of following a
	   CNAME RR chain (if any) to the _owner_ of an AAAA or A record,
	   not the result of waiting to follow those address records
	   (there may be many) then following back PTR RRs (which may
	   be one of many or not exist at all for each address record).
	   See original bug description for more details.

		I didn't remove the code that uses __gethostbyaddr_r(),
		just in case ai_canonname has not be found by then,
		but maybe it should just be gone altogether.

	-- Each and every call to resolving functions (through NSS or
	   direct) may result in network traffic or at least file
	   manipulations.  (Assume there is no cache, which is a
	   possibility.)  We should always avoid calling such a function
	   if the result it can provide could have been extracted from
	   a previous call.

		I tried to set canon as early as possible and only if
		necessary.

	-- Weird returned struct hostent are possible.

		Thus the (h && h->h_name && h->h_name[0]) checks.


-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (13 preceding siblings ...)
  2004-08-17  4:20 ` a dot guru at sympatico dot ca
@ 2004-08-17  4:22 ` a dot guru at sympatico dot ca
  2004-08-24 18:33 ` wchang0222 at aol dot com
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 21+ messages in thread
From: a dot guru at sympatico dot ca @ 2004-08-17  4:22 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From a dot guru at sympatico dot ca  2004-08-17 04:22 -------
Created an attachment (id=165)
 --> (http://sources.redhat.com/bugzilla/attachment.cgi?id=165&action=view)
new patch for cvs version 1.67 of getaddrinfo.c 


-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (14 preceding siblings ...)
  2004-08-17  4:22 ` a dot guru at sympatico dot ca
@ 2004-08-24 18:33 ` wchang0222 at aol dot com
  2004-09-26 21:35 ` drepper at redhat dot com
  2005-09-23  3:18 ` drepper at redhat dot com
  17 siblings, 0 replies; 21+ messages in thread
From: wchang0222 at aol dot com @ 2004-08-24 18:33 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |wchang0222 at aol dot com


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (15 preceding siblings ...)
  2004-08-24 18:33 ` wchang0222 at aol dot com
@ 2004-09-26 21:35 ` drepper at redhat dot com
  2005-09-23  3:18 ` drepper at redhat dot com
  17 siblings, 0 replies; 21+ messages in thread
From: drepper at redhat dot com @ 2004-09-26 21:35 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2004-09-26 21:35 -------
Once again, getaddrinfo changed significantly.  Do you still think something is
wrong?

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |WAITING


http://sources.redhat.com/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
  2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
                   ` (16 preceding siblings ...)
  2004-09-26 21:35 ` drepper at redhat dot com
@ 2005-09-23  3:18 ` drepper at redhat dot com
  17 siblings, 0 replies; 21+ messages in thread
From: drepper at redhat dot com @ 2005-09-23  3:18 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2005-09-23 03:18 -------
No reply in almost a year, closing.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |WORKSFORME


http://sourceware.org/bugzilla/show_bug.cgi?id=304

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
       [not found] <bug-304-131@http.sourceware.org/bugzilla/>
  2014-02-16 19:35 ` jackie.rosen at hushmail dot com
@ 2014-05-28 19:41 ` schwab at sourceware dot org
  1 sibling, 0 replies; 21+ messages in thread
From: schwab at sourceware dot org @ 2014-05-28 19:41 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=304

Andreas Schwab <schwab at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|jackie.rosen at hushmail dot com   |

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Bug libc/304] AI_CANONNAME in getaddrinfo(): name is an address; result sorting
       [not found] <bug-304-131@http.sourceware.org/bugzilla/>
@ 2014-02-16 19:35 ` jackie.rosen at hushmail dot com
  2014-05-28 19:41 ` schwab at sourceware dot org
  1 sibling, 0 replies; 21+ messages in thread
From: jackie.rosen at hushmail dot com @ 2014-02-16 19:35 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=304

Jackie Rosen <jackie.rosen at hushmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jackie.rosen at hushmail dot com

--- Comment #11 from Jackie Rosen <jackie.rosen at hushmail dot com> ---
*** Bug 260998 has been marked as a duplicate of this bug. ***
Seen from the domain http://volichat.com
Page where seen: http://volichat.com/adult-chat-rooms
Marked for reference. Resolved as fixed @bugzilla.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2014-05-28 19:41 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-08-06  7:59 [Bug libc/304] New: AI_CANONNAME in getaddrinfo(): name is an address; result sorting a dot guru at sympatico dot ca
2004-08-06  8:01 ` [Bug libc/304] " a dot guru at sympatico dot ca
2004-08-06  8:49 ` a dot guru at sympatico dot ca
2004-08-08  0:30 ` a dot guru at sympatico dot ca
2004-08-08  0:38 ` a dot guru at sympatico dot ca
2004-08-08  0:44 ` a dot guru at sympatico dot ca
2004-08-16 14:25 ` darin at meer dot net
2004-08-16 18:52 ` drepper at redhat dot com
2004-08-16 18:54 ` drepper at redhat dot com
2004-08-17  4:13 ` a dot guru at sympatico dot ca
2004-08-17  4:13 ` a dot guru at sympatico dot ca
2004-08-17  4:13 ` a dot guru at sympatico dot ca
2004-08-17  4:13 ` a dot guru at sympatico dot ca
2004-08-17  4:13 ` a dot guru at sympatico dot ca
2004-08-17  4:20 ` a dot guru at sympatico dot ca
2004-08-17  4:22 ` a dot guru at sympatico dot ca
2004-08-24 18:33 ` wchang0222 at aol dot com
2004-09-26 21:35 ` drepper at redhat dot com
2005-09-23  3:18 ` drepper at redhat dot com
     [not found] <bug-304-131@http.sourceware.org/bugzilla/>
2014-02-16 19:35 ` jackie.rosen at hushmail dot com
2014-05-28 19:41 ` schwab at sourceware dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).