]> git.ipfire.org Git - thirdparty/dovecot/core.git/log
thirdparty/dovecot/core.git
5 years agolib-http: http-client-connection - Avoid calling http_client_request_send_more()...
Stephan Bosch [Wed, 29 Apr 2020 15:45:06 +0000 (17:45 +0200)] 
lib-http: http-client-connection - Avoid calling http_client_request_send_more() directly.

Get it called from http_client_connection_output() later.

5 years agolib-http: test-http-client-errors - Make "retry payload" test more reliable.
Stephan Bosch [Tue, 28 Apr 2020 21:59:39 +0000 (23:59 +0200)] 
lib-http: test-http-client-errors - Make "retry payload" test more reliable.

5 years agolib-http: http-client-request - Fix return value of http_client_request_send*().
Stephan Bosch [Tue, 28 Apr 2020 17:28:58 +0000 (19:28 +0200)] 
lib-http: http-client-request - Fix return value of http_client_request_send*().

Make sure 1 is returned when all that can be sent is sent. It must not return 0
when the payload input stream is blocking.

5 years agolib-http: http-server-response - Fix return value of http_server_response_send*().
Stephan Bosch [Tue, 28 Apr 2020 17:28:48 +0000 (19:28 +0200)] 
lib-http: http-server-response - Fix return value of http_server_response_send*().

Make sure 1 is returned when all that can be sent is sent. It must not return 0
when the payload input stream is blocking or when the payload output stream
buffer has no data to be sent.

5 years agolib: ostream-wrapper - Return flush status from o_stream_wrapper_continue().
Stephan Bosch [Wed, 29 Apr 2020 07:51:55 +0000 (09:51 +0200)] 
lib: ostream-wrapper - Return flush status from o_stream_wrapper_continue().

5 years agolib: connection_input_resume() - Set added IO as having pending input
Timo Sirainen [Thu, 31 Oct 2019 13:56:58 +0000 (15:56 +0200)] 
lib: connection_input_resume() - Set added IO as having pending input

This makes sense, because when the connection is halted it might already
have input pending in the istream. So doing this always automatically
can prevent unexpected hangs. It shouldn't be harmful to do this even if
there's no input pending.

5 years agolmtp: Don't add "detail" field to events if it's empty
Timo Sirainen [Mon, 27 Apr 2020 11:42:59 +0000 (14:42 +0300)] 
lmtp: Don't add "detail" field to events if it's empty

5 years agolda: Add protocol=lda to the root lda event
Timo Sirainen [Mon, 27 Apr 2020 10:29:19 +0000 (13:29 +0300)] 
lda: Add protocol=lda to the root lda event

5 years agolib-smtp: Fix adding "protocol" field to smtp_server_* events
Timo Sirainen [Sun, 26 Apr 2020 18:42:51 +0000 (21:42 +0300)] 
lib-smtp: Fix adding "protocol" field to smtp_server_* events

The server connection always had its own parent event instead of using
smtp_server.event.

5 years agolib-lda: mail-deliver - Add "error" field to the mail_delivery_finished event.
Stephan Bosch [Wed, 15 Apr 2020 19:08:23 +0000 (21:08 +0200)] 
lib-lda: mail-deliver - Add "error" field to the mail_delivery_finished event.

5 years agolib-lda: mail-deliver - Add MAIL_DELIVER_ERROR_REJECTED.
Stephan Bosch [Wed, 15 Apr 2020 22:04:02 +0000 (00:04 +0200)] 
lib-lda: mail-deliver - Add MAIL_DELIVER_ERROR_REJECTED.

This is not used yet, but useful for future expansion.

5 years agolib-lda: mail-deliver - Move common part of the error handling to mail_deliver()...
Stephan Bosch [Wed, 15 Apr 2020 18:43:13 +0000 (20:43 +0200)] 
lib-lda: mail-deliver - Move common part of the error handling to mail_deliver() itself.

Before, much of that was handled by the respective callers (LDA and LMTP).

5 years agolda: main - Rename error variables in lda_do_deliver().
Stephan Bosch [Wed, 15 Apr 2020 19:01:39 +0000 (21:01 +0200)] 
lda: main - Rename error variables in lda_do_deliver().

