1998-11-05 19:48:35 +03:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1998-11-05 19:48:35 +03:00
Samba utility functions
2001-07-04 11:15:53 +04:00
Copyright ( C ) Andrew Tridgell 1992 - 2001
2001-11-18 19:12:11 +03:00
Copyright ( C ) Simo Sorce 2001
2005-07-26 04:10:45 +04:00
Copyright ( C ) Jeremy Allison 2005
1998-11-05 19:48:35 +03:00
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
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
1998-11-05 19:48:35 +03:00
( 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
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
1998-11-05 19:48:35 +03:00
*/
# include "includes.h"
1999-12-13 16:27:58 +03:00
# ifndef MAXUNI
# define MAXUNI 1024
# endif
1999-02-11 01:30:47 +03:00
2001-10-03 16:18:20 +04:00
/* these 3 tables define the unicode case handling. They are loaded
at startup either via mmap ( ) or read ( ) from the lib directory */
static uint8 * valid_table ;
2008-08-13 00:35:15 +04:00
static bool initialized ;
2001-10-03 16:18:20 +04:00
2006-04-08 21:25:31 +04:00
/**
* Destroy global objects allocated by load_case_tables ( )
* */
void gfree_case_tables ( void )
{
if ( valid_table ) {
2011-02-18 03:51:33 +03:00
unmap_file ( valid_table , 0x10000 ) ;
valid_table = NULL ;
2006-04-08 21:25:31 +04:00
}
2008-08-13 00:35:15 +04:00
initialized = false ;
2006-04-08 21:25:31 +04:00
}
2003-04-04 12:16:14 +04:00
2003-02-24 06:09:08 +03:00
/**
* Load the valid character map table from < tt > valid . dat < / tt > or
* create from the configured codepage .
*
* This function is called whenever the configuration is reloaded .
* However , the valid character table is not changed if it ' s loaded
* from a file , because we can ' t unmap files .
* */
2005-07-26 04:10:45 +04:00
2011-02-18 03:51:33 +03:00
static void init_valid_table ( void )
2001-12-20 09:18:52 +03:00
{
2011-02-18 03:51:33 +03:00
if ( valid_table ) {
2003-02-27 08:20:23 +03:00
return ;
}
2001-12-20 09:18:52 +03:00
2011-02-18 03:51:33 +03:00
valid_table = ( uint8 * ) map_file ( data_path ( " valid.dat " ) , 0x10000 ) ;
if ( ! valid_table ) {
smb_panic ( " Could not load valid.dat file required for mangle method=hash " ) ;
2001-12-20 09:18:52 +03:00
return ;
2001-10-03 16:18:20 +04:00
}
}
1998-11-05 19:48:35 +03:00
/*******************************************************************
1999-12-13 16:27:58 +03:00
Write a string in ( little - endian ) unicode format . src is in
the current DOS codepage . len is the length in bytes of the
string pointed to by dst .
1999-10-25 23:03:27 +04:00
2000-03-27 16:38:45 +04:00
if null_terminate is True then null terminate the packet ( adds 2 bytes )
2000-06-22 05:39:17 +04:00
the return value is the length in bytes consumed by the string , including the
2000-03-27 16:38:45 +04:00
null termination if applied
1999-12-13 16:27:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-02-15 08:31:52 +03:00
2007-10-19 04:40:25 +04:00
size_t dos_PutUniCode ( char * dst , const char * src , size_t len , bool null_terminate )
1999-12-13 16:27:58 +03:00
{
2005-08-30 10:41:32 +04:00
int flags = null_terminate ? STR_UNICODE | STR_NOALIGN | STR_TERMINATE
: STR_UNICODE | STR_NOALIGN ;
return push_ucs2 ( NULL , dst , src , len , flags ) ;
1999-12-13 16:27:58 +03:00
}
1999-02-15 08:31:52 +03:00
2000-02-07 19:22:16 +03:00
1999-12-13 16:27:58 +03:00
/*******************************************************************
2000-04-22 04:33:16 +04:00
Skip past a unicode string , but not more than len . Always move
past a terminating zero if found .
1999-12-13 16:27:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-10-08 02:10:29 +04:00
2000-04-22 04:33:16 +04:00
char * skip_unibuf ( char * src , size_t len )
1999-12-13 16:27:58 +03:00
{
2005-07-26 04:10:45 +04:00
char * srcend = src + len ;
2000-04-22 04:33:16 +04:00
2005-07-26 04:10:45 +04:00
while ( src < srcend & & SVAL ( src , 0 ) ) {
src + = 2 ;
}
2000-04-22 04:33:16 +04:00
2005-07-26 04:10:45 +04:00
if ( ! SVAL ( src , 0 ) ) {
src + = 2 ;
}
2000-04-22 04:33:16 +04:00
2005-07-26 04:10:45 +04:00
return src ;
1998-11-05 19:48:35 +03:00
}
2001-07-04 11:15:53 +04:00
/* Converts a string from internal samba format to unicode
2007-11-16 01:19:52 +03:00
*/
2005-07-26 04:10:45 +04:00
2007-11-11 09:31:34 +03:00
int rpcstr_push ( void * dest , const char * src , size_t dest_len , int flags )
2000-07-07 10:20:46 +04:00
{
2001-07-04 11:15:53 +04:00
return push_ucs2 ( NULL , dest , src , dest_len , flags | STR_UNICODE | STR_NOALIGN ) ;
1999-12-13 16:27:58 +03:00
}
1998-11-05 19:48:35 +03:00
2007-11-11 09:31:34 +03:00
/* Converts a string from internal samba format to unicode. Always terminates.
* Actually just a wrapper round push_ucs2_talloc ( ) .
2007-11-28 01:35:30 +03:00
*/
2007-11-11 09:31:34 +03:00
int rpcstr_push_talloc ( TALLOC_CTX * ctx , smb_ucs2_t * * dest , const char * src )
{
2008-04-30 01:36:24 +04:00
size_t size ;
if ( push_ucs2_talloc ( ctx , dest , src , & size ) )
return size ;
else
return - 1 ;
2007-11-11 09:31:34 +03:00
}
1999-12-23 05:01:37 +03:00
/*******************************************************************
2005-07-26 04:10:45 +04:00
Determine if a character is valid in a 8.3 name .
1999-12-23 05:01:37 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-26 04:10:45 +04:00
2007-10-19 04:40:25 +04:00
bool isvalid83_w ( smb_ucs2_t c )
1999-12-23 05:01:37 +03:00
{
2011-02-18 03:51:33 +03:00
init_valid_table ( ) ;
2002-03-06 23:38:51 +03:00
return valid_table [ SVAL ( & c , 0 ) ] ! = 0 ;
1999-12-23 05:01:37 +03:00
}
1999-12-29 05:00:38 +03:00
/*******************************************************************
2001-07-04 11:15:53 +04:00
Count the number of characters in a smb_ucs2_t string .
1999-12-29 05:00:38 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-26 04:10:45 +04:00
2001-07-04 11:15:53 +04:00
size_t strlen_w ( const smb_ucs2_t * src )
1999-12-29 05:00:38 +03:00
{
2001-07-04 11:15:53 +04:00
size_t len ;
2005-07-26 04:10:45 +04:00
smb_ucs2_t c ;
1999-12-29 05:00:38 +03:00
2005-07-26 04:10:45 +04:00
for ( len = 0 ; * ( COPY_UCS2_CHAR ( & c , src ) ) ; src + + , len + + ) {
;
}
1999-12-29 05:00:38 +03:00
2001-07-04 11:15:53 +04:00
return len ;
1999-12-29 05:00:38 +03:00
}
2001-11-12 03:53:34 +03:00
/*******************************************************************
Count up to max number of characters in a smb_ucs2_t string .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-26 04:10:45 +04:00
2001-11-12 03:53:34 +03:00
size_t strnlen_w ( const smb_ucs2_t * src , size_t max )
{
size_t len ;
2005-07-26 04:10:45 +04:00
smb_ucs2_t c ;
2001-11-12 03:53:34 +03:00
2006-12-27 21:36:00 +03:00
for ( len = 0 ; ( len < max ) & & * ( COPY_UCS2_CHAR ( & c , src ) ) ; src + + , len + + ) {
2005-07-26 04:10:45 +04:00
;
}
2001-11-12 03:53:34 +03:00
return len ;
}
1999-12-29 05:00:38 +03:00
/*******************************************************************
2003-07-03 00:01:51 +04:00
Wide strchr ( ) .
1999-12-29 05:00:38 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-07-03 00:01:51 +04:00
2001-07-04 11:15:53 +04:00
smb_ucs2_t * strchr_w ( const smb_ucs2_t * s , smb_ucs2_t c )
1999-12-29 05:00:38 +03:00
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp ;
while ( * ( COPY_UCS2_CHAR ( & cp , s ) ) ) {
if ( c = = cp ) {
return ( smb_ucs2_t * ) s ;
}
1999-12-29 05:00:38 +03:00
s + + ;
}
2005-07-26 04:10:45 +04:00
if ( c = = cp ) {
return ( smb_ucs2_t * ) s ;
}
2002-11-08 21:45:38 +03:00
2001-07-04 11:15:53 +04:00
return NULL ;
1999-12-29 05:00:38 +03:00
}
2001-11-05 00:10:17 +03:00
smb_ucs2_t * strchr_wa ( const smb_ucs2_t * s , char c )
{
return strchr_w ( s , UCS2_CHAR ( c ) ) ;
}
2003-07-03 00:01:51 +04:00
/*******************************************************************
Wide strrchr ( ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-04 21:26:53 +03:00
smb_ucs2_t * strrchr_w ( const smb_ucs2_t * s , smb_ucs2_t c )
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp ;
2001-11-04 21:26:53 +03:00
const smb_ucs2_t * p = s ;
int len = strlen_w ( s ) ;
2005-07-26 04:10:45 +04:00
if ( len = = 0 ) {
return NULL ;
}
2001-11-04 21:26:53 +03:00
p + = ( len - 1 ) ;
do {
2005-07-26 04:10:45 +04:00
if ( c = = * ( COPY_UCS2_CHAR ( & cp , p ) ) ) {
return ( smb_ucs2_t * ) p ;
}
2001-11-04 21:26:53 +03:00
} while ( p - - ! = s ) ;
return NULL ;
}
/*******************************************************************
2003-07-03 00:01:51 +04:00
Wide version of strrchr that returns after doing strrchr ' n ' times .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
smb_ucs2_t * strnrchr_w ( const smb_ucs2_t * s , smb_ucs2_t c , unsigned int n )
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp ;
2003-07-03 00:01:51 +04:00
const smb_ucs2_t * p = s ;
int len = strlen_w ( s ) ;
2005-07-26 04:10:45 +04:00
if ( len = = 0 | | ! n ) {
2003-07-03 00:01:51 +04:00
return NULL ;
2005-07-26 04:10:45 +04:00
}
2003-07-03 00:01:51 +04:00
p + = ( len - 1 ) ;
do {
2005-07-26 04:10:45 +04:00
if ( c = = * ( COPY_UCS2_CHAR ( & cp , p ) ) ) {
2003-07-03 00:01:51 +04:00
n - - ;
2005-07-26 04:10:45 +04:00
}
2003-07-03 00:01:51 +04:00
2005-07-26 04:10:45 +04:00
if ( ! n ) {
2005-05-31 17:46:45 +04:00
return ( smb_ucs2_t * ) p ;
2005-07-26 04:10:45 +04:00
}
2003-07-03 00:01:51 +04:00
} while ( p - - ! = s ) ;
return NULL ;
}
/*******************************************************************
Wide strstr ( ) .
2001-11-04 21:26:53 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-07-03 00:01:51 +04:00
2001-11-04 21:26:53 +03:00
smb_ucs2_t * strstr_w ( const smb_ucs2_t * s , const smb_ucs2_t * ins )
{
smb_ucs2_t * r ;
2005-02-17 18:17:16 +03:00
size_t inslen ;
2005-07-26 04:10:45 +04:00
if ( ! s | | ! * s | | ! ins | | ! * ins ) {
2005-02-17 18:17:16 +03:00
return NULL ;
2005-07-26 04:10:45 +04:00
}
2001-11-04 21:26:53 +03:00
inslen = strlen_w ( ins ) ;
2005-05-31 17:46:45 +04:00
r = ( smb_ucs2_t * ) s ;
2005-02-17 18:17:16 +03:00
2001-11-10 18:21:54 +03:00
while ( ( r = strchr_w ( r , * ins ) ) ) {
2005-07-26 04:10:45 +04:00
if ( strncmp_w ( r , ins , inslen ) = = 0 ) {
2005-02-17 18:17:16 +03:00
return r ;
2005-07-26 04:10:45 +04:00
}
2001-11-04 21:26:53 +03:00
r + + ;
}
2005-02-17 18:17:16 +03:00
2001-11-04 21:26:53 +03:00
return NULL ;
}
1999-12-29 05:00:38 +03:00
/*******************************************************************
Convert a string to lower case .
2001-09-30 17:30:52 +04:00
return True if any char is converted
2011-02-16 08:30:56 +03:00
This is unsafe for any string involving a UTF16 character
1999-12-29 05:00:38 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-26 04:10:45 +04:00
2007-10-19 04:40:25 +04:00
bool strlower_w ( smb_ucs2_t * s )
1999-12-29 05:00:38 +03:00
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp ;
2007-10-19 04:40:25 +04:00
bool ret = False ;
2005-07-26 04:10:45 +04:00
while ( * ( COPY_UCS2_CHAR ( & cp , s ) ) ) {
2011-02-16 08:30:56 +03:00
smb_ucs2_t v = tolower_m ( cp ) ;
2005-07-26 04:10:45 +04:00
if ( v ! = cp ) {
COPY_UCS2_CHAR ( s , & v ) ;
2001-09-30 17:30:52 +04:00
ret = True ;
}
1999-12-29 05:00:38 +03:00
s + + ;
}
2001-09-30 17:30:52 +04:00
return ret ;
1999-12-29 05:00:38 +03:00
}
/*******************************************************************
Convert a string to upper case .
2001-09-30 17:30:52 +04:00
return True if any char is converted
2011-02-16 08:30:56 +03:00
This is unsafe for any string involving a UTF16 character
1999-12-29 05:00:38 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-26 04:10:45 +04:00
2007-10-19 04:40:25 +04:00
bool strupper_w ( smb_ucs2_t * s )
1999-12-29 05:00:38 +03:00
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp ;
2007-10-19 04:40:25 +04:00
bool ret = False ;
2005-07-26 04:10:45 +04:00
while ( * ( COPY_UCS2_CHAR ( & cp , s ) ) ) {
2011-02-16 08:30:56 +03:00
smb_ucs2_t v = toupper_m ( cp ) ;
2005-07-26 04:10:45 +04:00
if ( v ! = cp ) {
COPY_UCS2_CHAR ( s , & v ) ;
2001-09-30 17:30:52 +04:00
ret = True ;
}
1999-12-29 05:00:38 +03:00
s + + ;
}
2001-09-30 17:30:52 +04:00
return ret ;
1999-12-29 05:00:38 +03:00
}
2001-11-04 21:26:53 +03:00
/*******************************************************************
2005-07-26 04:10:45 +04:00
Convert a string to " normal " form .
2001-11-04 21:26:53 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-05-07 22:37:47 +04:00
void strnorm_w ( smb_ucs2_t * s , int case_default )
2001-11-04 21:26:53 +03:00
{
2005-07-26 04:10:45 +04:00
if ( case_default = = CASE_UPPER ) {
2004-05-07 22:37:47 +04:00
strupper_w ( s ) ;
2005-07-26 04:10:45 +04:00
} else {
2004-05-07 22:37:47 +04:00
strlower_w ( s ) ;
2005-07-26 04:10:45 +04:00
}
2001-11-04 21:26:53 +03:00
}
2001-11-10 18:21:54 +03:00
int strcmp_w ( const smb_ucs2_t * a , const smb_ucs2_t * b )
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cpa , cpb ;
while ( ( * ( COPY_UCS2_CHAR ( & cpb , b ) ) ) & & ( * ( COPY_UCS2_CHAR ( & cpa , a ) ) = = cpb ) ) {
a + + ;
b + + ;
}
2005-08-13 00:12:31 +04:00
return ( * ( COPY_UCS2_CHAR ( & cpa , a ) ) - * ( COPY_UCS2_CHAR ( & cpb , b ) ) ) ;
2005-07-26 04:10:45 +04:00
/* warning: if *a != *b and both are not 0 we return a random
2001-11-10 18:21:54 +03:00
greater or lesser than 0 number not realted to which
string is longer */
}
int strncmp_w ( const smb_ucs2_t * a , const smb_ucs2_t * b , size_t len )
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cpa , cpb ;
2001-11-10 18:21:54 +03:00
size_t n = 0 ;
2005-07-26 04:10:45 +04:00
while ( ( n < len ) & & ( * ( COPY_UCS2_CHAR ( & cpb , b ) ) ) & & ( * ( COPY_UCS2_CHAR ( & cpa , a ) ) = = cpb ) ) {
a + + ;
b + + ;
n + + ;
}
2005-08-13 00:12:31 +04:00
return ( len - n ) ? ( * ( COPY_UCS2_CHAR ( & cpa , a ) ) - * ( COPY_UCS2_CHAR ( & cpb , b ) ) ) : 0 ;
2001-11-10 18:21:54 +03:00
}
1999-12-29 05:00:38 +03:00
/*******************************************************************
2005-07-26 04:10:45 +04:00
Case insensitive string comparison .
1999-12-29 05:00:38 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-26 04:10:45 +04:00
2001-07-04 11:15:53 +04:00
int strcasecmp_w ( const smb_ucs2_t * a , const smb_ucs2_t * b )
1999-12-29 05:00:38 +03:00
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cpa , cpb ;
2011-02-16 08:30:56 +03:00
while ( ( * COPY_UCS2_CHAR ( & cpb , b ) ) & & toupper_m ( * ( COPY_UCS2_CHAR ( & cpa , a ) ) ) = = toupper_m ( cpb ) ) {
2005-07-26 04:10:45 +04:00
a + + ;
b + + ;
}
2011-02-16 08:30:56 +03:00
return ( tolower_m ( * ( COPY_UCS2_CHAR ( & cpa , a ) ) ) - tolower_m ( * ( COPY_UCS2_CHAR ( & cpb , b ) ) ) ) ;
1999-12-29 05:00:38 +03:00
}
2001-11-04 21:26:53 +03:00
/*******************************************************************
2005-07-26 04:10:45 +04:00
Case insensitive string comparison , length limited .
2001-11-04 21:26:53 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-26 04:10:45 +04:00
2001-11-04 21:26:53 +03:00
int strncasecmp_w ( const smb_ucs2_t * a , const smb_ucs2_t * b , size_t len )
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cpa , cpb ;
2001-11-04 21:26:53 +03:00
size_t n = 0 ;
2005-07-26 04:10:45 +04:00
2011-02-16 08:30:56 +03:00
while ( ( n < len ) & & * COPY_UCS2_CHAR ( & cpb , b ) & & ( toupper_m ( * ( COPY_UCS2_CHAR ( & cpa , a ) ) ) = = toupper_m ( cpb ) ) ) {
2005-07-26 04:10:45 +04:00
a + + ;
b + + ;
n + + ;
}
2011-02-16 08:30:56 +03:00
return ( len - n ) ? ( tolower_m ( * ( COPY_UCS2_CHAR ( & cpa , a ) ) ) - tolower_m ( * ( COPY_UCS2_CHAR ( & cpb , b ) ) ) ) : 0 ;
2001-11-04 21:26:53 +03:00
}
/*******************************************************************
2005-07-26 04:10:45 +04:00
Compare 2 strings .
2001-11-04 21:26:53 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-26 04:10:45 +04:00
2007-10-19 04:40:25 +04:00
bool strequal_w ( const smb_ucs2_t * s1 , const smb_ucs2_t * s2 )
2001-11-04 21:26:53 +03:00
{
2005-07-26 04:10:45 +04:00
if ( s1 = = s2 ) {
return ( True ) ;
}
if ( ! s1 | | ! s2 ) {
return ( False ) ;
}
2001-11-04 21:26:53 +03:00
return ( strcasecmp_w ( s1 , s2 ) = = 0 ) ;
}
/*******************************************************************
2005-07-26 04:10:45 +04:00
Compare 2 strings up to and including the nth char .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool strnequal_w ( const smb_ucs2_t * s1 , const smb_ucs2_t * s2 , size_t n )
2001-11-04 21:26:53 +03:00
{
2005-07-26 04:10:45 +04:00
if ( s1 = = s2 ) {
return ( True ) ;
}
if ( ! s1 | | ! s2 | | ! n ) {
return ( False ) ;
}
2001-11-04 21:26:53 +03:00
2005-07-26 04:10:45 +04:00
return ( strncasecmp_w ( s1 , s2 , n ) = = 0 ) ;
2001-11-04 21:26:53 +03:00
}
1999-12-29 05:00:38 +03:00
2001-09-25 13:57:06 +04:00
/*******************************************************************
2005-07-26 04:10:45 +04:00
Duplicate string .
2001-09-25 13:57:06 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-26 04:10:45 +04:00
2001-09-25 13:57:06 +04:00
smb_ucs2_t * strdup_w ( const smb_ucs2_t * src )
2001-11-04 21:26:53 +03:00
{
return strndup_w ( src , 0 ) ;
}
/* if len == 0 then duplicate the whole string */
2005-07-26 04:10:45 +04:00
2001-11-04 21:26:53 +03:00
smb_ucs2_t * strndup_w ( const smb_ucs2_t * src , size_t len )
2001-09-25 13:57:06 +04:00
{
smb_ucs2_t * dest ;
2005-07-26 04:10:45 +04:00
if ( ! len ) {
len = strlen_w ( src ) ;
}
2004-12-07 21:25:53 +03:00
dest = SMB_MALLOC_ARRAY ( smb_ucs2_t , len + 1 ) ;
2001-09-25 13:57:06 +04:00
if ( ! dest ) {
DEBUG ( 0 , ( " strdup_w: out of memory! \n " ) ) ;
return NULL ;
}
2001-11-04 21:26:53 +03:00
memcpy ( dest , src , len * sizeof ( smb_ucs2_t ) ) ;
dest [ len ] = 0 ;
2001-09-25 13:57:06 +04:00
return dest ;
}
/*******************************************************************
2005-07-26 04:10:45 +04:00
Copy a string with max len .
2001-09-25 13:57:06 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
smb_ucs2_t * strncpy_w ( smb_ucs2_t * dest , const smb_ucs2_t * src , const size_t max )
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp ;
2001-09-25 13:57:06 +04:00
size_t len ;
2005-07-26 04:10:45 +04:00
if ( ! dest | | ! src ) {
return NULL ;
}
2001-09-25 13:57:06 +04:00
2005-07-26 04:10:45 +04:00
for ( len = 0 ; ( * COPY_UCS2_CHAR ( & cp , ( src + len ) ) ) & & ( len < max ) ; len + + ) {
cp = * COPY_UCS2_CHAR ( dest + len , src + len ) ;
}
cp = 0 ;
2005-07-27 18:21:27 +04:00
for ( /*nothing*/ ; len < max ; len + + ) {
2005-07-26 04:10:45 +04:00
cp = * COPY_UCS2_CHAR ( dest + len , & cp ) ;
}
2001-09-25 13:57:06 +04:00
return dest ;
}
/*******************************************************************
2005-07-26 04:10:45 +04:00
Append a string of len bytes and add a terminator .
2001-09-25 13:57:06 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
smb_ucs2_t * strncat_w ( smb_ucs2_t * dest , const smb_ucs2_t * src , const size_t max )
{
size_t start ;
size_t len ;
2005-07-26 04:10:45 +04:00
smb_ucs2_t z = 0 ;
if ( ! dest | | ! src ) {
return NULL ;
}
2001-09-25 13:57:06 +04:00
start = strlen_w ( dest ) ;
2001-11-12 03:53:34 +03:00
len = strnlen_w ( src , max ) ;
2001-09-25 13:57:06 +04:00
2001-10-09 23:12:48 +04:00
memcpy ( & dest [ start ] , src , len * sizeof ( smb_ucs2_t ) ) ;
2005-07-26 04:10:45 +04:00
z = * COPY_UCS2_CHAR ( dest + start + len , & z ) ;
2001-09-25 13:57:06 +04:00
return dest ;
}
2001-11-10 18:21:54 +03:00
smb_ucs2_t * strcat_w ( smb_ucs2_t * dest , const smb_ucs2_t * src )
{
size_t start ;
size_t len ;
2005-07-26 04:10:45 +04:00
smb_ucs2_t z = 0 ;
2001-11-10 18:21:54 +03:00
2005-07-26 04:10:45 +04:00
if ( ! dest | | ! src ) {
return NULL ;
}
2001-11-10 18:21:54 +03:00
start = strlen_w ( dest ) ;
len = strlen_w ( src ) ;
memcpy ( & dest [ start ] , src , len * sizeof ( smb_ucs2_t ) ) ;
2005-07-26 04:10:45 +04:00
z = * COPY_UCS2_CHAR ( dest + start + len , & z ) ;
2001-11-10 18:21:54 +03:00
return dest ;
}
2001-11-18 19:12:11 +03:00
2001-11-10 18:21:54 +03:00
/*******************************************************************
2005-07-26 04:10:45 +04:00
Replace any occurence of oldc with newc in unicode string .
2001-11-10 18:21:54 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void string_replace_w ( smb_ucs2_t * s , smb_ucs2_t oldc , smb_ucs2_t newc )
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp ;
for ( ; * ( COPY_UCS2_CHAR ( & cp , s ) ) ; s + + ) {
if ( cp = = oldc ) {
COPY_UCS2_CHAR ( s , & newc ) ;
}
2001-11-10 18:21:54 +03:00
}
}
/*******************************************************************
2005-07-26 04:10:45 +04:00
Trim unicode string .
2001-11-10 18:21:54 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool trim_string_w ( smb_ucs2_t * s , const smb_ucs2_t * front ,
2001-11-10 18:21:54 +03:00
const smb_ucs2_t * back )
{
2007-10-19 04:40:25 +04:00
bool ret = False ;
2001-11-18 19:12:11 +03:00
size_t len , front_len , back_len ;
2001-11-10 18:21:54 +03:00
2005-07-26 04:10:45 +04:00
if ( ! s ) {
return False ;
}
2001-11-10 18:21:54 +03:00
len = strlen_w ( s ) ;
if ( front & & * front ) {
front_len = strlen_w ( front ) ;
while ( len & & strncmp_w ( s , front , front_len ) = = 0 ) {
2001-11-18 19:12:11 +03:00
memmove ( s , ( s + front_len ) , ( len - front_len + 1 ) * sizeof ( smb_ucs2_t ) ) ;
2001-11-10 18:21:54 +03:00
len - = front_len ;
ret = True ;
}
}
if ( back & & * back ) {
back_len = strlen_w ( back ) ;
2001-11-18 19:12:11 +03:00
while ( len & & strncmp_w ( ( s + ( len - back_len ) ) , back , back_len ) = = 0 ) {
2001-11-10 18:21:54 +03:00
s [ len - back_len ] = 0 ;
len - = back_len ;
ret = True ;
}
}
return ret ;
}
2001-09-25 13:57:06 +04:00
2001-07-04 11:15:53 +04:00
/*
The * _wa ( ) functions take a combination of 7 bit ascii
and wide characters They are used so that you can use string
functions combining C string constants with ucs2 strings
1999-12-29 05:00:38 +03:00
2001-07-04 11:15:53 +04:00
The char * arguments must NOT be multibyte - to be completely sure
of this only pass string constants */
1999-12-29 05:00:38 +03:00
2001-11-04 21:26:53 +03:00
int strcmp_wa ( const smb_ucs2_t * a , const char * b )
1999-12-29 05:00:38 +03:00
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp = 0 ;
while ( * b & & * ( COPY_UCS2_CHAR ( & cp , a ) ) = = UCS2_CHAR ( * b ) ) {
a + + ;
b + + ;
}
2005-08-02 21:52:44 +04:00
return ( * ( COPY_UCS2_CHAR ( & cp , a ) ) - UCS2_CHAR ( * b ) ) ;
1999-12-29 05:00:38 +03:00
}
2001-11-04 21:26:53 +03:00
int strncmp_wa ( const smb_ucs2_t * a , const char * b , size_t len )
1999-12-29 05:00:38 +03:00
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp = 0 ;
2001-11-04 21:26:53 +03:00
size_t n = 0 ;
2005-07-26 04:10:45 +04:00
while ( ( n < len ) & & * b & & * ( COPY_UCS2_CHAR ( & cp , a ) ) = = UCS2_CHAR ( * b ) ) {
a + + ;
b + + ;
n + + ;
}
2005-08-02 21:52:44 +04:00
return ( len - n ) ? ( * ( COPY_UCS2_CHAR ( & cp , a ) ) - UCS2_CHAR ( * b ) ) : 0 ;
1999-12-29 05:00:38 +03:00
}
2001-07-04 11:15:53 +04:00
smb_ucs2_t * strpbrk_wa ( const smb_ucs2_t * s , const char * p )
1999-12-29 05:00:38 +03:00
{
2005-07-26 04:10:45 +04:00
smb_ucs2_t cp ;
while ( * ( COPY_UCS2_CHAR ( & cp , s ) ) ) {
2001-07-04 11:15:53 +04:00
int i ;
2005-07-26 04:10:45 +04:00
for ( i = 0 ; p [ i ] & & cp ! = UCS2_CHAR ( p [ i ] ) ; i + + )
2001-07-04 11:15:53 +04:00
;
2005-07-26 04:10:45 +04:00
if ( p [ i ] ) {
return ( smb_ucs2_t * ) s ;
}
1999-12-29 05:00:38 +03:00
s + + ;
}
2001-07-04 11:15:53 +04:00
return NULL ;
2000-10-03 06:12:14 +04:00
}
2001-11-10 18:21:54 +03:00
smb_ucs2_t * strstr_wa ( const smb_ucs2_t * s , const char * ins )
{
smb_ucs2_t * r ;
2005-02-17 18:17:16 +03:00
size_t inslen ;
2005-07-26 04:10:45 +04:00
if ( ! s | | ! ins ) {
2005-02-17 18:17:16 +03:00
return NULL ;
2005-07-26 04:10:45 +04:00
}
2001-11-10 18:21:54 +03:00
inslen = strlen ( ins ) ;
2005-05-31 17:46:45 +04:00
r = ( smb_ucs2_t * ) s ;
2005-02-17 18:17:16 +03:00
2001-11-10 18:21:54 +03:00
while ( ( r = strchr_w ( r , UCS2_CHAR ( * ins ) ) ) ) {
2005-02-17 18:17:16 +03:00
if ( strncmp_wa ( r , ins , inslen ) = = 0 )
return r ;
2001-11-10 18:21:54 +03:00
r + + ;
}
2005-02-17 18:17:16 +03:00
2001-11-10 18:21:54 +03:00
return NULL ;
}
2001-09-25 13:57:06 +04:00
2005-12-27 23:52:36 +03:00
/*************************************************************
ascii only toupper - saves the need for smbd to be in C locale .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int toupper_ascii ( int c )
{
2011-02-16 08:30:56 +03:00
smb_ucs2_t uc = toupper_m ( UCS2_CHAR ( c ) ) ;
2005-12-27 23:52:36 +03:00
return UCS2_TO_CHAR ( uc ) ;
}
/*************************************************************
ascii only tolower - saves the need for smbd to be in C locale .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int tolower_ascii ( int c )
{
2011-02-16 08:30:56 +03:00
smb_ucs2_t uc = tolower_m ( UCS2_CHAR ( c ) ) ;
2005-12-27 23:52:36 +03:00
return UCS2_TO_CHAR ( uc ) ;
}
/*************************************************************
ascii only isupper - saves the need for smbd to be in C locale .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int isupper_ascii ( int c )
{
2011-02-16 08:30:56 +03:00
return isupper_m ( UCS2_CHAR ( c ) ) ;
2005-12-27 23:52:36 +03:00
}
/*************************************************************
ascii only islower - saves the need for smbd to be in C locale .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int islower_ascii ( int c )
{
2011-02-16 08:30:56 +03:00
return islower_m ( UCS2_CHAR ( c ) ) ;
2005-12-27 23:52:36 +03:00
}