2020-11-28 15:12:32 -05:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
2020-11-28 15:50:18 -05:00
|
|
|
# provision.pl
|
|
|
|
# script to provision a tilde instance
|
|
|
|
#
|
2020-11-28 15:12:32 -05:00
|
|
|
# This script is intended to be run on a fresh
|
|
|
|
# OpenBSD install
|
2020-11-28 15:50:18 -05:00
|
|
|
#
|
|
|
|
# gashapwn
|
|
|
|
# Nov 2020
|
2020-11-28 15:12:32 -05:00
|
|
|
|
2021-03-06 18:48:20 -05:00
|
|
|
my $DEV_FLAG = shift || "";
|
|
|
|
|
2020-11-28 16:51:19 -05:00
|
|
|
my $GIT_REPO = 'https://git.lain.church/gashapwn/lyadmin.git';
|
2021-03-06 18:48:20 -05:00
|
|
|
my $GIT_BRANCH = length($DEV_FLAG) > 0 ? "-b gasha-branch " : "";
|
2020-11-28 17:06:51 -05:00
|
|
|
my ($REPO_DIR) = $GIT_REPO =~ /\/([^\/]*)\.git$/;
|
2020-11-29 22:07:54 -05:00
|
|
|
my $INST_DIR = "/tilde";
|
|
|
|
|
2020-11-29 22:34:21 -05:00
|
|
|
my $SVC_ACCT = "_lingyind";
|
2020-11-28 15:50:18 -05:00
|
|
|
|
|
|
|
my $pwuid;
|
2020-11-28 15:12:32 -05:00
|
|
|
|
2020-11-28 17:59:41 -05:00
|
|
|
my $admin_un;
|
2020-11-28 16:51:19 -05:00
|
|
|
my $admin_home_dir;
|
2020-11-28 15:50:18 -05:00
|
|
|
|
2021-03-02 10:35:53 -05:00
|
|
|
# Given a username... prompts and creates that user
|
|
|
|
sub create(){
|
|
|
|
my $id;
|
|
|
|
|
|
|
|
my $username;
|
|
|
|
my $user_email;
|
|
|
|
my $pub_key;
|
|
|
|
|
|
|
|
my $p0;
|
|
|
|
|
|
|
|
# Prompts...
|
|
|
|
$p0 = [
|
|
|
|
"Enter username: ",
|
|
|
|
"Enter pubkey: "
|
|
|
|
];
|
|
|
|
|
|
|
|
# read in username and validate
|
|
|
|
printf($p0->[0]);
|
|
|
|
$username = <STDIN>;
|
|
|
|
chomp $username;
|
|
|
|
|
|
|
|
if(length($username) > 31 || !($username =~ /^[A-Za-z][A-Za-z0-9]+$/)){
|
|
|
|
printf("%s is an INVALID username\n", $id);
|
|
|
|
die ("oh no");
|
|
|
|
}
|
|
|
|
|
|
|
|
# read in pub key
|
|
|
|
printf($p0->[1]);
|
|
|
|
$pub_key = <STDIN>;
|
|
|
|
chomp $pub_key;
|
2021-03-02 11:02:22 -05:00
|
|
|
|
2021-03-02 10:35:53 -05:00
|
|
|
{
|
|
|
|
# Prompt to make sure the username looks OK
|
|
|
|
my $cmd;
|
|
|
|
$cmd = "useradd -m " . $username;
|
|
|
|
printf("Y/N is this command OK?: %s\n", $cmd);
|
|
|
|
|
|
|
|
if(!(<STDIN> =~ /^y/i)){
|
|
|
|
die "provision cancelled...";
|
|
|
|
}
|
|
|
|
|
|
|
|
# create the user
|
|
|
|
system($cmd);
|
|
|
|
system("echo '".$pub_key."' > /home/$username/.ssh/authorized_keys");
|
|
|
|
system("chmod 711 /home/$username");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-28 15:50:18 -05:00
|
|
|
# Make sure we're running as root
|
|
|
|
$pwuid = getpwuid( $< );
|
|
|
|
|
|
|
|
if($pwuid ne "root"){
|
|
|
|
die "script must be run as root";
|
|
|
|
}
|
|
|
|
|
2021-03-02 11:02:22 -05:00
|
|
|
# Make sure script is provisioning a fresh instance
|
|
|
|
# and doesn't clobber users existing configs
|
|
|
|
printf("This script is meant to be run on a fresh install\n");
|
|
|
|
printf("Y/N OK to proceed?");
|
|
|
|
|
|
|
|
if(!(<STDIN> =~ /^y/i)){
|
|
|
|
die "provision cancelled...";
|
|
|
|
}
|
|
|
|
|
2020-12-20 02:39:34 -05:00
|
|
|
unless( ($admin_un) = `tail /etc/passwd | grep -v "nobody:"` =~ /([^:\n]+):[^:]+:[0-9]{4,}/){
|
2021-03-02 10:35:53 -05:00
|
|
|
printf("to provision the instance there must be a non root user with an authorized_keys file");
|
|
|
|
printf("creating user...\n");
|
|
|
|
create();
|
2020-11-28 15:12:32 -05:00
|
|
|
}
|
|
|
|
|
2020-11-28 16:51:19 -05:00
|
|
|
# install git
|
|
|
|
system("pkg_add git");
|
2020-11-29 22:07:54 -05:00
|
|
|
|
|
|
|
# Setup install dir
|
|
|
|
system("mkdir $INST_DIR");
|
2020-11-29 22:16:31 -05:00
|
|
|
system("useradd -d $INST_DIR -r 100..900 $SVC_ACCT");
|
|
|
|
system("chown $SVC_ACCT:$SVC_ACCT $INST_DIR");
|
2020-11-29 22:07:54 -05:00
|
|
|
chdir $INST_DIR;
|
|
|
|
|
2020-11-28 18:14:54 -05:00
|
|
|
# clone repo
|
2021-03-06 18:48:20 -05:00
|
|
|
system("su $SVC_ACCT -c 'git clone $GIT_BRANCH$GIT_REPO'");
|
2020-11-28 17:06:51 -05:00
|
|
|
chdir $REPO_DIR;
|
2020-11-28 17:59:41 -05:00
|
|
|
|
2020-11-29 02:44:02 -05:00
|
|
|
# Copy the skel directory
|
2020-11-29 02:45:42 -05:00
|
|
|
system("mkdir ./skel/public_html/cgi");
|
2020-11-29 02:44:02 -05:00
|
|
|
system("cp -r ./skel/* /etc/skel/");
|
|
|
|
|
2020-12-20 02:39:34 -05:00
|
|
|
# Check /etc/passwd for the username created during
|
|
|
|
# installation
|
|
|
|
if( ($admin_un) = `tail /etc/passwd | grep -v "nobody:"` =~ /([^:\n]+):[^:]+:[0-9]{4,}/){
|
|
|
|
# grant doas access to admin user
|
2021-03-02 11:02:22 -05:00
|
|
|
system("echo 'permit nopass $admin_un' > /etc/doas.conf");
|
2020-12-20 02:39:34 -05:00
|
|
|
|
|
|
|
# setup admin user
|
|
|
|
system("cp -r ./skel/* /home/$admin_un/");
|
|
|
|
system("chown -R $admin_un:$admin_un /home/$admin_un");
|
|
|
|
system("echo $admin_un >> ./user_list.txt");
|
|
|
|
}
|
2020-11-29 03:04:54 -05:00
|
|
|
|
2020-11-28 17:59:41 -05:00
|
|
|
# Setup the virtual environment
|
2021-03-02 15:16:44 -05:00
|
|
|
system("pkg_add python3 openssl rust bash");
|
2020-11-29 14:58:03 -05:00
|
|
|
printf("generating virtual enviornment...\n");
|
2020-11-29 22:07:54 -05:00
|
|
|
system("su $SVC_ACCT -c 'python3 -m venv venv'");
|
2021-03-02 14:47:38 -05:00
|
|
|
printf("running pip. can take up to 3 minutes due to slow compilation.\n");
|
2021-03-02 14:31:29 -05:00
|
|
|
system("su $SVC_ACCT -c '. ./venv/bin/activate && python3 -m pip install --upgrade pip'");
|
2020-11-29 22:07:54 -05:00
|
|
|
system("su $SVC_ACCT -c '. ./venv/bin/activate && pip3 install -r requirements.txt'");
|
2020-11-28 17:02:02 -05:00
|
|
|
|
2020-11-29 23:29:02 -05:00
|
|
|
system("cp ./perl-script/conf/lingyin.rc /etc/rc.d/lingyind");
|
|
|
|
system("chmod 755 /etc/rc.d/lingyind");
|
|
|
|
system("rcctl enable lingyind");
|
2020-12-05 17:35:34 -05:00
|
|
|
system("rcctl start lingyind");
|
2020-11-29 23:29:02 -05:00
|
|
|
|
2020-11-28 17:59:41 -05:00
|
|
|
system("pkg_add p5-JSON");
|
2020-11-29 02:53:47 -05:00
|
|
|
|
|
|
|
# Install apache
|
|
|
|
system("pkg_add apache-httpd");
|
2020-11-29 14:35:08 -05:00
|
|
|
printf("configuring apache\n");
|
2020-11-29 02:53:47 -05:00
|
|
|
# enable the userdir module
|
2020-11-29 03:17:21 -05:00
|
|
|
system("sed -i -e 's/^\\(.\\)*#\\(LoadModule userdir_module\\)/\\1\\2/' /etc/apache2/httpd2.conf");
|
|
|
|
system("sed -i -e 's/^\\(.\\)*#\\(Include \\/etc\\/apache2\\/extra\\/httpd-userdir.conf\\)/\\1\\2/' /etc/apache2/httpd2.conf");
|
2020-11-29 02:53:47 -05:00
|
|
|
# Enable the CGI directory
|
|
|
|
system("echo '<Directory \"/home/*/public_html/cgi/\">
|
|
|
|
Require all granted
|
|
|
|
Options +ExecCGI
|
|
|
|
AddHandler cgi-script .cgi
|
|
|
|
</Directory>' >> /etc/apache2/extra/httpd-userdir.conf");
|
|
|
|
# Enable the CGI modules
|
2020-11-29 03:17:21 -05:00
|
|
|
system("sed -i -e 's/^\\(.\\)*#\\(LoadModule cgi_module\\)/\\1\\2/' /etc/apache2/httpd2.conf");
|
|
|
|
system("sed -i -e 's/^\\(.\\)*#\\(LoadModule cgid_module\\)/\\1\\2/' /etc/apache2/httpd2.conf");
|
2020-11-29 02:53:47 -05:00
|
|
|
# Disable directory listing
|
2020-11-29 03:17:21 -05:00
|
|
|
system("sed -i -e 's/\\(<\\/Directory>\\)/ Options -Indexes\\
|
|
|
|
\\1/g' /etc/apache2/extra/httpd-userdir.conf");
|
2020-11-29 02:53:47 -05:00
|
|
|
|
|
|
|
# Change the port to 5001
|
2020-11-29 03:17:21 -05:00
|
|
|
system("sed -i -e 's/^\\(.\\)*Listen *80/\\1Listen 5001/' /etc/apache2/httpd2.conf");
|
2020-11-29 14:35:08 -05:00
|
|
|
# rev up those apache processes!
|
2020-11-29 23:29:02 -05:00
|
|
|
system("rcctl enable apache2");
|
2020-11-29 14:35:08 -05:00
|
|
|
system("rcctl start apache2");
|
|
|
|
|
|
|
|
# Install and config haproxy
|
|
|
|
system("pkg_add haproxy");
|
|
|
|
|
|
|
|
printf("configuring haproxy\n");
|
2020-11-29 14:58:03 -05:00
|
|
|
system("cp ./perl-script/conf/haproxy.cfg /etc/haproxy/haproxy.cfg");
|
2020-11-29 23:29:02 -05:00
|
|
|
system("rcctl enable haproxy");
|
2020-11-29 14:35:08 -05:00
|
|
|
system("rcctl start haproxy");
|
2020-11-29 18:43:46 -05:00
|
|
|
|
2021-03-06 21:20:35 -05:00
|
|
|
# Install and configure ngircd and delegation
|
|
|
|
system("pkg_add ngircd");
|
|
|
|
|
|
|
|
# irc group is used for granting permissions
|
|
|
|
# to irc admins
|
|
|
|
system("groupadd irc");
|
|
|
|
system("usermod -G irc _ngircd");
|
|
|
|
# allow doas for irc admins
|
|
|
|
system("echo 'permit nopass :irc as _ngircd' >> /etc/doas.conf");
|
|
|
|
|
|
|
|
# Copy over our conf file to /etc
|
|
|
|
# and set permissions
|
2021-03-06 21:41:48 -05:00
|
|
|
chdir "$INST_DIR/$REPO_DIR";
|
2021-03-06 21:20:35 -05:00
|
|
|
system("chmod 750 /etc/ngircd");
|
|
|
|
system("cp ./perl-script/conf/ngircd.conf /etc/ngircd/ngircd.conf");
|
|
|
|
system("chmod -R 660 /etc/ngircd/*");
|
|
|
|
system("chown -R _ngircd:irc /etc/ngircd/");
|
|
|
|
|
|
|
|
# copy over our admin script and set permissions
|
|
|
|
system("cp ./perl-script/ngircd-ctl /usr/local/sbin/ngircd-ctl");
|
|
|
|
system("chown _ngircd:irc /usr/local/sbin/ngircd-ctl");
|
|
|
|
system("chmod 770 /usr/local/sbin/ngircd-ctl");
|
|
|
|
|
2021-03-02 11:02:22 -05:00
|
|
|
# Disable root login
|
2021-03-02 11:53:54 -05:00
|
|
|
system("sed -i -e 's/^[^#]*PermitRootLogin.*\$/PermitRootLogin no/' /etc/ssh/sshd_config");
|
2021-03-02 12:18:06 -05:00
|
|
|
system("sed -i -e 's/^PasswordAuthentication.*$//' /etc/ssh/sshd_config");
|
|
|
|
system("echo 'PasswordAuthentication no' >> /etc/ssh/sshd_config");
|
|
|
|
system("rcctl restart sshd");
|
2021-03-02 11:02:22 -05:00
|
|
|
|
2020-12-20 02:39:34 -05:00
|
|
|
printf("\n\nInstall complete\n");
|
|
|
|
printf("==================================================\n");
|
|
|
|
|
2021-03-02 11:02:22 -05:00
|
|
|
printf("Protip: use doas instead of sudo\n");
|
2020-12-20 02:39:34 -05:00
|
|
|
|
2021-03-02 12:18:06 -05:00
|
|
|
printf("root login and password login is now disabled, so dont forget\nto set a password\n");
|
2021-03-02 11:02:22 -05:00
|
|
|
printf("and test your pub key\n");
|
2020-11-29 23:29:02 -05:00
|
|
|
|