diff options
author | Günther Deschner <gd@samba.org> | 2009-09-17 00:21:01 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-09-17 01:12:20 +0200 |
commit | 503d0358140fbf56bd83090f143272aeb770baa9 (patch) | |
tree | 32cf6fdb58c62599602d6d1ce9e48d4fee9fee19 /source3/include | |
parent | 83023462f95f60ecfd3019abe896cca1d2aed771 (diff) | |
download | samba-503d0358140fbf56bd83090f143272aeb770baa9.tar.gz samba-503d0358140fbf56bd83090f143272aeb770baa9.tar.bz2 samba-503d0358140fbf56bd83090f143272aeb770baa9.zip |
spnego: share spnego_parse.
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ads.h | 6 | ||||
-rw-r--r-- | source3/include/includes.h | 1 | ||||
-rw-r--r-- | source3/include/proto.h | 6 | ||||
-rw-r--r-- | source3/include/spnego.h | 81 |
4 files changed, 6 insertions, 88 deletions
diff --git a/source3/include/ads.h b/source3/include/ads.h index 9761d54086..6d9b0eebac 100644 --- a/source3/include/ads.h +++ b/source3/include/ads.h @@ -8,6 +8,12 @@ #include "../libds/common/flags.h" +#define TOK_ID_KRB_AP_REQ ((const uint8_t *)"\x01\x00") +#define TOK_ID_KRB_AP_REP ((const uint8_t *)"\x02\x00") +#define TOK_ID_KRB_ERROR ((const uint8_t *)"\x03\x00") +#define TOK_ID_GSS_GETMIC ((const uint8_t *)"\x01\x01") +#define TOK_ID_GSS_WRAP ((const uint8_t *)"\x02\x01") + enum wb_posix_mapping { WB_POSIX_MAP_UNKNOWN = -1, WB_POSIX_MAP_TEMPLATE = 0, diff --git a/source3/include/includes.h b/source3/include/includes.h index d1be3b06a8..71125140be 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -688,7 +688,6 @@ struct smb_iconv_convenience *lp_iconv_convenience(void *lp_ctx); #include "mangle.h" #include "module.h" #include "nsswitch/winbind_client.h" -#include "spnego.h" #include "rpc_client.h" #include "dbwrap.h" #include "packet.h" diff --git a/source3/include/proto.h b/source3/include/proto.h index 4b80ef1cb0..81cb5ef6e1 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3297,12 +3297,6 @@ const char *smb_dos_err_class(uint8 e_class); char *smb_dos_errstr(char *inbuf); WERROR map_werror_from_unix(int error); -/* The following definitions come from libsmb/spnego.c */ - -ssize_t read_spnego_data(DATA_BLOB data, SPNEGO_DATA *token); -ssize_t write_spnego_data(DATA_BLOB *blob, SPNEGO_DATA *spnego); -bool free_spnego_data(SPNEGO_DATA *spnego); - /* The following definitions come from libsmb/trustdom_cache.c */ bool trustdom_cache_enable(void); diff --git a/source3/include/spnego.h b/source3/include/spnego.h deleted file mode 100644 index f777969d3a..0000000000 --- a/source3/include/spnego.h +++ /dev/null @@ -1,81 +0,0 @@ -/* - Unix SMB/CIFS implementation. - - RFC2478 Compliant SPNEGO implementation - - Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003 - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - - You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. -*/ - -#ifndef SAMBA_SPNEGO_H -#define SAMBA_SPNEGO_H - -#define SPNEGO_DELEG_FLAG 0x01 -#define SPNEGO_MUTUAL_FLAG 0x02 -#define SPNEGO_REPLAY_FLAG 0x04 -#define SPNEGO_SEQUENCE_FLAG 0x08 -#define SPNEGO_ANON_FLAG 0x10 -#define SPNEGO_CONF_FLAG 0x20 -#define SPNEGO_INTEG_FLAG 0x40 -#define SPNEGO_REQ_FLAG 0x80 - -#define SPNEGO_NEG_TOKEN_INIT 0 -#define SPNEGO_NEG_TOKEN_TARG 1 - -/* some well known object IDs */ -#define OID_SPNEGO "1.3.6.1.5.5.2" -#define OID_NTLMSSP "1.3.6.1.4.1.311.2.2.10" -#define OID_KERBEROS5_OLD "1.2.840.48018.1.2.2" -#define OID_KERBEROS5 "1.2.840.113554.1.2.2" - -#define SPNEGO_NEG_RESULT_ACCEPT 0 -#define SPNEGO_NEG_RESULT_INCOMPLETE 1 -#define SPNEGO_NEG_RESULT_REJECT 2 - -/* not really ASN.1, but RFC 1964 */ -#define TOK_ID_KRB_AP_REQ (uchar*)"\x01\x00" -#define TOK_ID_KRB_AP_REP (uchar*)"\x02\x00" -#define TOK_ID_KRB_ERROR (uchar*)"\x03\x00" -#define TOK_ID_GSS_GETMIC (uchar*)"\x01\x01" -#define TOK_ID_GSS_WRAP (uchar*)"\x02\x01" - -typedef enum _spnego_negResult { - SPNEGO_ACCEPT_COMPLETED = 0, - SPNEGO_ACCEPT_INCOMPLETE = 1, - SPNEGO_REJECT = 2 -} negResult_t; - -typedef struct spnego_negTokenInit { - const char **mechTypes; - int reqFlags; - DATA_BLOB mechToken; - DATA_BLOB mechListMIC; -} negTokenInit_t; - -typedef struct spnego_negTokenTarg { - uint8 negResult; - char *supportedMech; - DATA_BLOB responseToken; - DATA_BLOB mechListMIC; -} negTokenTarg_t; - -typedef struct spnego_spnego { - int type; - negTokenInit_t negTokenInit; - negTokenTarg_t negTokenTarg; -} SPNEGO_DATA; - -#endif |