minix/servers/vfs/time.c

57 lines
1.6 KiB
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/* This file takes care of those system calls that deal with time.
*
* The entry points into this file are
* do_utime: perform the UTIME system call
*/
#include "fs.h"
#include <minix/callnr.h>
#include <minix/com.h>
#include "file.h"
#include "fproc.h"
#include "param.h"
2007-08-07 14:52:47 +02:00
#include "vnode.h"
#include <minix/vfsif.h>
#include "vmnt.h"
2005-04-21 16:53:53 +02:00
/*===========================================================================*
* do_utime *
*===========================================================================*/
PUBLIC int do_utime()
{
/* Perform the utime(name, timep) system call. */
register int len;
int r;
2007-08-07 14:52:47 +02:00
time_t actime, modtime;
struct vnode *vp;
2005-04-21 16:53:53 +02:00
/* Adjust for case of 'timep' being NULL;
* utime_strlen then holds the actual size: strlen(name)+1 */
2005-04-21 16:53:53 +02:00
len = m_in.utime_length;
if(len == 0) len = m_in.utime_strlen;
2005-04-21 16:53:53 +02:00
/* Temporarily open the file */
2005-04-21 16:53:53 +02:00
if (fetch_name(m_in.utime_file, len, M1) != OK) return(err_code);
if ((vp = eat_path(PATH_NOFLAGS, fp)) == NULL) return(err_code);
/* Only the owner of a file or the super user can change its name. */
r = OK;
if (vp->v_uid != fp->fp_effuid && fp->fp_effuid != SU_UID) r = EPERM;
if (m_in.utime_length == 0 && r != OK) r = forbidden(vp, W_BIT);
if (read_only(vp) != OK) r = EROFS; /* Not even su can touch if R/O */
if (r == OK) {
/* Issue request */
if(m_in.utime_length == 0) {
actime = modtime = clock_time();
} else {
actime = m_in.utime_actime;
modtime = m_in.utime_modtime;
}
r = req_utime(vp->v_fs_e, vp->v_inode_nr, actime, modtime);
2005-04-21 16:53:53 +02:00
}
2007-08-07 14:52:47 +02:00
put_vnode(vp);
return(r);
2005-04-21 16:53:53 +02:00
}