当前位置:网站首页>Chapter 5 C programming expert thinking 5.4 alert Interpositioning of links
Chapter 5 C programming expert thinking 5.4 alert Interpositioning of links
2022-08-04 04:45:00 【weixin_Guest time】
Interpositioning (some people call it "interposing") replaces the behavior of a library function by writing a function with the same name as the library function.Not only will all calls to this library function that you make yourself will be replaced by your own version of the function call, but all system calls that call the library function will also be replaced by your function.Interpositioning itself is not a bug, it is explicitly required by the compiler to support it.
Do not make any symbols in a program global unless they are intended to be one of the program's interfaces.
mktemp has now been replaced by the ANSI C standard library function tmpname.
The listed identifiers should not appear in the declarations of their own programs.Some of these identifiers are always reserved, others are only reserved if a specific header file is included.Some identifiers are reserved only at the global scope, others are reserved both at the global scope and at the file scope.Also note that all keywords are reserved.The easiest way to avoid trouble is to think that these identifiers are always owned by the system and not use them as their own.
Several items look like this: is[a-z]anything
This means anything starting with "is" followed by a lowercase letter from a to z (but not including things like numbers),Then follow any character.
A few more items look like this: acos, -f, -l.
It means that the 3 identifiers acos, acosf, acosl are reserved.All functions located in the math header file have a basic version that accepts a double argument.There may be two additional versions there: the base name with the suffix l means that the function accepts a long double parameter: the base name with the suffix f means the function accepts a float parameter.
Section 6.1.2 of the ANSI C standard specifies that for external identifiers, the compiler can define itself to make them case-insensitive.At the same time, the first 6 characters of external identifiers must be different from other identifiers (ANSI C standard section 5.2.4.1, "Compile restrictions").There are also some symbols to avoid for other libraries that are linked.You should check the ABI documentation to see which identifiers to avoid.
If the identifier is reserved, it means that the user cannot redefine it.However, this is not a constraint.When this happens, it doesn't ask the compiler to give an error message.It just caused some non-portability issues or undefined behavior.
You can use the -m option in the ld program to have the compiler generate a report.It contains a description of the symbols being Interposed.Normally, ld with the -m option produces a memory map or list showing where those symbols are placed in the executable.It shows multiple instances of the same symbol at the same time, and by looking at the contents of the report, the user can tell if Interpositioning has occurred.
The -D option in the ld program was introduced with SunOS 5.3 to provide better link-edit debugging.This option allows the user to display the link-edit process and the included input files.This option is especially useful if you need to monitor the process of extracting objects from the archive.It can also be used to display runtime binding information.
Description of ld complex program:
* Use the ldd command to list the dynamic set of dependencies of an executable.This command will tell you the function library required by the dynamically linked program
*The -Dhelp option of the ld program can provide some information to help find problems during the linking process:
*View the online of the ld programDocumentation;
*Read SunOs Linker and Libraries Manual
边栏推荐
- 转:管理是对可能性的热爱,管理者要有闯进未知的勇气
- JVM笔记
- 7. The principle description of LVS load balancing cluster
- Significant differences between Oracle and Postgresql in PLSQL transaction rollback
- Enterprise live broadcast is on the rise: Witnessing focused products, micro-like embracing ecology
- Shell 函数
- 中信证券网上开户怎么开的?安全吗?
- PL/SQL Some Advanced Fundamental
- 【流程图】
- drools从下载到postman请求成功
猜你喜欢

7-2 LVS+DR概述与部署

How to systematically plan and learn software testing?

2022 Hangzhou Electric Power Multi-School League Game 5 Solution

How to simplify the automation of modern e-procurement?

mq应用场景介绍

7-1 LVS+NAT load balancing cluster, NAT mode deployment

docker安装mysql与宿主机相差8小时的问题。

Tensors - Application Cases

Mini program + e-commerce, fun new retail

【机器学习】21天挑战赛学习笔记(一)
随机推荐
For Qixi Festival, I made a confession envelope with code
PL/SQL Some Advanced Fundamental
路网编辑器技术预研
深度学习21天——卷积神经网络(CNN):实现mnist手写数字识别(第1天)
Implementing a server-side message active push solution based on SSE
数据治理平台项目总结和分析
Metaverse "Drummer" Unity: Crazy expansion, suspense still exists
【Ryerson情感说话/歌唱视听数据集(RAVDESS) 】
manipulation of file contents
Basic characteristics of TL431 and oscillator circuit
元宇宙“吹鼓手”Unity:疯狂扩局,悬念犹存
How to open a CITIC Securities online account?is it safe?
Enterprise live broadcast is on the rise: Witnessing focused products, micro-like embracing ecology
【21天学习挑战赛】图像的旋转问题(二维数组)
获取单选框选中内容
七夕节,我用代码制作了表白信封
There is an 8 hour difference between the docker installation of mysql and the host.
A Preliminary Study of RSS Subscription to WeChat Official Account-feed43
SQL query String field less than 10 how to check
Use serve to build a local server