免费注册 查看新帖 |

Chinaunix

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

GCC关键字extern及__attribute__(visibility ("hidden")) [复制链接]

论坛徽章:
4
戌狗
日期:2013-08-15 18:22:43技术图书徽章
日期:2013-08-21 13:48:45巨蟹座
日期:2013-09-26 17:06:39处女座
日期:2013-12-25 11:26:10
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-01-04 22:40 |只看该作者 |倒序浏览
30可用积分
ld.so里有这么句代码


  1. /* If we would use strong_alias here the compiler would see a non-hidden definition.  
  2. * This would undo the effect of the previous declaration.  
  3. *So spell out was strong_alias does plus add the visibility attribute.  */

  4. extern struct rtld_global _rtld_local  __attribute__ ((alias ("_rtld_global"), visibility ("hidden")));
复制代码


这句话什么意思? extern和hidden不矛盾么?关键这句话怎么解释我不明白.

本文件中还定义了一个变量  struct rtld_global _rtld_global ={.xxx=xxx, .xxx=xxx....................}
而struct rtld_global的结构定义,定义在另一个文件.


另外还想问一下,原符号定义了alias后,原符号怎么办?
是不是还如同没定义alias一般,其{全局,局部,弱},{默认,保护,隐藏,内部}这些属性都不变???

最佳答案

查看完整内容

难不成你没有仔细看我re的帖子么? 难不成你没有写个小程序测试下么? so no other "module" (executable or shared library) can reference it directly. 外部app链接ld.so 时, 无法看见 _rtld_local , 但是glibc 中的其他 obj 能看见_rtld_local ,就这个意思。 可以结帖了吧? 呵呵

论坛徽章:
0
2 [报告]
发表于 2008-01-04 22:40 |只看该作者
原帖由 塑料袋 于 2008-1-5 11:32 发表
extern int xxx __attribute__ (visibility ("hidden"));

链接时,xxx对所有obj可见
动态链接时,xxx仅本execute/so可见

难不成这个意思?????



难不成你没有仔细看我re的帖子么? 难不成你没有写个小程序测试下么?
so no other "module" (executable or shared library) can reference it directly.

外部app链接ld.so 时, 无法看见 _rtld_local   ,  但是glibc 中的其他 obj 能看见_rtld_local  ,就这个意思。

可以结帖了吧? 呵呵

论坛徽章:
0
3 [报告]
发表于 2008-01-05 01:18 |只看该作者
原帖由 塑料袋 于 2008-1-4 22:40 发表
ld.so里有这么句代码

  1. /* If we would use strong_alias here the compiler would see a non-hidden definition.  
  2. * This would undo the effect of the previous declaration.  
  3. *So spell out was strong_alias does plus add the visibility attribute.  */

  4. extern struct rtld_global _rtld_local  __attribute__ ((alias ("_rtld_global"), visibility ("hidden")));
复制代码


alias 使得_rtld_local   是 _rtld_global 的一个别名,这个alias的属性缺省是default:
http://www.ohse.de/uwe/articles/gcc-attributes.html
    "default"
          Default visibility is the normal case for ELF.  This value is
          available for the visibility attribute to override other
          options that may change the assumed visibility of symbols.

visibility ("hidden")
    "hidden"
          Hidden visibility indicates that the symbol will not be
          placed into the dynamic symbol table, so no other "module"
          (executable or shared library) can reference it directly.

这个属性使得_rtld_local   不会出现在 dynamic  符号表里,这样外部的程序就无法引用它。


cat foo.c:

  1. int _foo = 5;

  2. extern int foo __attribute__ (( alias ("_foo"), visibility ("hidden")));
  3. //extern int foo __attribute__ (( alias ("_foo")));
复制代码


gcc -shared -o libfoo.so foo.c

然后用readelf -a libfoo.so 仔细看看 foo 和 _foo在哪个table

然后写个小程序,看看能不能在libfoo.so里引用 _foo

glibc 的源码我也没仔细研究过,只是针对这2个属性讲下,具体作用你还要再分析下。 这个__attribute__ (( alias (xxx)) 在很多地方有用的,我记得 kernel里的module_init 就用了这个。具体记不清了,你可以去看看。

在 最后,看看这里:
http://sources.redhat.com/cgi-bi ... sroot=glibc&f=h

[ 本帖最后由 fallshuang 于 2008-1-5 01:37 编辑 ]

论坛徽章:
4
戌狗
日期:2013-08-15 18:22:43技术图书徽章
日期:2013-08-21 13:48:45巨蟹座
日期:2013-09-26 17:06:39处女座
日期:2013-12-25 11:26:10
4 [报告]
发表于 2008-01-05 11:27 |只看该作者
"extern"会使符号的类型为global,意图所有obj均可使用这个符号.
"hidden"使符号的可视性为hidden,仅本obj可见这个符号.

这两者在一起用,是什么意思?如果仅本模块可见,那么extern有什么意义?

论坛徽章:
4
戌狗
日期:2013-08-15 18:22:43技术图书徽章
日期:2013-08-21 13:48:45巨蟹座
日期:2013-09-26 17:06:39处女座
日期:2013-12-25 11:26:10
5 [报告]
发表于 2008-01-05 11:32 |只看该作者
extern int xxx __attribute__ (visibility ("hidden"));

链接时,xxx对所有obj可见
动态链接时,xxx仅本execute/so可见

难不成这个意思?????

论坛徽章:
0
6 [报告]
发表于 2008-01-05 11:45 |只看该作者
朔料袋帮我回答一下问题吧.就是关于那个socket定义的,谢谢。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP