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 <afs/param.h>
11 #include <afs/afs_args.h>
22 #include <rx_pthread.h>
24 #include <WINNT/syscfg.h>
25 #include <WINNT/afsreg.h>
26 #include <../afsrdr/kif.h>
28 /*extern void afsi_log(char *pattern, ...);*/
30 /* read/write lock for all global storage in this module */
31 osi_rwlock_t cm_callbackLock;
33 afs_int32 cm_OfflineROIsValid = 0;
35 afs_int32 cm_giveUpAllCBs = 0;
37 #ifdef AFS_FREELANCE_CLIENT
38 extern osi_mutex_t cm_Freelance_Lock;
41 /* count of # of callback breaking messages received by this CM so far. We use
42 * this count in determining whether there have been any callback breaks that
43 * apply to a call that returned a new callback. If the counter doesn't
44 * increase during a call, then we know that no callbacks were broken during
45 * that call, and thus that the callback that was just returned is still valid.
47 long cm_callbackCount;
49 /* count of number of RPCs potentially returning a callback executing now.
50 * When this counter hits zero, we can clear out the racing revokes list, since
51 * at that time, we know that none of the just-executed callback revokes will
52 * apply to any future call that returns a callback (since the latter hasn't
53 * even started execution yet).
55 long cm_activeCallbackGrantingCalls;
57 /* list of callbacks that have been broken recently. If a call returning a
58 * callback is executing and a callback revoke runs immediately after it at the
59 * server, the revoke may end up being processed before the response to the
60 * original callback granting call. We detect this by keeping a list of
61 * callback revokes that have been received since we *started* the callback
62 * granting call, and discarding any callbacks received for the same file ID,
63 * even if the callback revoke was received before the callback grant.
65 cm_racingRevokes_t *cm_racingRevokesp;
67 /* record a (potentially) racing revoke for this file ID; null means for all
68 * file IDs, and is used by InitCallBackState.
70 * The cancelFlags describe whether we're just discarding callbacks for the same
71 * file ID, the same volume, or all from the same server.
73 * Called with no locks held.
75 void cm_RecordRacingRevoke(cm_fid_t *fidp, long cancelFlags)
77 cm_racingRevokes_t *rp;
79 lock_ObtainWrite(&cm_callbackLock);
81 osi_Log3(afsd_logp, "RecordRacingRevoke Volume %d Flags %lX activeCalls %d",
82 fidp ? fidp->volume : 0, cancelFlags, cm_activeCallbackGrantingCalls);
84 if (cm_activeCallbackGrantingCalls > 0) {
85 rp = malloc(sizeof(*rp));
86 memset(rp, 0, sizeof(*rp));
87 osi_QAdd((osi_queue_t **) &cm_racingRevokesp, &rp->q);
88 rp->flags |= (cancelFlags & CM_RACINGFLAG_ALL);
89 if (fidp) rp->fid = *fidp;
90 rp->callbackCount = ++cm_callbackCount;
92 lock_ReleaseWrite(&cm_callbackLock);
96 * When we lose a callback, may have to send change notification replies.
97 * Do not call with a lock on the scp.
99 void cm_CallbackNotifyChange(cm_scache_t *scp)
105 /* why does this have to query the registry each time? */
106 if (RegOpenKeyEx( HKEY_LOCAL_MACHINE,
107 AFSREG_CLT_OPENAFS_SUBKEY,
109 KEY_READ|KEY_QUERY_VALUE,
110 &hKey) == ERROR_SUCCESS) {
112 dummyLen = sizeof(DWORD);
113 RegQueryValueEx(hKey, "CallBack Notify Change Delay", NULL, NULL,
114 (BYTE *) &dwDelay, &dummyLen);
118 if (dwDelay > 5000) /* do not allow a delay of more then 5 seconds */
121 osi_Log3(afsd_logp, "CallbackNotifyChange FileType %d Flags %lX Delay %dms",
122 scp->fileType, scp->flags, dwDelay);
127 /* for directories, this sends a change notification on the dir itself */
128 if (scp->fileType == CM_SCACHETYPE_DIRECTORY) {
130 if (scp->flags & CM_SCACHEFLAG_ANYWATCH)
132 FILE_NOTIFY_GENERIC_DIRECTORY_FILTER,
133 scp, NULL, NULL, TRUE);
135 dc_break_callback(FID_HASH_FN(&scp->fid));
138 /* and for files, this sends a change notification on the file's parent dir */
142 tfid.cell = scp->fid.cell;
143 tfid.volume = scp->fid.volume;
144 tfid.vnode = scp->parentVnode;
145 tfid.unique = scp->parentUnique;
146 dscp = cm_FindSCache(&tfid);
149 dscp->flags & CM_SCACHEFLAG_ANYWATCH )
151 FILE_NOTIFY_GENERIC_FILE_FILTER,
152 dscp, NULL, NULL, TRUE);
155 dc_break_callback(FID_HASH_FN(&dscp->fid));
158 cm_ReleaseSCache(dscp);
162 /* called with no locks held for every file ID that is revoked directly by
163 * a callback revoke call. Does not have to handle volume callback breaks,
164 * since those have already been split out.
166 * The callp parameter is currently unused.
168 void cm_RevokeCallback(struct rx_call *callp, cm_cell_t * cellp, AFSFid *fidp)
174 /* don't bother setting cell, since we won't be checking it (to aid
175 * in working with multi-homed servers: we don't know the cell if we
176 * don't recognize the IP address).
179 tfid.volume = fidp->Volume;
180 tfid.vnode = fidp->Vnode;
181 tfid.unique = fidp->Unique;
182 hash = CM_SCACHE_HASH(&tfid);
184 osi_Log3(afsd_logp, "RevokeCallback vol %u vn %u uniq %u",
185 fidp->Volume, fidp->Vnode, fidp->Unique);
187 /* do this first, so that if we're executing a callback granting call
188 * at this moment, we kill it before it can be merged in. Otherwise,
189 * it could complete while we're doing the scan below, and get missed
190 * by both the scan and by this code.
192 cm_RecordRacingRevoke(&tfid, 0);
194 lock_ObtainWrite(&cm_scacheLock);
195 /* do all in the hash bucket, since we don't know how many we'll find with
198 for (scp = cm_data.scacheHashTablep[hash]; scp; scp=scp->nextp) {
199 if (scp->fid.volume == tfid.volume &&
200 scp->fid.vnode == tfid.vnode &&
201 scp->fid.unique == tfid.unique &&
202 (cellp == NULL || scp->fid.cell == cellp->cellID) &&
203 scp->cbExpires > 0 &&
204 scp->cbServerp != NULL)
206 cm_HoldSCacheNoLock(scp);
207 lock_ReleaseWrite(&cm_scacheLock);
208 osi_Log4(afsd_logp, "RevokeCallback Discarding SCache scp 0x%p vol %u vn %u uniq %u",
209 scp, scp->fid.volume, scp->fid.vnode, scp->fid.unique);
211 lock_ObtainMutex(&scp->mx);
212 cm_DiscardSCache(scp);
213 lock_ReleaseMutex(&scp->mx);
215 cm_CallbackNotifyChange(scp);
217 lock_ObtainWrite(&cm_scacheLock);
218 cm_ReleaseSCacheNoLock(scp);
221 lock_ReleaseWrite(&cm_scacheLock);
223 osi_Log3(afsd_logp, "RevokeCallback Complete vol %u vn %u uniq %u",
224 fidp->Volume, fidp->Vnode, fidp->Unique);
227 /* called to revoke a volume callback, which is typically issued when a volume
228 * is moved from one server to another.
230 * Called with no locks held.
232 void cm_RevokeVolumeCallback(struct rx_call *callp, cm_cell_t *cellp, AFSFid *fidp)
238 osi_Log1(afsd_logp, "RevokeVolumeCallback vol %d", fidp->Volume);
240 /* do this first, so that if we're executing a callback granting call
241 * at this moment, we kill it before it can be merged in. Otherwise,
242 * it could complete while we're doing the scan below, and get missed
243 * by both the scan and by this code.
245 tfid.cell = tfid.vnode = tfid.unique = 0;
246 tfid.volume = fidp->Volume;
247 cm_RecordRacingRevoke(&tfid, CM_RACINGFLAG_CANCELVOL);
249 lock_ObtainWrite(&cm_scacheLock);
250 for (hash = 0; hash < cm_data.scacheHashTableSize; hash++) {
251 for(scp=cm_data.scacheHashTablep[hash]; scp; scp=scp->nextp) {
252 if (scp->fid.volume == fidp->Volume &&
253 (cellp == NULL || scp->fid.cell == cellp->cellID) &&
254 scp->cbExpires > 0 &&
255 scp->cbServerp != NULL) {
256 cm_HoldSCacheNoLock(scp);
257 lock_ReleaseWrite(&cm_scacheLock);
259 lock_ObtainMutex(&scp->mx);
260 osi_Log4(afsd_logp, "RevokeVolumeCallback Discarding SCache scp 0x%p vol %u vn %u uniq %u",
261 scp, scp->fid.volume, scp->fid.vnode, scp->fid.unique);
262 cm_DiscardSCache(scp);
263 lock_ReleaseMutex(&scp->mx);
265 cm_CallbackNotifyChange(scp);
266 lock_ObtainWrite(&cm_scacheLock);
267 cm_ReleaseSCacheNoLock(scp);
269 if (scp->flags & CM_SCACHEFLAG_PURERO && scp->volp) {
270 scp->volp->cbExpiresRO = 0;
274 } /* search one hash bucket */
275 } /* search all hash buckets */
277 lock_ReleaseWrite(&cm_scacheLock);
279 osi_Log1(afsd_logp, "RevokeVolumeCallback Complete vol %d", fidp->Volume);
283 * afs_data_pointer_to_int32() - returns least significant afs_int32 of the
284 * given data pointer, without triggering "cast truncates pointer"
285 * warnings. We use this where we explicitly don't care whether a
286 * pointer is truncated -- it loses information where a pointer is
287 * larger than an afs_int32.
291 afs_data_pointer_to_int32(const void *p)
294 afs_int32 i32[sizeof(void *) / sizeof(afs_int32)];
298 int i32_sub; /* subscript of least significant afs_int32 in ip.i32[] */
303 /* used to determine the byte order of the system */
306 char c[sizeof(int) / sizeof(char)];
312 /* little-endian system */
315 /* big-endian system */
316 i32_sub = (sizeof ip.i32 / sizeof ip.i32[0]) - 1;
321 return ip.i32[i32_sub];
323 /*------------------------------------------------------------------------
324 * EXPORTED SRXAFSCB_CallBack
327 * Routine called by the server-side callback RPC interface to
328 * implement passing in callback information.
332 * rx_call : Ptr to Rx call on which this request came in.
333 * fidsArrayp : Ptr to array of fids involved.
334 * cbsArrayp : Ptr to matching callback info for the fids.
340 * Nothing interesting.
344 *------------------------------------------------------------------------*/
345 /* handle incoming RPC callback breaking message.
346 * Called with no locks held.
349 SRXAFSCB_CallBack(struct rx_call *callp, AFSCBFids *fidsArrayp, AFSCBs *cbsArrayp)
353 struct rx_connection *connp;
354 struct rx_peer *peerp;
355 unsigned long host = 0;
356 unsigned short port = 0;
357 cm_server_t *tsp = NULL;
358 cm_cell_t * cellp = NULL;
360 MUTEX_ENTER(&callp->lock);
362 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
363 host = rx_HostOf(peerp);
364 port = rx_PortOf(peerp);
366 tsp = cm_FindServerByIP(host, CM_SERVER_FILE);
371 osi_Log2(afsd_logp, "SRXAFSCB_CallBack from host 0x%x port %d",
375 for (i=0; i < (long) fidsArrayp->AFSCBFids_len; i++) {
376 tfidp = &fidsArrayp->AFSCBFids_val[i];
378 if (tfidp->Volume == 0)
379 continue; /* means don't do anything */
380 else if (tfidp->Vnode == 0)
381 cm_RevokeVolumeCallback(callp, cellp, tfidp);
383 cm_RevokeCallback(callp, cellp, tfidp);
386 MUTEX_EXIT(&callp->lock);
390 /*------------------------------------------------------------------------
391 * EXPORTED SRXAFSCB_InitCallBackState
394 * Routine called by the server-side callback RPC interface to
395 * implement clearing all callbacks from this host.
398 * rx_call : Ptr to Rx call on which this request came in.
404 * Nothing interesting.
408 *------------------------------------------------------------------------*/
409 /* called with no locks by RPC system when a server indicates that it has never
410 * heard from us, or for other reasons has had to discard callbacks from us
411 * without telling us, e.g. a network partition.
414 SRXAFSCB_InitCallBackState(struct rx_call *callp)
416 struct sockaddr_in taddr;
421 struct rx_connection *connp;
422 struct rx_peer *peerp;
423 unsigned long host = 0;
424 unsigned short port = 0;
426 MUTEX_ENTER(&callp->lock);
428 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
429 host = rx_HostOf(peerp);
430 port = rx_PortOf(peerp);
433 osi_Log2(afsd_logp, "SRXAFSCB_InitCallBackState from host 0x%x port %d",
437 if ((rx_ConnectionOf(callp)) && (rx_PeerOf(rx_ConnectionOf(callp)))) {
438 taddr.sin_family = AF_INET;
439 taddr.sin_addr.s_addr = rx_HostOf(rx_PeerOf(rx_ConnectionOf(callp)));
441 tsp = cm_FindServer(&taddr, CM_SERVER_FILE);
443 osi_Log1(afsd_logp, "Init Callback State server %x", tsp);
445 /* record the callback in the racing revokes structure. This
446 * shouldn't be necessary, since we shouldn't be making callback
447 * granting calls while we're going to get an initstate call,
448 * but there probably are some obscure races, so better safe
451 * We do this first since we don't hold the cm_scacheLock and vnode
452 * locks over the entire callback scan operation below. The
453 * big loop below is guaranteed to hit any callback already
454 * processed. The call to RecordRacingRevoke is guaranteed
455 * to kill any callback that is currently being returned.
456 * Anything that sneaks past both must start
457 * after the call to RecordRacingRevoke.
459 cm_RecordRacingRevoke(NULL, CM_RACINGFLAG_CANCELALL);
461 /* now search all vnodes looking for guys with this callback, if we
462 * found it, or guys with any callbacks, if we didn't find the server
463 * (that's how multihomed machines will appear and how we'll handle
464 * them, albeit a little inefficiently). That is, we're discarding all
465 * callbacks from all hosts if we get an initstate call from an unknown
466 * host. Since these calls are rare, and multihomed servers
467 * are "rare," hopefully this won't be a problem.
469 lock_ObtainWrite(&cm_scacheLock);
470 for (hash = 0; hash < cm_data.scacheHashTableSize; hash++) {
471 for (scp=cm_data.scacheHashTablep[hash]; scp; scp=scp->nextp) {
472 cm_HoldSCacheNoLock(scp);
473 lock_ReleaseWrite(&cm_scacheLock);
474 lock_ObtainMutex(&scp->mx);
476 if (scp->cbExpires > 0 && scp->cbServerp != NULL) {
477 /* we have a callback, now decide if we should clear it */
478 if (scp->cbServerp == tsp || tsp == NULL) {
479 osi_Log4(afsd_logp, "InitCallbackState Discarding SCache scp 0x%p vol %u vn %u uniq %u",
480 scp, scp->fid.volume, scp->fid.vnode, scp->fid.unique);
481 cm_DiscardSCache(scp);
485 lock_ReleaseMutex(&scp->mx);
487 cm_CallbackNotifyChange(scp);
488 lock_ObtainWrite(&cm_scacheLock);
489 cm_ReleaseSCacheNoLock(scp);
491 if (discarded && (scp->flags & CM_SCACHEFLAG_PURERO) && scp->volp && scp->volp->cbExpiresRO != 0)
492 scp->volp->cbExpiresRO = 0;
494 } /* search one hash bucket */
495 } /* search all hash buckets */
497 lock_ReleaseWrite(&cm_scacheLock);
500 /* reset the No flags on the server */
501 cm_SetServerNo64Bit(tsp, 0);
502 cm_SetServerNoInlineBulk(tsp, 0);
504 /* we're done with the server structure */
508 MUTEX_EXIT(&callp->lock);
512 /*------------------------------------------------------------------------
513 * EXPORTED SRXAFSCB_Probe
516 * Routine called by the server-side callback RPC interface to
517 * implement ``probing'' the Cache Manager, just making sure it's
521 * rx_call : Ptr to Rx call on which this request came in.
527 * Nothing interesting.
531 *------------------------------------------------------------------------*/
533 SRXAFSCB_Probe(struct rx_call *callp)
535 struct rx_connection *connp;
536 struct rx_peer *peerp;
537 unsigned long host = 0;
538 unsigned short port = 0;
540 MUTEX_ENTER(&callp->lock);
542 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
543 host = rx_HostOf(peerp);
544 port = rx_PortOf(peerp);
547 osi_Log2(afsd_logp, "SRXAFSCB_Probe from host 0x%x port %d",
551 MUTEX_EXIT(&callp->lock);
555 /*------------------------------------------------------------------------
556 * EXPORTED SRXAFSCB_GetLock
559 * Routine called by the server-side callback RPC interface to
560 * implement pulling out the contents of a lock in the lock
564 * a_call : Ptr to Rx call on which this request came in.
565 * a_index : Index of desired lock.
566 * a_result : Ptr to a buffer for the given lock.
569 * 0 if everything went fine,
570 * 1 if we were given a bad index.
573 * Nothing interesting.
577 *------------------------------------------------------------------------*/
578 /* debug interface */
580 extern osi_rwlock_t cm_aclLock;
581 extern osi_rwlock_t buf_globalLock;
582 extern osi_rwlock_t cm_callbackLock;
583 extern osi_rwlock_t cm_cellLock;
584 extern osi_rwlock_t cm_connLock;
585 extern osi_rwlock_t cm_daemonLock;
586 extern osi_rwlock_t cm_dnlcLock;
587 extern osi_rwlock_t cm_scacheLock;
588 extern osi_rwlock_t cm_serverLock;
589 extern osi_rwlock_t cm_userLock;
590 extern osi_rwlock_t cm_utilsLock;
591 extern osi_rwlock_t cm_volumeLock;
592 extern osi_rwlock_t smb_globalLock;
593 extern osi_rwlock_t smb_rctLock;
595 extern osi_mutex_t cm_Freelance_Lock;
596 extern osi_mutex_t cm_bufGetMutex;
597 extern osi_mutex_t cm_Afsdsbmt_Lock;
598 extern osi_mutex_t tokenEventLock;
599 extern osi_mutex_t smb_ListenerLock;
600 extern osi_mutex_t smb_RawBufLock;
601 extern osi_mutex_t smb_Dir_Watch_Lock;
603 #define LOCKTYPE_RW 1
604 #define LOCKTYPE_MUTEX 2
605 static struct _ltable {
610 {"cm_scacheLock", (char*)&cm_scacheLock, LOCKTYPE_RW},
611 {"buf_globalLock", (char*)&buf_globalLock, LOCKTYPE_RW},
612 {"cm_serverLock", (char*)&cm_serverLock, LOCKTYPE_RW},
613 {"cm_callbackLock", (char*)&cm_callbackLock, LOCKTYPE_RW},
614 {"cm_aclLock", (char*)&cm_aclLock, LOCKTYPE_RW},
615 {"cm_cellLock", (char*)&cm_cellLock, LOCKTYPE_RW},
616 {"cm_connLock", (char*)&cm_connLock, LOCKTYPE_RW},
617 {"cm_userLock", (char*)&cm_userLock, LOCKTYPE_RW},
618 {"cm_volumeLock", (char*)&cm_volumeLock, LOCKTYPE_RW},
619 {"cm_daemonLock", (char*)&cm_daemonLock, LOCKTYPE_RW},
620 {"cm_dnlcLock", (char*)&cm_dnlcLock, LOCKTYPE_RW},
621 {"cm_utilsLock", (char*)&cm_utilsLock, LOCKTYPE_RW},
622 {"smb_globalLock", (char*)&smb_globalLock, LOCKTYPE_RW},
623 {"smb_rctLock", (char*)&smb_rctLock, LOCKTYPE_RW},
624 {"cm_Freelance_Lock",(char*)&cm_Freelance_Lock, LOCKTYPE_MUTEX},
625 {"cm_bufGetMutex", (char*)&cm_bufGetMutex, LOCKTYPE_MUTEX},
626 {"cm_Afsdsbmt_Lock", (char*)&cm_Afsdsbmt_Lock, LOCKTYPE_MUTEX},
627 {"tokenEventLock", (char*)&tokenEventLock, LOCKTYPE_MUTEX},
628 {"smb_ListenerLock", (char*)&smb_ListenerLock, LOCKTYPE_MUTEX},
629 {"smb_RawBufLock", (char*)&smb_RawBufLock, LOCKTYPE_MUTEX},
630 {"smb_Dir_Watch_Lock",(char*)&smb_Dir_Watch_Lock, LOCKTYPE_MUTEX}
634 SRXAFSCB_GetLock(struct rx_call *callp, long index, AFSDBLock *lockp)
636 struct _ltable *tl; /*Ptr to lock table entry */
639 int nentries; /*Num entries in table */
640 int code; /*Return code */
641 struct rx_connection *connp;
642 struct rx_peer *peerp;
643 unsigned long host = 0;
644 unsigned short port = 0;
646 MUTEX_ENTER(&callp->lock);
648 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
649 host = rx_HostOf(peerp);
650 port = rx_PortOf(peerp);
653 osi_Log3(afsd_logp, "SRXAFSCB_GetLock(%d) from host 0x%x port %d",
654 index, ntohl(host), ntohs(port));
656 nentries = sizeof(ltable) / sizeof(struct _ltable);
657 if (index < 0 || index >= nentries) {
664 * Found it - copy out its contents.
667 strncpy(lockp->name, tl->name, sizeof(lockp->name));
668 lockp->name[sizeof(lockp->name)-1] = '\0';
669 lockp->lock.waitStates = 0;
670 switch ( tl->type ) {
672 rwp = (osi_rwlock_t *)tl->addr;
673 lockp->lock.exclLocked = rwp->flags;
674 lockp->lock.readersReading = rwp->readers;
675 lockp->lock.numWaiting = rwp->waiters;
678 mtxp = (osi_mutex_t *)tl->addr;
679 lockp->lock.exclLocked = mtxp->flags;
680 lockp->lock.readersReading = 0;
681 lockp->lock.numWaiting = mtxp->waiters;
684 lockp->lock.pid_last_reader = 0;
685 lockp->lock.pid_writer = 0;
686 lockp->lock.src_indicator = 0;
690 MUTEX_EXIT(&callp->lock);
694 /* debug interface */
696 SRXAFSCB_GetCE(struct rx_call *callp, long index, AFSDBCacheEntry *cep)
701 struct rx_connection *connp;
702 struct rx_peer *peerp;
703 unsigned long host = 0;
704 unsigned short port = 0;
706 MUTEX_ENTER(&callp->lock);
708 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
709 host = rx_HostOf(peerp);
710 port = rx_PortOf(peerp);
713 osi_Log2(afsd_logp, "SRXAFSCB_GetCE from host 0x%x port %d",
714 ntohl(host), ntohs(port));
716 lock_ObtainRead(&cm_scacheLock);
717 for (i = 0; i < cm_data.scacheHashTableSize; i++) {
718 for (scp = cm_data.scacheHashTablep[i]; scp; scp = scp->nextp) {
722 } /*Zip through current hash chain */
723 } /*Zip through hash chains */
733 * Copy out the located entry.
735 memset(cep, 0, sizeof(AFSDBCacheEntry));
736 cep->addr = afs_data_pointer_to_int32(scp);
737 cep->cell = scp->fid.cell;
738 cep->netFid.Volume = scp->fid.volume;
739 cep->netFid.Vnode = scp->fid.vnode;
740 cep->netFid.Unique = scp->fid.unique;
741 cep->lock.waitStates = 0;
742 cep->lock.exclLocked = scp->mx.flags;
743 cep->lock.readersReading = 0;
744 cep->lock.numWaiting = scp->mx.waiters;
745 cep->lock.pid_last_reader = 0;
746 cep->lock.pid_writer = 0;
747 cep->lock.src_indicator = 0;
748 cep->Length = scp->length.LowPart;
749 cep->DataVersion = (afs_uint32)(scp->dataVersion & 0xFFFFFFFF);
750 cep->callback = afs_data_pointer_to_int32(scp->cbServerp);
751 if (scp->flags & CM_SCACHEFLAG_PURERO && scp->volp)
752 cep->cbExpires = scp->volp->cbExpiresRO;
754 cep->cbExpires = scp->cbExpires;
755 cep->refCount = scp->refCount;
756 cep->opens = scp->openReads;
757 cep->writers = scp->openWrites;
758 switch (scp->fileType) {
759 case CM_SCACHETYPE_FILE:
762 case CM_SCACHETYPE_MOUNTPOINT:
765 case CM_SCACHETYPE_DIRECTORY:
766 if (scp->fid.vnode == 1 && scp->fid.unique == 1)
771 case CM_SCACHETYPE_SYMLINK:
774 case CM_SCACHETYPE_DFSLINK:
777 case CM_SCACHETYPE_INVALID:
782 if (scp->flags & CM_SCACHEFLAG_STATD)
784 if (scp->flags & CM_SCACHEFLAG_RO || scp->flags & CM_SCACHEFLAG_PURERO)
786 if (scp->fileType == CM_SCACHETYPE_MOUNTPOINT &&
787 scp->mountPointStringp[0])
789 if (scp->flags & CM_SCACHEFLAG_WAITING)
794 * Return our results.
797 lock_ReleaseRead(&cm_scacheLock);
799 MUTEX_EXIT(&callp->lock);
803 /* debug interface */
805 SRXAFSCB_GetCE64(struct rx_call *callp, long index, AFSDBCacheEntry64 *cep)
810 struct rx_connection *connp;
811 struct rx_peer *peerp;
812 unsigned long host = 0;
813 unsigned short port = 0;
815 MUTEX_ENTER(&callp->lock);
817 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
818 host = rx_HostOf(peerp);
819 port = rx_PortOf(peerp);
822 osi_Log2(afsd_logp, "SRXAFSCB_GetCE64 from host 0x%x port %d",
823 ntohl(host), ntohs(port));
825 lock_ObtainRead(&cm_scacheLock);
826 for (i = 0; i < cm_data.scacheHashTableSize; i++) {
827 for (scp = cm_data.scacheHashTablep[i]; scp; scp = scp->nextp) {
831 } /*Zip through current hash chain */
832 } /*Zip through hash chains */
842 * Copy out the located entry.
844 memset(cep, 0, sizeof(AFSDBCacheEntry64));
845 cep->addr = afs_data_pointer_to_int32(scp);
846 cep->cell = scp->fid.cell;
847 cep->netFid.Volume = scp->fid.volume;
848 cep->netFid.Vnode = scp->fid.vnode;
849 cep->netFid.Unique = scp->fid.unique;
850 cep->lock.waitStates = 0;
851 cep->lock.exclLocked = scp->mx.flags;
852 cep->lock.readersReading = 0;
853 cep->lock.numWaiting = scp->mx.waiters;
854 cep->lock.pid_last_reader = 0;
855 cep->lock.pid_writer = 0;
856 cep->lock.src_indicator = 0;
857 #if !defined(AFS_64BIT_ENV)
858 cep->Length.high = scp->length.HighPart;
859 cep->Length.low = scp->length.LowPart;
861 cep->Length = (afs_int64) scp->length.QuadPart;
863 cep->DataVersion = (afs_uint32)(scp->dataVersion & 0xFFFFFFFF);
864 cep->callback = afs_data_pointer_to_int32(scp->cbServerp);
865 if (scp->flags & CM_SCACHEFLAG_PURERO && scp->volp)
866 cep->cbExpires = scp->volp->cbExpiresRO;
868 cep->cbExpires = scp->cbExpires;
869 cep->refCount = scp->refCount;
870 cep->opens = scp->openReads;
871 cep->writers = scp->openWrites;
872 switch (scp->fileType) {
873 case CM_SCACHETYPE_FILE:
876 case CM_SCACHETYPE_MOUNTPOINT:
879 case CM_SCACHETYPE_DIRECTORY:
880 if (scp->fid.vnode == 1 && scp->fid.unique == 1)
885 case CM_SCACHETYPE_SYMLINK:
888 case CM_SCACHETYPE_DFSLINK:
891 case CM_SCACHETYPE_INVALID:
896 if (scp->flags & CM_SCACHEFLAG_STATD)
898 if (scp->flags & CM_SCACHEFLAG_RO || scp->flags & CM_SCACHEFLAG_PURERO)
900 if (scp->fileType == CM_SCACHETYPE_MOUNTPOINT &&
901 scp->mountPointStringp[0])
903 if (scp->flags & CM_SCACHEFLAG_WAITING)
908 * Return our results.
911 lock_ReleaseRead(&cm_scacheLock);
913 MUTEX_EXIT(&callp->lock);
917 /* debug interface: not implemented */
919 SRXAFSCB_XStatsVersion(struct rx_call *callp, long *vp)
921 struct rx_connection *connp;
922 struct rx_peer *peerp;
923 unsigned long host = 0;
924 unsigned short port = 0;
926 MUTEX_ENTER(&callp->lock);
928 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
929 host = rx_HostOf(peerp);
930 port = rx_PortOf(peerp);
933 osi_Log2(afsd_logp, "SRXAFSCB_XStatsVersion from host 0x%x port %d - not implemented",
934 ntohl(host), ntohs(port));
937 MUTEX_EXIT(&callp->lock);
941 /* debug interface: not implemented */
943 SRXAFSCB_GetXStats(struct rx_call *callp, long cvn, long coln, long *srvp, long *timep,
944 AFSCB_CollData *datap)
946 struct rx_connection *connp;
947 struct rx_peer *peerp;
948 unsigned long host = 0;
949 unsigned short port = 0;
951 MUTEX_ENTER(&callp->lock);
953 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
954 host = rx_HostOf(peerp);
955 port = rx_PortOf(peerp);
958 osi_Log2(afsd_logp, "SRXAFSCB_GetXStats from host 0x%x port %d - not implemented",
959 ntohl(host), ntohs(port));
961 MUTEX_EXIT(&callp->lock);
966 SRXAFSCB_InitCallBackState2(struct rx_call *callp, struct interfaceAddr* addr)
968 osi_Log0(afsd_logp, "SRXAFSCB_InitCallBackState2 ->");
970 return SRXAFSCB_InitCallBackState(callp);
973 /* debug interface */
975 SRXAFSCB_WhoAreYou(struct rx_call *callp, struct interfaceAddr* addr)
978 int cm_noIPAddr; /* number of client network interfaces */
979 int cm_IPAddr[CM_MAXINTERFACE_ADDR]; /* client's IP address in host order */
980 int cm_SubnetMask[CM_MAXINTERFACE_ADDR];/* client's subnet mask in host order*/
981 int cm_NetMtu[CM_MAXINTERFACE_ADDR]; /* client's MTU sizes */
982 int cm_NetFlags[CM_MAXINTERFACE_ADDR]; /* network flags */
984 struct rx_connection *connp;
985 struct rx_peer *peerp;
986 unsigned long host = 0;
987 unsigned short port = 0;
989 MUTEX_ENTER(&callp->lock);
991 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
992 host = rx_HostOf(peerp);
993 port = rx_PortOf(peerp);
996 /* get network related info */
997 cm_noIPAddr = CM_MAXINTERFACE_ADDR;
998 code = syscfg_GetIFInfo(&cm_noIPAddr,
999 cm_IPAddr, cm_SubnetMask,
1000 cm_NetMtu, cm_NetFlags);
1002 /* return all network interface addresses */
1003 osi_Log2(afsd_logp, "SRXAFSCB_WhoAreYou from host 0x%x port %d",
1007 addr->numberOfInterfaces = cm_noIPAddr;
1008 addr->uuid = cm_data.Uuid;
1009 for ( i=0; i < cm_noIPAddr; i++ ) {
1010 addr->addr_in[i] = cm_IPAddr[i];
1011 addr->subnetmask[i] = cm_SubnetMask[i];
1012 addr->mtu[i] = (rx_mtu == -1 || (rx_mtu != -1 && cm_NetMtu[i] < rx_mtu)) ?
1013 cm_NetMtu[i] : rx_mtu;
1016 MUTEX_EXIT(&callp->lock);
1021 SRXAFSCB_InitCallBackState3(struct rx_call *callp, afsUUID* serverUuid)
1025 if (UuidToString((UUID *)serverUuid, &p) == RPC_S_OK) {
1026 osi_Log1(afsd_logp, "SRXAFSCB_InitCallBackState3 %s ->",p);
1029 osi_Log0(afsd_logp, "SRXAFSCB_InitCallBackState3 - no server Uuid ->");
1031 return SRXAFSCB_InitCallBackState(callp);
1034 /* debug interface */
1036 SRXAFSCB_ProbeUuid(struct rx_call *callp, afsUUID* clientUuid)
1038 struct rx_connection *connp;
1039 struct rx_peer *peerp;
1040 unsigned long host = 0;
1041 unsigned short port = 0;
1045 MUTEX_ENTER(&callp->lock);
1047 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
1048 host = rx_HostOf(peerp);
1049 port = rx_PortOf(peerp);
1052 if ( !afs_uuid_equal(&cm_data.Uuid, clientUuid) ) {
1053 UuidToString((UUID *)&cm_data.Uuid, &p);
1054 UuidToString((UUID *)clientUuid, &q);
1055 osi_Log4(afsd_logp, "SRXAFSCB_ProbeUuid %s != %s from host 0x%x port %d",
1056 osi_LogSaveString(afsd_logp,p),
1057 osi_LogSaveString(afsd_logp,q),
1063 code = 1; /* failure */
1065 osi_Log2(afsd_logp, "SRXAFSCB_ProbeUuid (success) from host 0x%x port %d",
1069 MUTEX_EXIT(&callp->lock);
1073 /* debug interface */
1075 SRXAFSCB_GetCellByNum(struct rx_call *callp, afs_int32 a_cellnum,
1076 char **a_name, serverList *a_hosts)
1080 cm_serverRef_t * serverRefp;
1081 struct rx_connection *connp;
1082 struct rx_peer *peerp;
1083 unsigned long host = 0;
1084 unsigned short port = 0;
1086 MUTEX_ENTER(&callp->lock);
1088 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
1089 host = rx_HostOf(peerp);
1090 port = rx_PortOf(peerp);
1093 osi_Log3(afsd_logp, "SRXAFSCB_GetCellByNum(%d) from host 0x%x port %d",
1094 a_cellnum, ntohl(host), ntohs(port));
1096 a_hosts->serverList_val = 0;
1097 a_hosts->serverList_len = 0;
1099 cellp = cm_FindCellByID(a_cellnum);
1101 *a_name = strdup("");
1102 MUTEX_EXIT(&callp->lock);
1106 lock_ObtainRead(&cm_serverLock);
1107 *a_name = strdup(cellp->name);
1109 for ( sn = 0, serverRefp = cellp->vlServersp;
1110 sn < AFSMAXCELLHOSTS && serverRefp;
1111 sn++, serverRefp = serverRefp->next);
1113 a_hosts->serverList_len = sn;
1114 a_hosts->serverList_val = (afs_int32 *)osi_Alloc(sn * sizeof(afs_int32));
1116 for ( sn = 0, serverRefp = cellp->vlServersp;
1117 sn < AFSMAXCELLHOSTS && serverRefp;
1118 sn++, serverRefp = serverRefp->next)
1120 a_hosts->serverList_val[sn] = ntohl(serverRefp->server->addr.sin_addr.s_addr);
1123 lock_ReleaseRead(&cm_serverLock);
1124 MUTEX_EXIT(&callp->lock);
1128 /* debug interface */
1130 SRXAFSCB_TellMeAboutYourself( struct rx_call *callp,
1131 struct interfaceAddr *addr,
1132 Capabilities * capabilities)
1135 afs_int32 *dataBuffP;
1136 afs_int32 dataBytes;
1137 int cm_noIPAddr; /* number of client network interfaces */
1138 int cm_IPAddr[CM_MAXINTERFACE_ADDR]; /* client's IP address in host order */
1139 int cm_SubnetMask[CM_MAXINTERFACE_ADDR];/* client's subnet mask in host order*/
1140 int cm_NetMtu[CM_MAXINTERFACE_ADDR]; /* client's MTU sizes */
1141 int cm_NetFlags[CM_MAXINTERFACE_ADDR]; /* network flags */
1143 struct rx_connection *connp;
1144 struct rx_peer *peerp;
1145 unsigned long host = 0;
1146 unsigned short port = 0;
1148 MUTEX_ENTER(&callp->lock);
1150 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
1151 host = rx_HostOf(peerp);
1152 port = rx_PortOf(peerp);
1155 /* get network related info */
1156 cm_noIPAddr = CM_MAXINTERFACE_ADDR;
1157 code = syscfg_GetIFInfo(&cm_noIPAddr,
1158 cm_IPAddr, cm_SubnetMask,
1159 cm_NetMtu, cm_NetFlags);
1161 osi_Log2(afsd_logp, "SRXAFSCB_TellMeAboutYourself from host 0x%x port %d",
1165 /* return all network interface addresses */
1166 addr->numberOfInterfaces = cm_noIPAddr;
1167 addr->uuid = cm_data.Uuid;
1168 for ( i=0; i < cm_noIPAddr; i++ ) {
1169 addr->addr_in[i] = cm_IPAddr[i];
1170 addr->subnetmask[i] = cm_SubnetMask[i];
1171 addr->mtu[i] = (rx_mtu == -1 || (rx_mtu != -1 && cm_NetMtu[i] < rx_mtu)) ?
1172 cm_NetMtu[i] : rx_mtu;
1175 dataBytes = 1 * sizeof(afs_int32);
1176 dataBuffP = (afs_int32 *) osi_Alloc(dataBytes);
1177 dataBuffP[0] = CLIENT_CAPABILITY_ERRORTRANS;
1178 capabilities->Capabilities_len = dataBytes / sizeof(afs_int32);
1179 capabilities->Capabilities_val = dataBuffP;
1181 MUTEX_EXIT(&callp->lock);
1185 /*------------------------------------------------------------------------
1186 * EXPORTED SRXAFSCB_GetServerPrefs
1189 * Routine to list server preferences used by this client.
1192 * a_call : Ptr to Rx call on which this request came in.
1193 * a_index : Input server index
1194 * a_srvr_addr : Output server address (0xffffffff on last server)
1195 * a_srvr_rank : Output server rank
1201 * Nothing interesting.
1205 *------------------------------------------------------------------------*/
1207 int SRXAFSCB_GetServerPrefs(
1208 struct rx_call *callp,
1210 afs_int32 *a_srvr_addr,
1211 afs_int32 *a_srvr_rank)
1213 struct rx_connection *connp;
1214 struct rx_peer *peerp;
1215 unsigned long host = 0;
1216 unsigned short port = 0;
1218 MUTEX_ENTER(&callp->lock);
1220 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
1221 host = rx_HostOf(peerp);
1222 port = rx_PortOf(peerp);
1225 osi_Log2(afsd_logp, "SRXAFSCB_GetServerPrefs from host 0x%x port %d - not implemented",
1229 *a_srvr_addr = 0xffffffff;
1230 *a_srvr_rank = 0xffffffff;
1232 MUTEX_EXIT(&callp->lock);
1236 /*------------------------------------------------------------------------
1237 * EXPORTED SRXAFSCB_GetCellServDB
1240 * Routine to list cells configured for this client
1243 * a_call : Ptr to Rx call on which this request came in.
1244 * a_index : Input cell index
1245 * a_name : Output cell name ("" on last cell)
1246 * a_hosts : Output cell database servers
1252 * Nothing interesting.
1256 *------------------------------------------------------------------------*/
1258 int SRXAFSCB_GetCellServDB(struct rx_call *callp, afs_int32 index, char **a_name,
1259 serverList *a_hosts)
1262 struct rx_connection *connp;
1263 struct rx_peer *peerp;
1264 unsigned long host = 0;
1265 unsigned short port = 0;
1267 MUTEX_ENTER(&callp->lock);
1269 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
1270 host = rx_HostOf(peerp);
1271 port = rx_PortOf(peerp);
1274 osi_Log2(afsd_logp, "SRXAFSCB_GetCellServDB from host 0x%x port %d - not implemented",
1275 ntohl(host), ntohs(port));
1277 t_name = (char *)malloc(AFSNAMEMAX);
1280 a_hosts->serverList_len = 0;
1282 MUTEX_EXIT(&callp->lock);
1286 /*------------------------------------------------------------------------
1287 * EXPORTED SRXAFSCB_GetLocalCell
1290 * Routine to return name of client's local cell
1293 * a_call : Ptr to Rx call on which this request came in.
1294 * a_name : Output cell name
1300 * Nothing interesting.
1304 *------------------------------------------------------------------------*/
1306 int SRXAFSCB_GetLocalCell(struct rx_call *callp, char **a_name)
1309 struct rx_connection *connp;
1310 struct rx_peer *peerp;
1311 unsigned long host = 0;
1312 unsigned short port = 0;
1314 MUTEX_ENTER(&callp->lock);
1316 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
1317 host = rx_HostOf(peerp);
1318 port = rx_PortOf(peerp);
1321 osi_Log2(afsd_logp, "SRXAFSCB_GetLocalCell from host 0x%x port %d",
1322 ntohl(host), ntohs(port));
1324 if (cm_data.rootCellp) {
1325 t_name = (char *)malloc(strlen(cm_data.rootCellp->name)+1);
1326 strcpy(t_name, cm_data.rootCellp->name);
1328 t_name = (char *)malloc(1);
1333 MUTEX_EXIT(&callp->lock);
1339 * afs_MarshallCacheConfig - marshall client cache configuration
1343 * IN callerVersion - the rpc stat version of the caller.
1345 * IN config - client cache configuration.
1347 * OUT ptr - buffer where configuration is marshalled.
1353 static void afs_MarshallCacheConfig(
1354 afs_uint32 callerVersion,
1355 cm_initparams_v1 *config,
1359 * We currently only support version 1.
1361 *(ptr++) = config->nChunkFiles;
1362 *(ptr++) = config->nStatCaches;
1363 *(ptr++) = config->nDataCaches;
1364 *(ptr++) = config->nVolumeCaches;
1365 *(ptr++) = config->firstChunkSize;
1366 *(ptr++) = config->otherChunkSize;
1367 *(ptr++) = config->cacheSize;
1368 *(ptr++) = config->setTime;
1369 *(ptr++) = config->memCache;
1374 /*------------------------------------------------------------------------
1375 * EXPORTED SRXAFSCB_GetCacheConfig
1378 * Routine to return parameters used to initialize client cache.
1379 * Client may request any format version. Server may not return
1380 * format version greater than version requested by client.
1383 * a_call: Ptr to Rx call on which this request came in.
1384 * callerVersion: Data format version desired by the client.
1385 * serverVersion: Data format version of output data.
1386 * configCount: Number bytes allocated for output data.
1387 * config: Client cache configuration.
1393 * Nothing interesting.
1397 *------------------------------------------------------------------------*/
1399 int SRXAFSCB_GetCacheConfig(struct rx_call *callp,
1400 afs_uint32 callerVersion,
1401 afs_uint32 *serverVersion,
1402 afs_uint32 *configCount,
1403 cacheConfig *config)
1405 afs_uint32 *t_config;
1407 extern cm_initparams_v1 cm_initParams;
1408 struct rx_connection *connp;
1409 struct rx_peer *peerp;
1410 unsigned long host = 0;
1411 unsigned short port = 0;
1413 MUTEX_ENTER(&callp->lock);
1415 if ((connp = rx_ConnectionOf(callp)) && (peerp = rx_PeerOf(connp))) {
1416 host = rx_HostOf(peerp);
1417 port = rx_PortOf(peerp);
1420 osi_Log2(afsd_logp, "SRXAFSCB_GetCacheConfig from host 0x%x port %d - version 1 only",
1421 ntohl(host), ntohs(port));
1424 * Currently only support version 1
1426 allocsize = sizeof(cm_initparams_v1);
1427 t_config = (afs_uint32 *)malloc(allocsize);
1429 afs_MarshallCacheConfig(callerVersion, &cm_initParams, t_config);
1431 *serverVersion = AFS_CLIENT_RETRIEVAL_FIRST_EDITION;
1434 #define SIZE_MAX UINT_MAX
1436 osi_assertx(allocsize < SIZE_MAX, "allocsize >= SIZE_MAX");
1438 *configCount = (afs_uint32)allocsize;
1439 config->cacheConfig_val = t_config;
1440 config->cacheConfig_len = (*configCount)/sizeof(afs_uint32);
1442 MUTEX_EXIT(&callp->lock);
1446 /* called by afsd without any locks to initialize this module */
1447 void cm_InitCallback(void)
1449 lock_InitializeRWLock(&cm_callbackLock, "cm_callbackLock");
1450 cm_activeCallbackGrantingCalls = 0;
1453 /* called with locked scp; tells us whether we've got a callback.
1454 * Expirations are checked by a background daemon so as to make
1455 * this function as inexpensive as possible
1457 int cm_HaveCallback(cm_scache_t *scp)
1459 #ifdef AFS_FREELANCE_CLIENT
1460 // yj: we handle callbacks specially for callbacks on the root directory
1461 // Since it's local, we almost always say that we have callback on it
1462 // The only time we send back a 0 is if we're need to initialize or
1463 // reinitialize the fake directory
1465 // There are 2 state variables cm_fakeGettingCallback and cm_fakeDirCallback
1466 // cm_fakeGettingCallback is 1 if we're in the process of initialization and
1467 // hence should return false. it's 0 otherwise
1468 // cm_fakeDirCallback is 0 if we haven't loaded the fake directory, it's 1
1469 // if the fake directory is loaded and this is the first time cm_HaveCallback
1470 // is called since then. We return false in this case to allow cm_GetCallback
1471 // to be called because cm_GetCallback has some initialization work to do.
1472 // If cm_fakeDirCallback is 2, then it means that the fake directory is in
1473 // good shape and we simply return true, provided no change is detected.
1476 if (cm_freelanceEnabled &&
1477 scp->fid.cell==AFS_FAKE_ROOT_CELL_ID && scp->fid.volume==AFS_FAKE_ROOT_VOL_ID) {
1478 /* if it's something on /afs */
1479 if (!(scp->fid.vnode==0x1 && scp->fid.unique==0x1)) {
1480 /* if it's not root.afs */
1484 lock_ObtainMutex(&cm_Freelance_Lock);
1485 fdc = cm_fakeDirCallback;
1486 fgc = cm_fakeGettingCallback;
1487 lock_ReleaseMutex(&cm_Freelance_Lock);
1489 if (fdc==1) { // first call since init
1491 } else if (fdc==2 && !fgc) { // we're in good shape
1492 if (cm_getLocalMountPointChange()) { // check for changes
1493 cm_clearLocalMountPointChange(); // clear the changefile
1494 lock_ReleaseMutex(&scp->mx); // this is re-locked in reInitLocalMountPoints
1495 cm_reInitLocalMountPoints(); // start reinit
1496 lock_ObtainMutex(&scp->mx); // now get the lock back
1499 return 1; // no change
1505 if (scp->cbServerp != NULL) {
1507 } else if (cm_OfflineROIsValid) {
1508 switch (cm_GetVolumeStatus(scp->volp, scp->fid.volume)) {
1521 /* need to detect a broken callback that races with our obtaining a callback.
1522 * Need to be able to do this even if we don't know the file ID of the file
1523 * we're breaking the callback on at the time we start the acquisition of the
1524 * callback (as in the case where we are creating a file).
1526 * So, we start by writing down the count of the # of callbacks we've received
1527 * so far, and bumping a global counter of the # of callback granting calls
1528 * outstanding (all done under cm_callbackLock).
1530 * When we're back from the call, we look at all of the callback revokes with
1531 * counter numbers greater than the one we recorded in our caller's structure,
1532 * and replay those that are higher than when we started the call.
1534 * We free all the structures in the queue when the count of the # of outstanding
1535 * callback-granting calls drops to zero.
1537 * We call this function with the scp locked, too, but in its current implementation,
1538 * this knowledge is not used.
1540 void cm_StartCallbackGrantingCall(cm_scache_t *scp, cm_callbackRequest_t *cbrp)
1542 lock_ObtainWrite(&cm_callbackLock);
1543 cbrp->callbackCount = cm_callbackCount;
1544 cm_activeCallbackGrantingCalls++;
1545 cbrp->startTime = time(NULL);
1546 cbrp->serverp = NULL;
1547 lock_ReleaseWrite(&cm_callbackLock);
1550 /* Called at the end of a callback-granting call, to remove the callback
1551 * info from the scache entry, if necessary.
1553 * Called with scp locked, so we can discard the callbacks easily with
1554 * this locking hierarchy.
1556 void cm_EndCallbackGrantingCall(cm_scache_t *scp, cm_callbackRequest_t *cbrp,
1557 AFSCallBack *cbp, long flags)
1559 cm_racingRevokes_t *revp; /* where we are */
1560 cm_racingRevokes_t *nrevp; /* where we'll be next */
1562 cm_server_t * serverp = NULL;
1563 int discardScp = 0, discardVolCB = 0;
1565 lock_ObtainWrite(&cm_callbackLock);
1566 if (flags & CM_CALLBACK_MAINTAINCOUNT) {
1567 osi_assertx(cm_activeCallbackGrantingCalls > 0,
1568 "CM_CALLBACK_MAINTAINCOUNT && cm_activeCallbackGrantingCalls == 0");
1571 osi_assertx(cm_activeCallbackGrantingCalls-- > 0,
1572 "!CM_CALLBACK_MAINTAINCOUNT && cm_activeCallbackGrantingCalls == 0");
1574 if (cm_activeCallbackGrantingCalls == 0)
1579 /* record the callback; we'll clear it below if we really lose it */
1582 if (scp->cbServerp != cbrp->serverp) {
1583 serverp = scp->cbServerp;
1585 cm_GetServer(cbrp->serverp);
1586 scp->cbServerp = cbrp->serverp;
1589 serverp = cbrp->serverp;
1591 scp->cbExpires = cbrp->startTime + cbp->ExpirationTime;
1592 if (scp->flags & CM_SCACHEFLAG_PURERO && scp->volp)
1593 scp->volp->cbExpiresRO = scp->cbExpires;
1596 serverp = cbrp->serverp;
1599 cbrp->serverp = NULL;
1602 /* a callback was actually revoked during our granting call, so
1603 * run down the list of revoked fids, looking for ours.
1604 * If activeCallbackGrantingCalls is zero, free the elements, too.
1606 * May need to go through entire list just to do the freeing.
1608 for (revp = cm_racingRevokesp; revp; revp = nrevp) {
1609 nrevp = (cm_racingRevokes_t *) osi_QNext(&revp->q);
1610 /* if this callback came in later than when we started the
1611 * callback-granting call, and if this fid is the right fid,
1612 * then clear the callback.
1614 if (scp && cbrp && cbrp->callbackCount != cm_callbackCount
1615 && revp->callbackCount > cbrp->callbackCount
1616 && (( scp->fid.volume == revp->fid.volume &&
1617 scp->fid.vnode == revp->fid.vnode &&
1618 scp->fid.unique == revp->fid.unique)
1620 ((revp->flags & CM_RACINGFLAG_CANCELVOL) &&
1621 scp->fid.volume == revp->fid.volume)
1623 (revp->flags & CM_RACINGFLAG_CANCELALL))) {
1624 /* this one matches */
1626 "Racing revoke scp 0x%p old cbc %d rev cbc %d cur cbc %d",
1628 cbrp->callbackCount, revp->callbackCount,
1632 if ((scp->flags & CM_SCACHEFLAG_PURERO) && scp->volp &&
1633 (revp->flags & (CM_RACINGFLAG_CANCELVOL | CM_RACINGFLAG_CANCELALL)))
1634 scp->volp->cbExpiresRO = 0;
1640 /* if we freed the list, zap the pointer to it */
1642 cm_racingRevokesp = NULL;
1644 lock_ReleaseWrite(&cm_callbackLock);
1647 cm_DiscardSCache(scp);
1648 lock_ReleaseMutex(&scp->mx);
1649 cm_CallbackNotifyChange(scp);
1650 lock_ObtainMutex(&scp->mx);
1654 lock_ObtainWrite(&cm_serverLock);
1655 cm_FreeServer(serverp);
1656 lock_ReleaseWrite(&cm_serverLock);
1660 /* if flags is 1, we want to force the code to make one call, anyway.
1661 * called with locked scp; returns with same.
1663 long cm_GetCallback(cm_scache_t *scp, struct cm_user *userp,
1664 struct cm_req *reqp, long flags)
1667 cm_conn_t *connp = NULL;
1668 AFSFetchStatus afsStatus;
1670 AFSCallBack callback;
1672 cm_callbackRequest_t cbr;
1675 struct rx_connection * callp = NULL;
1676 int syncop_done = 0;
1678 osi_Log4(afsd_logp, "GetCallback scp 0x%p cell %d vol %d flags %lX",
1679 scp, scp->fid.cell, scp->fid.volume, flags);
1681 #ifdef AFS_FREELANCE_CLIENT
1682 // The case where a callback is needed on /afs is handled
1683 // specially. We need to fetch the status by calling
1684 // cm_MergeStatus and mark that cm_fakeDirCallback is 2
1685 if (cm_freelanceEnabled) {
1686 if (scp->fid.cell==AFS_FAKE_ROOT_CELL_ID &&
1687 scp->fid.volume==AFS_FAKE_ROOT_VOL_ID &&
1688 scp->fid.unique==0x1 &&
1689 scp->fid.vnode==0x1) {
1691 // Start by indicating that we're in the process
1692 // of fetching the callback
1693 lock_ObtainMutex(&cm_Freelance_Lock);
1694 osi_Log0(afsd_logp,"cm_getGetCallback fakeGettingCallback=1");
1695 cm_fakeGettingCallback = 1;
1696 lock_ReleaseMutex(&cm_Freelance_Lock);
1698 // Fetch the status info
1699 cm_MergeStatus(NULL, scp, &afsStatus, &volSync, userp, 0);
1701 // Indicate that the callback is not done
1702 lock_ObtainMutex(&cm_Freelance_Lock);
1703 osi_Log0(afsd_logp,"cm_getGetCallback fakeDirCallback=2");
1704 cm_fakeDirCallback = 2;
1706 // Indicate that we're no longer fetching the callback
1707 osi_Log0(afsd_logp,"cm_getGetCallback fakeGettingCallback=0");
1708 cm_fakeGettingCallback = 0;
1709 lock_ReleaseMutex(&cm_Freelance_Lock);
1714 if (scp->fid.cell==AFS_FAKE_ROOT_CELL_ID && scp->fid.volume==AFS_FAKE_ROOT_VOL_ID) {
1715 osi_Log0(afsd_logp,"cm_getcallback should NEVER EVER get here... ");
1718 #endif /* AFS_FREELANCE_CLIENT */
1720 mustCall = (flags & 1);
1721 cm_AFSFidFromFid(&tfid, &scp->fid);
1723 if (!mustCall && cm_HaveCallback(scp))
1726 /* turn off mustCall, since it has now forced us past the check above */
1729 /* otherwise, we have to make an RPC to get the status */
1731 code = cm_SyncOp(scp, NULL, userp, reqp, 0,
1732 CM_SCACHESYNC_FETCHSTATUS | CM_SCACHESYNC_GETCALLBACK);
1737 cm_StartCallbackGrantingCall(scp, &cbr);
1739 lock_ReleaseMutex(&scp->mx);
1741 /* now make the RPC */
1742 osi_Log4(afsd_logp, "CALL FetchStatus scp 0x%p vol %u vn %u uniq %u",
1743 scp, sfid.volume, sfid.vnode, sfid.unique);
1745 code = cm_ConnFromFID(&sfid, userp, reqp, &connp);
1749 callp = cm_GetRxConn(connp);
1750 code = RXAFS_FetchStatus(callp, &tfid,
1751 &afsStatus, &callback, &volSync);
1752 rx_PutConnection(callp);
1754 } while (cm_Analyze(connp, userp, reqp, &sfid, &volSync, NULL,
1756 code = cm_MapRPCError(code, reqp);
1758 osi_Log4(afsd_logp, "CALL FetchStatus FAILURE code 0x%x scp 0x%p vol %u vn %u",
1759 code, scp, scp->fid.volume, scp->fid.vnode);
1761 osi_Log4(afsd_logp, "CALL FetchStatus SUCCESS scp 0x%p vol %u vn %u uniq %u",
1762 scp, scp->fid.volume, scp->fid.vnode, scp->fid.unique);
1764 lock_ObtainMutex(&scp->mx);
1766 cm_EndCallbackGrantingCall(scp, &cbr, &callback, 0);
1767 cm_MergeStatus(NULL, scp, &afsStatus, &volSync, userp, 0);
1769 cm_EndCallbackGrantingCall(NULL, &cbr, NULL, 0);
1772 /* if we got an error, return to caller */
1778 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_FETCHSTATUS | CM_SCACHESYNC_GETCALLBACK);
1781 osi_Log2(afsd_logp, "GetCallback Failed code 0x%x scp 0x%p -->",code, scp);
1782 osi_Log4(afsd_logp, " cell %u vol %u vn %u uniq %u",
1783 scp->fid.cell, scp->fid.volume, scp->fid.vnode, scp->fid.unique);
1785 osi_Log3(afsd_logp, "GetCallback Complete scp 0x%p cell %d vol %d",
1786 scp, scp->fid.cell, scp->fid.volume);
1793 /* called with cm_scacheLock held */
1794 long cm_CBServersUp(cm_scache_t *scp, time_t * downTime)
1796 cm_vol_state_t *statep;
1797 cm_volume_t * volp = scp->volp;
1798 afs_uint32 volID = scp->fid.volume;
1799 cm_serverRef_t *tsrp;
1804 if (scp->cbServerp == NULL)
1807 if (volp->rw.ID == volID) {
1809 } else if (volp->ro.ID == volID) {
1811 } else if (volp->bk.ID == volID) {
1815 if (statep->state == vl_online)
1818 for (found = 0,tsrp = statep->serversp; tsrp; tsrp=tsrp->next) {
1819 if (tsrp->server == scp->cbServerp)
1821 if (tsrp->server->downTime > *downTime)
1822 *downTime = tsrp->server->downTime;
1825 /* if the cbServerp does not match the current volume server list
1826 * we report the callback server as up so the callback can be
1829 return(found ? 0 : 1);
1832 /* called periodically by cm_daemon to shut down use of expired callbacks */
1833 void cm_CheckCBExpiration(void)
1837 time_t now, downTime;
1839 osi_Log0(afsd_logp, "CheckCBExpiration");
1842 lock_ObtainWrite(&cm_scacheLock);
1843 for (i=0; i<cm_data.scacheHashTableSize; i++) {
1844 for (scp = cm_data.scacheHashTablep[i]; scp; scp=scp->nextp) {
1846 if (scp->flags & CM_SCACHEFLAG_PURERO && scp->volp) {
1847 if (scp->volp->cbExpiresRO > scp->cbExpires && scp->cbExpires > 0)
1848 scp->cbExpires = scp->volp->cbExpiresRO;
1851 if (scp->cbServerp && scp->cbExpires > 0 && now > scp->cbExpires &&
1852 (cm_CBServersUp(scp, &downTime) || downTime == 0 || downTime >= scp->cbExpires))
1854 cm_HoldSCacheNoLock(scp);
1855 lock_ReleaseWrite(&cm_scacheLock);
1857 osi_Log4(afsd_logp, "Callback Expiration Discarding SCache scp 0x%p vol %u vn %u uniq %u",
1858 scp, scp->fid.volume, scp->fid.vnode, scp->fid.unique);
1859 lock_ObtainMutex(&scp->mx);
1860 cm_DiscardSCache(scp);
1861 lock_ReleaseMutex(&scp->mx);
1862 cm_CallbackNotifyChange(scp);
1864 cm_ReleaseSCacheNoLock(scp);
1865 lock_ObtainWrite(&cm_scacheLock);
1869 lock_ReleaseWrite(&cm_scacheLock);
1871 osi_Log0(afsd_logp, "CheckCBExpiration Complete");
1876 cm_GiveUpAllCallbacks(cm_server_t *tsp, afs_int32 markDown)
1880 struct rx_connection * rxconnp;
1882 if ((tsp->type == CM_SERVER_FILE) && !(tsp->flags & CM_SERVERFLAG_DOWN))
1884 code = cm_ConnByServer(tsp, cm_rootUserp, &connp);
1886 rxconnp = cm_GetRxConn(connp);
1887 rx_SetConnDeadTime(rxconnp, 10);
1888 code = RXAFS_GiveUpAllCallBacks(rxconnp);
1889 rx_SetConnDeadTime(rxconnp, ConnDeadtimeout);
1890 rx_PutConnection(rxconnp);
1894 cm_server_vols_t * tsrvp;
1898 lock_ObtainMutex(&tsp->mx);
1899 if (!(tsp->flags & CM_SERVERFLAG_DOWN)) {
1900 tsp->flags |= CM_SERVERFLAG_DOWN;
1901 tsp->downTime = osi_Time();
1903 cm_ForceNewConnections(tsp);
1904 /* Now update the volume status */
1905 for (tsrvp = tsp->vols; tsrvp; tsrvp = tsrvp->nextp) {
1906 for (i=0; i<NUM_SERVER_VOLS; i++) {
1907 if (tsrvp->ids[i] != 0) {
1912 code = cm_GetVolumeByID(tsp->cellp, tsrvp->ids[i], cm_rootUserp,
1913 &req, CM_GETVOL_FLAG_NO_LRU_UPDATE, &volp);
1915 cm_UpdateVolumeStatus(volp, tsrvp->ids[i]);
1921 lock_ReleaseMutex(&tsp->mx);
1927 cm_GiveUpAllCallbacksAllServers(afs_int32 markDown)
1931 if (!cm_giveUpAllCBs)
1934 lock_ObtainWrite(&cm_serverLock);
1935 for (tsp = cm_allServersp; tsp; tsp = tsp->allNextp) {
1936 cm_GetServerNoLock(tsp);
1937 lock_ReleaseWrite(&cm_serverLock);
1938 cm_GiveUpAllCallbacks(tsp, markDown);
1939 lock_ObtainWrite(&cm_serverLock);
1940 cm_PutServerNoLock(tsp);
1942 lock_ReleaseWrite(&cm_serverLock);