USG_PG3/usr/source/opsys/sys4.c
#
/*
* Everything in this file is a routine implementing a system call.
*/
#include "../head/param.h"
#include "../head/user.h"
#include "../head/userx.h"
#include "../head/reg.h"
#include "../head/inode.h"
#include "../head/inodex.h"
#include "../head/systm.h"
#include "../head/proc.h"
#include "../head/procx.h"
getswit()
{
u.u_ar0[R0] = SW->integ;
}
gtime()
{
u.u_ar0[R0] = time.hiword;
u.u_ar0[R1] = time.loword;
}
stime()
{
if(suser()) {
logtchg();
time.hiword = u.u_ar0[R0];
time.loword = u.u_ar0[R1];
wakeup(&tout);
}
}
setuid()
{
register uid;
uid = u.u_ar0[R0].lobyte;
if(u.u_ruid == uid.lobyte || suser()) {
u.u_uid = uid;
u.u_procp->p_uid = uid;
u.u_ruid = uid;
}
}
getuid()
{
u.u_ar0[R0] = u.u_ruid&0377;
}
setgid()
{
register gid;
gid = u.u_ar0[R0].lobyte;
if(u.u_rgid == gid.lobyte || suser()) {
u.u_gid = gid;
u.u_rgid = gid;
}
}
getgid()
{
u.u_ar0[R0] = u.u_rgid&0377;
}
getpid() /* get own and parent process id */
{
u.u_ar0[R0] = u.u_procp->p_pid;
u.u_ar0[R1] = u.u_procp->p_ppid;
}
sync()
{
update();
}
nice()
{
register n;
n = u.u_ar0[R0];
if(n > 20)
n = 20;
if(n < 0 && !suser())
n = 0;
u.u_procp->p_nice = n;
}
/*
* Unlink system call.
* Hard to avoid races here, especially
* in unlinking directories.
*/
unlink()
{
register *ip, *pp;
extern uchar;
pp = namei(&uchar, 2);
if(pp == NULL)
return;
/*
* Check for unlink(".")
* to avoid hanging on the iget
*/
if (pp->i_number != u.u_dent.u_ino)
ip = iget(pp->i_dev, u.u_dent.u_ino);
else {
ip = pp;
ip->i_count++;
}
if(ip == NULL)
goto out1;
if((ip->i_mode&IFMT)==IFDIR && !suser())
goto out;
/*
* Don't unlink a mounted file.
*/
if (ip->i_dev != pp->i_dev) {
u.u_error = EBUSY;
goto out;
}
if (ip->i_flag&ITEXT && ip->i_nlink==1) {
u.u_error = ETXTBSY;
goto out;
}
u.u_offset[1] =- DIRSIZ+2;
u.u_base = &u.u_dent;
u.u_count = DIRSIZ+2;
u.u_dent.u_ino = 0;
writei(pp);
ip->i_nlink--;
ip->i_flag =| IUPD;
out:
iput(ip);
out1:
iput(pp);
}
chdir()
{
register *ip;
extern uchar;
ip = namei(&uchar, 0);
if(ip == NULL)
return;
if((ip->i_mode&IFMT) != IFDIR) {
u.u_error = ENOTDIR;
bad:
iput(ip);
return;
}
if(access(ip, IEXEC))
goto bad;
prele(ip);
plock(u.u_cdir);
iput(u.u_cdir);
u.u_cdir = ip;
}
chmod()
{
register *ip;
if ((ip = owner()) == NULL)
return;
ip->i_mode =& ~07777;
if (u.u_uid)
u.u_arg[1] =& ~ISVTX;
ip->i_mode =| u.u_arg[1]&07777;
ip->i_flag =| IUPD;
iput(ip);
}
chown()
{
register *ip;
if (!suser() || (ip = owner()) == NULL)
return;
ip->i_uid = u.u_arg[1].lobyte;
ip->i_gid = u.u_arg[1].hibyte;
ip->i_flag =| IUPD;
iput(ip);
}
ssig()
{
register a;
register struct proc *p;
a = u.u_arg[0];
if(a<=0 || a>=NSIG || a==SIGKIL) {
u.u_error = EINVAL;
return;
}
u.u_ar0[R0] = u.u_signal[a];
u.u_signal[a] = u.u_arg[1];
u.u_procp->p_sig =& ~(1L<<(a-1));
if(a == SIGCLD) {
a = u.u_procp->p_pid;
for(p = &proc[0]; p < &proc[NPROC]; p++)
if(a == p->p_ppid && p->p_stat == SZOMB)
psignal(u.u_procp, SIGCLD);
}
}
kill()
{
register struct proc *p, *q;
register a;
int f;
f = 0;
a = u.u_ar0[R0];
q = u.u_procp;
for(p = &proc[0]; p < &proc[NPROC]; p++) {
if(a != 0 && p->p_pid != a)
continue;
if(a == 0 && (p->p_pgrp != q->p_pgrp || p <= &proc[1]))
continue;
if(u.u_uid != 0 && u.u_uid != p->p_uid)
continue;
f++;
psignal(p, u.u_arg[0]);
}
if(f == 0)
u.u_error = ESRCH;
}
times()
{
register *p;
for(p = &u.u_utime; p < &u.u_utime+4;) {
suword(u.u_arg[0], *p++);
u.u_arg[0] =+ 2;
}
}
profil()
{
u.u_prof[0] = u.u_arg[0] & ~1; /* base of sample buf */
u.u_prof[1] = u.u_arg[1]; /* size of same */
u.u_prof[2] = u.u_arg[2]; /* pc offset */
u.u_prof[3] = (u.u_arg[3]>>1) & 077777; /* pc scale */
}
/*
* alarm clock signal
*/
alarm()
{
register c, *p;
p = u.u_procp;
c = p->p_clktim;
p->p_clktim = u.u_ar0[R0];
u.u_ar0[R0] = c;
}
/*
* indefinite wait.
* no one should wakeup(&u)
*/
pause()
{
for(;;)
sleep(&u, PSLEP);
}
chroot()
{
register *oldroot, *ip;
extern uchar;
if (!suser())
return;
oldroot = u.u_rdir;
u.u_rdir = rootdir;
ip = namei(&uchar, 0);
if (ip == NULL)
goto poor;
if ((ip->i_mode&IFMT) != IFDIR) {
u.u_error = ENOTDIR;
bad:
iput(ip);
poor:
u.u_rdir = oldroot;
return;
}
u.u_rdir = ip;
iput(oldroot);
prele(ip);
}