[BACK]Return to tcfs_flags.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tcfs

File: [local] / src / usr.bin / tcfs / Attic / tcfs_flags.c (download)

Revision 1.1, Sun Jun 18 22:07:24 2000 UTC (23 years, 11 months ago) by provos
Branch: MAIN

Initial revision

/*
 *	Transparent Cryptographic File System (TCFS) for NetBSD 
 *	Author and mantainer: 	Luigi Catuogno [luicat@tcfs.unisa.it]
 *	
 *	references:		http://tcfs.dia.unisa.it
 *				tcfs-bsd@tcfs.unisa.it
 */

/*
 *	Base utility set v0.1
 */

#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/types.h>
#include <ctype.h>
#include <pwd.h>
#include <unistd.h>
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/wait.h>
#include <sys/stat.h> 

#include <miscfs/tcfs/tcfs.h>
#include <miscfs/tcfs/tcfs_fileinfo.h>
#include "tcfsdefines.h"

#include <des.h>

tcfs_flags
tcfs_getflags(int fd)
{
	tcfs_flags r;
	struct stat s;

	if (fstat(fd,&s) < 0) {
		 r.flag = -1;
	} else
		 r.flag = s.st_flags;
	return r;
}
		 
	
tcfs_flags
tcfs_setflags(int fd, tcfs_flags x)
{
	tcfs_flags r,n;
	r = tcfs_getflags(fd);
	
	if (r.flag == -1) {
		 r.flag = -1;
		 return r;
	}

	n = x;
	FI_SET_SP(&n,FI_SPURE(&r));

	if (fchflags(fd, n.flag))
		 r.flag = -1;

	return r;
}