blob: a19e2547ae6aba4481ba4cd01f5bdbbf7545de22 [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)
28#define GSS_C_NULL_OID ((struct xdr_netobj) 0)
29
30/*XXX arbitrary length - is this set somewhere? */
31#define GSS_OID_MAX_LEN 32
32
33/* gss-api prototypes; note that these are somewhat simplified versions of
34 * the prototypes specified in RFC 2744. */
35int gss_import_sec_context(
36 const void* input_token,
37 size_t bufsize,
38 struct gss_api_mech *mech,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -040039 struct gss_ctx **ctx_id,
40 gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041u32 gss_get_mic(
42 struct gss_ctx *ctx_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct xdr_buf *message,
44 struct xdr_netobj *mic_token);
45u32 gss_verify_mic(
46 struct gss_ctx *ctx_id,
47 struct xdr_buf *message,
J. Bruce Fields00fd6e12005-10-13 16:55:18 -040048 struct xdr_netobj *mic_token);
J. Bruce Fields293f1eb2005-10-13 16:54:37 -040049u32 gss_wrap(
50 struct gss_ctx *ctx_id,
J. Bruce Fields293f1eb2005-10-13 16:54:37 -040051 int offset,
52 struct xdr_buf *outbuf,
53 struct page **inpages);
54u32 gss_unwrap(
55 struct gss_ctx *ctx_id,
J. Bruce Fields293f1eb2005-10-13 16:54:37 -040056 int offset,
57 struct xdr_buf *inbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058u32 gss_delete_sec_context(
59 struct gss_ctx **ctx_id);
60
Andy Adamsonc4170583f2007-07-17 04:04:42 -070061u32 gss_svc_to_pseudoflavor(struct gss_api_mech *, u32 service);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062u32 gss_pseudoflavor_to_service(struct gss_api_mech *, u32 pseudoflavor);
63char *gss_service_to_auth_domain_name(struct gss_api_mech *, u32 service);
64
65struct pf_desc {
66 u32 pseudoflavor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 u32 service;
68 char *name;
69 char *auth_domain_name;
70};
71
72/* Different mechanisms (e.g., krb5 or spkm3) may implement gss-api, and
73 * mechanisms may be dynamically registered or unregistered by modules. */
74
75/* Each mechanism is described by the following struct: */
76struct gss_api_mech {
77 struct list_head gm_list;
78 struct module *gm_owner;
79 struct xdr_netobj gm_oid;
80 char *gm_name;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040081 const struct gss_api_ops *gm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 /* pseudoflavors supported by this mechanism: */
83 int gm_pf_num;
84 struct pf_desc * gm_pfs;
Trond Myklebust683ac662010-04-08 14:09:58 -040085 /* Should the following be a callback operation instead? */
86 const char *gm_upcall_enctypes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
89/* and must provide the following operations: */
90struct gss_api_ops {
91 int (*gss_import_sec_context)(
92 const void *input_token,
93 size_t bufsize,
Trond Myklebust1f4c86c2010-05-13 12:51:02 -040094 struct gss_ctx *ctx_id,
95 gfp_t gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 u32 (*gss_get_mic)(
97 struct gss_ctx *ctx_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct xdr_buf *message,
99 struct xdr_netobj *mic_token);
100 u32 (*gss_verify_mic)(
101 struct gss_ctx *ctx_id,
102 struct xdr_buf *message,
J. Bruce Fields00fd6e12005-10-13 16:55:18 -0400103 struct xdr_netobj *mic_token);
J. Bruce Fields293f1eb2005-10-13 16:54:37 -0400104 u32 (*gss_wrap)(
105 struct gss_ctx *ctx_id,
J. Bruce Fields293f1eb2005-10-13 16:54:37 -0400106 int offset,
107 struct xdr_buf *outbuf,
108 struct page **inpages);
109 u32 (*gss_unwrap)(
110 struct gss_ctx *ctx_id,
J. Bruce Fields293f1eb2005-10-13 16:54:37 -0400111 int offset,
112 struct xdr_buf *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 void (*gss_delete_sec_context)(
114 void *internal_ctx_id);
115};
116
117int gss_mech_register(struct gss_api_mech *);
118void gss_mech_unregister(struct gss_api_mech *);
119
120/* returns a mechanism descriptor given an OID, and increments the mechanism's
121 * reference count. */
122struct gss_api_mech * gss_mech_get_by_OID(struct xdr_netobj *);
123
124/* Returns a reference to a mechanism, given a name like "krb5" etc. */
125struct gss_api_mech *gss_mech_get_by_name(const char *);
126
127/* Similar, but get by pseudoflavor. */
128struct gss_api_mech *gss_mech_get_by_pseudoflavor(u32);
129
Bryan Schumaker8f70e952011-03-24 17:12:31 +0000130/* Fill in an array with a list of supported pseudoflavors */
Chuck Lever6a1a1e32012-07-11 16:31:08 -0400131int gss_mech_list_pseudoflavors(rpc_authflavor_t *, int);
Bryan Schumaker8f70e952011-03-24 17:12:31 +0000132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/* Just increments the mechanism's reference count and returns its input: */
134struct gss_api_mech * gss_mech_get(struct gss_api_mech *);
135
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200136/* For every successful gss_mech_get or gss_mech_get_by_* call there must be a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * corresponding call to gss_mech_put. */
138void gss_mech_put(struct gss_api_mech *);
139
140#endif /* __KERNEL__ */
141#endif /* _LINUX_SUNRPC_GSS_API_H */
142