5 years agolmtp: lmtp-local - Perform actual (default) delivery in a separate function.
Stephan Bosch [Wed, 15 Apr 2020 18:47:11 +0000 (20:47 +0200)] 
lmtp: lmtp-local - Perform actual (default) delivery in a separate function.

5 years agolib-lda: mail-deliver - Properly parse Message-ID header.
Stephan Bosch [Mon, 27 Apr 2020 22:15:00 +0000 (00:15 +0200)] 
lib-lda: mail-deliver - Properly parse Message-ID header.

5 years agolib-storage: mail - Add mail_get_message_id().
Stephan Bosch [Tue, 18 Feb 2020 22:30:29 +0000 (23:30 +0100)] 
lib-storage: mail - Add mail_get_message_id().

It is a convenience function that reads and parses the Message-ID.

5 years agolib-ssl-iostream: Indicate that password might be wrong when decrypting key
Aki Tuomi [Mon, 20 Apr 2020 19:59:14 +0000 (22:59 +0300)] 
lib-ssl-iostream: Indicate that password might be wrong when decrypting key

5 years agolib-ssl-iostream: Copy key password correctly
Aki Tuomi [Mon, 20 Apr 2020 08:11:28 +0000 (11:11 +0300)] 
lib-ssl-iostream: Copy key password correctly

OpenSSL failed to decrypt key because the password context
was copied instead of the password.

Broken in e98de01b564

5 years agoauth: policy - Fix crash with auth_policy_check_after_auth=no and delay_until
Timo Sirainen [Sat, 25 Apr 2020 09:30:50 +0000 (12:30 +0300)] 
auth: policy - Fix crash with auth_policy_check_after_auth=no and delay_until

The auth policy lookup context must not be allocated from stack, because it
is used in a timeout created by delay_until.

Fixes:
Panic: file auth-request.c: line 292 (auth_request_success_continue): assertion failed: (request->state == AUTH_REQUEST_STATE_MECH_CONTINUE)

5 years agodoveadm: Cork the print ostream immediately after creating
Timo Sirainen [Tue, 14 Apr 2020 13:56:15 +0000 (16:56 +0300)] 
doveadm: Cork the print ostream immediately after creating

This avoids making many tiny write()s to stdout.

5 years agostats: Rename 'name' to 'metric_name' in metric { } blocks
Josef 'Jeff' Sipek [Tue, 21 Apr 2020 17:26:06 +0000 (13:26 -0400)] 
stats: Rename 'name' to 'metric_name' in metric { } blocks

There was a decent amount of confusion about what what the 'name' setting
meant.  In short,

metric foo {
...
}

was equivalent to:

metric {
name = foo
...
}

Unfortunately, this was often misunderstood as "the name of the *event* we
are interested in".  To avoid this confusion, we rename the setting to
'metric_name'.  So, from now on, if you want to specify the name inside the
metric block (instead of before the '{'), you must use:

metric {
metric_name = fo
...
}

5 years agolib-master: master_service_ssl_settings_get() - assert that SSL settings actually...
Timo Sirainen [Wed, 20 Feb 2019 12:04:04 +0000 (14:04 +0200)] 
lib-master: master_service_ssl_settings_get() - assert that SSL settings actually exist

5 years agolib-http: test-http-client-errors - Add tests for retrying requests with payload.
Stephan Bosch [Fri, 24 Apr 2020 22:25:40 +0000 (00:25 +0200)] 
lib-http: test-http-client-errors - Add tests for retrying requests with payload.

5 years agolib-http: test-http-client-errors - Add support for server connection init/deinit...
Stephan Bosch [Fri, 24 Apr 2020 22:25:07 +0000 (00:25 +0200)] 
lib-http: test-http-client-errors - Add support for server connection init/deinit functions.

5 years agolib-http: test-http-payload - Add support for testing with small TCP socket buffers.
Stephan Bosch [Thu, 23 Apr 2020 11:08:08 +0000 (13:08 +0200)] 
lib-http: test-http-payload - Add support for testing with small TCP socket buffers.

5 years agolib-http: test-http-payload - Initialize common client and server settings at one...
Stephan Bosch [Thu, 23 Apr 2020 11:03:37 +0000 (13:03 +0200)] 
lib-http: test-http-payload - Initialize common client and server settings at one place.

