2010-10-22 11:37:38 +04:00
/*
Unix SMB / CIFS implementation .
manipulate dns name structures
Copyright ( C ) 2010 Kai Blin < kai @ samba . org >
Heavily based on nbtname . c which is :
Copyright ( C ) Andrew Tridgell 2005
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/>.
*/
/*
see rfc1002 for the detailed format of compressed names
*/
# include "includes.h"
# include "librpc/gen_ndr/ndr_dns.h"
# include "librpc/gen_ndr/ndr_misc.h"
2015-08-07 12:36:47 +03:00
# include "librpc/gen_ndr/ndr_dnsp.h"
2010-10-22 11:37:38 +04:00
# include "system/locale.h"
# include "lib/util/util_net.h"
2020-04-25 02:02:08 +03:00
# include "ndr_dns_utils.h"
2010-10-22 11:37:38 +04:00
/* don't allow an unlimited number of name components */
2010-10-01 05:20:42 +04:00
# define MAX_COMPONENTS 128
2010-10-22 11:37:38 +04:00
/**
print a dns string
*/
2010-10-28 00:15:10 +04:00
_PUBLIC_ void ndr_print_dns_string ( struct ndr_print * ndr ,
const char * name ,
const char * s )
2010-10-22 11:37:38 +04:00
{
ndr_print_string ( ndr , name , s ) ;
}
/*
pull one component of a dns_string
*/
static enum ndr_err_code ndr_pull_component ( struct ndr_pull * ndr ,
uint8_t * * component ,
uint32_t * offset ,
uint32_t * max_offset )
{
uint8_t len ;
unsigned int loops = 0 ;
while ( loops < 5 ) {
if ( * offset > = ndr - > data_size ) {
return ndr_pull_error ( ndr , NDR_ERR_STRING ,
2010-10-28 00:15:10 +04:00
" BAD DNS NAME component, bad offset " ) ;
2010-10-22 11:37:38 +04:00
}
len = ndr - > data [ * offset ] ;
if ( len = = 0 ) {
* offset + = 1 ;
* max_offset = MAX ( * max_offset , * offset ) ;
* component = NULL ;
return NDR_ERR_SUCCESS ;
}
if ( ( len & 0xC0 ) = = 0xC0 ) {
/* its a label pointer */
if ( 1 + * offset > = ndr - > data_size ) {
return ndr_pull_error ( ndr , NDR_ERR_STRING ,
2010-10-28 00:15:10 +04:00
" BAD DNS NAME component, " \
" bad label offset " ) ;
2010-10-22 11:37:38 +04:00
}
* max_offset = MAX ( * max_offset , * offset + 2 ) ;
* offset = ( ( len & 0x3F ) < < 8 ) | ndr - > data [ 1 + * offset ] ;
* max_offset = MAX ( * max_offset , * offset ) ;
loops + + ;
continue ;
}
if ( ( len & 0xC0 ) ! = 0 ) {
/* its a reserved length field */
return ndr_pull_error ( ndr , NDR_ERR_STRING ,
2010-10-28 00:15:10 +04:00
" BAD DNS NAME component, " \
2012-05-29 10:45:07 +04:00
" reserved length field: 0x%02x " ,
2010-10-28 00:15:10 +04:00
( len & 0xC ) ) ;
2010-10-22 11:37:38 +04:00
}
2011-09-30 06:31:07 +04:00
if ( * offset + len + 1 > ndr - > data_size ) {
2010-10-22 11:37:38 +04:00
return ndr_pull_error ( ndr , NDR_ERR_STRING ,
2010-10-28 00:15:10 +04:00
" BAD DNS NAME component, " \
" length too long " ) ;
2010-10-22 11:37:38 +04:00
}
2010-10-28 00:15:10 +04:00
* component = ( uint8_t * ) talloc_strndup ( ndr ,
( const char * ) & ndr - > data [ 1 + * offset ] , len ) ;
2010-10-22 11:37:38 +04:00
NDR_ERR_HAVE_NO_MEMORY ( * component ) ;
* offset + = len + 1 ;
* max_offset = MAX ( * max_offset , * offset ) ;
return NDR_ERR_SUCCESS ;
}
/* too many pointers */
2010-10-28 00:15:10 +04:00
return ndr_pull_error ( ndr , NDR_ERR_STRING ,
" BAD DNS NAME component, too many pointers " ) ;
2010-10-22 11:37:38 +04:00
}
/**
pull a dns_string from the wire
*/
2010-10-28 00:15:10 +04:00
_PUBLIC_ enum ndr_err_code ndr_pull_dns_string ( struct ndr_pull * ndr ,
int ndr_flags ,
const char * * s )
2010-10-22 11:37:38 +04:00
{
uint32_t offset = ndr - > offset ;
uint32_t max_offset = offset ;
unsigned num_components ;
char * name ;
if ( ! ( ndr_flags & NDR_SCALARS ) ) {
return NDR_ERR_SUCCESS ;
}
2010-10-12 00:31:14 +04:00
name = talloc_strdup ( ndr - > current_mem_ctx , " " ) ;
2010-10-22 11:37:38 +04:00
/* break up name into a list of components */
2010-10-28 00:15:10 +04:00
for ( num_components = 0 ; num_components < MAX_COMPONENTS ;
num_components + + ) {
2010-10-22 11:37:38 +04:00
uint8_t * component = NULL ;
2010-10-28 00:15:10 +04:00
NDR_CHECK ( ndr_pull_component ( ndr , & component , & offset ,
& max_offset ) ) ;
2010-10-22 11:37:38 +04:00
if ( component = = NULL ) break ;
2010-10-12 00:31:14 +04:00
if ( num_components > 0 ) {
2010-10-28 00:15:10 +04:00
name = talloc_asprintf_append_buffer ( name , " .%s " ,
component ) ;
2010-10-22 11:37:38 +04:00
} else {
2010-10-28 00:15:10 +04:00
name = talloc_asprintf_append_buffer ( name , " %s " ,
component ) ;
2010-10-22 11:37:38 +04:00
}
2010-10-12 00:31:14 +04:00
NDR_ERR_HAVE_NO_MEMORY ( name ) ;
2010-10-22 11:37:38 +04:00
}
if ( num_components = = MAX_COMPONENTS ) {
return ndr_pull_error ( ndr , NDR_ERR_STRING ,
" BAD DNS NAME too many components " ) ;
}
( * s ) = name ;
ndr - > offset = max_offset ;
return NDR_ERR_SUCCESS ;
}
/**
push a dns string to the wire
*/
2010-10-28 00:15:10 +04:00
_PUBLIC_ enum ndr_err_code ndr_push_dns_string ( struct ndr_push * ndr ,
int ndr_flags ,
const char * s )
2010-10-22 11:37:38 +04:00
{
2020-04-25 02:02:08 +03:00
return ndr_push_dns_string_list ( ndr ,
& ndr - > dns_string_list ,
ndr_flags ,
CVE-2020-10745: ndr/dns-utils: prepare for NBT compatibility
NBT has a funny thing where it sometimes needs to send a trailing dot as
part of the last component, because the string representation is a user
name. In DNS, "example.com", and "example.com." are the same, both
having three components ("example", "com", ""); in NBT, we want to treat
them differently, with the second form having the three components
("example", "com.", "").
This retains the logic of e6e2ec0001fe3c010445e26cc0efddbc1f73416b.
Also DNS compression cannot be turned off for NBT.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14378
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
2020-05-15 01:52:45 +03:00
s ,
false ) ;
2010-10-22 11:37:38 +04:00
}
2010-09-30 04:24:53 +04:00
2015-08-07 12:36:47 +03:00
_PUBLIC_ enum ndr_err_code ndr_pull_dns_txt_record ( struct ndr_pull * ndr , int ndr_flags , struct dns_txt_record * r )
{
NDR_PULL_CHECK_FLAGS ( ndr , ndr_flags ) ;
if ( ndr_flags & NDR_SCALARS ) {
enum ndr_err_code ndr_err ;
uint32_t data_size = ndr - > data_size ;
uint32_t record_size = 0 ;
ndr_err = ndr_token_retrieve ( & ndr - > array_size_list , r ,
& record_size ) ;
if ( NDR_ERR_CODE_IS_SUCCESS ( ndr_err ) ) {
NDR_PULL_NEED_BYTES ( ndr , record_size ) ;
ndr - > data_size = ndr - > offset + record_size ;
}
NDR_CHECK ( ndr_pull_align ( ndr , 1 ) ) ;
NDR_CHECK ( ndr_pull_dnsp_string_list ( ndr , NDR_SCALARS , & r - > txt ) ) ;
NDR_CHECK ( ndr_pull_trailer_align ( ndr , 1 ) ) ;
ndr - > data_size = data_size ;
}
if ( ndr_flags & NDR_BUFFERS ) {
}
return NDR_ERR_SUCCESS ;
}
2010-10-28 00:15:10 +04:00
_PUBLIC_ enum ndr_err_code ndr_push_dns_res_rec ( struct ndr_push * ndr ,
int ndr_flags ,
const struct dns_res_rec * r )
2010-09-30 04:24:53 +04:00
{
2010-10-28 00:15:10 +04:00
uint32_t _flags_save_STRUCT = ndr - > flags ;
uint32_t _saved_offset1 , _saved_offset2 ;
uint16_t length ;
ndr_set_flags ( & ndr - > flags , LIBNDR_PRINT_ARRAY_HEX |
LIBNDR_FLAG_NOALIGN ) ;
if ( ndr_flags & NDR_SCALARS ) {
2016-05-17 15:34:52 +03:00
uint32_t _flags_save_name = ndr - > flags ;
2010-10-28 00:15:10 +04:00
NDR_CHECK ( ndr_push_align ( ndr , 4 ) ) ;
2016-05-17 15:34:52 +03:00
switch ( r - > rr_type ) {
case DNS_QTYPE_TKEY :
case DNS_QTYPE_TSIG :
ndr_set_flags ( & ndr - > flags , LIBNDR_FLAG_NO_COMPRESSION ) ;
break ;
default :
break ;
}
2010-10-28 00:15:10 +04:00
NDR_CHECK ( ndr_push_dns_string ( ndr , NDR_SCALARS , r - > name ) ) ;
2016-05-17 15:34:52 +03:00
ndr - > flags = _flags_save_name ;
2010-10-28 00:15:10 +04:00
NDR_CHECK ( ndr_push_dns_qtype ( ndr , NDR_SCALARS , r - > rr_type ) ) ;
NDR_CHECK ( ndr_push_dns_qclass ( ndr , NDR_SCALARS , r - > rr_class ) ) ;
NDR_CHECK ( ndr_push_uint32 ( ndr , NDR_SCALARS , r - > ttl ) ) ;
_saved_offset1 = ndr - > offset ;
NDR_CHECK ( ndr_push_uint16 ( ndr , NDR_SCALARS , 0 ) ) ;
if ( r - > length > 0 ) {
2017-12-29 15:09:15 +03:00
uint32_t _saved_offset3 ;
2010-10-28 00:15:10 +04:00
NDR_CHECK ( ndr_push_set_switch_value ( ndr , & r - > rdata ,
r - > rr_type ) ) ;
2017-12-29 15:09:15 +03:00
_saved_offset3 = ndr - > offset ;
2010-10-28 00:15:10 +04:00
NDR_CHECK ( ndr_push_dns_rdata ( ndr , NDR_SCALARS ,
& r - > rdata ) ) ;
2017-12-29 15:09:15 +03:00
if ( ( ndr - > offset ! = _saved_offset3 ) & &
( r - > unexpected . length > 0 ) ) {
/*
* ndr_push_dns_rdata pushed a known
* record , but we have something
* unexpected . That ' s invalid .
*/
2010-10-28 00:15:10 +04:00
return ndr_push_error ( ndr ,
NDR_ERR_LENGTH ,
" Invalid...Unexpected " \
2012-05-29 10:45:07 +04:00
" blob length is too " \
2010-10-28 00:15:10 +04:00
" large " ) ;
2010-10-01 07:35:00 +04:00
}
2010-09-30 04:24:53 +04:00
}
2010-10-28 00:15:10 +04:00
if ( r - > unexpected . length > UINT16_MAX ) {
return ndr_push_error ( ndr , NDR_ERR_LENGTH ,
2012-05-29 10:45:07 +04:00
" Unexpected blob length " \
2010-10-28 00:15:10 +04:00
" is too large " ) ;
2010-09-30 04:24:53 +04:00
}
2010-10-28 00:15:10 +04:00
NDR_CHECK ( ndr_push_bytes ( ndr , r - > unexpected . data ,
r - > unexpected . length ) ) ;
NDR_CHECK ( ndr_push_trailer_align ( ndr , 4 ) ) ;
length = ndr - > offset - ( _saved_offset1 + 2 ) ;
_saved_offset2 = ndr - > offset ;
ndr - > offset = _saved_offset1 ;
NDR_CHECK ( ndr_push_uint16 ( ndr , NDR_SCALARS , length ) ) ;
ndr - > offset = _saved_offset2 ;
}
if ( ndr_flags & NDR_BUFFERS ) {
NDR_CHECK ( ndr_push_dns_rdata ( ndr , NDR_BUFFERS ,
& r - > rdata ) ) ;
2010-09-30 04:24:53 +04:00
}
2010-10-28 00:15:10 +04:00
ndr - > flags = _flags_save_STRUCT ;
2010-09-30 04:24:53 +04:00
return NDR_ERR_SUCCESS ;
}
2010-10-28 00:15:10 +04:00
_PUBLIC_ enum ndr_err_code ndr_pull_dns_res_rec ( struct ndr_pull * ndr ,
int ndr_flags ,
struct dns_res_rec * r )
2010-09-30 04:24:53 +04:00
{
2010-10-28 00:15:10 +04:00
uint32_t _flags_save_STRUCT = ndr - > flags ;
uint32_t _saved_offset1 ;
uint32_t pad , length ;
ndr_set_flags ( & ndr - > flags , LIBNDR_PRINT_ARRAY_HEX |
LIBNDR_FLAG_NOALIGN ) ;
if ( ndr_flags & NDR_SCALARS ) {
NDR_CHECK ( ndr_pull_align ( ndr , 4 ) ) ;
NDR_CHECK ( ndr_pull_dns_string ( ndr , NDR_SCALARS , & r - > name ) ) ;
NDR_CHECK ( ndr_pull_dns_qtype ( ndr , NDR_SCALARS , & r - > rr_type ) ) ;
NDR_CHECK ( ndr_pull_dns_qclass ( ndr , NDR_SCALARS , & r - > rr_class ) ) ;
NDR_CHECK ( ndr_pull_uint32 ( ndr , NDR_SCALARS , & r - > ttl ) ) ;
NDR_CHECK ( ndr_pull_uint16 ( ndr , NDR_SCALARS , & r - > length ) ) ;
_saved_offset1 = ndr - > offset ;
if ( r - > length > 0 ) {
2015-08-07 12:36:47 +03:00
NDR_CHECK ( ndr_token_store ( ndr , & ndr - > array_size_list ,
& r - > rdata ,
r - > length ) ) ;
2010-10-28 00:15:10 +04:00
NDR_CHECK ( ndr_pull_set_switch_value ( ndr , & r - > rdata ,
r - > rr_type ) ) ;
NDR_CHECK ( ndr_pull_dns_rdata ( ndr , NDR_SCALARS ,
& r - > rdata ) ) ;
} else {
ZERO_STRUCT ( r - > rdata ) ;
}
length = ndr - > offset - _saved_offset1 ;
if ( length > r - > length ) {
return ndr_pull_error ( ndr , NDR_ERR_LENGTH , " TODO " ) ;
}
2010-09-30 04:24:53 +04:00
2010-10-28 00:15:10 +04:00
r - > unexpected = data_blob_null ;
pad = r - > length - length ;
if ( pad > 0 ) {
NDR_PULL_NEED_BYTES ( ndr , pad ) ;
r - > unexpected = data_blob_talloc ( ndr - > current_mem_ctx ,
ndr - > data +
ndr - > offset ,
pad ) ;
if ( r - > unexpected . data = = NULL ) {
return ndr_pull_error ( ndr ,
NDR_ERR_ALLOC ,
" Failed to allocate a " \
" data blob " ) ;
2010-09-30 04:24:53 +04:00
}
2010-10-28 00:15:10 +04:00
ndr - > offset + = pad ;
}
2010-09-30 04:24:53 +04:00
2010-10-28 00:15:10 +04:00
NDR_CHECK ( ndr_pull_trailer_align ( ndr , 4 ) ) ;
}
if ( ndr_flags & NDR_BUFFERS ) {
NDR_CHECK ( ndr_pull_dns_rdata ( ndr , NDR_BUFFERS , & r - > rdata ) ) ;
2010-09-30 04:24:53 +04:00
}
2010-10-28 00:15:10 +04:00
ndr - > flags = _flags_save_STRUCT ;
2010-09-30 04:24:53 +04:00
return NDR_ERR_SUCCESS ;
}