]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/librpcsec_gss/rpc_gss_set_callback.3
bhyvectl(8): Normalize the man page date
[FreeBSD/FreeBSD.git] / lib / librpcsec_gss / rpc_gss_set_callback.3
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 January 26, 2010
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
48 Register a function which will be called when new security contexts
49 are created on a server.
50 This function will be called on the first RPC request which uses that
51 context and has the opportunity of rejecting the request (for instance
52 after matching the request credentials to an access control list).
53 To accept the new security context, the callback should return
54 .Dv TRUE ,
55 otherwise
56 .Dv FALSE .
57 If the callback accepts a context, it becomes responsible for the
58 lifetime of the delegated client credentials (if any).
59 .Pp
60 It is also possible to 'lock' the values of service and quality of
61 protection used by the context.
62 If a context is locked, any subsequent requests which use different
63 values for service and quality of protection will be rejected.
64 .Sh PARAMETERS
65 .Bl -tag -width ".It gss_context"
66 .It cb
67 A structure containing the RPC program and version for this callback
68 and a function which will be called when new contexts are created for
69 the given RPC program and version
70 .It req
71 The RPC request using the new context
72 .It deleg
73 GSS-API delegated credentials (if any)
74 .It gss_context
75 The GSS-API context
76 .It lock
77 A structure used to enforce a particular QOP and service.
78 Set
79 .Fa lock->locked
80 to
81 .Dv TRUE
82 to lock the service and QOP values
83 .It cookie
84 The callback function may set
85 .Fa *cookie
86 to any pointer sized value.
87 This value can be accessed during the lifetime of the context via
88 .Fn rpc_gss_getcred .
89 .El
90 .Sh RETURN VALUES
91 Returns
92 .Dv TRUE
93 if the callback was registered successfully or
94 .Dv FALSE
95 otherwise
96 .Sh SEE ALSO
97 .Xr gssapi 3 ,
98 .Xr rpc 3 ,
99 .Xr rpc_gss_getcred 3 ,
100 .Xr rpcset_gss 3
101 .Sh HISTORY
102 The
103 .Nm
104 function first appeared in
105 .Fx 8.0 .
106 .Sh AUTHORS
107 This
108 manual page was written by
109 .An Doug Rabson Aq Mt dfr@FreeBSD.org .
110 .Sh BUGS
111 There is no mechanism for informing a server when a security context
112 has been deleted.
113 This makes it difficult to allocate resources (e.g. to return via the
114 callback's
115 .Fa cookie
116 argument).