Skip to content
Snippets Groups Projects

Add support for AF_INET(6) sockets via --socket-address=IP:PORT

Open sistason requested to merge inet_support into master
1 file
+ 15
6
Compare changes
  • Side-by-side
  • Inline
+ 15
6
@@ -235,15 +235,16 @@ class StdoutFilter(logging.Filter):
@@ -235,15 +235,16 @@ class StdoutFilter(logging.Filter):
return record.levelno <= logging.INFO
return record.levelno <= logging.INFO
@click.command(help='Socketmap proxy for integrating Postfix and other compatible MTAs with uffd SSO. Supports virtual alias lookups (request name "virtual").')
@click.command(help='Socketmap proxy for integrating Postfix and other compatible MTAs with uffd SSO. Supports virtual alias lookups (request name "virtual").')
@click.option('--socket-path', type=click.Path(), help='Path for UNIX domain socket')
@click.option('--socket-path', type=click.Path(), help='Path for UNIX domain socket (alternative to --socket-fd/--socket-address)')
@click.option('--socket-fd', type=int, help='Use fd number as server socket (alternative to --socket-path)')
@click.option('--socket-fd', type=int, help='Use fd number as server socket')
 
@click.option('--socket-address', type=str, help='Use IP:PORT as server socket TCP address (alternative to --socket-path/--socket-fd)')
@click.option('--api-url', required=True, help='Uffd base URL without API prefix or trailing slash (e.g. https://example.com)')
@click.option('--api-url', required=True, help='Uffd base URL without API prefix or trailing slash (e.g. https://example.com)')
@click.option('--api-user', required=True, help='API user/client id')
@click.option('--api-user', required=True, help='API user/client id')
@click.option('--api-secret', required=True, help='API secret, do not set this on the command-line, use environment variable SERVER_API_SECRET instead')
@click.option('--api-secret', required=True, help='API secret, do not set this on the command-line, use environment variable SERVER_API_SECRET instead')
def main(socket_path, socket_fd, api_url, api_user, api_secret):
def main(socket_path, socket_fd, socket_address, api_url, api_user, api_secret):
if (socket_path is None and socket_fd is None) or \
if (len([arg for arg in [socket_path, socket_fd, socket_address] if arg is None]) == 3 or
(socket_path is not None and socket_fd is not None):
len([arg for arg in [socket_path, socket_fd, socket_address] if arg is not None]) != 1):
raise click.ClickException('Either --socket-path or --socket-fd must be specified')
raise click.ClickException('Either --socket-path, --socket-fd or --socket-address must be specified')
stdout_handler = logging.StreamHandler(sys.stdout)
stdout_handler = logging.StreamHandler(sys.stdout)
stdout_handler.setLevel(logging.DEBUG)
stdout_handler.setLevel(logging.DEBUG)
@@ -259,6 +260,14 @@ def main(socket_path, socket_fd, api_url, api_user, api_secret):
@@ -259,6 +260,14 @@ def main(socket_path, socket_fd, api_url, api_user, api_secret):
if socket_path is not None:
if socket_path is not None:
cleanup_unix_socket(socket_path)
cleanup_unix_socket(socket_path)
socketserver.ThreadingUnixStreamServer(socket_path, RequestHandler).serve_forever()
socketserver.ThreadingUnixStreamServer(socket_path, RequestHandler).serve_forever()
 
elif socket_address is not None:
 
address, port = socket_address.rsplit(':', 1)
 
if ':' in address:
 
class ThreadingTCP6Server(socketserver.ThreadingTCPServer):
 
address_family = socket.AF_INET6
 
ThreadingTCP6Server((address, int(port)), RequestHandler).serve_forever()
 
else:
 
socketserver.ThreadingTCPServer((address, int(port)), RequestHandler).serve_forever()
else:
else:
ThreadingFilenoUnixStreamServer(socket_fd, RequestHandler).serve_forever()
ThreadingFilenoUnixStreamServer(socket_fd, RequestHandler).serve_forever()
Loading