svc_rpcsec_gss.c revision 7c478bd95313f5f23a4c958a745db2134aa03244
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Copyright 1993 OpenVision Technologies, Inc., All Rights Reserved.
*
* $Id: svc_auth_gssapi.c,v 1.19 1994/10/27 12:38:51 jik Exp $
*/
/*
* Server side handling of RPCSEC_GSS flavor.
*/
#include <sys/systm.h>
#include <sys/kstat.h>
#include <sys/cmn_err.h>
#include <sys/debug.h>
#include <sys/types.h>
#include <sys/time.h>
#include <gssapi/gssapi.h>
#include <gssapi/gssapi_ext.h>
#include <rpc/rpc.h>
#include <rpc/rpcsec_defs.h>
extern bool_t __rpc_gss_make_principal(rpc_gss_principal_t *, gss_buffer_t);
#ifdef DEBUG
extern void prom_printf();
#endif
#ifdef _KERNEL
#define memcmp(a, b, l) bcmp((a), (b), (l))
#endif
/*
* Sequence window definitions.
*/
#define SEQ_ARR_SIZE 4
#define SEQ_WIN (SEQ_ARR_SIZE*32)
#define SEQ_HI_BIT 0x80000000
#define SEQ_LO_BIT 1
#define DIV_BY_32 5
#define SEQ_MASK 0x1f
#define SEQ_MAX ((unsigned int)0x80000000)
/* cache retransmit data */
typedef struct _retrans_entry {
uint32_t xid;
rpc_gss_init_res result;
} retrans_entry;
/*
* Server side RPCSEC_GSS context information.
*/
typedef struct _svc_rpc_gss_data {
struct _svc_rpc_gss_data *next, *prev;
struct _svc_rpc_gss_data *lru_next, *lru_prev;
bool_t established;
gss_ctx_id_t context;
gss_buffer_desc client_name;
time_t expiration;
uint_t seq_num;
uint_t seq_bits[SEQ_ARR_SIZE];
uint_t key;
OM_uint32 qop;
bool_t done_docallback;
bool_t locked;
rpc_gss_rawcred_t raw_cred;
rpc_gss_ucred_t u_cred;
time_t u_cred_set;
void *cookie;
gss_cred_id_t deleg;
kmutex_t clm;
int ref_cnt;
time_t last_ref_time;
bool_t stale;
retrans_entry *retrans_data;
} svc_rpc_gss_data;
/*
* Data structures used for LRU based context management.
*/
#define HASH(key) ((key) % svc_rpc_gss_hashmod)
/* Size of hash table for svc_rpc_gss_data structures */
#define GSS_DATA_HASH_SIZE 1024
/*
* The following two defines specify a time delta that is used in
* sweep_clients. When the last_ref_time of a context is older than
* than the current time minus the delta, i.e, the context has not
* been referenced in the last delta seconds, we will return the
* context back to the cache if the ref_cnt is zero. The first delta
* value will be used when sweep_clients is called from
* svc_data_reclaim, the kmem_cache reclaim call back. We will reclaim
* all entries except those that are currently "active". By active we
* mean those that have been referenced in the last ACTIVE_DELTA
* seconds. If sweep_client is not being called from reclaim, then we
* will reclaim all entries that are "inactive". By inactive we mean
* those entries that have not been accessed in INACTIVE_DELTA
* seconds. Note we always assume that ACTIVE_DELTA is less than
* INACTIVE_DELTA, so that reaping entries from a reclaim operation
* will necessarily imply reaping all "inactive" entries and then
* some.
*/
/*
* If low on memory reap cache entries that have not been active for
* ACTIVE_DELTA seconds and have a ref_cnt equal to zero.
*/
#define ACTIVE_DELTA 30*60 /* 30 minutes */
/*
* If in sweeping contexts we find contexts with a ref_cnt equal to zero
* and the context has not been referenced in INACTIVE_DELTA seconds, return
* the entry to the cache.
*/
#define INACTIVE_DELTA 8*60*60 /* 8 hours */
int svc_rpc_gss_hashmod = GSS_DATA_HASH_SIZE;
static svc_rpc_gss_data **clients;
static svc_rpc_gss_data *lru_first, *lru_last;
static time_t sweep_interval = 60*60;
static time_t last_swept = 0;
static int num_gss_contexts = 0;
static time_t svc_rpcgss_gid_timeout = 60*60*12;
static kmem_cache_t *svc_data_handle;
static time_t svc_rpc_gss_active_delta = ACTIVE_DELTA;
static time_t svc_rpc_gss_inactive_delta = INACTIVE_DELTA;
/*
* lock used with context/lru variables
*/
static kmutex_t ctx_mutex;
/*
* Data structure to contain cache statistics
*/
static struct {
int64_t total_entries_allocated;
int64_t no_reclaims;
int64_t no_returned_by_reclaim;
} svc_rpc_gss_cache_stats;
/*
* lock used with server credential variables list
*
* server cred list locking guidelines:
* - Writer's lock holder has exclusive access to the list
*/
static krwlock_t cred_lock;
/*
* server callback list
*/
typedef struct rpc_gss_cblist_s {
struct rpc_gss_cblist_s *next;
rpc_gss_callback_t cb;
} rpc_gss_cblist_t;
static rpc_gss_cblist_t *rpc_gss_cblist = NULL;
/*
* lock used with callback variables
*/
static kmutex_t cb_mutex;
/*
* forward declarations
*/
static bool_t svc_rpc_gss_wrap();
static bool_t svc_rpc_gss_unwrap();
static svc_rpc_gss_data *create_client();
static svc_rpc_gss_data *get_client();
static svc_rpc_gss_data *find_client();
static void destroy_client();
static void sweep_clients(bool_t);
static void insert_client();
static bool_t check_verf(struct rpc_msg *, gss_ctx_id_t,
int *, uid_t);
static bool_t set_response_verf();
static void retrans_add(svc_rpc_gss_data *, uint32_t,
rpc_gss_init_res *);
static void retrans_del(svc_rpc_gss_data *);
static bool_t transfer_sec_context(svc_rpc_gss_data *);
static void common_client_data_free(svc_rpc_gss_data *);
/*
* server side wrap/unwrap routines
*/
struct svc_auth_ops svc_rpc_gss_ops = {
svc_rpc_gss_wrap,
svc_rpc_gss_unwrap,
};
/*ARGSUSED*/
static int
svc_gss_data_create(void *buf, void *pdata, int kmflag)
{
svc_rpc_gss_data *client_data = (svc_rpc_gss_data *)buf;
mutex_init(&client_data->clm, NULL, MUTEX_DEFAULT, NULL);
return (0);
}
/*ARGSUSED*/
static void
svc_gss_data_destroy(void *buf, void *pdata)
{
svc_rpc_gss_data *client_data = (svc_rpc_gss_data *)buf;
mutex_destroy(&client_data->clm);
}
/*ARGSUSED*/
static void
svc_gss_data_reclaim(void *pdata)
{
mutex_enter(&ctx_mutex);
svc_rpc_gss_cache_stats.no_reclaims++;
sweep_clients(TRUE);
mutex_exit(&ctx_mutex);
}
/*
* Init stuff on the server side.
*/
void
svc_gss_init()
{
mutex_init(&cb_mutex, NULL, MUTEX_DEFAULT, NULL);
mutex_init(&ctx_mutex, NULL, MUTEX_DEFAULT, NULL);
rw_init(&cred_lock, NULL, RW_DEFAULT, NULL);
clients = (svc_rpc_gss_data **)
kmem_zalloc(svc_rpc_gss_hashmod * sizeof (svc_rpc_gss_data *),
KM_SLEEP);
svc_data_handle = kmem_cache_create("rpc_gss_data_cache",
sizeof (svc_rpc_gss_data), 0,
svc_gss_data_create,
svc_gss_data_destroy,
svc_gss_data_reclaim,
NULL, NULL, 0);
}
/*
* Destroy structures allocated in svc_gss_init().
* This routine is called by _init() if mod_install() failed.
*/
void
svc_gss_fini()
{
mutex_destroy(&cb_mutex);
mutex_destroy(&ctx_mutex);
rw_destroy(&cred_lock);
kmem_free(clients, svc_rpc_gss_hashmod * sizeof (svc_rpc_gss_data *));
kmem_cache_destroy(svc_data_handle);
}
/*
* Cleanup routine for destroying context, called after service
* procedure is executed. Actually we just decrement the reference count
* associated with this context. If the reference count is zero and the
* context is marked as stale, we would then destroy the context. Additionally,
* we check if its been longer than sweep_interval since the last sweep_clients
* was run, and if so run sweep_clients to free all stale contexts with zero
* reference counts or contexts that are old. (Haven't been access in
* svc_rpc_inactive_delta seconds).
*/
void
rpc_gss_cleanup(SVCXPRT *clone_xprt)
{
svc_rpc_gss_data *cl;
SVCAUTH *svcauth;
/*
* First check if current context needs to be cleaned up.
* There might be other threads stale this client data
* in between.
*/
svcauth = &clone_xprt->xp_auth;
mutex_enter(&ctx_mutex);
if ((cl = (svc_rpc_gss_data *)svcauth->svc_ah_private) != NULL) {
mutex_enter(&cl->clm);
ASSERT(cl->ref_cnt > 0);
if (--cl->ref_cnt == 0 && cl->stale) {
mutex_exit(&cl->clm);
destroy_client(cl);
svcauth->svc_ah_private = NULL;
} else
mutex_exit(&cl->clm);
}
/*
* Check for other expired contexts.
*/
if ((gethrestime_sec() - last_swept) > sweep_interval)
sweep_clients(FALSE);
mutex_exit(&ctx_mutex);
}
/*
* Shift the array arr of length arrlen right by nbits bits.
*/
static void
shift_bits(arr, arrlen, nbits)
uint_t *arr;
int arrlen;
int nbits;
{
int i, j;
uint_t lo, hi;
/*
* If the number of bits to be shifted exceeds SEQ_WIN, just
* zero out the array.
*/
if (nbits < SEQ_WIN) {
for (i = 0; i < nbits; i++) {
hi = 0;
for (j = 0; j < arrlen; j++) {
lo = arr[j] & SEQ_LO_BIT;
arr[j] >>= 1;
if (hi)
arr[j] |= SEQ_HI_BIT;
hi = lo;
}
}
} else {
for (j = 0; j < arrlen; j++)
arr[j] = 0;
}
}
/*
* Check that the received sequence number seq_num is valid.
*/
static bool_t
check_seq(cl, seq_num, kill_context)
svc_rpc_gss_data *cl;
uint_t seq_num;
bool_t *kill_context;
{
int i, j;
uint_t bit;
/*
* If it exceeds the maximum, kill context.
*/
if (seq_num >= SEQ_MAX) {
*kill_context = TRUE;
RPCGSS_LOG0(4, "check_seq: seq_num not valid\n");
return (FALSE);
}
/*
* If greater than the last seen sequence number, just shift
* the sequence window so that it starts at the new sequence
* number and extends downwards by SEQ_WIN.
*/
if (seq_num > cl->seq_num) {
(void) shift_bits(cl->seq_bits, SEQ_ARR_SIZE,
(int)(seq_num - cl->seq_num));
cl->seq_bits[0] |= SEQ_HI_BIT;
cl->seq_num = seq_num;
return (TRUE);
}
/*
* If it is outside the sequence window, return failure.
*/
i = cl->seq_num - seq_num;
if (i >= SEQ_WIN) {
RPCGSS_LOG0(4, "check_seq: seq_num is outside the window\n");
return (FALSE);
}
/*
* If within sequence window, set the bit corresponding to it
* if not already seen; if already seen, return failure.
*/
j = SEQ_MASK - (i & SEQ_MASK);
bit = j > 0 ? (1 << j) : 1;
i >>= DIV_BY_32;
if (cl->seq_bits[i] & bit) {
RPCGSS_LOG0(4, "check_seq: sequence number already seen\n");
return (FALSE);
}
cl->seq_bits[i] |= bit;
return (TRUE);
}
/*
* Set server callback.
*/
bool_t
rpc_gss_set_callback(cb)
rpc_gss_callback_t *cb;
{
rpc_gss_cblist_t *cbl, *tmp;
if (cb->callback == NULL) {
RPCGSS_LOG0(1, "rpc_gss_set_callback: no callback to set\n");
return (FALSE);
}
/* check if there is already an entry in the rpc_gss_cblist. */
mutex_enter(&cb_mutex);
if (rpc_gss_cblist) {
for (tmp = rpc_gss_cblist; tmp != NULL; tmp = tmp->next) {
if ((tmp->cb.callback == cb->callback) &&
(tmp->cb.version == cb->version) &&
(tmp->cb.program == cb->program)) {
mutex_exit(&cb_mutex);
return (TRUE);
}
}
}
/* Not in rpc_gss_cblist. Create a new entry. */
if ((cbl = (rpc_gss_cblist_t *)kmem_alloc(sizeof (*cbl), KM_SLEEP))
== NULL) {
mutex_exit(&cb_mutex);
return (FALSE);
}
cbl->cb = *cb;
cbl->next = rpc_gss_cblist;
rpc_gss_cblist = cbl;
mutex_exit(&cb_mutex);
return (TRUE);
}
/*
* Locate callback (if specified) and call server. Release any
* delegated credentials unless passed to server and the server
* accepts the context. If a callback is not specified, accept
* the incoming context.
*/
static bool_t
do_callback(req, client_data)
struct svc_req *req;
svc_rpc_gss_data *client_data;
{
rpc_gss_cblist_t *cbl;
bool_t ret = TRUE, found = FALSE;
rpc_gss_lock_t lock;
OM_uint32 minor;
mutex_enter(&cb_mutex);
for (cbl = rpc_gss_cblist; cbl != NULL; cbl = cbl->next) {
if (req->rq_prog != cbl->cb.program ||
req->rq_vers != cbl->cb.version)
continue;
found = TRUE;
lock.locked = FALSE;
lock.raw_cred = &client_data->raw_cred;
ret = (*cbl->cb.callback)(req, client_data->deleg,
client_data->context, &lock, &client_data->cookie);
req->rq_xprt->xp_cookie = client_data->cookie;
if (ret) {
client_data->locked = lock.locked;
client_data->deleg = GSS_C_NO_CREDENTIAL;
}
break;
}
if (!found) {
if (client_data->deleg != GSS_C_NO_CREDENTIAL) {
(void) kgss_release_cred(&minor, &client_data->deleg,
crgetuid(CRED()));
client_data->deleg = GSS_C_NO_CREDENTIAL;
}
}
mutex_exit(&cb_mutex);
return (ret);
}
/*
* Get caller credentials.
*/
bool_t
rpc_gss_getcred(req, rcred, ucred, cookie)
struct svc_req *req;
rpc_gss_rawcred_t **rcred;
rpc_gss_ucred_t **ucred;
void **cookie;
{
SVCAUTH *svcauth;
svc_rpc_gss_data *client_data;
int gssstat, gidlen;
svcauth = &req->rq_xprt->xp_auth;
client_data = (svc_rpc_gss_data *)svcauth->svc_ah_private;
mutex_enter(&client_data->clm);
if (rcred != NULL) {
svcauth->raw_cred = client_data->raw_cred;
*rcred = &svcauth->raw_cred;
}
if (ucred != NULL) {
*ucred = &client_data->u_cred;
if (client_data->u_cred_set == 0 ||
client_data->u_cred_set < gethrestime_sec()) {
if (client_data->u_cred_set == 0) {
if ((gssstat = kgsscred_expname_to_unix_cred(
&client_data->client_name,
&client_data->u_cred.uid,
&client_data->u_cred.gid,
&client_data->u_cred.gidlist,
&gidlen, crgetuid(CRED()))) != GSS_S_COMPLETE) {
RPCGSS_LOG(1, "rpc_gss_getcred: "
"kgsscred_expname_to_unix_cred failed %x\n",
gssstat);
*ucred = NULL;
} else {
client_data->u_cred.gidlen = (short)gidlen;
client_data->u_cred_set =
gethrestime_sec() + svc_rpcgss_gid_timeout;
}
} else if (client_data->u_cred_set < gethrestime_sec()) {
if ((gssstat = kgss_get_group_info(
client_data->u_cred.uid,
&client_data->u_cred.gid,
&client_data->u_cred.gidlist,
&gidlen, crgetuid(CRED()))) != GSS_S_COMPLETE) {
RPCGSS_LOG(1, "rpc_gss_getcred: "
"kgss_get_group_info failed %x\n",
gssstat);
*ucred = NULL;
} else {
client_data->u_cred.gidlen = (short)gidlen;
client_data->u_cred_set =
gethrestime_sec() + svc_rpcgss_gid_timeout;
}
}
}
}
if (cookie != NULL)
*cookie = client_data->cookie;
req->rq_xprt->xp_cookie = client_data->cookie;
mutex_exit(&client_data->clm);
return (TRUE);
}
/*
* Transfer the context data from the user land to the kernel.
*/
bool_t transfer_sec_context(svc_rpc_gss_data *client_data) {
gss_buffer_desc process_token;
OM_uint32 gssstat, minor;
/*
* Call kgss_export_sec_context
* if an error is returned log a message
* go to error handling
* Otherwise call kgss_import_sec_context to
* convert the token into a context
*/
gssstat = kgss_export_sec_context(&minor, client_data->context,
&process_token);
/*
* if export_sec_context returns an error we delete the
* context just to be safe.
*/
if (gssstat == GSS_S_NAME_NOT_MN) {
RPCGSS_LOG0(4, "svc_rpcsec_gss: export sec context "
"Kernel mod unavailable\n");
} else if (gssstat != GSS_S_COMPLETE) {
RPCGSS_LOG(1, "svc_rpcsec_gss: export sec context failed "
" gssstat = 0x%x\n", gssstat);
(void) gss_release_buffer(&minor, &process_token);
(void) kgss_delete_sec_context(&minor, &client_data->context,
NULL);
return (FALSE);
} else if (process_token.length == 0) {
RPCGSS_LOG0(1, "svc_rpcsec_gss:zero length token in response "
"for export_sec_context, but "
"gsstat == GSS_S_COMPLETE\n");
(void) kgss_delete_sec_context(&minor, &client_data->context,
NULL);
return (FALSE);
} else {
gssstat = kgss_import_sec_context(&minor, &process_token,
client_data->context);
if (gssstat != GSS_S_COMPLETE) {
RPCGSS_LOG(1, "svc_rpcsec_gss: import sec context "
" failed gssstat = 0x%x\n", gssstat);
(void) kgss_delete_sec_context(&minor,
&client_data->context, NULL);
(void) gss_release_buffer(&minor, &process_token);
return (FALSE);
}
RPCGSS_LOG0(4, "gss_import_sec_context successful\n");
(void) gss_release_buffer(&minor, &process_token);
}
return (TRUE);
}
/*
* Server side authentication for RPCSEC_GSS.
*/
enum auth_stat
__svcrpcsec_gss(rqst, msg, no_dispatch)
struct svc_req *rqst;
struct rpc_msg *msg;
bool_t *no_dispatch;
{
XDR xdrs;
rpc_gss_creds creds;
rpc_gss_init_arg call_arg;
rpc_gss_init_res call_res, *retrans_result;
gss_buffer_desc output_token;
OM_uint32 gssstat, minor, minor_stat, time_rec;
struct opaque_auth *cred;
svc_rpc_gss_data *client_data;
int ret_flags, ret;
svc_rpc_gss_parms_t *gss_parms;
gss_OID mech_type = GSS_C_NULL_OID;
int free_mech_type = 1;
*no_dispatch = FALSE;
/*
* Initialize response verifier to NULL verifier. If
* necessary, this will be changed later.
*/
rqst->rq_xprt->xp_verf.oa_flavor = AUTH_NONE;
rqst->rq_xprt->xp_verf.oa_base = NULL;
rqst->rq_xprt->xp_verf.oa_length = 0;
/*
* Need to null out results to start with.
*/
bzero((char *)&call_res, sizeof (call_res));
/*
* Pull out and check credential and verifier.
*/
cred = &msg->rm_call.cb_cred;
/*
* Initialize output_token.
*/
output_token.length = 0;
output_token.value = NULL;
if (cred->oa_length == 0) {
RPCGSS_LOG0(1, "_svcrpcsec_gss: zero length cred\n");
ret = AUTH_BADCRED;
goto error;
}
xdrmem_create(&xdrs, cred->oa_base, cred->oa_length, XDR_DECODE);
bzero((char *)&creds, sizeof (creds));
if (!__xdr_rpc_gss_creds(&xdrs, &creds)) {
XDR_DESTROY(&xdrs);
RPCGSS_LOG0(1, "_svcrpcsec_gss: can't decode creds\n");
ret = AUTH_BADCRED;
goto error;
}
XDR_DESTROY(&xdrs);
/*
* If this is a control message and proc is GSSAPI_INIT, then
* create a client handle for this client. Otherwise, look up
* the existing handle.
*/
if (creds.gss_proc == RPCSEC_GSS_INIT) {
if (creds.ctx_handle.length != 0) {
RPCGSS_LOG0(1, "_svcrpcsec_gss: ctx_handle not null\n");
ret = AUTH_BADCRED;
goto error;
}
if ((client_data = create_client()) == NULL) {
RPCGSS_LOG0(1,
"_svcrpcsec_gss: can't create a new cache entry\n");
ret = AUTH_FAILED;
goto error;
}
} else {
/*
* Only verify values for service parameter when proc
* not RPCSEC_GSS_INIT or RPCSEC_GSS_CONTINUE_INIT.
* RFC2203 says contents for sequence and service args
* are undefined for creation procs.
*
* Note: only need to check for *CONTINUE_INIT here because
* if() clause already checked for RPCSEC_GSS_INIT
*/
if (creds.gss_proc != RPCSEC_GSS_CONTINUE_INIT) {
switch (creds.service) {
case rpc_gss_svc_none:
case rpc_gss_svc_integrity:
case rpc_gss_svc_privacy:
break;
default:
RPCGSS_LOG(1, "_svcrpcsec_gss: unknown service "
"type: 0x%x\n", creds.service);
ret = AUTH_BADCRED;
goto error;
}
}
if (creds.ctx_handle.length == 0) {
RPCGSS_LOG0(1, "_svcrpcsec_gss: no ctx_handle\n");
ret = AUTH_BADCRED;
goto error;
}
if ((client_data = get_client(&creds.ctx_handle)) == NULL) {
ret = RPCSEC_GSS_NOCRED;
RPCGSS_LOG0(1, "_svcrpcsec_gss: no security context\n");
goto error;
}
}
/*
* lock the client data until it's safe; if it's already stale,
* no more processing is possible
*/
mutex_enter(&client_data->clm);
if (client_data->stale) {
ret = RPCSEC_GSS_NOCRED;
RPCGSS_LOG0(1, "_svcrpcsec_gss: client data stale\n");
goto error2;
}
/*
* Any response we send will use ctx_handle, so set it now;
* also set seq_window since this won't change.
*/
call_res.ctx_handle.length = sizeof (client_data->key);
call_res.ctx_handle.value = (char *)&client_data->key;
call_res.seq_window = SEQ_WIN;
/*
* Set the appropriate wrap/unwrap routine for RPCSEC_GSS.
*/
rqst->rq_xprt->xp_auth.svc_ah_ops = svc_rpc_gss_ops;
rqst->rq_xprt->xp_auth.svc_ah_private = (caddr_t)client_data;
/*
* Keep copy of parameters we'll need for response, for the
* sake of reentrancy (we don't want to look in the context
* data because when we are sending a response, another
* request may have come in).
*/
gss_parms = &rqst->rq_xprt->xp_auth.svc_gss_parms;
gss_parms->established = client_data->established;
gss_parms->service = creds.service;
gss_parms->qop_rcvd = (uint_t)client_data->qop;
gss_parms->context = (void *)client_data->context;
gss_parms->seq_num = creds.seq_num;
if (!client_data->established) {
if (creds.gss_proc == RPCSEC_GSS_DATA) {
RPCGSS_LOG0(1, "_svcrpcsec_gss: data exchange "
"message but context not established\n");
ret = RPCSEC_GSS_FAILED;
client_data->stale = TRUE;
goto error2;
}
/*
* If the context is not established, then only
* RPCSEC_GSS_INIT and RPCSEC_GSS_CONTINUE_INIT
* requests are valid.
*/
if (creds.gss_proc != RPCSEC_GSS_INIT && creds.gss_proc !=
RPCSEC_GSS_CONTINUE_INIT) {
RPCGSS_LOG(1, "_svcrpcsec_gss: not an INIT or "
"CONTINUE_INIT message (0x%x) and context not "
"established\n", creds.gss_proc);
ret = RPCSEC_GSS_FAILED;
client_data->stale = TRUE;
goto error2;
}
/*
* call is for us, deserialize arguments
*/
bzero(&call_arg, sizeof (call_arg));
if (!SVC_GETARGS(rqst->rq_xprt, __xdr_rpc_gss_init_arg,
(caddr_t)&call_arg)) {
RPCGSS_LOG0(1, "_svcrpcsec_gss: SVC_GETARGS failed\n");
ret = RPCSEC_GSS_FAILED;
client_data->stale = TRUE;
goto error2;
}
gssstat = GSS_S_FAILURE;
minor = 0;
minor_stat = 0;
rw_enter(&cred_lock, RW_READER);
if (client_data->client_name.length) {
(void) gss_release_buffer(&minor,
&client_data->client_name);
}
gssstat = kgss_accept_sec_context(&minor_stat,
&client_data->context,
GSS_C_NO_CREDENTIAL,
&call_arg,
GSS_C_NO_CHANNEL_BINDINGS,
&client_data->client_name,
&mech_type,
&output_token,
&ret_flags,
&time_rec,
/*
* Don't need a delegated cred back.
* No memory will be allocated if
* passing NULL.
*/
NULL,
crgetuid(CRED()));
RPCGSS_LOG(4, "gssstat 0x%x \n", gssstat);
if (gssstat == GSS_S_COMPLETE) {
/*
* Server_creds was right - set it. Also
* set the raw and unix credentials at this
* point. This saves a lot of computation
* later when credentials are retrieved.
*/
client_data->raw_cred.version = creds.version;
client_data->raw_cred.service = creds.service;
if (client_data->raw_cred.mechanism) {
kgss_free_oid(client_data->\
raw_cred.mechanism);
client_data->raw_cred.mechanism = NULL;
}
client_data->raw_cred.mechanism =
(rpc_gss_OID) mech_type;
/*
* client_data is now responsible for freeing
* the data of 'mech_type'.
*/
free_mech_type = 0;
if (client_data->raw_cred.client_principal) {
kmem_free((caddr_t)client_data->\
raw_cred.client_principal,
client_data->raw_cred.\
client_principal->len + sizeof (int));
client_data->raw_cred.client_principal =
NULL;
}
/*
* The client_name returned from
* kgss_accept_sec_context() is in an
* exported flat format.
*/
if (! __rpc_gss_make_principal(
&client_data->raw_cred.client_principal,
&client_data->client_name)) {
RPCGSS_LOG0(1, "_svcrpcsec_gss: "
"make principal failed\n");
gssstat = GSS_S_FAILURE;
(void) gss_release_buffer(&minor_stat,
&output_token);
}
}
rw_exit(&cred_lock);
call_res.gss_major = gssstat;
call_res.gss_minor = minor_stat;
xdr_free(__xdr_rpc_gss_init_arg, (caddr_t)&call_arg);
if (gssstat != GSS_S_COMPLETE &&
gssstat != GSS_S_CONTINUE_NEEDED) {
/*
* We have a failure - send response and delete
* the context. Don't dispatch. Set ctx_handle
* to NULL and seq_window to 0.
*/
call_res.ctx_handle.length = 0;
call_res.ctx_handle.value = NULL;
call_res.seq_window = 0;
rpc_gss_display_status(gssstat,
minor_stat,
mech_type,
crgetuid(CRED()),
"_svc_rpcsec_gss gss_accept_sec_context");
(void) svc_sendreply(rqst->rq_xprt,
__xdr_rpc_gss_init_res, (caddr_t)&call_res);
*no_dispatch = TRUE;
client_data->stale = TRUE;
ret = AUTH_OK;
goto error2;
}
/*
* If appropriate, set established to TRUE *after* sending
* response (otherwise, the client will receive the final
* token encrypted)
*/
if (gssstat == GSS_S_COMPLETE) {
/*
* Context is established. Set expiration time
* for the context.
*/
client_data->seq_num = 1;
if ((time_rec == GSS_C_INDEFINITE) || (time_rec == 0)) {
client_data->expiration = GSS_C_INDEFINITE;
} else {
client_data->expiration =
time_rec + gethrestime_sec();
}
if (!transfer_sec_context(client_data)) {
ret = RPCSEC_GSS_FAILED;
client_data->stale = TRUE;
RPCGSS_LOG0(1,
"_svc_rpcsec_gss: transfer sec context failed\n");
goto error2;
}
client_data->established = TRUE;
}
/*
* This step succeeded. Send a response, along with
* a token if there's one. Don't dispatch.
*/
if (output_token.length != 0) {
GSS_COPY_BUFFER(call_res.token, output_token);
}
/*
* If GSS_S_COMPLETE: set response verifier to
* checksum of SEQ_WIN
*/
if (gssstat == GSS_S_COMPLETE) {
if (!set_response_verf(rqst, msg, client_data,
(uint_t)SEQ_WIN)) {
ret = RPCSEC_GSS_FAILED;
client_data->stale = TRUE;
RPCGSS_LOG0(1,
"_svc_rpcsec_gss:set response verifier failed\n");
goto error2;
}
}
(void) svc_sendreply(rqst->rq_xprt, __xdr_rpc_gss_init_res,
(caddr_t)&call_res);
/*
* Cache last response in case it is lost and the client
* retries on an established context.
*/
(void) retrans_add(client_data, msg->rm_xid, &call_res);
*no_dispatch = TRUE;
ASSERT(client_data->ref_cnt > 0);
client_data->ref_cnt--;
(void) gss_release_buffer(&minor_stat, &output_token);
} else {
if ((creds.gss_proc != RPCSEC_GSS_DATA) &&
(creds.gss_proc != RPCSEC_GSS_DESTROY)) {
switch (creds.gss_proc) {
case RPCSEC_GSS_CONTINUE_INIT:
/*
* This is an established context. Continue to
* satisfy retried continue init requests out of
* the retransmit cache. Throw away any that don't
* have a matching xid or the cach is empty.
* Delete the retransmit cache once the client sends
* a data request.
*/
if (client_data->retrans_data &&
(client_data->retrans_data->xid == msg->rm_xid)) {
retrans_result = &client_data->retrans_data->result;
if (set_response_verf(rqst, msg, client_data,
(uint_t)retrans_result->seq_window)) {
gss_parms->established = FALSE;
(void) svc_sendreply(rqst->rq_xprt,
__xdr_rpc_gss_init_res,
(caddr_t)retrans_result);
*no_dispatch = TRUE;
ASSERT(client_data->ref_cnt > 0);
client_data->ref_cnt--;
goto success;
}
}
/* fall thru to default */
default:
RPCGSS_LOG0(1, "_svcrpcsec_gss: non-data request "
"on an established context\n");
ret = AUTH_FAILED;
goto error2;
}
}
/*
* Once the context is established and there is no more
* retransmission of last continue init request, it is safe
* to delete the retransmit cache entry.
*/
if (client_data->retrans_data)
retrans_del(client_data);
/*
* Context is already established. Check verifier, and
* note parameters we will need for response in gss_parms.
*/
if (!check_verf(msg, client_data->context,
(int *)&gss_parms->qop_rcvd, client_data->u_cred.uid)) {
ret = RPCSEC_GSS_NOCRED;
RPCGSS_LOG0(1, "_svcrpcsec_gss: check verf failed\n");
goto error2;
}
/*
* Check and invoke callback if necessary.
*/
if (!client_data->done_docallback) {
client_data->done_docallback = TRUE;
client_data->qop = gss_parms->qop_rcvd;
client_data->raw_cred.qop = gss_parms->qop_rcvd;
client_data->raw_cred.service = creds.service;
if (!do_callback(rqst, client_data)) {
ret = AUTH_FAILED;
RPCGSS_LOG0(1,
"_svc_rpcsec_gss:callback failed\n");
goto error2;
}
}
/*
* If the context was locked, make sure that the client
* has not changed QOP.
*/
if (client_data->locked &&
gss_parms->qop_rcvd != client_data->qop) {
ret = AUTH_BADVERF;
RPCGSS_LOG0(1, "_svcrpcsec_gss: can not change qop\n");
goto error2;
}
/*
* Validate sequence number.
*/
if (!check_seq(client_data, creds.seq_num,
&client_data->stale)) {
if (client_data->stale) {
ret = RPCSEC_GSS_FAILED;
RPCGSS_LOG0(1,
"_svc_rpcsec_gss:check seq failed\n");
} else {
RPCGSS_LOG0(4, "_svc_rpcsec_gss:check seq "
"failed on good context. Ignoring "
"request\n");
/*
* Operational error, drop packet silently.
* The client will recover after timing out,
* assuming this is a client error and not
* a relpay attack. Don't dispatch.
*/
ret = AUTH_OK;
*no_dispatch = TRUE;
}
goto error2;
}
/*
* set response verifier
*/
if (!set_response_verf(rqst, msg, client_data,
creds.seq_num)) {
ret = RPCSEC_GSS_FAILED;
client_data->stale = TRUE;
RPCGSS_LOG0(1,
"_svc_rpcsec_gss:set response verifier failed\n");
goto error2;
}
/*
* If this is a control message RPCSEC_GSS_DESTROY, process
* the call; otherwise, return AUTH_OK so it will be
* dispatched to the application server.
*/
if (creds.gss_proc == RPCSEC_GSS_DESTROY) {
/*
* XXX Kernel client is not issuing this procudure
* right now. Need to revisit.
*/
(void) svc_sendreply(rqst->rq_xprt, xdr_void, NULL);
*no_dispatch = TRUE;
ASSERT(client_data->ref_cnt > 0);
client_data->ref_cnt--;
client_data->stale = TRUE;
} else {
/* This should be an RPCSEC_GSS_DATA request. */
ASSERT(creds.gss_proc == RPCSEC_GSS_DATA);
/*
* If context is locked, make sure that the client
* has not changed the security service.
*/
if (client_data->locked &&
client_data->raw_cred.service != creds.service) {
RPCGSS_LOG0(1, "_svc_rpcsec_gss: "
"security service changed.\n");
ret = AUTH_FAILED;
goto error2;
}
/*
* Set client credentials to raw credential
* structure in context. This is okay, since
* this will not change during the lifetime of
* the context (so it's MT safe).
*/
rqst->rq_clntcred = (char *)&client_data->raw_cred;
}
}
success:
/*
* Success.
*/
if (creds.ctx_handle.length != 0)
xdr_free(__xdr_rpc_gss_creds, (caddr_t)&creds);
mutex_exit(&client_data->clm);
return (AUTH_OK);
error2:
ASSERT(client_data->ref_cnt > 0);
client_data->ref_cnt--;
(void) gss_release_buffer(&minor_stat, &output_token);
if (free_mech_type && mech_type)
kgss_free_oid(mech_type);
mutex_exit(&client_data->clm);
error:
/*
* Failure.
*/
if (creds.ctx_handle.length != 0)
xdr_free(__xdr_rpc_gss_creds, (caddr_t)&creds);
return (ret);
}
/*
* Check verifier. The verifier is the checksum of the RPC header
* upto and including the credentials field.
*/
/* ARGSUSED */
static bool_t
check_verf(struct rpc_msg *msg, gss_ctx_id_t context, int *qop_state, uid_t uid)
{
int *buf, *tmp;
char hdr[128];
struct opaque_auth *oa;
int len;
gss_buffer_desc msg_buf;
gss_buffer_desc tok_buf;
OM_uint32 gssstat, minor_stat;
/*
* We have to reconstruct the RPC header from the previously
* parsed information, since we haven't kept the header intact.
*/
buf = (int *)hdr;
IXDR_PUT_U_INT32(buf, msg->rm_xid);
IXDR_PUT_ENUM(buf, msg->rm_direction);
IXDR_PUT_U_INT32(buf, msg->rm_call.cb_rpcvers);
IXDR_PUT_U_INT32(buf, msg->rm_call.cb_prog);
IXDR_PUT_U_INT32(buf, msg->rm_call.cb_vers);
IXDR_PUT_U_INT32(buf, msg->rm_call.cb_proc);
oa = &msg->rm_call.cb_cred;
IXDR_PUT_ENUM(buf, oa->oa_flavor);
IXDR_PUT_U_INT32(buf, oa->oa_length);
if (oa->oa_length) {
len = RNDUP(oa->oa_length);
tmp = buf;
buf += len / sizeof (int);
*(buf - 1) = 0;
(void) bcopy(oa->oa_base, (caddr_t)tmp, oa->oa_length);
}
len = ((char *)buf) - hdr;
msg_buf.length = len;
msg_buf.value = hdr;
oa = &msg->rm_call.cb_verf;
tok_buf.length = oa->oa_length;
tok_buf.value = oa->oa_base;
gssstat = kgss_verify(&minor_stat, context, &msg_buf, &tok_buf,
qop_state);
if (gssstat != GSS_S_COMPLETE) {
RPCGSS_LOG(1, "check_verf: kgss_verify status 0x%x\n", gssstat);
RPCGSS_LOG(4, "check_verf: msg_buf length %d\n", len);
RPCGSS_LOG(4, "check_verf: msg_buf value 0x%x\n", *(int *)hdr);
RPCGSS_LOG(4, "check_verf: tok_buf length %ld\n",
tok_buf.length);
RPCGSS_LOG(4, "check_verf: tok_buf value 0x%p\n",
(void *)oa->oa_base);
RPCGSS_LOG(4, "check_verf: context 0x%p\n", (void *)context);
return (FALSE);
}
return (TRUE);
}
/*
* Set response verifier. This is the checksum of the given number.
* (e.g. sequence number or sequence window)
*/
static bool_t
set_response_verf(rqst, msg, cl, num)
struct svc_req *rqst;
struct rpc_msg *msg;
svc_rpc_gss_data *cl;
uint_t num;
{
OM_uint32 minor;
gss_buffer_desc in_buf, out_buf;
uint_t num_net;
num_net = (uint_t)htonl(num);
in_buf.length = sizeof (num);
in_buf.value = (char *)&num_net;
/* XXX uid ? */
if ((kgss_sign(&minor, cl->context, cl->qop, &in_buf,
&out_buf)) != GSS_S_COMPLETE)
return (FALSE);
rqst->rq_xprt->xp_verf.oa_flavor = RPCSEC_GSS;
rqst->rq_xprt->xp_verf.oa_base = msg->rm_call.cb_verf.oa_base;
rqst->rq_xprt->xp_verf.oa_length = out_buf.length;
bcopy(out_buf.value, rqst->rq_xprt->xp_verf.oa_base, out_buf.length);
(void) gss_release_buffer(&minor, &out_buf);
return (TRUE);
}
/*
* Create client context.
*/
static svc_rpc_gss_data *
create_client()
{
svc_rpc_gss_data *client_data;
static uint_t key = 1;
client_data = (svc_rpc_gss_data *) kmem_cache_alloc(svc_data_handle,
KM_SLEEP);
if (client_data == NULL)
return (NULL);
/*
* set up client data structure
*/
client_data->next = NULL;
client_data->prev = NULL;
client_data->lru_next = NULL;
client_data->lru_prev = NULL;
client_data->client_name.length = 0;
client_data->client_name.value = NULL;
client_data->seq_num = 0;
bzero(client_data->seq_bits, sizeof (client_data->seq_bits));
client_data->key = 0;
client_data->cookie = NULL;
bzero(&client_data->u_cred, sizeof (client_data->u_cred));
client_data->established = FALSE;
client_data->locked = FALSE;
client_data->u_cred_set = 0;
client_data->context = GSS_C_NO_CONTEXT;
client_data->expiration = GSS_C_INDEFINITE;
client_data->deleg = GSS_C_NO_CREDENTIAL;
client_data->ref_cnt = 1;
client_data->last_ref_time = gethrestime_sec();
client_data->qop = GSS_C_QOP_DEFAULT;
client_data->done_docallback = FALSE;
client_data->stale = FALSE;
client_data->retrans_data = NULL;
bzero(&client_data->raw_cred, sizeof (client_data->raw_cred));
/*
* The client context handle is a 32-bit key (unsigned int).
* The key is incremented until there is no duplicate for it.
*/
svc_rpc_gss_cache_stats.total_entries_allocated++;
mutex_enter(&ctx_mutex);
for (;;) {
client_data->key = key++;
if (find_client(client_data->key) == NULL) {
insert_client(client_data);
mutex_exit(&ctx_mutex);
return (client_data);
}
}
/*NOTREACHED*/
}
/*
* Insert client context into hash list and LRU list.
*/
static void
insert_client(client_data)
svc_rpc_gss_data *client_data;
{
svc_rpc_gss_data *cl;
int index = HASH(client_data->key);
ASSERT(mutex_owned(&ctx_mutex));
client_data->prev = NULL;
cl = clients[index];
if ((client_data->next = cl) != NULL)
cl->prev = client_data;
clients[index] = client_data;
client_data->lru_prev = NULL;
if ((client_data->lru_next = lru_first) != NULL)
lru_first->lru_prev = client_data;
else
lru_last = client_data;
lru_first = client_data;
num_gss_contexts++;
}
/*
* Fetch a client, given the client context handle. Move it to the
* top of the LRU list since this is the most recently used context.
*/
static svc_rpc_gss_data *
get_client(ctx_handle)
gss_buffer_t ctx_handle;
{
uint_t key = *(uint_t *)ctx_handle->value;
svc_rpc_gss_data *cl;
mutex_enter(&ctx_mutex);
if ((cl = find_client(key)) != NULL) {
mutex_enter(&cl->clm);
if (cl->stale) {
if (cl->ref_cnt == 0) {
mutex_exit(&cl->clm);
destroy_client(cl);
} else {
mutex_exit(&cl->clm);
}
mutex_exit(&ctx_mutex);
return (NULL);
}
cl->ref_cnt++;
cl->last_ref_time = gethrestime_sec();
mutex_exit(&cl->clm);
if (cl != lru_first) {
cl->lru_prev->lru_next = cl->lru_next;
if (cl->lru_next != NULL)
cl->lru_next->lru_prev = cl->lru_prev;
else
lru_last = cl->lru_prev;
cl->lru_prev = NULL;
cl->lru_next = lru_first;
lru_first->lru_prev = cl;
lru_first = cl;
}
}
mutex_exit(&ctx_mutex);
return (cl);
}
/*
* Given the client context handle, find the context corresponding to it.
* Don't change its LRU state since it may not be used.
*/
static svc_rpc_gss_data *
find_client(key)
uint_t key;
{
int index = HASH(key);
svc_rpc_gss_data *cl = NULL;
ASSERT(mutex_owned(&ctx_mutex));
for (cl = clients[index]; cl != NULL; cl = cl->next) {
if (cl->key == key)
break;
}
return (cl);
}
/*
* Destroy a client context.
*/
static void
destroy_client(client_data)
svc_rpc_gss_data *client_data;
{
OM_uint32 minor;
int index = HASH(client_data->key);
ASSERT(mutex_owned(&ctx_mutex));
/*
* remove from hash list
*/
if (client_data->prev == NULL)
clients[index] = client_data->next;
else
client_data->prev->next = client_data->next;
if (client_data->next != NULL)
client_data->next->prev = client_data->prev;
/*
* remove from LRU list
*/
if (client_data->lru_prev == NULL)
lru_first = client_data->lru_next;
else
client_data->lru_prev->lru_next = client_data->lru_next;
if (client_data->lru_next != NULL)
client_data->lru_next->lru_prev = client_data->lru_prev;
else
lru_last = client_data->lru_prev;
/*
* If there is a GSS context, clean up GSS state.
*/
if (client_data->context != GSS_C_NO_CONTEXT) {
(void) kgss_delete_sec_context(&minor, &client_data->context,
NULL);
common_client_data_free(client_data);
if (client_data->deleg != GSS_C_NO_CREDENTIAL) {
(void) kgss_release_cred(&minor, &client_data->deleg,
crgetuid(CRED()));
}
}
if (client_data->u_cred.gidlist != NULL) {
kmem_free((char *)client_data->u_cred.gidlist,
client_data->u_cred.gidlen * sizeof (gid_t));
client_data->u_cred.gidlist = NULL;
}
if (client_data->retrans_data != NULL)
retrans_del(client_data);
kmem_cache_free(svc_data_handle, client_data);
num_gss_contexts--;
}
/*
* Check for expired and stale client contexts.
*/
static void
sweep_clients(bool_t from_reclaim)
{
svc_rpc_gss_data *cl, *next;
time_t last_reference_needed;
time_t now = gethrestime_sec();
ASSERT(mutex_owned(&ctx_mutex));
last_reference_needed = now - (from_reclaim ?
svc_rpc_gss_active_delta :
svc_rpc_gss_inactive_delta);
cl = lru_last;
while (cl) {
/*
* We assume here that any manipulation of the LRU pointers
* and hash bucket pointers are only done when holding the
* ctx_mutex.
*/
next = cl->lru_prev;
mutex_enter(&cl->clm);
if ((cl->expiration != GSS_C_INDEFINITE &&
cl->expiration <= now) || cl->stale ||
cl->last_ref_time <= last_reference_needed) {
if ((cl->expiration != GSS_C_INDEFINITE &&
cl->expiration <= now) || cl->stale ||
(cl->last_ref_time <= last_reference_needed &&
cl->ref_cnt == 0)) {
cl->stale = TRUE;
if (cl->ref_cnt == 0) {
mutex_exit(&cl->clm);
if (from_reclaim)
svc_rpc_gss_cache_stats.
no_returned_by_reclaim++;
destroy_client(cl);
} else
mutex_exit(&cl->clm);
} else
mutex_exit(&cl->clm);
} else
mutex_exit(&cl->clm);
cl = next;
}
last_swept = gethrestime_sec();
}
/*
* Encrypt the serialized arguments from xdr_func applied to xdr_ptr
* and write the result to xdrs.
*/
static bool_t
svc_rpc_gss_wrap(auth, out_xdrs, xdr_func, xdr_ptr)
SVCAUTH *auth;
XDR *out_xdrs;
bool_t (*xdr_func)();
caddr_t xdr_ptr;
{
svc_rpc_gss_parms_t *gss_parms = SVCAUTH_GSSPARMS(auth);
/*
* If context is not established, or if neither integrity nor
* privacy service is used, don't wrap - just XDR encode.
* Otherwise, wrap data using service and QOP parameters.
*/
if (!gss_parms->established ||
gss_parms->service == rpc_gss_svc_none)
return ((*xdr_func)(out_xdrs, xdr_ptr));
return (__rpc_gss_wrap_data(gss_parms->service,
(OM_uint32)gss_parms->qop_rcvd,
(gss_ctx_id_t)gss_parms->context,
gss_parms->seq_num,
out_xdrs, xdr_func, xdr_ptr));
}
/*
* Decrypt the serialized arguments and XDR decode them.
*/
static bool_t
svc_rpc_gss_unwrap(auth, in_xdrs, xdr_func, xdr_ptr)
SVCAUTH *auth;
XDR *in_xdrs;
bool_t (*xdr_func)();
caddr_t xdr_ptr;
{
svc_rpc_gss_parms_t *gss_parms = SVCAUTH_GSSPARMS(auth);
/*
* If context is not established, or if neither integrity nor
* privacy service is used, don't unwrap - just XDR decode.
* Otherwise, unwrap data.
*/
if (!gss_parms->established ||
gss_parms->service == rpc_gss_svc_none)
return ((*xdr_func)(in_xdrs, xdr_ptr));
return (__rpc_gss_unwrap_data(gss_parms->service,
(gss_ctx_id_t)gss_parms->context,
gss_parms->seq_num,
gss_parms->qop_rcvd,
in_xdrs, xdr_func, xdr_ptr));
}
/* ARGSUSED */
int
rpc_gss_svc_max_data_length(struct svc_req *req, int max_tp_unit_len)
{
return (0);
}
/*
* Add retransmit entry to the context cache entry for a new xid.
* If there is already an entry, delete it before adding the new one.
*/
static void retrans_add(client, xid, result)
svc_rpc_gss_data *client;
uint32_t xid;
rpc_gss_init_res *result;
{
retrans_entry *rdata;
if (client->retrans_data && client->retrans_data->xid == xid)
return;
rdata = kmem_zalloc(sizeof (*rdata), KM_SLEEP);
if (rdata == NULL)
return;
rdata->xid = xid;
rdata->result = *result;
if (result->token.length != 0) {
GSS_DUP_BUFFER(rdata->result.token, result->token);
}
if (client->retrans_data)
retrans_del(client);
client->retrans_data = rdata;
}
/*
* Delete the retransmit data from the context cache entry.
*/
static void retrans_del(client)
svc_rpc_gss_data *client;
{
retrans_entry *rdata;
OM_uint32 minor_stat;
if (client->retrans_data == NULL)
return;
rdata = client->retrans_data;
if (rdata->result.token.length != 0) {
(void) gss_release_buffer(&minor_stat, &rdata->result.token);
}
kmem_free((caddr_t)rdata, sizeof (*rdata));
client->retrans_data = NULL;
}
/*
* This function frees the following fields of svc_rpc_gss_data:
* client_name, raw_cred.client_principal, raw_cred.mechanism.
*/
static void
common_client_data_free(svc_rpc_gss_data *client_data)
{
if (client_data->client_name.length > 0) {
(void) gss_release_buffer(NULL, &client_data->client_name);
}
if (client_data->raw_cred.client_principal) {
kmem_free((caddr_t)client_data->raw_cred.client_principal,
client_data->raw_cred.client_principal->len +
sizeof (int));
client_data->raw_cred.client_principal = NULL;
}
/*
* In the user GSS-API library, mechanism (mech_type returned
* by gss_accept_sec_context) is static storage, however
* since all the work is done for gss_accept_sec_context under
* gssd, what is returned in the kernel, is a copy from the oid
* obtained under from gssd, so need to free it when destroying
* the client data.
*/
if (client_data->raw_cred.mechanism) {
kgss_free_oid(client_data->raw_cred.mechanism);
client_data->raw_cred.mechanism = NULL;
}
}