1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
/*
Unix SMB/CIFS implementation.
Helper functions for applying replicated objects
Copyright (C) Stefan Metzmacher <metze@samba.org> 2007
Copyright (C) Andrew Bartlett <abartlet@samba.org> 2009
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/>.
*/
#include "includes.h"
#include "../lib/util/dlinklist.h"
#include "librpc/gen_ndr/ndr_misc.h"
#include "librpc/gen_ndr/ndr_drsuapi.h"
#include "librpc/gen_ndr/ndr_drsblobs.h"
#include "zlib.h"
#include "../libcli/drsuapi/drsuapi.h"
#include "libcli/auth/libcli_auth.h"
#include "dsdb/samdb/samdb.h"
#include "lib/crypto/gnutls_helpers.h"
#include <gnutls/gnutls.h>
#include <gnutls/crypto.h>
static WERROR drsuapi_decrypt_attribute_value(TALLOC_CTX *mem_ctx,
const DATA_BLOB *gensec_skey,
bool rid_crypt,
uint32_t rid,
const DATA_BLOB *in,
DATA_BLOB *out)
{
DATA_BLOB confounder;
DATA_BLOB enc_buffer;
DATA_BLOB dec_buffer;
uint32_t crc32_given;
uint32_t crc32_calc;
DATA_BLOB checked_buffer;
DATA_BLOB plain_buffer;
WERROR result;
int rc;
/*
* users with rid == 0 should not exist
*/
if (rid_crypt && rid == 0) {
return WERR_DS_DRA_INVALID_PARAMETER;
}
/*
* the first 16 bytes at the beginning are the confounder
* followed by the 4 byte crc32 checksum
*/
if (in->length < 20) {
return WERR_DS_DRA_INVALID_PARAMETER;
}
confounder = data_blob_const(in->data, 16);
enc_buffer = data_blob_const(in->data + 16, in->length - 16);
/*
* decrypt with the encryption key, being md5 over the session
* key followed by the confounder. The parameter order to
* samba_gnutls_arcfour_confounded_md5() matters for this!
*
* here the gensec session key is used and
* not the dcerpc ncacn_ip_tcp "SystemLibraryDTC" key!
*/
/*
* reference the encrypted buffer part and
* decrypt it using the created encryption key using arcfour
*/
dec_buffer = data_blob_const(enc_buffer.data, enc_buffer.length);
rc = samba_gnutls_arcfour_confounded_md5(gensec_skey,
&confounder,
&dec_buffer,
SAMBA_GNUTLS_DECRYPT);
if (rc < 0) {
result = gnutls_error_to_werror(rc, WERR_INTERNAL_ERROR);
goto out;
}
/*
* the first 4 byte are the crc32 checksum
* of the remaining bytes
*/
crc32_given = IVAL(dec_buffer.data, 0);
crc32_calc = crc32(0, Z_NULL, 0);
crc32_calc = crc32(crc32_calc,
dec_buffer.data + 4 ,
dec_buffer.length - 4);
checked_buffer = data_blob_const(dec_buffer.data + 4, dec_buffer.length - 4);
plain_buffer = data_blob_talloc(mem_ctx, checked_buffer.data, checked_buffer.length);
W_ERROR_HAVE_NO_MEMORY(plain_buffer.data);
if (crc32_given != crc32_calc) {
result = W_ERROR(HRES_ERROR_V(HRES_SEC_E_DECRYPT_FAILURE));
goto out;
}
/*
* The following rid_crypt obfuscation isn't session specific
* and not really needed here, because we always know the rid of the
* user account.
*
* some attributes with this 'additional encryption' include
* dBCSPwd, unicodePwd, ntPwdHistory, lmPwdHistory
*
* But for the rest of samba it's easier when we remove this static
* obfuscation here
*/
if (rid_crypt) {
uint32_t i, num_hashes;
if ((checked_buffer.length % 16) != 0) {
result = WERR_DS_DRA_INVALID_PARAMETER;
goto out;
}
num_hashes = plain_buffer.length / 16;
for (i = 0; i < num_hashes; i++) {
uint32_t offset = i * 16;
rc = sam_rid_crypt(rid, checked_buffer.data + offset,
plain_buffer.data + offset,
SAMBA_GNUTLS_DECRYPT);
if (rc != 0) {
result = gnutls_error_to_werror(rc, WERR_INTERNAL_ERROR);
goto out;
}
}
}
*out = plain_buffer;
result = WERR_OK;
out:
return result;
}
WERROR drsuapi_decrypt_attribute(TALLOC_CTX *mem_ctx,
const DATA_BLOB *gensec_skey,
uint32_t rid,
uint32_t dsdb_repl_flags,
struct drsuapi_DsReplicaAttribute *attr)
{
WERROR status;
DATA_BLOB *enc_data;
DATA_BLOB plain_data;
bool rid_crypt = false;
if (attr->value_ctr.num_values == 0) {
return WERR_OK;
}
switch (attr->attid) {
case DRSUAPI_ATTID_dBCSPwd:
case DRSUAPI_ATTID_unicodePwd:
case DRSUAPI_ATTID_ntPwdHistory:
case DRSUAPI_ATTID_lmPwdHistory:
rid_crypt = true;
break;
case DRSUAPI_ATTID_supplementalCredentials:
case DRSUAPI_ATTID_priorValue:
case DRSUAPI_ATTID_currentValue:
case DRSUAPI_ATTID_trustAuthOutgoing:
case DRSUAPI_ATTID_trustAuthIncoming:
case DRSUAPI_ATTID_initialAuthOutgoing:
case DRSUAPI_ATTID_initialAuthIncoming:
break;
default:
return WERR_OK;
}
if (dsdb_repl_flags & DSDB_REPL_FLAG_EXPECT_NO_SECRETS) {
return WERR_TOO_MANY_SECRETS;
}
if (attr->value_ctr.num_values > 1) {
return WERR_DS_DRA_INVALID_PARAMETER;
}
if (!attr->value_ctr.values[0].blob) {
return WERR_DS_DRA_INVALID_PARAMETER;
}
enc_data = attr->value_ctr.values[0].blob;
status = drsuapi_decrypt_attribute_value(mem_ctx,
gensec_skey,
rid_crypt,
rid,
enc_data,
&plain_data);
W_ERROR_NOT_OK_RETURN(status);
talloc_free(attr->value_ctr.values[0].blob->data);
*attr->value_ctr.values[0].blob = plain_data;
return WERR_OK;
}
static WERROR drsuapi_encrypt_attribute_value(TALLOC_CTX *mem_ctx,
const DATA_BLOB *gensec_skey,
bool rid_crypt,
uint32_t rid,
const DATA_BLOB *in,
DATA_BLOB *out)
{
DATA_BLOB rid_crypt_out = data_blob(NULL, 0);
DATA_BLOB confounder;
DATA_BLOB enc_buffer;
DATA_BLOB to_encrypt;
uint32_t crc32_calc;
WERROR result;
int rc;
/*
* users with rid == 0 should not exist
*/
if (rid_crypt && rid == 0) {
return WERR_DS_DRA_INVALID_PARAMETER;
}
/*
* The following rid_crypt obfuscation isn't session specific
* and not really needed here, because we always know the rid of the
* user account.
*
* some attributes with this 'additional encryption' include
* dBCSPwd, unicodePwd, ntPwdHistory, lmPwdHistory
*
* But for the rest of samba it's easier when we remove this static
* obfuscation here
*/
if (rid_crypt) {
uint32_t i, num_hashes;
rid_crypt_out = data_blob_talloc(mem_ctx, in->data, in->length);
W_ERROR_HAVE_NO_MEMORY(rid_crypt_out.data);
if ((rid_crypt_out.length % 16) != 0) {
return WERR_DS_DRA_INVALID_PARAMETER;
}
num_hashes = rid_crypt_out.length / 16;
for (i = 0; i < num_hashes; i++) {
uint32_t offset = i * 16;
rc = sam_rid_crypt(rid, in->data + offset,
rid_crypt_out.data + offset,
SAMBA_GNUTLS_ENCRYPT);
if (rc != 0) {
result = gnutls_error_to_werror(rc, WERR_INTERNAL_ERROR);
goto out;
}
}
in = &rid_crypt_out;
}
/*
* the first 16 bytes at the beginning are the confounder
* followed by the 4 byte crc32 checksum
*/
enc_buffer = data_blob_talloc(mem_ctx, NULL, in->length+20);
if (!enc_buffer.data) {
talloc_free(rid_crypt_out.data);
return WERR_NOT_ENOUGH_MEMORY;
};
confounder = data_blob_const(enc_buffer.data, 16);
generate_random_buffer(confounder.data, confounder.length);
/*
* the first 4 byte are the crc32 checksum
* of the remaining bytes
*/
crc32_calc = crc32(0, Z_NULL, 0);
crc32_calc = crc32(crc32_calc, in->data, in->length);
SIVAL(enc_buffer.data, 16, crc32_calc);
/*
* copy the plain buffer part and
* encrypt it using the created encryption key using arcfour
*/
memcpy(enc_buffer.data+20, in->data, in->length);
talloc_free(rid_crypt_out.data);
to_encrypt = data_blob_const(enc_buffer.data+16,
enc_buffer.length-16);
/*
* encrypt with the encryption key, being md5 over the session
* key followed by the confounder. The parameter order to
* samba_gnutls_arcfour_confounded_md5() matters for this!
*
* here the gensec session key is used and
* not the dcerpc ncacn_ip_tcp "SystemLibraryDTC" key!
*/
rc = samba_gnutls_arcfour_confounded_md5(gensec_skey,
&confounder,
&to_encrypt,
SAMBA_GNUTLS_ENCRYPT);
if (rc < 0) {
result = gnutls_error_to_werror(rc, WERR_INTERNAL_ERROR);
goto out;
}
*out = enc_buffer;
result = WERR_OK;
out:
return result;
}
/*
encrypt a DRSUAPI attribute ready for sending over the wire
Only some attribute types are encrypted
*/
WERROR drsuapi_encrypt_attribute(TALLOC_CTX *mem_ctx,
const DATA_BLOB *gensec_skey,
uint32_t rid,
struct drsuapi_DsReplicaAttribute *attr)
{
WERROR status;
DATA_BLOB *plain_data;
DATA_BLOB enc_data;
bool rid_crypt = false;
if (attr->value_ctr.num_values == 0) {
return WERR_OK;
}
switch (attr->attid) {
case DRSUAPI_ATTID_dBCSPwd:
case DRSUAPI_ATTID_unicodePwd:
case DRSUAPI_ATTID_ntPwdHistory:
case DRSUAPI_ATTID_lmPwdHistory:
rid_crypt = true;
break;
case DRSUAPI_ATTID_supplementalCredentials:
case DRSUAPI_ATTID_priorValue:
case DRSUAPI_ATTID_currentValue:
case DRSUAPI_ATTID_trustAuthOutgoing:
case DRSUAPI_ATTID_trustAuthIncoming:
case DRSUAPI_ATTID_initialAuthOutgoing:
case DRSUAPI_ATTID_initialAuthIncoming:
break;
default:
return WERR_OK;
}
if (attr->value_ctr.num_values > 1) {
return WERR_DS_DRA_INVALID_PARAMETER;
}
if (!attr->value_ctr.values[0].blob) {
return WERR_DS_DRA_INVALID_PARAMETER;
}
plain_data = attr->value_ctr.values[0].blob;
status = drsuapi_encrypt_attribute_value(mem_ctx,
gensec_skey,
rid_crypt,
rid,
plain_data,
&enc_data);
W_ERROR_NOT_OK_RETURN(status);
talloc_free(attr->value_ctr.values[0].blob->data);
*attr->value_ctr.values[0].blob = enc_data;
return WERR_OK;
}
|