cf94b310aa
When Kakoune's terminal is shown on my laptop monitor and I plug
in my external monitor, the terminal's workspace will move to that
external monitor. When this happens, Kakoune may segfault.
There are multiple resize events (SIGWINCH) in quick succession;
it crashes because we handle SIGWINCH during rendering.
The problem happens during execution of "TerminalUI::Screen::output"
(frame #18). When we receive SIGWINCH while writing to stdout, write(2)
fails with EAGAIN, prompting us to handle pending events (See ae001a1f9
(Run EventManager whenever writing to a file descriptor would block,
2022-05-10)). We update the screen size in check_resize() here:
#4 Kakoune::TerminalUI::check_resize (force=<optimized out>) at terminal_ui.cc:683
#5 Kakoune::TerminalUI::get_next_key () at terminal_ui.cc:719
#6 operator() (__closure=0x555555984198) at terminal_ui.cc:484
#7 std::__invoke_impl<void, Kakoune::TerminalUI::TerminalUI()::<lambda(Kakoune::FDWatcher&, Kakoune::FdEvents, Kakoune::EventMode)>&, Kakoune::FDWatcher&, Kakoune::FdEvents, Kakoune::EventMode> (__f=...) at /usr/include/c++/12.2.1/bits/invoke.h:61
#8 std::__invoke_r<void, Kakoune::TerminalUI::TerminalUI()::<lambda(Kakoune::FDWatcher&, Kakoune::FdEvents, Kakoune::EventMode)>&, Kakoune::FDWatcher&, Kakoune::FdEvents, Kakoune::EventMode> (__fn=...) at /usr/include/c++/12.2.1/bits/invoke.h:111
#9 std::_Function_handler<void(Kakoune::FDWatcher&, Kakoune::FdEvents, Kakoune::EventMode), Kakoune::TerminalUI::TerminalUI()::<lambda(Kakoune::FDWatcher&, Kakoune::FdEvents, Kakoune::EventMode)> >::_M_invoke(const std::_Any_data &, Kakoune::FDWatcher &, Kakoune::FdEvents &&, Kakoune::EventMode &&) (__functor=..., __args#0=..., __args#1=<optimized out>, __args#2=<optimized out>) at /usr/include/c++/12.2.1/bits/std_function.h:290
#10 std::function<void (Kakoune::FDWatcher&, Kakoune::FdEvents, Kakoune::EventMode)>::operator()(Kakoune::FDWatcher&, Kakoune::FdEvents, Kakoune::EventMode) const (__args#2=<optimized out>, __args#1=<optimized out>, __args#0=...) at /usr/include/c++/12.2.1/bits/std_function.h:591
#11 Kakoune::FDWatcher::run (mode=Kakoune::EventMode::Urgent, events=<optimized out>) at event_manager.cc:28
#12 Kakoune::EventManager::handle_next_events (mode=mode@entry=Kakoune::EventMode::Urgent, sigmask=sigmask@entry=0x0, block=<optimized out>, block@entry=false) at event_manager.cc:143
#13 Kakoune::write (fd=1, data=...) at file.cc:273
#14 Kakoune::BufferedWriter<4096>::flush () at string.hh:236
#15 Kakoune::BufferedWriter<4096>::write (data="t file.hh:145
#16 Kakoune::TerminalUI::Screen::set_face (face=..., writer=...) at terminal_ui.cc:255
#17 operator() (line=..., __closure=<synthetic pointer>) at terminal_ui.cc:326
#18 Kakoune::TerminalUI::Screen::output (force=force@entry=true, synchronized=<optimized out>, writer=...) at terminal_ui.cc:402
#19 Kakoune::TerminalUI::redraw (force=force@entry=true) at terminal_ui.cc:571
#20 Kakoune::TerminalUI::refresh (force=<optimized out>) at terminal_ui.cc:592
#21 Kakoune::Client::redraw_ifn () at client.cc:282
#22 Kakoune::ClientManager::redraw_clients () at client_manager.cc:232
#23 Kakoune::run_server (session=..., server_init=..., client_init=..., init_buffer="fish-rust/src/ast.rs", init_coord=..., flags=Kakoune::ServerFlags::None, ui_type=Kakoune::UIType::Terminal,
debug_flags=<optimized out>, files=ArrayView<Kakoune::StringView> = {...}) at main.cc:893
#24 main (argc=<optimized out>, argv=<optimized out>) at main.cc:1243
Thereafter, "TerminalUI::Screen::output" resumes and crashes due to
a buffer overflow in "lines" which has been resized.
168 lines
3.9 KiB
C++
168 lines
3.9 KiB
C++
#ifndef file_hh_INCLUDED
|
|
#define file_hh_INCLUDED
|
|
|
|
#include "array_view.hh"
|
|
#include "enum.hh"
|
|
#include "meta.hh"
|
|
#include "string.hh"
|
|
#include "units.hh"
|
|
#include "vector.hh"
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <cstring>
|
|
|
|
namespace Kakoune
|
|
{
|
|
|
|
class Buffer;
|
|
class String;
|
|
class Regex;
|
|
|
|
using CandidateList = Vector<String, MemoryDomain::Completion>;
|
|
|
|
// parse ~/ and %/ in filename and returns the translated filename
|
|
String parse_filename(StringView filename, StringView buf_dir = {});
|
|
|
|
String real_path(StringView filename);
|
|
String compact_path(StringView filename);
|
|
|
|
StringView tmpdir();
|
|
StringView homedir();
|
|
|
|
// returns pair { directory, filename }
|
|
std::pair<StringView, StringView> split_path(StringView path);
|
|
|
|
String get_kak_binary_path();
|
|
|
|
bool fd_readable(int fd);
|
|
bool fd_writable(int fd);
|
|
String read_fd(int fd, bool text = false);
|
|
String read_file(StringView filename, bool text = false);
|
|
template<bool force_blocking = false>
|
|
void write(int fd, StringView data);
|
|
void write_to_file(StringView filename, StringView data);
|
|
|
|
struct MappedFile
|
|
{
|
|
MappedFile(StringView filename);
|
|
~MappedFile();
|
|
|
|
operator StringView() const;
|
|
|
|
const char* data;
|
|
struct stat st {};
|
|
};
|
|
|
|
enum class WriteMethod
|
|
{
|
|
Overwrite,
|
|
Replace
|
|
};
|
|
constexpr auto enum_desc(Meta::Type<WriteMethod>)
|
|
{
|
|
return make_array<EnumDesc<WriteMethod>>({
|
|
{ WriteMethod::Overwrite, "overwrite" },
|
|
{ WriteMethod::Replace, "replace" },
|
|
});
|
|
}
|
|
|
|
enum class WriteFlags
|
|
{
|
|
None = 0,
|
|
Force = 0b01,
|
|
Sync = 0b10
|
|
};
|
|
constexpr bool with_bit_ops(Meta::Type<WriteFlags>) { return true; }
|
|
|
|
void write_buffer_to_file(Buffer& buffer, StringView filename,
|
|
WriteMethod method, WriteFlags flags);
|
|
void write_buffer_to_fd(Buffer& buffer, int fd);
|
|
void write_buffer_to_backup_file(Buffer& buffer);
|
|
|
|
String find_file(StringView filename, StringView buf_dir, ConstArrayView<String> paths);
|
|
bool file_exists(StringView filename);
|
|
bool regular_file_exists(StringView filename);
|
|
|
|
Vector<String> list_files(StringView directory);
|
|
|
|
void make_directory(StringView dir, mode_t mode);
|
|
|
|
struct FsStatus
|
|
{
|
|
timespec timestamp;
|
|
ByteCount file_size;
|
|
size_t hash;
|
|
};
|
|
|
|
timespec get_fs_timestamp(StringView filename);
|
|
FsStatus get_fs_status(StringView filename);
|
|
|
|
constexpr bool operator==(const timespec& lhs, const timespec& rhs)
|
|
{
|
|
return lhs.tv_sec == rhs.tv_sec and lhs.tv_nsec == rhs.tv_nsec;
|
|
}
|
|
|
|
constexpr bool operator!=(const timespec& lhs, const timespec& rhs)
|
|
{
|
|
return not (lhs == rhs);
|
|
}
|
|
|
|
enum class FilenameFlags
|
|
{
|
|
None = 0,
|
|
OnlyDirectories = 1 << 0,
|
|
Expand = 1 << 1
|
|
};
|
|
constexpr bool with_bit_ops(Meta::Type<FilenameFlags>) { return true; }
|
|
|
|
CandidateList complete_filename(StringView prefix, const Regex& ignore_regex,
|
|
ByteCount cursor_pos = -1,
|
|
FilenameFlags flags = FilenameFlags::None);
|
|
|
|
CandidateList complete_command(StringView prefix, ByteCount cursor_pos = -1);
|
|
|
|
template<bool atomic, int buffer_size = 4096>
|
|
struct BufferedWriter
|
|
{
|
|
BufferedWriter(int fd)
|
|
: m_fd{fd}, m_exception_count{std::uncaught_exceptions()} {}
|
|
|
|
~BufferedWriter() noexcept(false)
|
|
{
|
|
if (m_pos != 0 and m_exception_count == std::uncaught_exceptions())
|
|
flush();
|
|
}
|
|
|
|
void write(StringView data)
|
|
{
|
|
while (not data.empty())
|
|
{
|
|
const ByteCount length = data.length();
|
|
const ByteCount write_len = std::min(length, size - m_pos);
|
|
memcpy(m_buffer + m_pos, data.data(), (int)write_len);
|
|
m_pos += write_len;
|
|
if (m_pos == size)
|
|
flush();
|
|
data = data.substr(write_len);
|
|
}
|
|
}
|
|
|
|
void flush()
|
|
{
|
|
Kakoune::write<atomic>(m_fd, {m_buffer, m_pos});
|
|
m_pos = 0;
|
|
}
|
|
|
|
private:
|
|
static constexpr ByteCount size = buffer_size;
|
|
int m_fd;
|
|
int m_exception_count;
|
|
ByteCount m_pos = 0;
|
|
char m_buffer[(int)size];
|
|
};
|
|
|
|
}
|
|
|
|
#endif // file_hh_INCLUDED
|