public inbox for libc-hacker@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Fix ether/netgroup/publikey nss lookups
@ 2002-04-02 10:02 Jakub Jelinek
  2002-04-02 16:32 ` Ulrich Drepper
  0 siblings, 1 reply; 2+ messages in thread
From: Jakub Jelinek @ 2002-04-02 10:02 UTC (permalink / raw)
  To: Ulrich Drepper; +Cc: Glibc hackers

Hi!

2002-03-15 patch added internal_function to DB_LOOKUP_FCT, but unfortunately
some __nss_*_lookup calls are not done from within getXXbyYY_r.c, so
we ended up with crashes because caller put arguments on the stack while
callee expected them in registers.

2002-04-02  Jakub Jelinek  <jakub@redhat.com>

	* inet/ether_ntoh.c (__nss_ethers_lookup): Add internal_function.
	* inet/ether_hton.c (__nss_ethers_lookup): Likewise.
	* inet/getnetgrent_r.c (__nss_netgroup_lookup): Likewise.
	* sunrpc/netname.c (__nss_publickey_lookup): Likewise.
	* sunrpc/publickey.c (__nss_publickey_lookup): Likewise.

--- libc/inet/ether_ntoh.c.jj	Thu Aug 23 18:47:43 2001
+++ libc/inet/ether_ntoh.c	Tue Apr  2 19:56:41 2002
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997, 1999, 2001, 2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
 
@@ -31,7 +31,7 @@ typedef int (*lookup_function) (const st
 
 /* The lookup function for the first entry of this service.  */
 extern int __nss_ethers_lookup (service_user **nip, const char *name,
-				void **fctp);
+				void **fctp) internal_function;
 
 
 int
--- libc/inet/getnetgrent_r.c.jj	Fri Feb  8 12:04:02 2002
+++ libc/inet/getnetgrent_r.c	Tue Apr  2 20:01:20 2002
@@ -38,7 +38,7 @@ static struct __netgrent dataset;
 
 /* The lookup function for the first entry of this service.  */
 extern int __nss_netgroup_lookup (service_user **nip, const char *name,
-				  void **fctp);
+				  void **fctp) internal_function;
 
 
 /* Set up NIP to run through the services.  If ALL is zero, use NIP's
--- libc/inet/ether_hton.c.jj	Thu Aug 23 18:47:43 2001
+++ libc/inet/ether_hton.c	Tue Apr  2 19:55:52 2002
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1999, 2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
 
@@ -30,7 +30,7 @@ typedef int (*lookup_function) (const ch
 
 /* The lookup function for the first entry of this service.  */
 extern int __nss_ethers_lookup (service_user **nip, const char *name,
-				void **fctp);
+				void **fctp) internal_function;
 
 
 int
--- libc/sunrpc/netname.c.jj	Mon Jul 23 12:56:01 2001
+++ libc/sunrpc/netname.c	Tue Apr  2 20:03:35 2002
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997.
 
@@ -135,7 +135,7 @@ typedef int (*netname2user_function) (co
 				      uid_t *, gid_t *, int *, gid_t *);
 /* The lookup function for the first entry of this service.  */
 extern int __nss_publickey_lookup (service_user ** nip, const char *name,
-				   void **fctp);
+				   void **fctp) internal_function;
 
 int
 netname2user (const char netname[MAXNETNAMELEN + 1], uid_t * uidp, gid_t * gidp,
--- libc/sunrpc/publickey.c.jj	Mon Jul 23 12:56:01 2001
+++ libc/sunrpc/publickey.c	Tue Apr  2 20:04:11 2002
@@ -1,5 +1,5 @@
 /* Get public or secret key from key server.
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
 
@@ -33,7 +33,7 @@ typedef int (*secret_function) (const ch
 
 /* The lookup function for the first entry of this service.  */
 extern int __nss_publickey_lookup (service_user **nip, const char *name,
-				   void **fctp);
+				   void **fctp) internal_function;
 
 
 int

	Jakub

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

* Re: [PATCH] Fix ether/netgroup/publikey nss lookups
  2002-04-02 10:02 [PATCH] Fix ether/netgroup/publikey nss lookups Jakub Jelinek
@ 2002-04-02 16:32 ` Ulrich Drepper
  0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Drepper @ 2002-04-02 16:32 UTC (permalink / raw)
  To: Jakub Jelinek; +Cc: Glibc hackers

[-- Attachment #1: Type: text/plain, Size: 585 bytes --]

On Tue, 2002-04-02 at 10:02, Jakub Jelinek wrote:

> 2002-03-15 patch added internal_function to DB_LOOKUP_FCT, but unfortunately
> some __nss_*_lookup calls are not done from within getXXbyYY_r.c, so
> we ended up with crashes because caller put arguments on the stack while
> callee expected them in registers.

OK, I've applied the patch.  Thanks,

-- 
---------------.                          ,-.   1325 Chesapeake Terrace
Ulrich Drepper  \    ,-------------------'   \  Sunnyvale, CA 94089 USA
Red Hat          `--' drepper at redhat.com   `------------------------

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 232 bytes --]

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

end of thread, other threads:[~2002-04-03  0:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-04-02 10:02 [PATCH] Fix ether/netgroup/publikey nss lookups Jakub Jelinek
2002-04-02 16:32 ` Ulrich Drepper

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).