Commit Graph

425 Commits

Author SHA1 Message Date
Christoph Schulz cf98743fb3 mISDNcapid: ignore incoming B3 data packets until PTY slave sent data
In hijacking mode (CAPIFLAG_HIGHJACKING), a PTY master/slave pair is created to
pass data back and forth between the application and mISDNcapid. However, there
is a small time window between creating the PTY slave and the application
opening the PTY slave. If a B3 data connection is established before the
application has opened the PTY slave, and B3 data is received and written to the
PTY master end, it is immediately read back by the B3 data receiver thread
(BCthread), which then sends the data back to the original sender, causing a
loopback. This e.g. happens when the application is the PPP daemon pppd which
has been configured to not send any data until it receives a valid LCP packet
("silent" option).

In order to fix this, an additional flag called tty_received remembers whether
the B3 data receiver thread has already read data from the PTY at least once.
Only if this is the case B3 data is written to the PTY master end, otherwise it
is discarded as there is no potential receiver at the PTY slave end yet. This
effectively avoids any loopback situations due to an unconnected PTY slave end.

Signed-off-by: Christoph Schulz <develop@kristov.de>
2017-02-27 17:47:59 +01:00
Karsten Keil 1acabc5db3 Set theme jekyll-theme-merlot 2017-02-26 19:58:40 +01:00
Martin Bachem a29326031e testlayer1: polling sockets faster, sleep after bind, etc 2016-06-30 14:29:43 +02:00
Martin Bachem 1bade6d562 testlayer1 starts average rate counter at once for all channels 2016-06-20 15:33:35 +02:00
Martin Bachem b76e29c8c3 layer1 channel activate/deactivate stress test 2016-06-09 17:52:40 +02:00
Maciej S. Szmigiero 21b8c52a64 mISDNcapid: Parse B channel id first from message then its included IEs
If early B3 is enabled we are currently opening channel B on appropriate
"Progress" IE.

If it turns out that this IE arrives in the same message that also sets
which B channel should be used the current code will fail to open
the B channel for early B3 as the current order is to first handle the IEs
then parse channel id.

Change this to first parse the B channel id then handle the IEs so in such
situation the B channel id will already be set at "Progress" IE handling
time.

Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
2016-04-14 23:41:43 +02:00
Maciej S. Szmigiero e3e71a7f94 mISDNcapid: Add experimental partial early B3 support
Early B3 support is an useful functionality not only to listen to actual
exchange ringback tone but also to hear announcements like number changed,
line not provisioned, etc.

This commit adds partial early B3 support: mISDNcapid will try to open
B channel on "Call is not end-to-end ISDN; further call progress
information may be available in-band" and "In-band information or an
appropriate pattern is now available" progress indications, so CAPI
application will be able to connect to this B channel with CONNECT_B3_REQ
message.

Doing it this way needs only minimal changes to existing code - we just
need to make sure that B channel opening function ( lPLCILinkUp() )
doesn't try do it again when it is called for the second time.

Full early B3 support would need further decoupling NCCI management
from PLCI management so B channel could be opened on demand when CAPI
application issues CONNECT_B3_REQ.

While we are at it also make sure that lPLCILinkUp() function also
cleans up what it has already done when it exits early with an error.

Since this functionality is experimental it is not enabled by default -
a define needs to be uncommented at top of capi20/lplci.c to enable it.

Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
2016-04-14 23:24:17 +02:00
Maciej S. Szmigiero 6e79260425 mISDNcapid: Send also second and next IEs as INFO_IND to CAPI application
According to Q.931 (05/98) some of variable length information elements
may occur more than once in a message.

parseQ931() from mISDN layer3 library would store such second and next
occurrence of particular IE in an "extra" array of l3 struct.

This commit adds support for sending these repeated IEs to mISDNcapid
INFO_IND IE posting function ( lPLCIInfoIndIE() ) so they will be
available to CAPI applications.

Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
2016-04-14 00:35:26 +02:00
Maciej S. Szmigiero a50c5b93da mISDNcapid: Fix INFO_IND IE posting function early return condition
lPLCIInfoIndIE() in lplci.c returned early when mc->l3m was set and
continued execution when it was NULL, however from code further in this
function it is clear that opposite behavior was meant.

This caused CAPI applications to not receive INFO_IND with information
elements, as this function was no-op when called correctly.

Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
2016-04-13 23:33:05 +02:00
Maciej S. Szmigiero 0cac6f5176 testlayer3: Normalize successful write() return value in bch_worker()
bch_worker() on {DL,PH}_DATA_IND returns what write() call has returned.
This function returns number of bytes written, however bch_worker() caller
main_worker() treats any non-zero return value of bch_worker() as signal
to disconnect the call.

This all meant that call terminated on first received chunk of data.

