Skip to content

Commit

Permalink
server: stay foreground (mobile-shell#1108)
Browse files Browse the repository at this point in the history
  • Loading branch information
msva committed Jun 17, 2024
1 parent 5ab7159 commit bf8b6fc
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 18 deletions.
5 changes: 5 additions & 0 deletions man/mosh-server.1
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ mosh-server \- server-side helper for mosh
.SH SYNOPSIS
.B mosh-server
new
[\-D]
[\-s]
[\-v]
[\-i \fIIP\fP]
Expand Down Expand Up @@ -54,6 +55,10 @@ and the client's current IP address.
The argument "new" must be first on the command line to use
command-line options.

.TP
.B \-D
stay in the foreground instead of forking into the background

.TP
.B \-s
bind to the local interface used for an incoming SSH connection, given
Expand Down
51 changes: 33 additions & 18 deletions src/frontend/mosh-server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ static int run_server( const char* desired_ip,
const int colors,
unsigned int verbose,
bool with_motd,
bool with_agent_fwd );
bool foreground,
bool with_agent_fwd
);

static void print_version( FILE* file )
{
Expand All @@ -129,7 +131,7 @@ static void print_version( FILE* file )
static void print_usage( FILE* stream, const char* argv0 )
{
fprintf( stream,
"Usage: %s new [-s] [-v] [-i LOCALADDR] [-p PORT[:PORT2]] [-c COLORS] [-l NAME=VALUE] [-- COMMAND...]\n",
"Usage: %s new [-D] [-s] [-v] [-i LOCALADDR] [-p PORT[:PORT2]] [-c COLORS] [-l NAME=VALUE] [-- COMMAND...]\n",
argv0 );
}

Expand Down Expand Up @@ -193,6 +195,7 @@ int main( int argc, char* argv[] )
std::string command_path;
char** command_argv = NULL;
int colors = 0;
bool foreground = false; /* stay in the foreground, don't fork into background */
bool with_agent_fwd = false;
unsigned int verbose = 0; /* don't close stdin/stdout/stderr */
/* Will cause mosh-server not to correctly detach on old versions of sshd. */
Expand Down Expand Up @@ -221,7 +224,7 @@ int main( int argc, char* argv[] )
if ( ( argc >= 2 ) && ( strcmp( argv[1], "new" ) == 0 ) ) {
/* new option syntax */
int opt;
while ( ( opt = getopt( argc - 1, argv + 1, "@:i:p:c:svl:A" ) ) != -1 ) {
while ( ( opt = getopt( argc - 1, argv + 1, "@:i:p:c:svl:AD" ) ) != -1 ) {
switch ( opt ) {
/*
* This undocumented option does nothing but eat its argument.
Expand Down Expand Up @@ -262,6 +265,9 @@ int main( int argc, char* argv[] )
case 'l':
locale_vars.push_back( std::string( optarg ) );
break;
case 'D':
foreground = true;
break;
case 'A':
with_agent_fwd = true;
break;
Expand Down Expand Up @@ -380,7 +386,7 @@ int main( int argc, char* argv[] )
}

try {
return run_server( desired_ip, desired_port, command_path, command_argv, colors, verbose, with_motd, with_agent_fwd );
return run_server( desired_ip, desired_port, command_path, command_argv, colors, verbose, with_motd, foreground, with_agent_fwd );
} catch ( const Network::NetworkException& e ) {
fprintf( stderr, "Network exception: %s\n", e.what() );
return 1;
Expand All @@ -397,7 +403,9 @@ static int run_server( const char* desired_ip,
const int colors,
unsigned int verbose,
bool with_motd,
bool with_agent_fwd )
bool foreground,
bool with_agent_fwd
)
{
/* get network idle timeout */
long network_timeout = 0;
Expand Down Expand Up @@ -466,35 +474,42 @@ static int run_server( const char* desired_ip,
fatal_assert( 0 == sigaction( SIGHUP, &sa, NULL ) );
fatal_assert( 0 == sigaction( SIGPIPE, &sa, NULL ) );

/* detach from terminal */
fflush( NULL );
pid_t the_pid = fork();
if ( the_pid < 0 ) {
pid_t the_pid = -1;
if ( !foreground )
/* detach from terminal */
fflush( NULL );
the_pid = fork();
}
if ( the_pid < 0 && !foreground ) {
perror( "fork" );
} else if ( the_pid > 0 ) {
} else if ( the_pid > 0 || foreground ) {
fputs( "\nmosh-server (" PACKAGE_STRING ") [build " BUILD_VERSION "]\n"
"Copyright 2012 Keith Winstein <[email protected]>\n"
"License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n\n",
stderr );

fprintf( stderr, "[mosh-server detached, pid = %d]\n", static_cast<int>( the_pid ) );
if ( !foreground ) {
fprintf( stderr, "[mosh-server detached, pid = %d]\n", static_cast<int>( the_pid ) );
}
#ifndef HAVE_IUTF8
fputs( "\nWarning: termios IUTF8 flag not defined.\n"
"Character-erase of multibyte character sequence\n"
"probably does not work properly on this platform.\n",
stderr );
#endif /* HAVE_IUTF8 */

fflush( NULL );
if ( isatty( STDOUT_FILENO ) ) {
tcdrain( STDOUT_FILENO );
}
if ( isatty( STDERR_FILENO ) ) {
tcdrain( STDERR_FILENO );
if ( !foreground ) {
fflush( NULL );
if ( isatty( STDOUT_FILENO ) ) {
tcdrain( STDOUT_FILENO );
}
if ( isatty( STDERR_FILENO ) ) {
tcdrain( STDERR_FILENO );
}
exit( 0 );
}
exit( 0 );
}

/* initialize agent listener if requested */
Expand Down

0 comments on commit bf8b6fc

Please sign in to comment.