2020-05-16 22:05:13 +03:00
/*
* Copyright ( c ) 2020 , The SerenityOS developers .
* All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions are met :
*
* 1. Redistributions of source code must retain the above copyright notice , this
* list of conditions and the following disclaimer .
*
* 2. Redistributions in binary form must reproduce the above copyright notice ,
* this list of conditions and the following disclaimer in the documentation
* and / or other materials provided with the distribution .
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS " AS IS "
* AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT , INDIRECT , INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL
* DAMAGES ( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES ; LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY ,
* OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*/
# include "Shell.h"
# include "Execution.h"
2020-09-16 03:43:04 +03:00
# include "Formatter.h"
2020-05-16 22:05:13 +03:00
# include <AK/Function.h>
2020-05-26 14:52:44 +03:00
# include <AK/LexicalPath.h>
2020-05-16 22:05:13 +03:00
# include <AK/ScopeGuard.h>
# include <AK/StringBuilder.h>
2020-10-15 21:46:52 +03:00
# include <AK/TemporaryChange.h>
2020-05-16 22:05:13 +03:00
# include <LibCore/ArgsParser.h>
# include <LibCore/DirIterator.h>
# include <LibCore/Event.h>
# include <LibCore/EventLoop.h>
# include <LibCore/File.h>
# include <LibLine/Editor.h>
# include <errno.h>
# include <fcntl.h>
2020-08-11 14:24:16 +03:00
# include <inttypes.h>
2020-05-16 22:05:13 +03:00
# include <pwd.h>
# include <signal.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <sys/mman.h>
# include <sys/stat.h>
# include <sys/utsname.h>
2020-09-23 08:36:30 +03:00
# include <sys/wait.h>
2020-05-16 22:05:13 +03:00
# include <termios.h>
# include <unistd.h>
static bool s_disable_hyperlinks = false ;
2020-07-14 21:52:52 +03:00
extern char * * environ ;
2020-05-16 22:05:13 +03:00
//#define SH_DEBUG
2020-10-01 17:43:01 +03:00
namespace Shell {
2020-10-01 12:11:31 +03:00
// FIXME: This should eventually be removed once we've established that
// waitpid() is not passed the same job twice.
# ifdef __serenity__
# define ENSURE_WAITID_ONCE
# endif
2020-09-23 08:36:30 +03:00
void Shell : : setup_signals ( )
{
Core : : EventLoop : : register_signal ( SIGCHLD , [ this ] ( int ) {
2020-09-30 13:35:12 +03:00
# ifdef SH_DEBUG
dbg ( ) < < " SIGCHLD! " ;
2020-09-23 08:36:30 +03:00
# endif
2020-09-30 13:35:12 +03:00
notify_child_event ( ) ;
2020-09-23 08:36:30 +03:00
} ) ;
Core : : EventLoop : : register_signal ( SIGTSTP , [ this ] ( auto ) {
auto job = current_job ( ) ;
kill_job ( job , SIGTSTP ) ;
if ( job ) {
job - > set_is_suspended ( true ) ;
job - > unblock ( ) ;
}
} ) ;
}
2020-05-16 22:05:13 +03:00
void Shell : : print_path ( const String & path )
{
2020-08-05 08:30:01 +03:00
if ( s_disable_hyperlinks | | ! m_is_interactive ) {
2020-05-16 22:05:13 +03:00
printf ( " %s " , path . characters ( ) ) ;
return ;
}
printf ( " \033 ]8;;file://%s%s \033 \\ %s \033 ]8;; \033 \\ " , hostname , path . characters ( ) , path . characters ( ) ) ;
}
String Shell : : prompt ( ) const
{
auto build_prompt = [ & ] ( ) - > String {
auto * ps1 = getenv ( " PROMPT " ) ;
if ( ! ps1 ) {
if ( uid = = 0 )
return " # " ;
StringBuilder builder ;
builder . appendf ( " \033 ]0;%s@%s:%s \007 " , username . characters ( ) , hostname , cwd . characters ( ) ) ;
builder . appendf ( " \033 [31;1m%s \033 [0m@ \033 [37;1m%s \033 [0m: \033 [32;1m%s \033 [0m$> " , username . characters ( ) , hostname , cwd . characters ( ) ) ;
return builder . to_string ( ) ;
}
StringBuilder builder ;
for ( char * ptr = ps1 ; * ptr ; + + ptr ) {
if ( * ptr = = ' \\ ' ) {
+ + ptr ;
if ( ! * ptr )
break ;
switch ( * ptr ) {
case ' X ' :
builder . append ( " \033 ]0; " ) ;
break ;
case ' a ' :
builder . append ( 0x07 ) ;
break ;
case ' e ' :
builder . append ( 0x1b ) ;
break ;
case ' u ' :
builder . append ( username ) ;
break ;
case ' h ' :
builder . append ( hostname ) ;
break ;
case ' w ' : {
String home_path = getenv ( " HOME " ) ;
if ( cwd . starts_with ( home_path ) ) {
builder . append ( ' ~ ' ) ;
builder . append ( cwd . substring_view ( home_path . length ( ) , cwd . length ( ) - home_path . length ( ) ) ) ;
} else {
builder . append ( cwd ) ;
}
break ;
}
case ' p ' :
builder . append ( uid = = 0 ? ' # ' : ' $ ' ) ;
break ;
}
continue ;
}
builder . append ( * ptr ) ;
}
return builder . to_string ( ) ;
} ;
2020-06-17 16:35:06 +03:00
return build_prompt ( ) ;
2020-05-16 22:05:13 +03:00
}
String Shell : : expand_tilde ( const String & expression )
{
ASSERT ( expression . starts_with ( ' ~ ' ) ) ;
StringBuilder login_name ;
size_t first_slash_index = expression . length ( ) ;
for ( size_t i = 1 ; i < expression . length ( ) ; + + i ) {
if ( expression [ i ] = = ' / ' ) {
first_slash_index = i ;
break ;
}
login_name . append ( expression [ i ] ) ;
}
StringBuilder path ;
for ( size_t i = first_slash_index ; i < expression . length ( ) ; + + i )
path . append ( expression [ i ] ) ;
if ( login_name . is_empty ( ) ) {
const char * home = getenv ( " HOME " ) ;
if ( ! home ) {
auto passwd = getpwuid ( getuid ( ) ) ;
ASSERT ( passwd & & passwd - > pw_dir ) ;
return String : : format ( " %s/%s " , passwd - > pw_dir , path . to_string ( ) . characters ( ) ) ;
}
return String : : format ( " %s/%s " , home , path . to_string ( ) . characters ( ) ) ;
}
auto passwd = getpwnam ( login_name . to_string ( ) . characters ( ) ) ;
if ( ! passwd )
return expression ;
ASSERT ( passwd - > pw_dir ) ;
return String : : format ( " %s/%s " , passwd - > pw_dir , path . to_string ( ) . characters ( ) ) ;
}
bool Shell : : is_glob ( const StringView & s )
{
for ( size_t i = 0 ; i < s . length ( ) ; i + + ) {
char c = s . characters_without_null_termination ( ) [ i ] ;
if ( c = = ' * ' | | c = = ' ? ' )
return true ;
}
return false ;
}
Vector < StringView > Shell : : split_path ( const StringView & path )
{
Vector < StringView > parts ;
size_t substart = 0 ;
for ( size_t i = 0 ; i < path . length ( ) ; i + + ) {
2020-06-17 16:35:06 +03:00
char ch = path [ i ] ;
2020-05-16 22:05:13 +03:00
if ( ch ! = ' / ' )
continue ;
size_t sublen = i - substart ;
if ( sublen ! = 0 )
parts . append ( path . substring_view ( substart , sublen ) ) ;
substart = i + 1 ;
}
size_t taillen = path . length ( ) - substart ;
if ( taillen ! = 0 )
parts . append ( path . substring_view ( substart , taillen ) ) ;
return parts ;
}
2020-06-17 16:35:06 +03:00
Vector < String > Shell : : expand_globs ( const StringView & path , StringView base )
2020-05-16 22:05:13 +03:00
{
2020-09-19 00:48:44 +03:00
auto explicitly_set_base = false ;
if ( path . starts_with ( ' / ' ) ) {
2020-06-17 16:35:06 +03:00
base = " / " ;
2020-09-19 00:48:44 +03:00
explicitly_set_base = true ;
}
2020-05-16 22:05:13 +03:00
auto parts = split_path ( path ) ;
2020-06-17 16:35:06 +03:00
String base_string = base ;
struct stat statbuf ;
if ( lstat ( base_string . characters ( ) , & statbuf ) < 0 ) {
perror ( " lstat " ) ;
return { } ;
}
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
StringBuilder resolved_base_path_builder ;
resolved_base_path_builder . append ( Core : : File : : real_path_for ( base ) ) ;
if ( S_ISDIR ( statbuf . st_mode ) )
resolved_base_path_builder . append ( ' / ' ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
auto resolved_base = resolved_base_path_builder . string_view ( ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
auto results = expand_globs ( move ( parts ) , resolved_base ) ;
2020-05-16 22:05:13 +03:00
2020-09-19 00:48:44 +03:00
if ( explicitly_set_base & & base = = " / " )
resolved_base = resolved_base . substring_view ( 1 , resolved_base . length ( ) - 1 ) ;
2020-06-17 16:35:06 +03:00
for ( auto & entry : results ) {
entry = entry . substring ( resolved_base . length ( ) , entry . length ( ) - resolved_base . length ( ) ) ;
if ( entry . is_empty ( ) )
entry = " . " ;
2020-05-16 22:05:13 +03:00
}
2020-06-17 16:35:06 +03:00
// Make the output predictable and nice.
quick_sort ( results ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
return results ;
2020-05-16 22:05:13 +03:00
}
2020-06-17 16:35:06 +03:00
Vector < String > Shell : : expand_globs ( Vector < StringView > path_segments , const StringView & base )
2020-05-16 22:05:13 +03:00
{
2020-06-17 16:35:06 +03:00
if ( path_segments . is_empty ( ) ) {
String base_str = base ;
if ( access ( base_str . characters ( ) , F_OK ) = = 0 )
return { move ( base_str ) } ;
return { } ;
2020-05-16 22:05:13 +03:00
}
2020-06-17 16:35:06 +03:00
auto first_segment = path_segments . take_first ( ) ;
if ( is_glob ( first_segment ) ) {
Vector < String > result ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
Core : : DirIterator di ( base , Core : : DirIterator : : SkipParentAndBaseDir ) ;
if ( di . has_error ( ) )
return { } ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
while ( di . has_next ( ) ) {
String path = di . next_path ( ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
// Dotfiles have to be explicitly requested
if ( path [ 0 ] = = ' . ' & & first_segment [ 0 ] ! = ' . ' )
continue ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
if ( path . matches ( first_segment , CaseSensitivity : : CaseSensitive ) ) {
StringBuilder builder ;
builder . append ( base ) ;
if ( ! base . ends_with ( ' / ' ) )
builder . append ( ' / ' ) ;
builder . append ( path ) ;
result . append ( expand_globs ( path_segments , builder . string_view ( ) ) ) ;
}
}
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
return result ;
} else {
StringBuilder builder ;
builder . append ( base ) ;
if ( ! base . ends_with ( ' / ' ) )
builder . append ( ' / ' ) ;
builder . append ( first_segment ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
return expand_globs ( move ( path_segments ) , builder . string_view ( ) ) ;
}
2020-05-16 22:05:13 +03:00
}
2020-07-13 08:00:09 +03:00
Vector < AST : : Command > Shell : : expand_aliases ( Vector < AST : : Command > initial_commands )
{
Vector < AST : : Command > commands ;
Function < void ( AST : : Command & ) > resolve_aliases_and_append = [ & ] ( auto & command ) {
if ( ! command . argv . is_empty ( ) ) {
auto alias = resolve_alias ( command . argv [ 0 ] ) ;
if ( ! alias . is_null ( ) ) {
auto argv0 = command . argv . take_first ( ) ;
auto subcommand_ast = Parser { alias } . parse ( ) ;
if ( subcommand_ast ) {
while ( subcommand_ast - > is_execute ( ) ) {
auto * ast = static_cast < AST : : Execute * > ( subcommand_ast . ptr ( ) ) ;
subcommand_ast = ast - > command ( ) ;
}
2020-09-26 23:06:27 +03:00
auto subcommand_nonnull = subcommand_ast . release_nonnull ( ) ;
NonnullRefPtr < AST : : Node > substitute = adopt ( * new AST : : Join ( subcommand_nonnull - > position ( ) ,
subcommand_nonnull ,
adopt ( * new AST : : CommandLiteral ( subcommand_nonnull - > position ( ) , command ) ) ) ) ;
auto res = substitute - > run ( * this ) ;
for ( auto & subst_command : res - > resolve_as_commands ( * this ) ) {
2020-07-13 08:00:09 +03:00
if ( ! subst_command . argv . is_empty ( ) & & subst_command . argv . first ( ) = = argv0 ) // Disallow an alias resolving to itself.
commands . append ( subst_command ) ;
else
resolve_aliases_and_append ( subst_command ) ;
}
} else {
commands . append ( command ) ;
}
} else {
commands . append ( command ) ;
}
} else {
commands . append ( command ) ;
}
} ;
for ( auto & command : initial_commands )
resolve_aliases_and_append ( command ) ;
return commands ;
}
2020-06-17 16:35:06 +03:00
String Shell : : resolve_path ( String path ) const
2020-05-16 22:05:13 +03:00
{
2020-06-17 16:35:06 +03:00
if ( ! path . starts_with ( ' / ' ) )
path = String : : format ( " %s/%s " , cwd . characters ( ) , path . characters ( ) ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
return Core : : File : : real_path_for ( path ) ;
}
2020-05-16 22:05:13 +03:00
2020-07-12 00:12:46 +03:00
Shell : : LocalFrame * Shell : : find_frame_containing_local_variable ( const String & name )
{
for ( auto & frame : m_local_frames ) {
if ( frame . local_variables . contains ( name ) )
return & frame ;
}
return nullptr ;
}
2020-06-17 16:35:06 +03:00
RefPtr < AST : : Value > Shell : : lookup_local_variable ( const String & name )
{
2020-07-12 00:12:46 +03:00
if ( auto * frame = find_frame_containing_local_variable ( name ) )
return frame - > local_variables . get ( name ) . value ( ) ;
2020-09-13 12:29:34 +03:00
if ( auto index = name . to_uint ( ) ; index . has_value ( ) )
return get_argument ( index . value ( ) ) ;
return nullptr ;
}
RefPtr < AST : : Value > Shell : : get_argument ( size_t index )
{
if ( index = = 0 )
return adopt ( * new AST : : StringValue ( current_script ) ) ;
- - index ;
if ( auto argv = lookup_local_variable ( " ARGV " ) ) {
if ( argv - > is_list_without_resolution ( ) ) {
AST : : ListValue * list = static_cast < AST : : ListValue * > ( argv . ptr ( ) ) ;
if ( list - > values ( ) . size ( ) < = index )
return nullptr ;
return list - > values ( ) . at ( index ) ;
}
if ( index ! = 0 )
return nullptr ;
return argv ;
}
2020-07-12 00:12:46 +03:00
return nullptr ;
2020-06-17 16:35:06 +03:00
}
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
String Shell : : local_variable_or ( const String & name , const String & replacement )
{
auto value = lookup_local_variable ( name ) ;
if ( value ) {
StringBuilder builder ;
builder . join ( " " , value - > resolve_as_list ( * this ) ) ;
return builder . to_string ( ) ;
2020-05-16 22:05:13 +03:00
}
2020-06-17 16:35:06 +03:00
return replacement ;
}
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
void Shell : : set_local_variable ( const String & name , RefPtr < AST : : Value > value )
{
2020-07-12 00:12:46 +03:00
if ( auto * frame = find_frame_containing_local_variable ( name ) )
frame - > local_variables . set ( name , move ( value ) ) ;
else
m_local_frames . last ( ) . local_variables . set ( name , move ( value ) ) ;
2020-06-17 16:35:06 +03:00
}
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
void Shell : : unset_local_variable ( const String & name )
{
2020-07-12 00:12:46 +03:00
if ( auto * frame = find_frame_containing_local_variable ( name ) )
frame - > local_variables . remove ( name ) ;
}
2020-09-13 14:24:33 +03:00
void Shell : : define_function ( String name , Vector < String > argnames , RefPtr < AST : : Node > body )
{
add_entry_to_cache ( name ) ;
m_functions . set ( name , { name , move ( argnames ) , move ( body ) } ) ;
}
bool Shell : : has_function ( const String & name )
{
return m_functions . contains ( name ) ;
}
bool Shell : : invoke_function ( const AST : : Command & command , int & retval )
{
if ( command . argv . is_empty ( ) )
return false ;
StringView name = command . argv . first ( ) ;
TemporaryChange < String > script_change { current_script , name } ;
auto function_option = m_functions . get ( name ) ;
if ( ! function_option . has_value ( ) )
return false ;
auto & function = function_option . value ( ) ;
if ( ! function . body ) {
retval = 0 ;
return true ;
}
if ( command . argv . size ( ) - 1 < function . arguments . size ( ) ) {
fprintf ( stderr , " Shell: expected at least %zu arguments to %s, but got %zu \n " , function . arguments . size ( ) , function . name . characters ( ) , command . argv . size ( ) - 1 ) ;
retval = 1 ;
return true ;
}
auto frame = push_frame ( ) ;
size_t index = 0 ;
for ( auto & arg : function . arguments ) {
+ + index ;
set_local_variable ( arg , adopt ( * new AST : : StringValue ( command . argv [ index ] ) ) ) ;
}
auto argv = command . argv ;
argv . take_first ( ) ;
set_local_variable ( " ARGV " , adopt ( * new AST : : ListValue ( move ( argv ) ) ) ) ;
function . body - > run ( * this ) ;
retval = last_return_code ;
return true ;
}
2020-09-16 03:43:04 +03:00
String Shell : : format ( const StringView & source , ssize_t & cursor ) const
{
Formatter formatter ( source , cursor ) ;
auto result = formatter . format ( ) ;
cursor = formatter . cursor ( ) ;
return result ;
}
2020-07-12 00:12:46 +03:00
Shell : : Frame Shell : : push_frame ( )
{
m_local_frames . empend ( ) ;
return { m_local_frames , m_local_frames . last ( ) } ;
}
void Shell : : pop_frame ( )
{
ASSERT ( m_local_frames . size ( ) > 1 ) ;
m_local_frames . take_last ( ) ;
}
Shell : : Frame : : ~ Frame ( )
{
if ( ! should_destroy_frame )
return ;
ASSERT ( & frames . last ( ) = = & frame ) ;
frames . take_last ( ) ;
2020-05-16 22:05:13 +03:00
}
2020-06-17 17:21:44 +03:00
String Shell : : resolve_alias ( const String & name ) const
{
return m_aliases . get ( name ) . value_or ( { } ) ;
}
2020-08-03 03:04:27 +03:00
bool Shell : : is_runnable ( const StringView & name )
{
if ( access ( name . to_string ( ) . characters ( ) , X_OK ) = = 0 )
return true ;
return ! ! binary_search ( cached_path . span ( ) , name . to_string ( ) , [ ] ( const String & name , const String & program ) - > int {
return strcmp ( name . characters ( ) , program . characters ( ) ) ;
} ) ;
}
2020-06-17 16:35:06 +03:00
int Shell : : run_command ( const StringView & cmd )
2020-05-16 22:05:13 +03:00
{
2020-10-01 17:43:01 +03:00
// The default-constructed mode of the shell
// should not be used for execution!
ASSERT ( ! m_default_constructed ) ;
2020-05-16 22:05:13 +03:00
if ( cmd . is_empty ( ) )
return 0 ;
2020-06-17 16:35:06 +03:00
auto command = Parser ( cmd ) . parse ( ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
if ( ! command )
return 0 ;
2020-05-16 22:05:13 +03:00
2020-07-12 00:11:24 +03:00
# ifdef SH_DEBUG
dbg ( ) < < " Command follows " ;
command - > dump ( 0 ) ;
# endif
2020-06-23 17:40:41 +03:00
if ( command - > is_syntax_error ( ) ) {
2020-06-28 17:12:57 +03:00
auto & error_node = command - > syntax_error_node ( ) ;
auto & position = error_node . position ( ) ;
fprintf ( stderr , " Shell: Syntax error in command: %s \n " , error_node . error_text ( ) . characters ( ) ) ;
2020-07-12 00:11:24 +03:00
fprintf ( stderr , " Around '%.*s' at %zu:%zu \n " , ( int ) min ( position . end_offset - position . start_offset , ( size_t ) 10 ) , cmd . characters_without_null_termination ( ) + position . start_offset , position . start_offset , position . end_offset ) ;
2020-06-23 17:40:41 +03:00
return 1 ;
}
2020-06-17 16:35:06 +03:00
tcgetattr ( 0 , & termios ) ;
2020-05-16 22:05:13 +03:00
2020-09-01 07:12:16 +03:00
command - > run ( * this ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
return last_return_code ;
}
2020-07-13 08:00:09 +03:00
RefPtr < Job > Shell : : run_command ( const AST : : Command & command )
2020-06-17 16:35:06 +03:00
{
FileDescriptionCollector fds ;
2020-05-24 21:30:46 +03:00
2020-06-29 04:52:58 +03:00
if ( options . verbose ) {
fprintf ( stderr , " + " ) ;
for ( auto & arg : command . argv )
fprintf ( stderr , " %s " , escape_token ( arg ) . characters ( ) ) ;
fprintf ( stderr , " \n " ) ;
fflush ( stderr ) ;
}
2020-08-09 18:38:02 +03:00
// If the command is empty, store the redirections and apply them to all later commands.
2020-09-07 19:19:53 +03:00
if ( command . argv . is_empty ( ) & & ! command . should_immediately_execute_next ) {
2020-08-09 18:38:02 +03:00
m_global_redirections . append ( command . redirections ) ;
return nullptr ;
}
2020-06-17 16:35:06 +03:00
// Resolve redirections.
2020-06-22 14:07:20 +03:00
NonnullRefPtrVector < AST : : Rewiring > rewirings ;
2020-08-09 18:38:02 +03:00
auto resolve_redirection = [ & ] ( auto & redirection ) - > IterationDecision {
2020-08-07 10:42:12 +03:00
auto rewiring_result = redirection . apply ( ) ;
2020-06-17 16:35:06 +03:00
if ( rewiring_result . is_error ( ) ) {
if ( ! rewiring_result . error ( ) . is_empty ( ) )
fprintf ( stderr , " error: %s \n " , rewiring_result . error ( ) . characters ( ) ) ;
2020-08-09 18:38:02 +03:00
return IterationDecision : : Continue ;
2020-05-24 21:30:46 +03:00
}
2020-06-17 16:35:06 +03:00
auto & rewiring = rewiring_result . value ( ) ;
2020-05-24 21:30:46 +03:00
2020-06-22 14:07:20 +03:00
if ( rewiring - > fd_action ! = AST : : Rewiring : : Close : : ImmediatelyCloseDestination )
rewirings . append ( * rewiring ) ;
if ( rewiring - > fd_action = = AST : : Rewiring : : Close : : Source ) {
fds . add ( rewiring - > source_fd ) ;
} else if ( rewiring - > fd_action = = AST : : Rewiring : : Close : : Destination ) {
if ( rewiring - > dest_fd ! = - 1 )
fds . add ( rewiring - > dest_fd ) ;
} else if ( rewiring - > fd_action = = AST : : Rewiring : : Close : : ImmediatelyCloseDestination ) {
fds . add ( rewiring - > dest_fd ) ;
} else if ( rewiring - > fd_action = = AST : : Rewiring : : Close : : RefreshDestination ) {
ASSERT ( rewiring - > other_pipe_end ) ;
int pipe_fd [ 2 ] ;
int rc = pipe ( pipe_fd ) ;
if ( rc < 0 ) {
perror ( " pipe(RedirRefresh) " ) ;
2020-08-09 18:38:02 +03:00
return IterationDecision : : Break ;
2020-06-22 14:07:20 +03:00
}
rewiring - > dest_fd = pipe_fd [ 1 ] ;
rewiring - > other_pipe_end - > dest_fd = pipe_fd [ 0 ] ; // This fd will be added to the collection on one of the next iterations.
fds . add ( pipe_fd [ 1 ] ) ;
2020-06-17 16:35:06 +03:00
}
2020-08-09 18:38:02 +03:00
return IterationDecision : : Continue ;
} ;
2020-05-16 22:05:13 +03:00
2020-09-07 19:19:53 +03:00
auto apply_rewirings = [ & ] {
for ( auto & rewiring : rewirings ) {
# ifdef SH_DEBUG
dbgprintf ( " in %s<%d>, dup2(%d, %d) \n " , command . argv . is_empty ( ) ? " (<Empty>) " : command . argv [ 0 ] . characters ( ) , getpid ( ) , rewiring . dest_fd , rewiring . source_fd ) ;
# endif
int rc = dup2 ( rewiring . dest_fd , rewiring . source_fd ) ;
if ( rc < 0 ) {
perror ( " dup2(run) " ) ;
return IterationDecision : : Break ;
}
// dest_fd is closed via the `fds` collector, but rewiring.other_pipe_end->dest_fd
// isn't yet in that collector when the first child spawns.
if ( rewiring . other_pipe_end & & close ( rewiring . other_pipe_end - > dest_fd ) < 0 )
perror ( " close other pipe end " ) ;
}
return IterationDecision : : Continue ;
} ;
2020-08-09 18:38:02 +03:00
for ( auto & redirection : m_global_redirections ) {
if ( resolve_redirection ( redirection ) = = IterationDecision : : Break )
return nullptr ;
}
2020-05-16 22:05:13 +03:00
2020-08-09 18:38:02 +03:00
for ( auto & redirection : command . redirections ) {
if ( resolve_redirection ( redirection ) = = IterationDecision : : Break )
return nullptr ;
2020-06-17 16:35:06 +03:00
}
2020-05-16 22:05:13 +03:00
2020-09-14 13:27:30 +03:00
if ( run_builtin ( command , rewirings , last_return_code ) ) {
2020-09-01 07:12:16 +03:00
for ( auto & next_in_chain : command . next_chain )
2020-10-26 02:01:29 +03:00
run_tail ( command , next_in_chain , last_return_code ) ;
2020-08-14 21:00:48 +03:00
return nullptr ;
2020-09-01 07:12:16 +03:00
}
2020-08-14 21:00:48 +03:00
2020-09-13 14:24:33 +03:00
auto can_be_run_in_current_process = command . should_wait & & ! command . pipeline ;
if ( can_be_run_in_current_process & & has_function ( command . argv . first ( ) ) ) {
SavedFileDescriptors fds { rewirings } ;
for ( auto & rewiring : rewirings ) {
int rc = dup2 ( rewiring . dest_fd , rewiring . source_fd ) ;
if ( rc < 0 ) {
perror ( " dup2(run) " ) ;
return nullptr ;
}
}
2020-09-14 13:27:30 +03:00
if ( invoke_function ( command , last_return_code ) ) {
2020-09-13 14:24:33 +03:00
for ( auto & next_in_chain : command . next_chain )
2020-10-26 02:01:29 +03:00
run_tail ( command , next_in_chain , last_return_code ) ;
2020-09-13 14:24:33 +03:00
return nullptr ;
}
}
2020-06-17 16:35:06 +03:00
Vector < const char * > argv ;
Vector < String > copy_argv = command . argv ;
argv . ensure_capacity ( command . argv . size ( ) + 1 ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
for ( auto & arg : copy_argv )
argv . append ( arg . characters ( ) ) ;
argv . append ( nullptr ) ;
2020-05-16 22:05:13 +03:00
2020-08-11 23:44:34 +03:00
int sync_pipe [ 2 ] ;
if ( pipe ( sync_pipe ) < 0 ) {
perror ( " pipe " ) ;
return nullptr ;
}
2020-06-17 16:35:06 +03:00
pid_t child = fork ( ) ;
2020-06-25 15:45:23 +03:00
if ( child < 0 ) {
perror ( " fork " ) ;
return nullptr ;
}
2020-08-11 14:24:46 +03:00
2020-06-25 15:45:23 +03:00
if ( child = = 0 ) {
2020-08-11 23:44:34 +03:00
close ( sync_pipe [ 1 ] ) ;
2020-09-07 21:15:31 +03:00
m_is_subshell = true ;
m_pid = getpid ( ) ;
Core : : EventLoop : : notify_forked ( Core : : EventLoop : : ForkEvent : : Child ) ;
jobs . clear ( ) ;
2020-08-11 14:24:46 +03:00
2020-09-07 19:19:53 +03:00
if ( apply_rewirings ( ) = = IterationDecision : : Break )
2020-09-09 22:07:38 +03:00
_exit ( 126 ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
fds . collect ( ) ;
2020-08-11 23:44:34 +03:00
u8 c ;
while ( read ( sync_pipe [ 0 ] , & c , 1 ) < 0 ) {
if ( errno ! = EINTR ) {
perror ( " read " ) ;
// There's nothing interesting we can do here.
break ;
}
dbg ( ) < < " Oof " ;
}
2020-09-09 22:07:38 +03:00
# ifdef SH_DEBUG
dbg ( ) < < " Synced up with parent, we're good to exec() " ;
# endif
2020-08-11 23:44:34 +03:00
close ( sync_pipe [ 0 ] ) ;
2020-09-09 22:07:38 +03:00
if ( ! m_is_subshell & & command . should_wait )
tcsetattr ( 0 , TCSANOW , & default_termios ) ;
2020-09-13 14:24:33 +03:00
Core : : EventLoop mainloop ;
setup_signals ( ) ;
2020-09-07 21:15:31 +03:00
if ( command . should_immediately_execute_next ) {
ASSERT ( command . argv . is_empty ( ) ) ;
for ( auto & next_in_chain : command . next_chain )
2020-10-26 02:01:29 +03:00
run_tail ( command , next_in_chain , 0 ) ;
2020-09-07 21:15:31 +03:00
_exit ( last_return_code ) ;
}
2020-09-13 14:24:33 +03:00
if ( invoke_function ( command , last_return_code ) )
_exit ( last_return_code ) ;
2020-06-17 16:35:06 +03:00
int rc = execvp ( argv [ 0 ] , const_cast < char * const * > ( argv . data ( ) ) ) ;
if ( rc < 0 ) {
if ( errno = = ENOENT ) {
int shebang_fd = open ( argv [ 0 ] , O_RDONLY ) ;
auto close_argv = ScopeGuard ( [ shebang_fd ] ( ) { if ( shebang_fd > = 0 ) close ( shebang_fd ) ; } ) ;
char shebang [ 256 ] { } ;
ssize_t num_read = - 1 ;
if ( ( shebang_fd > = 0 ) & & ( ( num_read = read ( shebang_fd , shebang , sizeof ( shebang ) ) ) > = 2 ) & & ( StringView ( shebang ) . starts_with ( " #! " ) ) ) {
StringView shebang_path_view ( & shebang [ 2 ] , num_read - 2 ) ;
Optional < size_t > newline_pos = shebang_path_view . find_first_of ( " \n \r " ) ;
shebang [ newline_pos . has_value ( ) ? ( newline_pos . value ( ) + 2 ) : num_read ] = ' \0 ' ;
fprintf ( stderr , " %s: Invalid interpreter \" %s \" : %s \n " , argv [ 0 ] , & shebang [ 2 ] , strerror ( ENOENT ) ) ;
} else
fprintf ( stderr , " %s: Command not found. \n " , argv [ 0 ] ) ;
} else {
int saved_errno = errno ;
struct stat st ;
if ( stat ( argv [ 0 ] , & st ) = = 0 & & S_ISDIR ( st . st_mode ) ) {
fprintf ( stderr , " Shell: %s: Is a directory \n " , argv [ 0 ] ) ;
2020-05-16 22:05:13 +03:00
_exit ( 126 ) ;
}
2020-06-17 16:35:06 +03:00
fprintf ( stderr , " execvp(%s): %s \n " , argv [ 0 ] , strerror ( saved_errno ) ) ;
2020-05-16 22:05:13 +03:00
}
2020-06-17 16:35:06 +03:00
_exit ( 126 ) ;
2020-05-16 22:05:13 +03:00
}
2020-06-17 16:35:06 +03:00
ASSERT_NOT_REACHED ( ) ;
}
2020-05-16 22:05:13 +03:00
2020-08-11 23:44:34 +03:00
close ( sync_pipe [ 0 ] ) ;
2020-08-11 14:24:46 +03:00
bool is_first = ! command . pipeline | | ( command . pipeline & & command . pipeline - > pgid = = - 1 ) ;
if ( command . pipeline ) {
if ( is_first ) {
command . pipeline - > pgid = child ;
}
}
pid_t pgid = is_first ? child : ( command . pipeline ? command . pipeline - > pgid : child ) ;
2020-09-12 22:11:07 +03:00
if ( ( ! m_is_subshell & & command . should_wait ) | | command . pipeline ) {
2020-09-07 21:15:31 +03:00
if ( setpgid ( child , pgid ) < 0 )
perror ( " setpgid " ) ;
2020-08-11 14:24:46 +03:00
2020-09-12 22:11:07 +03:00
if ( ! m_is_subshell ) {
2020-09-18 09:52:25 +03:00
if ( tcsetpgrp ( STDOUT_FILENO , pgid ) ! = 0 )
perror ( " tcsetpgrp(OUT) " ) ;
if ( tcsetpgrp ( STDIN_FILENO , pgid ) ! = 0 )
perror ( " tcsetpgrp(IN) " ) ;
2020-09-12 22:11:07 +03:00
}
2020-08-11 14:24:46 +03:00
}
2020-08-11 23:44:34 +03:00
while ( write ( sync_pipe [ 1 ] , " x " , 1 ) < 0 ) {
if ( errno ! = EINTR ) {
perror ( " write " ) ;
// There's nothing interesting we can do here.
break ;
}
dbg ( ) < < " Oof " ;
}
close ( sync_pipe [ 1 ] ) ;
2020-06-17 16:35:06 +03:00
StringBuilder cmd ;
cmd . join ( " " , command . argv ) ;
2020-05-16 22:05:13 +03:00
2020-09-07 21:15:31 +03:00
auto command_copy = AST : : Command ( command ) ;
// Clear the next chain if it's to be immediately executed
// as the child will run this chain.
if ( command . should_immediately_execute_next )
command_copy . next_chain . clear ( ) ;
auto job = Job : : create ( child , pgid , cmd . build ( ) , find_last_job_id ( ) + 1 , move ( command_copy ) ) ;
2020-06-17 16:35:06 +03:00
jobs . set ( ( u64 ) child , job ) ;
2020-05-24 21:30:46 +03:00
2020-09-01 07:12:16 +03:00
job - > on_exit = [ this ] ( auto job ) {
2020-07-12 17:21:47 +03:00
if ( ! job - > exited ( ) )
return ;
2020-08-15 21:50:39 +03:00
if ( job - > is_running_in_background ( ) & & job - > should_announce_exit ( ) )
2020-08-11 14:24:16 +03:00
fprintf ( stderr , " Shell: Job % " PRIu64 " (%s) exited \n " , job - > job_id ( ) , job - > cmd ( ) . characters ( ) ) ;
2020-09-01 07:12:16 +03:00
last_return_code = job - > exit_code ( ) ;
2020-06-17 16:35:06 +03:00
job - > disown ( ) ;
2020-09-01 07:12:16 +03:00
run_tail ( job ) ;
2020-06-17 16:35:06 +03:00
} ;
2020-05-24 21:30:46 +03:00
2020-06-22 14:07:20 +03:00
fds . collect ( ) ;
2020-06-17 16:35:06 +03:00
return * job ;
}
2020-05-24 21:30:46 +03:00
2020-10-26 02:01:29 +03:00
void Shell : : run_tail ( const AST : : Command & invoking_command , const AST : : NodeWithAction & next_in_chain , int head_exit_code )
2020-09-01 07:12:16 +03:00
{
2020-09-07 21:15:31 +03:00
auto evaluate = [ & ] {
if ( next_in_chain . node - > would_execute ( ) ) {
next_in_chain . node - > run ( * this ) ;
return ;
}
2020-10-26 02:01:29 +03:00
auto node = next_in_chain . node ;
if ( ! invoking_command . should_wait )
node = adopt ( static_cast < AST : : Node & > ( * new AST : : Background ( next_in_chain . node - > position ( ) , move ( node ) ) ) ) ;
adopt ( static_cast < AST : : Node & > ( * new AST : : Execute ( next_in_chain . node - > position ( ) , move ( node ) ) ) ) - > run ( * this ) ;
2020-09-07 21:15:31 +03:00
} ;
2020-09-01 07:12:16 +03:00
switch ( next_in_chain . action ) {
case AST : : NodeWithAction : : And :
2020-09-07 21:15:31 +03:00
if ( head_exit_code = = 0 )
evaluate ( ) ;
2020-09-01 07:12:16 +03:00
break ;
case AST : : NodeWithAction : : Or :
2020-09-07 21:15:31 +03:00
if ( head_exit_code ! = 0 )
evaluate ( ) ;
2020-09-01 07:12:16 +03:00
break ;
case AST : : NodeWithAction : : Sequence :
2020-09-07 21:15:31 +03:00
evaluate ( ) ;
2020-09-01 07:12:16 +03:00
break ;
}
}
void Shell : : run_tail ( RefPtr < Job > job )
{
if ( auto cmd = job - > command_ptr ( ) ) {
deferred_invoke ( [ = , this ] ( auto & ) {
for ( auto & next_in_chain : cmd - > next_chain ) {
2020-10-26 02:01:29 +03:00
run_tail ( * cmd , next_in_chain , job - > exit_code ( ) ) ;
2020-09-01 07:12:16 +03:00
}
} ) ;
}
}
2020-08-06 14:44:30 +03:00
NonnullRefPtrVector < Job > Shell : : run_commands ( Vector < AST : : Command > & commands )
2020-07-13 08:00:09 +03:00
{
2020-09-01 07:12:16 +03:00
NonnullRefPtrVector < Job > spawned_jobs ;
2020-07-13 08:00:09 +03:00
for ( auto & command : commands ) {
# ifdef SH_DEBUG
dbg ( ) < < " Command " ;
for ( auto & arg : command . argv )
dbg ( ) < < " argv: " < < arg ;
for ( auto & redir : command . redirections ) {
2020-08-15 18:43:33 +03:00
if ( redir . is_path_redirection ( ) ) {
auto path_redir = ( const AST : : PathRedirection * ) & redir ;
2020-07-13 08:00:09 +03:00
dbg ( ) < < " redir path " < < ( int ) path_redir - > direction < < " " < < path_redir - > path < < " <-> " < < path_redir - > fd ;
2020-08-15 18:43:33 +03:00
} else if ( redir . is_fd_redirection ( ) ) {
auto * fdredir = ( const AST : : FdRedirection * ) & redir ;
dbg ( ) < < " redir fd " < < fdredir - > source_fd < < " -> " < < fdredir - > dest_fd ;
} else if ( redir . is_close_redirection ( ) ) {
auto close_redir = ( const AST : : CloseRedirection * ) & redir ;
2020-07-13 08:00:09 +03:00
dbg ( ) < < " close fd " < < close_redir - > fd ;
} else {
ASSERT_NOT_REACHED ( ) ;
}
}
# endif
auto job = run_command ( command ) ;
2020-07-13 18:59:52 +03:00
if ( ! job )
continue ;
2020-07-13 08:00:09 +03:00
2020-09-01 07:12:16 +03:00
spawned_jobs . append ( * job ) ;
2020-07-13 08:00:09 +03:00
if ( command . should_wait ) {
block_on_job ( job ) ;
} else {
2020-09-01 17:33:19 +03:00
job - > set_running_in_background ( true ) ;
if ( ! command . is_pipe_source & & command . should_notify_if_in_background )
2020-08-15 21:50:39 +03:00
job - > set_should_announce_exit ( true ) ;
2020-07-13 08:00:09 +03:00
}
}
2020-09-01 07:12:16 +03:00
return spawned_jobs ;
2020-07-13 08:00:09 +03:00
}
2020-07-05 17:57:37 +03:00
bool Shell : : run_file ( const String & filename , bool explicitly_invoked )
2020-06-17 18:07:44 +03:00
{
2020-09-13 12:29:34 +03:00
TemporaryChange script_change { current_script , filename } ;
2020-09-28 12:02:36 +03:00
TemporaryChange interactive_change { m_is_interactive , false } ;
2020-06-17 18:07:44 +03:00
auto file_result = Core : : File : : open ( filename , Core : : File : : ReadOnly ) ;
if ( file_result . is_error ( ) ) {
2020-07-05 17:57:37 +03:00
if ( explicitly_invoked )
fprintf ( stderr , " Failed to open %s: %s \n " , filename . characters ( ) , file_result . error ( ) . characters ( ) ) ;
2020-07-05 18:18:26 +03:00
else
dbg ( ) < < " open() failed for ' " < < filename < < " ' with " < < file_result . error ( ) ;
2020-06-17 18:07:44 +03:00
return false ;
}
auto file = file_result . value ( ) ;
2020-06-28 17:13:37 +03:00
auto data = file - > read_all ( ) ;
run_command ( data ) ;
2020-06-17 18:07:44 +03:00
return true ;
}
2020-08-04 21:07:47 +03:00
void Shell : : restore_ios ( )
2020-06-17 16:35:06 +03:00
{
2020-09-07 21:15:31 +03:00
if ( m_is_subshell )
return ;
2020-06-17 16:35:06 +03:00
tcsetattr ( 0 , TCSANOW , & termios ) ;
2020-08-04 21:07:47 +03:00
tcsetpgrp ( STDOUT_FILENO , m_pid ) ;
tcsetpgrp ( STDIN_FILENO , m_pid ) ;
2020-06-17 16:35:06 +03:00
}
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
void Shell : : block_on_job ( RefPtr < Job > job )
{
2020-07-12 17:21:47 +03:00
TemporaryChange < const Job * > current_job { m_current_job , job . ptr ( ) } ;
2020-06-17 16:35:06 +03:00
if ( ! job )
return ;
2020-05-16 22:05:13 +03:00
2020-09-01 07:12:16 +03:00
if ( job - > is_suspended ( ) )
return ; // We cannot wait for a suspended job.
2020-08-15 21:50:39 +03:00
ScopeGuard io_restorer { [ & ] ( ) {
if ( job - > exited ( ) & & ! job - > is_running_in_background ( ) ) {
restore_ios ( ) ;
}
} } ;
2020-06-17 16:35:06 +03:00
Core : : EventLoop loop ;
job - > on_exit = [ & , old_exit = move ( job - > on_exit ) ] ( auto job ) {
if ( old_exit )
old_exit ( job ) ;
loop . quit ( 0 ) ;
} ;
2020-08-15 21:50:39 +03:00
if ( job - > exited ( ) )
2020-06-17 16:35:06 +03:00
return ;
2020-05-25 01:02:41 +03:00
2020-06-17 16:35:06 +03:00
loop . exec ( ) ;
2020-05-16 22:05:13 +03:00
}
String Shell : : get_history_path ( )
{
2020-10-26 02:29:37 +03:00
if ( auto histfile = getenv ( " HISTFILE " ) )
return { histfile } ;
return String : : formatted ( " {}/.history " , home ) ;
2020-05-16 22:05:13 +03:00
}
String Shell : : escape_token ( const String & token )
{
StringBuilder builder ;
for ( auto c : token ) {
switch ( c ) {
case ' \' ' :
case ' " ' :
case ' $ ' :
case ' | ' :
case ' > ' :
case ' < ' :
case ' & ' :
case ' \\ ' :
case ' ' :
builder . append ( ' \\ ' ) ;
break ;
default :
break ;
}
builder . append ( c ) ;
}
return builder . build ( ) ;
}
String Shell : : unescape_token ( const String & token )
{
StringBuilder builder ;
enum {
Free ,
Escaped
} state { Free } ;
for ( auto c : token ) {
switch ( state ) {
case Escaped :
builder . append ( c ) ;
state = Free ;
break ;
case Free :
if ( c = = ' \\ ' )
state = Escaped ;
else
builder . append ( c ) ;
break ;
}
}
if ( state = = Escaped )
builder . append ( ' \\ ' ) ;
return builder . build ( ) ;
}
void Shell : : cache_path ( )
{
if ( ! cached_path . is_empty ( ) )
cached_path . clear_with_capacity ( ) ;
2020-07-07 21:12:32 +03:00
// Add shell builtins to the cache.
for ( const auto & builtin_name : builtin_names )
cached_path . append ( escape_token ( builtin_name ) ) ;
2020-05-16 22:05:13 +03:00
2020-07-07 21:12:32 +03:00
// Add aliases to the cache.
for ( const auto & alias : m_aliases ) {
auto name = escape_token ( alias . key ) ;
if ( cached_path . contains_slow ( name ) )
continue ;
cached_path . append ( name ) ;
2020-05-16 22:05:13 +03:00
}
2020-07-07 21:12:32 +03:00
String path = getenv ( " PATH " ) ;
if ( ! path . is_empty ( ) ) {
auto directories = path . split ( ' : ' ) ;
for ( const auto & directory : directories ) {
Core : : DirIterator programs ( directory . characters ( ) , Core : : DirIterator : : SkipDots ) ;
while ( programs . has_next ( ) ) {
auto program = programs . next_path ( ) ;
String program_path = String : : format ( " %s/%s " , directory . characters ( ) , program . characters ( ) ) ;
auto escaped_name = escape_token ( program ) ;
if ( cached_path . contains_slow ( escaped_name ) )
continue ;
if ( access ( program_path . characters ( ) , X_OK ) = = 0 )
cached_path . append ( escaped_name ) ;
}
}
}
2020-05-17 13:34:22 +03:00
2020-05-16 22:05:13 +03:00
quick_sort ( cached_path ) ;
}
2020-08-03 12:06:42 +03:00
void Shell : : add_entry_to_cache ( const String & entry )
{
size_t index = 0 ;
auto match = binary_search (
cached_path . span ( ) , entry , [ ] ( const String & name , const String & program ) - > int {
return strcmp ( name . characters ( ) , program . characters ( ) ) ;
} ,
& index ) ;
if ( match )
return ;
2020-09-18 09:52:52 +03:00
while ( index < cached_path . size ( ) & & strcmp ( cached_path [ index ] . characters ( ) , entry . characters ( ) ) < 0 ) {
2020-08-03 12:06:42 +03:00
index + + ;
}
cached_path . insert ( index , entry ) ;
}
2020-05-26 13:34:39 +03:00
void Shell : : highlight ( Line : : Editor & editor ) const
2020-05-16 22:05:13 +03:00
{
2020-06-17 16:35:06 +03:00
auto line = editor . line ( ) ;
Parser parser ( line ) ;
auto ast = parser . parse ( ) ;
if ( ! ast )
return ;
ast - > highlight_in_editor ( editor , const_cast < Shell & > ( * this ) ) ;
2020-05-16 22:05:13 +03:00
}
2020-09-23 08:36:30 +03:00
Vector < Line : : CompletionSuggestion > Shell : : complete ( )
2020-05-16 22:05:13 +03:00
{
2020-09-23 08:36:30 +03:00
auto line = m_editor - > line ( m_editor - > cursor ( ) ) ;
2020-05-16 22:05:13 +03:00
2020-05-19 07:12:01 +03:00
Parser parser ( line ) ;
2020-05-16 22:05:13 +03:00
2020-06-17 16:35:06 +03:00
auto ast = parser . parse ( ) ;
2020-05-19 07:12:01 +03:00
2020-06-17 16:35:06 +03:00
if ( ! ast )
2020-05-19 07:12:01 +03:00
return { } ;
2020-06-17 16:35:06 +03:00
return ast - > complete_for_editor ( * this , line . length ( ) ) ;
}
2020-05-16 22:05:13 +03:00
2020-06-23 17:40:41 +03:00
Vector < Line : : CompletionSuggestion > Shell : : complete_path ( const String & base , const String & part , size_t offset )
2020-06-17 16:35:06 +03:00
{
2020-06-23 17:40:41 +03:00
auto token = offset ? part . substring_view ( 0 , offset ) : " " ;
2020-06-17 16:35:06 +03:00
StringView original_token = token ;
2020-05-16 22:05:13 +03:00
String path ;
ssize_t last_slash = token . length ( ) - 1 ;
while ( last_slash > = 0 & & token [ last_slash ] ! = ' / ' )
- - last_slash ;
2020-06-23 17:40:41 +03:00
StringBuilder path_builder ;
auto init_slash_part = token . substring_view ( 0 , last_slash + 1 ) ;
auto last_slash_part = token . substring_view ( last_slash + 1 , token . length ( ) - last_slash - 1 ) ;
// Depending on the base, we will have to prepend cwd.
if ( base . is_empty ( ) ) {
// '' /foo -> absolute
// '' foo -> relative
if ( ! token . starts_with ( ' / ' ) )
path_builder . append ( cwd ) ;
path_builder . append ( ' / ' ) ;
path_builder . append ( init_slash_part ) ;
2020-05-16 22:05:13 +03:00
} else {
2020-06-23 17:40:41 +03:00
// /foo * -> absolute
// foo * -> relative
if ( ! base . starts_with ( ' / ' ) )
path_builder . append ( cwd ) ;
path_builder . append ( ' / ' ) ;
path_builder . append ( base ) ;
path_builder . append ( ' / ' ) ;
path_builder . append ( init_slash_part ) ;
2020-05-16 22:05:13 +03:00
}
2020-06-23 17:40:41 +03:00
path = path_builder . build ( ) ;
token = last_slash_part ;
2020-05-16 22:05:13 +03:00
// the invariant part of the token is actually just the last segment
// e. in `cd /foo/bar', 'bar' is the invariant
// since we are not suggesting anything starting with
// `/foo/', but rather just `bar...'
2020-05-21 03:44:34 +03:00
auto token_length = escape_token ( token ) . length ( ) ;
2020-10-01 17:43:01 +03:00
if ( m_editor )
m_editor - > suggest ( token_length , original_token . length ( ) - token_length ) ;
2020-05-16 22:05:13 +03:00
// only suggest dot-files if path starts with a dot
Core : : DirIterator files ( path ,
token . starts_with ( ' . ' ) ? Core : : DirIterator : : SkipParentAndBaseDir : Core : : DirIterator : : SkipDots ) ;
2020-06-17 16:35:06 +03:00
Vector < Line : : CompletionSuggestion > suggestions ;
2020-05-16 22:05:13 +03:00
while ( files . has_next ( ) ) {
auto file = files . next_path ( ) ;
if ( file . starts_with ( token ) ) {
struct stat program_status ;
String file_path = String : : format ( " %s/%s " , path . characters ( ) , file . characters ( ) ) ;
int stat_error = stat ( file_path . characters ( ) , & program_status ) ;
if ( ! stat_error ) {
2020-05-19 07:12:01 +03:00
if ( S_ISDIR ( program_status . st_mode ) ) {
2020-06-17 16:35:06 +03:00
suggestions . append ( { escape_token ( file ) , " / " } ) ;
2020-05-19 07:12:01 +03:00
} else {
2020-06-17 16:35:06 +03:00
suggestions . append ( { escape_token ( file ) , " " } ) ;
2020-05-19 07:12:01 +03:00
}
2020-10-03 16:54:49 +03:00
suggestions . last ( ) . input_offset = token_length ;
2020-05-16 22:05:13 +03:00
}
}
}
return suggestions ;
}
2020-06-17 16:35:06 +03:00
Vector < Line : : CompletionSuggestion > Shell : : complete_program_name ( const String & name , size_t offset )
{
2020-07-26 12:22:05 +03:00
auto match = binary_search ( cached_path . span ( ) , name , [ ] ( const String & name , const String & program ) - > int {
2020-06-17 16:35:06 +03:00
return strncmp ( name . characters ( ) , program . characters ( ) , name . length ( ) ) ;
} ) ;
if ( ! match )
2020-06-23 17:40:41 +03:00
return complete_path ( " " , name , offset ) ;
2020-06-17 16:35:06 +03:00
String completion = * match ;
2020-10-03 16:54:49 +03:00
auto token_length = escape_token ( name ) . length ( ) ;
2020-10-01 17:43:01 +03:00
if ( m_editor )
2020-10-03 16:54:49 +03:00
m_editor - > suggest ( token_length , 0 ) ;
2020-06-17 16:35:06 +03:00
// Now that we have a program name starting with our token, we look at
// other program names starting with our token and cut off any mismatching
// characters.
Vector < Line : : CompletionSuggestion > suggestions ;
int index = match - cached_path . data ( ) ;
for ( int i = index - 1 ; i > = 0 & & cached_path [ i ] . starts_with ( name ) ; - - i ) {
suggestions . append ( { cached_path [ i ] , " " } ) ;
2020-10-03 16:54:49 +03:00
suggestions . last ( ) . input_offset = token_length ;
2020-06-17 16:35:06 +03:00
}
for ( size_t i = index + 1 ; i < cached_path . size ( ) & & cached_path [ i ] . starts_with ( name ) ; + + i ) {
suggestions . append ( { cached_path [ i ] , " " } ) ;
2020-10-03 16:54:49 +03:00
suggestions . last ( ) . input_offset = token_length ;
2020-06-17 16:35:06 +03:00
}
suggestions . append ( { cached_path [ index ] , " " } ) ;
2020-10-03 16:54:49 +03:00
suggestions . last ( ) . input_offset = token_length ;
2020-06-17 16:35:06 +03:00
return suggestions ;
}
Vector < Line : : CompletionSuggestion > Shell : : complete_variable ( const String & name , size_t offset )
{
Vector < Line : : CompletionSuggestion > suggestions ;
2020-06-23 17:40:41 +03:00
auto pattern = offset ? name . substring_view ( 0 , offset ) : " " ;
2020-06-17 16:35:06 +03:00
2020-10-01 17:43:01 +03:00
if ( m_editor )
m_editor - > suggest ( offset ) ;
2020-06-17 16:35:06 +03:00
// Look at local variables.
2020-07-12 00:12:46 +03:00
for ( auto & frame : m_local_frames ) {
for ( auto & variable : frame . local_variables ) {
if ( variable . key . starts_with ( pattern ) & & ! suggestions . contains_slow ( variable . key ) )
suggestions . append ( variable . key ) ;
}
2020-06-17 16:35:06 +03:00
}
// Look at the environment.
for ( auto i = 0 ; environ [ i ] ; + + i ) {
auto entry = StringView { environ [ i ] } ;
if ( entry . starts_with ( pattern ) ) {
auto parts = entry . split_view ( ' = ' ) ;
if ( parts . is_empty ( ) | | parts . first ( ) . is_empty ( ) )
continue ;
String name = parts . first ( ) ;
if ( suggestions . contains_slow ( name ) )
continue ;
suggestions . append ( move ( name ) ) ;
2020-10-03 16:54:49 +03:00
suggestions . last ( ) . input_offset = offset ;
2020-06-17 16:35:06 +03:00
}
}
return suggestions ;
}
2020-06-23 17:40:41 +03:00
Vector < Line : : CompletionSuggestion > Shell : : complete_user ( const String & name , size_t offset )
{
Vector < Line : : CompletionSuggestion > suggestions ;
auto pattern = offset ? name . substring_view ( 0 , offset ) : " " ;
2020-10-01 17:43:01 +03:00
if ( m_editor )
m_editor - > suggest ( offset ) ;
2020-06-23 17:40:41 +03:00
Core : : DirIterator di ( " /home " , Core : : DirIterator : : SkipParentAndBaseDir ) ;
if ( di . has_error ( ) )
return suggestions ;
while ( di . has_next ( ) ) {
String name = di . next_path ( ) ;
2020-10-03 16:54:49 +03:00
if ( name . starts_with ( pattern ) ) {
2020-06-23 17:40:41 +03:00
suggestions . append ( name ) ;
2020-10-03 16:54:49 +03:00
suggestions . last ( ) . input_offset = offset ;
}
2020-06-23 17:40:41 +03:00
}
return suggestions ;
}
2020-06-29 04:56:06 +03:00
Vector < Line : : CompletionSuggestion > Shell : : complete_option ( const String & program_name , const String & option , size_t offset )
{
size_t start = 0 ;
2020-07-05 17:08:38 +03:00
while ( start < option . length ( ) & & option [ start ] = = ' - ' & & start < 2 )
2020-06-29 04:56:06 +03:00
+ + start ;
auto option_pattern = offset > start ? option . substring_view ( start , offset - start ) : " " ;
2020-10-01 17:43:01 +03:00
if ( m_editor )
m_editor - > suggest ( offset ) ;
2020-06-29 04:56:06 +03:00
Vector < Line : : CompletionSuggestion > suggestions ;
dbg ( ) < < " Shell::complete_option( " < < program_name < < " , " < < option_pattern < < " ) " ;
// FIXME: Figure out how to do this stuff.
if ( has_builtin ( program_name ) ) {
// Complete builtins.
if ( program_name = = " setopt " ) {
bool negate = false ;
if ( option_pattern . starts_with ( " no_ " ) ) {
negate = true ;
option_pattern = option_pattern . substring_view ( 3 , option_pattern . length ( ) - 3 ) ;
}
auto maybe_negate = [ & ] ( const StringView & view ) {
static StringBuilder builder ;
builder . clear ( ) ;
builder . append ( " -- " ) ;
if ( negate )
builder . append ( " no_ " ) ;
builder . append ( view ) ;
return builder . to_string ( ) ;
} ;
2020-10-03 16:54:49 +03:00
# define __ENUMERATE_SHELL_OPTION(name, d_, descr_) \
if ( StringView { # name } . starts_with ( option_pattern ) ) { \
suggestions . append ( maybe_negate ( # name ) ) ; \
suggestions . last ( ) . input_offset = offset ; \
}
2020-06-29 04:56:06 +03:00
ENUMERATE_SHELL_OPTIONS ( ) ;
# undef __ENUMERATE_SHELL_OPTION
return suggestions ;
}
}
return suggestions ;
}
2020-08-17 16:35:50 +03:00
void Shell : : bring_cursor_to_beginning_of_a_line ( ) const
{
struct winsize ws ;
2020-09-23 08:36:30 +03:00
if ( m_editor ) {
ws = m_editor - > terminal_size ( ) ;
2020-08-17 16:35:50 +03:00
} else {
if ( ioctl ( STDERR_FILENO , TIOCGWINSZ , & ws ) < 0 ) {
// Very annoying assumptions.
ws . ws_col = 80 ;
ws . ws_row = 25 ;
}
}
2020-08-18 00:17:57 +03:00
// Black with Cyan background.
constexpr auto default_mark = " \ e[30;46m% \ e[0m " ;
String eol_mark = getenv ( " PROMPT_EOL_MARK " ) ;
if ( eol_mark . is_null ( ) )
eol_mark = default_mark ;
size_t eol_mark_length = Line : : Editor : : actual_rendered_string_metrics ( eol_mark ) . line_lengths . last ( ) ;
if ( eol_mark_length > = ws . ws_col ) {
eol_mark = default_mark ;
eol_mark_length = 1 ;
}
fputs ( eol_mark . characters ( ) , stderr ) ;
2020-08-17 16:35:50 +03:00
2020-10-25 18:05:49 +03:00
for ( auto i = eol_mark_length ; i < ws . ws_col ; + + i )
2020-08-17 16:35:50 +03:00
putc ( ' ' , stderr ) ;
putc ( ' \r ' , stderr ) ;
}
2020-05-25 15:27:07 +03:00
bool Shell : : read_single_line ( )
2020-05-16 22:05:13 +03:00
{
2020-08-04 21:07:47 +03:00
restore_ios ( ) ;
2020-08-17 16:35:50 +03:00
bring_cursor_to_beginning_of_a_line ( ) ;
2020-09-23 08:36:30 +03:00
auto line_result = m_editor - > get_line ( prompt ( ) ) ;
2020-05-25 15:27:07 +03:00
if ( line_result . is_error ( ) ) {
2020-05-30 21:05:40 +03:00
if ( line_result . error ( ) = = Line : : Editor : : Error : : Eof | | line_result . error ( ) = = Line : : Editor : : Error : : Empty ) {
// Pretend the user tried to execute builtin_exit()
2020-06-17 16:35:06 +03:00
m_complete_line_builder . clear ( ) ;
run_command ( " exit " ) ;
return read_single_line ( ) ;
2020-05-30 21:05:40 +03:00
} else {
m_complete_line_builder . clear ( ) ;
Core : : EventLoop : : current ( ) . quit ( 1 ) ;
return false ;
}
2020-05-25 15:27:07 +03:00
}
auto & line = line_result . value ( ) ;
2020-05-16 22:05:13 +03:00
if ( line . is_empty ( ) )
2020-05-25 15:27:07 +03:00
return true ;
2020-05-16 22:05:13 +03:00
2020-06-26 15:13:55 +03:00
if ( ! m_complete_line_builder . is_empty ( ) )
m_complete_line_builder . append ( " \n " ) ;
2020-05-16 22:05:13 +03:00
m_complete_line_builder . append ( line ) ;
2020-06-17 16:35:06 +03:00
run_command ( m_complete_line_builder . string_view ( ) ) ;
2020-05-16 22:05:13 +03:00
2020-09-23 08:36:30 +03:00
m_editor - > add_to_history ( m_complete_line_builder . build ( ) ) ;
2020-05-16 22:05:13 +03:00
m_complete_line_builder . clear ( ) ;
2020-05-25 15:27:07 +03:00
return true ;
2020-05-16 22:05:13 +03:00
}
void Shell : : custom_event ( Core : : CustomEvent & event )
{
if ( event . custom_type ( ) = = ReadLine ) {
2020-05-25 15:27:07 +03:00
if ( read_single_line ( ) )
Core : : EventLoop : : current ( ) . post_event ( * this , make < Core : : CustomEvent > ( ShellEventType : : ReadLine ) ) ;
2020-05-16 22:05:13 +03:00
return ;
}
}
2020-09-30 13:35:12 +03:00
void Shell : : notify_child_event ( )
{
2020-10-01 12:11:31 +03:00
# ifdef ENSURE_WAITID_ONCE
static HashTable < pid_t > s_waited_for_pids ;
# endif
2020-09-30 13:35:12 +03:00
Vector < u64 > disowned_jobs ;
// Workaround the fact that we can't receive *who* exactly changed state.
// The child might still be alive (and even running) when this signal is dispatched to us
// so just...repeat until we find a suitable child.
// This, of course, will mean that someone can send us a SIGCHILD and we'd be spinning here
// until the next child event we can actually handle.
bool found_child = false ;
do {
// Ignore stray SIGCHLD when there are no jobs.
if ( jobs . is_empty ( ) )
return ;
for ( auto & it : jobs ) {
auto job_id = it . key ;
auto & job = * it . value ;
2020-10-01 12:11:31 +03:00
# ifdef ENSURE_WAITID_ONCE
// Theoretically, this should never trip, as jobs are removed from
// the job table when waitpid() succeeds *and* the child is dead.
ASSERT ( ! s_waited_for_pids . contains ( job . pid ( ) ) ) ;
# endif
2020-09-30 13:35:12 +03:00
int wstatus = 0 ;
# ifdef SH_DEBUG
2020-10-04 16:35:43 +03:00
dbgln ( " waitpid({}) = ... " , job . pid ( ) ) ;
2020-09-30 13:35:12 +03:00
# endif
auto child_pid = waitpid ( job . pid ( ) , & wstatus , WNOHANG | WUNTRACED ) ;
# ifdef SH_DEBUG
2020-10-04 16:35:43 +03:00
dbgln ( " ... = {} - {} " , child_pid , wstatus ) ;
2020-09-30 13:35:12 +03:00
# endif
if ( child_pid < 0 ) {
if ( errno = = ECHILD ) {
// The child process went away before we could process its death, just assume it exited all ok.
// FIXME: This should never happen, the child should stay around until we do the waitpid above.
dbg ( ) < < " Child process gone, cannot get exit code for " < < job_id ;
child_pid = job . pid ( ) ;
} else {
ASSERT_NOT_REACHED ( ) ;
}
}
if ( child_pid = = 0 ) {
// If the child existed, but wasn't dead.
continue ;
}
if ( child_pid = = job . pid ( ) ) {
if ( WIFSIGNALED ( wstatus ) & & ! WIFSTOPPED ( wstatus ) ) {
job . set_signalled ( WTERMSIG ( wstatus ) ) ;
} else if ( WIFEXITED ( wstatus ) ) {
job . set_has_exit ( WEXITSTATUS ( wstatus ) ) ;
} else if ( WIFSTOPPED ( wstatus ) ) {
job . unblock ( ) ;
job . set_is_suspended ( true ) ;
}
found_child = true ;
2020-10-01 12:11:31 +03:00
# ifdef ENSURE_WAITID_ONCE
2020-10-26 01:58:15 +03:00
// NOTE: This check is here to find bugs about our assumptions about waitpid(),
// it does not hold in general, and it definitely does not hold in the long run.
// Reasons that we would call waitpid() more than once:
// - PID reuse/wraparound: This will simply fail the assertion, ignored here.
// - Non-terminating unblocks:
// - Suspension: (e.g. via ^Z)
// - ?
// - ?
if ( job . exited ( ) )
s_waited_for_pids . set ( child_pid ) ;
2020-10-01 12:11:31 +03:00
# endif
2020-09-30 13:35:12 +03:00
}
if ( job . should_be_disowned ( ) )
disowned_jobs . append ( job_id ) ;
}
for ( auto job_id : disowned_jobs ) {
jobs . remove ( job_id ) ;
}
} while ( ! found_child ) ;
}
2020-10-01 17:43:01 +03:00
Shell : : Shell ( )
: m_default_constructed ( true )
{
push_frame ( ) . leak_frame ( ) ;
int rc = gethostname ( hostname , Shell : : HostNameSize ) ;
if ( rc < 0 )
perror ( " gethostname " ) ;
{
auto * pw = getpwuid ( getuid ( ) ) ;
if ( pw ) {
username = pw - > pw_name ;
home = pw - > pw_dir ;
setenv ( " HOME " , pw - > pw_dir , 1 ) ;
}
endpwent ( ) ;
}
// For simplicity, start at the user's home directory.
this - > cwd = home ;
setenv ( " PWD " , home . characters ( ) , 1 ) ;
// Add the default PATH vars.
{
StringBuilder path ;
path . append ( getenv ( " PATH " ) ) ;
if ( path . length ( ) )
path . append ( " : " ) ;
path . append ( " /bin:/usr/bin:/usr/local/bin " ) ;
setenv ( " PATH " , path . to_string ( ) . characters ( ) , true ) ;
}
cache_path ( ) ;
}
2020-09-23 08:36:30 +03:00
Shell : : Shell ( Line : : Editor & editor )
: m_editor ( editor )
2020-05-16 22:05:13 +03:00
{
uid = getuid ( ) ;
tcsetpgrp ( 0 , getpgrp ( ) ) ;
2020-06-17 16:35:06 +03:00
m_pid = getpid ( ) ;
2020-05-16 22:05:13 +03:00
2020-07-12 00:12:46 +03:00
push_frame ( ) . leak_frame ( ) ;
2020-05-16 22:05:13 +03:00
int rc = gethostname ( hostname , Shell : : HostNameSize ) ;
if ( rc < 0 )
perror ( " gethostname " ) ;
2020-08-05 08:30:01 +03:00
auto istty = isatty ( STDIN_FILENO ) ;
m_is_interactive = istty ;
if ( istty ) {
rc = ttyname_r ( 0 , ttyname , Shell : : TTYNameSize ) ;
if ( rc < 0 )
perror ( " ttyname_r " ) ;
} else {
ttyname [ 0 ] = 0 ;
}
2020-05-16 22:05:13 +03:00
{
auto * cwd = getcwd ( nullptr , 0 ) ;
this - > cwd = cwd ;
setenv ( " PWD " , cwd , 1 ) ;
free ( cwd ) ;
}
{
auto * pw = getpwuid ( getuid ( ) ) ;
if ( pw ) {
username = pw - > pw_name ;
home = pw - > pw_dir ;
setenv ( " HOME " , pw - > pw_dir , 1 ) ;
}
endpwent ( ) ;
}
directory_stack . append ( cwd ) ;
2020-10-26 02:25:41 +03:00
m_editor - > load_history ( get_history_path ( ) ) ;
2020-05-16 22:05:13 +03:00
cache_path ( ) ;
}
Shell : : ~ Shell ( )
{
2020-10-01 17:43:01 +03:00
if ( m_default_constructed )
return ;
2020-05-24 19:55:01 +03:00
stop_all_jobs ( ) ;
2020-10-26 02:25:41 +03:00
m_editor - > save_history ( get_history_path ( ) ) ;
2020-05-16 22:05:13 +03:00
}
2020-05-24 19:55:01 +03:00
void Shell : : stop_all_jobs ( )
{
if ( ! jobs . is_empty ( ) ) {
printf ( " Killing active jobs \n " ) ;
for ( auto & entry : jobs ) {
if ( ! entry . value - > is_running_in_background ( ) ) {
# ifdef SH_DEBUG
dbg ( ) < < " Job " < < entry . value - > pid ( ) < < " is not running in background " ;
# endif
2020-07-12 17:21:47 +03:00
kill_job ( entry . value , SIGCONT ) ;
2020-05-24 19:55:01 +03:00
}
2020-07-12 17:21:47 +03:00
kill_job ( entry . value , SIGHUP ) ;
2020-05-24 19:55:01 +03:00
}
usleep ( 10000 ) ; // Wait for a bit before killing the job
for ( auto & entry : jobs ) {
# ifdef SH_DEBUG
dbg ( ) < < " Actively killing " < < entry . value - > pid ( ) < < " ( " < < entry . value - > cmd ( ) < < " ) " ;
# endif
if ( killpg ( entry . value - > pgid ( ) , SIGKILL ) < 0 ) {
if ( errno = = ESRCH )
continue ; // The process has exited all by itself.
perror ( " killpg(KILL) " ) ;
}
}
}
}
2020-05-26 14:11:03 +03:00
2020-05-26 17:24:57 +03:00
u64 Shell : : find_last_job_id ( ) const
{
u64 job_id = 0 ;
for ( auto & entry : jobs ) {
if ( entry . value - > job_id ( ) > job_id )
job_id = entry . value - > job_id ( ) ;
}
return job_id ;
}
2020-06-17 16:35:06 +03:00
const Job * Shell : : find_job ( u64 id )
{
for ( auto & entry : jobs ) {
if ( entry . value - > job_id ( ) = = id )
return entry . value ;
}
return nullptr ;
}
2020-07-12 17:21:47 +03:00
void Shell : : kill_job ( const Job * job , int sig )
{
if ( ! job )
return ;
if ( killpg ( job - > pgid ( ) , sig ) < 0 )
perror ( " killpg(job) " ) ;
}
2020-05-26 14:11:03 +03:00
void Shell : : save_to ( JsonObject & object )
{
Core : : Object : : save_to ( object ) ;
object . set ( " working_directory " , cwd ) ;
object . set ( " username " , username ) ;
object . set ( " user_home_path " , home ) ;
object . set ( " user_id " , uid ) ;
object . set ( " directory_stack_size " , directory_stack . size ( ) ) ;
object . set ( " cd_history_size " , cd_history . size ( ) ) ;
// Jobs.
JsonArray job_objects ;
for ( auto & job_entry : jobs ) {
JsonObject job_object ;
job_object . set ( " pid " , job_entry . value - > pid ( ) ) ;
job_object . set ( " pgid " , job_entry . value - > pgid ( ) ) ;
job_object . set ( " running_time " , job_entry . value - > timer ( ) . elapsed ( ) ) ;
job_object . set ( " command " , job_entry . value - > cmd ( ) ) ;
job_object . set ( " is_running_in_background " , job_entry . value - > is_running_in_background ( ) ) ;
job_objects . append ( move ( job_object ) ) ;
}
object . set ( " jobs " , move ( job_objects ) ) ;
}
2020-09-23 08:36:30 +03:00
void FileDescriptionCollector : : collect ( )
{
for ( auto fd : m_fds )
close ( fd ) ;
m_fds . clear ( ) ;
}
FileDescriptionCollector : : ~ FileDescriptionCollector ( )
{
collect ( ) ;
}
void FileDescriptionCollector : : add ( int fd )
{
m_fds . append ( fd ) ;
}
SavedFileDescriptors : : SavedFileDescriptors ( const NonnullRefPtrVector < AST : : Rewiring > & intended_rewirings )
{
for ( auto & rewiring : intended_rewirings ) {
int new_fd = dup ( rewiring . source_fd ) ;
if ( new_fd < 0 ) {
if ( errno ! = EBADF )
perror ( " dup " ) ;
// The fd that will be overwritten isn't open right now,
// it will be cleaned up by the exec()-side collector
// and we have nothing to do here, so just ignore this error.
continue ;
}
auto flags = fcntl ( new_fd , F_GETFL ) ;
auto rc = fcntl ( new_fd , F_SETFL , flags | FD_CLOEXEC ) ;
ASSERT ( rc = = 0 ) ;
m_saves . append ( { rewiring . source_fd , new_fd } ) ;
m_collector . add ( new_fd ) ;
}
}
SavedFileDescriptors : : ~ SavedFileDescriptors ( )
{
for ( auto & save : m_saves ) {
if ( dup2 ( save . saved , save . original ) < 0 ) {
perror ( " dup2(~SavedFileDescriptors) " ) ;
continue ;
}
}
}
2020-10-01 17:43:01 +03:00
}