2005-04-17 02:20:36 +04:00
/*
* fs / cifs / cifs_unicode . c
*
2005-11-12 02:18:19 +03:00
* Copyright ( c ) International Business Machines Corp . , 2000 , 2005
2005-04-17 02:20:36 +04:00
* Modified by Steve French ( sfrench @ us . ibm . com )
*
* 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-06-06 00:35:06 +04:00
* the Free Software Foundation ; either version 2 of the License , or
2005-04-17 02:20:36 +04:00
* ( at your option ) any later version .
2007-06-06 00:35:06 +04:00
*
2005-04-17 02:20:36 +04:00
* 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-06-06 00:35:06 +04:00
* along with this program ; if not , write to the Free Software
2005-04-17 02:20:36 +04:00
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*/
# include <linux/fs.h>
# include "cifs_unicode.h"
# include "cifs_uniupr.h"
# include "cifspdu.h"
2006-06-01 02:40:51 +04:00
# include "cifsglob.h"
2005-04-17 02:20:36 +04:00
# include "cifs_debug.h"
/*
* NAME : cifs_strfromUCS ( )
*
* FUNCTION : Convert little - endian unicode string to character string
*
*/
int
2007-06-06 00:35:06 +04:00
cifs_strfromUCS_le ( char * to , const __le16 * from ,
2005-04-17 02:20:36 +04:00
int len , const struct nls_table * codepage )
{
int i ;
int outlen = 0 ;
for ( i = 0 ; ( i < len ) & & from [ i ] ; i + + ) {
int charlen ;
/* 2.4.0 kernel or greater */
charlen =
codepage - > uni2char ( le16_to_cpu ( from [ i ] ) , & to [ outlen ] ,
NLS_MAX_CHARSET_SIZE ) ;
if ( charlen > 0 ) {
outlen + = charlen ;
} else {
to [ outlen + + ] = ' ? ' ;
}
}
to [ outlen ] = 0 ;
return outlen ;
}
/*
* NAME : cifs_strtoUCS ( )
*
* FUNCTION : Convert character string to unicode string
*
*/
int
2005-11-12 02:18:19 +03:00
cifs_strtoUCS ( __le16 * to , const char * from , int len ,
2005-04-17 02:20:36 +04:00
const struct nls_table * codepage )
{
int charlen ;
int i ;
2007-07-13 04:33:32 +04:00
wchar_t * wchar_to = ( wchar_t * ) to ; /* needed to quiet sparse */
2005-04-17 02:20:36 +04:00
for ( i = 0 ; len & & * from ; i + + , from + = charlen , len - = charlen ) {
/* works for 2.4.0 kernel or later */
2005-11-12 02:18:19 +03:00
charlen = codepage - > char2uni ( from , len , & wchar_to [ i ] ) ;
2005-04-17 02:20:36 +04:00
if ( charlen < 1 ) {
cERROR ( 1 ,
2007-04-04 21:10:24 +04:00
( " strtoUCS: char2uni of %d returned %d " ,
( int ) * from , charlen ) ) ;
2005-11-11 06:28:44 +03:00
/* A question mark */
2005-11-12 02:18:19 +03:00
to [ i ] = cpu_to_le16 ( 0x003f ) ;
2005-04-17 02:20:36 +04:00
charlen = 1 ;
2007-06-06 00:35:06 +04:00
} else
2005-11-12 02:18:19 +03:00
to [ i ] = cpu_to_le16 ( wchar_to [ i ] ) ;
2005-04-17 02:20:36 +04:00
}
to [ i ] = 0 ;
return i ;
}