5 years agolib-http: http-server-connection - Return 0 from flush callback when there is more...
Stephan Bosch [Thu, 23 Apr 2020 21:41:49 +0000 (23:41 +0200)] 
lib-http: http-server-connection - Return 0 from flush callback when there is more payload to be sent.

5 years agolib-http: http-server-response - Make return value of http_server_response_send*...
Stephan Bosch [Fri, 24 Apr 2020 20:36:15 +0000 (22:36 +0200)] 
lib-http: http-server-response - Make return value of http_server_response_send*() indicate whether all is sent.

5 years agolib-http: http-server-ostream - Handle finished request as a separate event.
Stephan Bosch [Thu, 23 Apr 2020 13:21:06 +0000 (15:21 +0200)] 
lib-http: http-server-ostream - Handle finished request as a separate event.

While waiting in the flush ioloop, the request will not be destroyed, in which
case the ioloop will potentially never end. This is fixed by notifying the
wrapper output stream about the parent output stream going away, which
interrupts the ioloop in the process.

5 years agolib-http: http-server-ostream - Make sure request payload input stream is destroyed...
Stephan Bosch [Thu, 23 Apr 2020 13:18:53 +0000 (15:18 +0200)] 
lib-http: http-server-ostream - Make sure request payload input stream is destroyed before blocking.

5 years agolib-http: http-server-response - Fix sending payload input streams that are seeked...
Stephan Bosch [Thu, 31 May 2018 18:56:53 +0000 (20:56 +0200)] 
lib-http: http-server-response - Fix sending payload input streams that are seeked beyond 0.

5 years agolib-http: http-client-request - Properly reset payload state upon retry/redirect.
Stephan Bosch [Fri, 24 Apr 2020 21:12:51 +0000 (23:12 +0200)] 
lib-http: http-client-request - Properly reset payload state upon retry/redirect.

5 years agolib-http: http-client-request - Put shared code from http_client_request_resubmit...
Stephan Bosch [Fri, 24 Apr 2020 21:02:28 +0000 (23:02 +0200)] 
lib-http: http-client-request - Put shared code from http_client_request_resubmit/redirect() in new function.

5 years agolib-http: http-client-connection - Return 0 from flush callback when there is more...
Stephan Bosch [Fri, 24 Apr 2020 23:32:11 +0000 (01:32 +0200)] 
lib-http: http-client-connection - Return 0 from flush callback when there is more payload to be sent.

5 years agolib-http: http-client-connection - Set output flush pending when http_client_request_...
Stephan Bosch [Sat, 25 Apr 2020 15:55:56 +0000 (17:55 +0200)] 
lib-http: http-client-connection - Set output flush pending when http_client_request_send() returns 0.

5 years agolib-http: http-client-request - Make return value of http_client_request_send*()...
Stephan Bosch [Fri, 24 Apr 2020 23:31:14 +0000 (01:31 +0200)] 
lib-http: http-client-request - Make return value of http_client_request_send*() indicate whether all is sent.

5 years agolib-http: http-client-connection - Remove useless cork/uncork from http_client_connec...
Stephan Bosch [Sat, 25 Apr 2020 15:43:11 +0000 (17:43 +0200)] 
lib-http: http-client-connection - Remove useless cork/uncork from http_client_connection_continue_request().

5 years agolib-http: http-client-connection - Fix race condition between finishing output stream...
Stephan Bosch [Fri, 24 Apr 2020 20:26:26 +0000 (22:26 +0200)] 
lib-http: http-client-connection - Fix race condition between finishing output stream and response.

5 years agolib-http: http-client-request - Fix sending payload input streams that are seeked...
Stephan Bosch [Thu, 31 May 2018 18:57:41 +0000 (20:57 +0200)] 
lib-http: http-client-request - Fix sending payload input streams that are seeked beyond 0.

5 years agolib: ostream-wrapper - Allow parent output being closed in wrapper_ostream_continue().
Stephan Bosch [Thu, 23 Apr 2020 13:16:03 +0000 (15:16 +0200)] 
lib: ostream-wrapper - Allow parent output being closed in wrapper_ostream_continue().

This happens when wrapper_ostream_output_destroyed() is called while waiting in
flush wait loop.

