免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1481 | 回复: 2
打印 上一主题 下一主题

[Linux] libiconv问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-08-20 20:12 |只看该作者 |倒序浏览
  1. char charset[16] = {0};

  2. // =?UTF-8?B?5o6i57Si56We5puy6ZqQ6JeP5Zyo6IOM5ZCO55qE56eY5a+G?=
  3. bool decode_subject(char *subject)
  4. {
  5.     static char *iconvob = NULL;
  6.     static iconv_t cd = (iconv_t)-1;

  7.     char *p1, *p2;
  8.     size_t insz, outsz;

  9.     if(!strstr(subject, "=?"))
  10.         return true;

  11.     p1 = strchr(subject + 2, '?');
  12.     memcpy(charset, subject + 2, p1 - subject - 2);
  13.     charset[p1 - subject - 2] = 0;
  14. #ifdef DEBUG
  15.     fprintf(stderr, "charset: %s\n", charset);
  16. #endif
  17.     p1 += 3;

  18.     p2 = strrchr(p1, '?');

  19.     if(cd == (iconv_t)-1) {
  20.         cd = iconv_open("UTF-8", charset);
  21.         if(cd == (iconv_t)-1) {
  22.             perror("iconv_open()");
  23.             return false;
  24.         }
  25.     }
  26.     if(!iconvob) {
  27.         iconvob = (char *)malloc(256);
  28.         if(!iconvob) {
  29.             fprintf(stderr, "malloc() failed\n");
  30.             return false;
  31.         }
  32.     }
  33.     memset(iconvob, 0, 256);
  34.     insz = p2 - p1;
  35.     if(iconv(cd, &p1, &insz, &iconvob, &outsz) == (size_t)-1) {
  36.         iconv_close(cd);
  37.         perror("iconv()");
  38.         return false;
  39.     }

  40.     strcpy(subject, iconvob);

  41.     return true;
  42. }
复制代码
参数subject意指email的标题,形如“=?UTF-8?B?5o6i57Si56We5puy6ZqQ6JeP5Zyo6IOM5ZCO55qE56eY5a+G?=”,根据MIME,“=?UTF-8?B?”和结尾的“?=”都是固定的部分。

decode_subject函数,想解析出编码(如UTF-8),并把经iconv转换后的数据(NULL-terminated C string)再存入subject参数所指的空间。

错误是:
Program terminated with signal 6, Aborted.
#0 0xb7719424 in __kernel_vsyscall ()

以上的函数,有什么问题呢?我看不出来。bt看,一定是这个函数的问题,但不单步的话,也定位不了问题

论坛徽章:
0
2 [报告]
发表于 2012-08-21 11:20 |只看该作者
在decode_subject()中,用一个static变量(static char *iconvob_head)记录iconvob的刚从heap上分配得空间时的头,以后每次调用iconv(),判断iconvob与iconvob_head是否相等,不相等的话,赋iconv_head给iconv,core的问题解决。

附上man 3 iconv中,与此bug相关的信息:
The iconv function converts one multibyte character at a time, and for each character conversion it increments *inbuf and decrements *inbytesleft by the number of converted input bytes, it increments *outbuf and decrements *outbytesleft by the number of converted output bytes, and it updates the conversion state contained in cd.

论坛徽章:
0
3 [报告]
发表于 2012-08-21 11:21 |只看该作者
另外,outsz需提前初始化或赋值:outsz = 255;。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP