/* Mosh: the mobile shell Copyright 2012 Keith Winstein This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each individual source file, and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than OpenSSL. If you modify file(s) with this exception, you may extend this exception to your version of the file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source files in the program, then also delete it here. */ #include "config.h" #include "version.h" #include #include #include "stmclient.h" #include "crypto.h" #include "locale_utils.h" #include "fatal_assert.h" /* These need to be included last because of conflicting defines. */ /* * stmclient.h includes termios.h, and that will break termio/termios pull in on Solaris. * The solution is to include termio.h also. * But Mac OS X doesn't have termio.h, so this needs a guard. */ #ifdef HAVE_TERMIO_H #include #endif #if defined HAVE_NCURSESW_CURSES_H # include # include #elif defined HAVE_NCURSESW_H # include # include #elif defined HAVE_NCURSES_CURSES_H # include # include #elif defined HAVE_NCURSES_H # include # include #elif defined HAVE_CURSES_H # include # include #else # error "SysV or X/Open-compatible Curses header file required" #endif void usage( const char *argv0 ) { fprintf( stderr, "mosh-client (%s) [build %s]\n", PACKAGE_STRING, BUILD_VERSION ); fprintf( stderr, "Copyright 2012 Keith Winstein \n" ); fprintf( stderr, "License GPLv3+: GNU GPL version 3 or later .\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\n" ); fprintf( stderr, "Usage: %s IP PORT\n %s -c\n", argv0, argv0 ); } void print_colorcount( void ) { /* check colors */ setupterm((char *)0, 1, (int *)0); char colors_name[] = "colors"; int color_val = tigetnum( colors_name ); if ( color_val == -2 ) { fprintf( stderr, "Invalid terminfo numeric capability: %s\n", colors_name ); } printf( "%d\n", color_val ); } #ifdef NACL int mosh_main( int argc, char *argv[] ) #else int main( int argc, char *argv[] ) #endif { /* For security, make sure we don't dump core */ Crypto::disable_dumping_core(); /* Detect edge case */ fatal_assert( argc > 0 ); /* Get arguments */ int opt; while ( (opt = getopt( argc, argv, "c" )) != -1 ) { switch ( opt ) { case 'c': print_colorcount(); exit( 0 ); break; default: usage( argv[ 0 ] ); exit( 1 ); break; } } char *ip, *desired_port; if ( argc - optind != 2 ) { usage( argv[ 0 ] ); exit( 1 ); } ip = argv[ optind ]; desired_port = argv[ optind + 1 ]; /* Sanity-check arguments */ if ( desired_port && ( strspn( desired_port, "0123456789" ) != strlen( desired_port ) ) ) { fprintf( stderr, "%s: Bad UDP port (%s)\n\n", argv[ 0 ], desired_port ); usage( argv[ 0 ] ); exit( 1 ); } /* Read key from environment */ char *env_key = getenv( "MOSH_KEY" ); if ( env_key == NULL ) { fprintf( stderr, "MOSH_KEY environment variable not found.\n" ); exit( 1 ); } /* Read prediction preference */ char *predict_mode = getenv( "MOSH_PREDICTION_DISPLAY" ); /* can be NULL */ char *key = strdup( env_key ); if ( key == NULL ) { perror( "strdup" ); exit( 1 ); } if ( unsetenv( "MOSH_KEY" ) < 0 ) { perror( "unsetenv" ); exit( 1 ); } /* Adopt native locale */ set_native_locale(); try { STMClient client( ip, desired_port, key, predict_mode ); client.init(); try { client.main(); } catch ( ... ) { client.shutdown(); throw; } client.shutdown(); } catch ( const Network::NetworkException& e ) { fprintf( stderr, "Network exception: %s\r\n", e.what() ); } catch ( const Crypto::CryptoException& e ) { fprintf( stderr, "Crypto exception: %s\r\n", e.what() ); } catch ( const std::string& s ) { fprintf( stderr, "Error: %s\r\n", s.c_str() ); } printf( "\n[mosh is exiting.]\n" ); free( key ); return 0; }