Chuck Lever | 2573a46 | 2019-02-11 11:25:15 -0500 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simo Sorce | 1d65833 | 2012-05-25 18:09:55 -0400 | [diff] [blame] | 2 | /* |
| 3 | * linux/net/sunrpc/gss_rpc_upcall.h |
| 4 | * |
| 5 | * Copyright (C) 2012 Simo Sorce <simo@redhat.com> |
Simo Sorce | 1d65833 | 2012-05-25 18:09:55 -0400 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _GSS_RPC_UPCALL_H |
| 9 | #define _GSS_RPC_UPCALL_H |
| 10 | |
J. Bruce Fields | b1df763 | 2013-04-29 14:03:30 -0400 | [diff] [blame] | 11 | #include <linux/sunrpc/gss_api.h> |
Simo Sorce | 1d65833 | 2012-05-25 18:09:55 -0400 | [diff] [blame] | 12 | #include <linux/sunrpc/auth_gss.h> |
| 13 | #include "gss_rpc_xdr.h" |
| 14 | #include "../netns.h" |
| 15 | |
| 16 | struct gssp_upcall_data { |
| 17 | struct xdr_netobj in_handle; |
| 18 | struct gssp_in_token in_token; |
| 19 | struct xdr_netobj out_handle; |
| 20 | struct xdr_netobj out_token; |
J. Bruce Fields | b1df763 | 2013-04-29 14:03:30 -0400 | [diff] [blame] | 21 | struct rpcsec_gss_oid mech_oid; |
Simo Sorce | 1d65833 | 2012-05-25 18:09:55 -0400 | [diff] [blame] | 22 | struct svc_cred creds; |
| 23 | int found_creds; |
| 24 | int major_status; |
| 25 | int minor_status; |
| 26 | }; |
| 27 | |
| 28 | int gssp_accept_sec_context_upcall(struct net *net, |
| 29 | struct gssp_upcall_data *data); |
| 30 | void gssp_free_upcall_data(struct gssp_upcall_data *data); |
| 31 | |
| 32 | void init_gssp_clnt(struct sunrpc_net *); |
| 33 | int set_gssp_clnt(struct net *); |
| 34 | void clear_gssp_clnt(struct sunrpc_net *); |
Chuck Lever | 2573a46 | 2019-02-11 11:25:15 -0500 | [diff] [blame] | 35 | |
Simo Sorce | 1d65833 | 2012-05-25 18:09:55 -0400 | [diff] [blame] | 36 | #endif /* _GSS_RPC_UPCALL_H */ |