当前位置: 首页 > news >正文

长沙网站建设好处建设部网站221号文件

长沙网站建设好处,建设部网站221号文件,wordpress增加登录账户,微信分享wordpress摘要#xff1a;工作过程中处理线上的崩溃时发现了一例cxa_pure_virtual相关的crash#xff0c;直接看堆栈基本山很容易确认是有异步调用导致出发了ABI的异常。但是对于为什么会触发cxa_pure_virtual虽然有大致的猜测但是没有直接的证据#xff0c;因此本文主要描述触发该类…  摘要工作过程中处理线上的崩溃时发现了一例cxa_pure_virtual相关的crash直接看堆栈基本山很容易确认是有异步调用导致出发了ABI的异常。但是对于为什么会触发cxa_pure_virtual虽然有大致的猜测但是没有直接的证据因此本文主要描述触发该类型崩溃的原理。   关键字cxxabi,llvm,cxa_pure_virtual,vptr 首先我们看一下崩溃的现象线上的崩溃堆栈大概类似于下面形式 0x********* abort() 0x********* std::terminate() 0x********* cxxabi::__cxa_pure_virtual() 0x********* ******::*******上面的崩溃我们看实际的代码基本上能够判断出当前类已经被析构的情况下当前类却尝试访问虚函数导致了cxa_pure_virtual要修复该问题直接排查哪里导致的异步调用即可。 __cxa_pure_virtual的描述如下 The __cxa_pure_virtual function is an error handler that is invoked when a pure virtual function is called. If you are writing a C application that has pure virtual functions you must supply your own __cxa_pure_virtual error handler function.当调用一个纯虚函数时被调用看llvm中cxxabi的实现可以看到该函数被调用时会直接abort。那就比较奇怪如果我们调用的是一个纯虚函数按理说编译都无法通过但是查看代码发现对应的函数是被重写的。那我们此时可能怀疑的一个点便是虚基类的虚函数表构造和销毁问题。可能是因为子类被销毁是基类的虚函数表被改回基类的虚函数表而基类中对应虚函数指针就是编译器指定的cxa_pure_virtual。 _LIBCXXABI_FUNC_VIS _LIBCXXABI_NORETURN void __cxa_pure_virtual(void) {abort_message(Pure virtual function called!); }怀疑到这一点我这边开始找资料类似的问题印象中标准中是不管的那大概率在ABI中定义的那我们去看ABI的定义。从ABI的定义中找到如下的描述 An implementation shall provide a standard entry point that a compiler may reference in virtual tables to indicate a pure virtual function. Its interface is:extern C void __cxa_pure_virtual (); This routine will only be called if the user calls a non-overridden pure virtual function, which has undefined behavior according to the C Standard. Therefore, this ABI does not specify its behavior, but it is expected that it will terminate the program, possibly with an error message.if C::f is a pure virtual function, no specific requirement is made for the corresponding virtual table entry. It may point to __cxa_pure_virtual (see 3.2.6 Pure Virtual Function API) or to a wrapper function for __cxa_pure_virtual (e.g., to adapt the calling convention). It may also simply be null in such cases.上面这一段描述了cxa_pure_virtual实际的意义。下面再看一下CXXABI中关于对象以及虚函数表构造的过程的描述 // Sub-VTT for D (embedded in VTT for its derived class X):static vtable *__VTT__1D [1nm] { D primary vtable,// The sub-VTT for B-in-D in X may have further structure:B-in-D sub-VTT (n elements),// The secondary virtual pointers for Ds bases have elements// corresponding to those in the B-in-D sub-VTT,// and possibly others for virtual bases of D:D secondary virtual pointer for B and bases (m elements) }; D ( D *this, vtable **ctorvtbls ){// (The following will be unwound, not a real loop):for ( each base A of D ) {// A boring base is one that does not need a ctorvtbl:if ( ! boring(A) ) {// Call subobject constructors with sub-VTT index// if the base needs it -- only B in our example:A ( (A*)this, ctorvtbls sub-VTT-index(A) ); } else {// Otherwise, just invoke the complete-object constructor:A ( (A*)this );}}// Initialize virtual pointer with primary ctorvtbls address// (first element):this-vptr ctorvtbls0; // primary virtual pointer// (The following will be unwound, not a real loop):for ( each subobject A of D ) {// Initialize virtual pointers of subobjects with ctorvtbls// addresses for the bases if ( ! boring(A) ) {((A*)this)-vptr ctorvtbls 1n secondary-vptr-index(A);// where n is the number of elements in the sub-VTTs} else {// Otherwise, just use the complete-object vtable:((A *)this)-vptr (A-in-D vtable);}}// Code for D constructor....}从上面的描述中我们能够看到 当前类的虚函数表指针的确定是在执行具体的构造函数代码之前的构建当前类之前会搜索当前类的继承图找到基类按照继承图的先序序列构造基类基类构造完成后开始调用当前类的构造函数的代码。 析构函数的顺序相反。对于一个具有直接继承关系的虚基类A和BB继承自A的构造顺序为 class A{ public:virtual void func() 0; };class B: public A{ public:virtual void func(){} };B构造函数B::B被调用遍历B的基类构造调用基类的构造函数这里就是A::A();调用A的时候先将vfptr指向A的虚函数表此表项中有基类偏移typeinfo__cxa_pure_virtual因为func是纯虚函数因此该处的虚函数表指针以此填充调用A::A的用户代码这里没有就不调用A构造函数执行完后开始设置B的虚函数指针为B的虚函数表。调用B构造函数的用户代码 析构顺序 调用B::~B析构函数设置虚函数表指针为B的虚函数表执行B析构的用户代码调用基类A::~A()该过程中先设置虚函数表指针为A的虚函数表再调用A的用户代码。 从上面的过程中大概也能看出cxa_pure_virtual可能被调用的时机。当类被析构时基类的析构稍微比较耗时时第二个线程尝试访问当前类的一个被重写的纯虚函数由于此时的虚函数表中的纯虚函数已经被修改为cxa_pure_virtual就会直接abort。那我们复现下 class ClassA { public:ClassA() {printf(Class A \n);}virtual ~ClassA() {std::this_thread::sleep_for(std::chrono::seconds(5));}virtual void func() 0; };class ClassB : public ClassA { public:virtual ~ClassB() {printf(Class B \n);};virtual void func() override {printf(Class B func\n);} };void func(ClassA *p) {while (1) {p-func();} }int main(){std::cout Hello World!\n;ClassA* p new ClassB;auto t std::thread(func, p);std::this_thread::sleep_for(std::chrono::seconds(1));delete p;t.join(); }上面的代码中在析构函数中加了sleep函数来保证对象被析构过程中卡在基类的析构函数第二个线程尝试访问该纯虚函数。   再clang/gcc系列编译器上触发的是cxa_purer_virtual而msvc触发的是_purecall。 extern C int __cdecl _purecall() {_purecall_handler const purecall_handler _get_purecall_handler();if (purecall_handler){purecall_handler();// The user-registered purecall handler should not return, but if it does,// continue with the default termination behavior.}abort(); }
http://www.hkea.cn/news/14431251/

