[asterisk-bugs] [JIRA] (ASTERISK-29402) res_pjsip_t38: Socket is bound to IPv4/IPv6 but platform does not support it

Friendly Automation (JIRA) noreply at issues.asterisk.org
Wed Oct 6 08:55:49 CDT 2021


    [ https://issues.asterisk.org/jira/browse/ASTERISK-29402?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=256561#comment-256561 ] 

Friendly Automation commented on ASTERISK-29402:
------------------------------------------------

Change 16547 merged by George Joseph:
res_pjsip_t38: bind UDPTL sessions like RTP

[https://gerrit.asterisk.org/c/asterisk/+/16547|https://gerrit.asterisk.org/c/asterisk/+/16547]

> res_pjsip_t38: Socket is bound to IPv4/IPv6 but platform does not support it
> ----------------------------------------------------------------------------
>
>                 Key: ASTERISK-29402
>                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-29402
>             Project: Asterisk
>          Issue Type: Bug
>      Security Level: None
>          Components: Resources/res_pjsip_t38
>    Affects Versions: 18.3.0
>         Environment: Running as a Linux binary on FreeBSD's Linux emulation layer.
>            Reporter: Matthew Kern
>              Labels: fax, patch
>         Attachments: t38_bind_fixes.patch
>
>
> On environments such as this, sockets bound to ipv6 addresses cannot be used to pass ipv4 traffic (I am unsure of the exact deeper issue here, but it seems to do with the bind() address, not the call to socket()). ast_check_ipv6() (from main/utils.c) only detects whether an AF_INET6 socket can be opened at all (which it can in this env, so ast_check_ipv6() returns 1 by default).
> According to a quick search, ast_check_ipv6() is only called in two spots - the load_module() for res_pjsip_t38.c and res_pjsip_sdp_rtp.c
> The sdp/rtp module works fine this way, but only with the bind_rtp_to_media_address option set (i.e. since I'm forcing the socket to bind() to an ipv4 address, ipv4 packets can pass. Without this option I get similar EINVAL sends).
> Unfortunately, there is no equivalent option for the T38 module. Working around this, either so that ast_check_ipv6() always returns 0, or disabling the check in load_module and forcing address to "0.0.0.0", yields a fully working system.
> Please either implement a configuration option to force ast_check_ipv6() to return 0, or implement a configuration option to set the bind() address for the T38 module (e.g. bind_t38_to_media_address would be a legitimate solution here), for the sake of other systems with this particular problem.



--
This message was sent by Atlassian JIRA
(v6.2#6252)



More information about the asterisk-bugs mailing list