blob: 96e5a81a54d754fd71f7b52ab13908103920380d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/include/linux/sunrpc/gss_api.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Somewhat simplified version of the gss api.
5 *
6 * Dug Song <dugsong@monkey.org>
7 * Andy Adamson <andros@umich.edu>
8 * Bruce Fields <bfields@umich.edu>
9 * Copyright (c) 2000 The Regents of the University of Michigan
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#ifndef _LINUX_SUNRPC_GSS_API_H
13#define _LINUX_SUNRPC_GSS_API_H
14
15#ifdef __KERNEL__
16#include <linux/sunrpc/xdr.h>
Chuck Lever6a1a1e32012-07-11 16:31:08 -040017#include <linux/sunrpc/msg_prot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/uio.h>
19
20/* The mechanism-independent gss-api context: */
21struct gss_ctx {
22 struct gss_api_mech *mech_type;
23 void *internal_ctx_id;
24};
25
26#define GSS_C_NO_BUFFER ((struct xdr_netobj) 0)
27#define GSS_C_NO_CONTEXT ((struct gss_ctx *) 0)
Chuck Lever83523d02013-03-16 15:55:01 -040028#define GSS_C_QOP_DEFAULT (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/*XXX arbitrary length - is this set somewhere? */
31#define GSS_OID_MAX_LEN 32
Chuck Leverfb15b262013-03-16 15:54:34 -040032struct rpcsec_gss_oid {
33 unsigned int len;
34 u8 data[GSS_OID_MAX_LEN];
35};
36
37/* From RFC 3530 */
38struct rpcsec_gss_info {
39 struct rpcsec_gss_oid oid;
40 u32 qop;
41 u32 service;
42};
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44/* gss-api prototypes; note that these are somewhat simplified versions of
45 * the prototypes specified in RFC 2744. */
46int gss_import_sec_context(
47 const void* input_token,
48 size_t bufsize,
49 struct gss_api_mech *mech,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -040050 struct gss_ctx **ctx_id,
51 gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052u32 gss_get_mic(
53 struct gss_ctx *ctx_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 struct xdr_buf *message,
55 struct xdr_netobj *mic_token);
56u32 gss_verify_mic(
57 struct gss_ctx *ctx_id,
58 struct xdr_buf *message,
J. Bruce Fields00fd6e12005-10-13 16:55:18 -040059 struct xdr_netobj *mic_token);
J. Bruce Fields293f1eb2005-10-13 16:54:37 -040060u32 gss_wrap(
61 struct gss_ctx *ctx_id,
J. Bruce Fields293f1eb2005-10-13 16:54:37 -040062 int offset,
63 struct xdr_buf *outbuf,
64 struct page **inpages);
65u32 gss_unwrap(
66 struct gss_ctx *ctx_id,
J. Bruce Fields293f1eb2005-10-13 16:54:37 -040067 int offset,
68 struct xdr_buf *inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069u32 gss_delete_sec_context(
70 struct gss_ctx **ctx_id);
71
Chuck Lever83523d02013-03-16 15:55:01 -040072rpc_authflavor_t gss_svc_to_pseudoflavor(struct gss_api_mech *, u32 qop,
73 u32 service);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074u32 gss_pseudoflavor_to_service(struct gss_api_mech *, u32 pseudoflavor);
75char *gss_service_to_auth_domain_name(struct gss_api_mech *, u32 service);
76
77struct pf_desc {
78 u32 pseudoflavor;
Chuck Lever83523d02013-03-16 15:55:01 -040079 u32 qop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 u32 service;
81 char *name;
82 char *auth_domain_name;
83};
84
85/* Different mechanisms (e.g., krb5 or spkm3) may implement gss-api, and
86 * mechanisms may be dynamically registered or unregistered by modules. */
87
88/* Each mechanism is described by the following struct: */
89struct gss_api_mech {
90 struct list_head gm_list;
91 struct module *gm_owner;
Chuck Leverfb15b262013-03-16 15:54:34 -040092 struct rpcsec_gss_oid gm_oid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 char *gm_name;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040094 const struct gss_api_ops *gm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /* pseudoflavors supported by this mechanism: */
96 int gm_pf_num;
97 struct pf_desc * gm_pfs;
Trond Myklebust683ac662010-04-08 14:09:58 -040098 /* Should the following be a callback operation instead? */
99 const char *gm_upcall_enctypes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
102/* and must provide the following operations: */
103struct gss_api_ops {
104 int (*gss_import_sec_context)(
105 const void *input_token,
106 size_t bufsize,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -0400107 struct gss_ctx *ctx_id,
108 gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 u32 (*gss_get_mic)(
110 struct gss_ctx *ctx_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 struct xdr_buf *message,
112 struct xdr_netobj *mic_token);
113 u32 (*gss_verify_mic)(
114 struct gss_ctx *ctx_id,
115 struct xdr_buf *message,
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400116 struct xdr_netobj *mic_token);
J. Bruce Fields293f1eb2005-10-13 16:54:37 -0400117 u32 (*gss_wrap)(
118 struct gss_ctx *ctx_id,
J. Bruce Fields293f1eb2005-10-13 16:54:37 -0400119 int offset,
120 struct xdr_buf *outbuf,
121 struct page **inpages);
122 u32 (*gss_unwrap)(
123 struct gss_ctx *ctx_id,
J. Bruce Fields293f1eb2005-10-13 16:54:37 -0400124 int offset,
125 struct xdr_buf *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 void (*gss_delete_sec_context)(
127 void *internal_ctx_id);
128};
129
130int gss_mech_register(struct gss_api_mech *);
131void gss_mech_unregister(struct gss_api_mech *);
132
Chuck Lever9568c5e2013-03-16 15:54:43 -0400133/* Given a GSS security tuple, look up a pseudoflavor */
134rpc_authflavor_t gss_mech_info2flavor(struct rpcsec_gss_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136/* Returns a reference to a mechanism, given a name like "krb5" etc. */
137struct gss_api_mech *gss_mech_get_by_name(const char *);
138
139/* Similar, but get by pseudoflavor. */
140struct gss_api_mech *gss_mech_get_by_pseudoflavor(u32);
141
Bryan Schumaker8f70e952011-03-24 17:12:31 +0000142/* Fill in an array with a list of supported pseudoflavors */
Chuck Lever6a1a1e32012-07-11 16:31:08 -0400143int gss_mech_list_pseudoflavors(rpc_authflavor_t *, int);
Bryan Schumaker8f70e952011-03-24 17:12:31 +0000144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* Just increments the mechanism's reference count and returns its input: */
146struct gss_api_mech * gss_mech_get(struct gss_api_mech *);
147
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200148/* For every successful gss_mech_get or gss_mech_get_by_* call there must be a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 * corresponding call to gss_mech_put. */
150void gss_mech_put(struct gss_api_mech *);
151
152#endif /* __KERNEL__ */
153#endif /* _LINUX_SUNRPC_GSS_API_H */
154