2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 #include <afsconfig.h>
11 #include "afs/param.h"
14 #include "afs/sysincludes.h" /* Standard vendor system headers */
15 #include "afsincludes.h" /* Afs-based standard headers */
16 #include "afs/afs_stats.h"
17 #include "afs/unified_afs.h"
18 #include "rx/rx_globals.h"
23 struct afspag_cell *next;
28 afs_rwlock_t afs_xpagcell;
29 afs_rwlock_t afs_xpagsys;
30 static int lastcell = 0;
31 static struct afspag_cell *cells = 0;
32 static struct afspag_cell *primary_cell = 0;
36 afspag_GetCell(char *acell)
38 struct afspag_cell *tcell;
40 ObtainWriteLock(&afs_xpagcell, 820);
42 for (tcell = cells; tcell; tcell = tcell->next) {
43 if (!strcmp(acell, tcell->cellname))
48 tcell = afs_osi_Alloc(sizeof(struct afspag_cell));
51 tcell->cellname = afs_osi_Alloc(strlen(acell) + 1);
52 if (!tcell->cellname) {
53 afs_osi_Free(tcell, sizeof(struct afspag_cell));
57 strcpy(tcell->cellname, acell);
58 tcell->cellnum = ++lastcell;
61 if (!primary_cell) primary_cell = tcell;
65 ReleaseWriteLock(&afs_xpagcell);
71 afspag_GetPrimaryCell(void)
73 struct afspag_cell *tcell;
75 ObtainWriteLock(&afs_xpagcell, 821);
77 ReleaseWriteLock(&afs_xpagcell);
83 afspag_SetPrimaryCell(char *acell)
85 struct afspag_cell *tcell;
87 tcell = afspag_GetCell(acell);
88 ObtainWriteLock(&afs_xpagcell, 822);
90 ReleaseWriteLock(&afs_xpagcell);
95 afspag_PUnlog(char *ain, afs_int32 ainSize, afs_ucred_t **acred)
102 if (!afs_resourceinit_flag) /* afs daemons haven't started yet */
103 return EIO; /* Inappropriate ioctl for device */
105 pag = PagInCred(*acred);
106 uid = (pag == NOPAG) ? afs_cr_uid(*acred) : pag;
108 ObtainWriteLock(&afs_xuser, 823);
109 for (tu = afs_users[i]; tu; tu = tu->next) {
110 if (tu->uid == uid) {
111 tu->states &= ~UHasTokens;
112 tu->viceId = UNDEFVID;
113 afs_FreeTokens(&tu->tokens);
115 /* set the expire times to 0, causes
116 * afs_GCUserData to remove this entry
122 ReleaseWriteLock(&afs_xuser);
128 afspag_PSetTokens(char *ain, afs_int32 ainSize, afs_ucred_t **acred)
132 struct afspag_cell *tcell;
133 struct ClearToken clear;
136 afs_int32 flag, set_parent_pag = 0;
139 AFS_STATCNT(PSetTokens);
140 if (!afs_resourceinit_flag) {
143 memcpy((char *)&i, ain, sizeof(afs_int32));
144 ain += sizeof(afs_int32);
145 stp = ain; /* remember where the ticket is */
146 if (i < 0 || i > MAXKTCTICKETLEN)
147 return EINVAL; /* malloc may fail */
149 ain += i; /* skip over ticket */
150 memcpy((char *)&i, ain, sizeof(afs_int32));
151 ain += sizeof(afs_int32);
152 if (i != sizeof(struct ClearToken)) {
155 memcpy((char *)&clear, ain, sizeof(struct ClearToken));
156 if (clear.AuthHandle == -1)
157 clear.AuthHandle = 999; /* more rxvab compat stuff */
158 ain += sizeof(struct ClearToken);
159 if (ainSize != 2 * sizeof(afs_int32) + stLen + sizeof(struct ClearToken)) {
160 /* still stuff left? we've got primary flag and cell name. Set these */
161 memcpy((char *)&flag, ain, sizeof(afs_int32)); /* primary id flag */
162 ain += sizeof(afs_int32); /* skip id field */
163 /* rest is cell name, look it up */
164 /* some versions of gcc appear to need != 0 in order to get this right */
165 if ((flag & 0x8000) != 0) { /* XXX Use Constant XXX */
169 tcell = afspag_GetCell(ain);
171 /* default to primary cell, primary id */
172 flag = 1; /* primary id */
173 tcell = afspag_GetPrimaryCell();
175 if (!tcell) return ESRCH;
176 if (set_parent_pag) {
177 #if defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
179 osi_procname(procname, 256);
181 afs_warnuser("Process %d (%s) tried to change pags in PSetTokens\n",
182 MyPidxx2Pid(MyPidxx), procname);
183 setpag(osi_curproc(), acred, -1, &pag, 1);
185 setpag(acred, -1, &pag, 1);
188 pag = PagInCred(*acred);
189 uid = (pag == NOPAG) ? afs_cr_uid(*acred) : pag;
190 /* now we just set the tokens */
191 tu = afs_GetUser(uid, tcell->cellnum, WRITE_LOCK);
193 tu->cellinfo = (void *)tcell;
194 afs_FreeTokens(&tu->tokens);
195 afs_AddRxkadToken(&tu->tokens, stp, stLen, &clear);
197 afs_stats_cmfullperf.authent.TicketUpdates++;
198 afs_ComputePAGStats();
199 #endif /* AFS_NOSTATS */
200 tu->states |= UHasTokens;
201 tu->states &= ~UTokensBad;
202 afs_SetPrimary(tu, flag);
203 tu->tokenTime = osi_Time();
204 afs_PutUser(tu, WRITE_LOCK);
211 SPAGCB_GetCreds(struct rx_call *a_call, afs_int32 a_uid,
215 union tokenUnion *token;
217 int bucket, count, i = 0, clen;
222 memset(a_creds, 0, sizeof(struct CredInfos));
223 if ((rx_HostOf(rx_PeerOf(rx_ConnectionOf(a_call))) != afs_nfs_server_addr
224 || rx_PortOf(rx_PeerOf(rx_ConnectionOf(a_call))) != htons(7001))
225 #if 0 /* for debugging ONLY! */
226 && rx_PortOf(rx_PeerOf(rx_ConnectionOf(a_call))) != htons(7901)
233 ObtainWriteLock(&afs_xuser, 823);
235 /* count them first */
236 bucket = UHash(a_uid);
237 for (count = 0, tu = afs_users[bucket]; tu; tu = tu->next) {
238 if (tu->uid == a_uid) count++;
242 ReleaseWriteLock(&afs_xuser);
247 a_creds->CredInfos_val = afs_osi_Alloc(count * sizeof(CredInfo));
248 if (!a_creds->CredInfos_val)
250 a_creds->CredInfos_len = count;
251 memset(a_creds->CredInfos_val, 0, count * sizeof(CredInfo));
253 for (i = 0, tu = afs_users[bucket]; tu; tu = tu->next, i++) {
254 if (tu->uid == a_uid && tu->cellinfo &&
255 (tu->states & UHasTokens) && !(tu->states & UTokensBad)) {
257 token = afs_FindToken(tu->tokens, RX_SECIDX_KAD);
259 tci = &a_creds->CredInfos_val[i];
260 tci->vid = token->rxkad.clearToken.ViceId;
261 tci->ct.AuthHandle = token->rxkad.clearToken.AuthHandle;
262 memcpy(tci->ct.HandShakeKey,
263 token->rxkad.clearToken.HandShakeKey, 8);
264 tci->ct.ViceId = token->rxkad.clearToken.ViceId;
265 tci->ct.BeginTimestamp = token->rxkad.clearToken.BeginTimestamp;
266 tci->ct.EndTimestamp = token->rxkad.clearToken.EndTimestamp;
268 cellname = ((struct afspag_cell *)(tu->cellinfo))->cellname;
269 clen = strlen(cellname) + 1;
270 tci->cellname = afs_osi_Alloc(clen);
273 memcpy(tci->cellname, cellname, clen);
275 tci->st.st_len = token->rxkad.ticketLen;
276 tci->st.st_val = afs_osi_Alloc(token->rxkad.ticketLen);
277 if (!tci->st.st_val) {
278 afs_osi_Free(tci->cellname, clen);
281 memcpy(tci->st.st_val,
282 token->rxkad.ticket, token->rxkad.ticketLen);
283 if (tu->states & UPrimary)
284 tci->states |= UPrimary;
288 ReleaseWriteLock(&afs_xuser);
293 if (a_creds->CredInfos_val) {
295 afs_osi_Free(a_creds->CredInfos_val[i].st.st_val,
296 a_creds->CredInfos_val[i].st.st_len);
297 afs_osi_Free(a_creds->CredInfos_val[i].cellname,
298 strlen(a_creds->CredInfos_val[i].cellname) + 1);
300 afs_osi_Free(a_creds->CredInfos_val, count * sizeof(CredInfo));
303 ReleaseWriteLock(&afs_xuser);
310 afspag_PSetSysName(char *ain, afs_int32 ainSize, afs_ucred_t **acred)
312 int setsysname, count, t;
316 memcpy((char *)&setsysname, ain, sizeof(afs_int32));
317 ain += sizeof(afs_int32);
319 return 0; /* nothing to do locally */
322 if (setsysname < 0 || setsysname > MAXNUMSYSNAMES)
324 if (!afs_osi_suser(*acred))
326 for (cp = ain, count = 0; count < setsysname; count++) {
327 /* won't go past end of ain since maxsysname*num < ain length */
329 if (t >= MAXSYSNAME || t <= 0)
331 /* check for names that can shoot us in the foot */
332 if (*cp == '.' && (cp[1] == 0 || (cp[1] == '.' && cp[2] == 0)))
337 ObtainWriteLock(&afs_xpagsys, 824);
338 for (cp = ain, count = 0; count < setsysname; count++) {
340 memcpy(afs_sysnamelist[count], cp, t + 1);
343 afs_sysnamecount = setsysname;
345 ReleaseWriteLock(&afs_xpagsys);
347 /* Change the arguments so we pass the allpags flag to the server */
348 setsysname |= 0x8000;
349 memcpy(setp, (char *)&setsysname, sizeof(afs_int32));
355 SPAGCB_GetSysName(struct rx_call *a_call, afs_int32 a_uid,
356 SysNameList *a_sysnames)
362 ObtainReadLock(&afs_xpagsys);
363 memset(a_sysnames, 0, sizeof(struct SysNameList));
365 a_sysnames->SysNameList_len = afs_sysnamecount;
366 a_sysnames->SysNameList_val =
367 afs_osi_Alloc(afs_sysnamecount * sizeof(SysNameEnt));
368 if (!a_sysnames->SysNameList_val)
371 for (i = 0; i < afs_sysnamecount; i++) {
372 a_sysnames->SysNameList_val[i].sysname =
373 afs_osi_Alloc(strlen(afs_sysnamelist[i]) + 1);
374 if (!a_sysnames->SysNameList_val[i].sysname)
376 strcpy(a_sysnames->SysNameList_val[i].sysname, afs_sysnamelist[i]);
379 ReleaseReadLock(&afs_xpagsys);
384 if (a_sysnames->SysNameList_val) {
386 afs_osi_Free(a_sysnames->SysNameList_val[i].sysname,
387 strlen(a_sysnames->SysNameList_val[i].sysname) + 1);
389 afs_osi_Free(a_sysnames->SysNameList_val,
390 afs_sysnamecount * sizeof(SysNameEnt));
393 ReleaseWriteLock(&afs_xpagsys);