source: rtems/cpukit/librpc/include/rpc/auth.h @ cd9564e

4.104.114.84.95
Last change on this file since cd9564e was cd9564e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 05/10/07 at 07:29:14

Include <rtems/bsd/sys/cdefs.h> instead of <sys/cdefs.h>.

  • Property mode set to 100644
File size: 7.4 KB
Line 
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part.  Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
8 *
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12 *
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
16 *
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
20 *
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
24 *
25 * Sun Microsystems, Inc.
26 * 2550 Garcia Avenue
27 * Mountain View, California  94043
28 *
29 *      from: @(#)auth.h 1.17 88/02/08 SMI
30 *      from: @(#)auth.h        2.3 88/08/07 4.0 RPCSRC
31 * $FreeBSD: src/include/rpc/auth.h,v 1.15 1999/08/27 23:45:02 peter Exp $
32 */
33
34/*
35 * auth.h, Authentication interface.
36 *
37 * Copyright (C) 1984, Sun Microsystems, Inc.
38 *
39 * The data structures are completely opaque to the client.  The client
40 * is required to pass a AUTH * to routines that create rpc
41 * "sessions".
42 */
43
44#ifndef _RPC_AUTH_H
45#define _RPC_AUTH_H
46#include <rtems/bsd/sys/cdefs.h>
47#include <sys/socket.h>
48
49#define MAX_AUTH_BYTES  400
50#define MAXNETNAMELEN   255     /* maximum length of network user's name */
51
52/*
53 * Status returned from authentication check
54 */
55enum auth_stat {
56        AUTH_OK=0,
57        /*
58         * failed at remote end
59         */
60        AUTH_BADCRED=1,                 /* bogus credentials (seal broken) */
61        AUTH_REJECTEDCRED=2,            /* client should begin new session */
62        AUTH_BADVERF=3,                 /* bogus verifier (seal broken) */
63        AUTH_REJECTEDVERF=4,            /* verifier expired or was replayed */
64        AUTH_TOOWEAK=5,                 /* rejected due to security reasons */
65        /*
66         * failed locally
67        */
68        AUTH_INVALIDRESP=6,             /* bogus response verifier */
69        AUTH_FAILED=7                   /* some unknown reason */
70};
71
72union des_block {
73        struct {
74                u_int32_t high;
75                u_int32_t low;
76        } key;
77        char c[8];
78};
79typedef union des_block des_block;
80__BEGIN_DECLS
81extern bool_t xdr_des_block (XDR *, des_block *);
82__END_DECLS
83
84/*
85 * Authentication info.  Opaque to client.
86 */
87struct opaque_auth {
88        enum_t  oa_flavor;              /* flavor of auth */
89        caddr_t oa_base;                /* address of more auth stuff */
90        u_int   oa_length;              /* not to exceed MAX_AUTH_BYTES */
91};
92__BEGIN_DECLS
93bool_t xdr_opaque_auth (XDR *xdrs, struct opaque_auth *ap);
94__END_DECLS
95
96
97/*
98 * Auth handle, interface to client side authenticators.
99 */
100typedef struct __rpc_auth {
101        struct  opaque_auth     ah_cred;
102        struct  opaque_auth     ah_verf;
103        union   des_block       ah_key;
104        struct auth_ops {
105                void    (*ah_nextverf) (struct __rpc_auth *);
106                /* nextverf & serialize */
107                int     (*ah_marshal) (struct __rpc_auth *, XDR *);
108                /* validate verifier */
109                int     (*ah_validate) (struct __rpc_auth *,
110                                struct opaque_auth *);
111                /* refresh credentials */
112                int     (*ah_refresh) (struct __rpc_auth *);
113                /* destroy this structure */
114                void    (*ah_destroy) (struct __rpc_auth *);
115        } *ah_ops;
116        caddr_t ah_private;
117} AUTH;
118
119
120/*
121 * Authentication ops.
122 * The ops and the auth handle provide the interface to the authenticators.
123 *
124 * AUTH *auth;
125 * XDR  *xdrs;
126 * struct opaque_auth verf;
127 */
128#define AUTH_NEXTVERF(auth)             \
129                ((*((auth)->ah_ops->ah_nextverf))(auth))
130#define auth_nextverf(auth)             \
131                ((*((auth)->ah_ops->ah_nextverf))(auth))
132
133#define AUTH_MARSHALL(auth, xdrs)       \
134                ((*((auth)->ah_ops->ah_marshal))(auth, xdrs))
135#define auth_marshall(auth, xdrs)       \
136                ((*((auth)->ah_ops->ah_marshal))(auth, xdrs))
137
138#define AUTH_VALIDATE(auth, verfp)      \
139                ((*((auth)->ah_ops->ah_validate))((auth), verfp))
140#define auth_validate(auth, verfp)      \
141                ((*((auth)->ah_ops->ah_validate))((auth), verfp))
142
143#define AUTH_REFRESH(auth)              \
144                ((*((auth)->ah_ops->ah_refresh))(auth))
145#define auth_refresh(auth)              \
146                ((*((auth)->ah_ops->ah_refresh))(auth))
147
148#define AUTH_DESTROY(auth)              \
149                ((*((auth)->ah_ops->ah_destroy))(auth))
150#define auth_destroy(auth)              \
151                ((*((auth)->ah_ops->ah_destroy))(auth))
152
153
154extern struct opaque_auth _null_auth;
155
156/*
157 * These are the various implementations of client side authenticators.
158 */
159
160/*
161 * Unix style authentication
162 * AUTH *authunix_create(machname, uid, gid, len, aup_gids)
163 *      char *machname;
164 *      int uid;
165 *      int gid;
166 *      int len;
167 *      int *aup_gids;
168 */
169__BEGIN_DECLS
170struct sockaddr_in;
171extern AUTH *authunix_create            (char *, int, int, int, int *);
172extern AUTH *authunix_create_default    (void);
173extern AUTH *authnone_create            (void);
174__END_DECLS
175
176/* Forward compatibility with TI-RPC */
177#define authsys_create authunix_create
178#define authsys_create_default authunix_create_default
179
180/*
181 * DES style authentication
182 * AUTH *authdes_create(servername, window, timehost, ckey)
183 *      char *servername;               - network name of server
184 *      u_int window;                   - time to live
185 *      struct sockaddr *timehost;      - optional hostname to sync with
186 *      des_block *ckey;                - optional conversation key to use
187 */
188__BEGIN_DECLS
189extern AUTH *authdes_create ( char *, u_int, struct sockaddr *, des_block * );
190#ifdef NOTYET
191/*
192 * TI-RPC supports this call, but it requires the inclusion of
193 * NIS+-specific headers which would require the inclusion of other
194 * headers which would result in a tangled mess. For now, the NIS+
195 * code prototypes this routine internally.
196 */
197extern AUTH *authdes_pk_create ( char *, netobj *, u_int,
198                                     struct sockaddr *, des_block *,
199                                     nis_server * );
200#endif
201__END_DECLS
202
203/*
204 * Netname manipulation routines.
205 */
206__BEGIN_DECLS
207extern int netname2user ( char *, uid_t *, gid_t *, int *, gid_t *);
208extern int netname2host ( char *, char *, int );
209extern int getnetname ( char * );
210extern int user2netname ( char *, uid_t, char * );
211extern int host2netname ( char *, char *, char * );
212extern void passwd2des ( char *, char * );
213__END_DECLS
214
215/*
216 * Keyserv interface routines.
217 * XXX Should not be here.
218 */
219#ifndef HEXKEYBYTES
220#define HEXKEYBYTES 48
221#endif
222typedef char kbuf[HEXKEYBYTES];
223typedef char *namestr;
224
225struct netstarg {
226        kbuf st_priv_key;
227        kbuf st_pub_key;
228        namestr st_netname;
229};
230
231__BEGIN_DECLS
232extern int key_decryptsession ( const char *, des_block * );
233extern int key_decryptsession_pk ( char *, netobj *, des_block * );
234extern int key_encryptsession ( const char *, des_block * );
235extern int key_encryptsession_pk ( char *, netobj *, des_block * );
236extern int key_gendes ( des_block * );
237extern int key_setsecret ( const char * );
238extern int key_secretkey_is_set ( void );
239extern int key_setnet ( struct netstarg * );
240extern int key_get_conv ( char *, des_block * );
241__END_DECLS
242
243/*
244 * Publickey routines.
245 */
246__BEGIN_DECLS
247extern int getpublickey ( char *, char * );
248extern int getpublicandprivatekey ( char *, char * );
249extern int getsecretkey ( char *, char *, char * );
250__END_DECLS
251
252
253#define AUTH_NONE       0               /* no authentication */
254#define AUTH_NULL       0               /* backward compatibility */
255#define AUTH_UNIX       1               /* unix style (uid, gids) */
256#define AUTH_SYS        1               /* forward compatibility */
257#define AUTH_SHORT      2               /* short hand unix style */
258#define AUTH_DES        3               /* des style (encrypted timestamps) */
259
260#endif /* !_RPC_AUTH_H */
Note: See TracBrowser for help on using the repository browser.