5 years agolib: ostream-wrapper - Properly manage parent output events for blocking operation.
Stephan Bosch [Thu, 23 Apr 2020 09:36:30 +0000 (11:36 +0200)] 
lib: ostream-wrapper - Properly manage parent output events for blocking operation.

The problem was exposed by a panic occurring in src/lib-http/test-http-payload unit test:

Panic: file ostream-wrapper.c: line 291 (wrapper_ostream_flush_wait): assertion failed: (io_loop_have_ios(ioloop) || io_loop_have_immediate_timeouts(ioloop))

5 years agolib-http: Reformat test-http-client-errors.c.
Stephan Bosch [Mon, 6 Apr 2020 21:26:36 +0000 (23:26 +0200)] 
lib-http: Reformat test-http-client-errors.c.

5 years agolib-http: Reformat test-http-payload.c.
Stephan Bosch [Wed, 4 Apr 2018 11:27:53 +0000 (13:27 +0200)] 
lib-http: Reformat test-http-payload.c.

5 years agolib-http: Reformat http-client-request.c.
Stephan Bosch [Tue, 20 Mar 2018 19:59:32 +0000 (20:59 +0100)] 
lib-http: Reformat http-client-request.c.

5 years agolib-ssl-iostream: Add missing set name to ssl_proxy_ctx_get_pkey_ec_curve_name
Aki Tuomi [Mon, 27 Apr 2020 05:08:06 +0000 (08:08 +0300)] 
lib-ssl-iostream: Add missing set name to ssl_proxy_ctx_get_pkey_ec_curve_name

It was forgotten in 934a5e7cdb3105a07e2b1dec5916f4abfb3ee2a1

5 years agodict: Add "user" field to dict_server_* events if it's not empty
Timo Sirainen [Sun, 26 Apr 2020 18:21:21 +0000 (21:21 +0300)] 
dict: Add "user" field to dict_server_* events if it's not empty

5 years agolib-dict: Add "user" field to dict_* events if it's not empty
Timo Sirainen [Sun, 26 Apr 2020 18:17:53 +0000 (21:17 +0300)] 
lib-dict: Add "user" field to dict_* events if it's not empty

5 years agolib-http: test-http-payload - Fix dead assignments.
Stephan Bosch [Mon, 20 Apr 2020 22:16:05 +0000 (00:16 +0200)] 
lib-http: test-http-payload - Fix dead assignments.

Found by Clang scan-build.

5 years agolib-http: test-http-payload - Remove useless and confusing break statements.
Stephan Bosch [Sat, 25 Apr 2020 11:24:59 +0000 (13:24 +0200)] 
lib-http: test-http-payload - Remove useless and confusing break statements.

5 years agolib: ostream-wrapper - Fix dead assignments.
Stephan Bosch [Mon, 20 Apr 2020 22:13:16 +0000 (00:13 +0200)] 
lib: ostream-wrapper - Fix dead assignments.

Found by Clang scan-build.

5 years agoauth: Add tests for some auth-mechanisms
Markus Valentin [Thu, 2 Apr 2020 15:21:22 +0000 (17:21 +0200)] 
auth: Add tests for some auth-mechanisms

This adds tests for many auth-mechanisms and checks for empty
inputs as well as for some broken input combinations.

5 years agoauth: mech-otp: Add mech_otp_deinit and call it in main_deinit
Markus Valentin [Tue, 7 Apr 2020 10:56:46 +0000 (12:56 +0200)] 
auth: mech-otp: Add mech_otp_deinit and call it in main_deinit

This change make sure the otp_lock_table is destroyed on deinit.

5 years agolib-test: test-common: Add test_assert_strcmp_idx macro
Markus Valentin [Wed, 1 Apr 2020 08:42:56 +0000 (10:42 +0200)] 
lib-test: test-common: Add test_assert_strcmp_idx macro

This change allows to use test_assert_strcmp_idx to identify failing
strcmp tests when running a barrage of tests as in loop.

5 years agoauth: Extract private header from mech-digest-md5
Markus Valentin [Thu, 2 Apr 2020 06:38:32 +0000 (08:38 +0200)] 
auth: Extract private header from mech-digest-md5

This is needed to allow testing of the mech-digest-md5 mechanism.

5 years agoauth: Move auths array from static source to extern in header
Markus Valentin [Tue, 31 Mar 2020 12:57:38 +0000 (14:57 +0200)] 
auth: Move auths array from static source to extern in header

