2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2017-11-16 02:37:09 +01:00
|
|
|
|
2017-11-30 20:44:23 +01:00
|
|
|
#include <ircd/m/m.h>
|
|
|
|
|
2017-11-16 02:37:09 +01:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
struct log::log log
|
|
|
|
{
|
|
|
|
"matrix", 'm'
|
|
|
|
};
|
|
|
|
|
|
|
|
std::map<std::string, ircd::module> modules;
|
2017-11-30 19:51:01 +01:00
|
|
|
std::list<ircd::net::listener> listeners;
|
2017-11-16 02:37:09 +01:00
|
|
|
|
|
|
|
static void leave_ircd_room();
|
|
|
|
static void join_ircd_room();
|
|
|
|
}
|
|
|
|
|
|
|
|
const ircd::m::user::id::buf
|
|
|
|
ircd_user_id
|
|
|
|
{
|
|
|
|
"ircd", ircd::my_host() //TODO: hostname
|
|
|
|
};
|
|
|
|
|
|
|
|
ircd::m::user
|
|
|
|
ircd::m::me
|
|
|
|
{
|
|
|
|
ircd_user_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const ircd::m::room::id::buf
|
|
|
|
ircd_room_id
|
|
|
|
{
|
|
|
|
"ircd", ircd::my_host()
|
|
|
|
};
|
|
|
|
|
|
|
|
ircd::m::room
|
|
|
|
ircd::m::my_room
|
|
|
|
{
|
|
|
|
ircd_room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
const ircd::m::room::id::buf
|
|
|
|
control_room_id
|
|
|
|
{
|
|
|
|
"control", ircd::my_host()
|
|
|
|
};
|
|
|
|
|
|
|
|
ircd::m::room
|
|
|
|
ircd::m::control
|
|
|
|
{
|
|
|
|
control_room_id
|
|
|
|
};
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
//
|
|
|
|
// init
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::init::init()
|
|
|
|
try
|
|
|
|
:conf
|
2017-11-16 02:37:09 +01:00
|
|
|
{
|
2017-12-12 21:33:14 +01:00
|
|
|
ircd::conf
|
2017-11-16 02:37:09 +01:00
|
|
|
}
|
2017-12-12 21:33:14 +01:00
|
|
|
,_keys
|
2017-11-16 02:37:09 +01:00
|
|
|
{
|
2017-12-12 21:33:14 +01:00
|
|
|
conf
|
2017-11-16 02:37:09 +01:00
|
|
|
}
|
|
|
|
{
|
2017-12-12 21:33:14 +01:00
|
|
|
modules();
|
2018-02-09 08:21:15 +01:00
|
|
|
if(db::sequence(*dbs::events) == 0)
|
2017-12-12 21:33:14 +01:00
|
|
|
bootstrap();
|
2017-11-16 02:37:09 +01:00
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
listeners();
|
2017-11-16 02:37:09 +01:00
|
|
|
join_ircd_room();
|
|
|
|
}
|
|
|
|
catch(const m::error &e)
|
|
|
|
{
|
2017-11-30 19:51:01 +01:00
|
|
|
log.error("%s %s", e.what(), e.content);
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log.error("%s", e.what());
|
2017-11-26 01:20:42 +01:00
|
|
|
throw;
|
2017-11-16 02:37:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::init::~init()
|
|
|
|
noexcept try
|
|
|
|
{
|
|
|
|
leave_ircd_room();
|
2017-12-12 21:33:14 +01:00
|
|
|
m::listeners.clear();
|
|
|
|
m::modules.clear();
|
2017-11-16 02:37:09 +01:00
|
|
|
}
|
|
|
|
catch(const m::error &e)
|
|
|
|
{
|
|
|
|
log.critical("%s %s", e.what(), e.content);
|
2017-11-26 01:20:42 +01:00
|
|
|
ircd::terminate();
|
2017-11-16 02:37:09 +01:00
|
|
|
}
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
void
|
|
|
|
ircd::m::init::modules()
|
|
|
|
{
|
|
|
|
const string_view prefixes[]
|
|
|
|
{
|
|
|
|
"m_", "client_", "key_", "federation_", "media_"
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &name : mods::available())
|
|
|
|
if(startswith_any(name, std::begin(prefixes), std::end(prefixes)))
|
|
|
|
m::modules.emplace(name, name);
|
|
|
|
|
|
|
|
m::modules.emplace("root.so"s, "root.so"s);
|
|
|
|
}
|
|
|
|
|
2017-11-30 19:51:01 +01:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
static void init_listener(const json::object &conf, const json::object &opts, const string_view &bindaddr);
|
|
|
|
static void init_listener(const json::object &conf, const json::object &opts);
|
|
|
|
}
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
void
|
|
|
|
ircd::m::init::listeners()
|
2017-11-30 19:51:01 +01:00
|
|
|
{
|
|
|
|
const json::array listeners
|
|
|
|
{
|
|
|
|
conf["listeners"]
|
|
|
|
};
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
if(m::listeners.empty())
|
2017-11-30 19:51:01 +01:00
|
|
|
init_listener(conf, {});
|
|
|
|
else
|
|
|
|
for(const json::object opts : listeners)
|
|
|
|
init_listener(conf, opts);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ircd::m::init_listener(const json::object &conf,
|
|
|
|
const json::object &opts)
|
|
|
|
{
|
|
|
|
const json::array binds
|
|
|
|
{
|
|
|
|
opts["bind_addresses"]
|
|
|
|
};
|
|
|
|
|
|
|
|
if(binds.empty())
|
|
|
|
init_listener(conf, opts, "0.0.0.0");
|
|
|
|
else
|
|
|
|
for(const auto &bindaddr : binds)
|
|
|
|
init_listener(conf, opts, unquote(bindaddr));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ircd::m::init_listener(const json::object &conf,
|
|
|
|
const json::object &opts,
|
|
|
|
const string_view &host)
|
|
|
|
{
|
|
|
|
const json::array resources
|
|
|
|
{
|
|
|
|
opts["resources"]
|
|
|
|
};
|
|
|
|
|
|
|
|
// resources has multiple names with different configs which are being
|
|
|
|
// ignored :-/
|
|
|
|
const std::string name{"Matrix"s};
|
|
|
|
|
|
|
|
// Translate synapse options to our options (which reflect asio::ssl)
|
|
|
|
const json::strung options{json::members
|
|
|
|
{
|
|
|
|
{ "name", name },
|
|
|
|
{ "host", host },
|
2018-02-10 05:09:37 +01:00
|
|
|
{ "port", opts.get("port", 8448L) },
|
2017-11-30 19:51:01 +01:00
|
|
|
{ "ssl_certificate_file_pem", conf["tls_certificate_path"] },
|
|
|
|
{ "ssl_private_key_file_pem", conf["tls_private_key_path"] },
|
|
|
|
{ "ssl_tmp_dh_file", conf["tls_dh_params_path"] },
|
|
|
|
}};
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
m::listeners.emplace_back(options);
|
2017-11-16 02:37:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-12-12 21:33:14 +01:00
|
|
|
ircd::m::init::bootstrap()
|
2017-11-16 02:37:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
assert(dbs::events);
|
|
|
|
assert(db::sequence(*dbs::events) == 0);
|
2017-11-16 02:37:09 +01:00
|
|
|
|
|
|
|
ircd::log::notice
|
|
|
|
(
|
|
|
|
"This appears to be your first time running IRCd because the events "
|
|
|
|
"database is empty. I will be bootstrapping it with initial events now..."
|
|
|
|
);
|
|
|
|
|
2018-02-11 22:37:00 +01:00
|
|
|
create(user::users, me.user_id);
|
|
|
|
me.activate();
|
|
|
|
|
2017-11-16 02:37:09 +01:00
|
|
|
create(my_room, me.user_id);
|
2017-11-30 19:51:01 +01:00
|
|
|
send(my_room, me.user_id, "m.room.name", "",
|
|
|
|
{
|
|
|
|
{ "name", "IRCd's Room" }
|
|
|
|
});
|
|
|
|
|
2018-02-11 22:37:00 +01:00
|
|
|
send(my_room, me.user_id, "m.room.topic", "",
|
|
|
|
{
|
|
|
|
{ "topic", "The daemon's den." }
|
|
|
|
});
|
|
|
|
|
2017-11-16 02:37:09 +01:00
|
|
|
create(control, me.user_id);
|
2018-02-11 22:37:00 +01:00
|
|
|
join(control, me.user_id);
|
2017-11-30 19:51:01 +01:00
|
|
|
send(control, me.user_id, "m.room.name", "",
|
|
|
|
{
|
|
|
|
{ "name", "Control Room" }
|
|
|
|
});
|
|
|
|
|
2018-02-11 22:37:00 +01:00
|
|
|
send(user::users, me.user_id, "m.room.name", "",
|
2017-11-30 19:51:01 +01:00
|
|
|
{
|
2018-02-11 22:37:00 +01:00
|
|
|
{ "name", "Users" }
|
2017-11-30 19:51:01 +01:00
|
|
|
});
|
|
|
|
|
2018-02-11 22:37:00 +01:00
|
|
|
create(user::tokens, me.user_id);
|
|
|
|
send(user::tokens, me.user_id, "m.room.name", "",
|
2017-11-30 19:51:01 +01:00
|
|
|
{
|
2018-02-11 22:37:00 +01:00
|
|
|
{ "name", "User Tokens" }
|
2017-11-30 19:51:01 +01:00
|
|
|
});
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
_keys.bootstrap();
|
2017-11-16 02:37:09 +01:00
|
|
|
|
|
|
|
message(control, me.user_id, "Welcome to the control room.");
|
|
|
|
message(control, me.user_id, "I am the daemon. You can talk to me in this room by highlighting me.");
|
|
|
|
}
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
bool
|
|
|
|
ircd::m::self::host(const string_view &s)
|
|
|
|
{
|
|
|
|
return s == host();
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::m::self::host()
|
|
|
|
{
|
|
|
|
return "zemos.net"; //me.user_id.host();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::m::join_ircd_room()
|
|
|
|
try
|
|
|
|
{
|
|
|
|
join(my_room, me.user_id);
|
|
|
|
}
|
|
|
|
catch(const m::ALREADY_MEMBER &e)
|
|
|
|
{
|
|
|
|
log.warning("IRCd did not shut down correctly...");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::m::leave_ircd_room()
|
|
|
|
{
|
|
|
|
leave(my_room, me.user_id);
|
|
|
|
}
|