[Home]

Summary:ASTERISK-26748: app_confbridge: max_members does not limit wait_marked users when they've joined before the marked user
Reporter:Billy Purdue (h0d0r)Labels:
Date Opened:2017-01-24 16:50:52.000-0600Date Closed:
Priority:MinorRegression?
Status:Open/NewComponents:Applications/app_confbridge
Versions:13.12.1 14.2.1 Frequency of
Occurrence
Related
Issues:
Environment:CentOS 7Attachments:( 0) confbridge.conf.txt
Description:With wait_marked=true for a normal user and marked=true for admins, and max_members set, more users can login to the conference before the admin joins than max_members should allow, and all are able to join the conference when the admin joins.  Additionally while this is going on I am seeing "WARNING[6475]: netsock2.c:210 ast_sockaddr_split_hostport: Port missing in (null)" in the Asterisk console repeatedly.
Comments:By: Asterisk Team (asteriskteam) 2017-01-24 16:50:53.141-0600

Thanks for creating a report! The issue has entered the triage process. That means the issue will wait in this status until a Bug Marshal has an opportunity to review the issue. Once the issue has been reviewed you will receive comments regarding the next steps towards resolution.

A good first step is for you to review the [Asterisk Issue Guidelines|https://wiki.asterisk.org/wiki/display/AST/Asterisk+Issue+Guidelines] if you haven't already. The guidelines detail what is expected from an Asterisk issue report.

Then, if you are submitting a patch, please review the [Patch Contribution Process|https://wiki.asterisk.org/wiki/display/AST/Patch+Contribution+Process].

By: Rusty Newton (rnewton) 2017-01-27 14:54:26.536-0600

Odd. If you can post your configs and a debug log showing the issue that would help. Otherwise I'll see if I can reproduce it.

By: Billy Purdue (h0d0r) 2017-02-03 08:08:23.332-0600

That computer got wiped at the end of last week, I think I saved some of the configs though so I'll see if I can find them.

By: Billy Purdue (h0d0r) 2017-02-03 08:31:17.566-0600

confbridge.conf

[Removed as per the guidelines. Attaching to issue. - Rusty]

By: Rusty Newton (rnewton) 2017-02-10 16:00:18.905-0600

I can reproduce the issue, also in Asterisk 14. However, I couldn't reproduce the WARNING you said you were getting. Can you attach Asterisk debug logs to the issue demonstrating what happens?

https://wiki.asterisk.org/wiki/display/AST/Collecting+Debug+Information

By: Sean Bright (seanbright) 2017-08-29 10:00:31.295-0500

Let's say that we have the following setup:

{noformat}
[normal_user]
type = user
wait_marked = yes

[leader_user]
type = user
marked = yes

[limited-bridge]
type = bridge
max_members = 3
{noformat}

If 3 {{normal_user}} join the bridge, how would the {{leader_user}} get in? If {{leader_user}} was an admin it would work, but she's not. I'm not sure how to fix because I am not sure what the correct behavior should be.