Fix it by normalizing a positive return value of write() in bch_worker()
to zero.

Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2016-03-29 12:47:49 +02:00
Maciej S. Szmigiero 99bccfa7b9 testlayer3: Add missing break in MT_CONNECT case in do_control_worker()
MT_CONNECT case in do_control_worker() was missing final break so on this
message code in next (identical) case of MT_CONNECT_ACKNOWLEDGE was
executed, too.

In "send and receive voice" mode this resulted in
"bchannel_senddata: next_skb exist ERROR (skb->len=64 next_skb->len=64)"
error and immediate call disconnection due to TX data being submitted
twice.

Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2016-03-29 12:47:43 +02:00
Karsten Keil 7e1924062d Create the socket directory on runtime
Since nowadays often the /var/run is /run and is in tmpfs creating it on the fly should be
a better solution.
2016-03-29 12:31:22 +02:00
Karsten Keil c686153484 mISDNcapid: Add hint for the -d --debug parameter in help output 2016-03-15 12:53:33 +01:00
Maciej S. Szmigiero b4b3e62516 Fix CAPI-initiated disconnection in direct layer 1 mode
When CAPI application asks for B3 disconnection the NCCI state machine
sends disconnect request further down the stack and then goes into N_4
state waiting for disconnection confirmation.

If B channel was in direct layer 1 mode the disconnect request will be
sent as PH_DEACTIVATE_REQ which will go all the way down to an individual
mISDN chip driver.

It looks like all current chip drivers reply to such requests by sending
only PH_DEACTIVATE_IND message, however the state machine in N_4 state
only reacts to PH_DEACTIVATE_CNF message (translated into
EV_DL_RELEASE_CONF).

This means that such call will get stuck until remote side disconnects it.

Fix this by reacting to PH_DEACTIVATE_IND message also in N_4 state,
just like it is done in N_ACT state.

Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
2016-03-13 18:54:03 +01:00
Maciej S. Szmigiero 06ed113c3d Use Reject parameter for deciding what happens to call via CONNECT_B3_RESP
CAPI specs say that CONNECT_B3_RESP message uses Reject parameter for
deciding what happens to incoming connection, however mISDNcapid code
used Info instead.

Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
2016-03-13 18:52:55 +01:00
Maciej S. Szmigiero 4caaa5ac72 Parse channel information from CALL PROCEEDING message too in mISDNcapid
According to Q.931 (05/98) on user-originated calls that did not select
a particular B channel in a SETUP message the selected B channel is sent
in a first message returned by the network in a response to
the SETUP message.

This Recommendation explicitly mentions SETUP ACKNOWLEDGE or
CALL PROCEEDING as examples of such response messages, however mISDNcapid
code ignored channel indication in CALL PROCEEDING messages.

This resulted in a no channel selected error on outgoing calls
on exchanges that reply with CALL PROCEEDING to SETUP.

Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
2016-03-13 18:52:16 +01:00
Karsten Keil 40aa4b22c1 Convert tools sources to codestyle 2015-08-02 16:35:49 +02:00
Thomas Jarosch 6c25cdacd3 Fix memory leak on read() error
Detected by cppcheck.
2015-08-01 18:06:43 +02:00
Martin Bachem bc5d24d5b2 testlayer1: fixing usage hints for --help output 2015-04-23 10:31:28 +02:00
Karsten Keil 3638cf36df Release v2.0.19 2014-10-20 14:18:55 +02:00
Karsten Keil bd6ea3f85f Fix overwriting ret in action loop, improve debug/error messages. 2014-10-20 14:11:35 +02:00
Karsten Keil fc757c58dc Better refcount locking to avoid use after free
Under some conditions it could be happen that on a freeing capi object
a other thread still get a reference and then it use the already freed object.
To avoid this, we do 2 things, we only take a refernce if get_obj() succeed, it
do not longer succeed if the object is already cleaned. We also force scheduling
after releaseing the lock before really freeing the object - so the waiting thread
will not get a new reference.
2014-10-14 14:39:44 +02:00
Karsten Keil d9a97bb810 Lock refcnt changes for Root objects too
In theory the Root object are never freed so the refcounting is not critical, but it should also not harm
to protect it to avoid wrong refcounts.
2014-10-03 17:27:11 +02:00
Karsten Keil 69cd05567c ignore ar-lib 2014-10-03 16:58:34 +02:00
Karsten Keil 70c61ca931 Some debug to detect use after free 2014-10-03 16:52:20 +02:00
Karsten Keil ed6c40581e release v2.0.18 2014-09-22 01:51:02 +02:00
Karsten Keil 50b4970832 Always close socket in error cases
Thanks to Thomas Jarosch <thomas.jarosch@intra2net.com> for fixing this
2014-09-22 01:41:30 +02:00
Karsten Keil 43cd10a657 Better debugging for descriptor leaks and fixing application release leak 2014-09-22 01:35:42 +02:00
Karsten Keil 8a0d743a08 return code of write need checking 2014-09-22 01:32:09 +02:00
Karsten Keil d927b710c6 Mutex should be unlocked before setting bi to NULL - fix SEGFAULT 2014-09-15 08:32:05 +02:00
Karsten Keil dee4e5684a Try to fix filedescriptor leak and add additional debug output to get more info about the leak 2014-09-09 12:55:50 +02:00
Karsten Keil ec4ac2763f Fix compile error with newer gcc (and a reaL BUG)
layer3/q931.c: In function 'mi_encode_hlc':
layer3/q931.c:360:3: error: statement with no effect [-Werror=unused-value]
   ie[1] | 0x80;
   ^
