summaryrefslogtreecommitdiff
path: root/sys/miscfs/tcfs/tcfs_cmd.c
blob: 8234595e8fe4b8bc895bd532537c5c5770a3e4f5 (plain)
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
/*	$OpenBSD: tcfs_cmd.c,v 1.3 2000/06/17 20:25:54 provos Exp $	*/
/*
 * Copyright 2000 The TCFS Project at http://tcfs.dia.unisa.it/
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. The name of the authors may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/vnode.h>
#include <sys/mount.h>
#include <sys/namei.h>
#include <sys/malloc.h>
#include <sys/buf.h>
#include <miscfs/tcfs/tcfs.h>
#include <miscfs/tcfs/tcfs_rw.h>
#include <miscfs/tcfs/tcfs_keytab.h>
#include <miscfs/tcfs/tcfs_cmd.h>
#include <miscfs/tcfs/tcfs_cipher.h>

int
tcfs_init_mp(struct tcfs_mount *mp, struct tcfs_args *req)
{
	int result = 0;
	int status = 0;

	if (!(mp->tcfs_uid_kt = tcfs_keytab_init())) {
		result = ENOMEM;
		status = ALLOCATION_FAILED;
	} else {
		if (!(mp->tcfs_gid_kt = tcfs_keytab_init())) {
			tcfs_keytab_dispose(mp->tcfs_uid_kt);
			status = ALLOCATION_FAILED;
			result = ENOMEM;
		} else {
			if ((req->cipher_num >= MaxNumOfCipher)||
			    (tcfs_cipher_vect[req->cipher_num].cipher_keysize == 0)) {
			 	result = EINVAL;
			 	status = BAD_CIPHER_NUMBER;
			 	tcfs_keytab_dispose(mp->tcfs_uid_kt);
			 	tcfs_keytab_dispose(mp->tcfs_gid_kt);
			} else
				mp->tcfs_cipher_num=req->cipher_num;
		}
	}
	
	(void)tcfs_set_status(mp,req,status);
	return result;
}

int
tcfs_exec_cmd(struct tcfs_mount *mp, struct tcfs_args *req)
{
	void *ks;
	int result = 0;
	int status = 0;
	

	switch (req->cmd) {
	case TCFS_PUT_UIDKEY:
		ks=TCFS_INIT_KEY(mp, req->tcfs_key);
		if (!ks) {
			result = ENOMEM;
			status = ALLOCATION_FAILED;
			break;
		}
		result = tcfs_keytab_push_uid(mp->tcfs_uid_kt, req->user,ks);
		if(result) {
			TCFS_CLEANUP_KEY(mp,ks);
			status = PUSHKEY_ERROR;
		}
		break;

	case TCFS_RM_UIDKEY:
		result = tcfs_keytab_rm_uid(mp->tcfs_uid_kt, req->user);
		status = (result ? RMKEY_ERROR : TCFS_OK);
		break;

	case TCFS_PUT_PIDKEY:
		ks = TCFS_INIT_KEY(mp, req->tcfs_key);
		if(!ks) {
			result = ENOMEM;
			status = ALLOCATION_FAILED;
			break;
		}
		result = tcfs_keytab_push_pid(mp->tcfs_uid_kt, req->user,
					      req->proc, ks);
		if(result) {
			TCFS_CLEANUP_KEY(mp,ks);
			status = PUSHKEY_ERROR;
		}
		break;

	case TCFS_RM_PIDKEY:
		result = tcfs_keytab_rm_pid(mp->tcfs_uid_kt, 
					    req->user, req->proc);
		status = (result ? RMKEY_ERROR : TCFS_OK);
		break;

	case TCFS_PUT_GIDKEY:
		result = tcfs_keytab_push_gid(mp, mp->tcfs_gid_kt, req->user,
					      req->group, req->treshold,
					      req->tcfs_key);
			
		status = (result ? PUSHKEY_ERROR : TCFS_OK);
		break; 

	case TCFS_RM_GIDKEY:
		result = tcfs_keytab_rm_gid(mp->tcfs_gid_kt, req->user,
					    req->group);
		status = (result ? RMKEY_ERROR : TCFS_OK);
		break;

	case TCFS_GET_STATUS:
		return tcfs_set_status(mp, req, TCFS_OK);
	}
	(void)tcfs_set_status(mp, req, status);
	return result;
}

int
tcfs_set_status(struct tcfs_mount *mp, struct tcfs_args *req, int error)
{
	req->st.status = error;
	req->st.tcfs_version = TCFS_VERSION_NUM;

	if(error != TCFS_OK)
		return error;

	req->st.n_ukey = mp->tcfs_uid_kt->cnt;
	req->st.n_gkey = mp->tcfs_gid_kt->cnt;
	strncpy(req->st.cipher_desc, TCFS_CIPHER_DESC(mp), MaxCipherNameLen);
	req->st.cipher_keysize = TCFS_CIPHER_KEYSIZE(mp);
	req->st.cipher_version = TCFS_CIPHER_VERSION(mp);

	return error;
}
	
int
tcfs_checkukey(struct ucred *c, struct proc *p, struct vnode *vp)
{
	return tcfs_keytab_check_uid(TCFS_VP2UKT(vp), c->cr_uid);
}

void *
tcfs_getukey(struct ucred *c, struct proc *p, struct vnode *vp)
{
	tcfs_keytab_node *n;

	n = tcfs_keytab_fetch_uid(TCFS_VP2UKT(vp),c->cr_uid);

	if (n)
		return n->kn_key;
	else
		return (void*)NULL;
}

int
tcfs_checkpkey(struct ucred *c, struct proc *p, struct vnode *vp)
{
	struct proc *cp;

	if (!p)
		cp = curproc;
	else
		cp = p;

	return tcfs_keytab_check_pid(TCFS_VP2UKT(vp), c->cr_uid, cp->p_pid);
}

void *
tcfs_getpkey(struct ucred *c, struct proc *p, struct vnode *vp)
{
	tcfs_keytab_node *n;
	struct proc *cp;

	if (!p)
		cp = curproc;
	else
		cp = p;
	
	n = tcfs_keytab_fetch_pid(TCFS_VP2UKT(vp), c->cr_uid, cp->p_pid);

	if (n)
		return n->kn_key;
	else
		return (void*)NULL;
}

int 
tcfs_checkgkey(struct ucred *c, struct proc *p, struct vnode *vp)
{
	return tcfs_keytab_check_uid(TCFS_VP2GKT(vp), c->cr_gid);
}

void *
tcfs_getgkey(struct ucred *c, struct proc *p, struct vnode *vp)
{
	tcfs_keytab_node *n;

	n = tcfs_keytab_fetch_gid(TCFS_VP2GKT(vp), c->cr_gid);

	if (n)
		return n->kn_key;
	else
		return (void*)NULL;
}