Update cell expiry on assignment for htables w/o updateexpiry (analogue to #4079).

Pre-Submission Checklist

Type Of Change

Checklist:

Description

Currently Kamailio does not update expiry when assigning a value to an expired cell if htable's updateexpire equals 0. So expired cells aren't usable as long htable timer cleans up these cells.
Reproduction 1:

#!KAMAILIO

listen=udp:127.0.0.1:9999

log_stderror=yes

loadmodule "xlog.so"
loadmodule "pv.so"
loadmodule "sl.so"
loadmodule "htable.so"

modparam("htable", "htable", "foo=>autoexpire=1;updateexpire=0;initval=0")

request_route {
        if ($sht(foo=>bar) == $null) {
                xlog("it's null, init it\n");
        }
        $sht(foo=>bar) = $sht(foo=>bar) + 1;
        xlog("$Ts value $sht(foo=>bar)\texpire $shtex(foo=>bar)\n");
        sl_send_reply("200", "Hello");
}

output:

 0(787651) ERROR: <script>: 1736855046 value 1  expire 1
 0(787651) ERROR: <script>: 1736855046 value 2  expire 1
 0(787651) ERROR: <script>: 1736855047 value 3  expire 0
 0(787651) ERROR: <script>: 1736855048 value 0  expire 4294967295
 0(787651) ERROR: <script>: 1736855048 value 0  expire 4294967295
 0(787651) ERROR: <script>: 1736855049 value 0  expire 4294967294
 0(787651) ERROR: <script>: 1736855050 value 0  expire 4294967293
SNIP expire decreases while value stays 0
 0(787651) ERROR: <script>: 1736855066 value 1  expire 1
 0(787651) ERROR: <script>: 1736855066 value 2  expire 1
 0(787651) ERROR: <script>: 1736855067 value 3  expire 0

Reproduction 2:

#!KAMAILIO

listen=udp:127.0.0.1:9999

log_stderror=yes

loadmodule "xlog.so"
loadmodule "pv.so"
loadmodule "sl.so"
loadmodule "htable.so"

modparam("htable", "htable", "baz=>")
modparam("htable", "htable", "foo=>autoexpire=1;updateexpire=0")

request_route {
        if ($sht(foo=>bar) == $null) {
                xlog("it's null, init it\n");
        }
        $sht(foo=>bar) = $_s($shtinc(baz=>cnt));
        xlog("$Ts value $sht(foo=>bar)\texpire $shtex(foo=>bar)\n");
        sl_send_reply("200", "Hello");
}

event_route[htable:mod-init] {
        xlog("htable:mod-init\n");
        # $sht(foo=>bar) = 0;
        $sht(baz=>cnt) = 0;
}

output:

 0(789709) ERROR: <script>: it's null, init it
 0(789709) ERROR: <script>: 1736855379 value 1  expire 1
 0(789709) ERROR: <script>: 1736855379 value 2  expire 1
 0(789709) ERROR: <script>: 1736855380 value 3  expire 0
 0(789709) ERROR: <script>: 1736855380 value 4  expire 0
 0(789709) ERROR: <script>: it's null, init it
 0(789709) ERROR: <script>: 1736855381 value <null>     expire 4294967295
 0(789709) ERROR: <script>: it's null, init it
 0(789709) ERROR: <script>: 1736855382 value <null>     expire 4294967294
SNIP expire decreases value stays null
 0(789709) ERROR: <script>: it's null, init it
 0(789709) ERROR: <script>: 1736855399 value 33 expire 1
 0(789709) ERROR: <script>: 1736855399 value 34 expire 1
 0(789709) ERROR: <script>: 1736855400 value 35 expire 0
 0(789709) ERROR: <script>: 1736855400 value 36 expire 0

You can view, comment on, or merge this pull request online at:

  https://github.com/kamailio/kamailio/pull/4103

Commit Summary

File Changes

(2 files)

Patch Links:


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <kamailio/kamailio/pull/4103@github.com>