This is needed for better testability of auth-mechanisms.

5 years agoauth: Use stats from auth_settings to check wether stats should be used
Markus Valentin [Fri, 27 Mar 2020 12:59:44 +0000 (13:59 +0100)] 
auth: Use stats from auth_settings to check wether stats should be used

This allows to run unit-tests without the need to setup stats.

5 years agoauth: Introduce several callbacks in auth-request-handler
Markus Valentin [Fri, 27 Mar 2020 10:05:22 +0000 (11:05 +0100)] 
auth: Introduce several callbacks in auth-request-handler

This adds three callbacks and their default implementations. This
change is meant to decouple the code for better testability of
auth-mechanims.

5 years agoauth: Extract auth-request-handler struct definition to private header
Markus Valentin [Fri, 27 Mar 2020 10:04:20 +0000 (11:04 +0100)] 
auth: Extract auth-request-handler struct definition to private header

5 years agoauth: Add checks for NULs for different auth-mechanisms
Markus Valentin [Thu, 26 Mar 2020 14:26:54 +0000 (15:26 +0100)] 
auth: Add checks for NULs for different auth-mechanisms

This change adds a check to for NULs in the authentication
input in different auth mechanisms. For this purpose the different
mechanisms use the newly introduced auth_request_fail_on_nuls
function.

5 years agoauth: Fail authentication if username/password contains NULs
Markus Valentin [Wed, 25 Mar 2020 12:48:13 +0000 (13:48 +0100)] 
auth: Fail authentication if username/password contains NULs

In mech-plain and mech-dovecot-token the number of NULs splitting the
fields could have been higher then expected. This change ensures that if
there are more then the expected amount of NULs the authentication will
fail.

5 years agolib-smtp: smtp-client-connection - Try all IPs when connecting to remote host
Aki Tuomi [Mon, 20 Apr 2020 11:57:07 +0000 (14:57 +0300)] 
lib-smtp: smtp-client-connection - Try all IPs when connecting to remote host

5 years agosubmission: Use dns-client
Aki Tuomi [Mon, 20 Apr 2020 19:35:55 +0000 (22:35 +0300)] 
submission: Use dns-client

5 years agolib-master, global: master_service_init_log() - Remove prefix parameter
Timo Sirainen [Mon, 20 Apr 2020 18:45:06 +0000 (21:45 +0300)] 
lib-master, global: master_service_init_log() - Remove prefix parameter

Generate the prefix automatically from the configured service name.

5 years agoglobal: Use master_service_init_log_with_prefix() where explicit prefix is wanted
Timo Sirainen [Mon, 20 Apr 2020 18:41:39 +0000 (21:41 +0300)] 
global: Use master_service_init_log_with_prefix() where explicit prefix is wanted

5 years agolib-master: Add master_service_init_log_with_prefix()
Timo Sirainen [Mon, 20 Apr 2020 18:41:05 +0000 (21:41 +0300)] 
lib-master: Add master_service_init_log_with_prefix()

5 years agoindexer-worker: Add PID to log prefix
Timo Sirainen [Mon, 20 Apr 2020 18:32:13 +0000 (21:32 +0300)] 
indexer-worker: Add PID to log prefix

5 years agoglobal: Use master_service_init_log_with_pid() where possible
Timo Sirainen [Mon, 20 Apr 2020 18:32:32 +0000 (21:32 +0300)] 
global: Use master_service_init_log_with_pid() where possible

5 years agolib-master: Add master_service_init_log_with_pid()
Timo Sirainen [Mon, 20 Apr 2020 18:28:40 +0000 (21:28 +0300)] 
lib-master: Add master_service_init_log_with_pid()

5 years agolib-master: Use service name from master for log prefixes and for service:<name>...
Timo Sirainen [Tue, 14 Apr 2020 16:37:02 +0000 (19:37 +0300)] 
lib-master: Use service name from master for log prefixes and for service:<name> category

This makes it easier to differentiate between different services using the
same executable. Especially auth vs auth-worker events which might
otherwise be the same except for the service:<name> category.

5 years agomaster: Add SERVICE_NAME=<name> environment to child service processes
Timo Sirainen [Tue, 14 Apr 2020 16:26:46 +0000 (19:26 +0300)] 
master: Add SERVICE_NAME=<name> environment to child service processes

