getty-generator.c revision c79bb9e4e2e5b96b2ae2c432bf8b0ff9674fce60
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include "log.h"
#include "util.h"
#include "mkdir.h"
#include "unit-name.h"
#include "virt.h"
#include "fileio.h"
static const char *arg_dest = "/tmp";
int r;
r = log_oom();
goto finish;
}
if (r < 0) {
/* In case console=hvc0 is passed this will very likely result in EEXIST */
r = 0;
else {
r = -errno;
}
}
return r;
}
static int add_serial_getty(const char *tty) {
char *n;
int r;
if (!n)
return log_oom();
r = add_symlink("serial-getty@.service", n);
free(n);
return r;
}
static const char virtualization_consoles[] =
"hvc0\0"
"xvc0\0"
"hvsi0\0";
int r = EXIT_SUCCESS;
char *active;
const char *j;
log_error("This program takes three or no arguments.");
return EXIT_FAILURE;
}
if (argc > 1)
log_open();
umask(0022);
if (detect_container(NULL) > 0) {
log_debug("Automatically adding console shell.");
r = EXIT_FAILURE;
/* Don't add any further magic if we are in a container */
goto finish;
}
const char *tty;
if (tty)
tty ++;
else
/* Automatically add in a serial getty on the kernel
* console */
else {
int k;
/* We assume that gettys on virtual terminals are
* started via manual configuration and do this magic
* only for non-VC terminals. */
k = add_serial_getty(tty);
if (k < 0) {
r = EXIT_FAILURE;
goto finish;
}
}
}
/* Automatically add in a serial getty on the first
* virtualizer console */
char *p;
int k;
log_oom();
r = EXIT_FAILURE;
goto finish;
}
free(p);
if (k < 0)
continue;
k = add_serial_getty(j);
if (k < 0) {
r = EXIT_FAILURE;
goto finish;
}
}
return r;
}