]> git.ipfire.org Git - thirdparty/freeswitch.git/log
thirdparty/freeswitch.git
12 years agoFS-5402
Anthony Minessale [Tue, 21 May 2013 18:22:17 +0000 (13:22 -0500)] 
FS-5402

12 years agoFS-5453 --resolve
Anthony Minessale [Tue, 21 May 2013 17:01:57 +0000 (12:01 -0500)] 
FS-5453 --resolve

12 years agoFS-5457
Anthony Minessale [Tue, 21 May 2013 15:21:45 +0000 (10:21 -0500)] 
FS-5457

12 years agoFS-5376 --resolve
Anthony Minessale [Tue, 21 May 2013 15:04:35 +0000 (10:04 -0500)] 
FS-5376 --resolve

12 years agoFS-5242
Anthony Minessale [Tue, 21 May 2013 15:03:22 +0000 (10:03 -0500)] 
FS-5242

12 years agoFS-5211 --resolve
Anthony Minessale [Tue, 21 May 2013 14:29:50 +0000 (09:29 -0500)] 
FS-5211 --resolve

12 years agoftmod_libpri: Fix possible NULL-ptr dereference crash in on_restart(_ack)()
Stefan Knoblich [Tue, 21 May 2013 15:42:24 +0000 (17:42 +0200)] 
ftmod_libpri: Fix possible NULL-ptr dereference crash in on_restart(_ack)()

Catch single channel RESTART/RESTART ACK events for non-B-channels,
that would lead to a NULL pointer dereference, because those do not have
per-channel private data (chan->call_data = chan_priv == NULL).

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
12 years agomod_http_cache: forgot to add write to http_cache:// format
Chris Rienzo [Tue, 21 May 2013 13:27:39 +0000 (09:27 -0400)] 
mod_http_cache: forgot to add write to http_cache:// format

12 years agoAdd mod_say_pl to debian build
Travis Cross [Tue, 21 May 2013 02:33:56 +0000 (02:33 +0000)] 
Add mod_say_pl to debian build

12 years agoSpelling fix
Travis Cross [Tue, 21 May 2013 02:00:43 +0000 (02:00 +0000)] 
Spelling fix

12 years agoFS-5360
Anthony Minessale [Mon, 20 May 2013 17:22:58 +0000 (12:22 -0500)] 
FS-5360

12 years agogetting read_impl too soon here
Anthony Minessale [Mon, 20 May 2013 16:22:37 +0000 (11:22 -0500)] 
getting read_impl too soon here

12 years agoFS-5444 --resolve
Anthony Minessale [Mon, 20 May 2013 13:20:33 +0000 (08:20 -0500)] 
FS-5444 --resolve

12 years agomod_http_cache: added write file format
Chris Rienzo [Mon, 20 May 2013 15:18:40 +0000 (11:18 -0400)] 
mod_http_cache: added write file format

12 years agomod_http_cache: added native Amazon S3 support
Chris Rienzo [Mon, 20 May 2013 13:31:28 +0000 (09:31 -0400)] 
mod_http_cache: added native Amazon S3 support

12 years agoFixed a weakness in error UDPTL lost packet recovery. Hopefully this addresses
Steve Underwood [Mon, 20 May 2013 03:30:11 +0000 (11:30 +0800)] 
Fixed a weakness in error UDPTL lost packet recovery. Hopefully this addresses
FS5202.

12 years agoAdd mod_xml_radius to the modules list, though disabled by default.
William King [Sun, 19 May 2013 03:49:51 +0000 (20:49 -0700)] 
Add mod_xml_radius to the modules list, though disabled by default.

12 years agoTheoretical memory leak where if attr_init failed, then check would have still been...
William King [Sun, 19 May 2013 03:42:03 +0000 (20:42 -0700)] 
Theoretical memory leak where if attr_init failed, then check would have still been malloc'd but not used.

