Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
4ca53af6
Commit
4ca53af6
authored
10 months ago
by
Asterisk Development Team
Browse files
Options
Downloads
Patches
Plain Diff
Update for certified-20.7-cert2
parent
7788d054
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.version
+1
-1
1 addition, 1 deletion
.version
CHANGES.md
+1
-1
1 addition, 1 deletion
CHANGES.md
ChangeLogs/ChangeLog-certified-20.7-cert2.md
+182
-0
182 additions, 0 deletions
ChangeLogs/ChangeLog-certified-20.7-cert2.md
with
184 additions
and
2 deletions
.version
+
1
−
1
View file @
4ca53af6
certified-20.7-cert
1
certified-20.7-cert
2
This diff is collapsed.
Click to expand it.
CHANGES.md
+
1
−
1
View file @
4ca53af6
ChangeLogs/ChangeLog-certified-20.7-cert1.md
\ No newline at end of file
ChangeLogs/ChangeLog-certified-20.7-cert2.md
\ No newline at end of file
This diff is collapsed.
Click to expand it.
ChangeLogs/ChangeLog-certified-20.7-cert2.md
0 → 100644
+
182
−
0
View file @
4ca53af6
## Change Log for Release asterisk-certified-20.7-cert2
### Links:
-
[
Full ChangeLog
](
https://downloads.asterisk.org/pub/telephony/certified-asterisk/releases/ChangeLog-certified-20.7-cert2.md
)
-
[
GitHub Diff
](
https://github.com/asterisk/asterisk/compare/certified-20.7-cert1...certified-20.7-cert2
)
-
[
Tarball
](
https://downloads.asterisk.org/pub/telephony/certified-asterisk/asterisk-certified-20.7-cert2.tar.gz
)
-
[
Downloads
](
https://downloads.asterisk.org/pub/telephony/certified-asterisk
)
### Summary:
-
Commits: 6
-
Commit Authors: 2
-
Issues Resolved: 5
-
Security Advisories Resolved: 1
-
[
GHSA-c4cg-9275-6w44
](
https://github.com/asterisk/asterisk/security/advisories/GHSA-c4cg-9275-6w44
)
: Write=originate, is sufficient permissions for code execution / System() dialplan
### User Notes:
-
#### res_pjsip_config_wizard.c: Refactor load process
The res_pjsip_config_wizard.so module can now be reloaded.
### Upgrade Notes:
### Commit Authors:
-
George Joseph: (5)
-
Mike Bradeen: (1)
## Issue and Commit Detail:
### Closed Issues:
-
!GHSA-c4cg-9275-6w44: Write=originate, is sufficient permissions for code execution / System() dialplan
-
780: [bug]: Infinite loop of "Indicated Video Update", max CPU usage
-
801: [bug]: res_stasis: Occasional 200ms delay adding channel to a bridge
-
809: [bug]: CLI stir_shaken show verification kills asterisk
-
816: [bug]: res_pjsip_config_wizard doesn't load properly if res_pjsip is loaded first
-
819: [bug]: Typo in voicemail.conf.sample that stops it from loading when using "make samples"
### Commits By Author:
-
#### George Joseph (5):
-
manager.c: Add entries to Originate blacklist
-
bridge_softmix: Fix queueing VIDUPDATE control frames
-
voicemail.conf.sample: Fix ':' comment typo
-
res_pjsip_config_wizard.c: Refactor load process
-
stir_shaken: CRL fixes and a new CLI command
-
#### Mike Bradeen (1):
-
res_stasis: fix intermittent delays on adding channel to bridge
### Commit List:
-
res_stasis: fix intermittent delays on adding channel to bridge
-
stir_shaken: CRL fixes and a new CLI command
-
res_pjsip_config_wizard.c: Refactor load process
-
voicemail.conf.sample: Fix ':' comment typo
-
bridge_softmix: Fix queueing VIDUPDATE control frames
-
manager.c: Add entries to Originate blacklist
### Commit Details:
#### res_stasis: fix intermittent delays on adding channel to bridge
Author: Mike Bradeen
Date: 2024-07-10
Previously, on command execution, the control thread was awoken by
sending a SIGURG. It was found that this still resulted in some
instances where the thread was not immediately awoken.
This change instead sends a null frame to awaken the control thread,
which awakens the thread more consistently.
Resolves: #801
#### stir_shaken: CRL fixes and a new CLI command
Author: George Joseph
Date: 2024-07-19
*
Fixed a bug in crypto_show_cli_store that was causing asterisk
to crash if there were certificate revocation lists in the
verification certificate store. We're also now prefixing
certificates with "Cert:" and CRLs with "CRL:" to distinguish them
in the list.
*
Added 'untrusted_cert_file' and 'untrusted_cert_path' options
to both verification and profile objects. If you have CRLs that
are signed by a different CA than the incoming X5U certificate
(indirect CRL), you'll need to provide the certificate of the
CRL signer here. Thse will show up as 'Untrusted" when showing
the verification or profile objects.
*
Fixed loading of crl_path. The OpenSSL API we were using to
load CRLs won't actually load them from a directory, only a file.
We now scan the directory ourselves and load the files one-by-one.
*
Fixed the verification flags being set on the certificate store.
-
Removed the CRL_CHECK_ALL flag as this was causing all certificates
to be checked for CRL extensions and failing to verify the cert if
there was none. This basically caused all certs to fail when a CRL
was provided via crl_file or crl_path.
-
Added the EXTENDED_CRL_SUPPORT flag as it is required to handle
indirect CRLs.
*
Added a new CLI command...
`stir_shaken verify certificate_file <certificate_file> [ <profile> ]`
which will assist troubleshooting certificate problems by allowing
the user to manually verify a certificate file against either the
global verification certificate store or the store for a specific
profile.
*
Updated the XML documentation and the sample config file.
Resolves: #809
#### res_pjsip_config_wizard.c: Refactor load process
Author: George Joseph
Date: 2024-07-23
The way we have been initializing the config wizard prevented it
from registering its objects if res_pjsip happened to load
before it.
*
We now use the object_type_registered sorcery observer to kick
things off instead of the wizard_mapped observer.
*
The load_module function now checks if res_pjsip has been loaded
already and if it was it fires the proper observers so the objects
load correctly.
Resolves: #816
UserNote: The res_pjsip_config_wizard.so module can now be reloaded.
#### voicemail.conf.sample: Fix ':' comment typo
Author: George Joseph
Date: 2024-07-24
...and removed an errant trailing space.
Resolves: #819
#### bridge_softmix: Fix queueing VIDUPDATE control frames
Author: George Joseph
Date: 2024-07-17
softmix_bridge_write_control() now calls ast_bridge_queue_everyone_else()
with the bridge_channel so the VIDUPDATE control frame isn't echoed back.
softmix_bridge_write_control() was setting bridge_channel to NULL
when calling ast_bridge_queue_everyone_else() for VIDUPDATE control
frames. This was causing the frame to be echoed back to the
channel it came from. In certain cases, like when two channels or
bridges are being recorded, this can cause a ping-pong effect that
floods the system with VIDUPDATE control frames.
Resolves: #780
#### manager.c: Add entries to Originate blacklist
Author: George Joseph
Date: 2024-07-22
Added Reload and DBdeltree to the list of dialplan application that
can't be executed via the Originate manager action without also
having write SYSTEM permissions.
Added CURL, DB
*, FILE, ODBC and REALTIME*
to the list of dialplan
functions that can't be executed via the Originate manager action
without also having write SYSTEM permissions.
If the Queue application is attempted to be run by the Originate
manager action and an AGI parameter is specified in the app data,
it'll be rejected unless the manager user has either the AGI or
SYSTEM permissions.
Resolves: #GHSA-c4cg-9275-6w44
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment