2 * Copyright (c) 2008 Secure Endpoints, Inc.
3 * Copyright (c) 2009-2011 Your File System, Inc.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
9 * - Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright notice,
12 * this list of conditions and the following disclaimer in the documentation
13 * and/or other materials provided with the distribution.
14 * - Neither the name of Secure Endpoints Inc. nor the names of its contributors
15 * may be used to endorse or promote products derived from this software without
16 * specific prior written permission from Secure Endpoints, Inc. and
17 * Your File System, Inc.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
22 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
23 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #include <afsconfig.h>
33 #include <afs/param.h>
36 #define _WIN32_WINNT 0x0500
38 #define _CRT_SECURE_NO_DEPRECATE
39 #define _CRT_NON_CONFORMING_SWPRINTFS
40 #define INITGUID /* define AFS_AUTH_GUID_NO_PAG */
43 #define WIN32_NO_STATUS
53 #pragma warning(disable: 4005)
57 #include "..\\Common\\AFSUserDefines.h"
58 #include "..\\Common\\AFSUserStructs.h"
76 #include <RDRPrototypes.h>
80 static CHAR * RDR_extentBaseAddress = NULL;
83 RDR_InitReq(cm_req_t *reqp)
86 reqp->flags |= CM_REQ_SOURCE_REDIR;
90 RDR_fid2FID( cm_fid_t *fid, AFSFileID *FileId)
92 FileId->Cell = fid->cell;
93 FileId->Volume = fid->volume;
94 FileId->Vnode = fid->vnode;
95 FileId->Unique = fid->unique;
96 FileId->Hash = fid->hash;
100 RDR_FID2fid( AFSFileID *FileId, cm_fid_t *fid)
102 fid->cell = FileId->Cell;
103 fid->volume = FileId->Volume;
104 fid->vnode = FileId->Vnode;
105 fid->unique = FileId->Unique;
106 fid->hash = FileId->Hash;
110 RDR_SetInitParams( OUT AFSRedirectorInitInfo **ppRedirInitInfo, OUT DWORD * pRedirInitInfoLen )
112 extern char cm_CachePath[];
113 extern cm_config_data_t cm_data;
114 extern int smb_hideDotFiles;
115 size_t cm_CachePathLen = strlen(cm_CachePath);
117 DWORD TempPathLen = ExpandEnvironmentStringsW(L"%TEMP%", NULL, 0);
118 MEMORYSTATUSEX memStatus;
119 DWORD maxMemoryCacheSize;
121 memStatus.dwLength = sizeof(memStatus);
122 if (GlobalMemoryStatusEx(&memStatus)) {
124 * Use the memory extent interface in the afs redirector
125 * whenever the cache size is less than equal to 10% of
126 * physical memory. Do not use too much because this memory
127 * will be locked by the redirector so it can't be swapped
130 maxMemoryCacheSize = (DWORD)(memStatus.ullTotalPhys / 1024 / 10);
133 * If we can't determine the amount of physical memory
134 * in the system, be conservative and limit the use of
135 * memory extent interface to 64MB data caches.
137 maxMemoryCacheSize = 65536;
140 *pRedirInitInfoLen = (DWORD) (sizeof(AFSRedirectorInitInfo) + (cm_CachePathLen + TempPathLen) * sizeof(WCHAR));
141 *ppRedirInitInfo = (AFSRedirectorInitInfo *)malloc(*pRedirInitInfoLen);
142 (*ppRedirInitInfo)->Flags = smb_hideDotFiles ? AFS_REDIR_INIT_FLAG_HIDE_DOT_FILES : 0;
143 (*ppRedirInitInfo)->MaximumChunkLength = cm_data.chunkSize;
144 (*ppRedirInitInfo)->GlobalFileId.Cell = cm_data.rootFid.cell;
145 (*ppRedirInitInfo)->GlobalFileId.Volume = cm_data.rootFid.volume;
146 (*ppRedirInitInfo)->GlobalFileId.Vnode = cm_data.rootFid.vnode;
147 (*ppRedirInitInfo)->GlobalFileId.Unique = cm_data.rootFid.unique;
148 (*ppRedirInitInfo)->GlobalFileId.Hash = cm_data.rootFid.hash;
149 (*ppRedirInitInfo)->ExtentCount.QuadPart = cm_data.buf_nbuffers;
150 (*ppRedirInitInfo)->CacheBlockSize = cm_data.blockSize;
151 (*ppRedirInitInfo)->MaxPathLinkCount = MAX_FID_COUNT;
152 (*ppRedirInitInfo)->NameArrayLength = MAX_FID_COUNT;
153 if (cm_virtualCache || cm_data.bufferSize <= maxMemoryCacheSize) {
154 osi_Log0(afsd_logp, "RDR_SetInitParams Initializing Memory Extent Interface");
155 (*ppRedirInitInfo)->MemoryCacheOffset.QuadPart = (LONGLONG)cm_data.bufDataBaseAddress;
156 (*ppRedirInitInfo)->MemoryCacheLength.QuadPart = cm_data.bufEndOfData - cm_data.bufDataBaseAddress;
157 (*ppRedirInitInfo)->CacheFileNameLength = 0;
158 RDR_extentBaseAddress = cm_data.bufDataBaseAddress;
160 (*ppRedirInitInfo)->MemoryCacheOffset.QuadPart = 0;
161 (*ppRedirInitInfo)->MemoryCacheLength.QuadPart = 0;
162 (*ppRedirInitInfo)->CacheFileNameLength = (ULONG) (cm_CachePathLen * sizeof(WCHAR));
163 err = mbstowcs((*ppRedirInitInfo)->CacheFileName, cm_CachePath, (cm_CachePathLen + 1) *sizeof(WCHAR));
165 free(*ppRedirInitInfo);
166 osi_Log0(afsd_logp, "RDR_SetInitParams Invalid Object Name");
167 return STATUS_OBJECT_NAME_INVALID;
169 RDR_extentBaseAddress = cm_data.baseAddress;
171 (*ppRedirInitInfo)->DumpFileLocationOffset = FIELD_OFFSET(AFSRedirectorInitInfo, CacheFileName) + (*ppRedirInitInfo)->CacheFileNameLength;
172 (*ppRedirInitInfo)->DumpFileLocationLength = (TempPathLen - 1) * sizeof(WCHAR);
173 ExpandEnvironmentStringsW(L"%TEMP%",
174 (LPWSTR)(((PBYTE)(*ppRedirInitInfo)) + (*ppRedirInitInfo)->DumpFileLocationOffset),
177 osi_Log0(afsd_logp,"RDR_SetInitParams Success");
181 static wchar_t cname[MAX_COMPUTERNAME_LENGTH+1] = L"";
184 RDR_GetLocalSystemUser( void)
187 cm_user_t *userp = NULL;
189 if ( cname[0] == '\0') {
190 int len = MAX_COMPUTERNAME_LENGTH+1;
191 GetComputerNameW(cname, &len);
194 unp = smb_FindUserByName(NTSID_LOCAL_SYSTEM, cname, SMB_FLAG_CREATE);
195 lock_ObtainMutex(&unp->mx);
197 unp->userp = cm_NewUser();
198 unp->flags |= SMB_USERNAMEFLAG_SID;
199 lock_ReleaseMutex(&unp->mx);
202 smb_ReleaseUsername(unp);
205 userp = cm_rootUserp;
213 RDR_UserFromCommRequest( IN AFSCommRequest *RequestBuffer)
216 return RDR_UserFromAuthGroup( &RequestBuffer->AuthGroup);
220 RDR_UserFromAuthGroup( IN GUID *pGuid)
223 cm_user_t * userp = NULL;
224 RPC_WSTR UuidString = NULL;
226 if (UuidToStringW((UUID *)pGuid, &UuidString) != RPC_S_OK)
229 if ( cname[0] == '\0') {
230 int len = MAX_COMPUTERNAME_LENGTH+1;
231 GetComputerNameW(cname, &len);
235 unp = smb_FindUserByName(UuidString, cname, SMB_FLAG_CREATE);
236 lock_ObtainMutex(&unp->mx);
238 unp->userp = cm_NewUser();
239 memcpy(&unp->userp->authgroup, pGuid, sizeof(GUID));
241 unp->flags |= SMB_USERNAMEFLAG_SID;
242 lock_ReleaseMutex(&unp->mx);
245 smb_ReleaseUsername(unp);
249 userp = cm_rootUserp;
253 osi_Log2(afsd_logp, "RDR_UserFromCommRequest Guid %S userp = 0x%p",
254 osi_LogSaveStringW(afsd_logp, UuidString),
258 RpcStringFreeW(&UuidString);
264 RDR_ReleaseUser( IN cm_user_t *userp )
266 osi_Log1(afsd_logp, "RDR_ReleaseUser userp = 0x%p", userp);
267 cm_ReleaseUser(userp);
272 * RDR_FlagScpInUse flags the scp with CM_SCACHEFLAG_RDR_IN_USE
275 RDR_FlagScpInUse( IN cm_scache_t *scp, IN BOOL bLocked )
278 lock_ObtainWrite(&scp->rw);
280 lock_AssertWrite(&scp->rw);
281 scp->flags |= CM_SCACHEFLAG_RDR_IN_USE;
284 lock_ReleaseWrite(&scp->rw);
288 * Obtain the status information for the specified object using
289 * an inline bulk status rpc. cm_BPlusDirEnumBulkStatOne() will
290 * obtain current status for the directory object, the object
291 * which is the focus of the inquiry and as many other objects
292 * in the directory for which there are not callbacks registered
293 * since we are likely to be asked for other objects in the directory.
296 RDR_BulkStatLookup( cm_scache_t *dscp,
301 cm_direnum_t * enump = NULL;
305 code = cm_BeginDirOp(dscp, userp, reqp, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
307 code = cm_BPlusDirEnumerate(dscp, userp, reqp, TRUE, NULL, TRUE, &enump);
309 osi_Log1(afsd_logp, "RDR_BulkStatLookup cm_BPlusDirEnumerate failure code=0x%x",
314 osi_Log1(afsd_logp, "RDR_BulkStatLookup cm_BeginDirOp failure code=0x%x",
320 code = cm_BPlusDirEnumBulkStatOne(enump, scp);
322 osi_Log1(afsd_logp, "RDR_BulkStatLookup cm_BPlusDirEnumBulkStatOne failure code=0x%x",
325 cm_BPlusDirFreeEnumeration(enump);
332 #define RDR_POP_FOLLOW_MOUNTPOINTS 0x01
333 #define RDR_POP_EVALUATE_SYMLINKS 0x02
334 #define RDR_POP_WOW64 0x04
335 #define RDR_POP_NO_GETSTATUS 0x08
338 RDR_PopulateCurrentEntry( IN AFSDirEnumEntry * pCurrentEntry,
339 IN DWORD dwMaxEntryLength,
340 IN cm_scache_t * dscp,
341 IN cm_scache_t * scp,
342 IN cm_user_t * userp,
345 IN wchar_t * shortName,
347 IN afs_uint32 cmError,
348 OUT AFSDirEnumEntry **ppNextEntry,
349 OUT DWORD * pdwRemainingLength)
352 WCHAR * wname, *wtarget;
355 afs_uint32 code = 0, code2 = 0;
356 BOOL bMustFake = FALSE;
358 osi_Log5(afsd_logp, "RDR_PopulateCurrentEntry dscp=0x%p scp=0x%p name=%S short=%S flags=0x%x",
359 dscp, scp, osi_LogSaveStringW(afsd_logp, name),
360 osi_LogSaveStringW(afsd_logp, shortName), dwFlags);
361 osi_Log1(afsd_logp, "... maxLength=%d", dwMaxEntryLength);
363 if (dwMaxEntryLength < sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t)) {
365 *ppNextEntry = pCurrentEntry;
366 if (pdwRemainingLength)
367 *pdwRemainingLength = dwMaxEntryLength;
368 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry Not Enough Room for Entry %d < %d",
369 dwMaxEntryLength, sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t));
370 return CM_ERROR_TOOBIG;
378 dwEntryLength = sizeof(AFSDirEnumEntry);
380 lock_ObtainWrite(&scp->rw);
381 if (dwFlags & RDR_POP_NO_GETSTATUS) {
382 if (!cm_HaveCallback(scp))
385 #ifdef AFS_FREELANCE_CLIENT
386 if (scp->fid.cell == AFS_FAKE_ROOT_CELL_ID && scp->fid.volume == AFS_FAKE_ROOT_VOL_ID) {
388 * If the FID is from the Freelance Local Root always perform
389 * a single item status check.
391 code = cm_SyncOp( scp, NULL, userp, reqp, 0,
392 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
394 lock_ReleaseWrite(&scp->rw);
395 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry cm_SyncOp failed for scp=0x%p code=0x%x",
403 * For non-Freelance objects, check to see if we have current
404 * status information. If not, perform a bulk status lookup of multiple
405 * entries in order to reduce the number of RPCs issued to the file server.
407 if (cm_EAccesFindEntry(userp, &scp->fid))
409 else if (!cm_HaveCallback(scp)) {
410 lock_ReleaseWrite(&scp->rw);
411 code = RDR_BulkStatLookup(dscp, scp, userp, reqp);
413 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry RDR_BulkStatLookup failed for scp=0x%p code=0x%x",
417 lock_ObtainWrite(&scp->rw);
419 * RDR_BulkStatLookup can succeed but it may be the case that there
420 * still is not valid status info. If we get this far, generate fake
423 if (!cm_HaveCallback(scp))
429 /* Populate the error code */
430 smb_MapNTError(cmError, &pCurrentEntry->NTStatus, TRUE);
432 /* Populate the real or fake data */
433 pCurrentEntry->FileId.Cell = scp->fid.cell;
434 pCurrentEntry->FileId.Volume = scp->fid.volume;
435 pCurrentEntry->FileId.Vnode = scp->fid.vnode;
436 pCurrentEntry->FileId.Unique = scp->fid.unique;
437 pCurrentEntry->FileId.Hash = scp->fid.hash;
439 pCurrentEntry->FileType = scp->fileType;
441 pCurrentEntry->DataVersion.QuadPart = scp->dataVersion;
443 if (scp->fid.cell==AFS_FAKE_ROOT_CELL_ID &&
444 scp->fid.volume==AFS_FAKE_ROOT_VOL_ID) {
445 cm_LargeSearchTimeFromUnixTime(&ft, MAX_AFS_UINT32);
447 cm_LargeSearchTimeFromUnixTime(&ft, scp->cbExpires);
449 pCurrentEntry->Expiration.LowPart = ft.dwLowDateTime;
450 pCurrentEntry->Expiration.HighPart = ft.dwHighDateTime;
453 /* 1969-12-31 23:59:59 +00 */
454 ft.dwHighDateTime = 0x19DB200;
455 ft.dwLowDateTime = 0x5BB78980;
457 cm_LargeSearchTimeFromUnixTime(&ft, scp->clientModTime);
458 pCurrentEntry->CreationTime.LowPart = ft.dwLowDateTime;
459 pCurrentEntry->CreationTime.HighPart = ft.dwHighDateTime;
460 pCurrentEntry->LastAccessTime = pCurrentEntry->CreationTime;
461 pCurrentEntry->LastWriteTime = pCurrentEntry->CreationTime;
462 pCurrentEntry->ChangeTime = pCurrentEntry->CreationTime;
464 pCurrentEntry->EndOfFile = scp->length;
465 pCurrentEntry->AllocationSize = scp->length;
468 switch (scp->fileType) {
469 case CM_SCACHETYPE_DIRECTORY:
470 pCurrentEntry->FileAttributes = SMB_ATTR_DIRECTORY;
472 case CM_SCACHETYPE_MOUNTPOINT:
473 case CM_SCACHETYPE_INVALID:
474 pCurrentEntry->FileAttributes = SMB_ATTR_DIRECTORY | SMB_ATTR_REPARSE_POINT;
476 case CM_SCACHETYPE_SYMLINK:
477 if (cm_TargetPerceivedAsDirectory(scp->mountPointStringp))
478 pCurrentEntry->FileAttributes = SMB_ATTR_DIRECTORY | SMB_ATTR_REPARSE_POINT;
480 pCurrentEntry->FileAttributes = SMB_ATTR_REPARSE_POINT;
483 /* if we get here we either have a normal file
484 * or we have a file for which we have never
485 * received status info. In this case, we can
486 * check the even/odd value of the entry's vnode.
487 * odd means it is to be treated as a directory
488 * and even means it is to be treated as a file.
490 if (scp->fid.vnode & 0x1)
491 pCurrentEntry->FileAttributes = SMB_ATTR_DIRECTORY;
493 pCurrentEntry->FileAttributes = SMB_ATTR_NORMAL;
496 pCurrentEntry->FileAttributes = smb_ExtAttributes(scp);
497 pCurrentEntry->EaSize = 0;
498 pCurrentEntry->Links = scp->linkCount;
500 len = wcslen(shortName);
501 wcsncpy(pCurrentEntry->ShortName, shortName, len);
502 pCurrentEntry->ShortNameLength = (CCHAR)(len * sizeof(WCHAR));
504 pCurrentEntry->FileNameOffset = sizeof(AFSDirEnumEntry);
506 wname = (WCHAR *)((PBYTE)pCurrentEntry + pCurrentEntry->FileNameOffset);
507 wcsncpy(wname, name, len);
508 pCurrentEntry->FileNameLength = (ULONG)(sizeof(WCHAR) * len);
510 osi_Log3(afsd_logp, "RDR_PopulateCurrentEntry scp=0x%p fileType=%d dv=%u",
511 scp, scp->fileType, (afs_uint32)scp->dataVersion);
513 if (!(dwFlags & RDR_POP_NO_GETSTATUS))
514 cm_SyncOpDone( scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
516 if ((dwFlags & RDR_POP_NO_GETSTATUS) || !cm_HaveCallback(scp)) {
517 pCurrentEntry->TargetNameOffset = 0;
518 pCurrentEntry->TargetNameLength = 0;
521 switch (scp->fileType) {
522 case CM_SCACHETYPE_MOUNTPOINT:
523 if (dwFlags & RDR_POP_FOLLOW_MOUNTPOINTS) {
524 if ((code2 = cm_ReadMountPoint(scp, userp, reqp)) == 0) {
525 cm_scache_t *targetScp = NULL;
527 pCurrentEntry->TargetNameOffset = pCurrentEntry->FileNameOffset + pCurrentEntry->FileNameLength;
528 len = strlen(scp->mountPointStringp);
529 wtarget = (WCHAR *)((PBYTE)pCurrentEntry + pCurrentEntry->TargetNameOffset);
532 cch = MultiByteToWideChar( CP_UTF8, 0, scp->mountPointStringp,
535 len * sizeof(WCHAR));
537 mbstowcs(wtarget, scp->mountPointStringp, len);
539 pCurrentEntry->TargetNameLength = (ULONG)(sizeof(WCHAR) * len);
541 code2 = cm_FollowMountPoint(scp, dscp, userp, reqp, &targetScp);
544 pCurrentEntry->TargetFileId.Cell = targetScp->fid.cell;
545 pCurrentEntry->TargetFileId.Volume = targetScp->fid.volume;
546 pCurrentEntry->TargetFileId.Vnode = targetScp->fid.vnode;
547 pCurrentEntry->TargetFileId.Unique = targetScp->fid.unique;
548 pCurrentEntry->TargetFileId.Hash = targetScp->fid.hash;
550 osi_Log4(afsd_logp, "RDR_PopulateCurrentEntry target FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
551 pCurrentEntry->TargetFileId.Cell, pCurrentEntry->TargetFileId.Volume,
552 pCurrentEntry->TargetFileId.Vnode, pCurrentEntry->TargetFileId.Unique);
554 cm_ReleaseSCache(targetScp);
556 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry cm_FollowMountPoint failed scp=0x%p code=0x%x",
560 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry cm_ReadMountPoint failed scp=0x%p code=0x%x",
565 case CM_SCACHETYPE_SYMLINK:
566 case CM_SCACHETYPE_DFSLINK:
568 pCurrentEntry->TargetNameOffset = pCurrentEntry->FileNameOffset + pCurrentEntry->FileNameLength;
569 wtarget = (WCHAR *)((PBYTE)pCurrentEntry + pCurrentEntry->TargetNameOffset);
571 if (dwFlags & RDR_POP_EVALUATE_SYMLINKS) {
574 code2 = cm_HandleLink(scp, userp, reqp);
576 mp = scp->mountPointStringp;
579 /* Strip off the msdfs: prefix from the target name for the file system */
580 if (scp->fileType == CM_SCACHETYPE_DFSLINK) {
581 osi_Log0(afsd_logp, "RDR_PopulateCurrentEntry DFSLink Detected");
582 pCurrentEntry->FileType = scp->fileType;
584 if (!strncmp("msdfs:", mp, 6)) {
589 /* only send one slash to the redirector */
590 if (mp[0] == '\\' && mp[1] == '\\') {
595 cch = MultiByteToWideChar( CP_UTF8, 0, mp,
598 len * sizeof(WCHAR));
600 mbstowcs(wtarget, mp, len);
603 pCurrentEntry->TargetNameLength = (ULONG)(sizeof(WCHAR) * len);
605 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry cm_HandleLink failed scp=0x%p code=0x%x",
614 pCurrentEntry->TargetNameOffset = 0;
615 pCurrentEntry->TargetNameLength = 0;
617 lock_ReleaseWrite(&scp->rw);
619 dwEntryLength += pCurrentEntry->FileNameLength + pCurrentEntry->TargetNameLength;
620 dwEntryLength += (dwEntryLength % 8) ? 8 - (dwEntryLength % 8) : 0; /* quad align */
622 *ppNextEntry = (AFSDirEnumEntry *)((PBYTE)pCurrentEntry + dwEntryLength);
623 if (pdwRemainingLength)
624 *pdwRemainingLength = dwMaxEntryLength - dwEntryLength;
626 osi_Log3(afsd_logp, "RDR_PopulateCurrentEntry Success FileNameLength=%d TargetNameLength=%d RemainingLength=%d",
627 pCurrentEntry->FileNameLength, pCurrentEntry->TargetNameLength, *pdwRemainingLength);
633 RDR_PopulateCurrentEntryNoScp( IN AFSDirEnumEntry * pCurrentEntry,
634 IN DWORD dwMaxEntryLength,
635 IN cm_scache_t * dscp,
637 IN cm_user_t * userp,
640 IN wchar_t * shortName,
642 IN afs_uint32 cmError,
643 OUT AFSDirEnumEntry **ppNextEntry,
644 OUT DWORD * pdwRemainingLength)
650 afs_uint32 code = 0, code2 = 0;
652 osi_Log4(afsd_logp, "RDR_PopulateCurrentEntryNoEntry dscp=0x%p name=%S short=%S flags=0x%x",
653 dscp, osi_LogSaveStringW(afsd_logp, name),
654 osi_LogSaveStringW(afsd_logp, shortName), dwFlags);
655 osi_Log1(afsd_logp, "... maxLength=%d", dwMaxEntryLength);
657 if (dwMaxEntryLength < sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t)) {
659 *ppNextEntry = pCurrentEntry;
660 if (pdwRemainingLength)
661 *pdwRemainingLength = dwMaxEntryLength;
662 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntryNoEntry Not Enough Room for Entry %d < %d",
663 dwMaxEntryLength, sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t));
664 return CM_ERROR_TOOBIG;
672 dwEntryLength = sizeof(AFSDirEnumEntry);
674 /* Populate the error code */
675 smb_MapNTError(cmError, &pCurrentEntry->NTStatus, TRUE);
677 /* Populate the fake data */
678 pCurrentEntry->FileId.Cell = fidp->cell;
679 pCurrentEntry->FileId.Volume = fidp->volume;
680 pCurrentEntry->FileId.Vnode = fidp->vnode;
681 pCurrentEntry->FileId.Unique = fidp->unique;
682 pCurrentEntry->FileId.Hash = fidp->hash;
684 pCurrentEntry->FileType = CM_SCACHETYPE_UNKNOWN;
686 pCurrentEntry->DataVersion.QuadPart = CM_SCACHE_VERSION_BAD;
688 cm_LargeSearchTimeFromUnixTime(&ft, 0);
689 pCurrentEntry->Expiration.LowPart = ft.dwLowDateTime;
690 pCurrentEntry->Expiration.HighPart = ft.dwHighDateTime;
692 cm_LargeSearchTimeFromUnixTime(&ft, 0);
693 pCurrentEntry->CreationTime.LowPart = ft.dwLowDateTime;
694 pCurrentEntry->CreationTime.HighPart = ft.dwHighDateTime;
695 pCurrentEntry->LastAccessTime = pCurrentEntry->CreationTime;
696 pCurrentEntry->LastWriteTime = pCurrentEntry->CreationTime;
697 pCurrentEntry->ChangeTime = pCurrentEntry->CreationTime;
699 pCurrentEntry->EndOfFile.QuadPart = 0;
700 pCurrentEntry->AllocationSize.QuadPart = 0;
701 pCurrentEntry->FileAttributes = 0;
702 pCurrentEntry->EaSize = 0;
703 pCurrentEntry->Links = 0;
705 len = wcslen(shortName);
706 wcsncpy(pCurrentEntry->ShortName, shortName, len);
707 pCurrentEntry->ShortNameLength = (CCHAR)(len * sizeof(WCHAR));
709 pCurrentEntry->FileNameOffset = sizeof(AFSDirEnumEntry);
711 wname = (WCHAR *)((PBYTE)pCurrentEntry + pCurrentEntry->FileNameOffset);
712 wcsncpy(wname, name, len);
713 pCurrentEntry->FileNameLength = (ULONG)(sizeof(WCHAR) * len);
715 pCurrentEntry->TargetNameOffset = 0;
716 pCurrentEntry->TargetNameLength = 0;
718 dwEntryLength += pCurrentEntry->FileNameLength + pCurrentEntry->TargetNameLength;
719 dwEntryLength += (dwEntryLength % 8) ? 8 - (dwEntryLength % 8) : 0; /* quad align */
721 *ppNextEntry = (AFSDirEnumEntry *)((PBYTE)pCurrentEntry + dwEntryLength);
722 if (pdwRemainingLength)
723 *pdwRemainingLength = dwMaxEntryLength - dwEntryLength;
725 osi_Log3(afsd_logp, "RDR_PopulateCurrentEntryNoScp Success FileNameLength=%d TargetNameLength=%d RemainingLength=%d",
726 pCurrentEntry->FileNameLength, pCurrentEntry->TargetNameLength, *pdwRemainingLength);
732 RDR_EnumerateDirectory( IN cm_user_t *userp,
734 IN AFSDirQueryCB *QueryCB,
737 IN DWORD ResultBufferLength,
738 IN OUT AFSCommResult **ResultCB)
741 cm_direnum_t * enump = NULL;
742 AFSDirEnumResp * pDirEnumResp;
743 AFSDirEnumEntry * pCurrentEntry;
744 size_t size = ResultBufferLength ? sizeof(AFSCommResult) + ResultBufferLength - 1 : sizeof(AFSCommResult);
745 DWORD dwMaxEntryLength;
748 cm_scache_t * dscp = NULL;
753 req.flags |= CM_REQ_WOW64;
755 osi_Log4(afsd_logp, "RDR_EnumerateDirectory FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
756 DirID.Cell, DirID.Volume, DirID.Vnode, DirID.Unique);
758 *ResultCB = (AFSCommResult *)malloc(size);
760 osi_Log0(afsd_logp, "RDR_EnumerateDirectory Out of Memory");
764 memset(*ResultCB, 0, size);
766 if (QueryCB->EnumHandle == (ULONG_PTR)-1) {
767 osi_Log0(afsd_logp, "RDR_EnumerateDirectory No More Entries");
768 (*ResultCB)->ResultStatus = STATUS_NO_MORE_ENTRIES;
769 (*ResultCB)->ResultBufferLength = 0;
773 (*ResultCB)->ResultBufferLength = dwMaxEntryLength = ResultBufferLength;
774 if (ResultBufferLength) {
775 pDirEnumResp = (AFSDirEnumResp *)&(*ResultCB)->ResultData;
776 pCurrentEntry = (AFSDirEnumEntry *)&pDirEnumResp->Entry;
777 dwMaxEntryLength -= FIELD_OFFSET( AFSDirEnumResp, Entry); /* AFSDirEnumResp */
780 if (DirID.Cell != 0) {
781 fid.cell = DirID.Cell;
782 fid.volume = DirID.Volume;
783 fid.vnode = DirID.Vnode;
784 fid.unique = DirID.Unique;
785 fid.hash = DirID.Hash;
787 code = cm_GetSCache(&fid, NULL, &dscp, userp, &req);
789 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
790 (*ResultCB)->ResultStatus = status;
791 osi_Log2(afsd_logp, "RDR_EnumerateDirectory cm_GetSCache failure code=0x%x status=0x%x",
796 (*ResultCB)->ResultStatus = STATUS_OBJECT_NAME_INVALID;
797 osi_Log0(afsd_logp, "RDR_EnumerateDirectory Object Name Invalid - Cell = 0");
801 /* get the directory size */
802 lock_ObtainWrite(&dscp->rw);
803 code = cm_SyncOp(dscp, NULL, userp, &req, PRSFS_LOOKUP,
804 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
806 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
807 (*ResultCB)->ResultStatus = status;
808 lock_ReleaseWrite(&dscp->rw);
809 cm_ReleaseSCache(dscp);
810 osi_Log2(afsd_logp, "RDR_EnumerateDirectory cm_SyncOp failure code=0x%x status=0x%x",
815 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
816 lock_ReleaseWrite(&dscp->rw);
818 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
819 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
820 cm_ReleaseSCache(dscp);
821 osi_Log1(afsd_logp, "RDR_EnumerateDirectory Not a Directory dscp=0x%p",
826 osi_Log1(afsd_logp, "RDR_EnumerateDirectory dv=%u", (afs_uint32)dscp->dataVersion);
829 * If there is no enumeration handle, then this is a new query
830 * and we must perform an enumeration for the specified object.
832 if (QueryCB->EnumHandle == (ULONG_PTR)NULL) {
835 code = cm_BeginDirOp(dscp, userp, &req, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
837 code = cm_BPlusDirEnumerate(dscp, userp, &req,
838 TRUE /* dir locked */, NULL /* no mask */,
839 TRUE /* fetch status? */, &enump);
841 osi_Log1(afsd_logp, "RDR_EnumerateDirectory cm_BPlusDirEnumerate failure code=0x%x",
846 osi_Log1(afsd_logp, "RDR_EnumerateDirectory cm_BeginDirOp failure code=0x%x",
850 enump = (cm_direnum_t *)QueryCB->EnumHandle;
854 if (ResultBufferLength == 0) {
855 code = cm_BPlusDirEnumBulkStat(enump);
857 osi_Log1(afsd_logp, "RDR_EnumerateDirectory cm_BPlusDirEnumBulkStat failure code=0x%x",
861 cm_direnum_entry_t * entryp = NULL;
863 pDirEnumResp->SnapshotDataVersion.QuadPart = enump->dataVersion;
866 if (dwMaxEntryLength < sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t)) {
867 osi_Log0(afsd_logp, "RDR_EnumerateDirectory out of space, returning");
871 code = cm_BPlusDirNextEnumEntry(enump, &entryp);
873 if ((code == 0 || code == CM_ERROR_STOPNOW) && entryp) {
874 cm_scache_t *scp = NULL;
875 int stopnow = (code == CM_ERROR_STOPNOW);
877 if ( !wcscmp(L".", entryp->name) || !wcscmp(L"..", entryp->name) ) {
878 osi_Log0(afsd_logp, "RDR_EnumerateDirectory skipping . or ..");
885 code = cm_GetSCache(&entryp->fid, &dscp->fid, &scp, userp, &req);
887 osi_Log5(afsd_logp, "RDR_EnumerateDirectory cm_GetSCache failure cell %u vol %u vnode %u uniq %u code=0x%x",
888 entryp->fid.cell, entryp->fid.volume, entryp->fid.vnode, entryp->fid.unique, code);
891 code = entryp->errorCode;
892 scp = code ? NULL : cm_FindSCache(&entryp->fid);
896 code = RDR_PopulateCurrentEntry( pCurrentEntry, dwMaxEntryLength,
897 dscp, scp, userp, &req,
899 cm_Is8Dot3(entryp->name) ? NULL : entryp->shortName,
900 (bWow64 ? RDR_POP_WOW64 : 0) |
901 (bSkipStatus ? RDR_POP_NO_GETSTATUS : 0),
903 &pCurrentEntry, &dwMaxEntryLength);
904 cm_ReleaseSCache(scp);
906 code = RDR_PopulateCurrentEntryNoScp( pCurrentEntry, dwMaxEntryLength,
907 dscp, &entryp->fid, userp, &req,
909 cm_Is8Dot3(entryp->name) ? NULL : entryp->shortName,
910 (bWow64 ? RDR_POP_WOW64 : 0),
912 &pCurrentEntry, &dwMaxEntryLength);
923 if (code || enump->next == enump->count || ResultBufferLength == 0) {
924 cm_BPlusDirFreeEnumeration(enump);
925 enump = (cm_direnum_t *)(ULONG_PTR)-1;
928 if (code == 0 || code == CM_ERROR_STOPNOW) {
929 (*ResultCB)->ResultStatus = STATUS_SUCCESS;
930 osi_Log0(afsd_logp, "RDR_EnumerateDirectory SUCCESS");
932 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
933 (*ResultCB)->ResultStatus = status;
934 osi_Log2(afsd_logp, "RDR_EnumerateDirectory Failure code=0x%x status=0x%x",
938 if (ResultBufferLength) {
939 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwMaxEntryLength;
941 pDirEnumResp->EnumHandle = (ULONG_PTR) enump;
942 pDirEnumResp->CurrentDataVersion.QuadPart = dscp->dataVersion;
946 cm_ReleaseSCache(dscp);
952 RDR_EvaluateNodeByName( IN cm_user_t *userp,
953 IN AFSFileID ParentID,
954 IN WCHAR *FileNameCounted,
955 IN DWORD FileNameLength,
956 IN BOOL CaseSensitive,
960 IN DWORD ResultBufferLength,
961 IN OUT AFSCommResult **ResultCB)
963 AFSFileEvalResultCB *pEvalResultCB = NULL;
964 AFSDirEnumEntry * pCurrentEntry;
965 size_t size = ResultBufferLength ? sizeof(AFSCommResult) + ResultBufferLength - 1 : sizeof(AFSCommResult);
967 cm_scache_t * scp = NULL;
968 cm_scache_t * dscp = NULL;
973 WCHAR * wszName = NULL;
976 wchar_t FileName[260];
978 StringCchCopyNW(FileName, 260, FileNameCounted, FileNameLength / sizeof(WCHAR));
982 req.flags |= CM_REQ_WOW64;
984 osi_Log4(afsd_logp, "RDR_EvaluateNodeByName parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
985 ParentID.Cell, ParentID.Volume, ParentID.Vnode, ParentID.Unique);
987 /* Allocate enough room to add a volume prefix if necessary */
988 cbName = FileNameLength + (CM_PREFIX_VOL_CCH + 1) * sizeof(WCHAR);
989 wszName = malloc(cbName);
991 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName Out of Memory");
994 StringCbCopyNW(wszName, cbName, FileName, FileNameLength);
995 osi_Log1(afsd_logp, "... name=%S", osi_LogSaveStringW(afsd_logp, wszName));
997 *ResultCB = (AFSCommResult *)malloc(size);
999 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName Out of Memory");
1004 memset(*ResultCB, 0, size);
1005 (*ResultCB)->ResultBufferLength = 0;
1006 dwRemaining = ResultBufferLength;
1007 if (ResultBufferLength >= sizeof( AFSFileEvalResultCB)) {
1008 pEvalResultCB = (AFSFileEvalResultCB *)&(*ResultCB)->ResultData;
1009 pCurrentEntry = &pEvalResultCB->DirEnum;
1010 dwRemaining -= (sizeof( AFSFileEvalResultCB) - sizeof( AFSDirEnumEntry));
1013 if (ParentID.Cell != 0) {
1014 parentFid.cell = ParentID.Cell;
1015 parentFid.volume = ParentID.Volume;
1016 parentFid.vnode = ParentID.Vnode;
1017 parentFid.unique = ParentID.Unique;
1018 parentFid.hash = ParentID.Hash;
1020 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1022 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1023 (*ResultCB)->ResultStatus = status;
1024 if ( status == STATUS_INVALID_HANDLE)
1025 status = STATUS_OBJECT_PATH_INVALID;
1026 osi_Log2(afsd_logp, "RDR_EvaluateNodeByName cm_GetSCache parentFID failure code=0x%x status=0x%x",
1032 (*ResultCB)->ResultStatus = STATUS_OBJECT_NAME_INVALID;
1033 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName Object Name Invalid - Cell = 0");
1037 /* get the directory size */
1038 lock_ObtainWrite(&dscp->rw);
1039 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1040 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1042 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1043 (*ResultCB)->ResultStatus = status;
1044 lock_ReleaseWrite(&dscp->rw);
1045 cm_ReleaseSCache(dscp);
1046 osi_Log3(afsd_logp, "RDR_EvaluateNodeByName cm_SyncOp failure dscp=0x%p code=0x%x status=0x%x",
1047 dscp, code, status);
1051 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1052 lock_ReleaseWrite(&dscp->rw);
1054 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1055 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1056 cm_ReleaseSCache(dscp);
1057 osi_Log1(afsd_logp, "RDR_EvaluateNodeByName Not a Directory dscp=0x%p",
1063 code = cm_Lookup(dscp, wszName, CM_FLAG_CHECKPATH, userp, &req, &scp);
1065 if ((code == CM_ERROR_NOSUCHPATH || code == CM_ERROR_NOSUCHFILE || code == CM_ERROR_BPLUS_NOMATCH) &&
1066 (wcschr(wszName, '%') != NULL || wcschr(wszName, '#') != NULL)) {
1068 * A volume reference: <cell>{%,#}<volume> -> @vol:<cell>{%,#}<volume>
1070 StringCchCopyNW(wszName, cbName, _C(CM_PREFIX_VOL), CM_PREFIX_VOL_CCH);
1071 StringCbCatNW(wszName, cbName, FileName, FileNameLength);
1074 code = cm_EvaluateVolumeReference(wszName, CM_FLAG_CHECKPATH, userp, &req, &scp);
1077 if (code == 0 && scp) {
1078 wchar_t shortName[13]=L"";
1081 cm_Gen8Dot3VolNameW(scp->fid.cell, scp->fid.volume, shortName, NULL);
1082 } else if (!cm_Is8Dot3(wszName)) {
1085 dfid.vnode = htonl(scp->fid.vnode);
1086 dfid.unique = htonl(scp->fid.unique);
1088 cm_Gen8Dot3NameIntW(FileName, &dfid, shortName, NULL);
1090 shortName[0] = '\0';
1093 code = RDR_PopulateCurrentEntry(pCurrentEntry, dwRemaining,
1094 dscp, scp, userp, &req,
1095 FileName, shortName,
1096 (bWow64 ? RDR_POP_WOW64 : 0) |
1097 (bNoFollow ? 0 : (RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS)),
1098 0, NULL, &dwRemaining);
1100 RDR_FlagScpInUse( scp, FALSE );
1101 cm_ReleaseSCache(scp);
1104 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1105 (*ResultCB)->ResultStatus = status;
1106 osi_Log2(afsd_logp, "RDR_EvaluateNodeByName FAILURE code=0x%x status=0x%x",
1109 pEvalResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
1110 (*ResultCB)->ResultStatus = STATUS_SUCCESS;
1111 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
1112 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName SUCCESS");
1115 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1116 (*ResultCB)->ResultStatus = status;
1117 osi_Log2(afsd_logp, "RDR_EvaluateNodeByName FAILURE code=0x%x status=0x%x",
1120 (*ResultCB)->ResultStatus = STATUS_NO_SUCH_FILE;
1121 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName No Such File");
1123 cm_ReleaseSCache(dscp);
1130 RDR_EvaluateNodeByID( IN cm_user_t *userp,
1131 IN AFSFileID ParentID, /* not used */
1132 IN AFSFileID SourceID,
1136 IN DWORD ResultBufferLength,
1137 IN OUT AFSCommResult **ResultCB)
1139 AFSFileEvalResultCB *pEvalResultCB = NULL;
1140 AFSDirEnumEntry * pCurrentEntry = NULL;
1141 size_t size = ResultBufferLength ? sizeof(AFSCommResult) + ResultBufferLength - 1 : sizeof(AFSCommResult);
1142 afs_uint32 code = 0;
1143 cm_scache_t * scp = NULL;
1144 cm_scache_t * dscp = NULL;
1151 osi_Log4(afsd_logp, "RDR_EvaluateNodeByID source FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1152 SourceID.Cell, SourceID.Volume, SourceID.Vnode, SourceID.Unique);
1153 osi_Log4(afsd_logp, "... parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1154 ParentID.Cell, ParentID.Volume, ParentID.Vnode, ParentID.Unique);
1156 *ResultCB = (AFSCommResult *)malloc(size);
1158 osi_Log0(afsd_logp, "RDR_EvaluateNodeByID Out of Memory");
1162 memset(*ResultCB, 0, size);
1163 (*ResultCB)->ResultBufferLength = 0;
1164 dwRemaining = ResultBufferLength;
1165 if (ResultBufferLength >= sizeof( AFSFileEvalResultCB)) {
1166 pEvalResultCB = (AFSFileEvalResultCB *)&(*ResultCB)->ResultData;
1167 pCurrentEntry = &pEvalResultCB->DirEnum;
1168 dwRemaining -= (sizeof( AFSFileEvalResultCB) - sizeof( AFSDirEnumEntry));
1173 req.flags |= CM_REQ_WOW64;
1175 if (SourceID.Cell != 0) {
1176 cm_SetFid(&Fid, SourceID.Cell, SourceID.Volume, SourceID.Vnode, SourceID.Unique);
1177 code = cm_GetSCache(&Fid, NULL, &scp, userp, &req);
1179 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1180 (*ResultCB)->ResultStatus = status;
1181 osi_Log2(afsd_logp, "RDR_EvaluateNodeByID cm_GetSCache SourceFID failure code=0x%x status=0x%x",
1186 (*ResultCB)->ResultStatus = STATUS_OBJECT_NAME_INVALID;
1187 osi_Log0(afsd_logp, "RDR_EvaluateNodeByID Object Name Invalid - Cell = 0");
1191 if (ParentID.Cell != 0) {
1192 cm_SetFid(&parentFid, ParentID.Cell, ParentID.Volume, ParentID.Vnode, ParentID.Unique);
1193 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1195 cm_ReleaseSCache(scp);
1196 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1197 if ( status == STATUS_INVALID_HANDLE)
1198 status = STATUS_OBJECT_PATH_INVALID;
1199 (*ResultCB)->ResultStatus = status;
1200 osi_Log2(afsd_logp, "RDR_EvaluateNodeByID cm_GetSCache parentFID failure code=0x%x status=0x%x",
1204 } else if (SourceID.Vnode == 1) {
1206 cm_HoldSCache(dscp);
1207 } else if (scp->parentVnode) {
1208 cm_SetFid(&parentFid, SourceID.Cell, SourceID.Volume, scp->parentVnode, scp->parentUnique);
1209 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1211 cm_ReleaseSCache(scp);
1212 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1213 if ( status == STATUS_INVALID_HANDLE)
1214 status = STATUS_OBJECT_PATH_INVALID;
1215 (*ResultCB)->ResultStatus = status;
1216 osi_Log2(afsd_logp, "RDR_EvaluateNodeByID cm_GetSCache parentFID failure code=0x%x status=0x%x",
1221 (*ResultCB)->ResultStatus = STATUS_OBJECT_PATH_INVALID;
1222 osi_Log0(afsd_logp, "RDR_EvaluateNodeByID Object Path Invalid - Unknown Parent");
1226 /* Make sure the directory is current */
1227 lock_ObtainWrite(&dscp->rw);
1228 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1229 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1231 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1232 (*ResultCB)->ResultStatus = status;
1233 lock_ReleaseWrite(&dscp->rw);
1234 cm_ReleaseSCache(dscp);
1235 cm_ReleaseSCache(scp);
1236 osi_Log3(afsd_logp, "RDR_EvaluateNodeByID cm_SyncOp failure dscp=0x%p code=0x%x status=0x%x",
1237 dscp, code, status);
1241 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1242 lock_ReleaseWrite(&dscp->rw);
1244 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1245 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1246 cm_ReleaseSCache(dscp);
1247 cm_ReleaseSCache(scp);
1248 osi_Log1(afsd_logp, "RDR_EvaluateNodeByID Not a Directory dscp=0x%p", dscp);
1252 code = RDR_PopulateCurrentEntry(pCurrentEntry, dwRemaining,
1253 dscp, scp, userp, &req, NULL, NULL,
1254 (bWow64 ? RDR_POP_WOW64 : 0) |
1255 (bNoFollow ? 0 : (RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS)),
1256 0, NULL, &dwRemaining);
1259 RDR_FlagScpInUse( scp, FALSE );
1260 cm_ReleaseSCache(scp);
1261 cm_ReleaseSCache(dscp);
1264 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1265 (*ResultCB)->ResultStatus = status;
1266 osi_Log2(afsd_logp, "RDR_EvaluateNodeByID FAILURE code=0x%x status=0x%x",
1269 pEvalResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
1271 (*ResultCB)->ResultStatus = STATUS_SUCCESS;
1272 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
1273 osi_Log0(afsd_logp, "RDR_EvaluateNodeByID SUCCESS");
1279 RDR_CreateFileEntry( IN cm_user_t *userp,
1280 IN WCHAR *FileNameCounted,
1281 IN DWORD FileNameLength,
1282 IN AFSFileCreateCB *CreateCB,
1285 IN DWORD ResultBufferLength,
1286 IN OUT AFSCommResult **ResultCB)
1288 AFSFileCreateResultCB *pResultCB = NULL;
1289 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
1292 cm_scache_t * dscp = NULL;
1293 afs_uint32 flags = 0;
1295 cm_scache_t * scp = NULL;
1298 wchar_t FileName[260];
1300 StringCchCopyNW(FileName, 260, FileNameCounted, FileNameLength / sizeof(WCHAR));
1302 osi_Log4(afsd_logp, "RDR_CreateFileEntry parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1303 CreateCB->ParentId.Cell, CreateCB->ParentId.Volume,
1304 CreateCB->ParentId.Vnode, CreateCB->ParentId.Unique);
1305 osi_Log1(afsd_logp, "... name=%S", osi_LogSaveStringW(afsd_logp, FileName));
1309 req.flags |= CM_REQ_WOW64;
1310 memset(&setAttr, 0, sizeof(cm_attr_t));
1312 *ResultCB = (AFSCommResult *)malloc(size);
1314 osi_Log0(afsd_logp, "RDR_CreateFileEntry out of memory");
1322 parentFid.cell = CreateCB->ParentId.Cell;
1323 parentFid.volume = CreateCB->ParentId.Volume;
1324 parentFid.vnode = CreateCB->ParentId.Vnode;
1325 parentFid.unique = CreateCB->ParentId.Unique;
1326 parentFid.hash = CreateCB->ParentId.Hash;
1328 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1330 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1331 (*ResultCB)->ResultStatus = status;
1332 if ( status == STATUS_INVALID_HANDLE)
1333 status = STATUS_OBJECT_PATH_INVALID;
1334 osi_Log2(afsd_logp, "RDR_CreateFileEntry cm_GetSCache ParentFID failure code=0x%x status=0x%x",
1339 lock_ObtainWrite(&dscp->rw);
1340 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1341 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1343 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1344 (*ResultCB)->ResultStatus = status;
1345 lock_ReleaseWrite(&dscp->rw);
1346 cm_ReleaseSCache(dscp);
1347 osi_Log3(afsd_logp, "RDR_CreateFileEntry cm_SyncOp failure (1) dscp=0x%p code=0x%x status=0x%x",
1348 dscp, code, status);
1352 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1353 lock_ReleaseWrite(&dscp->rw);
1355 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1356 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1357 cm_ReleaseSCache(dscp);
1358 osi_Log1(afsd_logp, "RDR_CreateFileEntry Not a Directory dscp=0x%p",
1363 /* Use current time */
1364 setAttr.mask = CM_ATTRMASK_CLIENTMODTIME;
1365 setAttr.clientModTime = time(NULL);
1367 if (CreateCB->FileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
1368 if (smb_unixModeDefaultDir) {
1369 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1370 setAttr.unixModeBits = smb_unixModeDefaultDir;
1371 if (CreateCB->FileAttributes & FILE_ATTRIBUTE_READONLY)
1372 setAttr.unixModeBits &= ~0222; /* disable the write bits */
1375 code = cm_MakeDir(dscp, FileName, flags, &setAttr, userp, &req, &scp);
1377 if (smb_unixModeDefaultFile) {
1378 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1379 setAttr.unixModeBits = smb_unixModeDefaultFile;
1380 if (CreateCB->FileAttributes & FILE_ATTRIBUTE_READONLY)
1381 setAttr.unixModeBits &= ~0222; /* disable the write bits */
1384 setAttr.mask |= CM_ATTRMASK_LENGTH;
1385 setAttr.length.LowPart = CreateCB->AllocationSize.LowPart;
1386 setAttr.length.HighPart = CreateCB->AllocationSize.HighPart;
1387 code = cm_Create(dscp, FileName, flags, &setAttr, &scp, userp, &req);
1390 wchar_t shortName[13]=L"";
1394 (*ResultCB)->ResultStatus = 0; // We will be able to fit all the data in here
1396 (*ResultCB)->ResultBufferLength = sizeof( AFSFileCreateResultCB);
1398 pResultCB = (AFSFileCreateResultCB *)(*ResultCB)->ResultData;
1400 dwRemaining = ResultBufferLength - sizeof( AFSFileCreateResultCB) + sizeof( AFSDirEnumEntry);
1402 lock_ObtainWrite(&dscp->rw);
1403 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1404 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1406 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1407 (*ResultCB)->ResultStatus = status;
1408 lock_ReleaseWrite(&dscp->rw);
1409 cm_ReleaseSCache(dscp);
1410 cm_ReleaseSCache(scp);
1411 osi_Log3(afsd_logp, "RDR_CreateFileEntry cm_SyncOp failure (2) dscp=0x%p code=0x%x status=0x%x",
1412 dscp, code, status);
1416 pResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
1418 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1419 lock_ReleaseWrite(&dscp->rw);
1421 dfid.vnode = htonl(scp->fid.vnode);
1422 dfid.unique = htonl(scp->fid.unique);
1424 if (!cm_Is8Dot3(FileName))
1425 cm_Gen8Dot3NameIntW(FileName, &dfid, shortName, NULL);
1427 shortName[0] = '\0';
1429 code = RDR_PopulateCurrentEntry(&pResultCB->DirEnum, dwRemaining,
1430 dscp, scp, userp, &req, FileName, shortName,
1431 RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS,
1432 0, NULL, &dwRemaining);
1435 RDR_FlagScpInUse( scp, FALSE );
1436 cm_ReleaseSCache(scp);
1437 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
1438 osi_Log0(afsd_logp, "RDR_CreateFileEntry SUCCESS");
1440 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1441 (*ResultCB)->ResultStatus = status;
1442 (*ResultCB)->ResultBufferLength = 0;
1443 osi_Log2(afsd_logp, "RDR_CreateFileEntry FAILURE code=0x%x status=0x%x",
1447 cm_ReleaseSCache(dscp);
1453 RDR_UpdateFileEntry( IN cm_user_t *userp,
1454 IN AFSFileID FileId,
1455 IN AFSFileUpdateCB *UpdateCB,
1457 IN DWORD ResultBufferLength,
1458 IN OUT AFSCommResult **ResultCB)
1460 AFSFileUpdateResultCB *pResultCB = NULL;
1461 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
1465 afs_uint32 flags = 0;
1467 cm_scache_t * scp = NULL;
1468 cm_scache_t * dscp = NULL;
1470 time_t clientModTime;
1473 BOOL bScpLocked = FALSE;
1477 req.flags |= CM_REQ_WOW64;
1478 memset(&setAttr, 0, sizeof(cm_attr_t));
1480 osi_Log4(afsd_logp, "RDR_UpdateFileEntry parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1481 UpdateCB->ParentId.Cell, UpdateCB->ParentId.Volume,
1482 UpdateCB->ParentId.Vnode, UpdateCB->ParentId.Unique);
1483 osi_Log4(afsd_logp, "... object FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1484 FileId.Cell, FileId.Volume,
1485 FileId.Vnode, FileId.Unique);
1487 *ResultCB = (AFSCommResult *)malloc( size);
1489 osi_Log0(afsd_logp, "RDR_UpdateFileEntry Out of Memory");
1497 parentFid.cell = UpdateCB->ParentId.Cell;
1498 parentFid.volume = UpdateCB->ParentId.Volume;
1499 parentFid.vnode = UpdateCB->ParentId.Vnode;
1500 parentFid.unique = UpdateCB->ParentId.Unique;
1501 parentFid.hash = UpdateCB->ParentId.Hash;
1503 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1505 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1506 (*ResultCB)->ResultStatus = status;
1507 if ( status == STATUS_INVALID_HANDLE)
1508 status = STATUS_OBJECT_PATH_INVALID;
1509 osi_Log2(afsd_logp, "RDR_UpdateFileEntry cm_GetSCache ParentFID failure code=0x%x status=0x%x",
1514 lock_ObtainWrite(&dscp->rw);
1516 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1517 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1519 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1520 (*ResultCB)->ResultStatus = status;
1521 lock_ReleaseWrite(&dscp->rw);
1522 cm_ReleaseSCache(dscp);
1523 osi_Log3(afsd_logp, "RDR_UpdateFileEntry cm_SyncOp failure dscp=0x%p code=0x%x status=0x%x",
1524 dscp, code, status);
1528 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1529 lock_ReleaseWrite(&dscp->rw);
1532 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1533 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1534 cm_ReleaseSCache(dscp);
1535 osi_Log1(afsd_logp, "RDR_UpdateFileEntry Not a Directory dscp=0x%p",
1540 Fid.cell = FileId.Cell;
1541 Fid.volume = FileId.Volume;
1542 Fid.vnode = FileId.Vnode;
1543 Fid.unique = FileId.Unique;
1544 Fid.hash = FileId.Hash;
1546 code = cm_GetSCache(&Fid, &dscp->fid, &scp, userp, &req);
1548 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1549 (*ResultCB)->ResultStatus = status;
1550 cm_ReleaseSCache(dscp);
1551 osi_Log2(afsd_logp, "RDR_UpdateFileEntry cm_GetSCache object FID failure code=0x%x status=0x%x",
1556 lock_ObtainWrite(&scp->rw);
1558 code = cm_SyncOp(scp, NULL, userp, &req, 0,
1559 CM_SCACHESYNC_GETSTATUS | CM_SCACHESYNC_NEEDCALLBACK);
1561 lock_ReleaseWrite(&scp->rw);
1562 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1563 (*ResultCB)->ResultStatus = status;
1564 (*ResultCB)->ResultBufferLength = 0;
1565 cm_ReleaseSCache(dscp);
1566 cm_ReleaseSCache(scp);
1567 osi_Log3(afsd_logp, "RDR_UpdateFileEntry cm_SyncOp failure scp=0x%p code=0x%x status=0x%x",
1571 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1573 if (UpdateCB->ChangeTime.QuadPart) {
1575 if (scp->fileType == CM_SCACHETYPE_FILE) {
1576 /* Do not set length and other attributes at the same time */
1577 if (scp->length.QuadPart != UpdateCB->AllocationSize.QuadPart) {
1578 osi_Log2(afsd_logp, "RDR_UpdateFileEntry Length Change 0x%x -> 0x%x",
1579 (afs_uint32)scp->length.QuadPart, (afs_uint32)UpdateCB->AllocationSize.QuadPart);
1580 setAttr.mask |= CM_ATTRMASK_LENGTH;
1581 setAttr.length.LowPart = UpdateCB->AllocationSize.LowPart;
1582 setAttr.length.HighPart = UpdateCB->AllocationSize.HighPart;
1583 lock_ReleaseWrite(&scp->rw);
1585 code = cm_SetAttr(scp, &setAttr, userp, &req);
1593 lock_ObtainWrite(&scp->rw);
1596 if ((scp->unixModeBits & 0200) && (UpdateCB->FileAttributes & FILE_ATTRIBUTE_READONLY)) {
1597 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1598 setAttr.unixModeBits = scp->unixModeBits & ~0222;
1599 } else if (!(scp->unixModeBits & 0200) && !(UpdateCB->FileAttributes & FILE_ATTRIBUTE_READONLY)) {
1600 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1601 setAttr.unixModeBits = scp->unixModeBits | 0222;
1605 if (UpdateCB->LastWriteTime.QuadPart) {
1606 ft.dwLowDateTime = UpdateCB->LastWriteTime.LowPart;
1607 ft.dwHighDateTime = UpdateCB->LastWriteTime.HighPart;
1609 cm_UnixTimeFromLargeSearchTime(& clientModTime, &ft);
1612 lock_ObtainWrite(&scp->rw);
1615 if (scp->clientModTime != clientModTime) {
1616 setAttr.mask |= CM_ATTRMASK_CLIENTMODTIME;
1617 setAttr.clientModTime = clientModTime;
1622 lock_ReleaseWrite(&scp->rw);
1624 code = cm_SetAttr(scp, &setAttr, userp, &req);
1631 lock_ReleaseWrite(&scp->rw);
1635 DWORD dwRemaining = ResultBufferLength - sizeof( AFSFileUpdateResultCB) + sizeof( AFSDirEnumEntry);
1637 pResultCB = (AFSFileUpdateResultCB *)(*ResultCB)->ResultData;
1639 pResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
1641 code = RDR_PopulateCurrentEntry(&pResultCB->DirEnum, dwRemaining,
1642 dscp, scp, userp, &req, NULL, NULL,
1643 RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS,
1644 0, NULL, &dwRemaining);
1645 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
1646 osi_Log0(afsd_logp, "RDR_UpdateFileEntry SUCCESS");
1648 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1649 (*ResultCB)->ResultStatus = status;
1650 (*ResultCB)->ResultBufferLength = 0;
1651 osi_Log2(afsd_logp, "RDR_UpdateFileEntry FAILURE code=0x%x status=0x%x",
1654 cm_ReleaseSCache(scp);
1655 cm_ReleaseSCache(dscp);
1661 RDR_CleanupFileEntry( IN cm_user_t *userp,
1662 IN AFSFileID FileId,
1663 IN WCHAR *FileNameCounted,
1664 IN DWORD FileNameLength,
1665 IN AFSFileCleanupCB *CleanupCB,
1667 IN BOOL bLastHandle,
1668 IN BOOL bDeleteFile,
1669 IN BOOL bUnlockFile,
1670 IN DWORD ResultBufferLength,
1671 IN OUT AFSCommResult **ResultCB)
1673 AFSFileCleanupResultCB *pResultCB = NULL;
1674 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
1677 afs_uint32 code = 0;
1678 afs_uint32 flags = 0;
1680 cm_scache_t * scp = NULL;
1681 cm_scache_t * dscp = NULL;
1683 time_t clientModTime;
1686 BOOL bScpLocked = FALSE;
1687 BOOL bDscpLocked = FALSE;
1688 BOOL bFlushFile = FALSE;
1693 req.flags |= CM_REQ_WOW64;
1694 memset(&setAttr, 0, sizeof(cm_attr_t));
1696 osi_Log4(afsd_logp, "RDR_CleanupFileEntry parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1697 CleanupCB->ParentId.Cell, CleanupCB->ParentId.Volume,
1698 CleanupCB->ParentId.Vnode, CleanupCB->ParentId.Unique);
1699 osi_Log4(afsd_logp, "... object FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1700 FileId.Cell, FileId.Volume,
1701 FileId.Vnode, FileId.Unique);
1703 *ResultCB = (AFSCommResult *)malloc( size);
1705 osi_Log0(afsd_logp, "RDR_CleanupFileEntry Out of Memory");
1713 parentFid.cell = CleanupCB->ParentId.Cell;
1714 parentFid.volume = CleanupCB->ParentId.Volume;
1715 parentFid.vnode = CleanupCB->ParentId.Vnode;
1716 parentFid.unique = CleanupCB->ParentId.Unique;
1717 parentFid.hash = CleanupCB->ParentId.Hash;
1719 if (parentFid.cell) {
1720 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1722 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1723 if ( status == STATUS_INVALID_HANDLE)
1724 status = STATUS_OBJECT_PATH_INVALID;
1725 (*ResultCB)->ResultStatus = status;
1726 osi_Log2(afsd_logp, "RDR_CleanupFileEntry cm_GetSCache ParentFID failure code=0x%x status=0x%x",
1731 lock_ObtainWrite(&dscp->rw);
1733 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1734 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1736 osi_Log2(afsd_logp, "RDR_CleanupFileEntry cm_SyncOp failure dscp=0x%p code=0x%x",
1742 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1743 lock_ReleaseWrite(&dscp->rw);
1744 bDscpLocked = FALSE;
1746 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1747 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1748 cm_ReleaseSCache(dscp);
1749 osi_Log1(afsd_logp, "RDR_CleanupFileEntry Not a Directory dscp=0x%p",
1756 Fid.cell = FileId.Cell;
1757 Fid.volume = FileId.Volume;
1758 Fid.vnode = FileId.Vnode;
1759 Fid.unique = FileId.Unique;
1760 Fid.hash = FileId.Hash;
1762 code = cm_GetSCache(&Fid, dscp ? &dscp->fid : NULL, &scp, userp, &req);
1764 osi_Log1(afsd_logp, "RDR_CleanupFileEntry cm_GetSCache object FID failure code=0x%x",
1769 lock_ObtainWrite(&scp->rw);
1771 code = cm_SyncOp(scp, NULL, userp, &req, 0,
1772 CM_SCACHESYNC_GETSTATUS | CM_SCACHESYNC_NEEDCALLBACK);
1774 osi_Log2(afsd_logp, "RDR_CleanupFileEntry cm_SyncOp failure scp=0x%p code=0x%x",
1778 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1780 if ((bLastHandle || bFlushFile) &&
1781 scp->redirBufCount > 0)
1783 LARGE_INTEGER heldExtents;
1784 AFSFileExtentCB extentList[1024];
1785 DWORD extentCount = 0;
1790 heldExtents.QuadPart = 0;
1792 for ( srbp = redirq_to_cm_buf_t(scp->redirQueueT);
1794 srbp = redirq_to_cm_buf_t(osi_QPrev(&srbp->redirq)))
1796 extentList[extentCount].Flags = 0;
1797 extentList[extentCount].Length = cm_data.blockSize;
1798 extentList[extentCount].FileOffset.QuadPart = srbp->offset.QuadPart;
1799 extentList[extentCount].CacheOffset.QuadPart = srbp->datap - RDR_extentBaseAddress;
1800 lock_ObtainWrite(&buf_globalLock);
1801 srbp->redirReleaseRequested = now;
1802 lock_ReleaseWrite(&buf_globalLock);
1805 if (extentCount == 1024) {
1806 lock_ReleaseWrite(&scp->rw);
1807 code = RDR_RequestExtentRelease(&scp->fid, heldExtents, extentCount, extentList);
1809 if (code == CM_ERROR_RETRY) {
1811 * The redirector either is not holding the extents or cannot let them
1812 * go because they are otherwise in use. At the moment, do nothing.
1819 lock_ObtainWrite(&scp->rw);
1823 if (code == 0 && extentCount > 0) {
1825 lock_ReleaseWrite(&scp->rw);
1828 code = RDR_RequestExtentRelease(&scp->fid, heldExtents, extentCount, extentList);
1833 /* No longer in use by redirector */
1835 lock_ObtainWrite(&scp->rw);
1840 lock_AssertWrite(&scp->rw);
1841 scp->flags &= ~CM_SCACHEFLAG_RDR_IN_USE;
1844 /* If not a readonly object, flush dirty data and update metadata */
1845 if (!(scp->flags & CM_SCACHEFLAG_RO)) {
1846 if ((bLastHandle || bFlushFile) &&
1847 buf_DirtyBuffersExist(&scp->fid)) {
1849 lock_ObtainWrite(&scp->rw);
1852 code = cm_SyncOp(scp, NULL, userp, &req, PRSFS_WRITE,
1853 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1856 lock_ReleaseWrite(&scp->rw);
1860 code = cm_FSync(scp, userp, &req, bScpLocked);
1862 if (bLastHandle && code)
1866 if (CleanupCB->ChangeTime.QuadPart) {
1868 if (scp->fileType == CM_SCACHETYPE_FILE) {
1869 /* Do not set length and other attributes at the same time */
1870 if (scp->length.QuadPart != CleanupCB->AllocationSize.QuadPart) {
1871 osi_Log2(afsd_logp, "RDR_CleanupFileEntry Length Change 0x%x -> 0x%x",
1872 (afs_uint32)scp->length.QuadPart, (afs_uint32)CleanupCB->AllocationSize.QuadPart);
1873 setAttr.mask |= CM_ATTRMASK_LENGTH;
1874 setAttr.length.LowPart = CleanupCB->AllocationSize.LowPart;
1875 setAttr.length.HighPart = CleanupCB->AllocationSize.HighPart;
1878 lock_ReleaseWrite(&scp->rw);
1881 code = cm_SetAttr(scp, &setAttr, userp, &req);
1889 lock_ObtainWrite(&scp->rw);
1893 if ((scp->unixModeBits & 0200) && (CleanupCB->FileAttributes & FILE_ATTRIBUTE_READONLY)) {
1894 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1895 setAttr.unixModeBits = scp->unixModeBits & ~0222;
1896 } else if (!(scp->unixModeBits & 0200) && !(CleanupCB->FileAttributes & FILE_ATTRIBUTE_READONLY)) {
1897 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1898 setAttr.unixModeBits = scp->unixModeBits | 0222;
1902 if (CleanupCB->LastWriteTime.QuadPart) {
1903 ft.dwLowDateTime = CleanupCB->LastWriteTime.LowPart;
1904 ft.dwHighDateTime = CleanupCB->LastWriteTime.HighPart;
1906 cm_UnixTimeFromLargeSearchTime(&clientModTime, &ft);
1907 if (scp->clientModTime != clientModTime) {
1908 setAttr.mask |= CM_ATTRMASK_CLIENTMODTIME;
1909 setAttr.clientModTime = clientModTime;
1915 lock_ReleaseWrite(&scp->rw);
1917 code = cm_SetAttr(scp, &setAttr, userp, &req);
1923 /* Now drop the lock enforcing the share access */
1924 if ( CleanupCB->FileAccess != AFS_FILE_ACCESS_NOLOCK) {
1925 unsigned int sLockType;
1926 LARGE_INTEGER LOffset, LLength;
1928 if (CleanupCB->FileAccess == AFS_FILE_ACCESS_SHARED)
1929 sLockType = LOCKING_ANDX_SHARED_LOCK;
1933 key = cm_GenerateKey(CM_SESSION_IFS, SMB_FID_QLOCK_PID, CleanupCB->Identifier);
1935 LOffset.HighPart = SMB_FID_QLOCK_HIGH;
1936 LOffset.LowPart = SMB_FID_QLOCK_LOW;
1937 LLength.HighPart = 0;
1938 LLength.LowPart = SMB_FID_QLOCK_LENGTH;
1941 lock_ObtainWrite(&scp->rw);
1945 code = cm_SyncOp(scp, NULL, userp, &req, 0, CM_SCACHESYNC_LOCK);
1948 code = cm_Unlock(scp, sLockType, LOffset, LLength, key, 0, userp, &req);
1950 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_LOCK);
1952 if (code == CM_ERROR_RANGE_NOT_LOCKED)
1954 osi_Log3(afsd_logp, "RDR_CleanupFileEntry Range Not Locked -- FileAccess 0x%x ProcessId 0x%x HandleId 0x%x",
1955 CleanupCB->FileAccess, CleanupCB->ProcessId, CleanupCB->Identifier);
1961 if (bUnlockFile || bDeleteFile) {
1963 lock_ObtainWrite(&scp->rw);
1966 code = cm_SyncOp(scp, NULL, userp, &req, 0,
1967 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS | CM_SCACHESYNC_LOCK);
1969 osi_Log2(afsd_logp, "RDR_CleanupFileEntry cm_SyncOp (2) failure scp=0x%p code=0x%x",
1974 key = cm_GenerateKey(CM_SESSION_IFS, CleanupCB->ProcessId, 0);
1976 /* the scp is now locked and current */
1977 code = cm_UnlockByKey(scp, key,
1978 bDeleteFile ? CM_UNLOCK_FLAG_BY_FID : 0,
1981 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS | CM_SCACHESYNC_LOCK);
1989 lock_ReleaseWrite(&dscp->rw);
1991 lock_ReleaseWrite(&scp->rw);
1993 if (code == 0 && dscp && bDeleteFile) {
1994 WCHAR FileName[260];
1996 StringCchCopyNW(FileName, 260, FileNameCounted, FileNameLength / sizeof(WCHAR));
1998 if (scp->fileType == CM_SCACHETYPE_DIRECTORY)
1999 code = cm_RemoveDir(dscp, NULL, FileName, userp, &req);
2001 code = cm_Unlink(dscp, NULL, FileName, userp, &req);
2005 if ( ResultBufferLength >= sizeof( AFSFileCleanupResultCB))
2007 (*ResultCB)->ResultBufferLength = sizeof( AFSFileCleanupResultCB);
2008 pResultCB = (AFSFileCleanupResultCB *)&(*ResultCB)->ResultData;
2009 pResultCB->ParentDataVersion.QuadPart = dscp ? dscp->dataVersion : 0;
2011 (*ResultCB)->ResultBufferLength = 0;
2014 (*ResultCB)->ResultStatus = 0;
2015 osi_Log0(afsd_logp, "RDR_CleanupFileEntry SUCCESS");
2017 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2018 (*ResultCB)->ResultStatus = status;
2019 osi_Log2(afsd_logp, "RDR_CleanupFileEntry FAILURE code=0x%x status=0x%x",
2024 cm_ReleaseSCache(scp);
2026 cm_ReleaseSCache(dscp);
2032 RDR_DeleteFileEntry( IN cm_user_t *userp,
2033 IN AFSFileID ParentId,
2034 IN ULONGLONG ProcessId,
2035 IN WCHAR *FileNameCounted,
2036 IN DWORD FileNameLength,
2039 IN DWORD ResultBufferLength,
2040 IN OUT AFSCommResult **ResultCB)
2043 AFSFileDeleteResultCB *pResultCB = NULL;
2044 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
2047 cm_scache_t * dscp = NULL;
2048 cm_scache_t * scp = NULL;
2049 afs_uint32 flags = 0;
2053 wchar_t FileName[260];
2056 StringCchCopyNW(FileName, 260, FileNameCounted, FileNameLength / sizeof(WCHAR));
2058 osi_Log4(afsd_logp, "RDR_DeleteFileEntry parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2059 ParentId.Cell, ParentId.Volume,
2060 ParentId.Vnode, ParentId.Unique);
2061 osi_Log2(afsd_logp, "... name=%S checkOnly=%x",
2062 osi_LogSaveStringW(afsd_logp, FileName),
2067 req.flags |= CM_REQ_WOW64;
2068 memset(&setAttr, 0, sizeof(cm_attr_t));
2070 *ResultCB = (AFSCommResult *)malloc( size);
2072 osi_Log0(afsd_logp, "RDR_DeleteFileEntry out of memory");
2080 parentFid.cell = ParentId.Cell;
2081 parentFid.volume = ParentId.Volume;
2082 parentFid.vnode = ParentId.Vnode;
2083 parentFid.unique = ParentId.Unique;
2084 parentFid.hash = ParentId.Hash;
2086 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
2088 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2089 if ( status == STATUS_INVALID_HANDLE)
2090 status = STATUS_OBJECT_PATH_INVALID;
2091 (*ResultCB)->ResultStatus = status;
2092 osi_Log2(afsd_logp, "RDR_DeleteFileEntry cm_GetSCache ParentFID failure code=0x%x status=0x%x",
2097 lock_ObtainWrite(&dscp->rw);
2099 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
2100 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2102 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2103 (*ResultCB)->ResultStatus = status;
2104 (*ResultCB)->ResultBufferLength = 0;
2105 lock_ReleaseWrite(&dscp->rw);
2106 cm_ReleaseSCache(dscp);
2107 osi_Log3(afsd_logp, "RDR_DeleteFileEntry cm_SyncOp failure dscp=0x%p code=0x%x status=0x%x",
2108 dscp, code, status);
2112 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2113 lock_ReleaseWrite(&dscp->rw);
2115 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
2116 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
2117 cm_ReleaseSCache(dscp);
2118 osi_Log1(afsd_logp, "RDR_DeleteFileEntry Not a Directory dscp=0x%p",
2123 code = cm_Lookup(dscp, FileName, 0, userp, &req, &scp);
2125 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2126 (*ResultCB)->ResultStatus = status;
2127 (*ResultCB)->ResultBufferLength = 0;
2128 cm_ReleaseSCache(dscp);
2129 osi_Log2(afsd_logp, "RDR_DeleteFileEntry cm_Lookup failure code=0x%x status=0x%x",
2134 lock_ObtainWrite(&scp->rw);
2135 code = cm_SyncOp(scp, NULL, userp, &req, PRSFS_DELETE,
2136 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2138 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2139 (*ResultCB)->ResultStatus = status;
2140 (*ResultCB)->ResultBufferLength = 0;
2141 lock_ReleaseWrite(&scp->rw);
2142 cm_ReleaseSCache(scp);
2143 cm_ReleaseSCache(dscp);
2144 osi_Log3(afsd_logp, "RDR_DeleteFileEntry cm_SyncOp failure scp=0x%p code=0x%x status=0x%x",
2150 /* Drop all locks since the file is being deleted */
2151 code = cm_SyncOp(scp, NULL, userp, &req, 0,
2152 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS | CM_SCACHESYNC_LOCK);
2154 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2155 (*ResultCB)->ResultStatus = status;
2156 (*ResultCB)->ResultBufferLength = 0;
2157 lock_ReleaseWrite(&scp->rw);
2158 cm_ReleaseSCache(scp);
2159 cm_ReleaseSCache(dscp);
2160 osi_Log3(afsd_logp, "RDR_DeleteFileEntry cm_SyncOp Lock failure scp=0x%p code=0x%x status=0x%x",
2164 /* the scp is now locked and current */
2165 key = cm_GenerateKey(CM_SESSION_IFS, ProcessId, 0);
2167 code = cm_UnlockByKey(scp, key,
2168 CM_UNLOCK_FLAG_BY_FID,
2171 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS | CM_SCACHESYNC_LOCK);
2172 lock_ReleaseWrite(&scp->rw);
2174 if (scp->fileType == CM_SCACHETYPE_DIRECTORY)
2175 code = cm_RemoveDir(dscp, NULL, FileName, userp, &req);
2177 code = cm_Unlink(dscp, NULL, FileName, userp, &req);
2179 lock_ReleaseWrite(&scp->rw);
2183 (*ResultCB)->ResultStatus = 0; // We will be able to fit all the data in here
2185 (*ResultCB)->ResultBufferLength = sizeof( AFSFileDeleteResultCB);
2187 pResultCB = (AFSFileDeleteResultCB *)(*ResultCB)->ResultData;
2189 pResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
2190 osi_Log0(afsd_logp, "RDR_DeleteFileEntry SUCCESS");
2192 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2193 (*ResultCB)->ResultStatus = status;
2194 (*ResultCB)->ResultBufferLength = 0;
2195 osi_Log2(afsd_logp, "RDR_DeleteFileEntry FAILURE code=0x%x status=0x%x",
2199 cm_ReleaseSCache(dscp);
2200 cm_ReleaseSCache(scp);
2206 RDR_RenameFileEntry( IN cm_user_t *userp,
2207 IN WCHAR *SourceFileNameCounted,
2208 IN DWORD SourceFileNameLength,
2209 IN AFSFileID SourceFileId,
2210 IN AFSFileRenameCB *pRenameCB,
2212 IN DWORD ResultBufferLength,
2213 IN OUT AFSCommResult **ResultCB)
2216 AFSFileRenameResultCB *pResultCB = NULL;
2217 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
2218 AFSFileID SourceParentId = pRenameCB->SourceParentId;
2219 AFSFileID TargetParentId = pRenameCB->TargetParentId;
2220 WCHAR * TargetFileNameCounted = pRenameCB->TargetName;
2221 DWORD TargetFileNameLength = pRenameCB->TargetNameLength;
2222 cm_fid_t SourceParentFid;
2223 cm_fid_t TargetParentFid;
2225 cm_fid_t OrigTargetFid = {0,0,0,0,0};
2227 cm_scache_t * oldDscp;
2228 cm_scache_t * newDscp;
2230 wchar_t shortName[13];
2231 wchar_t SourceFileName[260];
2232 wchar_t TargetFileName[260];
2240 req.flags |= CM_REQ_WOW64;
2242 StringCchCopyNW(SourceFileName, 260, SourceFileNameCounted, SourceFileNameLength / sizeof(WCHAR));
2243 StringCchCopyNW(TargetFileName, 260, TargetFileNameCounted, TargetFileNameLength / sizeof(WCHAR));
2245 osi_Log4(afsd_logp, "RDR_RenameFileEntry Source Parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2246 SourceParentId.Cell, SourceParentId.Volume,
2247 SourceParentId.Vnode, SourceParentId.Unique);
2248 osi_Log2(afsd_logp, "... Source Name=%S Length %u", osi_LogSaveStringW(afsd_logp, SourceFileName), SourceFileNameLength);
2249 osi_Log4(afsd_logp, "... Target Parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2250 TargetParentId.Cell, TargetParentId.Volume,
2251 TargetParentId.Vnode, TargetParentId.Unique);
2252 osi_Log2(afsd_logp, "... Target Name=%S Length %u", osi_LogSaveStringW(afsd_logp, TargetFileName), TargetFileNameLength);
2254 *ResultCB = (AFSCommResult *)malloc( size);
2262 pResultCB = (AFSFileRenameResultCB *)(*ResultCB)->ResultData;
2264 if (SourceFileNameLength == 0 || TargetFileNameLength == 0)
2266 osi_Log2(afsd_logp, "RDR_RenameFileEntry Invalid Name Length: src %u target %u",
2267 SourceFileNameLength, TargetFileNameLength);
2268 (*ResultCB)->ResultStatus = STATUS_INVALID_PARAMETER;
2272 SourceParentFid.cell = SourceParentId.Cell;
2273 SourceParentFid.volume = SourceParentId.Volume;
2274 SourceParentFid.vnode = SourceParentId.Vnode;
2275 SourceParentFid.unique = SourceParentId.Unique;
2276 SourceParentFid.hash = SourceParentId.Hash;
2278 TargetParentFid.cell = TargetParentId.Cell;
2279 TargetParentFid.volume = TargetParentId.Volume;
2280 TargetParentFid.vnode = TargetParentId.Vnode;
2281 TargetParentFid.unique = TargetParentId.Unique;
2282 TargetParentFid.hash = TargetParentId.Hash;
2284 code = cm_GetSCache(&SourceParentFid, NULL, &oldDscp, userp, &req);
2286 osi_Log1(afsd_logp, "RDR_RenameFileEntry cm_GetSCache source parent failed code 0x%x", code);
2287 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2288 if ( status == STATUS_INVALID_HANDLE)
2289 status = STATUS_OBJECT_PATH_INVALID;
2290 (*ResultCB)->ResultStatus = status;
2294 lock_ObtainWrite(&oldDscp->rw);
2295 code = cm_SyncOp(oldDscp, NULL, userp, &req, 0,
2296 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2298 osi_Log2(afsd_logp, "RDR_RenameFileEntry cm_SyncOp oldDscp 0x%p failed code 0x%x", oldDscp, code);
2299 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2300 if ( status == STATUS_INVALID_HANDLE)
2301 status = STATUS_OBJECT_PATH_INVALID;
2302 (*ResultCB)->ResultStatus = status;
2303 lock_ReleaseWrite(&oldDscp->rw);
2304 cm_ReleaseSCache(oldDscp);
2308 cm_SyncOpDone(oldDscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2309 lock_ReleaseWrite(&oldDscp->rw);
2312 if (oldDscp->fileType != CM_SCACHETYPE_DIRECTORY) {
2313 osi_Log1(afsd_logp, "RDR_RenameFileEntry oldDscp 0x%p not a directory", oldDscp);
2314 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
2315 cm_ReleaseSCache(oldDscp);
2319 code = cm_GetSCache(&TargetParentFid, NULL, &newDscp, userp, &req);
2321 osi_Log1(afsd_logp, "RDR_RenameFileEntry cm_GetSCache target parent failed code 0x%x", code);
2322 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2323 (*ResultCB)->ResultStatus = status;
2324 cm_ReleaseSCache(oldDscp);
2328 lock_ObtainWrite(&newDscp->rw);
2329 code = cm_SyncOp(newDscp, NULL, userp, &req, 0,
2330 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2332 osi_Log2(afsd_logp, "RDR_RenameFileEntry cm_SyncOp newDscp 0x%p failed code 0x%x", newDscp, code);
2333 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2334 (*ResultCB)->ResultStatus = status;
2335 lock_ReleaseWrite(&newDscp->rw);
2336 cm_ReleaseSCache(oldDscp);
2337 cm_ReleaseSCache(newDscp);
2341 cm_SyncOpDone(newDscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2342 lock_ReleaseWrite(&newDscp->rw);
2345 if (newDscp->fileType != CM_SCACHETYPE_DIRECTORY) {
2346 osi_Log1(afsd_logp, "RDR_RenameFileEntry newDscp 0x%p not a directory", newDscp);
2347 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
2348 cm_ReleaseSCache(oldDscp);
2349 cm_ReleaseSCache(newDscp);
2353 /* Obtain the original FID just for debugging purposes */
2354 code = cm_BeginDirOp( oldDscp, userp, &req, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
2356 code = cm_BPlusDirLookup(&dirop, SourceFileName, &SourceFid);
2357 code = cm_BPlusDirLookup(&dirop, TargetFileName, &OrigTargetFid);
2358 cm_EndDirOp(&dirop);
2361 code = cm_Rename( oldDscp, NULL, SourceFileName,
2362 newDscp, TargetFileName, userp, &req);
2364 cm_scache_t *scp = 0;
2367 (*ResultCB)->ResultBufferLength = ResultBufferLength;
2368 dwRemaining = ResultBufferLength - sizeof( AFSFileRenameResultCB) + sizeof( AFSDirEnumEntry);
2369 (*ResultCB)->ResultStatus = 0;
2371 pResultCB->SourceParentDataVersion.QuadPart = oldDscp->dataVersion;
2372 pResultCB->TargetParentDataVersion.QuadPart = newDscp->dataVersion;
2374 osi_Log2(afsd_logp, "RDR_RenameFileEntry cm_Rename oldDscp 0x%p newDscp 0x%p SUCCESS",
2377 code = cm_BeginDirOp( newDscp, userp, &req, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
2379 code = cm_BPlusDirLookup(&dirop, TargetFileName, &TargetFid);
2380 cm_EndDirOp(&dirop);
2384 osi_Log1(afsd_logp, "RDR_RenameFileEntry cm_BPlusDirLookup failed code 0x%x",
2386 (*ResultCB)->ResultStatus = STATUS_OBJECT_PATH_INVALID;
2387 cm_ReleaseSCache(oldDscp);
2388 cm_ReleaseSCache(newDscp);
2392 osi_Log4(afsd_logp, "RDR_RenameFileEntry Target FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2393 TargetFid.cell, TargetFid.volume,
2394 TargetFid.vnode, TargetFid.unique);
2396 code = cm_GetSCache(&TargetFid, &newDscp->fid, &scp, userp, &req);
2398 osi_Log1(afsd_logp, "RDR_RenameFileEntry cm_GetSCache target failed code 0x%x", code);
2399 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2400 (*ResultCB)->ResultStatus = status;
2401 cm_ReleaseSCache(oldDscp);
2402 cm_ReleaseSCache(newDscp);
2406 /* Make sure the source vnode is current */
2407 lock_ObtainWrite(&scp->rw);
2408 code = cm_SyncOp(scp, NULL, userp, &req, 0,
2409 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2411 osi_Log2(afsd_logp, "RDR_RenameFileEntry cm_SyncOp scp 0x%p failed code 0x%x", scp, code);
2412 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2413 (*ResultCB)->ResultStatus = status;
2414 lock_ReleaseWrite(&scp->rw);
2415 cm_ReleaseSCache(oldDscp);
2416 cm_ReleaseSCache(newDscp);
2417 cm_ReleaseSCache(scp);
2421 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2422 lock_ReleaseWrite(&scp->rw);
2424 dfid.vnode = htonl(scp->fid.vnode);
2425 dfid.unique = htonl(scp->fid.unique);
2427 if (!cm_Is8Dot3(TargetFileName))
2428 cm_Gen8Dot3NameIntW(TargetFileName, &dfid, shortName, NULL);
2430 shortName[0] = '\0';
2432 RDR_PopulateCurrentEntry(&pResultCB->DirEnum, dwRemaining,
2433 newDscp, scp, userp, &req, TargetFileName, shortName,
2434 RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS,
2435 0, NULL, &dwRemaining);
2436 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
2437 cm_ReleaseSCache(scp);
2439 osi_Log0(afsd_logp, "RDR_RenameFileEntry SUCCESS");
2441 osi_Log3(afsd_logp, "RDR_RenameFileEntry cm_Rename oldDscp 0x%p newDscp 0x%p failed code 0x%x",
2442 oldDscp, newDscp, code);
2443 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2444 (*ResultCB)->ResultStatus = status;
2445 (*ResultCB)->ResultBufferLength = 0;
2448 cm_ReleaseSCache(oldDscp);
2449 cm_ReleaseSCache(newDscp);
2454 RDR_FlushFileEntry( IN cm_user_t *userp,
2455 IN AFSFileID FileId,
2457 IN DWORD ResultBufferLength,
2458 IN OUT AFSCommResult **ResultCB)
2460 cm_scache_t *scp = NULL;
2471 req.flags |= CM_REQ_WOW64;
2473 osi_Log4(afsd_logp, "RDR_FlushFileEntry File FID cell 0x%x vol 0x%x vno 0x%x uniq 0x%x",
2474 FileId.Cell, FileId.Volume,
2475 FileId.Vnode, FileId.Unique);
2477 snprintf( dbgstr, 1024,
2478 "RDR_FlushFileEntry File FID cell 0x%x vol 0x%x vno 0x%x uniq 0x%x\n",
2479 FileId.Cell, FileId.Volume,
2480 FileId.Vnode, FileId.Unique);
2481 OutputDebugStringA( dbgstr);
2484 *ResultCB = (AFSCommResult *)malloc( sizeof( AFSCommResult));
2486 osi_Log0(afsd_logp, "RDR_FlushFileEntry out of memory");
2492 sizeof( AFSCommResult));
2494 /* Process the release */
2495 Fid.cell = FileId.Cell;
2496 Fid.volume = FileId.Volume;
2497 Fid.vnode = FileId.Vnode;
2498 Fid.unique = FileId.Unique;
2499 Fid.hash = FileId.Hash;
2501 code = cm_GetSCache(&Fid, NULL, &scp, userp, &req);
2503 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2504 (*ResultCB)->ResultStatus = status;
2505 osi_Log2(afsd_logp, "RDR_FlushFileEntry cm_GetSCache FID failure code=0x%x status=0x%x",
2510 lock_ObtainWrite(&scp->rw);
2511 if (scp->flags & CM_SCACHEFLAG_DELETED) {
2512 lock_ReleaseWrite(&scp->rw);
2513 (*ResultCB)->ResultStatus = STATUS_INVALID_HANDLE;
2517 code = cm_SyncOp(scp, NULL, userp, &req, 0,
2518 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2520 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2521 (*ResultCB)->ResultStatus = status;
2522 lock_ReleaseWrite(&scp->rw);
2523 cm_ReleaseSCache(scp);
2524 osi_Log3(afsd_logp, "RDR_FlushFileEntry cm_SyncOp failure scp=0x%p code=0x%x status=0x%x",
2529 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2530 lock_ReleaseWrite(&scp->rw);
2532 code = cm_FSync(scp, userp, &req, FALSE);
2533 cm_ReleaseSCache(scp);
2536 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2537 (*ResultCB)->ResultStatus = status;
2538 osi_Log2(afsd_logp, "RDR_FlushFileEntry FAILURE code=0x%x status=0x%x",
2541 (*ResultCB)->ResultStatus = 0;
2542 osi_Log0(afsd_logp, "RDR_FlushFileEntry SUCCESS");
2544 (*ResultCB)->ResultBufferLength = 0;
2550 RDR_CheckAccess( IN cm_scache_t *scp, cm_user_t *userp, cm_req_t *reqp,
2554 ULONG afs_acc, afs_gr;
2556 afs_uint32 code = 0;
2558 file = (scp->fileType == CM_SCACHETYPE_FILE);
2561 /* access definitions from prs_fs.h */
2563 if (access & FILE_READ_DATA)
2564 afs_acc |= PRSFS_READ;
2565 if (access & FILE_READ_EA || access & FILE_READ_ATTRIBUTES)
2566 afs_acc |= PRSFS_READ;
2567 if (file && ((access & FILE_WRITE_DATA) || (access & FILE_APPEND_DATA)))
2568 afs_acc |= PRSFS_WRITE;
2569 if (access & FILE_WRITE_EA || access & FILE_WRITE_ATTRIBUTES)
2570 afs_acc |= PRSFS_WRITE;
2571 if (dir && ((access & FILE_ADD_FILE) || (access & FILE_ADD_SUBDIRECTORY)))
2572 afs_acc |= PRSFS_INSERT;
2573 if (dir && (access & FILE_LIST_DIRECTORY))
2574 afs_acc |= PRSFS_LOOKUP;
2575 if (file && (access & FILE_EXECUTE))
2576 afs_acc |= PRSFS_WRITE;
2577 if (dir && (access & FILE_TRAVERSE))
2578 afs_acc |= PRSFS_READ;
2579 if (dir && (access & FILE_DELETE_CHILD))
2580 afs_acc |= PRSFS_DELETE;
2581 if ((access & DELETE))
2582 afs_acc |= PRSFS_DELETE;
2584 /* check ACL with server */
2585 lock_ObtainWrite(&scp->rw);
2588 if (cm_HaveAccessRights(scp, userp, reqp, afs_acc, &afs_gr))
2594 /* we don't know the required access rights */
2595 code = cm_GetAccessRights(scp, userp, reqp);
2601 lock_ReleaseWrite(&(scp->rw));
2605 if (afs_gr & PRSFS_READ)
2606 *granted |= FILE_READ_DATA | FILE_READ_EA | FILE_READ_ATTRIBUTES | FILE_EXECUTE;
2607 if (afs_gr & PRSFS_WRITE)
2608 *granted |= FILE_WRITE_DATA | FILE_APPEND_DATA | FILE_WRITE_EA | FILE_WRITE_ATTRIBUTES | FILE_EXECUTE;
2609 if (afs_gr & PRSFS_INSERT)
2610 *granted |= (dir ? FILE_ADD_FILE | FILE_ADD_SUBDIRECTORY : 0) | (file ? FILE_ADD_SUBDIRECTORY : 0);
2611 if (afs_gr & PRSFS_LOOKUP)
2612 *granted |= (dir ? FILE_LIST_DIRECTORY : 0);
2613 if (afs_gr & PRSFS_DELETE)
2614 *granted |= FILE_DELETE_CHILD | DELETE;
2615 if (afs_gr & PRSFS_LOCK)
2617 if (afs_gr & PRSFS_ADMINISTER)
2620 *granted |= SYNCHRONIZE | READ_CONTROL;
2622 /* don't give more access than what was requested */
2624 osi_Log3(afsd_logp, "RDR_CheckAccess SUCCESS scp=0x%p requested=0x%x granted=0x%x", scp, access, *granted);
2626 osi_Log2(afsd_logp, "RDR_CheckAccess FAILURE scp=0x%p code=0x%x",
2633 RDR_OpenFileEntry( IN cm_user_t *userp,
2634 IN AFSFileID FileId,
2635 IN AFSFileOpenCB *OpenCB,
2638 IN DWORD ResultBufferLength,
2639 IN OUT AFSCommResult **ResultCB)
2641 AFSFileOpenResultCB *pResultCB = NULL;
2642 cm_scache_t *scp = NULL;
2643 cm_user_t *sysUserp = NULL;
2645 cm_lock_data_t *ldp = NULL;
2652 req.flags |= CM_REQ_WOW64;
2654 osi_Log4(afsd_logp, "RDR_OpenFileEntry File FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2655 FileId.Cell, FileId.Volume,
2656 FileId.Vnode, FileId.Unique);
2658 *ResultCB = (AFSCommResult *)malloc( sizeof( AFSCommResult) + sizeof( AFSFileOpenResultCB));
2660 osi_Log0(afsd_logp, "RDR_OpenFileEntry out of memory");
2666 sizeof( AFSCommResult) + sizeof( AFSFileOpenResultCB));
2668 pResultCB = (AFSFileOpenResultCB *)(*ResultCB)->ResultData;
2670 /* Process the release */
2671 Fid.cell = FileId.Cell;
2672 Fid.volume = FileId.Volume;
2673 Fid.vnode = FileId.Vnode;
2674 Fid.unique = FileId.Unique;
2675 Fid.hash = FileId.Hash;
2677 code = cm_GetSCache(&Fid, NULL, &scp, userp, &req);
2679 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2680 (*ResultCB)->ResultStatus = status;
2681 osi_Log2(afsd_logp, "RDR_OpenFileEntry cm_GetSCache FID failure code=0x%x status=0x%x",
2686 lock_ObtainWrite(&scp->rw);
2687 code = cm_SyncOp(scp, NULL, userp, &req, 0,
2688 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2690 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2691 (*ResultCB)->ResultStatus = status;
2692 lock_ReleaseWrite(&scp->rw);
2693 cm_ReleaseSCache(scp);
2694 osi_Log3(afsd_logp, "RDR_OpenFileEntry cm_SyncOp failure scp=0x%p code=0x%x status=0x%x",
2699 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2700 lock_ReleaseWrite(&scp->rw);
2702 sysUserp = RDR_GetLocalSystemUser();
2705 * Skip the open check if the request is coming from the local system account.
2706 * The local system has no tokens and therefore any requests sent to a file
2707 * server will fail. Unfortunately, there are special system processes that
2708 * perform actions on files and directories in preparation for memory mapping
2709 * executables. If the open check fails, the real request from the user process
2710 * will never be issued.
2712 * Permitting the file system to allow subsequent operations to proceed does
2713 * not compromise security. All requests to obtain file data or directory
2714 * enumerations will subsequently fail if they are not submitted under the
2715 * context of a process for that have access to the necessary credentials.
2718 if ( userp == sysUserp)
2720 osi_Log1(afsd_logp, "RDR_OpenFileEntry LOCAL_SYSTEM access check skipped scp=0x%p",
2722 pResultCB->GrantedAccess = OpenCB->DesiredAccess;
2723 pResultCB->FileAccess = AFS_FILE_ACCESS_NOLOCK;
2734 "RDR_OpenFileEntry repeating open check scp=0x%p userp=0x%p code=0x%x",
2737 code = cm_CheckNTOpen(scp, OpenCB->DesiredAccess, OpenCB->ShareAccess,
2739 OpenCB->ProcessId, OpenCB->Identifier,
2742 code = RDR_CheckAccess(scp, userp, &req, OpenCB->DesiredAccess, &pResultCB->GrantedAccess);
2743 cm_CheckNTOpenDone(scp, userp, &req, &ldp);
2744 } while (count < 100 && (code == CM_ERROR_RETRY || code == CM_ERROR_WOULDBLOCK));
2748 * If we are restricting sharing, we should do so with a suitable
2751 if (code == 0 && scp->fileType == CM_SCACHETYPE_FILE && !(OpenCB->ShareAccess & FILE_SHARE_WRITE)) {
2753 LARGE_INTEGER LOffset, LLength;
2756 LOffset.HighPart = SMB_FID_QLOCK_HIGH;
2757 LOffset.LowPart = SMB_FID_QLOCK_LOW;
2758 LLength.HighPart = 0;
2759 LLength.LowPart = SMB_FID_QLOCK_LENGTH;
2762 * If we are not opening the file for writing, then we don't
2763 * try to get an exclusive lock. No one else should be able to
2764 * get an exclusive lock on the file anyway, although someone
2765 * else can get a shared lock.
2767 if ((OpenCB->ShareAccess & FILE_SHARE_READ) || !(OpenCB->DesiredAccess & AFS_ACCESS_WRITE))
2769 sLockType = LOCKING_ANDX_SHARED_LOCK;
2774 key = cm_GenerateKey(CM_SESSION_IFS, SMB_FID_QLOCK_PID, OpenCB->Identifier);
2776 lock_ObtainWrite(&scp->rw);
2777 code = cm_Lock(scp, sLockType, LOffset, LLength, key, 0, userp, &req, NULL);
2778 lock_ReleaseWrite(&scp->rw);
2781 code = CM_ERROR_SHARING_VIOLATION;
2782 pResultCB->FileAccess = AFS_FILE_ACCESS_NOLOCK;
2784 if (sLockType == LOCKING_ANDX_SHARED_LOCK)
2785 pResultCB->FileAccess = AFS_FILE_ACCESS_SHARED;
2787 pResultCB->FileAccess = AFS_FILE_ACCESS_EXCLUSIVE;
2790 pResultCB->FileAccess = AFS_FILE_ACCESS_NOLOCK;
2793 cm_ReleaseUser(sysUserp);
2794 if (code == 0 && bHoldFid)
2795 RDR_FlagScpInUse( scp, FALSE );
2796 cm_ReleaseSCache(scp);
2799 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2800 (*ResultCB)->ResultStatus = status;
2801 osi_Log2(afsd_logp, "RDR_OpenFileEntry FAILURE code=0x%x status=0x%x",
2804 (*ResultCB)->ResultStatus = 0;
2805 (*ResultCB)->ResultBufferLength = sizeof( AFSFileOpenResultCB);
2806 osi_Log0(afsd_logp, "RDR_OpenFileEntry SUCCESS");
2812 RDR_ReleaseFileAccess( IN cm_user_t *userp,
2813 IN AFSFileID FileId,
2814 IN AFSFileAccessReleaseCB *ReleaseFileCB,
2816 IN DWORD ResultBufferLength,
2817 IN OUT AFSCommResult **ResultCB)
2820 unsigned int sLockType;
2821 LARGE_INTEGER LOffset, LLength;
2822 cm_scache_t *scp = NULL;
2830 req.flags |= CM_REQ_WOW64;
2832 osi_Log4(afsd_logp, "RDR_ReleaseFileAccess File FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2833 FileId.Cell, FileId.Volume,
2834 FileId.Vnode, FileId.Unique);
2836 *ResultCB = (AFSCommResult *)malloc( sizeof( AFSCommResult));
2838 osi_Log0(afsd_logp, "RDR_ReleaseFileAccess out of memory");
2842 memset( *ResultCB, '\0', sizeof( AFSCommResult));
2844 if (ReleaseFileCB->FileAccess == AFS_FILE_ACCESS_NOLOCK)
2847 /* Process the release */
2848 Fid.cell = FileId.Cell;
2849 Fid.volume = FileId.Volume;
2850 Fid.vnode = FileId.Vnode;
2851 Fid.unique = FileId.Unique;
2852 Fid.hash = FileId.Hash;
2854 code = cm_GetSCache(&Fid, NULL, &scp, userp, &req);
2856 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2857 (*ResultCB)->ResultStatus = status;
2858 osi_Log2(afsd_logp, "RDR_ReleaseFileAccess cm_GetSCache FID failure code=0x%x status=0x%x",
2863 if (ReleaseFileCB->FileAccess == AFS_FILE_ACCESS_SHARED)
2864 sLockType = LOCKING_ANDX_SHARED_LOCK;
2868 key = cm_GenerateKey(CM_SESSION_IFS, SMB_FID_QLOCK_PID, ReleaseFileCB->Identifier);
2870 LOffset.HighPart = SMB_FID_QLOCK_HIGH;
2871 LOffset.LowPart = SMB_FID_QLOCK_LOW;
2872 LLength.HighPart = 0;
2873 LLength.LowPart = SMB_FID_QLOCK_LENGTH;
2875 lock_ObtainWrite(&scp->rw);
2877 code = cm_SyncOp(scp, NULL, userp, &req, 0, CM_SCACHESYNC_LOCK);
2880 code = cm_Unlock(scp, sLockType, LOffset, LLength, key, 0, userp, &req);
2882 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_LOCK);
2884 if (code == CM_ERROR_RANGE_NOT_LOCKED)
2886 osi_Log3(afsd_logp, "RDR_ReleaseFileAccess Range Not Locked -- FileAccess 0x%x ProcessId 0x%x HandleId 0x%x",
2887 ReleaseFileCB->FileAccess, ReleaseFileCB->ProcessId, ReleaseFileCB->Identifier);
2891 lock_ReleaseWrite(&scp->rw);
2893 osi_Log0(afsd_logp, "RDR_ReleaseFileAccessEntry SUCCESS");
2897 HexCheckSum(unsigned char * buf, int buflen, unsigned char * md5cksum)
2900 static char tr[16] = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
2903 return "buffer length too small to HexCheckSum";
2905 for (i=0;i<16;i++) {
2908 buf[i*2] = tr[k / 16];
2909 buf[i*2+1] = tr[k % 16];
2917 * Extent requests from the file system are triggered when a file
2918 * page is not resident in the Windows cache. The file system is
2919 * responsible for loading the page but cannot block the request
2920 * while doing so. The AFS Redirector forwards the requests to
2921 * the AFS cache manager while indicating to Windows that the page
2922 * is not yet available. A polling operation will then ensue with
2923 * the AFS Redirector issuing a RDR_RequestFileExtentsXXX call for
2924 * each poll attempt. As each request is received and processed
2925 * by a separate worker thread in the service, this can lead to
2926 * contention by multiple threads attempting to claim the same
2927 * cm_buf_t objects. Therefore, it is important that
2929 * (a) the service avoid processing more than one overlapping
2930 * extent request at a time
2931 * (b) background daemon processing be used to avoid blocking
2934 * Beginning with the 20091122 build of the redirector, the redirector
2935 * will not issue an additional RDR_RequestFileExtentsXXX call for
2936 * each poll request. Instead, afsd_service is required to track
2937 * the requests and return them to the redirector or fail the
2938 * portions of the request that cannot be satisfied.
2940 * The request processing returns any extents that can be returned
2941 * immediately to the redirector. The rest of the requested range(s)
2942 * are queued as background operations using RDR_BkgFetch().
2945 /* do the background fetch. */
2947 RDR_BkgFetch(cm_scache_t *scp, afs_uint32 p1, afs_uint32 p2, afs_uint32 p3, afs_uint32 p4,
2948 cm_user_t *userp, cm_req_t *reqp)
2954 osi_hyper_t fetched;
2955 osi_hyper_t tblocksize;
2958 cm_buf_t *bufp = NULL;
2959 DWORD dwResultBufferLength;
2960 AFSSetFileExtentsCB *pResultCB;
2964 int reportErrorToRedir = 0;
2965 int force_retry = 0;
2967 FileId.Cell = scp->fid.cell;
2968 FileId.Volume = scp->fid.volume;
2969 FileId.Vnode = scp->fid.vnode;
2970 FileId.Unique = scp->fid.unique;
2971 FileId.Hash = scp->fid.hash;
2973 fetched.LowPart = 0;
2974 fetched.HighPart = 0;
2975 tblocksize = ConvertLongToLargeInteger(cm_data.buf_blockSize);
2978 length.LowPart = p3;
2979 length.HighPart = p4;
2981 end = LargeIntegerAdd(base, length);
2983 osi_Log5(afsd_logp, "Starting BKG Fetch scp 0x%p offset 0x%x:%x length 0x%x:%x",
2984 scp, p2, p1, p4, p3);
2987 * Make sure we have a callback.
2988 * This is necessary so that we can return access denied
2989 * if a callback cannot be granted.
2991 lock_ObtainWrite(&scp->rw);
2992 code = cm_SyncOp(scp, NULL, userp, reqp, PRSFS_READ,
2993 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2995 lock_ReleaseWrite(&scp->rw);
2996 osi_Log2(afsd_logp, "RDR_BkgFetch cm_SyncOp failure scp=0x%p code=0x%x",
2998 smb_MapNTError(cm_MapRPCError(code, reqp), &status, TRUE);
2999 RDR_SetFileStatus( &scp->fid, &userp->authgroup, status);
3002 lock_ReleaseWrite(&scp->rw);
3004 dwResultBufferLength = (DWORD)(sizeof( AFSSetFileExtentsCB) + sizeof( AFSSetFileExtentsCB) * (length.QuadPart / cm_data.blockSize + 1));
3005 pResultCB = (AFSSetFileExtentsCB *)malloc( dwResultBufferLength );
3007 return CM_ERROR_RETRY;
3009 memset( pResultCB, '\0', dwResultBufferLength );
3010 pResultCB->FileId = FileId;
3012 for ( code = 0, offset = base;
3013 code == 0 && LargeIntegerLessThan(offset, end);
3014 offset = LargeIntegerAdd(offset, tblocksize) )
3016 int bBufRelease = TRUE;
3019 lock_ReleaseWrite(&scp->rw);
3023 code = buf_Get(scp, &offset, reqp, &bufp);
3026 * any error from buf_Get() is non-fatal.
3027 * we need to re-queue this extent fetch.
3034 lock_ObtainWrite(&scp->rw);
3038 code = cm_GetBuffer(scp, bufp, NULL, userp, reqp);
3040 if (!(bufp->qFlags & CM_BUF_QREDIR)) {
3041 #ifdef VALIDATE_CHECK_SUM
3047 if (bufp->flags & CM_BUF_DIRTY)
3048 cm_BufWrite(scp, &bufp->offset, cm_data.buf_blockSize, CM_BUF_WRITE_SCP_LOCKED, userp, reqp);
3050 lock_ObtainWrite(&buf_globalLock);
3051 if (!(bufp->flags & CM_BUF_DIRTY) &&
3052 bufp->cmFlags == 0 &&
3053 !(bufp->qFlags & CM_BUF_QREDIR)) {
3054 buf_InsertToRedirQueue(scp, bufp);
3055 lock_ReleaseWrite(&buf_globalLock);
3057 #ifdef VALIDATE_CHECK_SUM
3058 buf_ComputeCheckSum(bufp);
3060 pResultCB->FileExtents[count].Flags = 0;
3061 pResultCB->FileExtents[count].FileOffset.QuadPart = bufp->offset.QuadPart;
3062 pResultCB->FileExtents[count].CacheOffset.QuadPart = bufp->datap - RDR_extentBaseAddress;
3063 pResultCB->FileExtents[count].Length = cm_data.blockSize;
3065 fetched = LargeIntegerAdd(fetched, tblocksize);
3066 bBufRelease = FALSE;
3068 #ifdef VALIDATE_CHECK_SUM
3070 HexCheckSum(md5dbg, sizeof(md5dbg), bufp->md5cksum);
3071 snprintf( dbgstr, 1024,
3072 "RDR_BkgFetch md5 %s vol 0x%x vno 0x%x uniq 0x%x foffset 0x%x:%x coffset 0x%x:%x\n",
3074 scp->fid.volume, scp->fid.vnode, scp->fid.unique,
3075 pResultCB->FileExtents[count].FileOffset.HighPart,
3076 pResultCB->FileExtents[count].FileOffset.LowPart,
3077 pResultCB->FileExtents[count].CacheOffset.HighPart,
3078 pResultCB->FileExtents[count].CacheOffset.LowPart);
3079 OutputDebugStringA( dbgstr);
3082 osi_Log4(afsd_logp, "RDR_BkgFetch Extent2FS bufp 0x%p foffset 0x%p coffset 0x%p len 0x%x",
3083 bufp, bufp->offset.QuadPart, bufp->datap - RDR_extentBaseAddress, cm_data.blockSize);
3085 lock_ReleaseWrite(&buf_globalLock);
3086 if ((bufp->cmFlags != 0) || (bufp->flags & CM_BUF_DIRTY)) {
3087 /* An I/O operation is already in progress */
3089 osi_Log4(afsd_logp, "RDR_BkgFetch Extent2FS Not delivering to Redirector Dirty or Busy bufp 0x%p foffset 0x%p coffset 0x%p len 0x%x",
3090 bufp, bufp->offset.QuadPart, bufp->datap - RDR_extentBaseAddress, cm_data.blockSize);
3092 osi_Log4(afsd_logp, "RDR_BkgFetch Extent2FS Already held by Redirector bufp 0x%p foffset 0x%p coffset 0x%p len 0x%x",
3093 bufp, bufp->offset.QuadPart, bufp->datap - RDR_extentBaseAddress, cm_data.blockSize);
3097 osi_Log4(afsd_logp, "RDR_BkgFetch Extent2FS Already held by Redirector bufp 0x%p foffset 0x%p coffset 0x%p len 0x%x",
3098 bufp, bufp->offset.QuadPart, bufp->datap - RDR_extentBaseAddress, cm_data.blockSize);
3102 * depending on what the error from cm_GetBuffer is
3103 * it may or may not be fatal. Only return fatal errors.
3104 * Re-queue a request for others.
3106 osi_Log5(afsd_logp, "RDR_BkgFetch Extent2FS FAILURE bufp 0x%p foffset 0x%p coffset 0x%p len 0x%x code 0x%x",
3107 bufp, offset.QuadPart, bufp->datap - RDR_extentBaseAddress, cm_data.blockSize, code);
3109 case CM_ERROR_NOACCESS:
3110 case CM_ERROR_NOSUCHFILE:
3111 case CM_ERROR_NOSUCHPATH:
3112 case CM_ERROR_NOSUCHVOLUME:
3113 case CM_ERROR_NOSUCHCELL:
3114 case CM_ERROR_INVAL:
3115 case CM_ERROR_BADFD:
3116 case CM_ERROR_CLOCKSKEW:
3118 case CM_ERROR_QUOTA:
3119 case CM_ERROR_LOCK_CONFLICT:
3121 * these are fatal errors. deliver what we can
3124 reportErrorToRedir = 1;
3128 * non-fatal errors. re-queue the exent
3130 code = CM_ERROR_RETRY;
3140 lock_ObtainWrite(&scp->rw);
3144 /* wakeup anyone who is waiting */
3145 if (scp->flags & CM_SCACHEFLAG_WAITING) {
3146 osi_Log1(afsd_logp, "RDR Bkg Fetch Waking scp 0x%p", scp);
3147 osi_Wakeup((LONG_PTR) &scp->flags);
3149 lock_ReleaseWrite(&scp->rw);
3152 pResultCB->ExtentCount = count;
3153 RDR_SetFileExtents( pResultCB, dwResultBufferLength);
3157 if (reportErrorToRedir) {
3158 smb_MapNTError(cm_MapRPCError(code, reqp), &status, TRUE);
3159 RDR_SetFileStatus( &scp->fid, &userp->authgroup, status);
3162 osi_Log4(afsd_logp, "Ending BKG Fetch scp 0x%p code 0x%x fetched 0x%x:%x",
3163 scp, code, fetched.HighPart, fetched.LowPart);
3165 return force_retry ? CM_ERROR_RETRY : code;
3170 RDR_RequestFileExtentsAsync( IN cm_user_t *userp,
3171 IN AFSFileID FileId,
3172 IN AFSRequestExtentsCB *RequestExtentsCB,
3174 IN OUT DWORD * ResultBufferLength,
3175 IN OUT AFSSetFileExtentsCB **ResultCB)
3177 AFSSetFileExtentsCB *pResultCB = NULL;
3181 cm_scache_t *scp = NULL;
3184 afs_uint32 code = 0;
3186 LARGE_INTEGER ByteOffset, BeginOffset, EndOffset, QueueOffset;
3187 afs_uint32 QueueLength;
3189 BOOLEAN bBufRelease = TRUE;
3193 req.flags |= CM_REQ_WOW64;
3194 req.flags |= CM_REQ_NORETRY;
3196 osi_Log4(afsd_logp, "RDR_RequestFileExtentsAsync File FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
3197 FileId.Cell, FileId.Volume,
3198 FileId.Vnode, FileId.Unique);
3199 osi_Log4(afsd_logp, "... Flags 0x%x ByteOffset 0x%x:%x Length 0x%x",
3200 RequestExtentsCB->Flags,
3201 RequestExtentsCB->ByteOffset.HighPart, RequestExtentsCB->ByteOffset.LowPart,
3202 RequestExtentsCB->Length);
3203 Length = sizeof( AFSSetFileExtentsCB) + sizeof( AFSFileExtentCB) * (RequestExtentsCB->Length / cm_data.blockSize + 1);
3205 pResultCB = *ResultCB = (AFSSetFileExtentsCB *)malloc( Length );
3206 if (*ResultCB == NULL) {
3207 *ResultBufferLength = 0;
3210 *ResultBufferLength = Length;
3212 memset( pResultCB, '\0', Length );
3213 pResultCB->FileId = FileId;
3215 Fid.cell = FileId.Cell;
3216 Fid.volume = FileId.Volume;
3217 Fid.vnode = FileId.Vnode;
3218 Fid.unique = FileId.Unique;
3219 Fid.hash = FileId.Hash;
3221 code = cm_GetSCache(&Fid, NULL, &scp, userp, &req);
3223 osi_Log1(afsd_logp, "RDR_RequestFileExtentsAsync cm_GetSCache FID failure code=0x%x",
3225 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
3230 * Make sure we have a callback.
3231 * This is necessary so that we can return access denied
3232 * if a callback cannot be granted.
3234 lock_ObtainWrite(&scp->rw);
3235 code = cm_SyncOp(scp, NULL, userp, &req, PRSFS_READ,
3236 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
3237 lock_ReleaseWrite(&scp->rw);
3239 cm_ReleaseSCache(scp);
3240 osi_Log2(afsd_logp, "RDR_RequestFileExtentsAsync cm_SyncOp failure scp=0x%p code=0x%x",
3242 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
3243 RDR_SetFileStatus( &scp->fid, &userp->authgroup, status);
3247 /* Allocate the extents from the buffer package */
3249 ByteOffset = BeginOffset = RequestExtentsCB->ByteOffset,
3250 EndOffset.QuadPart = ByteOffset.QuadPart + RequestExtentsCB->Length;
3251 code == 0 && ByteOffset.QuadPart < EndOffset.QuadPart;
3252 ByteOffset.QuadPart += cm_data.blockSize)
3254 BOOL bHaveBuffer = FALSE;
3257 thyper.QuadPart = ByteOffset.QuadPart;
3259 code = buf_Get(scp, &thyper, &req, &bufp);
3261 lock_ObtainMutex(&bufp->mx);
3264 if (bufp->qFlags & CM_BUF_QREDIR) {
3266 } else if (bufp->flags & CM_BUF_DIRTY) {
3267 bHaveBuffer = FALSE;
3269 code = buf_CleanAsyncLocked(scp, bufp, &req, 0, NULL);
3274 case CM_ERROR_RETRY:
3275 /* Couldn't flush it, obtain it asynchronously so we don't block the thread. */
3276 bHaveBuffer = FALSE;
3280 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
3281 RDR_SetFileStatus(&FileId, &userp->authgroup, status);
3282 bHaveBuffer = FALSE;
3287 osi_hyper_t minLength; /* effective end of file */
3289 lock_ObtainRead(&scp->rw);
3290 bHaveBuffer = cm_HaveBuffer(scp, bufp, TRUE);
3292 if (LargeIntegerGreaterThan(scp->length, scp->serverLength))
3293 minLength = scp->serverLength;
3295 minLength = scp->length;
3297 if (LargeIntegerGreaterThanOrEqualTo(bufp->offset, minLength)) {
3299 memset(bufp->datap, 0, cm_data.buf_blockSize);
3300 bufp->dataVersion = scp->dataVersion;
3303 else if (bufp->dataVersion == CM_BUF_VERSION_BAD) {
3304 bufp->dataVersion = scp->dataVersion;
3307 else if ((RequestExtentsCB->Flags & AFS_EXTENT_FLAG_CLEAN) &&
3308 ByteOffset.QuadPart <= bufp->offset.QuadPart &&
3309 EndOffset.QuadPart >= bufp->offset.QuadPart + cm_data.blockSize)
3311 memset(bufp->datap, 0, cm_data.blockSize);
3312 bufp->dataVersion = scp->dataVersion;
3313 buf_SetDirty(bufp, &req, 0, cm_data.blockSize, userp);
3316 lock_ReleaseRead(&scp->rw);
3320 * if this buffer is already up to date, skip it.
3323 if (ByteOffset.QuadPart == BeginOffset.QuadPart) {
3324 BeginOffset.QuadPart += cm_data.blockSize;
3326 QueueLength = (afs_uint32)(ByteOffset.QuadPart - BeginOffset.QuadPart);
3327 QueueOffset = BeginOffset;
3328 BeginOffset = ByteOffset;
3331 if (!(bufp->qFlags & CM_BUF_QREDIR)) {