Commit Graph

446 Commits

Author SHA1 Message Date
Karsten Keil 7d12683f36 export l3_ie2pos() and l3_pos2ie() 2017-07-30 22:29:25 +02:00
Karsten Keil 3c6665d794 Install misdnlogger.conf.sample as default 2017-07-30 22:29:25 +02:00
Karsten Keil d263d37f77 add flex artefact ylwrap 2017-07-30 22:29:25 +02:00
Karsten Keil 46b4dd6a25 Add new misdlogger related artefacts 2017-07-30 22:29:25 +02:00
Karsten Keil 56c333ab10 Export parseQ931 2017-07-30 22:29:24 +02:00
Karsten Keil cc80463f23 First working version of misdnlogger 2017-07-30 22:29:24 +02:00
Karsten Keil 234e9bc9ce Fix none existing octets 5b1/5b2 in bearer capabilities
Here exist two differnt content versions of octet 5b in bearer capabilities
but only alternatively depending on the L1 protocol, so we only need one octet 5b here.
2017-07-30 22:29:24 +02:00
Karsten Keil 4be89daf43 Call logger first not working skeleton version 2017-07-30 22:29:24 +02:00
Karsten Keil 79f85a5f96 Set version to 2.0.21 2017-07-30 22:29:24 +02:00
Karsten Keil ae15977c06 Remove duplicated const const (detected by gcc 7 warning)
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2017-07-24 09:21:13 +02:00
Karsten Keil 9f5d377216 Make intermediate version 2.0.20
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2017-07-24 09:21:13 +02:00
Karsten Keil 002a6e4bcb Merge pull request #6 from kristovschulz/fix-release-link
mISDNcapid: release B3 link properly when using CAPIFLAG_HIGHJACKING
2017-07-24 09:15:42 +02:00
Karsten Keil ce11bd31a3 Merge pull request #5 from kristovschulz/fix-pty-loopback
mISDNcapid: ignore incoming B3 data packets until PTY slave sent data
2017-07-24 09:15:29 +02:00
Karsten Keil 6cdc34ef49 Merge pull request #4 from kristovschulz/fix-lplci-disconnect
mISDNcapid: fix lPLCIDisconnectInd() by returning zero when B3 link is missing
2017-07-24 09:14:57 +02:00
Karsten Keil acd627c996 Merge pull request #3 from kristovschulz/fix-bchannel-activation
mISDNcapid: fix B channel activation
2017-07-24 09:14:12 +02:00
Karsten Keil bf6813426b Merge pull request #2 from kristovschulz/fix-tty-mc-leak
mISDNcapid: fix memory leak when using CAPIFLAG_HIGHJACKING
2017-07-24 09:12:41 +02:00
Karsten Keil f732c35c3d Ignore autogenerated capi20/m_capi_sock.h
Signed-off-by: Karsten Keil <keil@b1-systems.de>
2017-06-11 12:16:15 +02:00
Christoph Schulz 0d7fc6fd37 mISDNcapid: fix memory leak when using CAPIFLAG_HIGHJACKING
If using a tty for sending/receiving B3 data, the mc buffer for data sent is
not freed by ncciDataConf() because this is done only by AnswerDataB3Req()
which is not called when using a tty. Fix this by explicitly freeing the mc
buffer when a tty is used.

Signed-off-by: Christoph Schulz <develop@kristov.de>
2017-02-27 17:48:37 +01:00
Christoph Schulz be0f62c087 mISDNcapid: release B3 link properly when using CAPIFLAG_HIGHJACKING
Until now, B3ReleaseLink() did not care about BType_tty B3 links. This commit
makes them behave like BType_Direct links.

Signed-off-by: Christoph Schulz <develop@kristov.de>
2017-02-27 17:48:24 +01:00
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
Christoph Schulz 86da1e4546 mISDNcapid: fix lPLCIDisconnectInd() by returning zero when B3 link is missing
The function lPLCIDisconnectInd() is called by plci_cc_disconnect_ind() when a
EV_L3_DISCONNECT_IND event is being handled. If the B3 link has already gone,
lPLCIDisconnectInd() returns -ENODEV, which prevents plci_cc_disconnect_ind()
from calling lPLCILinkDown() and therefore from cleaning up properly. This
commit makes lPLCIDisconnectInd() returns zero (i.e. success) in such a
situation.

Signed-off-by: Christoph Schulz <develop@kristov.de>
2017-02-27 17:45:58 +01:00
Christoph Schulz c3c05bfb63 mISDNcapid: fix B channel activation
Always sends PH_ACTIVATE_REQ and not DL_ESTABLISH_REQ down the mISDN stack when
opening a B-channel, as DL_ESTABLISH_REQ is only understood by layer-2, and
B-channel management is done at layer-1.

Signed-off-by: Christoph Schulz <develop@kristov.de>
2017-02-27 17:44:26 +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