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
|
/* $OpenBSD: tcfslib.h,v 1.8 2000/06/20 07:40:17 fgsch Exp $ */
/*
* 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 <unistd.h>
#include "tcfsdefines.h"
#include "tcfspwdb.h"
extern int tcfspwdbr_new __P((tcfspwdb **));
extern int tcfspwdbr_edit __P((tcfspwdb **, int, ...));
extern int tcfspwdbr_read __P((tcfspwdb *, int, ...));
extern void tcfspwdbr_dispose __P((tcfspwdb *));
extern int tcfsgpwdbr_new __P((tcfsgpwdb **));
extern int tcfsgpwdbr_edit __P((tcfsgpwdb **, int, ...));
extern int tcfsgpwdbr_read __P((tcfsgpwdb *, int, ...));
extern void tcfsgpwdbr_dispose __P((tcfsgpwdb *));
extern int tcfs_chgpwd __P((char *, char *, char *));
extern int tcfs_group_chgpwd __P((char *, gid_t, char *, char *));
extern int tcfs_chgpassword __P((char *, char *, char *));
extern int tcfs_decrypt_key __P((char *, u_char *, u_char *, int));
extern int tcfs_encrypt_key __P((char *, u_char *, int, u_char *, int));
extern char *tcfs_decode __P((char *, int *));
extern char *tcfs_encode __P((char *, int ));
extern char *gentcfskey __P((void));
extern int tcfs_getstatus __P((char *, struct tcfs_status *));
extern int tcfs_getfspath __P((char *, char *));
extern int tcfs_proc_enable __P((char *, uid_t, pid_t, char *));
extern int tcfs_proc_disable __P((char *, uid_t, pid_t));
extern int tcfs_user_enable __P((char *, uid_t, u_char *));
extern int tcfs_user_disable __P((char *, uid_t));
extern int tcfs_group_enable __P((char *, uid_t, gid_t, int, char *));
extern int tcfs_group_disable __P((char *, uid_t, gid_t));
extern tcfspwdb *
tcfs_getpwnam __P((char *, tcfspwdb **));
extern int tcfs_putpwnam __P((char *, tcfspwdb *, int));
extern int unix_auth __P((char **, char **, int));
extern tcfsgpwdb *
tcfs_ggetpwnam __P((char *, gid_t, tcfsgpwdb **));
extern int tcfs_gputpwnam __P((char *, tcfsgpwdb *, int));
extern int tcfs_get_label __P((char *, char *, int *));
extern int tcfs_verify_fs __P((char *));
extern int tcfs_callfunction __P((char *, struct tcfs_args *));
|