<p>N A has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.asterisk.org/c/asterisk/+/19657">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">loader: Allow declined modules to be unloaded.<br><br>Currently, if a module declines to load, dlopen is called<br>to register the module but dlclose never gets called.<br>Furthermore, loader.c currently doesn't allow dlclose<br>to ever get called on the module, since it declined to<br>load and the unload function bails early in this case.<br><br>This can be problematic if a module is updated, since the<br>new module cannot be loaded into memory since we haven't<br>closed all references to it. To fix this, we now allow<br>modules to be unloaded, even if they never "loaded" in<br>Asterisk itself, so that dlclose is called and the module<br>can be properly cleaned up, allowing the updated module<br>to be loaded from scratch next time.<br><br>ASTERISK-30345 #close<br><br>Change-Id: Ifc743aadfa85ebe3284e02a63e124dafa64988d5<br>---<br>M main/loader.c<br>1 file changed, 36 insertions(+), 2 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/57/19657/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/main/loader.c b/main/loader.c</span><br><span>index 549e3f0..2b69075 100644</span><br><span>--- a/main/loader.c</span><br><span>+++ b/main/loader.c</span><br><span>@@ -1241,8 +1241,16 @@</span><br><span>     }</span><br><span> </span><br><span>        if (!mod->flags.running || mod->flags.declined) {</span><br><span style="color: hsl(0, 100%, 40%);">-         ast_log(LOG_WARNING, "Unload failed, '%s' is not loaded.\n", resource_name);</span><br><span style="color: hsl(0, 100%, 40%);">-          error = 1;</span><br><span style="color: hsl(120, 100%, 40%);">+            /* If the user asks to unload a module that didn't load, obey.</span><br><span style="color: hsl(120, 100%, 40%);">+             * Otherwise, we never dlclose() modules that fail to load,</span><br><span style="color: hsl(120, 100%, 40%);">+            * which means if the module (shared object) is updated,</span><br><span style="color: hsl(120, 100%, 40%);">+               * we can't load the updated module since we never dlclose()'d it.</span><br><span style="color: hsl(120, 100%, 40%);">+             * Accordingly, obey the unload request so we can load the module</span><br><span style="color: hsl(120, 100%, 40%);">+              * from scratch next time.</span><br><span style="color: hsl(120, 100%, 40%);">+             */</span><br><span style="color: hsl(120, 100%, 40%);">+           ast_log(LOG_WARNING, "Unloading module '%s' that was never loaded\n", resource_name);</span><br><span style="color: hsl(120, 100%, 40%);">+               error = 0;</span><br><span style="color: hsl(120, 100%, 40%);">+            goto exit; /* Skip all the intervening !error checks, only the last one is relevant. */</span><br><span>      }</span><br><span> </span><br><span>        if (!error && (mod->usecount > 0)) {</span><br><span>@@ -1284,6 +1292,7 @@</span><br><span>   if (!error)</span><br><span>          mod->flags.running = mod->flags.declined = 0;</span><br><span> </span><br><span style="color: hsl(120, 100%, 40%);">+exit:</span><br><span>       AST_DLLIST_UNLOCK(&module_list);</span><br><span> </span><br><span>     if (!error) {</span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.asterisk.org/c/asterisk/+/19657">change 19657</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.asterisk.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.asterisk.org/c/asterisk/+/19657"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: Ifc743aadfa85ebe3284e02a63e124dafa64988d5 </div>
<div style="display:none"> Gerrit-Change-Number: 19657 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: N A <asterisk@phreaknet.org> </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>