SUNRPC: Add RPC based upcall mechanism for RPCGSS auth
authorSimo Sorce <simo@redhat.com>
Fri, 25 May 2012 22:09:55 +0000 (18:09 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Fri, 26 Apr 2013 15:41:27 +0000 (11:41 -0400)
commit1d658336b05f8697d6445834f8867f8ad5e4f735
treeea5ee58159824eb8a16044770b2d2afb6c50a863
parent400f26b542e86995662a0cc5483656b7b1f42af6
SUNRPC: Add RPC based upcall mechanism for RPCGSS auth

This patch implements a sunrpc client to use the services of the gssproxy
userspace daemon.

In particular it allows to perform calls in user space using an RPC
call instead of custom hand-coded upcall/downcall messages.

Currently only accept_sec_context is implemented as that is all is needed for
the server case.

File server modules like NFS and CIFS can use full gssapi services this way,
once init_sec_context is also implemented.

For the NFS server case this code allow to lift the limit of max 2k krb5
tickets. This limit is prevents legitimate kerberos deployments from using krb5
authentication with the Linux NFS server as they have normally ticket that are
many kilobytes large.

It will also allow to lift the limitation on the size of the credential set
(uid,gid,gids) passed down from user space for users that have very many groups
associated. Currently the downcall mechanism used by rpc.svcgssd is limited
to around 2k secondary groups of the 65k allowed by kernel structures.

Signed-off-by: Simo Sorce <simo@redhat.com>
[bfields: containerization, concurrent upcalls, misc. fixes and cleanup]
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
net/sunrpc/auth_gss/Makefile
net/sunrpc/auth_gss/gss_rpc_upcall.c [new file with mode: 0644]
net/sunrpc/auth_gss/gss_rpc_upcall.h [new file with mode: 0644]
net/sunrpc/auth_gss/gss_rpc_xdr.c [new file with mode: 0644]
net/sunrpc/auth_gss/gss_rpc_xdr.h [new file with mode: 0644]
net/sunrpc/clnt.c
net/sunrpc/netns.h