Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/remote/app/remoted.c

88 lines
2.0 KiB
C
Raw Normal View History

2017-08-23 20:57:44 +02:00
#include "../../core/communication.h"
#include "../../core/process.h"
#include "../../core/error.h"
2017-08-25 11:42:43 +02:00
#include "../lib/remoted.h"
2017-08-23 20:57:44 +02:00
#include <stdlib.h>
#include "../../core/logger.h"
2017-08-23 20:57:44 +02:00
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
#include <signal.h>
// to quit them properly if a signal occurs
struct service srv;
void handle_signal (int signalnumber)
{
// the application will shut down, and remove the service unix socket
if (srv_close (&srv) < 0) {
handle_error("srv_close < 0");
}
log_info ("remoted received a signal %d\n", signalnumber);
2017-08-23 20:57:44 +02:00
exit (EXIT_SUCCESS);
}
/* TODO: handle command line arguments */
void remoted_cmd_args (int argc, char **argv, char **env
, struct remoted_ctx *ctx)
{
(void) argc;
(void) argv;
(void) env;
(void) ctx;
}
/* TODO: handle authorizations */
int remoted_auth_conf (struct remoted_ctx *ctx)
2017-08-26 01:07:29 +02:00
{
(void) ctx;
return 0;
2017-08-26 01:07:29 +02:00
}
2017-08-23 20:57:44 +02:00
2017-08-23 20:57:44 +02:00
int
main(int argc, char **argv, char **env)
{
struct remoted_ctx ctx;
memset (&ctx, 0, sizeof (struct remoted_ctx));
2017-08-23 20:57:44 +02:00
memset (&srv, 0, sizeof (struct service));
srv.index = 0;
srv.version = 0;
signal(SIGHUP, handle_signal);
signal(SIGINT, handle_signal);
signal(SIGQUIT, handle_signal);
remoted_cmd_args (argc, argv, env, &ctx);
log_info ("remoted started");
// load configuration
if (remoted_auth_conf (&ctx)) {
log_error ("remoted cannot load configuration");
}
else
log_info ("remoted configuration loaded");
2017-08-23 20:57:44 +02:00
if (srv_init (argc, argv, env, &srv, REMOTED_SERVICE_NAME) < 0) {
handle_error("srv_init < 0");
}
log_info ("remoted listening on %s", srv.spath);
2017-08-23 20:57:44 +02:00
// TODO: here comes pledge (openbsd)
2017-08-23 20:57:44 +02:00
// the service will loop until the end of time, a specific message, a signal
2017-08-25 11:42:43 +02:00
remoted_main_loop (&srv);
2017-08-23 20:57:44 +02:00
2017-08-26 01:07:29 +02:00
// the application will shut down, and remove the service unix socket
2017-08-23 20:57:44 +02:00
if (srv_close (&srv) < 0) {
handle_error("srv_close < 0");
}
log_info ("remoted ended");
2017-08-23 20:57:44 +02:00
return EXIT_SUCCESS;
}