Thanks to Tobias Powalowski pointing to this issue
.
2013-05-20 15:16:19 +02:00
Andreas Eversberg 1dc4c24d27 Fix: misdn_bridge now activates correct interface when L1 is down
When layer 1 is down, an incomming message will now activate the
correct interface. This is required to pass a message when layer 1
is down, like PTMP interfaces.
2012-12-21 22:16:32 +01:00
Joerg Dorchain 3293be0592 Fix compile error when configured --disable-softdsp 2012-12-05 10:40:19 +01:00
Norbert Weyrich df131f57d4 decode and encode functions for notification indicator information element 2012-11-14 14:19:01 +01:00
Karsten Keil 640ba25164 Add special testmode 16 to testcon - Reject calls with cause values
- cleanup
2012-11-13 20:35:48 +01:00
Karsten Keil 7e5e9df238 Fix printf format string
It should be OK to use printf with a format only, but it seems some gcc version has an issue here.

Signed-off-by: Karsten Keil <kkeil@linux-pingi.de>
2012-09-29 17:44:03 +02:00
Karsten Keil d980284891 Add missing cause values for facility reject
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2012-09-23 20:20:48 +02:00
Karsten Keil 85def6d15f Version 2.0.17
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2012-09-17 00:47:40 +02:00
Karsten Keil 5d36b4e2b1 Release FAX call imediately if never received anything
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2012-09-17 00:46:18 +02:00
Karsten Keil 3d596e2ace Only the highest matched bit position gives the CIP value
CAPI 2.0 spec defines the CIP value indicated by CONNECT_IND
als highest matched bit position, not the higest CIP value
calculated from bearer + HLC info.
This bug caused that if a application did not request listening
for some of the higher bit values a not requested CIP was sent, so the
call was ignored.

Signed-off-by: Karsten Keil <keil@b1-systems.de>
2012-09-17 00:01:49 +02:00
Karsten Keil 2f83a0448f Inform all applications about incoming calls before handling responses
Implement a method to disable temporary messages from applications to
synchronize the delivery of a incoming call. It is important, that
all listening application get informed before the first answer was handled.

Signed-off-by: Karsten Keil <keil@b1-systems.de>
2012-09-16 18:30:45 +02:00
Karsten Keil 469b9b5f6b Fix Segmentationfault with unattended calls
if a call was not taken by an application and multiple applications
are listening, it could happen that the PLCI was deleted before we
did sent the CONNECT_IND to all applications.

Signed-off-by: Karsten Keil <keil@b1-systems.de>
2012-09-16 10:44:10 +02:00
Karsten Keil 6b4d631ed5 Version 2.0.16
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2012-09-13 15:23:06 +02:00
Karsten Keil 41a71dba03 More warning fixes
Signed-off-by: Karsten Keil <kkeil@linux-pingi.de>
2012-09-13 14:45:47 +02:00
Karsten Keil 9252f4080c Really use refcounting for the dynamic objects
Add listing dangling objects via SIGUSR2.

Signed-off-by: Karsten Keil <kkeil@linux-pingi.de>
2012-09-13 14:36:55 +02:00
Karsten Keil 18e7679a58 Make the current version compatible to recent kernel stuff
Also allow backward compatibility to older standalone kernel drivers.

Signed-off-by: Karsten Keil <kkeil@linux-pingi.de>
2012-09-13 14:36:08 +02:00
Karsten Keil 9f5e9dc1c9 Add dumping status information via SIGUSR1 into the debug file
Signed-off-by: Karsten Keil <kkeil@linux-pingi.de>
2012-09-13 14:35:54 +02:00
Karsten Keil 269b5707d0 Add cause value 19 No answer from user (user alerted)
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2012-09-07 10:20:18 +02:00
Norbert Weyrich 30721084cb fix pres handling in mi_encode_connected_nr() improved 2012-08-30 12:29:46 +02:00