nginx module development: ngx_xqw_backtrace_module
Module Introduction
When nginx receives the abnormal exit signal SIGINT during operation, the current function call stack will be output to the log file. In addition to handling SIGINT, you can also add corresponding signals in the module.
Module development process
- Create configuration structure
<code><span>typedef</span><span>struct</span> ngx_xqw_backtrace_conf_s{ ngx_log_t *<span>log</span>; <span>// 日志</span> ngx_int_t size; <span>// 栈最大深度</span> }ngx_xqw_backtrace_conf_t;</code>
Each module has a corresponding configuration structure.
2. Implement create_conf to allocate memory for the configuration structure and return the corresponding pointer
<code><span>// 初始化配置结构体</span><span>static</span><span>void</span> * ngx_http_xqw_backtrace_create_conf(ngx_cycle_t *cycle) { ngx_xqw_backtrace_conf_t *bcf = <span>NULL</span>; bcf = ngx_palloc(cycle->pool, <span>sizeof</span>(ngx_xqw_backtrace_conf_t)); <span>if</span> (bcf == <span>NULL</span>) <span>return</span><span>NULL</span>; bcf->size = NGX_CONF_UNSET; <span>return</span> bcf; }</code>
The above is the process of creating the structure.
3. Set a set callback function for each configuration item. If the configuration item parameter is a number, you can set set to ngx_conf_set_num_slot, otherwise you need to implement it yourself.
<code><span>// a、用ngx_get_conf得到该模块的结构体</span><span>// b、获取配置项中的参数 cf->cycle->elts</span><span>// c、由参数构造模块结构体中的成员</span> static char* ngx_xqw_backtrace_log(ngx_conf_t <span>*cf</span>, ngx_command_t <span>*cmd</span>, void <span>*conf</span>) { ngx_str_t <span>file</span>, <span>*value</span>; ngx_log_t <span>*log</span>; ngx_xqw_backtrace_conf_t <span>*bcf</span>; bcf = (ngx_xqw_backtrace_conf_t <span>*)</span> ngx_get_conf(cf->cycle->conf_ctx, ngx_xqw_backtrace_module); value = cf->args->elts; <span>file</span> = value[<span>1</span>]; <span>// 解析配置文件出错返回 NGX_CONF_ERROR</span><span>if</span> (ngx_conf_full_name(cf->cycle, &<span>file</span>, <span>1</span>) != NGX_OK) <span>return</span> NGX_CONF_ERROR; <span>log</span> = ngx_log_create(cf->cycle, &<span>file</span>); <span>if</span> (<span>log</span> == NULL) <span>return</span> NGX_CONF_ERROR; bcf-><span>log</span> = <span>log</span>; bcf-><span>log</span>->log_level = NGX_LOG_ERR; <span>// 每个LOGFILE都有相应的级别,</span><span>// 需要设置好级别后才能输出到自定义的LOGFILE</span><span>return</span> NGX_CONF_OK; } </code>
The above is the process of parsing configuration items
4. Initialize the signal processing function
<code><span>static</span> ngx_int_t ngx_init_error_signal(ngx_log_t *log) { ngx_backtrace_signal_t *sigs; <span>struct</span> sigaction sa; <span>// 不需要用index的循环方法</span><span>for</span> (sigs = ngx_backtrace_signals; sigs->name != <span>NULL</span>; sigs ++) { ngx_memzero(&sa, <span>sizeof</span>(<span>struct</span> sigaction)); sa<span>.sa_handler</span> = sigs->handler; sigemptyset(&sa<span>.sa_mask</span>); <span>if</span> (sigaction(sigs->value, &sa, <span>NULL</span>) == -<span>1</span>) { perror(<span>"sigaction"</span>); <span>return</span> NGX_ERROR; } } <span>return</span> NGX_OK; }</code>
implemented around sigaction
5. When writing the exception handling function
<code>static <span>void</span> ngx_backtrace_signal_handler(int sig) { ngx_backtrace_signal_t <span>*</span>sigs; ngx_xqw_backtrace_conf_t <span>*</span>bcf; <span>void</span><span>*</span>buff; size_t size; bcf <span>=</span> (ngx_xqw_backtrace_conf_t<span>*</span>) ngx_get_conf(ngx_cycle<span>-></span>conf_ctx, ngx_xqw_backtrace_module); ngx_log_error(NGX_LOG_ERR, bcf<span>-></span><span>log</span>, <span>0</span>, <span>"hello error\n"</span>); <span>if</span> (bcf <span>==</span><span>NULL</span>) fprintf(stderr, <span>"ngx_get_conf error\n"</span>); for (sigs <span>=</span> ngx_backtrace_signals; sigs<span>-></span>name <span>!=</span><span>NULL</span>; <span>++</span> sigs) <span>if</span> (sigs<span>-></span>value <span>==</span> sig) break; <span>// 要退出了,故将信号设置为默认处理方式</span> struct sigaction sa; ngx_memzero(<span>&</span>sa, sizeof(struct sigaction)); sigemptyset(<span>&</span>sa<span>.</span>sa_mask); sa<span>.</span>sa_handler <span>=</span> SIG_DFL; <span>if</span> (sigaction(sigs<span>-></span>value, <span>&</span>sa, <span>NULL</span>) <span>==</span><span>-</span><span>1</span>) perror(<span>"signal handler sigaction:"</span>); <span>if</span> (bcf<span>-></span>size <span>==</span> NGX_CONF_UNSET) bcf<span>-></span>size <span>=</span> MAX_STACK_SIZE; buff <span>=</span> (<span>void</span><span>*</span>)ngx_palloc(ngx_cycle<span>-></span>pool, bcf<span>-></span>size <span>*</span> sizeof (<span>void</span><span>*</span>)); <span>if</span> (buff <span>==</span><span>NULL</span>) fprintf(stderr, <span>"ngx_palloc error\n"</span>); size <span>=</span> backtrace(buff, bcf<span>-></span>size); backtrace_symbols_fd(buff, size, bcf<span>-></span><span>log</span><span>-></span>file<span>-></span>fd); kill(ngx_getpid(), sig); }</code>
, you need to restore the signal processing function to the default processing situation, and send the signal again after the processing is completed.
Reference materials
ngx_backtrace_module module released by Taobao
ngx_xqw_backtrace_module download link
http://download.csdn.net/detail/wxq714586001/8719535
The above introduces the nginx module development: ngx_xqw_backtrace_module, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

Why Snipping Tool Not Working on Windows 11 Understanding the root cause of the problem can help find the right solution. Here are the top reasons why the Snipping Tool might not be working properly: Focus Assistant is On: This prevents the Snipping Tool from opening. Corrupted application: If the snipping tool crashes on launch, it might be corrupted. Outdated graphics drivers: Incompatible drivers may interfere with the snipping tool. Interference from other applications: Other running applications may conflict with the Snipping Tool. Certificate has expired: An error during the upgrade process may cause this issu simple solution. These are suitable for most users and do not require any special technical knowledge. 1. Update Windows and Microsoft Store apps

Part 1: Initial Troubleshooting Steps Checking Apple’s System Status: Before delving into complex solutions, let’s start with the basics. The problem may not lie with your device; Apple's servers may be down. Visit Apple's System Status page to see if the AppStore is working properly. If there's a problem, all you can do is wait for Apple to fix it. Check your internet connection: Make sure you have a stable internet connection as the "Unable to connect to AppStore" issue can sometimes be attributed to a poor connection. Try switching between Wi-Fi and mobile data or resetting network settings (General > Reset > Reset Network Settings > Settings). Update your iOS version:

Use the math.Log2 function to calculate the base 2 logarithm of a specified number. In mathematics, the logarithm is an important concept that describes the exponential relationship of one number to another number (the so-called base). Among them, the base 2 logarithm is particularly common and is frequently used in the fields of computer science and information technology. In the Python programming language, we can calculate the base 2 logarithm of a number using the log2 function from the math library. Here is a simple code example: importmathdef

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

Watch4pro and gt each have different features and applicable scenarios. If you focus on comprehensive functions, high performance and stylish appearance, and are willing to bear a higher price, then Watch 4 Pro may be more suitable. If you don’t have high functional requirements and pay more attention to battery life and reasonable price, then the GT series may be more suitable. The final choice should be decided based on personal needs, budget and preferences. It is recommended to carefully consider your own needs before purchasing and refer to the reviews and comparisons of various products to make a more informed choice.

Use the math.Log10 function to calculate the base 10 logarithm of a specified number. Logarithms are a common concept in mathematics and computer science. We often use logarithms to describe the size or proportion of numbers. In computer programming, the commonly used logarithmic function is the logarithmic function with base 10. In the Python language, you can use the log10 function in the math library to calculate the base 10 logarithm of a specified number. Below we will demonstrate the use of this function through a simple code example. First, we need

How to Optimize iPad Battery Life with iPadOS 17.4 Extending battery life is key to the mobile device experience, and the iPad is a good example. If you feel like your iPad's battery is draining too quickly, don't worry, there are a number of tricks and tweaks in iPadOS 17.4 that can significantly extend the run time of your device. The goal of this in-depth guide is not just to provide information, but to change the way you use your iPad, enhance your overall battery management, and ensure you can rely on your device for longer without having to charge it. By adopting the practices outlined here, you take a step toward more efficient and mindful use of technology that is tailored to your individual needs and usage patterns. Identify major energy consumers
