Searched refs:AUTH (Results 1 - 25 of 46) sorted by relevance

12

/freebsd-11-stable/lib/libc/rpc/
H A Dauth_none.c62 static bool_t authnone_marshal (AUTH *, XDR *);
63 static void authnone_verf (AUTH *);
64 static bool_t authnone_validate (AUTH *, struct opaque_auth *);
65 static bool_t authnone_refresh (AUTH *, void *);
66 static void authnone_destroy (AUTH *);
73 AUTH no_client;
78 AUTH *
111 authnone_marshal(AUTH *client, XDR *xdrs)
132 authnone_verf(AUTH *client)
138 authnone_validate(AUTH *clien
[all...]
H A Drpcsec_gss_stub.c33 __rpc_gss_wrap_stub(AUTH *auth, void *header, size_t headerlen, XDR* xdrs,
41 __rpc_gss_unwrap_stub(AUTH *auth, XDR* xdrs, xdrproc_t xdr_args, void *args_ptr)
H A Dauth_unix.c69 static void authunix_nextverf (AUTH *);
70 static bool_t authunix_marshal (AUTH *, XDR *);
71 static bool_t authunix_validate (AUTH *, struct opaque_auth *);
72 static bool_t authunix_refresh (AUTH *, void *);
73 static void authunix_destroy (AUTH *);
74 static void marshal_new_auth (AUTH *);
93 AUTH *
100 AUTH *auth;
179 AUTH *
182 AUTH *aut
[all...]
H A Dauth_des.c80 static void authdes_nextverf(AUTH *);
81 static bool_t authdes_marshal(AUTH *, XDR *);
82 static bool_t authdes_validate(AUTH *, struct opaque_auth *);
83 static bool_t authdes_refresh(AUTH *, void *);
84 static void authdes_destroy(AUTH *);
89 * This struct is pointed to by the ah_private field of an "AUTH *"
112 AUTH *authdes_pk_seccreate(const char *, netobj *, u_int, const char *,
125 AUTH *
131 AUTH *dummy;
152 AUTH *
[all...]
H A Drpc_soc.c388 AUTH *
398 AUTH *dummy;
399 AUTH *nauth;
/freebsd-11-stable/sys/rpc/
H A Dauth_none.c64 static bool_t authnone_marshal (AUTH *, uint32_t, XDR *, struct mbuf *);
65 static void authnone_verf (AUTH *);
66 static bool_t authnone_validate (AUTH *, uint32_t, struct opaque_auth *,
68 static bool_t authnone_refresh (AUTH *, void *);
69 static void authnone_destroy (AUTH *);
80 AUTH no_client;
103 AUTH *
113 authnone_marshal(AUTH *client, uint32_t xid, XDR *xdrs, struct mbuf *args)
130 authnone_verf(AUTH *client)
136 authnone_validate(AUTH *clien
[all...]
H A Dauth.h42 * is required to pass an AUTH * to routines that create rpc
198 } AUTH; typedef in typeref:struct:__auth
205 * AUTH *auth;
234 * AUTH *authunix_create(machname, uid, gid, len, aup_gids)
244 extern AUTH *authunix_create(struct ucred *);
246 extern AUTH *authunix_create(char *, u_int, u_int, int, u_int *);
247 extern AUTH *authunix_create_default(void); /* takes no parameters */
249 extern AUTH *authnone_create(void); /* takes no parameters */
253 * AUTH *authsecdes_create(servername, window, timehost, ckey)
260 extern AUTH *authdes_creat
[all...]
H A Dauth_unix.c69 static void authunix_nextverf (AUTH *);
70 static bool_t authunix_marshal (AUTH *, uint32_t, XDR *, struct mbuf *);
71 static bool_t authunix_validate (AUTH *, uint32_t, struct opaque_auth *,
73 static bool_t authunix_refresh (AUTH *, void *);
74 static void authunix_destroy (AUTH *);
75 static void marshal_new_auth (AUTH *);
98 AUTH *au_auth; /* link back to AUTH */
126 AUTH *
133 AUTH *aut
[all...]
H A Drpcsec_gss.h151 typedef AUTH *rpc_gss_secfind_ftype(CLIENT *clnt, struct ucred *cred,
155 typedef AUTH *rpc_gss_seccreate_ftype(CLIENT *clnt, struct ucred *cred,
160 typedef bool_t rpc_gss_set_defaults_ftype(AUTH *auth,
162 typedef int rpc_gss_max_data_length_ftype(AUTH *handle,
186 typedef void rpc_gss_refresh_auth_ftype(AUTH *auth);
213 static __inline AUTH *
217 AUTH *ret = NULL;
233 static __inline AUTH *
239 AUTH *ret = NULL;
249 rpc_gss_set_defaults_call(AUTH *aut
[all...]
H A Dclnt.h116 AUTH *rc_auth; /* auth handle to use for this call */
132 AUTH *cl_auth; /* authenticator */
155 AUTH *cl_auth; /* authenticator */
/freebsd-11-stable/include/rpc/
H A Drpcsec_gss.h143 AUTH *rpc_gss_seccreate(CLIENT *clnt, const char *principal,
146 bool_t rpc_gss_set_defaults(AUTH *auth, rpc_gss_service_t service,
148 int rpc_gss_max_data_length(AUTH *handle, int max_tp_unit_len);
171 bool_t __rpc_gss_wrap(AUTH *auth, void *header, size_t headerlen,
173 bool_t __rpc_gss_unwrap(AUTH *auth, XDR* xdrs, xdrproc_t xdr_args,
H A Dauth.h42 * is required to pass an AUTH * to routines that create rpc
196 } AUTH; typedef in typeref:struct:__auth
203 * AUTH *auth;
243 * AUTH *authunix_create(machname, uid, gid, len, aup_gids)
251 extern AUTH *authunix_create(char *, u_int, u_int, int, u_int *);
252 extern AUTH *authunix_create_default(void); /* takes no parameters */
253 extern AUTH *authnone_create(void); /* takes no parameters */
257 * AUTH *authsecdes_create(servername, window, timehost, ckey)
264 extern AUTH *authdes_create (char *, u_int, struct sockaddr *, des_block *);
265 extern AUTH *authdes_seccreat
[all...]
H A Dauth_kerb.h133 struct netbuf *, int *, dev_t, int, AUTH **);
H A Dclnt.h94 AUTH *cl_auth; /* authenticator */
/freebsd-11-stable/lib/librpcsec_gss/
H A Drpcsec_gss.c77 static void rpc_gss_nextverf(AUTH*);
78 static bool_t rpc_gss_marshal(AUTH *, XDR *);
79 static bool_t rpc_gss_init(AUTH *auth, rpc_gss_options_ret_t *options_ret);
80 static bool_t rpc_gss_refresh(AUTH *, void *);
81 static bool_t rpc_gss_validate(AUTH *, struct opaque_auth *);
82 static void rpc_gss_destroy(AUTH *);
83 static void rpc_gss_destroy_context(AUTH *, bool_t);
119 AUTH *
124 AUTH *auth, *save_auth;
228 rpc_gss_set_defaults(AUTH *aut
[all...]
/freebsd-11-stable/sys/rpc/rpcsec_gss/
H A Drpcsec_gss.c89 static void rpc_gss_nextverf(AUTH*);
90 static bool_t rpc_gss_marshal(AUTH *, uint32_t, XDR *, struct mbuf *);
91 static bool_t rpc_gss_init(AUTH *auth, rpc_gss_options_ret_t *options_ret);
92 static bool_t rpc_gss_refresh(AUTH *, void *);
93 static bool_t rpc_gss_validate(AUTH *, uint32_t, struct opaque_auth *,
95 static void rpc_gss_destroy(AUTH *);
96 static void rpc_gss_destroy_context(AUTH *, bool_t);
124 AUTH *gd_auth; /* link back to AUTH */
158 static AUTH *rpc_gss_seccreate_in
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call.c56 AUTH *auth;
/freebsd-11-stable/contrib/gcc/
H A Dsys-types.h172 typedef int AUTH; typedef
H A Dsys-protos.h118 extern void auth_destroy(AUTH *);
119 extern AUTH * authdes_create(/* ??? */);
121 extern AUTH * authdes_seccreate(/* ??? */);
122 extern AUTH * authnone_create(void);
123 extern AUTH * authsys_create(char *, int, int, int, int *);
124 extern AUTH * authsys_create_default(void);
125 extern AUTH * authunix_create(char *, int, int, int, int *);
126 extern AUTH * authunix_create_default(void);
/freebsd-11-stable/contrib/amd/libamu/
H A Dmisc_rpc.c121 make_rpc_packet(char *buf, int buflen, u_long proc, struct rpc_msg *mp, voidp arg, XDRPROC_T_TYPE arg_xdr, AUTH *auth)
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_request.c36 #define AUTH 1 macro
135 { REQ_CONFIG, AUTH, v4sizeof(struct conf_peer),
137 { REQ_UNCONFIG, AUTH, v4sizeof(struct conf_unpeer),
139 { REQ_SET_SYS_FLAG, AUTH, sizeof(struct conf_sys_flags),
141 { REQ_CLR_SYS_FLAG, AUTH, sizeof(struct conf_sys_flags),
144 { REQ_RESADDFLAGS, AUTH, v4sizeof(struct conf_restrict),
146 { REQ_RESSUBFLAGS, AUTH, v4sizeof(struct conf_restrict),
148 { REQ_UNRESTRICT, AUTH, v4sizeof(struct conf_restrict),
152 { REQ_RESET_STATS, AUTH, sizeof(struct reset_flags), 0, reset_stats },
153 { REQ_RESET_PEER, AUTH, v4sizeo
[all...]
/freebsd-11-stable/lib/librpcsvc/
H A Dyp_update.c102 if ((clnt->cl_auth = (AUTH *)authdes_create(netname, WINDOW, NULL,
/freebsd-11-stable/contrib/amd/include/
H A Dam_utils.h246 extern AUTH *nfs_auth; /* Dummy authorization for remote servers */
301 extern int make_rpc_packet(char *, int, u_long, struct rpc_msg *, voidp, XDRPROC_T_TYPE, AUTH *);
/freebsd-11-stable/contrib/wpa/src/drivers/
H A Ddriver_common.c41 E2S(AUTH);
/freebsd-11-stable/tools/regression/rpcsec_gss/
H A Drpctest.c89 AUTH *auth;

Completed in 294 milliseconds

12