5 years agodns: Rename dns_client service to dns-client
Timo Sirainen [Tue, 14 Apr 2020 16:21:43 +0000 (19:21 +0300)] 
dns: Rename dns_client service to dns-client

This makes it consistent with all other services.

This commit also adds it to the old-set-parser, so the old service name
still works but gives a warning.

5 years agolib-ssl-iostream: Include setting name in all key parsing errors
Timo Sirainen [Mon, 20 Apr 2020 16:27:00 +0000 (19:27 +0300)] 
lib-ssl-iostream: Include setting name in all key parsing errors

5 years agolib-ssl-iostream: Improve error messages for ssl_client_ca_* parsing errors
Timo Sirainen [Wed, 15 Apr 2020 12:59:09 +0000 (15:59 +0300)] 
lib-ssl-iostream: Improve error messages for ssl_client_ca_* parsing errors

5 years agolib-ssl-iostream: Split off load_ca_locations()
Timo Sirainen [Wed, 15 Apr 2020 12:57:29 +0000 (15:57 +0300)] 
lib-ssl-iostream: Split off load_ca_locations()

5 years agolib-ssl-iostream: Add setting names to most SSL setting parsing errors
Timo Sirainen [Wed, 15 Apr 2020 12:52:45 +0000 (15:52 +0300)] 
lib-ssl-iostream: Add setting names to most SSL setting parsing errors

5 years agolib-ssl-iostream: If certificate is empty, say it clearly in the error message
Timo Sirainen [Wed, 15 Apr 2020 12:43:12 +0000 (15:43 +0300)] 
lib-ssl-iostream: If certificate is empty, say it clearly in the error message

Instead of "There is no valid PEM certificate" just say
"The certificate is empty".

5 years agolib-master: Fix MASTER_SERVICE_FLAG_USE_SSL_SETTINGS when running standalone
Timo Sirainen [Mon, 20 Apr 2020 15:32:57 +0000 (18:32 +0300)] 
lib-master: Fix MASTER_SERVICE_FLAG_USE_SSL_SETTINGS when running standalone

5 years agolib-master: MASTER_SERVICE_FLAG_USE_SSL_SETTINGS no longer initialized SSL server
Timo Sirainen [Mon, 20 Apr 2020 15:07:58 +0000 (18:07 +0300)] 
lib-master: MASTER_SERVICE_FLAG_USE_SSL_SETTINGS no longer initialized SSL server

5 years ago*-login, lmtp: Enable MASTER_SERVICE_FLAG_HAVE_STARTTLS
Timo Sirainen [Mon, 20 Apr 2020 15:02:21 +0000 (18:02 +0300)] 
*-login, lmtp: Enable MASTER_SERVICE_FLAG_HAVE_STARTTLS

5 years agolib-master: Add MASTER_SERVICE_FLAG_HAVE_STARTTLS
Timo Sirainen [Mon, 20 Apr 2020 15:01:21 +0000 (18:01 +0300)] 
lib-master: Add MASTER_SERVICE_FLAG_HAVE_STARTTLS

5 years agologin-proxy: "Started proxying to ..." - Use uppercase for the first letter
Timo Sirainen [Mon, 20 Apr 2020 11:49:35 +0000 (14:49 +0300)] 
login-proxy: "Started proxying to ..." - Use uppercase for the first letter

Other log messages start uppercased as well.

5 years agologin-proxy: Remove unnecessary "disconnecting" text from log message
Timo Sirainen [Thu, 9 Apr 2020 21:31:41 +0000 (00:31 +0300)] 
login-proxy: Remove unnecessary "disconnecting" text from log message

Add "Disconnected by proxy: " prefix explicitly for the few reasons why
the proxy itself is causing the disconnection.

5 years agologin-proxy: Add ip:port to log prefix and remove them from log messages
Timo Sirainen [Thu, 9 Apr 2020 21:27:40 +0000 (00:27 +0300)] 
login-proxy: Add ip:port to log prefix and remove them from log messages

5 years agologin-proxy: Check for missing host IP address earlier
Timo Sirainen [Thu, 9 Apr 2020 21:10:55 +0000 (00:10 +0300)] 
login-proxy: Check for missing host IP address earlier

