Aaron Jones
add3f90b9f
openssl: Avoid use-after-free when rehashing fails to load new files
...
Commit cf12678
introduced a fix for issue #186 by freeing the old SSL_CTX
structure before constructing a new one, which could disconnect existing
clients otherwise.
Unfortunately, the freeing is done first, which means that if setting up
a new structure fails for any reason, there will be no usable structures
left, but they are still referenced.
This fix moves the freeing to the end of the function, using intermediate
new variables in the meantime. This problem was discovered while testing
against OpenSSL 1.1.0 RC6.
2016-08-12 13:34:13 +00:00
William Pitcock
e5b5dc997d
charybdis 4-rc3.
2016-08-05 23:38:34 -05:00
William Pitcock
f8f5ff705a
m_grant: convert jevolk's rewritten version to AV2
2016-08-05 23:37:05 -05:00
William Pitcock
980cf654d0
Merge pull request #207 from charybdis-ircd/jevolk-patch-1
...
authd: Fix use after reference count decrement.
2016-08-05 23:07:00 -05:00
Jason Volk
7c003d84bc
authd: Fix use after reference count decrement.
2016-08-05 13:08:16 -06:00
William Pitcock
5191cd0814
Merge pull request #205 from jevolk/release/4
...
m_grant: rewrite.
2016-07-27 02:34:38 -05:00
Jason Volk
17f925817e
m_grant: rewrite.
2016-07-26 22:40:26 -07:00
Jason Volk
4cc889ae17
ircd: Fix missing operhash reference decrement from b02a913b
.
2016-07-19 23:24:33 +00:00
Jason Volk
e4a7cf9f50
Fix erroneous return value.
2016-07-16 11:26:38 -07:00
Aaron Jones
6621472435
reference.conf: Document fingerprint generation
...
[ci skip]
2016-07-16 05:42:09 +00:00
Elizabeth Myers
8b0392ca39
Fix stupid compiler errors by my stupidity and tiredness
2016-06-27 19:37:02 -05:00
Elizabeth Myers
cec81c7978
blacklist: add blacklist_cancel_none
2016-06-27 19:36:52 -05:00
Elizabeth Myers
1db45f312a
blacklist: add return statement. d'oh.
2016-06-27 19:36:44 -05:00
Elizabeth Myers
c47e4958e9
blacklist: fix precedence lossage
2016-06-27 19:36:35 -05:00
Elizabeth Myers
02e4674001
blacklist: if no blacklists were checked, properly terminate query.
2016-06-27 19:36:24 -05:00
Elizabeth Myers
d52762b2a9
build_rdns: minor cleanup
2016-06-27 19:36:10 -05:00
Elizabeth Myers
c12d9cd3b2
blacklist: tweak message for timeout
2016-06-27 19:35:51 -05:00
Elizabeth Myers
f16493f468
blacklist: give different messages for cancellation and timeout
2016-06-27 19:35:32 -05:00
William Pitcock
9a71801d08
charybdis 4-rc2.
2016-06-25 22:14:52 -05:00
William Pitcock
74edf6bac0
Merge branch 'master' into release/4
2016-06-25 14:27:44 -05:00
Jason Volk
12de082e2c
Fix bug. Note: The second hunk is just an assumption. It's not called from anywhere.
2016-06-25 14:27:32 -05:00
William Pitcock
c642292f25
Merge pull request #196 from jevolk/master
...
I typed MODRESTART by accident
2016-06-21 20:00:01 -05:00
Jason Volk
b5cfad0319
Core modules cannot be unloaded, otherwise bad things happen.
...
Additionally some information is logged and passed to the operator
conducting a MODRESTART.
2016-06-21 17:42:36 -07:00
Jason Volk
94afbe9c8e
ircd: Fix capability entry name string ownership.
...
The entry->cap must be copied and exclusive to the entry for the
cap to be orphaned, even if literals are expected. Because modules.
2016-06-21 17:32:28 -07:00
William Pitcock
9ce88407b2
charybdis 4-rc1.
2016-06-19 22:44:47 -05:00
William Pitcock
34ec4fcaeb
Merge branch 'master' into release/4
2016-06-19 21:49:52 -05:00
William Pitcock
2e29fd422d
librb: remove one more VMS detritius
2016-06-19 21:47:59 -05:00
William Pitcock
0268efc78c
librb: we have no plans to support VMS
2016-06-19 21:47:23 -05:00
William Pitcock
16e64bb554
Merge branch 'master' into release/4
2016-06-18 01:06:52 -05:00
William Pitcock
94555087a1
ircd: relocate_paths() back on windows only now
2016-06-18 01:05:38 -05:00
William Pitcock
2185c50aad
m_modules: use new module api
2016-06-18 00:59:15 -05:00
William Pitcock
1e37cb443d
conf_parser: warning fixes
2016-06-18 00:52:54 -05:00
William Pitcock
e55a9d6abc
modules: serious cleanups
2016-06-18 00:52:16 -05:00
William Pitcock
92dad4831d
modules: cleanups
2016-06-18 00:38:40 -05:00
William Pitcock
73b70ae846
ircd: fix compile of relocate_paths()
2016-06-18 00:22:02 -05:00
William Pitcock
7145720468
ircd: make relocate_paths() available always
2016-06-18 00:21:39 -05:00
William Pitcock
c51b77a312
ircd: call relocate_paths() in all cases
2016-06-18 00:20:59 -05:00
William Pitcock
8e30e3def4
messages: fix format string warning reported by latest clang
2016-06-17 23:39:19 -05:00
William Pitcock
e0e0c41524
ircd: print runtime path configuration
2016-06-17 23:36:47 -05:00
William Pitcock
cfb1020589
librb: dictionaries which use integer keys may use 0 legitimately
2016-06-17 23:29:11 -05:00
William Pitcock
f88fd40fe9
invite: do not send duplicate invite messages ( closes #194 )
2016-06-16 20:21:42 -05:00
William Pitcock
397ec4d171
invite: do not send duplicate invite messages ( closes #194 )
2016-06-16 20:21:18 -05:00
Aaron Jones
499612f19e
mbedtls backend: indicate reason for TLS session termination
...
[ci skip]
2016-06-12 11:33:41 +00:00
Aaron Jones
2bf9371a07
mbedtls backend: indicate reason for TLS session termination
...
[ci skip]
2016-06-12 11:33:09 +00:00
William Pitcock
88345c1681
CREDITS: charybdis official channel will now be on irc.charybdis.io.
2016-06-04 23:53:47 -05:00
William Pitcock
00653c77cd
CREDITS: charybdis official channel will now be on irc.charybdis.io.
2016-06-04 23:53:21 -05:00
William Pitcock
c8df99af90
CREDITS: adjust to reflect present situation
2016-06-04 23:49:13 -05:00
William Pitcock
7f6882d5f6
CREDITS: adjust to reflect present situation
2016-06-04 23:48:16 -05:00
Aaron Jones
e4196b2feb
Fix regression introduced by commit 2f361bfc
2016-06-01 21:04:45 +00:00
Aaron Jones
0325f5eec8
Fix regression introduced by commit 1863a0f8
2016-06-01 21:03:46 +00:00