12 years agoMinor code cleanup. calling va_start without calling va_end doesn't leak does it...
William King [Sun, 19 May 2013 03:15:14 +0000 (20:15 -0700)] 
Minor code cleanup. calling va_start without calling va_end doesn't leak does it? Either way, it's fixed now.

12 years agofull_contact must be freed by sofia. There isn't a chance of this having blown anythi...
William King [Sun, 19 May 2013 02:13:18 +0000 (19:13 -0700)] 
full_contact must be freed by sofia. There isn't a chance of this having blown anything up, but Coverity is right that this should be initialized with NULL to be safe against future refactors.

12 years agoWas causing a very small leak on naptr lookups. Upon review just happened to be a...
William King [Sun, 19 May 2013 00:50:50 +0000 (17:50 -0700)] 
Was causing a very small leak on naptr lookups. Upon review just happened to be a typo missing a bang.

12 years agoMy bad. some how a make didn't catch this issue after a cleanup refactor. In this...
William King [Sun, 19 May 2013 00:46:13 +0000 (17:46 -0700)] 
My bad. some how a make didn't catch this issue after a cleanup refactor. In this instance buf is being treated as an 8 byte number, not a pointer.

12 years agoCoverity reported an Uninitialized pointer read. Upon further digging it appears...
William King [Sun, 19 May 2013 00:34:16 +0000 (17:34 -0700)] 
Coverity reported an Uninitialized pointer read. Upon further digging it appears that there is a code path where incoming packets can come in out of order, so this section of code tries to see if it can find the missed packets. As per FS-5202 there is a case where under heavy load the packet exists, and has most of the packet parsed, but still has a NULL pointer for the packet buffer. These two lines would at least help detect the edge case.

12 years agoEdge case for when you are subscribing to presence on a valet parking lot. In which...
William King [Sun, 19 May 2013 00:06:54 +0000 (17:06 -0700)] 
Edge case for when you are subscribing to presence on a valet parking lot. In which case there would be a small leak.

12 years agoPossible leak if someone were to try and add extra headers to a channel that had...
William King [Sun, 19 May 2013 00:00:41 +0000 (17:00 -0700)] 
Possible leak if someone were to try and add extra headers to a channel that had either an inbound info on that session or the session were to be deflected. I don't see a way that these extra headers could be added outside of a C module subscribing to the session states, but just to make sure I'm adding these so that just like other extra header locations it's cleaned up.

12 years agoAlice meet rabit hole. There is a leak here on every invite that comes back from...
William King [Sat, 18 May 2013 23:34:46 +0000 (16:34 -0700)] 
Alice meet rabit hole. There is a leak here on every invite that comes back from a status 180 when the other side is not FS, but you have presence enabled. Thanks to Coverity scan for location this condition. This 'might' not have been leaking if sofia was automatically freeing this when the sofia object was destroyed, but all other locations where sip_header_as_string where called they were all followed by a su_free, so I assume not.

12 years agoIf the mod_sofia global presense hash is null, then make sure to free the matches...
William King [Sat, 18 May 2013 23:05:40 +0000 (16:05 -0700)] 
If the mod_sofia global presense hash is null, then make sure to free the matches variable before going to done.

12 years agoFS-5443: --resolve leaked because the JS api's copy and return new malloc'd pointers.
William King [Sat, 18 May 2013 22:47:01 +0000 (15:47 -0700)] 
FS-5443: --resolve leaked because the JS api's copy and return new malloc'd pointers.

12 years agoWhen message events were added, the debug field name was overlooked. This would have...
William King [Sat, 18 May 2013 22:10:44 +0000 (15:10 -0700)] 
When message events were added, the debug field name was overlooked. This would have only been hit when debug level was above 'DEBUG1' and at that point it would have incorrectly chosen debug display names.

12 years agoMinor typo. User is being passed into this fuction as a long pointer, not a long.
William King [Sat, 18 May 2013 21:29:59 +0000 (14:29 -0700)] 
Minor typo. User is being passed into this fuction as a long pointer, not a long.

12 years agoread() does not NULL terminate statbuf, but strstr expects statbuf to be null terminated.
William King [Sat, 18 May 2013 21:26:40 +0000 (14:26 -0700)] 
read() does not NULL terminate statbuf, but strstr expects statbuf to be null terminated.

12 years agoThis was writing a null one space to the right, outside of the malloc'd buffer. On...
William King [Sat, 18 May 2013 20:38:24 +0000 (13:38 -0700)] 
This was writing a null one space to the right, outside of the malloc'd buffer. On further review this uses apr_vsnprintf which always returns null terminated.

12 years agoFS-5434 --resolve
Jeff Lenk [Sat, 18 May 2013 02:38:32 +0000 (21:38 -0500)] 
FS-5434 --resolve

12 years agoremove flag
Anthony Minessale [Fri, 17 May 2013 21:13:19 +0000 (16:13 -0500)] 
remove flag

12 years agofix silence_stream size bug
Anthony Minessale [Fri, 17 May 2013 21:11:04 +0000 (16:11 -0500)] 
fix silence_stream size bug

12 years agomedia/srtp refactoring pass
Anthony Minessale [Fri, 17 May 2013 20:39:21 +0000 (15:39 -0500)] 
media/srtp refactoring pass

12 years agoFS-5441: --resolve
William King [Fri, 17 May 2013 19:39:17 +0000 (12:39 -0700)] 
FS-5441: --resolve

12 years agohow...?
William King [Tue, 14 May 2013 23:47:13 +0000 (16:47 -0700)] 
how...?

12 years agoSince there isn't neutral ground, on the rtmp state callback we actually have to...
William King [Mon, 13 May 2013 22:10:03 +0000 (15:10 -0700)] 
Since there isn't neutral ground, on the rtmp state callback we actually have to force the write lock of the session, but we only need a try lock on removing the session from the rsession->session_hash. This removes a deadlock caused when we had to enforce with locks that the rsession couldn't be destroyed if the FS session was in the middle of a hangup.

12 years agoSeems the session wasn't coming to the hangup in a locked state.
William King [Mon, 13 May 2013 15:28:09 +0000 (08:28 -0700)] 
Seems the session wasn't coming to the hangup in a locked state.

12 years agoSeems having a read lock still prevents a write lock to be taken, even if the thread...
William King [Mon, 13 May 2013 03:23:57 +0000 (20:23 -0700)] 
Seems having a read lock still prevents a write lock to be taken, even if the thread that is trying to get the write lock currently has the read lock.

12 years agoInclude the write lock since we're changing the tech_pvt
William King [Sun, 12 May 2013 21:29:14 +0000 (14:29 -0700)] 
Include the write lock since we're changing the tech_pvt

12 years agoSome tweaks to the image translate code
Steve Underwood [Wed, 15 May 2013 18:28:20 +0000 (02:28 +0800)] 
Some tweaks to the image translate code

12 years agoFS-5430 --resolve
Anthony Minessale [Wed, 15 May 2013 14:27:18 +0000 (09:27 -0500)] 
FS-5430 --resolve

12 years agotrivial fix compiler warning
Jeff Lenk [Wed, 15 May 2013 16:51:55 +0000 (11:51 -0500)] 
trivial fix compiler warning

12 years agoFS-5418 --resolve
Anthony Minessale [Wed, 15 May 2013 13:08:41 +0000 (08:08 -0500)] 
FS-5418 --resolve

12 years agoFS-5208 --resolve
Anthony Minessale [Wed, 15 May 2013 12:36:56 +0000 (07:36 -0500)] 
FS-5208 --resolve

12 years agofix some minor regression in media code
Anthony Minessale [Tue, 14 May 2013 17:55:02 +0000 (12:55 -0500)] 
fix some minor regression in media code

12 years agoFS-5011 try to fill gaps
Anthony Minessale [Tue, 14 May 2013 16:22:48 +0000 (11:22 -0500)] 
FS-5011 try to fill gaps

12 years agoFixed a silly in the FAX image resolution settings
Steve Underwood [Tue, 14 May 2013 17:49:58 +0000 (01:49 +0800)] 
Fixed a silly in the FAX image resolution settings

