From b440ed3df31b11d520c6d744cf53c54165f61b7a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 6 Dec 2007 17:16:40 +0100 Subject: r26315: Avoid using lp_ functions in libcharset. (This used to be commit db6dd425e3526c04e96d778a736dbb5cf14ddc56) --- source4/lib/charset/charcnv.c | 42 +++++++++++++++++---------------------- source4/lib/charset/iconv.c | 5 +++-- source4/lib/charset/tests/iconv.c | 4 ++-- 3 files changed, 23 insertions(+), 28 deletions(-) (limited to 'source4/lib') diff --git a/source4/lib/charset/charcnv.c b/source4/lib/charset/charcnv.c index bbb8f052268..bbc40e3e3b5 100644 --- a/source4/lib/charset/charcnv.c +++ b/source4/lib/charset/charcnv.c @@ -42,11 +42,10 @@ struct smb_iconv_convenience { const char *unix_charset; const char *dos_charset; const char *display_charset; + bool native_iconv; smb_iconv_t conv_handles[NUM_CHARSETS][NUM_CHARSETS]; }; -static struct smb_iconv_convenience *global_smb_iconv_convenience = NULL; - /** * Return the name of a charset to give to iconv(). @@ -86,32 +85,28 @@ static int close_iconv(struct smb_iconv_convenience *data) } struct smb_iconv_convenience *smb_iconv_convenience_init(TALLOC_CTX *mem_ctx, - struct loadparm_context *lp_ctx) + const char *dos_charset, + const char *unix_charset, + const char *display_charset, + bool native_iconv) { struct smb_iconv_convenience *ret = talloc_zero(mem_ctx, - struct smb_iconv_convenience); + struct smb_iconv_convenience); + + if (ret == NULL) { + return NULL; + } talloc_set_destructor(ret, close_iconv); - ret->display_charset = talloc_strdup(ret, lp_display_charset(lp_ctx)); - ret->dos_charset = talloc_strdup(ret, lp_dos_charset(lp_ctx)); - ret->unix_charset = talloc_strdup(ret, lp_unix_charset(lp_ctx)); + ret->dos_charset = talloc_strdup(ret, dos_charset); + ret->unix_charset = talloc_strdup(ret, unix_charset); + ret->display_charset = talloc_strdup(ret, display_charset); + ret->native_iconv = native_iconv; return ret; } - -_PUBLIC_ void reload_charcnv(void) -{ - talloc_free(global_smb_iconv_convenience); - global_smb_iconv_convenience = smb_iconv_convenience_init(talloc_autofree_context(), global_loadparm); -} - -static void free_global_smb_iconv_convenience(void) -{ - talloc_free(global_smb_iconv_convenience); -} - /* on-demand initialisation of conversion handles */ @@ -120,8 +115,7 @@ static smb_iconv_t get_conv_handle(struct smb_iconv_convenience *ic, { const char *n1, *n2; static int initialised; - /* auto-free iconv memory on exit so valgrind reports are easier - to look at */ + if (initialised == 0) { initialised = 1; @@ -134,7 +128,6 @@ static smb_iconv_t get_conv_handle(struct smb_iconv_convenience *ic, */ setlocale(LC_ALL, "C"); #endif - atexit(free_global_smb_iconv_convenience); } if (ic->conv_handles[from][to]) { @@ -144,7 +137,7 @@ static smb_iconv_t get_conv_handle(struct smb_iconv_convenience *ic, n1 = charset_name(ic, from); n2 = charset_name(ic, to); - ic->conv_handles[from][to] = smb_iconv_open(n2,n1); + ic->conv_handles[from][to] = smb_iconv_open(n2, n1, ic->native_iconv); if (ic->conv_handles[from][to] == (smb_iconv_t)-1) { if ((from == CH_DOS || to == CH_DOS) && @@ -156,7 +149,8 @@ static smb_iconv_t get_conv_handle(struct smb_iconv_convenience *ic, n1 = charset_name(ic, from); n2 = charset_name(ic, to); - ic->conv_handles[from][to] = smb_iconv_open(n2,n1); + ic->conv_handles[from][to] = smb_iconv_open(n2, n1, + ic->native_iconv); } } diff --git a/source4/lib/charset/iconv.c b/source4/lib/charset/iconv.c index 9b035cd1dba..937b3ec8b55 100644 --- a/source4/lib/charset/iconv.c +++ b/source4/lib/charset/iconv.c @@ -157,7 +157,8 @@ static bool is_utf16(const char *name) /* simple iconv_open() wrapper */ -smb_iconv_t smb_iconv_open(const char *tocode, const char *fromcode) +smb_iconv_t smb_iconv_open(const char *tocode, const char *fromcode, + bool native_iconv) { smb_iconv_t ret; const struct charset_functions *from=NULL, *to=NULL; @@ -199,7 +200,7 @@ smb_iconv_t smb_iconv_open(const char *tocode, const char *fromcode) } #ifdef HAVE_NATIVE_ICONV - if ((!from || !to) && !lp_parm_bool(global_loadparm, NULL, "iconv", "native", true)) { + if ((!from || !to) && !native_iconv) { goto failed; } if (!from) { diff --git a/source4/lib/charset/tests/iconv.c b/source4/lib/charset/tests/iconv.c index 9080dda40e4..bc5ae62dae6 100644 --- a/source4/lib/charset/tests/iconv.c +++ b/source4/lib/charset/tests/iconv.c @@ -157,8 +157,8 @@ static bool test_buffer(struct torture_context *test, "failed to open %s to UTF-16LE", charset)); } - cd2 = smb_iconv_open(charset, "UTF-16LE"); - cd3 = smb_iconv_open("UTF-16LE", charset); + cd2 = smb_iconv_open(charset, "UTF-16LE", lp_parm_bool(test->lp_ctx, NULL, "iconv", "native", true)); + cd3 = smb_iconv_open("UTF-16LE", charset, lp_parm_bool(test->lp_ctx, NULL, "iconv", "native", true)); last_charset = charset; } -- cgit