1.\" Copyright (c) 2008 Isilon Inc http://www.isilon.com/ 2.\" Authors: Doug Rabson <dfr@rabson.org> 3.\" Developed with Red Inc: Alfred Perlstein <alfred@freebsd.org> 4.\" 5.\" Redistribution and use in source and binary forms, with or without 6.\" modification, are permitted provided that the following conditions 7.\" are met: 8.\" 1. Redistributions of source code must retain the above copyright 9.\" notice, this list of conditions and the following disclaimer. 10.\" 2. Redistributions in binary form must reproduce the above copyright 11.\" notice, this list of conditions and the following disclaimer in the 12.\" documentation and/or other materials provided with the distribution. 13.\" 14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24.\" SUCH DAMAGE. 25.\" 26.\" $FreeBSD$ 27.Dd July 4, 2008 28.Dt RPC_GSS_SET_CALLBACK 3 29.Os 30.Sh NAME 31.Nm rpc_gss_set_callback 32.Nd "Register a security context creation callback" 33.Sh LIBRARY 34.Lb librpcsec_gss 35.Sh SYNOPSIS 36.In rpc/rpcsec_gss.h 37.Ft bool_t 38.Fo (*callback) 39.Fa "struct svc_req *req" 40.Fa "gss_cred_id_t deleg" 41.Fa "gss_ctx_id_t gss_context" 42.Fa "rpc_gss_lock_t *lock" 43.Fa "void **cookie" 44.Fc 45.Ft bool_t 46.Fn rpc_gss_set_callback "rpc_gss_callback_t *cb" 47.Sh DESCRIPTION 48Register a function which will be called when new security contexts 49are created on a server. 50This function will be called on the first RPC request which uses that 51context and has the opportunity of rejecting the request (for instance 52after matching the request credentials to an access control list). 53To accept the new security context, the callback should return 54.Dv TRUE , 55otherwise 56.Dv FALSE . 57If the callback accepts a context, it becomes responsible for the 58lifetime of the delegated client credentials (if any). 59.Pp 60It is also possible to 'lock' the values of service and quality of 61protection used by the context. 62If a context is locked, any subsequent requests which use different 63values for service and quality of protection will be rejected. 64.Sh PARAMETERS 65.Bl -tag 66.It cb 67A structure containing the RPC program and version for this callback 68and a function which will be called when new contexts are created for 69ths given RPC program and version 70.It req 71The RPC request using the new context 72.It deleg 73GSS-APi delegated credentials (if any) 74.It gss_context 75The GSS-API context 76.It lock 77A structure used to enforce a particular QOP and service. Set 78.Fa lock->locked 79to 80.Dv TRUE 81to lock the service and QOP values 82.It cookie 83The callback function may set 84.Fa *cookie 85to any pointer sized value. 86This value can be accessed during the lifetime of the context via 87.Fn rpc_gss_getcred . 88.El 89.Sh RETURN VALUES 90Returns 91.Dv TRUE 92if the callback was registered successfully or 93.Dv FALSE 94otherwise 95.Sh SEE ALSO 96.Xr rpc 3 , 97.Xr gssapi 3 , 98.Xr rpc_gss_getcred 3 99.Xr rpcset_gss 3 100.Sh HISTORY 101The 102.Nm 103function first appeared in 104.Fx 8.0 . 105.Sh AUTHORS 106This 107manual page was written by 108.An Doug Rabson Aq dfr@FreeBSD.org . 109.Sh BUGS 110There is no mechanism for informing a server when a security context 111has been deleted. 112This makes it difficult to allocate resources (e.g. to return via the 113callback's 114.Fa cookie 115argument). 116