12 years agoFS-5325 force rebuild
Anthony Minessale [Tue, 14 May 2013 12:44:34 +0000 (07:44 -0500)] 
FS-5325 force rebuild

12 years agoFS-5416 --resolve just missing the part that registers it
Anthony Minessale [Tue, 14 May 2013 12:38:00 +0000 (07:38 -0500)] 
FS-5416 --resolve just missing the part that registers it

12 years agofix stun lookup returning 1 for port
Anthony Minessale [Mon, 13 May 2013 21:17:19 +0000 (16:17 -0500)] 
fix stun lookup returning 1 for port

12 years agoFS-5407 --resolve
Anthony Minessale [Mon, 13 May 2013 19:21:08 +0000 (14:21 -0500)] 
FS-5407 --resolve

12 years agoFS-5410 --resolve
Anthony Minessale [Mon, 13 May 2013 18:15:33 +0000 (13:15 -0500)] 
FS-5410 --resolve

12 years agoFS-5406 --resolve
Anthony Minessale [Sun, 12 May 2013 13:06:31 +0000 (08:06 -0500)] 
FS-5406 --resolve

12 years agoFS-5325 windows compile
Jeff Lenk [Fri, 10 May 2013 22:31:01 +0000 (17:31 -0500)] 
FS-5325 windows compile

12 years agoRequire OpenSSL
Ken Rice [Fri, 10 May 2013 21:01:40 +0000 (16:01 -0500)] 
Require OpenSSL

12 years agoadd context
Raymond Chandler [Fri, 10 May 2013 20:31:06 +0000 (16:31 -0400)] 
add context

12 years agoFS-5325
Anthony Minessale [Fri, 10 May 2013 17:55:26 +0000 (12:55 -0500)] 
FS-5325

12 years agoFS-5085 the last change helped weed out the real bug which is this commit
Anthony Minessale [Fri, 10 May 2013 15:45:07 +0000 (10:45 -0500)] 
FS-5085 the last change helped weed out the real bug which is this commit

12 years agospandsp windows fix syntax for gettimeofday
Jeff Lenk [Fri, 10 May 2013 17:46:03 +0000 (12:46 -0500)] 
spandsp windows fix syntax for gettimeofday

12 years agoFS-5403 --resolve
Anthony Minessale [Fri, 10 May 2013 14:59:02 +0000 (09:59 -0500)] 
FS-5403 --resolve

12 years agoFreeTDM: ftmod_misdn uses clock_gettime() which is in librt, add a check
Stefan Knoblich [Fri, 10 May 2013 17:01:05 +0000 (19:01 +0200)] 
FreeTDM: ftmod_misdn uses clock_gettime() which is in librt, add a check

Fixes -Wl,-z,now / -Wl,-z,defs errors about undefined symbols.

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
12 years agoFreeTDM: Make libpri pri_version() check -Wunused-but-set-variable safe
Stefan Knoblich [Fri, 10 May 2013 16:59:38 +0000 (18:59 +0200)] 
FreeTDM: Make libpri pri_version() check -Wunused-but-set-variable safe

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
12 years agoFreeTDM: Move external ftmod_* library dependencies to _LIBADD
Stefan Knoblich [Fri, 10 May 2013 13:31:15 +0000 (15:31 +0200)] 
FreeTDM: Move external ftmod_* library dependencies to _LIBADD

Making the build -Wl,--as-needed safe.
Tested on Centos 5.x + Gentoo.

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
12 years agoFreeTDM: Fix implicit conversion between enumeration types error
Stefan Knoblich [Fri, 10 May 2013 12:18:58 +0000 (14:18 +0200)] 
FreeTDM: Fix implicit conversion between enumeration types error

Full clang error message:

  error: implicit conversion from enumeration type 'ftdm_bool_t' to
  different enumeration type 'ftdm_status_t' [-Werror,-Wconversion]

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
12 years agoFreeTDM: Silence -Wtautological-compare warnings emitted by clang
Stefan Knoblich [Fri, 10 May 2013 12:11:37 +0000 (14:11 +0200)] 
FreeTDM: Silence -Wtautological-compare warnings emitted by clang

