]> andersk Git - gssapi-openssh.git/blob - openssh/ssh-gss.h
o Remove two gsi_openssh* packages from bundle module.
[gssapi-openssh.git] / openssh / ssh-gss.h
1 /*
2  * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #ifndef _SSH_GSS_H
26 #define _SSH_GSS_H
27
28 #ifdef GSSAPI
29
30 #include "kex.h"
31 #include "buffer.h"
32
33 #include <gssapi.h>
34
35 #ifndef MECHGLUE
36 #ifdef KRB5
37 #ifndef HEIMDAL
38 #include <gssapi_generic.h>
39
40 /* MIT Kerberos doesn't seem to define GSS_NT_HOSTBASED_SERVICE */
41 #ifndef GSS_C_NT_HOSTBASED_SERVICE
42 #define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
43 #endif /* GSS_C_NT_... */
44 #endif /* !HEIMDAL */
45 #endif /* KRB5 */
46 #endif /* !MECHGLUE */
47
48 /* draft-ietf-secsh-gsskeyex-03 */
49 #define SSH2_MSG_KEXGSS_INIT                            30
50 #define SSH2_MSG_KEXGSS_CONTINUE                        31
51 #define SSH2_MSG_KEXGSS_COMPLETE                        32
52 #define SSH2_MSG_KEXGSS_HOSTKEY                         33
53 #define SSH2_MSG_KEXGSS_ERROR                           34
54 #define SSH2_MSG_USERAUTH_GSSAPI_RESPONSE               60
55 #define SSH2_MSG_USERAUTH_GSSAPI_TOKEN                  61
56 #define SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE      63    
57 #define SSH2_MSG_USERAUTH_GSSAPI_ERROR                  64  
58 #define SSH2_MSG_USERAUTH_GSSAPI_ERRTOK                 65
59
60 #define KEX_GSS_SHA1                                    "gss-group1-sha1-"
61
62 typedef struct {
63         char *filename;
64         char *envvar;
65         char *envval;
66         void *data;
67 } ssh_gssapi_ccache;
68
69 typedef struct {
70         gss_buffer_desc name;
71         gss_cred_id_t   creds;
72         struct ssh_gssapi_mech_struct *mech;
73         ssh_gssapi_ccache store;
74 } ssh_gssapi_client;
75
76 typedef struct ssh_gssapi_mech_struct {
77         char *enc_name;
78         char *name;
79         gss_OID_desc oid;
80         int (*dochild) (ssh_gssapi_client *);
81         int (*userok) (ssh_gssapi_client *, char *);
82         int (*localname) (ssh_gssapi_client *, char **);
83         void (*storecreds) (ssh_gssapi_client *);
84 } ssh_gssapi_mech;
85
86
87
88 typedef struct {
89         OM_uint32       major; /* both */
90         OM_uint32       minor; /* both */
91         gss_ctx_id_t    context; /* both */
92         gss_name_t      name; /* both */
93         gss_OID         oid; /* both */
94         gss_cred_id_t   creds; /* server */
95         gss_name_t      client; /* server */
96         gss_cred_id_t   client_creds; /* server */
97 } Gssctxt;
98
99 extern ssh_gssapi_mech *supported_mechs[];
100
101 char *ssh_gssapi_mechanisms(char *host);
102 char *ssh_gssapi_client_mechanisms(char *host);
103 gss_OID ssh_gssapi_client_id_kex(Gssctxt *ctx, char *name);
104 int  ssh_gssapi_check_oid(Gssctxt *ctx, void *data, size_t len);
105 void ssh_gssapi_set_oid_data(Gssctxt *ctx, void *data, size_t len);
106 void ssh_gssapi_set_oid(Gssctxt *ctx, gss_OID oid);
107 void ssh_gssapi_supported_oids(gss_OID_set *oidset);
108 ssh_gssapi_mech *ssh_gssapi_get_ctype(Gssctxt *ctxt);
109
110 OM_uint32 ssh_gssapi_import_name(Gssctxt *ctx, const char *host);
111 OM_uint32 ssh_gssapi_acquire_cred(Gssctxt *ctx);
112 OM_uint32 ssh_gssapi_init_ctx(Gssctxt *ctx, int deleg_creds,
113                               gss_buffer_desc *recv_tok, 
114                               gss_buffer_desc *send_tok, OM_uint32 *flags);
115 OM_uint32 ssh_gssapi_accept_ctx(Gssctxt *ctx,
116                                 gss_buffer_desc *recv_tok,
117                                 gss_buffer_desc *send_tok,
118                                 OM_uint32 *flags);
119 OM_uint32 ssh_gssapi_getclient(Gssctxt *ctx,
120                                 ssh_gssapi_mech **mech,
121                                 gss_buffer_desc *name,
122                                 gss_cred_id_t *creds);
123 void ssh_gssapi_error(Gssctxt *ctx);
124 char *ssh_gssapi_last_error(Gssctxt *ctxt, OM_uint32 *maj, OM_uint32 *min);
125 void ssh_gssapi_build_ctx(Gssctxt **ctx);
126 void ssh_gssapi_delete_ctx(Gssctxt **ctx);
127 OM_uint32 ssh_gssapi_server_ctx(Gssctxt **ctx,gss_OID oid);
128
129 int ssh_gssapi_check_mechanism(gss_OID oid, char *host);
130
131 /* In the server */
132 gss_OID ssh_gssapi_server_id_kex(char *name);
133 int ssh_gssapi_userok(char *name);
134 int ssh_gssapi_localname(char **name);
135 void ssh_gssapi_server(Kex *kex, Buffer *client_kexinit, 
136                        Buffer *server_kexinit);
137
138 OM_uint32 ssh_gssapi_sign(Gssctxt *ctx, gss_buffer_desc *buffer, 
139                                         gss_buffer_desc *hash);
140
141 void ssh_gssapi_do_child(char ***envp, u_int *envsizep);                 
142 void ssh_gssapi_cleanup_creds(void *ignored);
143 void ssh_gssapi_storecreds();
144 char *ssh_gssapi_server_mechanisms();
145
146 #ifdef GSI
147 int gsi_gridmap(char *subject_name, char **mapped_name);
148 #endif
149
150 #ifdef MECHGLUE
151 gss_cred_id_t __gss_get_mechanism_cred
152    (gss_cred_id_t,      /* union_cred */
153     gss_OID             /* mech_type */
154    );
155 #endif
156
157 #endif /* GSSAPI */
158
159 #endif /* _SSH_GSS_H */
This page took 0.265775 seconds and 5 git commands to generate.