mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
1998-12-01 Thorsten Kukuk <kukuk@vt.uni-paderborn.de> * sunrpc/auth_des.c: Use new XDR int32 functions for integers. * sunrpc/rpc/xdr.h: Add IXDR INT32 functions. * sunrpc/rpc_hout.c: Remove (u_long) casts in defines to avoid conflicts with new solaris version. * sunrpc/rpc_main.c: Fix bug in generating Makefile name (malloc doesn't zero allocated memory). * sunrpc/rpc_svcout.c: Local variables now starts with a _ to avoid conflicts with xdr functions. Solves PR libc/877. * nis/rpcsvc/nis.x: Use always uint32_t. * nis/rpcsvc/nis.h: Likewise. * nis/rpcsvc/nis_object.x: Likewise. 1998-12-01 Ulrich Drepper <drepper@cygnus.com> * math/libm-test.c: Various cleanups. Patch by Zack Weinberg. * sysdeps/unix/sysv/linux/alpha/setfpucw.c: Use correct type for parameter. Patch by Christian Gafton. * string/envz.h: Add prototype for envz_remove. Reported by Andreas Jaeger.
This commit is contained in:
24
ChangeLog
24
ChangeLog
@ -1,3 +1,27 @@
|
|||||||
|
1998-12-01 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
|
||||||
|
|
||||||
|
* sunrpc/auth_des.c: Use new XDR int32 functions for integers.
|
||||||
|
* sunrpc/rpc/xdr.h: Add IXDR INT32 functions.
|
||||||
|
* sunrpc/rpc_hout.c: Remove (u_long) casts in defines to avoid
|
||||||
|
conflicts with new solaris version.
|
||||||
|
* sunrpc/rpc_main.c: Fix bug in generating Makefile name (malloc
|
||||||
|
doesn't zero allocated memory).
|
||||||
|
* sunrpc/rpc_svcout.c: Local variables now starts with a _ to avoid
|
||||||
|
conflicts with xdr functions. Solves PR libc/877.
|
||||||
|
* nis/rpcsvc/nis.x: Use always uint32_t.
|
||||||
|
* nis/rpcsvc/nis.h: Likewise.
|
||||||
|
* nis/rpcsvc/nis_object.x: Likewise.
|
||||||
|
|
||||||
|
1998-12-01 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* math/libm-test.c: Various cleanups. Patch by Zack Weinberg.
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/setfpucw.c: Use correct type for
|
||||||
|
parameter. Patch by Christian Gafton.
|
||||||
|
|
||||||
|
* string/envz.h: Add prototype for envz_remove.
|
||||||
|
Reported by Andreas Jaeger.
|
||||||
|
|
||||||
1998-11-30 Mark Kettenis <kettenis@phys.uva.nl>
|
1998-11-30 Mark Kettenis <kettenis@phys.uva.nl>
|
||||||
|
|
||||||
* mach/Versions [libc, GLIBC_2.0]: Add __spin_lock,
|
* mach/Versions [libc, GLIBC_2.0]: Add __spin_lock,
|
||||||
|
10
FAQ.in
10
FAQ.in
@ -1140,6 +1140,16 @@ taken care in user programs using the firewall structures and therefore
|
|||||||
those programs (ipfw is AFAIK the only one) should deal with this problem
|
those programs (ipfw is AFAIK the only one) should deal with this problem
|
||||||
themselves.
|
themselves.
|
||||||
|
|
||||||
|
?? I get floods of warnings when I use -Wconversion and include
|
||||||
|
<string.h> or <math.h>.
|
||||||
|
|
||||||
|
{ZW} <string.h> and <math.h> intentionally use prototypes to override
|
||||||
|
argument promotion. -Wconversion warns about all these. You can safely
|
||||||
|
ignore the warnings.
|
||||||
|
|
||||||
|
-Wconversion isn't really intended for production use, only for shakedown
|
||||||
|
compiles after converting an old program to standard C.
|
||||||
|
|
||||||
|
|
||||||
? Miscellaneous
|
? Miscellaneous
|
||||||
|
|
||||||
|
1812
math/libm-test.c
1812
math/libm-test.c
File diff suppressed because it is too large
Load Diff
@ -119,8 +119,8 @@ enum nstype {
|
|||||||
typedef enum nstype nstype;
|
typedef enum nstype nstype;
|
||||||
|
|
||||||
struct oar_mask {
|
struct oar_mask {
|
||||||
u_int oa_rights;
|
uint32_t oa_rights;
|
||||||
zotypes oa_otype;
|
zotypes oa_otype;
|
||||||
};
|
};
|
||||||
typedef struct oar_mask oar_mask;
|
typedef struct oar_mask oar_mask;
|
||||||
|
|
||||||
@ -137,7 +137,7 @@ struct nis_server {
|
|||||||
u_int ep_len;
|
u_int ep_len;
|
||||||
endpoint *ep_val;
|
endpoint *ep_val;
|
||||||
} ep;
|
} ep;
|
||||||
u_int key_type;
|
uint32_t key_type;
|
||||||
netobj pkey;
|
netobj pkey;
|
||||||
};
|
};
|
||||||
typedef struct nis_server nis_server;
|
typedef struct nis_server nis_server;
|
||||||
@ -164,7 +164,7 @@ typedef struct directory_obj directory_obj;
|
|||||||
#define EN_ASN1 64
|
#define EN_ASN1 64
|
||||||
|
|
||||||
struct entry_col {
|
struct entry_col {
|
||||||
u_int ec_flags;
|
uint32_t ec_flags;
|
||||||
struct {
|
struct {
|
||||||
u_int ec_value_len;
|
u_int ec_value_len;
|
||||||
char *ec_value_val;
|
char *ec_value_val;
|
||||||
@ -182,7 +182,7 @@ struct entry_obj {
|
|||||||
typedef struct entry_obj entry_obj;
|
typedef struct entry_obj entry_obj;
|
||||||
|
|
||||||
struct group_obj {
|
struct group_obj {
|
||||||
u_int gr_flags;
|
uint32_t gr_flags;
|
||||||
struct {
|
struct {
|
||||||
u_int gr_members_len;
|
u_int gr_members_len;
|
||||||
nis_name *gr_members_val;
|
nis_name *gr_members_val;
|
||||||
@ -210,8 +210,8 @@ typedef struct link_obj link_obj;
|
|||||||
|
|
||||||
struct table_col {
|
struct table_col {
|
||||||
char *tc_name;
|
char *tc_name;
|
||||||
u_int tc_flags;
|
uint32_t tc_flags;
|
||||||
u_int tc_rights;
|
uint32_t tc_rights;
|
||||||
};
|
};
|
||||||
typedef struct table_col table_col;
|
typedef struct table_col table_col;
|
||||||
|
|
||||||
@ -255,7 +255,7 @@ struct nis_object {
|
|||||||
nis_name zo_owner;
|
nis_name zo_owner;
|
||||||
nis_name zo_group;
|
nis_name zo_group;
|
||||||
nis_name zo_domain;
|
nis_name zo_domain;
|
||||||
u_int zo_access;
|
uint32_t zo_access;
|
||||||
uint32_t zo_ttl;
|
uint32_t zo_ttl;
|
||||||
objdata zo_data;
|
objdata zo_data;
|
||||||
};
|
};
|
||||||
@ -344,7 +344,7 @@ struct ib_request {
|
|||||||
u_int ibr_srch_len;
|
u_int ibr_srch_len;
|
||||||
nis_attr *ibr_srch_val;
|
nis_attr *ibr_srch_val;
|
||||||
} ibr_srch;
|
} ibr_srch;
|
||||||
u_int ibr_flags;
|
uint32_t ibr_flags;
|
||||||
struct {
|
struct {
|
||||||
u_int ibr_obj_len;
|
u_int ibr_obj_len;
|
||||||
nis_object *ibr_obj_val;
|
nis_object *ibr_obj_val;
|
||||||
@ -408,7 +408,7 @@ struct cp_result {
|
|||||||
typedef struct cp_result cp_result;
|
typedef struct cp_result cp_result;
|
||||||
|
|
||||||
struct nis_tag {
|
struct nis_tag {
|
||||||
u_int tag_type;
|
uint32_t tag_type;
|
||||||
char *tag_val;
|
char *tag_val;
|
||||||
};
|
};
|
||||||
typedef struct nis_tag nis_tag;
|
typedef struct nis_tag nis_tag;
|
||||||
|
@ -51,9 +51,6 @@
|
|||||||
#if RPC_HDR
|
#if RPC_HDR
|
||||||
%#include <rpc/xdr.h>
|
%#include <rpc/xdr.h>
|
||||||
#endif
|
#endif
|
||||||
#if RPC_SVC
|
|
||||||
%#include "nis_svc.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Include the RPC Language description of NIS objects */
|
/* Include the RPC Language description of NIS objects */
|
||||||
#include "nis_object.x"
|
#include "nis_object.x"
|
||||||
@ -153,7 +150,7 @@ struct ns_request {
|
|||||||
struct ib_request {
|
struct ib_request {
|
||||||
nis_name ibr_name; /* The name of the Table */
|
nis_name ibr_name; /* The name of the Table */
|
||||||
nis_attr ibr_srch<>; /* The search critereia */
|
nis_attr ibr_srch<>; /* The search critereia */
|
||||||
u_int ibr_flags; /* Optional flags */
|
uint32_t ibr_flags; /* Optional flags */
|
||||||
nis_object ibr_obj<1>; /* optional object (add/modify) */
|
nis_object ibr_obj<1>; /* optional object (add/modify) */
|
||||||
nis_server ibr_cbhost<1>; /* Optional callback info */
|
nis_server ibr_cbhost<1>; /* Optional callback info */
|
||||||
u_int ibr_bufsize; /* Optional first/next bufsize */
|
u_int ibr_bufsize; /* Optional first/next bufsize */
|
||||||
@ -225,12 +222,12 @@ struct cp_result {
|
|||||||
* and to set or reset state variables.
|
* and to set or reset state variables.
|
||||||
*/
|
*/
|
||||||
struct nis_tag {
|
struct nis_tag {
|
||||||
u_int tag_type; /* Statistic tag (may vary) */
|
uint32_t tag_type; /* Statistic tag (may vary) */
|
||||||
string tag_val<>; /* Statistic value may also vary */
|
string tag_val<>; /* Statistic value may also vary */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct nis_taglist {
|
struct nis_taglist {
|
||||||
nis_tag tags<>; /* List of tags */
|
nis_tag tags<>; /* List of tags */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct dump_args {
|
struct dump_args {
|
||||||
@ -258,7 +255,7 @@ struct nis_bound_endpoint {
|
|||||||
endpoint ep;
|
endpoint ep;
|
||||||
int generation;
|
int generation;
|
||||||
int rank;
|
int rank;
|
||||||
u_int flags;
|
uint32_t flags;
|
||||||
int hostnum;
|
int hostnum;
|
||||||
int epnum;
|
int epnum;
|
||||||
nis_name uaddr;
|
nis_name uaddr;
|
||||||
@ -292,22 +289,6 @@ typedef struct nis_active_endpoint nis_active_endpoint;
|
|||||||
%#define NIS_BOUND 0x1
|
%#define NIS_BOUND 0x1
|
||||||
%#define NIS_TRANSIENT_ERRORS 0x2
|
%#define NIS_TRANSIENT_ERRORS 0x2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* What's going on here? Well, it's like this. When the service
|
|
||||||
* is being compiled it wants to have the service definition specific
|
|
||||||
* info included, and when the client is being compiled it wants that
|
|
||||||
* info. This includes the appropriate file which was generated by
|
|
||||||
* make in the protocols directory (probably /usr/include/rpcsvc).
|
|
||||||
*/
|
|
||||||
#ifdef RPC_SVC
|
|
||||||
%#include "nis_svc.h"
|
|
||||||
#endif
|
|
||||||
#ifdef RPC_CLNT
|
|
||||||
%#include "nis_clnt.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
program NIS_PROG {
|
program NIS_PROG {
|
||||||
|
|
||||||
/* RPC Language description of the NIS+ protocol */
|
/* RPC Language description of the NIS+ protocol */
|
||||||
|
@ -124,8 +124,8 @@ enum nstype {
|
|||||||
* administrator's approval.
|
* administrator's approval.
|
||||||
*/
|
*/
|
||||||
struct oar_mask {
|
struct oar_mask {
|
||||||
u_int oa_rights; /* Access rights mask */
|
uint32_t oa_rights; /* Access rights mask */
|
||||||
zotypes oa_otype; /* Object type */
|
zotypes oa_otype; /* Object type */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct endpoint {
|
struct endpoint {
|
||||||
@ -142,7 +142,7 @@ struct endpoint {
|
|||||||
struct nis_server {
|
struct nis_server {
|
||||||
nis_name name; /* Principal name of the server */
|
nis_name name; /* Principal name of the server */
|
||||||
endpoint ep<>; /* Universal addr(s) for server */
|
endpoint ep<>; /* Universal addr(s) for server */
|
||||||
u_int key_type; /* Public key type */
|
uint32_t key_type; /* Public key type */
|
||||||
netobj pkey; /* server's public key */
|
netobj pkey; /* server's public key */
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -170,8 +170,8 @@ const EN_MODIFIED = 8; /* Indicates entry is modified. */
|
|||||||
const EN_ASN1 = 64; /* Means contents use ASN.1 encoding */
|
const EN_ASN1 = 64; /* Means contents use ASN.1 encoding */
|
||||||
|
|
||||||
struct entry_col {
|
struct entry_col {
|
||||||
u_int ec_flags; /* Flags for this value */
|
uint32_t ec_flags; /* Flags for this value */
|
||||||
opaque ec_value<>; /* It's textual value */
|
opaque ec_value<>; /* It's textual value */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct entry_obj {
|
struct entry_obj {
|
||||||
@ -186,7 +186,7 @@ struct entry_obj {
|
|||||||
* name.directory and recursive groups are expressed as @groupname.directory
|
* name.directory and recursive groups are expressed as @groupname.directory
|
||||||
*/
|
*/
|
||||||
struct group_obj {
|
struct group_obj {
|
||||||
u_int gr_flags; /* Flags controlling group */
|
uint32_t gr_flags; /* Flags controlling group */
|
||||||
nis_name gr_members<>; /* List of names in group */
|
nis_name gr_members<>; /* List of names in group */
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -228,9 +228,9 @@ const TA_MODIFIED = 32; /* Means this columns attrs are modified*/
|
|||||||
const TA_ASN1 = 64; /* Means contents use ASN.1 encoding */
|
const TA_ASN1 = 64; /* Means contents use ASN.1 encoding */
|
||||||
|
|
||||||
struct table_col {
|
struct table_col {
|
||||||
string tc_name<64>; /* Column Name */
|
string tc_name<64>; /* Column Name */
|
||||||
u_int tc_flags; /* control flags */
|
uint32_t tc_flags; /* control flags */
|
||||||
u_int tc_rights; /* Access rights mask */
|
uint32_t tc_rights; /* Access rights mask */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct table_obj {
|
struct table_obj {
|
||||||
@ -291,7 +291,7 @@ struct nis_object {
|
|||||||
nis_name zo_owner; /* NIS name of object owner. */
|
nis_name zo_owner; /* NIS name of object owner. */
|
||||||
nis_name zo_group; /* NIS name of access group. */
|
nis_name zo_group; /* NIS name of access group. */
|
||||||
nis_name zo_domain; /* The administrator for the object */
|
nis_name zo_domain; /* The administrator for the object */
|
||||||
u_int zo_access; /* Access rights (owner, group, world) */
|
uint32_t zo_access; /* Access rights (owner, group, world) */
|
||||||
uint32_t zo_ttl; /* Object's time to live in seconds. */
|
uint32_t zo_ttl; /* Object's time to live in seconds. */
|
||||||
objdata zo_data; /* Data structure for this type */
|
objdata zo_data; /* Data structure for this type */
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Routines for dealing with '\0' separated environment vectors
|
/* Routines for dealing with '\0' separated environment vectors
|
||||||
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
|
Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc.
|
||||||
Written by Miles Bader <miles@gnu.ai.mit.edu>
|
Written by Miles Bader <miles@gnu.ai.mit.edu>
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -55,6 +55,10 @@ extern error_t envz_merge __P ((char **__envz, size_t *__envz_len,
|
|||||||
__const char *__envz2, size_t __envz2_len,
|
__const char *__envz2, size_t __envz2_len,
|
||||||
int __override));
|
int __override));
|
||||||
|
|
||||||
|
/* Remove the entry for NAME from ENVZ & ENVZ_LEN, if any. */
|
||||||
|
extern void envz_remove __P ((char **__envz, size_t *__envz_len,
|
||||||
|
__const char *__name));
|
||||||
|
|
||||||
/* Remove null entries. */
|
/* Remove null entries. */
|
||||||
extern void envz_strip __P ((char **__envz, size_t *__envz_len));
|
extern void envz_strip __P ((char **__envz, size_t *__envz_len));
|
||||||
|
|
||||||
|
@ -70,8 +70,7 @@ static void authdes_destroy (AUTH *);
|
|||||||
static bool_t synchronize (struct sockaddr *, struct timeval *)
|
static bool_t synchronize (struct sockaddr *, struct timeval *)
|
||||||
internal_function;
|
internal_function;
|
||||||
|
|
||||||
static struct auth_ops authdes_ops =
|
static struct auth_ops authdes_ops = {
|
||||||
{
|
|
||||||
authdes_nextverf,
|
authdes_nextverf,
|
||||||
authdes_marshal,
|
authdes_marshal,
|
||||||
authdes_validate,
|
authdes_validate,
|
||||||
@ -83,23 +82,22 @@ static struct auth_ops authdes_ops =
|
|||||||
/*
|
/*
|
||||||
* This struct is pointed to by the ah_private field of an "AUTH *"
|
* This struct is pointed to by the ah_private field of an "AUTH *"
|
||||||
*/
|
*/
|
||||||
struct ad_private
|
struct ad_private {
|
||||||
{
|
char *ad_fullname; /* client's full name */
|
||||||
char *ad_fullname; /* client's full name */
|
u_int ad_fullnamelen; /* length of name, rounded up */
|
||||||
u_int ad_fullnamelen; /* length of name, rounded up */
|
char *ad_servername; /* server's full name */
|
||||||
char *ad_servername; /* server's full name */
|
u_int ad_servernamelen; /* length of name, rounded up */
|
||||||
u_int ad_servernamelen; /* length of name, rounded up */
|
uint32_t ad_window; /* client specified window */
|
||||||
u_int ad_window; /* client specified window */
|
bool_t ad_dosync; /* synchronize? */
|
||||||
bool_t ad_dosync; /* synchronize? */
|
struct sockaddr ad_syncaddr; /* remote host to synch with */
|
||||||
struct sockaddr ad_syncaddr; /* remote host to synch with */
|
struct timeval ad_timediff; /* server's time - client's time */
|
||||||
struct timeval ad_timediff; /* server's time - client's time */
|
u_long ad_nickname; /* server's nickname for client */
|
||||||
u_long ad_nickname; /* server's nickname for client */
|
struct authdes_cred ad_cred; /* storage for credential */
|
||||||
struct authdes_cred ad_cred; /* storage for credential */
|
struct authdes_verf ad_verf; /* storage for verifier */
|
||||||
struct authdes_verf ad_verf; /* storage for verifier */
|
struct timeval ad_timestamp; /* timestamp sent */
|
||||||
struct timeval ad_timestamp; /* timestamp sent */
|
des_block ad_xkey; /* encrypted conversation key */
|
||||||
des_block ad_xkey; /* encrypted conversation key */
|
u_char ad_pkey[1024]; /* Servers actual public key */
|
||||||
u_char ad_pkey[1024]; /* Servers actual public key */
|
};
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -236,7 +234,7 @@ authdes_marshal (AUTH * auth, XDR * xdrs)
|
|||||||
des_block cryptbuf[2];
|
des_block cryptbuf[2];
|
||||||
des_block ivec;
|
des_block ivec;
|
||||||
int status;
|
int status;
|
||||||
int len;
|
unsigned int len;
|
||||||
register long *ixdr;
|
register long *ixdr;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -255,14 +253,15 @@ authdes_marshal (AUTH * auth, XDR * xdrs)
|
|||||||
/*
|
/*
|
||||||
* XDR the timestamp and possibly some other things, then
|
* XDR the timestamp and possibly some other things, then
|
||||||
* encrypt them.
|
* encrypt them.
|
||||||
|
* XXX We have a real Year 2038 problem here.
|
||||||
*/
|
*/
|
||||||
ixdr = (long *) cryptbuf;
|
ixdr = (long *) cryptbuf;
|
||||||
IXDR_PUT_LONG (ixdr, ad->ad_timestamp.tv_sec);
|
IXDR_PUT_LONG (ixdr, ad->ad_timestamp.tv_sec);
|
||||||
IXDR_PUT_LONG (ixdr, ad->ad_timestamp.tv_usec);
|
IXDR_PUT_LONG (ixdr, ad->ad_timestamp.tv_usec);
|
||||||
if (ad->ad_cred.adc_namekind == ADN_FULLNAME)
|
if (ad->ad_cred.adc_namekind == ADN_FULLNAME)
|
||||||
{
|
{
|
||||||
IXDR_PUT_U_LONG (ixdr, ad->ad_window);
|
IXDR_PUT_U_INT32 (ixdr, ad->ad_window);
|
||||||
IXDR_PUT_U_LONG (ixdr, ad->ad_window - 1);
|
IXDR_PUT_U_INT32 (ixdr, ad->ad_window - 1);
|
||||||
ivec.key.high = ivec.key.low = 0;
|
ivec.key.high = ivec.key.low = 0;
|
||||||
status = cbc_crypt ((char *) &auth->ah_key, (char *) cryptbuf,
|
status = cbc_crypt ((char *) &auth->ah_key, (char *) cryptbuf,
|
||||||
2 * sizeof (des_block), DES_ENCRYPT | DES_HW, (char *) &ivec);
|
2 * sizeof (des_block), DES_ENCRYPT | DES_HW, (char *) &ivec);
|
||||||
@ -304,29 +303,29 @@ authdes_marshal (AUTH * auth, XDR * xdrs)
|
|||||||
|
|
||||||
if ((ixdr = xdr_inline (xdrs, 2 * BYTES_PER_XDR_UNIT)) != NULL)
|
if ((ixdr = xdr_inline (xdrs, 2 * BYTES_PER_XDR_UNIT)) != NULL)
|
||||||
{
|
{
|
||||||
IXDR_PUT_LONG (ixdr, AUTH_DES);
|
IXDR_PUT_INT32 (ixdr, AUTH_DES);
|
||||||
IXDR_PUT_LONG (ixdr, len);
|
IXDR_PUT_U_INT32 (ixdr, len);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ATTEMPT (xdr_putlong (xdrs, (long *)&auth->ah_cred.oa_flavor));
|
ATTEMPT (xdr_putint32 (xdrs, &auth->ah_cred.oa_flavor));
|
||||||
ATTEMPT (xdr_putlong (xdrs, (long *)&len));
|
ATTEMPT (xdr_putint32 (xdrs, &len));
|
||||||
}
|
}
|
||||||
ATTEMPT (xdr_authdes_cred (xdrs, cred));
|
ATTEMPT (xdr_authdes_cred (xdrs, cred));
|
||||||
|
|
||||||
len = (2 + 1) * BYTES_PER_XDR_UNIT;
|
len = (2 + 1) * BYTES_PER_XDR_UNIT;
|
||||||
if ((ixdr = xdr_inline (xdrs, 2 * BYTES_PER_XDR_UNIT)) != NULL)
|
if ((ixdr = xdr_inline (xdrs, 2 * BYTES_PER_XDR_UNIT)) != NULL)
|
||||||
{
|
{
|
||||||
IXDR_PUT_LONG (ixdr, AUTH_DES);
|
IXDR_PUT_INT32 (ixdr, AUTH_DES);
|
||||||
IXDR_PUT_LONG (ixdr, len);
|
IXDR_PUT_U_INT32 (ixdr, len);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ATTEMPT (xdr_putlong (xdrs, (long *)&auth->ah_verf.oa_flavor));
|
ATTEMPT (xdr_putint32 (xdrs, &auth->ah_verf.oa_flavor));
|
||||||
ATTEMPT (xdr_putlong (xdrs, (long *)&len));
|
ATTEMPT (xdr_putint32 (xdrs, &len));
|
||||||
}
|
}
|
||||||
ATTEMPT (xdr_authdes_verf (xdrs, verf));
|
ATTEMPT (xdr_authdes_verf (xdrs, verf));
|
||||||
return (TRUE);
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -334,7 +333,7 @@ authdes_marshal (AUTH * auth, XDR * xdrs)
|
|||||||
* 3. Validate
|
* 3. Validate
|
||||||
*/
|
*/
|
||||||
static bool_t
|
static bool_t
|
||||||
authdes_validate (AUTH * auth, struct opaque_auth *rverf)
|
authdes_validate (AUTH *auth, struct opaque_auth *rverf)
|
||||||
{
|
{
|
||||||
struct ad_private *ad = AUTH_PRIVATE (auth);
|
struct ad_private *ad = AUTH_PRIVATE (auth);
|
||||||
struct authdes_verf verf;
|
struct authdes_verf verf;
|
||||||
@ -358,7 +357,7 @@ authdes_validate (AUTH * auth, struct opaque_auth *rverf)
|
|||||||
if (DES_FAILED (status))
|
if (DES_FAILED (status))
|
||||||
{
|
{
|
||||||
debug ("authdes_validate: DES decryption failure");
|
debug ("authdes_validate: DES decryption failure");
|
||||||
return (FALSE);
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -375,7 +374,7 @@ authdes_validate (AUTH * auth, struct opaque_auth *rverf)
|
|||||||
sizeof (struct timeval)) != 0)
|
sizeof (struct timeval)) != 0)
|
||||||
{
|
{
|
||||||
debug ("authdes_validate: verifier mismatch\n");
|
debug ("authdes_validate: verifier mismatch\n");
|
||||||
return (FALSE);
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -383,14 +382,14 @@ authdes_validate (AUTH * auth, struct opaque_auth *rverf)
|
|||||||
*/
|
*/
|
||||||
ad->ad_nickname = verf.adv_nickname;
|
ad->ad_nickname = verf.adv_nickname;
|
||||||
ad->ad_cred.adc_namekind = ADN_NICKNAME;
|
ad->ad_cred.adc_namekind = ADN_NICKNAME;
|
||||||
return (TRUE);
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 4. Refresh
|
* 4. Refresh
|
||||||
*/
|
*/
|
||||||
static bool_t
|
static bool_t
|
||||||
authdes_refresh (AUTH * auth)
|
authdes_refresh (AUTH *auth)
|
||||||
{
|
{
|
||||||
netobj pkey;
|
netobj pkey;
|
||||||
struct ad_private *ad = AUTH_PRIVATE (auth);
|
struct ad_private *ad = AUTH_PRIVATE (auth);
|
||||||
@ -411,19 +410,19 @@ authdes_refresh (AUTH * auth)
|
|||||||
if (key_encryptsession_pk (ad->ad_servername, &pkey, &ad->ad_xkey) < 0)
|
if (key_encryptsession_pk (ad->ad_servername, &pkey, &ad->ad_xkey) < 0)
|
||||||
{
|
{
|
||||||
debug ("authdes_create: unable to encrypt conversation key");
|
debug ("authdes_create: unable to encrypt conversation key");
|
||||||
return (FALSE);
|
return FALSE;
|
||||||
}
|
}
|
||||||
cred->adc_fullname.key = ad->ad_xkey;
|
cred->adc_fullname.key = ad->ad_xkey;
|
||||||
cred->adc_namekind = ADN_FULLNAME;
|
cred->adc_namekind = ADN_FULLNAME;
|
||||||
cred->adc_fullname.name = ad->ad_fullname;
|
cred->adc_fullname.name = ad->ad_fullname;
|
||||||
return (TRUE);
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 5. Destroy
|
* 5. Destroy
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
authdes_destroy (AUTH * auth)
|
authdes_destroy (AUTH *auth)
|
||||||
{
|
{
|
||||||
struct ad_private *ad = AUTH_PRIVATE (auth);
|
struct ad_private *ad = AUTH_PRIVATE (auth);
|
||||||
|
|
||||||
@ -447,7 +446,7 @@ synchronize (struct sockaddr *syncaddr, struct timeval *timep)
|
|||||||
timeout.tv_sec = RTIME_TIMEOUT;
|
timeout.tv_sec = RTIME_TIMEOUT;
|
||||||
timeout.tv_usec = 0;
|
timeout.tv_usec = 0;
|
||||||
if (rtime ((struct sockaddr_in *) syncaddr, timep, &timeout) < 0)
|
if (rtime ((struct sockaddr_in *) syncaddr, timep, &timeout) < 0)
|
||||||
return (FALSE);
|
return FALSE;
|
||||||
|
|
||||||
__gettimeofday (&mytime, (struct timezone *) NULL);
|
__gettimeofday (&mytime, (struct timezone *) NULL);
|
||||||
timep->tv_sec -= mytime.tv_sec;
|
timep->tv_sec -= mytime.tv_sec;
|
||||||
@ -457,5 +456,5 @@ synchronize (struct sockaddr *syncaddr, struct timeval *timep)
|
|||||||
timep->tv_usec += MILLION;
|
timep->tv_usec += MILLION;
|
||||||
}
|
}
|
||||||
timep->tv_usec -= mytime.tv_usec;
|
timep->tv_usec -= mytime.tv_usec;
|
||||||
return (TRUE);
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
@ -154,6 +154,7 @@ struct XDR
|
|||||||
*/
|
*/
|
||||||
typedef bool_t (*xdrproc_t) __PMT ((XDR *, void *,...));
|
typedef bool_t (*xdrproc_t) __PMT ((XDR *, void *,...));
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Operations defined on a XDR handle
|
* Operations defined on a XDR handle
|
||||||
*
|
*
|
||||||
@ -247,20 +248,28 @@ struct xdr_discrim
|
|||||||
* N.B. and frozen for all time: each data type here uses 4 bytes
|
* N.B. and frozen for all time: each data type here uses 4 bytes
|
||||||
* of external representation.
|
* of external representation.
|
||||||
*/
|
*/
|
||||||
#define IXDR_GET_LONG(buf) ((long)ntohl((u_long)*((u_int32_t*)buf)++))
|
|
||||||
#define IXDR_PUT_LONG(buf, v) (*((u_int32_t*)(buf))++ = (long)htonl((u_long)v))
|
|
||||||
|
|
||||||
#define IXDR_GET_BOOL(buf) ((bool_t)IXDR_GET_LONG(buf))
|
#define IXDR_GET_INT32(buf) ((int32_t)ntohl((uint32_t)*(buf)++))
|
||||||
#define IXDR_GET_ENUM(buf, t) ((t)IXDR_GET_LONG(buf))
|
#define IXDR_PUT_INT32(buf, v) (*(buf)++ = (int32_t)htonl((uint32_t)v))
|
||||||
#define IXDR_GET_U_LONG(buf) ((u_long)IXDR_GET_LONG(buf))
|
#define IXDR_GET_U_INT32(buf) ((uint32_t)IXDR_GET_INT32(buf))
|
||||||
#define IXDR_GET_SHORT(buf) ((short)IXDR_GET_LONG(buf))
|
#define IXDR_PUT_U_INT32(buf, v) IXDR_PUT_INT32((buf), ((int32_t)(v)))
|
||||||
#define IXDR_GET_U_SHORT(buf) ((u_short)IXDR_GET_LONG(buf))
|
|
||||||
|
|
||||||
#define IXDR_PUT_BOOL(buf, v) IXDR_PUT_LONG((buf), ((long)(v)))
|
#define IXDR_GET_BOOL(buf) ((bool_t)IXDR_GET_INT32(buf))
|
||||||
#define IXDR_PUT_ENUM(buf, v) IXDR_PUT_LONG((buf), ((long)(v)))
|
#define IXDR_GET_ENUM(buf, t) ((t)IXDR_GET_INT32(buf))
|
||||||
#define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG((buf), ((long)(v)))
|
#define IXDR_GET_SHORT(buf) ((short)IXDR_GET_INT32(buf))
|
||||||
#define IXDR_PUT_SHORT(buf, v) IXDR_PUT_LONG((buf), ((long)(v)))
|
#define IXDR_GET_U_SHORT(buf) ((u_short)IXDR_GET_INT32(buf))
|
||||||
#define IXDR_PUT_U_SHORT(buf, v) IXDR_PUT_LONG((buf), ((long)(v)))
|
|
||||||
|
#define IXDR_PUT_BOOL(buf, v) IXDR_PUT_INT32((buf), ((int)(v)))
|
||||||
|
#define IXDR_PUT_ENUM(buf, v) IXDR_PUT_INT32((buf), ((int)(v)))
|
||||||
|
#define IXDR_PUT_SHORT(buf, v) IXDR_PUT_INT32((buf), ((int)(v)))
|
||||||
|
#define IXDR_PUT_U_SHORT(buf, v) IXDR_PUT_INT32((buf), ((int)(v)))
|
||||||
|
|
||||||
|
/* This defines are removed from Sun for new platforms and shouldn't
|
||||||
|
be used any longer. */
|
||||||
|
#define IXDR_GET_LONG(buf) ((long)ntohl((u_long)*((u_int32_t*)buf)++))
|
||||||
|
#define IXDR_PUT_LONG(buf, v) (*((u_int32_t*)(buf))++ = (long)htonl((u_long)v))
|
||||||
|
#define IXDR_GET_U_LONG(buf) ((u_long)IXDR_GET_LONG(buf))
|
||||||
|
#define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG((buf), ((long)(v)))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* These are the "generic" xdr routines.
|
* These are the "generic" xdr routines.
|
||||||
|
@ -48,7 +48,6 @@ static void pargdef (definition * def);
|
|||||||
static void pstructdef (definition * def);
|
static void pstructdef (definition * def);
|
||||||
static void puniondef (definition * def);
|
static void puniondef (definition * def);
|
||||||
static void pdefine (const char *name, const char *num);
|
static void pdefine (const char *name, const char *num);
|
||||||
static void puldefine (const char *name, const char *num);
|
|
||||||
static int define_printed (proc_list * stop, version_list * start);
|
static int define_printed (proc_list * stop, version_list * start);
|
||||||
static void pprogramdef (definition * def);
|
static void pprogramdef (definition * def);
|
||||||
static void parglist (proc_list * proc, const char *addargtype);
|
static void parglist (proc_list * proc, const char *addargtype);
|
||||||
@ -251,12 +250,6 @@ pdefine (const char *name, const char *num)
|
|||||||
f_print (fout, "#define %s %s\n", name, num);
|
f_print (fout, "#define %s %s\n", name, num);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
puldefine (const char *name, const char *num)
|
|
||||||
{
|
|
||||||
f_print (fout, "#define %s ((u_long)%s)\n", name, num);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
define_printed (proc_list *stop, version_list *start)
|
define_printed (proc_list *stop, version_list *start)
|
||||||
{
|
{
|
||||||
@ -302,7 +295,7 @@ pprogramdef (definition *def)
|
|||||||
|
|
||||||
pargdef (def);
|
pargdef (def);
|
||||||
|
|
||||||
puldefine (def->def_name, def->def.pr.prog_num);
|
pdefine (def->def_name, def->def.pr.prog_num);
|
||||||
for (vers = def->def.pr.versions; vers != NULL; vers = vers->next)
|
for (vers = def->def.pr.versions; vers != NULL; vers = vers->next)
|
||||||
{
|
{
|
||||||
if (tblflag)
|
if (tblflag)
|
||||||
@ -312,7 +305,7 @@ pprogramdef (definition *def)
|
|||||||
f_print (fout, "extern %s_%s_nproc;\n",
|
f_print (fout, "extern %s_%s_nproc;\n",
|
||||||
locase (def->def_name), vers->vers_num);
|
locase (def->def_name), vers->vers_num);
|
||||||
}
|
}
|
||||||
puldefine (vers->vers_name, vers->vers_num);
|
pdefine (vers->vers_name, vers->vers_num);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Print out 2 definitions, one for ANSI-C, another for
|
* Print out 2 definitions, one for ANSI-C, another for
|
||||||
@ -327,7 +320,7 @@ pprogramdef (definition *def)
|
|||||||
{
|
{
|
||||||
if (!define_printed(proc, def->def.pr.versions))
|
if (!define_printed(proc, def->def.pr.versions))
|
||||||
{
|
{
|
||||||
puldefine (proc->proc_name, proc->proc_num);
|
pdefine (proc->proc_name, proc->proc_num);
|
||||||
}
|
}
|
||||||
f_print (fout, "%s", ext);
|
f_print (fout, "%s", ext);
|
||||||
pprocdef (proc, vers, NULL, 0, 2);
|
pprocdef (proc, vers, NULL, 0, 2);
|
||||||
@ -359,7 +352,7 @@ pprogramdef (definition *def)
|
|||||||
{
|
{
|
||||||
if (!define_printed(proc, def->def.pr.versions))
|
if (!define_printed(proc, def->def.pr.versions))
|
||||||
{
|
{
|
||||||
puldefine(proc->proc_name, proc->proc_num);
|
pdefine(proc->proc_name, proc->proc_num);
|
||||||
}
|
}
|
||||||
f_print (fout, "%s", ext);
|
f_print (fout, "%s", ext);
|
||||||
pprocdef (proc, vers, "CLIENT *", 0, i);
|
pprocdef (proc, vers, "CLIENT *", 0, i);
|
||||||
|
@ -968,7 +968,6 @@ mkfile_output (struct commandline *cmd)
|
|||||||
char *mkfilename;
|
char *mkfilename;
|
||||||
const char *clientname, *clntname, *xdrname, *hdrname;
|
const char *clientname, *clntname, *xdrname, *hdrname;
|
||||||
const char *servername, *svcname, *servprogname, *clntprogname;
|
const char *servername, *svcname, *servprogname, *clntprogname;
|
||||||
char *temp;
|
|
||||||
|
|
||||||
svcname = file_name (cmd->infile, "_svc.c");
|
svcname = file_name (cmd->infile, "_svc.c");
|
||||||
clntname = file_name (cmd->infile, "_clnt.c");
|
clntname = file_name (cmd->infile, "_clnt.c");
|
||||||
@ -990,12 +989,12 @@ mkfile_output (struct commandline *cmd)
|
|||||||
|
|
||||||
if (allfiles)
|
if (allfiles)
|
||||||
{
|
{
|
||||||
mkfilename = alloc (strlen ("Makefile.") +
|
char *cp, *temp;
|
||||||
strlen (cmd->infile) + 1);
|
|
||||||
temp = (char *) rindex (cmd->infile, '.');
|
mkfilename = alloc (strlen ("Makefile.") + strlen (cmd->infile) + 1);
|
||||||
strcat (mkfilename, "Makefile.");
|
temp = rindex (cmd->infile, '.');
|
||||||
strncat (mkfilename, cmd->infile,
|
cp = stpcpy (mkfilename, "Makefile.");
|
||||||
(temp - cmd->infile));
|
strncpy (cp, cmd->infile, (temp - cmd->infile));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
mkfilename = (char *) cmd->outfile;
|
mkfilename = (char *) cmd->outfile;
|
||||||
|
@ -72,10 +72,10 @@ static void
|
|||||||
p_xdrfunc (const char *rname, const char *typename)
|
p_xdrfunc (const char *rname, const char *typename)
|
||||||
{
|
{
|
||||||
if (Cflag)
|
if (Cflag)
|
||||||
f_print (fout, "\t\txdr_%s = (xdrproc_t) xdr_%s;\n", rname,
|
f_print (fout, "\t\t_xdr_%s = (xdrproc_t) xdr_%s;\n", rname,
|
||||||
stringfix (typename));
|
stringfix (typename));
|
||||||
else
|
else
|
||||||
f_print (fout, "\t\txdr_%s = xdr_%s;\n", rname, stringfix (typename));
|
f_print (fout, "\t\t_xdr_%s = xdr_%s;\n", rname, stringfix (typename));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -503,7 +503,7 @@ write_program (const definition * def, const char *storage)
|
|||||||
|
|
||||||
if (Cflag)
|
if (Cflag)
|
||||||
{
|
{
|
||||||
f_print (fout, "\txdrproc_t xdr_%s, xdr_%s;\n", ARG, RESULT);
|
f_print (fout, "\txdrproc_t _xdr_%s, _xdr_%s;\n", ARG, RESULT);
|
||||||
if (mtflag)
|
if (mtflag)
|
||||||
f_print(fout,
|
f_print(fout,
|
||||||
"\tbool_t (*%s)(char *, void *, struct svc_req *);\n",
|
"\tbool_t (*%s)(char *, void *, struct svc_req *);\n",
|
||||||
@ -619,11 +619,11 @@ write_program (const definition * def, const char *storage)
|
|||||||
RETVAL, ROUTINE, ARG, RESULT, RQSTP);
|
RETVAL, ROUTINE, ARG, RESULT, RQSTP);
|
||||||
if (mtflag)
|
if (mtflag)
|
||||||
f_print(fout,
|
f_print(fout,
|
||||||
"\tif (%s > 0 && !svc_sendreply(%s, xdr_%s, (char *)&%s)) {\n",
|
"\tif (%s > 0 && !svc_sendreply(%s, _xdr_%s, (char *)&%s)) {\n",
|
||||||
RETVAL, TRANSP, RESULT, RESULT);
|
RETVAL, TRANSP, RESULT, RESULT);
|
||||||
else
|
else
|
||||||
f_print(fout,
|
f_print(fout,
|
||||||
"\tif (%s != NULL && !svc_sendreply(%s, xdr_%s, %s)) {\n",
|
"\tif (%s != NULL && !svc_sendreply(%s, _xdr_%s, %s)) {\n",
|
||||||
RESULT, TRANSP, RESULT, RESULT);
|
RESULT, TRANSP, RESULT, RESULT);
|
||||||
|
|
||||||
printerr ("systemerr", TRANSP);
|
printerr ("systemerr", TRANSP);
|
||||||
@ -643,7 +643,7 @@ write_program (const definition * def, const char *storage)
|
|||||||
{
|
{
|
||||||
f_print(fout,"\tif (!");
|
f_print(fout,"\tif (!");
|
||||||
pvname(def->def_name, vp->vers_num);
|
pvname(def->def_name, vp->vers_num);
|
||||||
f_print(fout,"_freeresult (%s, xdr_%s, (caddr_t) &%s))\n",
|
f_print(fout,"_freeresult (%s, _xdr_%s, (caddr_t) &%s))\n",
|
||||||
TRANSP, RESULT, RESULT);
|
TRANSP, RESULT, RESULT);
|
||||||
(void) sprintf(_errbuf, "unable to free results");
|
(void) sprintf(_errbuf, "unable to free results");
|
||||||
print_err_message("\t\t");
|
print_err_message("\t\t");
|
||||||
@ -664,7 +664,7 @@ static void
|
|||||||
printif (const char *proc, const char *transp, const char *prefix,
|
printif (const char *proc, const char *transp, const char *prefix,
|
||||||
const char *arg)
|
const char *arg)
|
||||||
{
|
{
|
||||||
f_print (fout, "\tif (!svc_%s (%s, xdr_%s, %s%s)) {\n",
|
f_print (fout, "\tif (!svc_%s (%s, _xdr_%s, %s%s)) {\n",
|
||||||
proc, transp, arg, prefix, arg);
|
proc, transp, arg, prefix, arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Set FP exception mask and rounding mode.
|
/* Set FP exception mask and rounding mode.
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -41,7 +41,7 @@ wrfpcr (unsigned long fpcr)
|
|||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
__setfpucw (unsigned short fpu_control)
|
__setfpucw (fpu_control_t fpu_control)
|
||||||
{
|
{
|
||||||
unsigned long fpcr = 0, fpcw = 0;
|
unsigned long fpcr = 0, fpcw = 0;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user