1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-23 00:23:53 +03:00

the UNICODE issue...

(This used to be commit 73db80f341)
This commit is contained in:
Luke Leighton
1999-02-11 18:50:13 +00:00
parent 0e402f197d
commit c6d16eea43
7 changed files with 44 additions and 11 deletions

View File

@@ -572,7 +572,8 @@ char *unistr2_to_str(UNISTR2 *str);
uint32 buffer2_to_uint32(BUFFER2 *str); uint32 buffer2_to_uint32(BUFFER2 *str);
char *buffer2_to_str(BUFFER2 *str); char *buffer2_to_str(BUFFER2 *str);
char *buffer2_to_multistr(BUFFER2 *str); char *buffer2_to_multistr(BUFFER2 *str);
int struni2(char *dst, const char *src); int str_to_unistr16(uint16 *dst, const char *src);
int str_to_unistr8(char *dst, const char *src);
char *unistr(char *buf); char *unistr(char *buf);
int unistrcpy(char *dst, char *src); int unistrcpy(char *dst, char *src);
@@ -580,6 +581,12 @@ int unistrcpy(char *dst, char *src);
int cli_set_port(struct cli_state *cli, int port); int cli_set_port(struct cli_state *cli, int port);
char *cli_errstr(struct cli_state *cli); char *cli_errstr(struct cli_state *cli);
BOOL cli_send_trans(struct cli_state *cli, int trans,
char *name, int pipe_name_len,
int fid, int flags,
uint16 *setup, int lsetup, int msetup,
char *param, int lparam, int mparam,
char *data, int ldata, int mdata);
BOOL cli_api_pipe(struct cli_state *cli, char *pipe_name, int pipe_name_len, BOOL cli_api_pipe(struct cli_state *cli, char *pipe_name, int pipe_name_len,
uint16 *setup, uint32 setup_count, uint32 max_setup_count, uint16 *setup, uint32 setup_count, uint32 max_setup_count,
char *params, uint32 param_count, uint32 max_param_count, char *params, uint32 param_count, uint32 max_param_count,

View File

@@ -199,8 +199,34 @@ return number of unicode chars copied, excluding the null character.
only handles ascii strings only handles ascii strings
Unicode strings created are in little-endian format. Unicode strings created are in little-endian format.
********************************************************************/ ********************************************************************/
int str_to_unistr16(uint16 *dst, const char *src)
{
size_t len = 0;
int struni2(char *dst, const char *src) if (dst == NULL)
return 0;
if (src != NULL)
{
for (; *src && len < MAXUNI-2; len++, dst++, src++)
{
*dst = *src;
}
}
*dst = 0;
return len;
}
/*******************************************************************
create a null-terminated unicode string from a null-terminated ascii string.
return number of unicode chars copied, excluding the null character.
only handles ascii strings
Unicode strings created are in little-endian format.
********************************************************************/
int str_to_unistr8(char *dst, const char *src)
{ {
size_t len = 0; size_t len = 0;

View File

@@ -226,7 +226,7 @@ static char *fix_char_ptr(unsigned int datap, unsigned int converter,
/**************************************************************************** /****************************************************************************
send a SMB trans or trans2 request send a SMB trans or trans2 request
****************************************************************************/ ****************************************************************************/
static BOOL cli_send_trans(struct cli_state *cli, int trans, BOOL cli_send_trans(struct cli_state *cli, int trans,
char *name, int pipe_name_len, char *name, int pipe_name_len,
int fid, int flags, int fid, int flags,
uint16 *setup, int lsetup, int msetup, uint16 *setup, int lsetup, int msetup,

View File

@@ -209,7 +209,7 @@ BOOL make_oem_passwd_hash(char data[516], const char *passwd, uchar old_pw_hash[
generate_random_buffer((unsigned char *)data, 516, False); generate_random_buffer((unsigned char *)data, 516, False);
if (unicode) if (unicode)
{ {
struni2( &data[512 - new_pw_len], passwd); str_to_unistr8( &data[512 - new_pw_len], passwd);
} }
else else
{ {

View File

@@ -329,7 +329,7 @@ creates a UNISTR structure.
void make_unistr(UNISTR *str, char *buf) void make_unistr(UNISTR *str, char *buf)
{ {
/* store the string (null-terminated copy) */ /* store the string (null-terminated copy) */
struni2((char *)(str->buffer), buf); str_to_unistr16(str->buffer, buf);
} }
/******************************************************************* /*******************************************************************
@@ -372,7 +372,7 @@ void make_buffer3_str(BUFFER3 *str, char *buf, int len)
str->buf_len = len * 2; str->buf_len = len * 2;
/* store the string (null-terminated 8 bit chars into 16 bit chars) */ /* store the string (null-terminated 8 bit chars into 16 bit chars) */
struni2(str->buffer, buf); str_to_unistr8(str->buffer, buf);
} }
/******************************************************************* /*******************************************************************
@@ -573,7 +573,7 @@ void make_unistr2(UNISTR2 *str, const char *buf, int len)
str->uni_str_len = len; str->uni_str_len = len;
/* store the string (null-terminated 8 bit chars into 16 bit chars) */ /* store the string (null-terminated 8 bit chars into 16 bit chars) */
struni2((char*)(str->buffer), buf); str_to_unistr16((str->buffer), buf);
} }
/******************************************************************* /*******************************************************************

View File

@@ -769,7 +769,7 @@ void make_reg_r_info(REG_R_INFO *r_r,
uint32 status) uint32 status)
{ {
char buf[512]; char buf[512];
int len = struni2(buf, os_type); int len = str_to_unistr8(buf, os_type);
r_r->ptr1 = 1; r_r->ptr1 = 1;
r_r->level = level; r_r->level = level;

View File

@@ -707,9 +707,9 @@ void make_rpc_auth_ntlmssp_resp(RPC_AUTH_NTLMSSP_RESP *rsp,
if (IS_BITS_SET_ALL(neg_flags, NTLMSSP_NEGOTIATE_UNICODE)) if (IS_BITS_SET_ALL(neg_flags, NTLMSSP_NEGOTIATE_UNICODE))
{ {
struni2(rsp->domain, domain); str_to_unistr8(rsp->domain, domain);
struni2(rsp->user , user ); str_to_unistr8(rsp->user , user );
struni2(rsp->wks , wks ); str_to_unistr8(rsp->wks , wks );
} }
else else
{ {