summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2017-10-25 00:17:08 +0000
committerDamien Miller <djm@mindrot.org>2017-10-25 12:26:13 +1100
commit35eb33fb957979e3fcbe6ea0eaee8bf4a217421a (patch)
tree6ff628a3a477e2e2c7c4757a74b06ab29d3430a2 /packet.c
parentacf559e1cffbd1d6167cc1742729fc381069f06b (diff)
upstream commit
add sshd_config RDomain keyword to place sshd and the subsequent user session (including the shell and any TCP/IP forwardings) into the specified rdomain(4) ok markus@ Upstream-ID: be2358e86346b5cacf20d90f59f980b87d1af0f5
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/packet.c b/packet.c
index 85638cb2a..448da0964 100644
--- a/packet.c
+++ b/packet.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: packet.c,v 1.265 2017/10/13 21:13:54 djm Exp $ */ 1/* $OpenBSD: packet.c,v 1.266 2017/10/25 00:17:08 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -557,6 +557,18 @@ ssh_local_port(struct ssh *ssh)
557 return ssh->local_port; 557 return ssh->local_port;
558} 558}
559 559
560/* Returns the routing domain of the input socket, or NULL if unavailable */
561const char *
562ssh_packet_rdomain_in(struct ssh *ssh)
563{
564 if (ssh->rdomain_in != NULL)
565 return ssh->rdomain_in;
566 if (!ssh_packet_connection_is_on_socket(ssh))
567 return NULL;
568 ssh->rdomain_in = get_rdomain(ssh->state->connection_in);
569 return ssh->rdomain_in;
570}
571
560/* Closes the connection and clears and frees internal data structures. */ 572/* Closes the connection and clears and frees internal data structures. */
561 573
562static void 574static void