Fixes "warning: comparison of unsigned expression >= 0 is always true".

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
12 years agoFreeTDM: Use ftdm_unused_arg() to silence -Wunused-argument warnings
Stefan Knoblich [Fri, 10 May 2013 12:05:07 +0000 (14:05 +0200)] 
FreeTDM: Use ftdm_unused_arg() to silence -Wunused-argument warnings

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
12 years agoRelax the image resolutions supported for FAX
Steve Underwood [Fri, 10 May 2013 13:44:17 +0000 (21:44 +0800)] 
Relax the image resolutions supported for FAX

12 years agoThe gettimeofday() function spandsp provided for Windows apparently falls over
Steve Underwood [Fri, 10 May 2013 03:54:20 +0000 (11:54 +0800)] 
The gettimeofday() function spandsp provided for Windows apparently falls over
after 25 hours. I guess not many people are inserting header lines on FAX pages.
Hopefully this update fixes the problem.

12 years agomove log message to avoid logging null
Anthony Minessale [Thu, 9 May 2013 19:34:39 +0000 (14:34 -0500)] 
move log message to avoid logging null

12 years agoFS-5399 --resolve
Anthony Minessale [Thu, 9 May 2013 19:05:09 +0000 (14:05 -0500)] 
FS-5399 --resolve

12 years agoFS-5325 i'll put the nonblocking in but I still think this is a problem with openssl...
Anthony Minessale [Thu, 9 May 2013 17:56:42 +0000 (12:56 -0500)] 
FS-5325 i'll put the nonblocking in but I still think this is a problem with openssl, a short read is not there every single time you connect, When the lib is in full blocking mode it should be handling the complicated actions internally.  As complicated as socket programming is, async ssl is even worse because it requires you to do your own buffering and attemps to read may fail waiting for you to write or vice-versa which should have been handled for us in the lib.  non-interruptable syscalls are getting pretty outdated and not enabling it is much less complex than making every socket app on earth be non-blocking

12 years agoFS-5360 --resolve fields are exec-on-max-failures exec-on-max-timeouts pin, needs...
Anthony Minessale [Thu, 9 May 2013 17:28:43 +0000 (12:28 -0500)] 
FS-5360 --resolve fields are exec-on-max-failures exec-on-max-timeouts pin, needs testing

12 years agoFS-5390 --resolve
Anthony Minessale [Thu, 9 May 2013 15:29:45 +0000 (10:29 -0500)] 
FS-5390 --resolve

12 years agoFS-5398 --resolve
Anthony Minessale [Thu, 9 May 2013 15:08:08 +0000 (10:08 -0500)] 
FS-5398 --resolve

12 years agoupdate to be recorded phrases
Michael S Collins [Thu, 9 May 2013 17:26:02 +0000 (10:26 -0700)] 
update to be recorded phrases

12 years agotest 2, please ignore
Giovanni Maruzzelli [Thu, 9 May 2013 17:00:54 +0000 (17:00 +0000)] 
test 2, please ignore

12 years agotest, please ignore
root [Thu, 9 May 2013 16:59:39 +0000 (16:59 +0000)] 
test, please ignore

12 years agoFS-5395: False alarm on a reported valgrind memory leak. The io_private is alloc...
William King [Thu, 9 May 2013 01:45:24 +0000 (18:45 -0700)] 
FS-5395: False alarm on a reported valgrind memory leak. The io_private is alloc'd from a memory pool which valgrind sucks at tracking. No need to free this, because it'll get cleared when the memory pool on the rsession is destroyed.

12 years agoFS-5395: --resolve Resolve another mod_rtmp crash where oh specific hangup scenarios...
William King [Wed, 8 May 2013 23:31:27 +0000 (16:31 -0700)] 
FS-5395: --resolve Resolve another mod_rtmp crash where oh specific hangup scenarios there would be a free of variable that wasn't ever malloced

