Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #1170 #1173

Merged
merged 5 commits into from
Feb 12, 2019
Merged

Fix #1170 #1173

merged 5 commits into from
Feb 12, 2019

Conversation

krizhanovsky
Copy link
Contributor

Most changes are in kernel tempesta-tech/linux-4.14.32-tfw#6 :

Kernel:

Split crypto_alloc_tfm() into crypto_find_*() sleepable part and atomic,
suitable for calling from softirq, crypto_alloc_*_atomic().
Previously crypto_find_alg() called moules loading and used semaphore
synchronization, so we had softlockups in TLS handshakes.

Tempesta TLS:

1. Call crypto_find_*() for all configured algorithms on start phase,
   so in run-time we have the ready algs and can quickly allocate
   crypt contexts;

2. Determine maximum size of crypt request also on start phase and
   use it for per-cpu requests allocation instead of wrong 8-byte
   constant.

3. Remove some dead code (crypto.h definitions mostly).

Also merge md.[ch] with cipher.[ch]

Split crypto_alloc_tfm() into crypto_find_*() sleepable part and atomic,
suitable for calling from softirq, crypto_alloc_*_atomic().
Previously crypto_find_alg() called moules loading and used semaphore
synchronization, so we had softlockups in TLS handshakes.

Tempesta TLS:

1. Call crypto_find_*() for all configured algorithms on start phase,
   so in run-time we have the ready algs and can quickly allocate
   crypt contexts;

2. Determine maximum size of crypt request also on start phase and
   use it for per-cpu requests allocation instead of wrong 8-byte
   constant.

3. Remove some dead code (crypto.h definitions mostly).
Print warnings on TTLS_ERR_BAD_INPUT_DATA in ttls_encrypt(): we have
net reatelimited warnings, so this won't cause serious logging problems.
arithmetics in tcp_write_xmit() (double TLS header size accounting).

Account TCP FIN flag in comparing TCP seqnos with skb->len.
Copy link
Contributor

@vankoven vankoven left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me

Copy link
Contributor

@aleksostapenko aleksostapenko left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good to merge.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants