829777c1c9
Fixes the following security issues: - CVE-2021-41105: FreeSWITCH susceptible to Denial of Service via invalid SRTP packets When handling SRTP calls, FreeSWITCH is susceptible to a DoS where calls can be terminated by remote attackers. This attack can be done continuously, thus denying encrypted calls during the attack. https://github.com/signalwire/freeswitch/security/advisories/GHSA-jh42-prph-gp36 - CVE-2021-41157: FreeSWITCH does not authenticate SIP SUBSCRIBE requests by default By default, SIP requests of the type SUBSCRIBE are not authenticated in the affected versions of FreeSWITCH. https://github.com/signalwire/freeswitch/security/advisories/GHSA-g7xg-7c54-rmpj - CVE-2021-37624: FreeSWITCH does not authenticate SIP MESSAGE requests, leading to spam and message spoofing By default, SIP requests of the type MESSAGE (RFC 3428) are not authenticated in the affected versions of FreeSWITCH. MESSAGE requests are relayed to SIP user agents registered with the FreeSWITCH server without requiring any authentication. Although this behaviour can be changed by setting the auth-messages parameter to true, it is not the default setting. https://github.com/signalwire/freeswitch/security/advisories/GHSA-mjcm-q9h8-9xv3 - CVE-2021-41145: FreeSWITCH susceptible to Denial of Service via SIP flooding When flooding FreeSWITCH with SIP messages, it was observed that after a number of seconds the process was killed by the operating system due to memory exhaustion https://github.com/signalwire/freeswitch/security/advisories/GHSA-jvpq-23v4-gp3m - CVE-2021-41158: FreeSWITCH vulnerable to SIP digest leak for configured gateways An attacker can perform a SIP digest leak attack against FreeSWITCH and receive the challenge response of a gateway configured on the FreeSWITCH server. This is done by challenging FreeSWITCH's SIP requests with the realm set to that of the gateway, thus forcing FreeSWITCH to respond with the challenge response which is based on the password of that targeted gateway. https://github.com/signalwire/freeswitch/security/advisories/GHSA-3v3f-99mv-qvj4 Release notes: https://github.com/signalwire/freeswitch/releases/tag/v1.10.7 Removed patch, upstream applied a different fix:e9fde845de
Added optional dependency to libks, needed due to upstream commited98516666
Added upstream patches to fix build errors. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Peter: mention security fixes] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
353 lines
9.4 KiB
Makefile
353 lines
9.4 KiB
Makefile
################################################################################
|
|
#
|
|
# freeswitch
|
|
#
|
|
################################################################################
|
|
|
|
FREESWITCH_VERSION = 1.10.7
|
|
FREESWITCH_SOURCE = freeswitch-$(FREESWITCH_VERSION).-release.tar.xz
|
|
FREESWITCH_SITE = https://files.freeswitch.org/freeswitch-releases
|
|
# External modules need headers/libs from staging
|
|
FREESWITCH_INSTALL_STAGING = YES
|
|
FREESWITCH_LICENSE = MPL-1.1, \
|
|
GPL-3.0+ with font exception (fonts), \
|
|
Apache-2.0 (apr, apr-util), \
|
|
BSD-3-Clause (libsrtp)
|
|
|
|
FREESWITCH_LICENSE_FILES = \
|
|
COPYING \
|
|
libs/apr/LICENSE \
|
|
libs/apr-util/LICENSE \
|
|
libs/srtp/LICENSE
|
|
|
|
FREESWITCH_CPE_ID_VENDOR = freeswitch
|
|
|
|
# required dependencies
|
|
FREESWITCH_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
jpeg \
|
|
libcurl \
|
|
openssl \
|
|
pcre \
|
|
spandsp \
|
|
sofia-sip \
|
|
speex \
|
|
sqlite \
|
|
tiff \
|
|
util-linux \
|
|
zlib
|
|
|
|
# disable display of ClueCon banner in fs_cli
|
|
FREESWITCH_CONF_ENV += \
|
|
disable_cc=yes
|
|
|
|
# we neither need host-perl nor host-php
|
|
FREESWITCH_CONF_ENV += \
|
|
ac_cv_prog_PERL=false \
|
|
ac_cv_have_perl=no \
|
|
ac_cv_prog_PHP=false \
|
|
ac_cv_have_php=no \
|
|
ac_cv_prog_PHP_CONFIG=false \
|
|
ac_cv_have_php_config=no
|
|
|
|
# copied from freeswitch/configure.ac, line 258+
|
|
FREESWITCH_CONF_ENV += \
|
|
ac_cv_file__dev_ptmx=yes \
|
|
ac_cv_va_copy=yes \
|
|
ac_cv_file__dev_urandom=yes \
|
|
ac_cv_func_realloc_0_nonnull=yes \
|
|
ac_cv_func_malloc_0_nonnull=yes \
|
|
ac_cv_func_setpgrp_void=yes \
|
|
ac_cv_file__dev_zero=yes \
|
|
apr_cv_tcp_nodelay_with_cork=yes \
|
|
ac_cv_file_dbd_apr_dbd_mysql_c=no \
|
|
ac_cv_sizeof_ssize_t=4 \
|
|
apr_cv_mutex_recursive=yes \
|
|
ac_cv_func_pthread_rwlock_init=yes \
|
|
apr_cv_type_rwlock_t=yes \
|
|
apr_cv_process_shared_works=yes \
|
|
apr_cv_mutex_robust_shared=yes
|
|
|
|
# build breaks with -Werror enabled
|
|
FREESWITCH_CONF_ENV += \
|
|
ac_cv_gcc_supports_w_no_unused_result=no
|
|
|
|
FREESWITCH_CONF_OPTS = \
|
|
--without-erlang \
|
|
--enable-fhs \
|
|
--without-python \
|
|
--disable-system-xmlrpc-c
|
|
|
|
# zrtp supports a limited set of archs, sparc support is also broken due
|
|
# to a broken ld call by gcc, see libs/libzrtp/include/zrtp_config.h
|
|
ifeq ($(BR2_i386)$(BR2_arm)$(BR2_armeb)$(BR2_aarch64)$(BR2_aarch64_be)$(BR2_mips)$(BR2_mipsel)$(BR2_mips64)$(BR2_mips64el)$(BR2_powerpc)$(BR2_powerpc64)$(BR2_powerpcle)$(BR2_x86_64),y)
|
|
FREESWITCH_LICENSE_FILES += libs/libzrtp/src/zrtp_legal.c
|
|
FREESWITCH_CONF_OPTS += --enable-zrtp
|
|
else
|
|
FREESWITCH_CONF_OPTS += --disable-zrtp
|
|
endif
|
|
|
|
# Enable optional modules
|
|
FREESWITCH_ENABLED_MODULES += \
|
|
applications/mod_avmd \
|
|
applications/mod_blacklist \
|
|
applications/mod_callcenter \
|
|
applications/mod_commands \
|
|
applications/mod_conference \
|
|
applications/mod_curl \
|
|
applications/mod_db \
|
|
applications/mod_directory \
|
|
applications/mod_dptools \
|
|
applications/mod_easyroute \
|
|
applications/mod_esf \
|
|
applications/mod_esl \
|
|
applications/mod_expr \
|
|
applications/mod_fifo \
|
|
applications/mod_fsk \
|
|
applications/mod_hash \
|
|
applications/mod_httapi \
|
|
applications/mod_lcr \
|
|
applications/mod_sms \
|
|
applications/mod_snom \
|
|
applications/mod_spandsp \
|
|
applications/mod_spy \
|
|
applications/mod_valet_parking \
|
|
applications/mod_voicemail \
|
|
codecs/mod_g723_1 \
|
|
dialplans/mod_dialplan_asterisk \
|
|
dialplans/mod_dialplan_xml \
|
|
endpoints/mod_loopback \
|
|
endpoints/mod_rtc \
|
|
endpoints/mod_rtmp \
|
|
endpoints/mod_sofia \
|
|
event_handlers/mod_cdr_csv \
|
|
event_handlers/mod_cdr_sqlite \
|
|
event_handlers/mod_event_socket \
|
|
formats/mod_local_stream \
|
|
formats/mod_native_file \
|
|
formats/mod_tone_stream \
|
|
loggers/mod_console \
|
|
loggers/mod_logfile \
|
|
loggers/mod_syslog \
|
|
say/mod_say_de \
|
|
say/mod_say_en \
|
|
say/mod_say_es \
|
|
say/mod_say_es_ar \
|
|
say/mod_say_fa \
|
|
say/mod_say_fr \
|
|
say/mod_say_he \
|
|
say/mod_say_hr \
|
|
say/mod_say_hu \
|
|
say/mod_say_it \
|
|
say/mod_say_ja \
|
|
say/mod_say_nl \
|
|
say/mod_say_pl \
|
|
say/mod_say_pt \
|
|
say/mod_say_ru \
|
|
say/mod_say_sv \
|
|
say/mod_say_th \
|
|
say/mod_say_zh \
|
|
timers/mod_timerfd \
|
|
xml_int/mod_xml_cdr \
|
|
xml_int/mod_xml_rpc \
|
|
xml_int/mod_xml_scgi
|
|
|
|
define FREESWITCH_ENABLE_MODULES
|
|
$(Q)echo $(FREESWITCH_ENABLED_MODULES) \
|
|
| tr ' ' '\n' \
|
|
> $(@D)/modules.conf
|
|
endef
|
|
FREESWITCH_PRE_CONFIGURE_HOOKS += FREESWITCH_ENABLE_MODULES
|
|
|
|
# mod_isac supports a limited set of archs
|
|
# src/mod/codecs/mod_isac/typedefs.h
|
|
ifeq ($(BR2_i386)$(BR2_mips)$(BR2_mipsel)$(BR2_mips64)$(BR2_mips64el)$(BR2_x86_64),y)
|
|
FREESWITCH_LICENSE += , BSD-3-Clause (mod_isac)
|
|
FREESWITCH_LICENSE_FILES += src/mod/codecs/mod_isac/LICENSE
|
|
FREESWITCH_ENABLED_MODULES += codecs/mod_isac
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
|
FREESWITCH_DEPENDENCIES += alsa-lib
|
|
FREESWITCH_ENABLED_MODULES += endpoints/mod_alsa
|
|
endif
|
|
|
|
# Use the pass-through g729 module provided by freeswitch instead of
|
|
# the external mod_bcg729 provided by freeswitch-mod-bcg729.
|
|
ifeq ($(BR2_PACKAGE_FREESWITCH_MOD_BCG729),)
|
|
FREESWITCH_ENABLED_MODULES += codecs/mod_g729
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_FREETYPE),y)
|
|
FREESWITCH_DEPENDENCIES += freetype
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBBROADVOICE),y)
|
|
FREESWITCH_DEPENDENCIES += libbroadvoice
|
|
FREESWITCH_ENABLED_MODULES += codecs/mod_bv
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCODEC2),y)
|
|
FREESWITCH_DEPENDENCIES += libcodec2
|
|
FREESWITCH_ENABLED_MODULES += codecs/mod_codec2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEDIT),y)
|
|
FREESWITCH_DEPENDENCIES += libedit
|
|
FREESWITCH_CONF_OPTS += --enable-core-libedit-support
|
|
else
|
|
FREESWITCH_CONF_OPTS += --disable-core-libedit-support
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBG7221),y)
|
|
FREESWITCH_DEPENDENCIES += libg7221
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBILBC),y)
|
|
FREESWITCH_DEPENDENCIES += libilbc
|
|
FREESWITCH_ENABLED_MODULES += codecs/mod_ilbc
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBKS),y)
|
|
FREESWITCH_DEPENDENCIES += libks
|
|
FREESWITCH_ENABLED_MODULES += endpoints/mod_verto
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBLDNS),y)
|
|
FREESWITCH_DEPENDENCIES += libldns
|
|
FREESWITCH_ENABLED_MODULES += applications/mod_enum
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBMEMCACHED),y)
|
|
FREESWITCH_DEPENDENCIES += libmemcached
|
|
FREESWITCH_ENABLED_MODULES += applications/mod_memcache
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBOPENH264),y)
|
|
FREESWITCH_LICENSE += , BSD-2-Clause (libopenh264)
|
|
FREESWITCH_LICENSE_FILES += docs/OPENH264_BINARY_LICENSE.txt
|
|
FREESWITCH_DEPENDENCIES += libopenh264
|
|
FREESWITCH_ENABLED_MODULES += codecs/mod_openh264
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
FREESWITCH_DEPENDENCIES += libpng
|
|
FREESWITCH_ENABLED_MODULES += formats/mod_png
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBYAML),y)
|
|
FREESWITCH_DEPENDENCIES += libyaml
|
|
FREESWITCH_ENABLED_MODULES += languages/mod_yaml
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LUA),y)
|
|
FREESWITCH_DEPENDENCIES += lua
|
|
FREESWITCH_ENABLED_MODULES += languages/mod_lua
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENLDAP),y)
|
|
FREESWITCH_DEPENDENCIES += openldap
|
|
FREESWITCH_ENABLED_MODULES += directories/mod_ldap xml_int/mod_xml_ldap
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPUS),y)
|
|
FREESWITCH_DEPENDENCIES += opus
|
|
FREESWITCH_ENABLED_MODULES += codecs/mod_opus
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PORTAUDIO),y)
|
|
FREESWITCH_DEPENDENCIES += portaudio
|
|
FREESWITCH_ENABLED_MODULES += endpoints/mod_portaudio
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LAME)$(BR2_PACKAGE_LIBSHOUT)$(BR2_PACKAGE_MPG123),yyy)
|
|
FREESWITCH_DEPENDENCIES += lame libshout mpg123
|
|
FREESWITCH_ENABLED_MODULES += formats/mod_shout
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSILK),y)
|
|
FREESWITCH_DEPENDENCIES += libsilk
|
|
FREESWITCH_ENABLED_MODULES += codecs/mod_silk
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
FREESWITCH_DEPENDENCIES += libsndfile
|
|
FREESWITCH_ENABLED_MODULES += formats/mod_sndfile
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSOUNDTOUCH),y)
|
|
FREESWITCH_DEPENDENCIES += libsoundtouch
|
|
FREESWITCH_ENABLED_MODULES += applications/mod_soundtouch
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENCV3),y)
|
|
FREESWITCH_DEPENDENCIES += opencv3
|
|
FREESWITCH_ENABLED_MODULES += applications/mod_cv
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_POSTGRESQL),y)
|
|
FREESWITCH_CONF_ENV += \
|
|
ac_cv_path_PG_CONFIG=$(STAGING_DIR)/usr/bin/pg_config
|
|
FREESWITCH_DEPENDENCIES += postgresql
|
|
FREESWITCH_ENABLED_MODULES += databases/mod_pgsql
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_UNIXODBC),y)
|
|
FREESWITCH_DEPENDENCIES += unixodbc
|
|
FREESWITCH_CONF_OPTS += \
|
|
--enable-core-odbc-support \
|
|
--with-odbc=$(STAGING_DIR)/usr
|
|
else
|
|
FREESWITCH_CONF_OPTS += --disable-core-odbc-support
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XZ),y)
|
|
FREESWITCH_DEPENDENCIES += xz
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_4_8)$(BR2_PACKAGE_FFMPEG),yy)
|
|
FREESWITCH_LICENSE += , BSD-3-Clause (libvpx, libyuv)
|
|
FREESWITCH_LICENSE_FILES += libs/libvpx/LICENSE libs/libyuv/LICENSE
|
|
FREESWITCH_CONF_OPTS += --enable-libvpx --enable-libyuv
|
|
FREESWITCH_DEPENDENCIES += host-yasm ffmpeg
|
|
FREESWITCH_ENABLED_MODULES += applications/mod_av applications/mod_fsv
|
|
FREESWITCH_MAKE_ENV += CROSS=$(TARGET_CROSS)
|
|
|
|
# Freeswitch's buildsystem forgets to pass important environment
|
|
# variables and config options when it configures libvpx, so
|
|
# pre-build libvpx manually, so Freeswitch does not attempt to run
|
|
# its flawed commands...
|
|
# Freeswitch only ever uses the static libtrary, that's hard-coded,
|
|
# we can't do anything about that...
|
|
# From package/libvpx/libvpx.mk:
|
|
# - this is not a true autotools package. It is based on the ffmpeg
|
|
# build system.
|
|
# - ld is being used with cc options. therefore, pretend ld is cc.
|
|
define FREESWITCH_BUILD_LIBVPX
|
|
cd $(@D)/libs/libvpx && \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(TARGET_CONFIGURE_ARGS) \
|
|
LD="$(TARGET_CC)" \
|
|
CROSS=$(GNU_TARGET_NAME) \
|
|
./configure \
|
|
--target=generic-gnu \
|
|
--enable-pic \
|
|
--prefix=/usr \
|
|
--disable-shared --enable-static \
|
|
--disable-examples \
|
|
--disable-docs \
|
|
--disable-unit-tests && \
|
|
$(TARGET_MAKE_ENV) \
|
|
$(LIBVPX_MAKE_ENV) \
|
|
$(MAKE) \
|
|
-C $(@D)/libs/libvpx \
|
|
all
|
|
endef
|
|
FREESWITCH_PRE_BUILD_HOOKS += FREESWITCH_BUILD_LIBVPX
|
|
|
|
else
|
|
FREESWITCH_CONF_OPTS += --disable-libvpx --disable-libyuv
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|