12 years agoFS-5085 I discovered that the bowout is happening from both legs at once, we only...
Anthony Minessale [Wed, 8 May 2013 18:17:07 +0000 (13:17 -0500)] 
FS-5085 I discovered that the bowout is happening from both legs at once, we only need to check this condition on the A side of the loopback bridge

12 years agoUndo previous change
Brian West [Wed, 8 May 2013 19:40:10 +0000 (14:40 -0500)] 
Undo previous change

12 years agoMerge branch 'master' of fs-git:freeswitch
Raymond Chandler [Wed, 8 May 2013 17:59:39 +0000 (13:59 -0400)] 
Merge branch 'master' of fs-git:freeswitch

12 years agoFS-5327 --resolve
Raymond Chandler [Wed, 8 May 2013 17:52:48 +0000 (13:52 -0400)] 
FS-5327 --resolve

12 years agoUpdate to be recorded phrases
Michael S Collins [Wed, 8 May 2013 17:20:22 +0000 (10:20 -0700)] 
Update to be recorded phrases

12 years agoMerge branch 'master' of fs-git:freeswitch
Raymond Chandler [Wed, 8 May 2013 16:53:40 +0000 (12:53 -0400)] 
Merge branch 'master' of fs-git:freeswitch

12 years agoFS-5288 --resolve
Raymond Chandler [Wed, 8 May 2013 16:53:31 +0000 (12:53 -0400)] 
FS-5288 --resolve

12 years agoFS-5371 --resolve typo
Anthony Minessale [Wed, 8 May 2013 14:18:45 +0000 (09:18 -0500)] 
FS-5371 --resolve typo

12 years agoFS-5389
Jeff Lenk [Wed, 8 May 2013 16:36:13 +0000 (11:36 -0500)] 
FS-5389

12 years agoFS-5389 --resolve
Jeff Lenk [Wed, 8 May 2013 13:37:10 +0000 (08:37 -0500)] 
FS-5389 --resolve

12 years agoRevert "fixed stuck mod_rtmp session when the call is killed from fs side, such as...
William King [Tue, 7 May 2013 23:04:54 +0000 (16:04 -0700)] 
Revert "fixed stuck mod_rtmp session when the call is killed from fs side, such as using uuid_kill"

This reverts commit d8edc031faa41d4e570aad1e347a0ed6c0d6c1d8.

Conflicts:
src/mod/endpoints/mod_rtmp/mod_rtmp.c

12 years agoFS-5168 --resolve
Anthony Minessale [Tue, 7 May 2013 19:09:42 +0000 (14:09 -0500)] 
FS-5168 --resolve

12 years agoFS-4871 --resolve
Raymond Chandler [Tue, 7 May 2013 19:07:04 +0000 (15:07 -0400)] 
FS-4871 --resolve

12 years agoFS-5325
Anthony Minessale [Tue, 7 May 2013 16:30:37 +0000 (11:30 -0500)] 
FS-5325

12 years agoregression parsing rtp-timeout-sec from the profile
Anthony Minessale [Tue, 7 May 2013 13:50:02 +0000 (08:50 -0500)] 
regression parsing rtp-timeout-sec from the profile

12 years agoFS-5383 --resolve
Anthony Minessale [Tue, 7 May 2013 13:31:23 +0000 (08:31 -0500)] 
FS-5383 --resolve

12 years agofix mod_spandsp on systems with libjbig
Ken Rice [Mon, 6 May 2013 23:23:54 +0000 (18:23 -0500)] 
fix mod_spandsp on systems with libjbig

12 years agoFreeTDM: Add ftdm_unused_arg() macro to silence "unused parameter" compiler warnings
Stefan Knoblich [Mon, 6 May 2013 15:41:50 +0000 (17:41 +0200)] 
FreeTDM: Add ftdm_unused_arg() macro to silence "unused parameter" compiler warnings

Signed-off-by: Stefan Knoblich <stkn@openisdn.net>