Also fail if "hostip" is returned by passdb but it's not a valid IP address.

5 years agologin-proxy: login_proxy_new() - Change host check to assert
Timo Sirainen [Thu, 9 Apr 2020 21:07:04 +0000 (00:07 +0300)] 
login-proxy: login_proxy_new() - Change host check to assert

It's already checked by the only caller.

5 years agologin-proxy: login_proxy_free*() - Add asserts to make sure error always exists when...
Timo Sirainen [Thu, 9 Apr 2020 20:52:01 +0000 (23:52 +0300)] 
login-proxy: login_proxy_free*() - Add asserts to make sure error always exists when needed

Only detached proxies log the error.

5 years agologin-proxy: Remove login_proxy_free_reason/delayed()
Timo Sirainen [Thu, 9 Apr 2020 18:12:25 +0000 (21:12 +0300)] 
login-proxy: Remove login_proxy_free_reason/delayed()

Just use login_proxy_free_full() directly.

5 years agologin-proxy: login_proxy_free_full() - Replace bool delayed with enum
Timo Sirainen [Thu, 9 Apr 2020 18:09:26 +0000 (21:09 +0300)] 
login-proxy: login_proxy_free_full() - Replace bool delayed with enum

5 years agologin-proxy: Add missing space between disconnect reason and "(extra info)"
Timo Sirainen [Thu, 9 Apr 2020 18:07:48 +0000 (21:07 +0300)] 
login-proxy: Add missing space between disconnect reason and "(extra info)"

5 years agologin-proxy: Clarify error messages when disconnecting from server before login is...
Timo Sirainen [Thu, 9 Apr 2020 18:00:30 +0000 (21:00 +0300)] 
login-proxy: Clarify error messages when disconnecting from server before login is finished

5 years agologin-common: client_disconnect() - Log with login_proxy event if it exists
Timo Sirainen [Thu, 9 Apr 2020 21:22:39 +0000 (00:22 +0300)] 
login-common: client_disconnect() - Log with login_proxy event if it exists

5 years ago*-login: Use login_proxy.event for logging
Timo Sirainen [Thu, 9 Apr 2020 20:24:36 +0000 (23:24 +0300)] 
*-login: Use login_proxy.event for logging

This way there's no need to have the "proxy: " or "proxy(user): " prefix.
This also standardizes it to always be "proxy(user): ".

5 years agologin-proxy: Add login_proxy_get_event()
Timo Sirainen [Thu, 9 Apr 2020 20:19:13 +0000 (23:19 +0300)] 
login-proxy: Add login_proxy_get_event()

5 years agologin-proxy: Add event to login_proxy
Timo Sirainen [Thu, 9 Apr 2020 19:57:49 +0000 (22:57 +0300)] 
login-proxy: Add event to login_proxy

5 years agologin-proxy: Split off proxy_check_start()
Timo Sirainen [Thu, 9 Apr 2020 20:15:05 +0000 (23:15 +0300)] 
login-proxy: Split off proxy_check_start()

5 years agologin-proxy: Remove client->refcount > 1 assert
Timo Sirainen [Thu, 9 Apr 2020 20:12:03 +0000 (23:12 +0300)] 
login-proxy: Remove client->refcount > 1 assert

There doesn't seem to be any point in having this assert. Nothing seems
to require that it's over 1.

5 years agologin-proxy: Remove dead code checking if client is destroyed
Timo Sirainen [Thu, 9 Apr 2020 20:08:39 +0000 (23:08 +0300)] 
login-proxy: Remove dead code checking if client is destroyed

The beginning of the function already assert-crashes if client is destroyed
and nothing in the code path can destroy the client.

5 years agologin-common: Replace i_error() with e_error() where possible
Timo Sirainen [Thu, 9 Apr 2020 21:37:34 +0000 (00:37 +0300)] 
login-common: Replace i_error() with e_error() where possible

5 years agologin-common: Remove client_log*() functions
Timo Sirainen [Thu, 9 Apr 2020 19:51:17 +0000 (22:51 +0300)] 
login-common: Remove client_log*() functions

5 years ago*-login: Use e_error() instead of client_log_err()
Timo Sirainen [Thu, 9 Apr 2020 19:50:26 +0000 (22:50 +0300)] 
*-login: Use e_error() instead of client_log_err()