相关文章:

  • 个人制作的网站js网站开发工具
  • asp.net网站开发项...镇网站制作价格
  • 南京h5网站开发如何制作软件程序
  • 代申请可信网站济南智能网站建设哪家好
  • 南宁制作网站公司网站无法处理请求
  • 17做网站广州沙河地址米可网络科技有限公司
  • 学建设网站如何手机创建网站
  • 手机软件下载网站推荐wordpress打包ios+app
  • 大冶市城乡建设局网站p2p贷款网站开发
  • 专业的营销型网站定制销售网站建设公司
  • 公司网站建设济南兴田德润地址优秀个人网站设计欣赏
  • 重庆seo推广公司seo搜索优化是什么意思
  • 杭州网站建设案例天津地铁建设网站
  • 福州网站建设方案优化个人创建网站程序
  • 阀门专业网站建设重庆网站快速排名优化
  • 网站排名应该怎么做温州小程序开发哪家好
  • 营销型网站建设实训总结uc浏览器下载
  • 备案网站的黑名单高端学校网站建设
  • 什么网站做的很好医院网站建设 中标
  • tp5 网站开发文章列表插件wordpress
  • 信息网站建设方案wordpress 所有标签
  • 网站都可以做哪些主题巴彦淖尔网站建设
  • 网站建设 佛山市自己做民宿在什么网站上投放
  • 小松 建设项目 网站关于网页设计的网站
  • 建设企业网站地址河北省建设工程安全生产监督管理网站
  • 苏州网站开发建设服务电子商务网络运营
  • 湛江有网站的公司名称深圳产品型网站建设
  • 企业网站建设方案策划wordpress 单栏 宽屏
  • 菜谱分享网站开发开题报告衡水 网站开发
  • 网站建设要做什么记事本做网站如何排版