1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
/*
* VUOS: view OS project
* Copyright (C) 2018 Renzo Davoli <renzo@cs.unibo.it>
* VirtualSquare team.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <getopt.h>
#include <pwd.h>
#include <grp.h>
#include <string.h>
#include <libgen.h>
#include <vulib.h>
static char *short_options = "c:ls:mph";
static struct option long_options[] = {
{"command", 1, 0, 'c'},
{"login", 0, 0, 'l'},
{"shell", 1, 0, 's'},
{"preserve-environment", 0, 0, 'p'},
{"help", 0, 0, 'h'},
{0, 0, 0, 0}
};
char *command;
int login;
char *shell;
int change_environment = 1;
char *user;
int uid;
int gid;
char *arg0;
int ngroups;
gid_t *groups;
struct inheritenv {
const char *tag;
char *value;
} inheritenv[] = {
{.tag = "TERM"},
{.tag = "COLORTERM"},
{.tag = "DISPLAY"},
{.tag = "XAUTHORITY"},
{NULL, NULL}
};
void usage(char *argv0)
{
char *name=basename(argv0);
fprintf(stderr,
"Usage: %s [options] [LOGIN]\n"
"\n"
"Options:\n"
" -c, --command COMMAND pass COMMAND to the invoked shell\n"
" -h, --help display this help message and exit\n"
" -, -l, --login make the shell a login shell\n"
" -m, -p,\n"
" --preserve-environment do not reset environment variables, and\n"
" keep the same shell\n"
" -s, --shell SHELL use SHELL instead of the default in passwd\n"
"\n",
name
);
exit(2);
}
char *getlogindefs(char *tag) {
char *line = NULL;
size_t linelen = 0;
FILE *f=fopen("/etc/login.defs","r");
char *retvalue = NULL;
if (f) {
while (retvalue == NULL && getline(&line, &linelen, f) > 0) {
char *s = line;
while (*s==' ' || *s=='\t') s++;
if (*s=='#') continue;
if (strncmp(tag,s,strlen(tag))!=0) continue;
s+=strlen(tag);
if (*s != ' ' && *s != '\t') continue;
while (*s==' ' || *s=='\t') s++;
s[strlen(s)-1]=0;
retvalue = strdup(s);
}
fclose(f);
if (line) free(line);
}
return retvalue;
}
void setpath(void)
{
char *tag = (uid==0)?"ENV_SUPATH":"ENV_PATH";
char *path = getlogindefs(tag);
if (path) {
char *cleanpath = path;
if (strncmp("PATH=",cleanpath,5) == 0)
cleanpath += 5;
setenv("PATH",cleanpath,1);
free(path);
} else {
if (uid)
path="/bin:/usr/bin";
else
path="/sbin:/bin:/usr/sbin:/usr/bin";
setenv("PATH",path,1);
}
}
void loginenv(void) {
int i;
for (i = 0; inheritenv[i].tag != NULL; i++) {
char *value = getenv(inheritenv[i].tag);
if (value)
inheritenv[i].value = strdup(value);
}
clearenv();
for (i = 0; inheritenv[i].tag != NULL; i++) {
if (inheritenv[i].value) {
setenv(inheritenv[i].tag, inheritenv[i].value, 1);
free(inheritenv[i].value);
}
}
}
int main(int argc, char *argv[])
{
int c;
struct passwd *pwd;
if (vu_getinfo(NULL) < 0)
execvp("su",argv);
while (1) {
int option_index = 0;
c = getopt_long(argc, argv, short_options,
long_options, &option_index);
if (c == -1)
break;
switch (c) {
case 'c': command=optarg;
break;
case 'l': login=1;
break;
case 's': shell=optarg;
break;
case 'm':
case 'p': change_environment = 0;
break;
case 'h': usage(argv[0]);
break;
default:
usage(argv[0]);
break;
}
}
if (argc > optind && strcmp(argv[optind],"-")==0) {
login = 1;
optind++;
}
if (argc > optind)
user=argv[optind];
if (argc > optind+1)
usage(argv[0]);
if (user == NULL)
user = "root";
pwd=getpwnam(user);
if (pwd == NULL) {
fprintf(stderr,"Unknown id: %s\n",user);
exit(1);
}
uid=pwd->pw_uid;
gid=pwd->pw_gid;
if (login && change_environment)
loginenv();
if (shell == NULL) {
if (change_environment)
shell = pwd->pw_shell;
else
shell = getenv("SHELL");
}
if (shell == NULL)
shell="/bin/sh";
unsetenv("IFS");
if (change_environment) {
setenv("USER",user,1);
setenv("LOGNAME",user,1);
setenv("HOME",pwd->pw_dir,1);
setenv("SHELL",shell,1);
}
if (login == 0 || asprintf(&arg0,"-%s",shell) < 0)
arg0=shell;
getgrouplist(user,gid,NULL,&ngroups);
groups=malloc(ngroups * sizeof (gid_t));
if (groups == NULL)
ngroups=0;
else
getgrouplist(user,gid,groups,&ngroups);
if (setresuid(uid,uid,uid) < 0 ||
setresgid(gid,gid,gid) < 0)
perror(argv[0]);
else {
setgroups(ngroups,groups);
setpath();
if (login) {
int defhome = 0;
char *defhomeopt = getlogindefs("DEFAULT_HOME");
if (defhomeopt) {
if (strcmp(defhomeopt, "yes") == 0)
defhome = 1;
free(defhomeopt);
}
if (chdir(pwd->pw_dir) < 0) {
if (defhome == 0 || chdir("/") < 0) {
perror(argv[0]);
exit(1);
}
}
}
if (command)
execl(shell,arg0,"-c",command,(char *)0);
else
execl(shell,arg0,(char *)0);
perror(arg0);
}
exit(1);
return 0;
}
|