source: vendor/3.6.23/source3/libsmb/ntlmssp_wrap.c

Last change on this file was 740, checked in by Silvan Scherrer, 13 years ago

Samba Server: update vendor to 3.6.0

File size: 4.7 KB
Line 
1/*
2 NLTMSSP wrappers
3
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Andrew Bartlett 2001-2003
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
19*/
20
21#include "includes.h"
22#include "libcli/auth/ntlmssp.h"
23#include "ntlmssp_wrap.h"
24
25NTSTATUS auth_ntlmssp_sign_packet(struct auth_ntlmssp_state *ans,
26 TALLOC_CTX *sig_mem_ctx,
27 const uint8_t *data,
28 size_t length,
29 const uint8_t *whole_pdu,
30 size_t pdu_length,
31 DATA_BLOB *sig)
32{
33 return ntlmssp_sign_packet(ans->ntlmssp_state,
34 sig_mem_ctx,
35 data, length,
36 whole_pdu, pdu_length,
37 sig);
38}
39
40NTSTATUS auth_ntlmssp_check_packet(struct auth_ntlmssp_state *ans,
41 const uint8_t *data,
42 size_t length,
43 const uint8_t *whole_pdu,
44 size_t pdu_length,
45 const DATA_BLOB *sig)
46{
47 return ntlmssp_check_packet(ans->ntlmssp_state,
48 data, length,
49 whole_pdu, pdu_length,
50 sig);
51}
52
53NTSTATUS auth_ntlmssp_seal_packet(struct auth_ntlmssp_state *ans,
54 TALLOC_CTX *sig_mem_ctx,
55 uint8_t *data,
56 size_t length,
57 const uint8_t *whole_pdu,
58 size_t pdu_length,
59 DATA_BLOB *sig)
60{
61 return ntlmssp_seal_packet(ans->ntlmssp_state,
62 sig_mem_ctx,
63 data, length,
64 whole_pdu, pdu_length,
65 sig);
66}
67
68NTSTATUS auth_ntlmssp_unseal_packet(struct auth_ntlmssp_state *ans,
69 uint8_t *data,
70 size_t length,
71 const uint8_t *whole_pdu,
72 size_t pdu_length,
73 const DATA_BLOB *sig)
74{
75 return ntlmssp_unseal_packet(ans->ntlmssp_state,
76 data, length,
77 whole_pdu, pdu_length,
78 sig);
79}
80
81bool auth_ntlmssp_negotiated_sign(struct auth_ntlmssp_state *ans)
82{
83 return ans->ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_SIGN;
84}
85
86bool auth_ntlmssp_negotiated_seal(struct auth_ntlmssp_state *ans)
87{
88 return ans->ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_SEAL;
89}
90
91struct ntlmssp_state *auth_ntlmssp_get_ntlmssp_state(
92 struct auth_ntlmssp_state *ans)
93{
94 return ans->ntlmssp_state;
95}
96
97/* Needed for 'map to guest' and 'smb username' processing */
98const char *auth_ntlmssp_get_username(struct auth_ntlmssp_state *ans)
99{
100 return ans->ntlmssp_state->user;
101}
102
103const char *auth_ntlmssp_get_domain(struct auth_ntlmssp_state *ans)
104{
105 return ans->ntlmssp_state->domain;
106}
107
108const char *auth_ntlmssp_get_client(struct auth_ntlmssp_state *ans)
109{
110 return ans->ntlmssp_state->client.netbios_name;
111}
112
113const uint8_t *auth_ntlmssp_get_nt_hash(struct auth_ntlmssp_state *ans)
114{
115 return ans->ntlmssp_state->nt_hash;
116}
117
118NTSTATUS auth_ntlmssp_set_username(struct auth_ntlmssp_state *ans,
119 const char *user)
120{
121 return ntlmssp_set_username(ans->ntlmssp_state, user);
122}
123
124NTSTATUS auth_ntlmssp_set_domain(struct auth_ntlmssp_state *ans,
125 const char *domain)
126{
127 return ntlmssp_set_domain(ans->ntlmssp_state, domain);
128}
129
130NTSTATUS auth_ntlmssp_set_password(struct auth_ntlmssp_state *ans,
131 const char *password)
132{
133 return ntlmssp_set_password(ans->ntlmssp_state, password);
134}
135
136void auth_ntlmssp_and_flags(struct auth_ntlmssp_state *ans, uint32_t flags)
137{
138 ans->ntlmssp_state->neg_flags &= flags;
139}
140
141void auth_ntlmssp_or_flags(struct auth_ntlmssp_state *ans, uint32_t flags)
142{
143 ans->ntlmssp_state->neg_flags |= flags;
144}
145
146DATA_BLOB auth_ntlmssp_get_session_key(struct auth_ntlmssp_state *ans)
147{
148 return ans->ntlmssp_state->session_key;
149}
150
151NTSTATUS auth_ntlmssp_update(struct auth_ntlmssp_state *ans,
152 const DATA_BLOB request, DATA_BLOB *reply)
153{
154 return ntlmssp_update(ans->ntlmssp_state, request, reply);
155}
156
157NTSTATUS auth_ntlmssp_client_start(TALLOC_CTX *mem_ctx,
158 const char *netbios_name,
159 const char *netbios_domain,
160 bool use_ntlmv2,
161 struct auth_ntlmssp_state **_ans)
162{
163 struct auth_ntlmssp_state *ans;
164 NTSTATUS status;
165
166 ans = talloc_zero(mem_ctx, struct auth_ntlmssp_state);
167
168 status = ntlmssp_client_start(ans,
169 netbios_name, netbios_domain,
170 use_ntlmv2, &ans->ntlmssp_state);
171 if (!NT_STATUS_IS_OK(status)) {
172 return status;
173 }
174
175 *_ans = ans;
176 return NT_STATUS_OK;
177}
Note: See TracBrowser for help on using the repository browser.