2 * Copyright (c) 2008 Secure Endpoints, Inc.
3 * Copyright (c) 2009-2014 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, BOOL bWow64)
86 reqp->flags |= CM_REQ_SOURCE_REDIR;
88 reqp->flags |= CM_REQ_WOW64;
92 RDR_fid2FID( cm_fid_t *fid, AFSFileID *FileId)
94 FileId->Cell = fid->cell;
95 FileId->Volume = fid->volume;
96 FileId->Vnode = fid->vnode;
97 FileId->Unique = fid->unique;
98 FileId->Hash = fid->hash;
102 RDR_FID2fid( AFSFileID *FileId, cm_fid_t *fid)
104 fid->cell = FileId->Cell;
105 fid->volume = FileId->Volume;
106 fid->vnode = FileId->Vnode;
107 fid->unique = FileId->Unique;
108 fid->hash = FileId->Hash;
112 RDR_ExtAttributes(cm_scache_t *scp)
116 if (scp->fileType == CM_SCACHETYPE_DIRECTORY ||
117 scp->fid.vnode & 0x1)
119 attrs = SMB_ATTR_DIRECTORY;
120 #ifdef SPECIAL_FOLDERS
121 attrs |= SMB_ATTR_SYSTEM; /* FILE_ATTRIBUTE_SYSTEM */
122 #endif /* SPECIAL_FOLDERS */
123 } else if ( scp->fileType == CM_SCACHETYPE_MOUNTPOINT ||
124 scp->fileType == CM_SCACHETYPE_DFSLINK ||
125 scp->fileType == CM_SCACHETYPE_INVALID)
127 attrs = SMB_ATTR_DIRECTORY | SMB_ATTR_REPARSE_POINT;
128 } else if ( scp->fileType == CM_SCACHETYPE_SYMLINK) {
129 attrs = SMB_ATTR_REPARSE_POINT;
134 if ((scp->unixModeBits & 0200) == 0)
135 attrs |= SMB_ATTR_READONLY; /* Read-only */
138 attrs = SMB_ATTR_NORMAL; /* FILE_ATTRIBUTE_NORMAL */
144 RDR_SetInitParams( OUT AFSRedirectorInitInfo **ppRedirInitInfo, OUT DWORD * pRedirInitInfoLen )
146 extern char cm_CachePath[];
147 extern cm_config_data_t cm_data;
148 extern int smb_hideDotFiles;
152 MEMORYSTATUSEX memStatus;
153 DWORD maxMemoryCacheSize;
154 char FullCachePath[MAX_PATH];
155 char TempPath[MAX_PATH];
156 char FullTempPath[MAX_PATH];
159 * The %TEMP% environment variable may be relative instead
160 * of absolute which can result in the redirector referring
161 * to a different directory than the service. The full path
162 * must therefore be obtained first.
165 CachePathLen = GetFullPathNameA(cm_CachePath, MAX_PATH, FullCachePath, NULL);
166 if (CachePathLen == 0) {
167 osi_Log0(afsd_logp, "RDR_SetInitParams Unable to obtain Full Cache Path");
168 return STATUS_OBJECT_NAME_NOT_FOUND;
171 TempPathLen = ExpandEnvironmentStringsA("%TEMP%", TempPath, MAX_PATH);
172 if (TempPathLen == 0) {
173 osi_Log0(afsd_logp, "RDR_SetInitParams Unable to expand %%TEMP%%");
174 return STATUS_OBJECT_NAME_NOT_FOUND;
177 TempPathLen = GetFullPathNameA(TempPath, MAX_PATH, FullTempPath, NULL);
178 if (TempPathLen == 0) {
179 osi_Log0(afsd_logp, "RDR_SetInitParams Unable to obtain Full Temp Path");
180 return STATUS_OBJECT_NAME_NOT_FOUND;
183 memStatus.dwLength = sizeof(memStatus);
184 if (GlobalMemoryStatusEx(&memStatus)) {
186 * Use the memory extent interface in the afs redirector
187 * whenever the cache size is less than equal to 10% of
188 * physical memory. Do not use too much because this memory
189 * will be locked by the redirector so it can't be swapped
192 maxMemoryCacheSize = (DWORD)(memStatus.ullTotalPhys / 1024 / 10);
195 * If we can't determine the amount of physical memory
196 * in the system, be conservative and limit the use of
197 * memory extent interface to 64MB data caches.
199 maxMemoryCacheSize = 65536;
202 *pRedirInitInfoLen = (DWORD) (sizeof(AFSRedirectorInitInfo) + (CachePathLen + TempPathLen) * sizeof(WCHAR));
203 *ppRedirInitInfo = (AFSRedirectorInitInfo *)malloc(*pRedirInitInfoLen);
204 (*ppRedirInitInfo)->Flags = smb_hideDotFiles ? AFS_REDIR_INIT_FLAG_HIDE_DOT_FILES : 0;
205 (*ppRedirInitInfo)->Flags |= cm_shortNames ? 0 : AFS_REDIR_INIT_FLAG_DISABLE_SHORTNAMES;
206 (*ppRedirInitInfo)->Flags |= cm_directIO ? AFS_REDIR_INIT_PERFORM_SERVICE_IO : 0;
207 (*ppRedirInitInfo)->MaximumChunkLength = cm_data.chunkSize;
208 (*ppRedirInitInfo)->GlobalFileId.Cell = cm_data.rootFid.cell;
209 (*ppRedirInitInfo)->GlobalFileId.Volume = cm_data.rootFid.volume;
210 (*ppRedirInitInfo)->GlobalFileId.Vnode = cm_data.rootFid.vnode;
211 (*ppRedirInitInfo)->GlobalFileId.Unique = cm_data.rootFid.unique;
212 (*ppRedirInitInfo)->GlobalFileId.Hash = cm_data.rootFid.hash;
213 (*ppRedirInitInfo)->ExtentCount.QuadPart = cm_data.buf_nbuffers;
214 (*ppRedirInitInfo)->CacheBlockSize = cm_data.blockSize;
215 (*ppRedirInitInfo)->MaxPathLinkCount = MAX_FID_COUNT;
216 (*ppRedirInitInfo)->NameArrayLength = MAX_FID_COUNT;
217 (*ppRedirInitInfo)->GlobalReparsePointPolicy = rdr_ReparsePointPolicy;
218 if (cm_virtualCache || cm_data.bufferSize <= maxMemoryCacheSize) {
219 osi_Log0(afsd_logp, "RDR_SetInitParams Initializing Memory Extent Interface");
220 (*ppRedirInitInfo)->MemoryCacheOffset.QuadPart = (LONGLONG)cm_data.bufDataBaseAddress;
221 (*ppRedirInitInfo)->MemoryCacheLength.QuadPart = cm_data.bufEndOfData - cm_data.bufDataBaseAddress;
222 (*ppRedirInitInfo)->CacheFileNameLength = 0;
223 RDR_extentBaseAddress = cm_data.bufDataBaseAddress;
225 (*ppRedirInitInfo)->MemoryCacheOffset.QuadPart = 0;
226 (*ppRedirInitInfo)->MemoryCacheLength.QuadPart = 0;
227 (*ppRedirInitInfo)->CacheFileNameLength = (ULONG) (CachePathLen * sizeof(WCHAR));
228 err = mbstowcs((*ppRedirInitInfo)->CacheFileName, FullCachePath, (CachePathLen + 1) *sizeof(WCHAR));
230 free(*ppRedirInitInfo);
231 osi_Log0(afsd_logp, "RDR_SetInitParams Invalid Object Name");
232 return STATUS_OBJECT_NAME_INVALID;
234 RDR_extentBaseAddress = cm_data.baseAddress;
236 (*ppRedirInitInfo)->DumpFileLocationOffset = FIELD_OFFSET(AFSRedirectorInitInfo, CacheFileName) + (*ppRedirInitInfo)->CacheFileNameLength;
237 (*ppRedirInitInfo)->DumpFileLocationLength = (TempPathLen - 1) * sizeof(WCHAR);
239 err = mbstowcs((((PBYTE)(*ppRedirInitInfo)) + (*ppRedirInitInfo)->DumpFileLocationOffset),
240 FullTempPath, (TempPathLen + 1) *sizeof(WCHAR));
242 free(*ppRedirInitInfo);
243 osi_Log0(afsd_logp, "RDR_SetInitParams Invalid Object Name");
244 return STATUS_OBJECT_NAME_INVALID;
247 osi_Log0(afsd_logp,"RDR_SetInitParams Success");
251 static wchar_t cname[MAX_COMPUTERNAME_LENGTH+1] = L"";
254 RDR_GetLocalSystemUser( void)
257 cm_user_t *userp = NULL;
259 if ( cname[0] == '\0') {
260 int len = MAX_COMPUTERNAME_LENGTH+1;
261 GetComputerNameW(cname, &len);
264 unp = smb_FindUserByName(NTSID_LOCAL_SYSTEM, cname, SMB_FLAG_CREATE);
265 lock_ObtainMutex(&unp->mx);
267 unp->userp = cm_NewUser();
268 unp->flags |= SMB_USERNAMEFLAG_SID;
269 lock_ReleaseMutex(&unp->mx);
272 smb_ReleaseUsername(unp);
275 userp = cm_rootUserp;
283 RDR_UserFromCommRequest( IN AFSCommRequest *RequestBuffer)
286 return RDR_UserFromAuthGroup( &RequestBuffer->AuthGroup);
290 RDR_UserFromAuthGroup( IN GUID *pGuid)
293 cm_user_t * userp = NULL;
294 RPC_WSTR UuidString = NULL;
296 if (UuidToStringW((UUID *)pGuid, &UuidString) != RPC_S_OK)
299 if ( cname[0] == '\0') {
300 int len = MAX_COMPUTERNAME_LENGTH+1;
301 GetComputerNameW(cname, &len);
305 unp = smb_FindUserByName(UuidString, cname, SMB_FLAG_CREATE);
306 lock_ObtainMutex(&unp->mx);
308 unp->userp = cm_NewUser();
309 memcpy(&unp->userp->authgroup, pGuid, sizeof(GUID));
311 unp->flags |= SMB_USERNAMEFLAG_SID;
312 lock_ReleaseMutex(&unp->mx);
315 smb_ReleaseUsername(unp);
319 userp = cm_rootUserp;
323 osi_Log2(afsd_logp, "RDR_UserFromCommRequest Guid %S userp = 0x%p",
324 osi_LogSaveStringW(afsd_logp, UuidString),
328 RpcStringFreeW(&UuidString);
334 RDR_ReleaseUser( IN cm_user_t *userp )
336 osi_Log1(afsd_logp, "RDR_ReleaseUser userp = 0x%p", userp);
337 cm_ReleaseUser(userp);
342 * RDR_FlagScpInUse flags the scp with CM_SCACHEFLAG_RDR_IN_USE
345 RDR_FlagScpInUse( IN cm_scache_t *scp, IN BOOL bLocked )
348 lock_ObtainWrite(&scp->rw);
350 lock_AssertWrite(&scp->rw);
351 scp->flags |= CM_SCACHEFLAG_RDR_IN_USE;
354 lock_ReleaseWrite(&scp->rw);
358 * Obtain the status information for the specified object using
359 * an inline bulk status rpc. cm_BPlusDirEnumBulkStatOne() will
360 * obtain current status for the directory object, the object
361 * which is the focus of the inquiry and as many other objects
362 * in the directory for which there are not callbacks registered
363 * since we are likely to be asked for other objects in the directory.
366 RDR_BulkStatLookup( cm_scache_t *dscp,
371 cm_direnum_t * enump = NULL;
375 code = cm_BeginDirOp(dscp, userp, reqp, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
377 code = cm_BPlusDirEnumerate(dscp, userp, reqp, TRUE, NULL, TRUE, &enump);
379 osi_Log1(afsd_logp, "RDR_BulkStatLookup cm_BPlusDirEnumerate failure code=0x%x",
384 osi_Log1(afsd_logp, "RDR_BulkStatLookup cm_BeginDirOp failure code=0x%x",
390 code = cm_BPlusDirEnumBulkStatOne(enump, scp);
392 osi_Log1(afsd_logp, "RDR_BulkStatLookup cm_BPlusDirEnumBulkStatOne failure code=0x%x",
395 cm_BPlusDirFreeEnumeration(enump);
402 #define RDR_POP_FOLLOW_MOUNTPOINTS 0x01
403 #define RDR_POP_EVALUATE_SYMLINKS 0x02
404 #define RDR_POP_WOW64 0x04
405 #define RDR_POP_NO_GETSTATUS 0x08
408 RDR_PopulateCurrentEntry( IN AFSDirEnumEntry * pCurrentEntry,
409 IN DWORD dwMaxEntryLength,
410 IN cm_scache_t * dscp,
411 IN cm_scache_t * scp,
412 IN cm_user_t * userp,
415 IN wchar_t * shortName,
417 IN afs_uint32 cmError,
418 OUT AFSDirEnumEntry **ppNextEntry,
419 OUT DWORD * pdwRemainingLength)
422 WCHAR * wname, *wtarget;
425 afs_uint32 code = 0, code2 = 0;
426 BOOL bMustFake = FALSE;
428 osi_Log5(afsd_logp, "RDR_PopulateCurrentEntry dscp=0x%p scp=0x%p name=%S short=%S flags=0x%x",
429 dscp, scp, osi_LogSaveStringW(afsd_logp, name),
430 osi_LogSaveStringW(afsd_logp, shortName), dwFlags);
431 osi_Log1(afsd_logp, "... maxLength=%d", dwMaxEntryLength);
433 if (dwMaxEntryLength < sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t)) {
435 *ppNextEntry = pCurrentEntry;
436 if (pdwRemainingLength)
437 *pdwRemainingLength = dwMaxEntryLength;
438 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry Not Enough Room for Entry %d < %d",
439 dwMaxEntryLength, sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t));
440 return CM_ERROR_TOOBIG;
448 dwEntryLength = sizeof(AFSDirEnumEntry);
450 lock_ObtainWrite(&scp->rw);
451 if (dwFlags & RDR_POP_NO_GETSTATUS) {
452 if (!cm_HaveCallback(scp))
455 #ifdef AFS_FREELANCE_CLIENT
456 if (scp->fid.cell == AFS_FAKE_ROOT_CELL_ID && scp->fid.volume == AFS_FAKE_ROOT_VOL_ID) {
458 * If the FID is from the Freelance Local Root always perform
459 * a single item status check.
461 code = cm_SyncOp( scp, NULL, userp, reqp, 0,
462 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
464 lock_ReleaseWrite(&scp->rw);
465 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry cm_SyncOp failed for scp=0x%p code=0x%x",
473 * For non-Freelance objects, check to see if we have current
474 * status information. If not, perform a bulk status lookup of multiple
475 * entries in order to reduce the number of RPCs issued to the file server.
477 if (cm_EAccesFindEntry(userp, &scp->fid))
479 else if (!cm_HaveCallback(scp)) {
480 lock_ReleaseWrite(&scp->rw);
481 code = RDR_BulkStatLookup(dscp, scp, userp, reqp);
483 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry RDR_BulkStatLookup failed for scp=0x%p code=0x%x",
485 if (code != CM_ERROR_NOACCESS)
488 lock_ObtainWrite(&scp->rw);
490 * RDR_BulkStatLookup can succeed but it may be the case that there
491 * still is not valid status info. If we get this far, generate fake
494 if (!cm_HaveCallback(scp))
500 /* Populate the error code */
501 smb_MapNTError(cmError, &pCurrentEntry->NTStatus, TRUE);
503 /* Populate the real or fake data */
504 pCurrentEntry->FileId.Cell = scp->fid.cell;
505 pCurrentEntry->FileId.Volume = scp->fid.volume;
506 pCurrentEntry->FileId.Vnode = scp->fid.vnode;
507 pCurrentEntry->FileId.Unique = scp->fid.unique;
508 pCurrentEntry->FileId.Hash = scp->fid.hash;
510 pCurrentEntry->FileType = scp->fileType;
512 pCurrentEntry->DataVersion.QuadPart = scp->dataVersion;
514 if (scp->fid.cell==AFS_FAKE_ROOT_CELL_ID &&
515 scp->fid.volume==AFS_FAKE_ROOT_VOL_ID) {
516 cm_LargeSearchTimeFromUnixTime(&ft, MAX_AFS_UINT32);
518 cm_LargeSearchTimeFromUnixTime(&ft, scp->cbExpires);
520 pCurrentEntry->Expiration.LowPart = ft.dwLowDateTime;
521 pCurrentEntry->Expiration.HighPart = ft.dwHighDateTime;
524 /* 1969-12-31 23:59:59 +00 */
525 ft.dwHighDateTime = 0x19DB200;
526 ft.dwLowDateTime = 0x5BB78980;
528 cm_LargeSearchTimeFromUnixTime(&ft, scp->clientModTime);
529 pCurrentEntry->CreationTime.LowPart = ft.dwLowDateTime;
530 pCurrentEntry->CreationTime.HighPart = ft.dwHighDateTime;
531 pCurrentEntry->LastAccessTime = pCurrentEntry->CreationTime;
532 pCurrentEntry->LastWriteTime = pCurrentEntry->CreationTime;
533 pCurrentEntry->ChangeTime = pCurrentEntry->CreationTime;
535 pCurrentEntry->EndOfFile = scp->length;
536 pCurrentEntry->AllocationSize.QuadPart =
537 ((scp->length.QuadPart/1024)+1)*1024;
540 switch (scp->fileType) {
541 case CM_SCACHETYPE_DIRECTORY:
542 pCurrentEntry->FileAttributes = SMB_ATTR_DIRECTORY;
544 case CM_SCACHETYPE_MOUNTPOINT:
545 case CM_SCACHETYPE_INVALID:
546 case CM_SCACHETYPE_DFSLINK:
547 pCurrentEntry->FileAttributes = SMB_ATTR_DIRECTORY | SMB_ATTR_REPARSE_POINT;
549 case CM_SCACHETYPE_SYMLINK:
550 if (cm_TargetPerceivedAsDirectory(scp->mountPointStringp))
551 pCurrentEntry->FileAttributes = SMB_ATTR_DIRECTORY | SMB_ATTR_REPARSE_POINT;
553 pCurrentEntry->FileAttributes = SMB_ATTR_REPARSE_POINT;
556 /* if we get here we either have a normal file
557 * or we have a file for which we have never
558 * received status info. In this case, we can
559 * check the even/odd value of the entry's vnode.
560 * odd means it is to be treated as a directory
561 * and even means it is to be treated as a file.
563 if (scp->fid.vnode & 0x1)
564 pCurrentEntry->FileAttributes = SMB_ATTR_DIRECTORY;
566 pCurrentEntry->FileAttributes = SMB_ATTR_NORMAL;
569 pCurrentEntry->FileAttributes = RDR_ExtAttributes(scp);
570 pCurrentEntry->EaSize = 0;
571 pCurrentEntry->Links = scp->linkCount;
573 len = wcslen(shortName);
574 wcsncpy(pCurrentEntry->ShortName, shortName, len);
575 pCurrentEntry->ShortNameLength = (CCHAR)(len * sizeof(WCHAR));
577 pCurrentEntry->FileNameOffset = sizeof(AFSDirEnumEntry);
579 wname = (WCHAR *)((PBYTE)pCurrentEntry + pCurrentEntry->FileNameOffset);
580 wcsncpy(wname, name, len);
581 pCurrentEntry->FileNameLength = (ULONG)(sizeof(WCHAR) * len);
583 osi_Log3(afsd_logp, "RDR_PopulateCurrentEntry scp=0x%p fileType=%d dv=%u",
584 scp, scp->fileType, (afs_uint32)scp->dataVersion);
586 if (!(dwFlags & RDR_POP_NO_GETSTATUS))
587 cm_SyncOpDone( scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
589 pCurrentEntry->TargetNameOffset = 0;
590 pCurrentEntry->TargetNameLength = 0;
591 if (!(dwFlags & RDR_POP_NO_GETSTATUS) && cm_HaveCallback(scp)) {
592 switch (scp->fileType) {
593 case CM_SCACHETYPE_MOUNTPOINT:
595 if ((code2 = cm_ReadMountPoint(scp, userp, reqp)) == 0) {
596 cm_scache_t *targetScp = NULL;
598 pCurrentEntry->TargetNameOffset = pCurrentEntry->FileNameOffset + pCurrentEntry->FileNameLength;
599 len = strlen(scp->mountPointStringp);
600 wtarget = (WCHAR *)((PBYTE)pCurrentEntry + pCurrentEntry->TargetNameOffset);
603 cch = MultiByteToWideChar( CP_UTF8, 0, scp->mountPointStringp,
606 len * sizeof(WCHAR));
608 mbstowcs(wtarget, scp->mountPointStringp, len);
610 pCurrentEntry->TargetNameLength = (ULONG)(sizeof(WCHAR) * len);
612 if (dwFlags & RDR_POP_FOLLOW_MOUNTPOINTS) {
613 code2 = cm_FollowMountPoint(scp, dscp, userp, reqp, &targetScp);
615 pCurrentEntry->TargetFileId.Cell = targetScp->fid.cell;
616 pCurrentEntry->TargetFileId.Volume = targetScp->fid.volume;
617 pCurrentEntry->TargetFileId.Vnode = targetScp->fid.vnode;
618 pCurrentEntry->TargetFileId.Unique = targetScp->fid.unique;
619 pCurrentEntry->TargetFileId.Hash = targetScp->fid.hash;
621 osi_Log4(afsd_logp, "RDR_PopulateCurrentEntry target FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
622 pCurrentEntry->TargetFileId.Cell, pCurrentEntry->TargetFileId.Volume,
623 pCurrentEntry->TargetFileId.Vnode, pCurrentEntry->TargetFileId.Unique);
625 cm_ReleaseSCache(targetScp);
627 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry cm_FollowMountPoint failed scp=0x%p code=0x%x",
629 if (code2 == CM_ERROR_TOO_MANY_SYMLINKS)
630 code = CM_ERROR_TOO_MANY_SYMLINKS;
634 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry cm_ReadMountPoint failed scp=0x%p code=0x%x",
639 case CM_SCACHETYPE_SYMLINK:
640 case CM_SCACHETYPE_DFSLINK:
642 pCurrentEntry->TargetNameOffset = pCurrentEntry->FileNameOffset + pCurrentEntry->FileNameLength;
643 wtarget = (WCHAR *)((PBYTE)pCurrentEntry + pCurrentEntry->TargetNameOffset);
645 if (dwFlags & RDR_POP_EVALUATE_SYMLINKS) {
647 code2 = cm_HandleLink(scp, userp, reqp);
649 if (scp->mountPointStringp[0]) {
653 size_t wtarget_len = 0;
655 len = strlen(scp->mountPointStringp) + 1;
656 mp = strdup(scp->mountPointStringp);
658 for (s=mp; *s; s++) {
663 if (strncmp("msdfs:", mp, 6) == 0) {
668 if ( mp[offset + 1] == ':' && mp[offset] != '\\') {
669 /* Local drive letter. Must return <drive>:\<path> */
670 pCurrentEntry->FileType = CM_SCACHETYPE_DFSLINK;
671 wtarget_len = len - offset;
673 cch = MultiByteToWideChar( CP_UTF8, 0, &mp[offset],
674 wtarget_len * sizeof(char),
676 wtarget_len * sizeof(WCHAR));
678 mbstowcs(wtarget, &mp[offset], wtarget_len);
680 } else if (mp[offset] == '\\') {
681 size_t nbNameLen = strlen(cm_NetbiosName);
683 if ( strnicmp(&mp[offset + 1], cm_NetbiosName, nbNameLen) == 0 &&
684 mp[offset + nbNameLen + 1] == '\\')
687 pCurrentEntry->FileType = CM_SCACHETYPE_SYMLINK;
688 wtarget_len = len - offset;
690 cch = MultiByteToWideChar( CP_UTF8, 0, &mp[offset],
691 wtarget_len * sizeof(char),
693 wtarget_len * sizeof(WCHAR));
695 mbstowcs(wtarget, &mp[offset], wtarget_len);
697 } else if ( mp[offset + 1] == '\\' &&
698 strnicmp(&mp[offset + 2], cm_NetbiosName, strlen(cm_NetbiosName)) == 0 &&
699 mp[offset + nbNameLen + 2] == '\\')
702 pCurrentEntry->FileType = CM_SCACHETYPE_SYMLINK;
703 wtarget_len = len - offset - 1;
705 cch = MultiByteToWideChar( CP_UTF8, 0, &mp[offset + 1],
706 wtarget_len * sizeof(char),
708 wtarget_len * sizeof(WCHAR));
710 mbstowcs(wtarget, &mp[offset + 1], wtarget_len);
714 * treat as a UNC path. Needs to be \<server>\<share\<path>
716 pCurrentEntry->FileType = CM_SCACHETYPE_DFSLINK;
718 if ( mp[offset] == '\\' && mp[offset + 1] == '\\')
721 wtarget_len = len - offset;
723 cch = MultiByteToWideChar( CP_UTF8, 0, &mp[offset],
724 wtarget_len * sizeof(char),
726 wtarget_len * sizeof(WCHAR));
728 mbstowcs(wtarget, &mp[offset], wtarget_len);
732 /* Relative AFS Symlink */
733 pCurrentEntry->FileType = CM_SCACHETYPE_SYMLINK;
734 wtarget_len = len - offset;
736 cch = MultiByteToWideChar( CP_UTF8, 0, &mp[offset],
737 wtarget_len * sizeof(char),
739 wtarget_len * sizeof(WCHAR));
741 mbstowcs(wtarget, &mp[offset], wtarget_len);
747 pCurrentEntry->TargetNameLength = (ULONG)(sizeof(WCHAR) * (wtarget_len - 1));
750 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntry cm_HandleLink failed scp=0x%p code=0x%x",
759 pCurrentEntry->TargetNameOffset = 0;
760 pCurrentEntry->TargetNameLength = 0;
763 lock_ReleaseWrite(&scp->rw);
765 dwEntryLength += pCurrentEntry->FileNameLength + pCurrentEntry->TargetNameLength;
766 dwEntryLength += (dwEntryLength % 8) ? 8 - (dwEntryLength % 8) : 0; /* quad align */
768 *ppNextEntry = (AFSDirEnumEntry *)((PBYTE)pCurrentEntry + dwEntryLength);
769 if (pdwRemainingLength)
770 *pdwRemainingLength = dwMaxEntryLength - dwEntryLength;
772 osi_Log3(afsd_logp, "RDR_PopulateCurrentEntry Success FileNameLength=%d TargetNameLength=%d RemainingLength=%d",
773 pCurrentEntry->FileNameLength, pCurrentEntry->TargetNameLength, *pdwRemainingLength);
779 RDR_PopulateCurrentEntryNoScp( IN AFSDirEnumEntry * pCurrentEntry,
780 IN DWORD dwMaxEntryLength,
781 IN cm_scache_t * dscp,
783 IN cm_user_t * userp,
786 IN wchar_t * shortName,
788 IN afs_uint32 cmError,
789 OUT AFSDirEnumEntry **ppNextEntry,
790 OUT DWORD * pdwRemainingLength)
796 afs_uint32 code = 0, code2 = 0;
798 osi_Log4(afsd_logp, "RDR_PopulateCurrentEntryNoEntry dscp=0x%p name=%S short=%S flags=0x%x",
799 dscp, osi_LogSaveStringW(afsd_logp, name),
800 osi_LogSaveStringW(afsd_logp, shortName), dwFlags);
801 osi_Log1(afsd_logp, "... maxLength=%d", dwMaxEntryLength);
803 if (dwMaxEntryLength < sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t)) {
805 *ppNextEntry = pCurrentEntry;
806 if (pdwRemainingLength)
807 *pdwRemainingLength = dwMaxEntryLength;
808 osi_Log2(afsd_logp, "RDR_PopulateCurrentEntryNoEntry Not Enough Room for Entry %d < %d",
809 dwMaxEntryLength, sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t));
810 return CM_ERROR_TOOBIG;
818 dwEntryLength = sizeof(AFSDirEnumEntry);
820 /* Populate the error code */
821 smb_MapNTError(cmError, &pCurrentEntry->NTStatus, TRUE);
823 /* Populate the fake data */
824 pCurrentEntry->FileId.Cell = fidp->cell;
825 pCurrentEntry->FileId.Volume = fidp->volume;
826 pCurrentEntry->FileId.Vnode = fidp->vnode;
827 pCurrentEntry->FileId.Unique = fidp->unique;
828 pCurrentEntry->FileId.Hash = fidp->hash;
830 pCurrentEntry->DataVersion.QuadPart = CM_SCACHE_VERSION_BAD;
832 cm_LargeSearchTimeFromUnixTime(&ft, 0);
833 pCurrentEntry->Expiration.LowPart = ft.dwLowDateTime;
834 pCurrentEntry->Expiration.HighPart = ft.dwHighDateTime;
836 cm_LargeSearchTimeFromUnixTime(&ft, 0);
837 pCurrentEntry->CreationTime.LowPart = ft.dwLowDateTime;
838 pCurrentEntry->CreationTime.HighPart = ft.dwHighDateTime;
839 pCurrentEntry->LastAccessTime = pCurrentEntry->CreationTime;
840 pCurrentEntry->LastWriteTime = pCurrentEntry->CreationTime;
841 pCurrentEntry->ChangeTime = pCurrentEntry->CreationTime;
843 pCurrentEntry->EndOfFile.QuadPart = 0;
844 pCurrentEntry->AllocationSize.QuadPart = 0;
845 if (fidp->vnode & 0x1) {
846 pCurrentEntry->FileType = CM_SCACHETYPE_DIRECTORY;
847 pCurrentEntry->FileAttributes = SMB_ATTR_DIRECTORY;
849 pCurrentEntry->FileType = CM_SCACHETYPE_UNKNOWN;
850 pCurrentEntry->FileAttributes = SMB_ATTR_NORMAL;
851 pCurrentEntry->EaSize = 0;
853 pCurrentEntry->Links = 0;
855 len = wcslen(shortName);
856 wcsncpy(pCurrentEntry->ShortName, shortName, len);
857 pCurrentEntry->ShortNameLength = (CCHAR)(len * sizeof(WCHAR));
859 pCurrentEntry->FileNameOffset = sizeof(AFSDirEnumEntry);
861 wname = (WCHAR *)((PBYTE)pCurrentEntry + pCurrentEntry->FileNameOffset);
862 wcsncpy(wname, name, len);
863 pCurrentEntry->FileNameLength = (ULONG)(sizeof(WCHAR) * len);
865 pCurrentEntry->TargetNameOffset = 0;
866 pCurrentEntry->TargetNameLength = 0;
868 dwEntryLength += pCurrentEntry->FileNameLength + pCurrentEntry->TargetNameLength;
869 dwEntryLength += (dwEntryLength % 8) ? 8 - (dwEntryLength % 8) : 0; /* quad align */
871 *ppNextEntry = (AFSDirEnumEntry *)((PBYTE)pCurrentEntry + dwEntryLength);
872 if (pdwRemainingLength)
873 *pdwRemainingLength = dwMaxEntryLength - dwEntryLength;
875 osi_Log3(afsd_logp, "RDR_PopulateCurrentEntryNoScp Success FileNameLength=%d TargetNameLength=%d RemainingLength=%d",
876 pCurrentEntry->FileNameLength, pCurrentEntry->TargetNameLength, *pdwRemainingLength);
882 RDR_EnumerateDirectory( IN cm_user_t *userp,
884 IN AFSDirQueryCB *QueryCB,
887 IN DWORD ResultBufferLength,
888 IN OUT AFSCommResult **ResultCB)
891 cm_direnum_t * enump = NULL;
892 AFSDirEnumResp * pDirEnumResp;
893 AFSDirEnumEntry * pCurrentEntry;
894 size_t size = ResultBufferLength ? sizeof(AFSCommResult) + ResultBufferLength - 1 : sizeof(AFSCommResult);
895 DWORD dwMaxEntryLength;
898 cm_scache_t * dscp = NULL;
901 RDR_InitReq(&req, bWow64);
903 osi_Log4(afsd_logp, "RDR_EnumerateDirectory FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
904 DirID.Cell, DirID.Volume, DirID.Vnode, DirID.Unique);
906 *ResultCB = (AFSCommResult *)malloc(size);
908 osi_Log0(afsd_logp, "RDR_EnumerateDirectory Out of Memory");
912 memset(*ResultCB, 0, size);
914 if (QueryCB->EnumHandle == (ULONG_PTR)-1) {
915 osi_Log0(afsd_logp, "RDR_EnumerateDirectory No More Entries");
916 (*ResultCB)->ResultStatus = STATUS_NO_MORE_ENTRIES;
917 (*ResultCB)->ResultBufferLength = 0;
921 (*ResultCB)->ResultBufferLength = dwMaxEntryLength = ResultBufferLength;
922 if (ResultBufferLength) {
923 pDirEnumResp = (AFSDirEnumResp *)&(*ResultCB)->ResultData;
924 pCurrentEntry = (AFSDirEnumEntry *)&pDirEnumResp->Entry;
925 dwMaxEntryLength -= FIELD_OFFSET( AFSDirEnumResp, Entry); /* AFSDirEnumResp */
928 if (DirID.Cell != 0) {
929 fid.cell = DirID.Cell;
930 fid.volume = DirID.Volume;
931 fid.vnode = DirID.Vnode;
932 fid.unique = DirID.Unique;
933 fid.hash = DirID.Hash;
935 code = cm_GetSCache(&fid, NULL, &dscp, userp, &req);
937 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
938 (*ResultCB)->ResultStatus = status;
939 osi_Log2(afsd_logp, "RDR_EnumerateDirectory cm_GetSCache failure code=0x%x status=0x%x",
944 (*ResultCB)->ResultStatus = STATUS_OBJECT_NAME_INVALID;
945 osi_Log0(afsd_logp, "RDR_EnumerateDirectory Object Name Invalid - Cell = 0");
949 /* get the directory size */
950 lock_ObtainWrite(&dscp->rw);
951 code = cm_SyncOp(dscp, NULL, userp, &req, PRSFS_LOOKUP,
952 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
954 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
955 (*ResultCB)->ResultStatus = status;
956 lock_ReleaseWrite(&dscp->rw);
957 cm_ReleaseSCache(dscp);
958 osi_Log2(afsd_logp, "RDR_EnumerateDirectory cm_SyncOp failure code=0x%x status=0x%x",
963 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
964 lock_ReleaseWrite(&dscp->rw);
966 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
967 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
968 cm_ReleaseSCache(dscp);
969 osi_Log1(afsd_logp, "RDR_EnumerateDirectory Not a Directory dscp=0x%p",
974 osi_Log1(afsd_logp, "RDR_EnumerateDirectory dv=%u", (afs_uint32)dscp->dataVersion);
977 * If there is no enumeration handle, then this is a new query
978 * and we must perform an enumeration for the specified object.
980 if (QueryCB->EnumHandle == (ULONG_PTR)NULL) {
983 code = cm_BeginDirOp(dscp, userp, &req, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
985 code = cm_BPlusDirEnumerate(dscp, userp, &req,
986 TRUE /* dir locked */, NULL /* no mask */,
987 TRUE /* fetch status? */, &enump);
989 osi_Log1(afsd_logp, "RDR_EnumerateDirectory cm_BPlusDirEnumerate failure code=0x%x",
994 osi_Log1(afsd_logp, "RDR_EnumerateDirectory cm_BeginDirOp failure code=0x%x",
998 enump = (cm_direnum_t *)QueryCB->EnumHandle;
1002 if (ResultBufferLength == 0) {
1003 code = cm_BPlusDirEnumBulkStat(enump);
1005 osi_Log1(afsd_logp, "RDR_EnumerateDirectory cm_BPlusDirEnumBulkStat failure code=0x%x",
1009 cm_direnum_entry_t * entryp = NULL;
1011 pDirEnumResp->SnapshotDataVersion.QuadPart = enump->dataVersion;
1014 if (dwMaxEntryLength < sizeof(AFSDirEnumEntry) + (MAX_PATH + MOUNTPOINTLEN) * sizeof(wchar_t)) {
1015 osi_Log0(afsd_logp, "RDR_EnumerateDirectory out of space, returning");
1019 code = cm_BPlusDirNextEnumEntry(enump, &entryp);
1021 if ((code == 0 || code == CM_ERROR_STOPNOW) && entryp) {
1022 cm_scache_t *scp = NULL;
1023 int stopnow = (code == CM_ERROR_STOPNOW);
1025 if ( !wcscmp(L".", entryp->name) || !wcscmp(L"..", entryp->name) ) {
1026 osi_Log0(afsd_logp, "RDR_EnumerateDirectory skipping . or ..");
1033 code = cm_GetSCache(&entryp->fid, &dscp->fid, &scp, userp, &req);
1035 osi_Log5(afsd_logp, "RDR_EnumerateDirectory cm_GetSCache failure cell %u vol %u vnode %u uniq %u code=0x%x",
1036 entryp->fid.cell, entryp->fid.volume, entryp->fid.vnode, entryp->fid.unique, code);
1039 code = entryp->errorCode;
1040 scp = code ? NULL : cm_FindSCache(&entryp->fid);
1044 code = RDR_PopulateCurrentEntry( pCurrentEntry, dwMaxEntryLength,
1045 dscp, scp, userp, &req,
1047 cm_shortNames && cm_Is8Dot3(entryp->name) ? NULL : entryp->shortName,
1048 (bWow64 ? RDR_POP_WOW64 : 0) |
1049 (bSkipStatus ? RDR_POP_NO_GETSTATUS : 0) |
1050 RDR_POP_EVALUATE_SYMLINKS,
1052 &pCurrentEntry, &dwMaxEntryLength);
1053 cm_ReleaseSCache(scp);
1055 code = RDR_PopulateCurrentEntryNoScp( pCurrentEntry, dwMaxEntryLength,
1056 dscp, &entryp->fid, userp, &req,
1058 cm_shortNames && cm_Is8Dot3(entryp->name) ? NULL : entryp->shortName,
1059 (bWow64 ? RDR_POP_WOW64 : 0),
1061 &pCurrentEntry, &dwMaxEntryLength);
1072 if (code || enump->next == enump->count || ResultBufferLength == 0) {
1073 cm_BPlusDirFreeEnumeration(enump);
1074 enump = (cm_direnum_t *)(ULONG_PTR)-1;
1077 if (code == 0 || code == CM_ERROR_STOPNOW) {
1078 (*ResultCB)->ResultStatus = STATUS_SUCCESS;
1079 osi_Log0(afsd_logp, "RDR_EnumerateDirectory SUCCESS");
1081 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1082 (*ResultCB)->ResultStatus = status;
1083 osi_Log2(afsd_logp, "RDR_EnumerateDirectory Failure code=0x%x status=0x%x",
1087 if (ResultBufferLength) {
1088 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwMaxEntryLength;
1090 pDirEnumResp->EnumHandle = (ULONG_PTR) enump;
1091 pDirEnumResp->CurrentDataVersion.QuadPart = dscp->dataVersion;
1095 cm_ReleaseSCache(dscp);
1101 RDR_EvaluateNodeByName( IN cm_user_t *userp,
1102 IN AFSFileID ParentID,
1103 IN WCHAR *FileNameCounted,
1104 IN DWORD FileNameLength,
1105 IN BOOL CaseSensitive,
1106 IN BOOL LastComponent,
1110 IN DWORD ResultBufferLength,
1111 IN OUT AFSCommResult **ResultCB)
1113 AFSFileEvalResultCB *pEvalResultCB = NULL;
1114 AFSDirEnumEntry * pCurrentEntry;
1115 size_t size = ResultBufferLength ? sizeof(AFSCommResult) + ResultBufferLength - 1 : sizeof(AFSCommResult);
1116 afs_uint32 code = 0;
1117 cm_scache_t * scp = NULL;
1118 cm_scache_t * dscp = NULL;
1123 WCHAR * wszName = NULL;
1126 wchar_t FileName[260];
1127 afs_uint32 lookupFlags;
1129 StringCchCopyNW(FileName, 260, FileNameCounted, FileNameLength / sizeof(WCHAR));
1131 RDR_InitReq(&req, bWow64);
1133 osi_Log4(afsd_logp, "RDR_EvaluateNodeByName parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1134 ParentID.Cell, ParentID.Volume, ParentID.Vnode, ParentID.Unique);
1136 /* Allocate enough room to add a volume prefix if necessary */
1137 cbName = FileNameLength + (CM_PREFIX_VOL_CCH + 64) * sizeof(WCHAR);
1138 wszName = malloc(cbName);
1140 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName Out of Memory");
1143 StringCbCopyNW(wszName, cbName, FileName, FileNameLength);
1144 osi_Log1(afsd_logp, "... name=%S", osi_LogSaveStringW(afsd_logp, wszName));
1146 *ResultCB = (AFSCommResult *)malloc(size);
1148 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName Out of Memory");
1153 memset(*ResultCB, 0, size);
1154 (*ResultCB)->ResultBufferLength = 0;
1155 dwRemaining = ResultBufferLength;
1156 if (ResultBufferLength >= sizeof( AFSFileEvalResultCB)) {
1157 pEvalResultCB = (AFSFileEvalResultCB *)&(*ResultCB)->ResultData;
1158 pCurrentEntry = &pEvalResultCB->DirEnum;
1159 dwRemaining -= (sizeof( AFSFileEvalResultCB) - sizeof( AFSDirEnumEntry));
1162 if (ParentID.Cell != 0) {
1163 parentFid.cell = ParentID.Cell;
1164 parentFid.volume = ParentID.Volume;
1165 parentFid.vnode = ParentID.Vnode;
1166 parentFid.unique = ParentID.Unique;
1167 parentFid.hash = ParentID.Hash;
1169 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1171 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1172 (*ResultCB)->ResultStatus = status;
1173 if ( status == STATUS_INVALID_HANDLE)
1174 status = STATUS_OBJECT_PATH_INVALID;
1175 osi_Log2(afsd_logp, "RDR_EvaluateNodeByName cm_GetSCache parentFID failure code=0x%x status=0x%x",
1181 (*ResultCB)->ResultStatus = STATUS_OBJECT_NAME_INVALID;
1182 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName Object Name Invalid - Cell = 0");
1186 /* get the directory size */
1187 lock_ObtainWrite(&dscp->rw);
1188 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1189 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1191 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1192 (*ResultCB)->ResultStatus = status;
1193 lock_ReleaseWrite(&dscp->rw);
1194 cm_ReleaseSCache(dscp);
1195 osi_Log3(afsd_logp, "RDR_EvaluateNodeByName cm_SyncOp failure dscp=0x%p code=0x%x status=0x%x",
1196 dscp, code, status);
1200 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1201 lock_ReleaseWrite(&dscp->rw);
1203 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1204 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1205 cm_ReleaseSCache(dscp);
1206 osi_Log1(afsd_logp, "RDR_EvaluateNodeByName Not a Directory dscp=0x%p",
1212 lookupFlags = CM_FLAG_NOMOUNTCHASE;
1214 if ( !LastComponent )
1215 lookupFlags |= CM_FLAG_CHECKPATH;
1216 code = cm_Lookup(dscp, wszName, lookupFlags, userp, &req, &scp);
1218 if (!CaseSensitive &&
1219 (code == CM_ERROR_NOSUCHPATH || code == CM_ERROR_NOSUCHFILE || code == CM_ERROR_BPLUS_NOMATCH)) {
1220 lookupFlags |= CM_FLAG_CASEFOLD;
1221 code = cm_Lookup(dscp, wszName, lookupFlags, userp, &req, &scp);
1224 if ((code == CM_ERROR_NOSUCHPATH || code == CM_ERROR_NOSUCHFILE || code == CM_ERROR_BPLUS_NOMATCH) &&
1225 dscp == cm_data.rootSCachep) {
1227 if (wcschr(wszName, '%') != NULL || wcschr(wszName, '#') != NULL) {
1229 * A volume reference: <cell>{%,#}<volume> -> @vol:<cell>{%,#}<volume>
1231 StringCchCopyNW(wszName, cbName, _C(CM_PREFIX_VOL), CM_PREFIX_VOL_CCH);
1232 StringCbCatNW(wszName, cbName, FileName, FileNameLength);
1235 code = cm_EvaluateVolumeReference(wszName, CM_FLAG_CHECKPATH, userp, &req, &scp);
1237 #ifdef AFS_FREELANCE_CLIENT
1238 else if (dscp->fid.cell == AFS_FAKE_ROOT_CELL_ID && dscp->fid.volume == AFS_FAKE_ROOT_VOL_ID &&
1239 dscp->fid.vnode == 1 && dscp->fid.unique == 1) {
1241 * If this is the Freelance volume root directory then treat unrecognized
1242 * names as cell names and attempt to find the appropriate "root.cell".
1244 StringCchCopyNW(wszName, cbName, _C(CM_PREFIX_VOL), CM_PREFIX_VOL_CCH);
1245 if (FileName[0] == L'.') {
1246 StringCbCatNW(wszName, cbName, &FileName[1], FileNameLength);
1247 StringCbCatNW(wszName, cbName, L"%", sizeof(WCHAR));
1249 StringCbCatNW(wszName, cbName, FileName, FileNameLength);
1250 StringCbCatNW(wszName, cbName, L"#", sizeof(WCHAR));
1252 StringCbCatNW(wszName, cbName, L"root.cell", 9 * sizeof(WCHAR));
1255 code = cm_EvaluateVolumeReference(wszName, CM_FLAG_CHECKPATH, userp, &req, &scp);
1260 if (code == 0 && scp) {
1261 wchar_t shortName[13]=L"";
1263 if (!cm_shortNames) {
1264 shortName[0] = L'\0';
1266 cm_Gen8Dot3VolNameW(scp->fid.cell, scp->fid.volume, shortName, NULL);
1267 } else if (!cm_Is8Dot3(wszName)) {
1270 dfid.vnode = htonl(scp->fid.vnode);
1271 dfid.unique = htonl(scp->fid.unique);
1273 cm_Gen8Dot3NameIntW(FileName, &dfid, shortName, NULL);
1275 shortName[0] = L'\0';
1278 code = RDR_PopulateCurrentEntry(pCurrentEntry, dwRemaining,
1279 dscp, scp, userp, &req,
1280 FileName, shortName,
1281 (bWow64 ? RDR_POP_WOW64 : 0) |
1282 (bNoFollow ? 0 : RDR_POP_FOLLOW_MOUNTPOINTS) |
1283 RDR_POP_EVALUATE_SYMLINKS,
1284 0, NULL, &dwRemaining);
1286 RDR_FlagScpInUse( scp, FALSE );
1287 cm_ReleaseSCache(scp);
1290 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1291 (*ResultCB)->ResultStatus = status;
1292 osi_Log2(afsd_logp, "RDR_EvaluateNodeByName FAILURE code=0x%x status=0x%x",
1295 pEvalResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
1296 (*ResultCB)->ResultStatus = STATUS_SUCCESS;
1297 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
1298 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName SUCCESS");
1301 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1302 (*ResultCB)->ResultStatus = status;
1303 osi_Log2(afsd_logp, "RDR_EvaluateNodeByName FAILURE code=0x%x status=0x%x",
1306 (*ResultCB)->ResultStatus = STATUS_NO_SUCH_FILE;
1307 osi_Log0(afsd_logp, "RDR_EvaluateNodeByName No Such File");
1309 cm_ReleaseSCache(dscp);
1316 RDR_EvaluateNodeByID( IN cm_user_t *userp,
1317 IN AFSFileID ParentID, /* not used */
1318 IN AFSFileID SourceID,
1322 IN DWORD ResultBufferLength,
1323 IN OUT AFSCommResult **ResultCB)
1325 AFSFileEvalResultCB *pEvalResultCB = NULL;
1326 AFSDirEnumEntry * pCurrentEntry = NULL;
1327 size_t size = ResultBufferLength ? sizeof(AFSCommResult) + ResultBufferLength - 1 : sizeof(AFSCommResult);
1328 afs_uint32 code = 0;
1329 cm_scache_t * scp = NULL;
1330 cm_scache_t * dscp = NULL;
1337 osi_Log4(afsd_logp, "RDR_EvaluateNodeByID source FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1338 SourceID.Cell, SourceID.Volume, SourceID.Vnode, SourceID.Unique);
1339 osi_Log4(afsd_logp, "... parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1340 ParentID.Cell, ParentID.Volume, ParentID.Vnode, ParentID.Unique);
1342 *ResultCB = (AFSCommResult *)malloc(size);
1344 osi_Log0(afsd_logp, "RDR_EvaluateNodeByID Out of Memory");
1348 memset(*ResultCB, 0, size);
1349 (*ResultCB)->ResultBufferLength = 0;
1350 dwRemaining = ResultBufferLength;
1351 if (ResultBufferLength >= sizeof( AFSFileEvalResultCB)) {
1352 pEvalResultCB = (AFSFileEvalResultCB *)&(*ResultCB)->ResultData;
1353 pCurrentEntry = &pEvalResultCB->DirEnum;
1354 dwRemaining -= (sizeof( AFSFileEvalResultCB) - sizeof( AFSDirEnumEntry));
1357 RDR_InitReq(&req, bWow64);
1359 if (SourceID.Cell != 0) {
1360 cm_SetFid(&Fid, SourceID.Cell, SourceID.Volume, SourceID.Vnode, SourceID.Unique);
1361 code = cm_GetSCache(&Fid, NULL, &scp, userp, &req);
1363 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1364 (*ResultCB)->ResultStatus = status;
1365 osi_Log2(afsd_logp, "RDR_EvaluateNodeByID cm_GetSCache SourceFID failure code=0x%x status=0x%x",
1370 (*ResultCB)->ResultStatus = STATUS_OBJECT_NAME_INVALID;
1371 osi_Log0(afsd_logp, "RDR_EvaluateNodeByID Object Name Invalid - Cell = 0");
1375 if (ParentID.Cell != 0) {
1376 cm_SetFid(&parentFid, ParentID.Cell, ParentID.Volume, ParentID.Vnode, ParentID.Unique);
1377 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1379 cm_ReleaseSCache(scp);
1380 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1381 if ( status == STATUS_INVALID_HANDLE)
1382 status = STATUS_OBJECT_PATH_INVALID;
1383 (*ResultCB)->ResultStatus = status;
1384 osi_Log2(afsd_logp, "RDR_EvaluateNodeByID cm_GetSCache parentFID failure code=0x%x status=0x%x",
1388 } else if (SourceID.Vnode == 1) {
1390 cm_HoldSCache(dscp);
1391 } else if (scp->parentVnode) {
1392 cm_SetFid(&parentFid, SourceID.Cell, SourceID.Volume, scp->parentVnode, scp->parentUnique);
1393 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1395 cm_ReleaseSCache(scp);
1396 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1397 if ( status == STATUS_INVALID_HANDLE)
1398 status = STATUS_OBJECT_PATH_INVALID;
1399 (*ResultCB)->ResultStatus = status;
1400 osi_Log2(afsd_logp, "RDR_EvaluateNodeByID cm_GetSCache parentFID failure code=0x%x status=0x%x",
1405 (*ResultCB)->ResultStatus = STATUS_OBJECT_PATH_INVALID;
1406 osi_Log0(afsd_logp, "RDR_EvaluateNodeByID Object Path Invalid - Unknown Parent");
1410 /* Make sure the directory is current */
1411 lock_ObtainWrite(&dscp->rw);
1412 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1413 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1415 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1416 (*ResultCB)->ResultStatus = status;
1417 lock_ReleaseWrite(&dscp->rw);
1418 cm_ReleaseSCache(dscp);
1419 cm_ReleaseSCache(scp);
1420 osi_Log3(afsd_logp, "RDR_EvaluateNodeByID cm_SyncOp failure dscp=0x%p code=0x%x status=0x%x",
1421 dscp, code, status);
1425 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1426 lock_ReleaseWrite(&dscp->rw);
1428 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1429 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1430 cm_ReleaseSCache(dscp);
1431 cm_ReleaseSCache(scp);
1432 osi_Log1(afsd_logp, "RDR_EvaluateNodeByID Not a Directory dscp=0x%p", dscp);
1436 code = RDR_PopulateCurrentEntry(pCurrentEntry, dwRemaining,
1437 dscp, scp, userp, &req, NULL, NULL,
1438 (bWow64 ? RDR_POP_WOW64 : 0) |
1439 (bNoFollow ? 0 : RDR_POP_FOLLOW_MOUNTPOINTS) |
1440 RDR_POP_EVALUATE_SYMLINKS,
1441 0, NULL, &dwRemaining);
1444 RDR_FlagScpInUse( scp, FALSE );
1445 cm_ReleaseSCache(scp);
1446 cm_ReleaseSCache(dscp);
1449 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1450 (*ResultCB)->ResultStatus = status;
1451 osi_Log2(afsd_logp, "RDR_EvaluateNodeByID FAILURE code=0x%x status=0x%x",
1454 pEvalResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
1456 (*ResultCB)->ResultStatus = STATUS_SUCCESS;
1457 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
1458 osi_Log0(afsd_logp, "RDR_EvaluateNodeByID SUCCESS");
1464 RDR_CreateFileEntry( IN cm_user_t *userp,
1465 IN WCHAR *FileNameCounted,
1466 IN DWORD FileNameLength,
1467 IN AFSFileCreateCB *CreateCB,
1470 IN DWORD ResultBufferLength,
1471 IN OUT AFSCommResult **ResultCB)
1473 AFSFileCreateResultCB *pResultCB = NULL;
1474 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
1477 cm_scache_t * dscp = NULL;
1478 afs_uint32 flags = 0;
1480 cm_scache_t * scp = NULL;
1483 wchar_t FileName[260];
1485 StringCchCopyNW(FileName, 260, FileNameCounted, FileNameLength / sizeof(WCHAR));
1487 osi_Log4(afsd_logp, "RDR_CreateFileEntry parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1488 CreateCB->ParentId.Cell, CreateCB->ParentId.Volume,
1489 CreateCB->ParentId.Vnode, CreateCB->ParentId.Unique);
1490 osi_Log1(afsd_logp, "... name=%S", osi_LogSaveStringW(afsd_logp, FileName));
1492 RDR_InitReq(&req, bWow64);
1493 memset(&setAttr, 0, sizeof(cm_attr_t));
1495 *ResultCB = (AFSCommResult *)malloc(size);
1497 osi_Log0(afsd_logp, "RDR_CreateFileEntry out of memory");
1505 parentFid.cell = CreateCB->ParentId.Cell;
1506 parentFid.volume = CreateCB->ParentId.Volume;
1507 parentFid.vnode = CreateCB->ParentId.Vnode;
1508 parentFid.unique = CreateCB->ParentId.Unique;
1509 parentFid.hash = CreateCB->ParentId.Hash;
1511 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1513 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1514 (*ResultCB)->ResultStatus = status;
1515 if ( status == STATUS_INVALID_HANDLE)
1516 status = STATUS_OBJECT_PATH_INVALID;
1517 osi_Log2(afsd_logp, "RDR_CreateFileEntry cm_GetSCache ParentFID failure code=0x%x status=0x%x",
1522 lock_ObtainWrite(&dscp->rw);
1523 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1524 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1526 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1527 (*ResultCB)->ResultStatus = status;
1528 lock_ReleaseWrite(&dscp->rw);
1529 cm_ReleaseSCache(dscp);
1530 osi_Log3(afsd_logp, "RDR_CreateFileEntry cm_SyncOp failure (1) dscp=0x%p code=0x%x status=0x%x",
1531 dscp, code, status);
1535 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1536 lock_ReleaseWrite(&dscp->rw);
1538 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1539 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1540 cm_ReleaseSCache(dscp);
1541 osi_Log1(afsd_logp, "RDR_CreateFileEntry Not a Directory dscp=0x%p",
1546 /* Use current time */
1547 setAttr.mask = CM_ATTRMASK_CLIENTMODTIME;
1548 setAttr.clientModTime = time(NULL);
1550 if (CreateCB->FileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
1551 if (smb_unixModeDefaultDir) {
1552 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1553 setAttr.unixModeBits = smb_unixModeDefaultDir;
1554 if (CreateCB->FileAttributes & FILE_ATTRIBUTE_READONLY)
1555 setAttr.unixModeBits &= ~0222; /* disable the write bits */
1558 code = cm_MakeDir(dscp, FileName, flags, &setAttr, userp, &req, &scp);
1560 if (smb_unixModeDefaultFile) {
1561 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1562 setAttr.unixModeBits = smb_unixModeDefaultFile;
1563 if (CreateCB->FileAttributes & FILE_ATTRIBUTE_READONLY)
1564 setAttr.unixModeBits &= ~0222; /* disable the write bits */
1567 setAttr.mask |= CM_ATTRMASK_LENGTH;
1568 setAttr.length.LowPart = CreateCB->AllocationSize.LowPart;
1569 setAttr.length.HighPart = CreateCB->AllocationSize.HighPart;
1570 code = cm_Create(dscp, FileName, flags, &setAttr, &scp, userp, &req);
1573 wchar_t shortName[13]=L"";
1577 (*ResultCB)->ResultStatus = 0; // We will be able to fit all the data in here
1579 (*ResultCB)->ResultBufferLength = sizeof( AFSFileCreateResultCB);
1581 pResultCB = (AFSFileCreateResultCB *)(*ResultCB)->ResultData;
1583 dwRemaining = ResultBufferLength - sizeof( AFSFileCreateResultCB) + sizeof( AFSDirEnumEntry);
1585 lock_ObtainWrite(&dscp->rw);
1586 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1587 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1589 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1590 (*ResultCB)->ResultStatus = status;
1591 lock_ReleaseWrite(&dscp->rw);
1592 cm_ReleaseSCache(dscp);
1593 cm_ReleaseSCache(scp);
1594 osi_Log3(afsd_logp, "RDR_CreateFileEntry cm_SyncOp failure (2) dscp=0x%p code=0x%x status=0x%x",
1595 dscp, code, status);
1599 pResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
1601 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1602 lock_ReleaseWrite(&dscp->rw);
1604 if (cm_shortNames) {
1605 dfid.vnode = htonl(scp->fid.vnode);
1606 dfid.unique = htonl(scp->fid.unique);
1608 if (!cm_Is8Dot3(FileName))
1609 cm_Gen8Dot3NameIntW(FileName, &dfid, shortName, NULL);
1611 shortName[0] = '\0';
1614 code = RDR_PopulateCurrentEntry(&pResultCB->DirEnum, dwRemaining,
1615 dscp, scp, userp, &req, FileName, shortName,
1616 RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS,
1617 0, NULL, &dwRemaining);
1620 RDR_FlagScpInUse( scp, FALSE );
1621 cm_ReleaseSCache(scp);
1622 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
1623 osi_Log0(afsd_logp, "RDR_CreateFileEntry SUCCESS");
1625 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1626 (*ResultCB)->ResultStatus = status;
1627 (*ResultCB)->ResultBufferLength = 0;
1628 osi_Log2(afsd_logp, "RDR_CreateFileEntry FAILURE code=0x%x status=0x%x",
1632 cm_ReleaseSCache(dscp);
1638 RDR_UpdateFileEntry( IN cm_user_t *userp,
1639 IN AFSFileID FileId,
1640 IN AFSFileUpdateCB *UpdateCB,
1642 IN DWORD ResultBufferLength,
1643 IN OUT AFSCommResult **ResultCB)
1645 AFSFileUpdateResultCB *pResultCB = NULL;
1646 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
1650 afs_uint32 flags = 0;
1652 cm_scache_t * scp = NULL;
1653 cm_scache_t * dscp = NULL;
1655 time_t clientModTime;
1658 BOOL bScpLocked = FALSE;
1660 RDR_InitReq(&req, bWow64);
1661 memset(&setAttr, 0, sizeof(cm_attr_t));
1663 osi_Log4(afsd_logp, "RDR_UpdateFileEntry parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1664 UpdateCB->ParentId.Cell, UpdateCB->ParentId.Volume,
1665 UpdateCB->ParentId.Vnode, UpdateCB->ParentId.Unique);
1666 osi_Log4(afsd_logp, "... object FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1667 FileId.Cell, FileId.Volume,
1668 FileId.Vnode, FileId.Unique);
1670 *ResultCB = (AFSCommResult *)malloc( size);
1672 osi_Log0(afsd_logp, "RDR_UpdateFileEntry Out of Memory");
1680 parentFid.cell = UpdateCB->ParentId.Cell;
1681 parentFid.volume = UpdateCB->ParentId.Volume;
1682 parentFid.vnode = UpdateCB->ParentId.Vnode;
1683 parentFid.unique = UpdateCB->ParentId.Unique;
1684 parentFid.hash = UpdateCB->ParentId.Hash;
1686 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1688 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1689 (*ResultCB)->ResultStatus = status;
1690 if ( status == STATUS_INVALID_HANDLE)
1691 status = STATUS_OBJECT_PATH_INVALID;
1692 osi_Log2(afsd_logp, "RDR_UpdateFileEntry cm_GetSCache ParentFID failure code=0x%x status=0x%x",
1697 lock_ObtainWrite(&dscp->rw);
1698 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1699 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1701 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1702 (*ResultCB)->ResultStatus = status;
1703 lock_ReleaseWrite(&dscp->rw);
1704 cm_ReleaseSCache(dscp);
1705 osi_Log3(afsd_logp, "RDR_UpdateFileEntry cm_SyncOp failure dscp=0x%p code=0x%x status=0x%x",
1706 dscp, code, status);
1710 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1711 lock_ReleaseWrite(&dscp->rw);
1713 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1714 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1715 cm_ReleaseSCache(dscp);
1716 osi_Log1(afsd_logp, "RDR_UpdateFileEntry Not a Directory dscp=0x%p",
1721 Fid.cell = FileId.Cell;
1722 Fid.volume = FileId.Volume;
1723 Fid.vnode = FileId.Vnode;
1724 Fid.unique = FileId.Unique;
1725 Fid.hash = FileId.Hash;
1727 code = cm_GetSCache(&Fid, &dscp->fid, &scp, userp, &req);
1729 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1730 (*ResultCB)->ResultStatus = status;
1731 cm_ReleaseSCache(dscp);
1732 osi_Log2(afsd_logp, "RDR_UpdateFileEntry cm_GetSCache object FID failure code=0x%x status=0x%x",
1737 lock_ObtainWrite(&scp->rw);
1739 code = cm_SyncOp(scp, NULL, userp, &req, 0,
1740 CM_SCACHESYNC_GETSTATUS | CM_SCACHESYNC_NEEDCALLBACK);
1742 lock_ReleaseWrite(&scp->rw);
1743 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1744 (*ResultCB)->ResultStatus = status;
1745 (*ResultCB)->ResultBufferLength = 0;
1746 cm_ReleaseSCache(dscp);
1747 cm_ReleaseSCache(scp);
1748 osi_Log3(afsd_logp, "RDR_UpdateFileEntry cm_SyncOp failure scp=0x%p code=0x%x status=0x%x",
1752 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1754 if (UpdateCB->ChangeTime.QuadPart) {
1756 if (scp->fileType == CM_SCACHETYPE_FILE) {
1757 /* Do not set length and other attributes at the same time */
1758 if (scp->length.QuadPart != UpdateCB->AllocationSize.QuadPart) {
1759 osi_Log2(afsd_logp, "RDR_UpdateFileEntry Length Change 0x%x -> 0x%x",
1760 (afs_uint32)scp->length.QuadPart, (afs_uint32)UpdateCB->AllocationSize.QuadPart);
1761 setAttr.mask |= CM_ATTRMASK_LENGTH;
1762 setAttr.length.LowPart = UpdateCB->AllocationSize.LowPart;
1763 setAttr.length.HighPart = UpdateCB->AllocationSize.HighPart;
1764 lock_ReleaseWrite(&scp->rw);
1766 code = cm_SetAttr(scp, &setAttr, userp, &req);
1774 lock_ObtainWrite(&scp->rw);
1777 if ((scp->unixModeBits & 0200) && (UpdateCB->FileAttributes & FILE_ATTRIBUTE_READONLY)) {
1778 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1779 setAttr.unixModeBits = scp->unixModeBits & ~0222;
1780 } else if (!(scp->unixModeBits & 0200) && !(UpdateCB->FileAttributes & FILE_ATTRIBUTE_READONLY)) {
1781 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
1782 setAttr.unixModeBits = scp->unixModeBits | 0222;
1786 if (UpdateCB->LastWriteTime.QuadPart) {
1787 ft.dwLowDateTime = UpdateCB->LastWriteTime.LowPart;
1788 ft.dwHighDateTime = UpdateCB->LastWriteTime.HighPart;
1790 cm_UnixTimeFromLargeSearchTime(& clientModTime, &ft);
1793 lock_ObtainWrite(&scp->rw);
1796 if (scp->clientModTime != clientModTime) {
1797 setAttr.mask |= CM_ATTRMASK_CLIENTMODTIME;
1798 setAttr.clientModTime = clientModTime;
1803 lock_ReleaseWrite(&scp->rw);
1805 code = cm_SetAttr(scp, &setAttr, userp, &req);
1812 lock_ReleaseWrite(&scp->rw);
1816 DWORD dwRemaining = ResultBufferLength - sizeof( AFSFileUpdateResultCB) + sizeof( AFSDirEnumEntry);
1818 pResultCB = (AFSFileUpdateResultCB *)(*ResultCB)->ResultData;
1820 pResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
1822 code = RDR_PopulateCurrentEntry(&pResultCB->DirEnum, dwRemaining,
1823 dscp, scp, userp, &req, NULL, NULL,
1824 RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS,
1825 0, NULL, &dwRemaining);
1826 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
1827 osi_Log0(afsd_logp, "RDR_UpdateFileEntry SUCCESS");
1829 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1830 (*ResultCB)->ResultStatus = status;
1831 (*ResultCB)->ResultBufferLength = 0;
1832 osi_Log2(afsd_logp, "RDR_UpdateFileEntry FAILURE code=0x%x status=0x%x",
1835 cm_ReleaseSCache(scp);
1836 cm_ReleaseSCache(dscp);
1842 RDR_CleanupFileEntry( IN cm_user_t *userp,
1843 IN AFSFileID FileId,
1844 IN WCHAR *FileNameCounted,
1845 IN DWORD FileNameLength,
1846 IN AFSFileCleanupCB *CleanupCB,
1848 IN BOOL bLastHandle,
1849 IN BOOL bDeleteFile,
1850 IN BOOL bUnlockFile,
1851 IN DWORD ResultBufferLength,
1852 IN OUT AFSCommResult **ResultCB)
1854 AFSFileCleanupResultCB *pResultCB = NULL;
1855 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
1858 afs_uint32 code = 0;
1859 afs_uint32 flags = 0;
1861 cm_scache_t * scp = NULL;
1862 cm_scache_t * dscp = NULL;
1864 time_t clientModTime;
1867 BOOL bScpLocked = FALSE;
1868 BOOL bDscpLocked = FALSE;
1869 BOOL bFlushFile = FALSE;
1872 RDR_InitReq(&req, bWow64);
1873 memset(&setAttr, 0, sizeof(cm_attr_t));
1875 osi_Log4(afsd_logp, "RDR_CleanupFileEntry parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1876 CleanupCB->ParentId.Cell, CleanupCB->ParentId.Volume,
1877 CleanupCB->ParentId.Vnode, CleanupCB->ParentId.Unique);
1878 osi_Log4(afsd_logp, "... object FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
1879 FileId.Cell, FileId.Volume,
1880 FileId.Vnode, FileId.Unique);
1882 *ResultCB = (AFSCommResult *)malloc( size);
1884 osi_Log0(afsd_logp, "RDR_CleanupFileEntry Out of Memory");
1892 parentFid.cell = CleanupCB->ParentId.Cell;
1893 parentFid.volume = CleanupCB->ParentId.Volume;
1894 parentFid.vnode = CleanupCB->ParentId.Vnode;
1895 parentFid.unique = CleanupCB->ParentId.Unique;
1896 parentFid.hash = CleanupCB->ParentId.Hash;
1898 if (parentFid.cell) {
1899 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
1901 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
1902 if ( status == STATUS_INVALID_HANDLE)
1903 status = STATUS_OBJECT_PATH_INVALID;
1904 (*ResultCB)->ResultStatus = status;
1905 osi_Log2(afsd_logp, "RDR_CleanupFileEntry cm_GetSCache ParentFID failure code=0x%x status=0x%x",
1910 lock_ObtainWrite(&dscp->rw);
1912 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
1913 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1915 osi_Log2(afsd_logp, "RDR_CleanupFileEntry cm_SyncOp failure dscp=0x%p code=0x%x",
1921 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1922 lock_ReleaseWrite(&dscp->rw);
1923 bDscpLocked = FALSE;
1925 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
1926 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
1927 cm_ReleaseSCache(dscp);
1928 osi_Log1(afsd_logp, "RDR_CleanupFileEntry Not a Directory dscp=0x%p",
1935 Fid.cell = FileId.Cell;
1936 Fid.volume = FileId.Volume;
1937 Fid.vnode = FileId.Vnode;
1938 Fid.unique = FileId.Unique;
1939 Fid.hash = FileId.Hash;
1941 code = cm_GetSCache(&Fid, dscp ? &dscp->fid : NULL, &scp, userp, &req);
1943 osi_Log1(afsd_logp, "RDR_CleanupFileEntry cm_GetSCache object FID failure code=0x%x",
1948 lock_ObtainWrite(&scp->rw);
1950 code = cm_SyncOp(scp, NULL, userp, &req, 0,
1951 CM_SCACHESYNC_GETSTATUS | CM_SCACHESYNC_NEEDCALLBACK);
1953 osi_Log2(afsd_logp, "RDR_CleanupFileEntry cm_SyncOp failure scp=0x%p code=0x%x",
1957 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
1959 if (bLastHandle && (scp->fileType == CM_SCACHETYPE_FILE) &&
1960 scp->redirBufCount > 0)
1962 LARGE_INTEGER heldExtents;
1963 AFSFileExtentCB extentList[1024];
1964 DWORD extentCount = 0;
1969 heldExtents.QuadPart = 0;
1971 for ( srbp = redirq_to_cm_buf_t(scp->redirQueueT);
1973 srbp = redirq_to_cm_buf_t(osi_QPrev(&srbp->redirq)))
1975 extentList[extentCount].Flags = 0;
1976 extentList[extentCount].Length = cm_data.blockSize;
1977 extentList[extentCount].FileOffset.QuadPart = srbp->offset.QuadPart;
1978 extentList[extentCount].CacheOffset.QuadPart = srbp->datap - RDR_extentBaseAddress;
1979 lock_ObtainWrite(&buf_globalLock);
1980 srbp->redirReleaseRequested = now;
1981 lock_ReleaseWrite(&buf_globalLock);
1984 if (extentCount == 1024) {
1985 lock_ReleaseWrite(&scp->rw);
1986 code = RDR_RequestExtentRelease(&scp->fid, heldExtents, extentCount, extentList);
1988 if (code == CM_ERROR_RETRY) {
1990 * The redirector either is not holding the extents or cannot let them
1991 * go because they are otherwise in use. At the moment, do nothing.
1998 lock_ObtainWrite(&scp->rw);
2002 if (code == 0 && extentCount > 0) {
2004 lock_ReleaseWrite(&scp->rw);
2007 code = RDR_RequestExtentRelease(&scp->fid, heldExtents, extentCount, extentList);
2012 /* No longer in use by redirector */
2014 lock_ObtainWrite(&scp->rw);
2019 lock_AssertWrite(&scp->rw);
2020 scp->flags &= ~CM_SCACHEFLAG_RDR_IN_USE;
2023 /* If not a readonly object, flush dirty data and update metadata */
2024 if (!(scp->flags & CM_SCACHEFLAG_RO)) {
2025 if ((scp->fileType == CM_SCACHETYPE_FILE) && (bLastHandle || bFlushFile)) {
2026 /* Serialize with any outstanding AsyncStore operation */
2027 code = cm_SyncOp(scp, NULL, userp, &req, 0, CM_SCACHESYNC_ASYNCSTORE);
2029 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_ASYNCSTORE);
2031 code = cm_SyncOp(scp, NULL, userp, &req, PRSFS_WRITE,
2032 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2034 * If we only have 'i' bits, then we should still be able to
2035 * set flush the file.
2037 if (code == CM_ERROR_NOACCESS && scp->creator == userp) {
2038 code = cm_SyncOp(scp, NULL, userp, &req, PRSFS_INSERT,
2039 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2043 lock_ReleaseWrite(&scp->rw);
2047 code = cm_FSync(scp, userp, &req, bScpLocked);
2050 if (bLastHandle && code)
2054 if (CleanupCB->ChangeTime.QuadPart) {
2056 if (scp->fileType == CM_SCACHETYPE_FILE) {
2057 /* Do not set length and other attributes at the same time */
2058 if (scp->length.QuadPart != CleanupCB->AllocationSize.QuadPart) {
2059 osi_Log2(afsd_logp, "RDR_CleanupFileEntry Length Change 0x%x -> 0x%x",
2060 (afs_uint32)scp->length.QuadPart, (afs_uint32)CleanupCB->AllocationSize.QuadPart);
2061 setAttr.mask |= CM_ATTRMASK_LENGTH;
2062 setAttr.length.LowPart = CleanupCB->AllocationSize.LowPart;
2063 setAttr.length.HighPart = CleanupCB->AllocationSize.HighPart;
2066 lock_ReleaseWrite(&scp->rw);
2069 code = cm_SetAttr(scp, &setAttr, userp, &req);
2077 lock_ObtainWrite(&scp->rw);
2081 if ((scp->unixModeBits & 0200) && (CleanupCB->FileAttributes & FILE_ATTRIBUTE_READONLY)) {
2082 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
2083 setAttr.unixModeBits = scp->unixModeBits & ~0222;
2084 } else if (!(scp->unixModeBits & 0200) && !(CleanupCB->FileAttributes & FILE_ATTRIBUTE_READONLY)) {
2085 setAttr.mask |= CM_ATTRMASK_UNIXMODEBITS;
2086 setAttr.unixModeBits = scp->unixModeBits | 0222;
2090 if (CleanupCB->LastWriteTime.QuadPart) {
2091 ft.dwLowDateTime = CleanupCB->LastWriteTime.LowPart;
2092 ft.dwHighDateTime = CleanupCB->LastWriteTime.HighPart;
2094 cm_UnixTimeFromLargeSearchTime(&clientModTime, &ft);
2095 if (scp->clientModTime != clientModTime) {
2096 setAttr.mask |= CM_ATTRMASK_CLIENTMODTIME;
2097 setAttr.clientModTime = clientModTime;
2104 lock_ReleaseWrite(&scp->rw);
2107 code = cm_SetAttr(scp, &setAttr, userp, &req);
2113 /* Now drop the lock enforcing the share access */
2114 if ( CleanupCB->FileAccess != AFS_FILE_ACCESS_NOLOCK) {
2115 unsigned int sLockType;
2116 LARGE_INTEGER LOffset, LLength;
2118 if (CleanupCB->FileAccess == AFS_FILE_ACCESS_SHARED)
2119 sLockType = LOCKING_ANDX_SHARED_LOCK;
2123 key = cm_GenerateKey(CM_SESSION_IFS, SMB_FID_QLOCK_PID, CleanupCB->Identifier);
2125 LOffset.HighPart = SMB_FID_QLOCK_HIGH;
2126 LOffset.LowPart = SMB_FID_QLOCK_LOW;
2127 LLength.HighPart = 0;
2128 LLength.LowPart = SMB_FID_QLOCK_LENGTH;
2131 lock_ObtainWrite(&scp->rw);
2135 code = cm_SyncOp(scp, NULL, userp, &req, 0, CM_SCACHESYNC_LOCK);
2138 code = cm_Unlock(scp, sLockType, LOffset, LLength, key, 0, userp, &req);
2140 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_LOCK);
2142 if (code == CM_ERROR_RANGE_NOT_LOCKED)
2144 osi_Log3(afsd_logp, "RDR_CleanupFileEntry Range Not Locked -- FileAccess 0x%x ProcessId 0x%x HandleId 0x%x",
2145 CleanupCB->FileAccess, CleanupCB->ProcessId, CleanupCB->Identifier);
2151 if (bUnlockFile || bDeleteFile) {
2153 lock_ObtainWrite(&scp->rw);
2156 code = cm_SyncOp(scp, NULL, userp, &req, 0,
2157 CM_SCACHESYNC_LOCK);
2159 osi_Log2(afsd_logp, "RDR_CleanupFileEntry cm_SyncOp (2) failure scp=0x%p code=0x%x",
2164 key = cm_GenerateKey(CM_SESSION_IFS, CleanupCB->ProcessId, 0);
2166 /* the scp is now locked and current */
2167 code = cm_UnlockByKey(scp, key,
2168 bDeleteFile ? CM_UNLOCK_FLAG_BY_FID : 0,
2171 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_LOCK);
2179 lock_ReleaseWrite(&dscp->rw);
2181 lock_ReleaseWrite(&scp->rw);
2183 if (code == 0 && dscp && bDeleteFile) {
2184 WCHAR FileName[260];
2186 StringCchCopyNW(FileName, 260, FileNameCounted, FileNameLength / sizeof(WCHAR));
2188 if (scp->fileType == CM_SCACHETYPE_DIRECTORY)
2189 code = cm_RemoveDir(dscp, NULL, FileName, userp, &req);
2191 code = cm_Unlink(dscp, NULL, FileName, userp, &req);
2195 if ( ResultBufferLength >= sizeof( AFSFileCleanupResultCB))
2197 (*ResultCB)->ResultBufferLength = sizeof( AFSFileCleanupResultCB);
2198 pResultCB = (AFSFileCleanupResultCB *)&(*ResultCB)->ResultData;
2199 pResultCB->ParentDataVersion.QuadPart = dscp ? dscp->dataVersion : 0;
2201 (*ResultCB)->ResultBufferLength = 0;
2204 (*ResultCB)->ResultStatus = 0;
2205 osi_Log0(afsd_logp, "RDR_CleanupFileEntry SUCCESS");
2207 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2208 (*ResultCB)->ResultStatus = status;
2209 osi_Log2(afsd_logp, "RDR_CleanupFileEntry FAILURE code=0x%x status=0x%x",
2214 cm_ReleaseSCache(scp);
2216 cm_ReleaseSCache(dscp);
2222 RDR_DeleteFileEntry( IN cm_user_t *userp,
2223 IN AFSFileID ParentId,
2224 IN ULONGLONG ProcessId,
2225 IN WCHAR *FileNameCounted,
2226 IN DWORD FileNameLength,
2229 IN DWORD ResultBufferLength,
2230 IN OUT AFSCommResult **ResultCB)
2233 AFSFileDeleteResultCB *pResultCB = NULL;
2234 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
2237 cm_scache_t * dscp = NULL;
2238 cm_scache_t * scp = NULL;
2239 afs_uint32 flags = 0;
2243 wchar_t FileName[260];
2246 StringCchCopyNW(FileName, 260, FileNameCounted, FileNameLength / sizeof(WCHAR));
2248 osi_Log4(afsd_logp, "RDR_DeleteFileEntry parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2249 ParentId.Cell, ParentId.Volume,
2250 ParentId.Vnode, ParentId.Unique);
2251 osi_Log2(afsd_logp, "... name=%S checkOnly=%x",
2252 osi_LogSaveStringW(afsd_logp, FileName),
2255 RDR_InitReq(&req, bWow64);
2256 memset(&setAttr, 0, sizeof(cm_attr_t));
2258 *ResultCB = (AFSCommResult *)malloc( size);
2260 osi_Log0(afsd_logp, "RDR_DeleteFileEntry out of memory");
2268 parentFid.cell = ParentId.Cell;
2269 parentFid.volume = ParentId.Volume;
2270 parentFid.vnode = ParentId.Vnode;
2271 parentFid.unique = ParentId.Unique;
2272 parentFid.hash = ParentId.Hash;
2274 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
2276 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2277 if ( status == STATUS_INVALID_HANDLE)
2278 status = STATUS_OBJECT_PATH_INVALID;
2279 (*ResultCB)->ResultStatus = status;
2280 osi_Log2(afsd_logp, "RDR_DeleteFileEntry cm_GetSCache ParentFID failure code=0x%x status=0x%x",
2285 lock_ObtainWrite(&dscp->rw);
2287 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
2288 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2290 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2291 (*ResultCB)->ResultStatus = status;
2292 (*ResultCB)->ResultBufferLength = 0;
2293 lock_ReleaseWrite(&dscp->rw);
2294 cm_ReleaseSCache(dscp);
2295 osi_Log3(afsd_logp, "RDR_DeleteFileEntry cm_SyncOp failure dscp=0x%p code=0x%x status=0x%x",
2296 dscp, code, status);
2300 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2301 lock_ReleaseWrite(&dscp->rw);
2303 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
2304 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
2305 cm_ReleaseSCache(dscp);
2306 osi_Log1(afsd_logp, "RDR_DeleteFileEntry Not a Directory dscp=0x%p",
2311 code = cm_Lookup(dscp, FileName, 0, userp, &req, &scp);
2312 if (code && code != CM_ERROR_INEXACT_MATCH) {
2313 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2314 (*ResultCB)->ResultStatus = status;
2315 (*ResultCB)->ResultBufferLength = 0;
2316 cm_ReleaseSCache(dscp);
2317 osi_Log2(afsd_logp, "RDR_DeleteFileEntry cm_Lookup failure code=0x%x status=0x%x",
2322 lock_ObtainWrite(&scp->rw);
2323 code = cm_SyncOp(scp, NULL, userp, &req, PRSFS_DELETE,
2324 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2326 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2327 (*ResultCB)->ResultStatus = status;
2328 (*ResultCB)->ResultBufferLength = 0;
2329 lock_ReleaseWrite(&scp->rw);
2330 cm_ReleaseSCache(scp);
2331 cm_ReleaseSCache(dscp);
2332 osi_Log3(afsd_logp, "RDR_DeleteFileEntry cm_SyncOp failure scp=0x%p code=0x%x status=0x%x",
2337 if (scp->fileType == CM_SCACHETYPE_DIRECTORY) {
2340 lock_ReleaseWrite(&scp->rw);
2342 code = cm_BeginDirOp(scp, userp, &req, CM_DIRLOCK_READ,
2343 CM_DIROP_FLAG_NONE, &dirop);
2345 /* is the directory empty? if not, CM_ERROR_NOTEMPTY */
2348 code = cm_BPlusDirIsEmpty(&dirop, &bEmpty);
2349 if (code == 0 && !bEmpty)
2350 code = CM_ERROR_NOTEMPTY;
2352 cm_EndDirOp(&dirop);
2356 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2357 (*ResultCB)->ResultStatus = status;
2358 (*ResultCB)->ResultBufferLength = 0;
2359 cm_ReleaseSCache(scp);
2360 cm_ReleaseSCache(dscp);
2361 osi_Log3(afsd_logp, "RDR_DeleteFileEntry cm_SyncOp failure scp=0x%p code=0x%x status=0x%x",
2365 lock_ObtainWrite(&scp->rw);
2369 /* Drop all locks since the file is being deleted */
2370 code = cm_SyncOp(scp, NULL, userp, &req, 0,
2371 CM_SCACHESYNC_LOCK);
2373 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2374 (*ResultCB)->ResultStatus = status;
2375 (*ResultCB)->ResultBufferLength = 0;
2376 lock_ReleaseWrite(&scp->rw);
2377 cm_ReleaseSCache(scp);
2378 cm_ReleaseSCache(dscp);
2379 osi_Log3(afsd_logp, "RDR_DeleteFileEntry cm_SyncOp Lock failure scp=0x%p code=0x%x status=0x%x",
2383 /* the scp is now locked and current */
2384 key = cm_GenerateKey(CM_SESSION_IFS, ProcessId, 0);
2386 code = cm_UnlockByKey(scp, key,
2387 CM_UNLOCK_FLAG_BY_FID,
2390 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_LOCK);
2391 lock_ReleaseWrite(&scp->rw);
2393 if (scp->fileType == CM_SCACHETYPE_DIRECTORY)
2394 code = cm_RemoveDir(dscp, NULL, FileName, userp, &req);
2396 code = cm_Unlink(dscp, NULL, FileName, userp, &req);
2398 lock_ReleaseWrite(&scp->rw);
2402 (*ResultCB)->ResultStatus = 0; // We will be able to fit all the data in here
2404 (*ResultCB)->ResultBufferLength = sizeof( AFSFileDeleteResultCB);
2406 pResultCB = (AFSFileDeleteResultCB *)(*ResultCB)->ResultData;
2408 pResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
2409 osi_Log0(afsd_logp, "RDR_DeleteFileEntry SUCCESS");
2411 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2412 (*ResultCB)->ResultStatus = status;
2413 (*ResultCB)->ResultBufferLength = 0;
2414 osi_Log2(afsd_logp, "RDR_DeleteFileEntry FAILURE code=0x%x status=0x%x",
2418 cm_ReleaseSCache(dscp);
2419 cm_ReleaseSCache(scp);
2425 RDR_RenameFileEntry( IN cm_user_t *userp,
2426 IN WCHAR *SourceFileNameCounted,
2427 IN DWORD SourceFileNameLength,
2428 IN AFSFileID SourceFileId,
2429 IN AFSFileRenameCB *pRenameCB,
2431 IN DWORD ResultBufferLength,
2432 IN OUT AFSCommResult **ResultCB)
2435 AFSFileRenameResultCB *pResultCB = NULL;
2436 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
2437 AFSFileID SourceParentId = pRenameCB->SourceParentId;
2438 AFSFileID TargetParentId = pRenameCB->TargetParentId;
2439 WCHAR * TargetFileNameCounted = pRenameCB->TargetName;
2440 DWORD TargetFileNameLength = pRenameCB->TargetNameLength;
2441 cm_fid_t SourceParentFid;
2442 cm_fid_t TargetParentFid;
2444 cm_fid_t OrigTargetFid = {0,0,0,0,0};
2446 cm_scache_t * oldDscp;
2447 cm_scache_t * newDscp;
2449 wchar_t shortName[13];
2450 wchar_t SourceFileName[260];
2451 wchar_t TargetFileName[260];
2457 RDR_InitReq(&req, bWow64);
2459 StringCchCopyNW(SourceFileName, 260, SourceFileNameCounted, SourceFileNameLength / sizeof(WCHAR));
2460 StringCchCopyNW(TargetFileName, 260, TargetFileNameCounted, TargetFileNameLength / sizeof(WCHAR));
2462 osi_Log4(afsd_logp, "RDR_RenameFileEntry Source Parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2463 SourceParentId.Cell, SourceParentId.Volume,
2464 SourceParentId.Vnode, SourceParentId.Unique);
2465 osi_Log2(afsd_logp, "... Source Name=%S Length %u", osi_LogSaveStringW(afsd_logp, SourceFileName), SourceFileNameLength);
2466 osi_Log4(afsd_logp, "... Target Parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2467 TargetParentId.Cell, TargetParentId.Volume,
2468 TargetParentId.Vnode, TargetParentId.Unique);
2469 osi_Log2(afsd_logp, "... Target Name=%S Length %u", osi_LogSaveStringW(afsd_logp, TargetFileName), TargetFileNameLength);
2471 *ResultCB = (AFSCommResult *)malloc( size);
2479 pResultCB = (AFSFileRenameResultCB *)(*ResultCB)->ResultData;
2481 if (SourceFileNameLength == 0 || TargetFileNameLength == 0)
2483 osi_Log2(afsd_logp, "RDR_RenameFileEntry Invalid Name Length: src %u target %u",
2484 SourceFileNameLength, TargetFileNameLength);
2485 (*ResultCB)->ResultStatus = STATUS_INVALID_PARAMETER;
2489 SourceParentFid.cell = SourceParentId.Cell;
2490 SourceParentFid.volume = SourceParentId.Volume;
2491 SourceParentFid.vnode = SourceParentId.Vnode;
2492 SourceParentFid.unique = SourceParentId.Unique;
2493 SourceParentFid.hash = SourceParentId.Hash;
2495 TargetParentFid.cell = TargetParentId.Cell;
2496 TargetParentFid.volume = TargetParentId.Volume;
2497 TargetParentFid.vnode = TargetParentId.Vnode;
2498 TargetParentFid.unique = TargetParentId.Unique;
2499 TargetParentFid.hash = TargetParentId.Hash;
2501 code = cm_GetSCache(&SourceParentFid, NULL, &oldDscp, userp, &req);
2503 osi_Log1(afsd_logp, "RDR_RenameFileEntry cm_GetSCache source parent failed code 0x%x", code);
2504 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2505 if ( status == STATUS_INVALID_HANDLE)
2506 status = STATUS_OBJECT_PATH_INVALID;
2507 (*ResultCB)->ResultStatus = status;
2511 lock_ObtainWrite(&oldDscp->rw);
2512 code = cm_SyncOp(oldDscp, NULL, userp, &req, 0,
2513 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2515 osi_Log2(afsd_logp, "RDR_RenameFileEntry cm_SyncOp oldDscp 0x%p failed code 0x%x", oldDscp, code);
2516 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2517 if ( status == STATUS_INVALID_HANDLE)
2518 status = STATUS_OBJECT_PATH_INVALID;
2519 (*ResultCB)->ResultStatus = status;
2520 lock_ReleaseWrite(&oldDscp->rw);
2521 cm_ReleaseSCache(oldDscp);
2525 cm_SyncOpDone(oldDscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2526 lock_ReleaseWrite(&oldDscp->rw);
2529 if (oldDscp->fileType != CM_SCACHETYPE_DIRECTORY) {
2530 osi_Log1(afsd_logp, "RDR_RenameFileEntry oldDscp 0x%p not a directory", oldDscp);
2531 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
2532 cm_ReleaseSCache(oldDscp);
2536 code = cm_GetSCache(&TargetParentFid, NULL, &newDscp, userp, &req);
2538 osi_Log1(afsd_logp, "RDR_RenameFileEntry cm_GetSCache target parent failed code 0x%x", code);
2539 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2540 (*ResultCB)->ResultStatus = status;
2541 cm_ReleaseSCache(oldDscp);
2545 lock_ObtainWrite(&newDscp->rw);
2546 code = cm_SyncOp(newDscp, NULL, userp, &req, 0,
2547 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2549 osi_Log2(afsd_logp, "RDR_RenameFileEntry cm_SyncOp newDscp 0x%p failed code 0x%x", newDscp, code);
2550 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2551 (*ResultCB)->ResultStatus = status;
2552 lock_ReleaseWrite(&newDscp->rw);
2553 cm_ReleaseSCache(oldDscp);
2554 cm_ReleaseSCache(newDscp);
2558 cm_SyncOpDone(newDscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2559 lock_ReleaseWrite(&newDscp->rw);
2562 if (newDscp->fileType != CM_SCACHETYPE_DIRECTORY) {
2563 osi_Log1(afsd_logp, "RDR_RenameFileEntry newDscp 0x%p not a directory", newDscp);
2564 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
2565 cm_ReleaseSCache(oldDscp);
2566 cm_ReleaseSCache(newDscp);
2570 /* Obtain the original FID just for debugging purposes */
2571 code = cm_BeginDirOp( oldDscp, userp, &req, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
2573 code = cm_BPlusDirLookup(&dirop, SourceFileName, &SourceFid);
2574 code = cm_BPlusDirLookup(&dirop, TargetFileName, &OrigTargetFid);
2575 cm_EndDirOp(&dirop);
2578 code = cm_Rename( oldDscp, NULL, SourceFileName,
2579 newDscp, TargetFileName, userp, &req);
2581 cm_scache_t *scp = 0;
2584 (*ResultCB)->ResultBufferLength = ResultBufferLength;
2585 dwRemaining = ResultBufferLength - sizeof( AFSFileRenameResultCB) + sizeof( AFSDirEnumEntry);
2586 (*ResultCB)->ResultStatus = 0;
2588 pResultCB->SourceParentDataVersion.QuadPart = oldDscp->dataVersion;
2589 pResultCB->TargetParentDataVersion.QuadPart = newDscp->dataVersion;
2591 osi_Log2(afsd_logp, "RDR_RenameFileEntry cm_Rename oldDscp 0x%p newDscp 0x%p SUCCESS",
2594 code = cm_BeginDirOp( newDscp, userp, &req, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
2596 code = cm_BPlusDirLookup(&dirop, TargetFileName, &TargetFid);
2597 cm_EndDirOp(&dirop);
2600 if (code != 0 && code != CM_ERROR_INEXACT_MATCH) {
2601 osi_Log1(afsd_logp, "RDR_RenameFileEntry cm_BPlusDirLookup failed code 0x%x",
2603 (*ResultCB)->ResultStatus = STATUS_OBJECT_PATH_INVALID;
2604 cm_ReleaseSCache(oldDscp);
2605 cm_ReleaseSCache(newDscp);
2609 osi_Log4(afsd_logp, "RDR_RenameFileEntry Target FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2610 TargetFid.cell, TargetFid.volume,
2611 TargetFid.vnode, TargetFid.unique);
2613 code = cm_GetSCache(&TargetFid, &newDscp->fid, &scp, userp, &req);
2615 osi_Log1(afsd_logp, "RDR_RenameFileEntry cm_GetSCache target failed code 0x%x", code);
2616 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2617 (*ResultCB)->ResultStatus = status;
2618 cm_ReleaseSCache(oldDscp);
2619 cm_ReleaseSCache(newDscp);
2623 /* Make sure the source vnode is current */
2624 lock_ObtainWrite(&scp->rw);
2625 code = cm_SyncOp(scp, NULL, userp, &req, 0,
2626 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2628 osi_Log2(afsd_logp, "RDR_RenameFileEntry cm_SyncOp scp 0x%p failed code 0x%x", scp, code);
2629 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2630 (*ResultCB)->ResultStatus = status;
2631 lock_ReleaseWrite(&scp->rw);
2632 cm_ReleaseSCache(oldDscp);
2633 cm_ReleaseSCache(newDscp);
2634 cm_ReleaseSCache(scp);
2638 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2639 lock_ReleaseWrite(&scp->rw);
2641 if (cm_shortNames) {
2642 dfid.vnode = htonl(scp->fid.vnode);
2643 dfid.unique = htonl(scp->fid.unique);
2645 if (!cm_Is8Dot3(TargetFileName))
2646 cm_Gen8Dot3NameIntW(TargetFileName, &dfid, shortName, NULL);
2648 shortName[0] = '\0';
2651 RDR_PopulateCurrentEntry(&pResultCB->DirEnum, dwRemaining,
2652 newDscp, scp, userp, &req, TargetFileName, shortName,
2653 RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS,
2654 0, NULL, &dwRemaining);
2655 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
2656 cm_ReleaseSCache(scp);
2658 osi_Log0(afsd_logp, "RDR_RenameFileEntry SUCCESS");
2660 osi_Log3(afsd_logp, "RDR_RenameFileEntry cm_Rename oldDscp 0x%p newDscp 0x%p failed code 0x%x",
2661 oldDscp, newDscp, code);
2662 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2663 (*ResultCB)->ResultStatus = status;
2664 (*ResultCB)->ResultBufferLength = 0;
2667 cm_ReleaseSCache(oldDscp);
2668 cm_ReleaseSCache(newDscp);
2673 * AFS does not support cross-directory hard links but RDR_HardLinkFileEntry
2674 * is written as if AFS does. The check for cross-directory links is
2675 * implemented in cm_Link().
2677 * Windows supports optional ReplaceIfExists functionality. The AFS file
2678 * server does not. If the target name already exists and bReplaceIfExists
2679 * is true, check to see if the user has insert permission before calling
2680 * cm_Unlink() on the existing object. If the user does not have insert
2681 * permission return STATUS_ACCESS_DENIED.
2685 RDR_HardLinkFileEntry( IN cm_user_t *userp,
2686 IN WCHAR *SourceFileNameCounted,
2687 IN DWORD SourceFileNameLength,
2688 IN AFSFileID SourceFileId,
2689 IN AFSFileHardLinkCB *pHardLinkCB,
2691 IN DWORD ResultBufferLength,
2692 IN OUT AFSCommResult **ResultCB)
2695 AFSFileHardLinkResultCB *pResultCB = NULL;
2696 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
2697 AFSFileID SourceParentId = pHardLinkCB->SourceParentId;
2698 AFSFileID TargetParentId = pHardLinkCB->TargetParentId;
2699 WCHAR * TargetFileNameCounted = pHardLinkCB->TargetName;
2700 DWORD TargetFileNameLength = pHardLinkCB->TargetNameLength;
2701 cm_fid_t SourceParentFid;
2702 cm_fid_t TargetParentFid;
2704 cm_fid_t OrigTargetFid = {0,0,0,0,0};
2705 cm_scache_t * srcDscp = NULL;
2706 cm_scache_t * targetDscp = NULL;
2707 cm_scache_t * srcScp = NULL;
2709 wchar_t shortName[13];
2710 wchar_t SourceFileName[260];
2711 wchar_t TargetFileName[260];
2717 RDR_InitReq(&req, bWow64);
2719 StringCchCopyNW(SourceFileName, 260, SourceFileNameCounted, SourceFileNameLength / sizeof(WCHAR));
2720 StringCchCopyNW(TargetFileName, 260, TargetFileNameCounted, TargetFileNameLength / sizeof(WCHAR));
2722 osi_Log4(afsd_logp, "RDR_HardLinkFileEntry Source Parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2723 SourceParentId.Cell, SourceParentId.Volume,
2724 SourceParentId.Vnode, SourceParentId.Unique);
2725 osi_Log2(afsd_logp, "... Source Name=%S Length %u", osi_LogSaveStringW(afsd_logp, SourceFileName), SourceFileNameLength);
2726 osi_Log4(afsd_logp, "... Target Parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2727 TargetParentId.Cell, TargetParentId.Volume,
2728 TargetParentId.Vnode, TargetParentId.Unique);
2729 osi_Log2(afsd_logp, "... Target Name=%S Length %u", osi_LogSaveStringW(afsd_logp, TargetFileName), TargetFileNameLength);
2731 *ResultCB = (AFSCommResult *)malloc( size);
2739 pResultCB = (AFSFileHardLinkResultCB *)(*ResultCB)->ResultData;
2741 if (SourceFileNameLength == 0 || TargetFileNameLength == 0)
2743 osi_Log2(afsd_logp, "RDR_HardLinkFileEntry Invalid Name Length: src %u target %u",
2744 SourceFileNameLength, TargetFileNameLength);
2745 (*ResultCB)->ResultStatus = STATUS_INVALID_PARAMETER;
2749 SourceFid.cell = SourceFileId.Cell;
2750 SourceFid.volume = SourceFileId.Volume;
2751 SourceFid.vnode = SourceFileId.Vnode;
2752 SourceFid.unique = SourceFileId.Unique;
2753 SourceFid.hash = SourceFileId.Hash;
2755 SourceParentFid.cell = SourceParentId.Cell;
2756 SourceParentFid.volume = SourceParentId.Volume;
2757 SourceParentFid.vnode = SourceParentId.Vnode;
2758 SourceParentFid.unique = SourceParentId.Unique;
2759 SourceParentFid.hash = SourceParentId.Hash;
2761 TargetParentFid.cell = TargetParentId.Cell;
2762 TargetParentFid.volume = TargetParentId.Volume;
2763 TargetParentFid.vnode = TargetParentId.Vnode;
2764 TargetParentFid.unique = TargetParentId.Unique;
2765 TargetParentFid.hash = TargetParentId.Hash;
2767 code = cm_GetSCache(&SourceFid, NULL, &srcScp, userp, &req);
2769 osi_Log1(afsd_logp, "RDR_HardLinkFileEntry cm_GetSCache source failed code 0x%x", code);
2770 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2771 (*ResultCB)->ResultStatus = status;
2775 code = cm_GetSCache(&TargetParentFid, NULL, &targetDscp, userp, &req);
2777 osi_Log1(afsd_logp, "RDR_HardLinkFileEntry cm_GetSCache target parent failed code 0x%x", code);
2778 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2779 (*ResultCB)->ResultStatus = status;
2780 cm_ReleaseSCache(srcScp);
2784 lock_ObtainWrite(&targetDscp->rw);
2785 code = cm_SyncOp(targetDscp, NULL, userp, &req, PRSFS_INSERT,
2786 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2788 osi_Log2(afsd_logp, "RDR_HardLinkFileEntry cm_SyncOp targetDscp 0x%p failed code 0x%x", targetDscp, code);
2789 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2790 (*ResultCB)->ResultStatus = status;
2791 lock_ReleaseWrite(&targetDscp->rw);
2792 cm_ReleaseSCache(srcScp);
2793 cm_ReleaseSCache(targetDscp);
2797 cm_SyncOpDone(targetDscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2798 lock_ReleaseWrite(&targetDscp->rw);
2800 if (targetDscp->fileType != CM_SCACHETYPE_DIRECTORY) {
2801 osi_Log1(afsd_logp, "RDR_HardLinkFileEntry targetDscp 0x%p not a directory", targetDscp);
2802 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
2803 cm_ReleaseSCache(srcScp);
2804 cm_ReleaseSCache(targetDscp);
2808 if ( cm_FidCmp(&SourceParentFid, &TargetParentFid) ) {
2809 code = cm_GetSCache(&SourceParentFid, NULL, &srcDscp, userp, &req);
2811 osi_Log1(afsd_logp, "RDR_HardLinkFileEntry cm_GetSCache source parent failed code 0x%x", code);
2812 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2813 if ( status == STATUS_INVALID_HANDLE)
2814 status = STATUS_OBJECT_PATH_INVALID;
2815 (*ResultCB)->ResultStatus = status;
2816 cm_ReleaseSCache(srcScp);
2817 cm_ReleaseSCache(targetDscp);
2821 lock_ObtainWrite(&srcDscp->rw);
2822 code = cm_SyncOp(srcDscp, NULL, userp, &req, 0,
2823 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2825 osi_Log2(afsd_logp, "RDR_HardLinkFileEntry cm_SyncOp srcDscp 0x%p failed code 0x%x", srcDscp, code);
2826 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2827 if ( status == STATUS_INVALID_HANDLE)
2828 status = STATUS_OBJECT_PATH_INVALID;
2829 (*ResultCB)->ResultStatus = status;
2830 lock_ReleaseWrite(&srcDscp->rw);
2831 if (srcDscp != targetDscp)
2832 cm_ReleaseSCache(srcDscp);
2833 cm_ReleaseSCache(targetDscp);
2834 cm_ReleaseSCache(srcScp);
2838 cm_SyncOpDone(srcDscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2839 lock_ReleaseWrite(&srcDscp->rw);
2841 if (srcDscp->fileType != CM_SCACHETYPE_DIRECTORY) {
2842 osi_Log1(afsd_logp, "RDR_HardLinkFileEntry srcDscp 0x%p not a directory", srcDscp);
2843 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
2844 if (srcDscp != targetDscp)
2845 cm_ReleaseSCache(srcDscp);
2846 cm_ReleaseSCache(targetDscp);
2847 cm_ReleaseSCache(srcScp);
2851 srcDscp = targetDscp;
2854 /* Obtain the target FID if it exists */
2855 code = cm_BeginDirOp( targetDscp, userp, &req, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
2857 code = cm_BPlusDirLookup(&dirop, TargetFileName, &OrigTargetFid);
2858 cm_EndDirOp(&dirop);
2861 if (OrigTargetFid.vnode) {
2863 /* An object exists with the target name */
2864 if (!pHardLinkCB->bReplaceIfExists) {
2865 osi_Log0(afsd_logp, "RDR_HardLinkFileEntry target name collision and !ReplaceIfExists");
2866 (*ResultCB)->ResultStatus = STATUS_OBJECT_NAME_COLLISION;
2867 if (srcDscp != targetDscp)
2868 cm_ReleaseSCache(srcDscp);
2869 cm_ReleaseSCache(targetDscp);
2870 cm_ReleaseSCache(srcScp);
2874 lock_ObtainWrite(&targetDscp->rw);
2875 code = cm_SyncOp(targetDscp, NULL, userp, &req, PRSFS_INSERT | PRSFS_DELETE,
2876 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2878 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2879 (*ResultCB)->ResultStatus = status;
2880 lock_ReleaseWrite(&srcDscp->rw);
2881 if (srcDscp != targetDscp)
2882 cm_ReleaseSCache(srcDscp);
2883 cm_ReleaseSCache(targetDscp);
2884 cm_ReleaseSCache(srcScp);
2887 cm_SyncOpDone(targetDscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2888 lock_ReleaseWrite(&targetDscp->rw);
2890 code = cm_Unlink(targetDscp, NULL, TargetFileName, userp, &req);
2892 osi_Log1(afsd_logp, "RDR_HardLinkFileEntry cm_Unlink code 0x%x", code);
2893 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2894 (*ResultCB)->ResultStatus = status;
2895 lock_ReleaseWrite(&srcDscp->rw);
2896 if (srcDscp != targetDscp)
2897 cm_ReleaseSCache(srcDscp);
2898 cm_ReleaseSCache(targetDscp);
2899 cm_ReleaseSCache(srcScp);
2904 code = cm_Link( targetDscp, TargetFileName, srcScp, 0, userp, &req);
2907 cm_scache_t *targetScp = 0;
2910 (*ResultCB)->ResultBufferLength = ResultBufferLength;
2911 dwRemaining = ResultBufferLength - sizeof( AFSFileHardLinkResultCB) + sizeof( AFSDirEnumEntry);
2912 (*ResultCB)->ResultStatus = 0;
2914 pResultCB->SourceParentDataVersion.QuadPart = srcDscp->dataVersion;
2915 pResultCB->TargetParentDataVersion.QuadPart = targetDscp->dataVersion;
2917 osi_Log2(afsd_logp, "RDR_HardLinkFileEntry cm_Link srcDscp 0x%p targetDscp 0x%p SUCCESS",
2918 srcDscp, targetDscp);
2920 code = cm_BeginDirOp( targetDscp, userp, &req, CM_DIRLOCK_READ, CM_DIROP_FLAG_NONE, &dirop);
2922 code = cm_BPlusDirLookup(&dirop, TargetFileName, &TargetFid);
2923 cm_EndDirOp(&dirop);
2926 if (code != 0 && code != CM_ERROR_INEXACT_MATCH) {
2927 osi_Log1(afsd_logp, "RDR_HardLinkFileEntry cm_BPlusDirLookup failed code 0x%x",
2929 (*ResultCB)->ResultStatus = STATUS_OBJECT_PATH_INVALID;
2930 if (srcDscp != targetDscp)
2931 cm_ReleaseSCache(srcDscp);
2932 cm_ReleaseSCache(srcScp);
2933 cm_ReleaseSCache(targetDscp);
2937 osi_Log4(afsd_logp, "RDR_HardLinkFileEntry Target FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
2938 TargetFid.cell, TargetFid.volume,
2939 TargetFid.vnode, TargetFid.unique);
2941 code = cm_GetSCache(&TargetFid, &targetDscp->fid, &targetScp, userp, &req);
2943 osi_Log1(afsd_logp, "RDR_HardLinkFileEntry cm_GetSCache target failed code 0x%x", code);
2944 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2945 (*ResultCB)->ResultStatus = status;
2946 if (srcDscp != targetDscp)
2947 cm_ReleaseSCache(srcDscp);
2948 cm_ReleaseSCache(srcScp);
2949 cm_ReleaseSCache(targetDscp);
2953 /* Make sure the source vnode is current */
2954 lock_ObtainWrite(&targetScp->rw);
2955 code = cm_SyncOp(targetScp, NULL, userp, &req, 0,
2956 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2958 osi_Log2(afsd_logp, "RDR_HardLinkFileEntry cm_SyncOp scp 0x%p failed code 0x%x",
2960 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2961 (*ResultCB)->ResultStatus = status;
2962 lock_ReleaseWrite(&targetScp->rw);
2963 cm_ReleaseSCache(targetScp);
2964 if (srcDscp != targetDscp)
2965 cm_ReleaseSCache(srcDscp);
2966 cm_ReleaseSCache(srcScp);
2967 cm_ReleaseSCache(targetDscp);
2971 cm_SyncOpDone(targetScp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
2972 lock_ReleaseWrite(&targetScp->rw);
2974 if (cm_shortNames) {
2975 dfid.vnode = htonl(targetScp->fid.vnode);
2976 dfid.unique = htonl(targetScp->fid.unique);
2978 if (!cm_Is8Dot3(TargetFileName))
2979 cm_Gen8Dot3NameIntW(TargetFileName, &dfid, shortName, NULL);
2981 shortName[0] = '\0';
2984 RDR_PopulateCurrentEntry(&pResultCB->DirEnum, dwRemaining,
2985 targetDscp, targetScp, userp, &req, TargetFileName, shortName,
2986 RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS,
2987 0, NULL, &dwRemaining);
2988 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
2989 cm_ReleaseSCache(targetScp);
2991 osi_Log0(afsd_logp, "RDR_HardLinkFileEntry SUCCESS");
2993 osi_Log3(afsd_logp, "RDR_HardLinkFileEntry cm_Link srcDscp 0x%p targetDscp 0x%p failed code 0x%x",
2994 srcDscp, targetDscp, code);
2995 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
2996 (*ResultCB)->ResultStatus = status;
2997 (*ResultCB)->ResultBufferLength = 0;
3000 cm_ReleaseSCache(srcScp);
3001 if (srcDscp != targetDscp)
3002 cm_ReleaseSCache(srcDscp);
3003 cm_ReleaseSCache(targetDscp);
3009 RDR_CreateSymlinkEntry( IN cm_user_t *userp,
3010 IN AFSFileID FileId,
3011 IN WCHAR *FileNameCounted,
3012 IN DWORD FileNameLength,
3013 IN AFSCreateSymlinkCB *SymlinkCB,
3015 IN DWORD ResultBufferLength,
3016 IN OUT AFSCommResult **ResultCB)
3018 AFSCreateSymlinkResultCB *pResultCB = NULL;
3019 size_t size = sizeof(AFSCommResult) + ResultBufferLength - 1;
3023 cm_scache_t * dscp = NULL;
3024 afs_uint32 flags = 0;
3026 cm_scache_t * scp = NULL;
3029 wchar_t FileName[260];
3030 char *TargetPath = NULL;
3032 StringCchCopyNW(FileName, 260, FileNameCounted, FileNameLength / sizeof(WCHAR));
3033 TargetPath = cm_Utf16ToUtf8Alloc( SymlinkCB->TargetName, SymlinkCB->TargetNameLength / sizeof(WCHAR), NULL);
3035 osi_Log4( afsd_logp, "RDR_CreateSymlinkEntry parent FID cell=0x%x vol=0x%x vn=0x%x uniq=0x%x",
3036 SymlinkCB->ParentId.Cell, SymlinkCB->ParentId.Volume,
3037 SymlinkCB->ParentId.Vnode, SymlinkCB->ParentId.Unique);
3038 osi_Log1(afsd_logp, "... name=%S", osi_LogSaveStringW(afsd_logp, FileName));
3040 RDR_InitReq(&req, bWow64);
3041 memset(&setAttr, 0, sizeof(cm_attr_t));
3043 *ResultCB = (AFSCommResult *)malloc(size);
3045 osi_Log0(afsd_logp, "RDR_CreateSymlinkEntry out of memory");
3054 parentFid.cell = SymlinkCB->ParentId.Cell;
3055 parentFid.volume = SymlinkCB->ParentId.Volume;
3056 parentFid.vnode = SymlinkCB->ParentId.Vnode;
3057 parentFid.unique = SymlinkCB->ParentId.Unique;
3058 parentFid.hash = SymlinkCB->ParentId.Hash;
3060 code = cm_GetSCache(&parentFid, NULL, &dscp, userp, &req);
3062 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
3063 (*ResultCB)->ResultStatus = status;
3064 if ( status == STATUS_INVALID_HANDLE)
3065 status = STATUS_OBJECT_PATH_INVALID;
3066 osi_Log2(afsd_logp, "RDR_CreateSymlinkEntry cm_GetSCache ParentFID failure code=0x%x status=0x%x",
3072 lock_ObtainWrite(&dscp->rw);
3073 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
3074 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
3076 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
3077 (*ResultCB)->ResultStatus = status;
3078 lock_ReleaseWrite(&dscp->rw);
3079 cm_ReleaseSCache(dscp);
3080 osi_Log3(afsd_logp, "RDR_CreateSymlinkEntry cm_SyncOp failure (1) dscp=0x%p code=0x%x status=0x%x",
3081 dscp, code, status);
3086 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
3087 lock_ReleaseWrite(&dscp->rw);
3089 if (dscp->fileType != CM_SCACHETYPE_DIRECTORY) {
3090 (*ResultCB)->ResultStatus = STATUS_NOT_A_DIRECTORY;
3091 cm_ReleaseSCache(dscp);
3092 osi_Log1(afsd_logp, "RDR_CreateSymlinkEntry Not a Directory dscp=0x%p",
3098 Fid.cell = FileId.Cell;
3099 Fid.volume = FileId.Volume;
3100 Fid.vnode = FileId.Vnode;
3101 Fid.unique = FileId.Unique;
3102 Fid.hash = FileId.Hash;
3104 code = cm_GetSCache(&Fid, NULL, &scp, userp, &req);
3106 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
3107 (*ResultCB)->ResultStatus = status;
3108 if ( status == STATUS_INVALID_HANDLE)
3109 status = STATUS_OBJECT_PATH_INVALID;
3110 osi_Log2(afsd_logp, "RDR_CreateSymlinkEntry cm_GetSCache FID failure code=0x%x status=0x%x",
3116 lock_ObtainWrite(&scp->rw);
3117 code = cm_SyncOp(scp, NULL, userp, &req, 0,
3118 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
3120 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
3121 (*ResultCB)->ResultStatus = status;
3122 lock_ReleaseWrite(&scp->rw);
3123 cm_ReleaseSCache(scp);
3124 osi_Log3(afsd_logp, "RDR_CreateSymlinkEntry cm_SyncOp failure (1) scp=0x%p code=0x%x status=0x%x",
3130 cm_SyncOpDone(scp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
3131 lock_ReleaseWrite(&scp->rw);
3133 /* Remove the temporary object */
3134 if (scp->fileType == CM_SCACHETYPE_DIRECTORY)
3135 code = cm_RemoveDir(dscp, NULL, FileName, userp, &req);
3137 code = cm_Unlink(dscp, NULL, FileName, userp, &req);
3138 cm_ReleaseSCache(scp);
3140 if (code && code != CM_ERROR_NOSUCHFILE) {
3141 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
3142 (*ResultCB)->ResultStatus = status;
3143 cm_ReleaseSCache(dscp);
3144 osi_Log2(afsd_logp, "RDR_CreateSymlinkEntry Unable to delete file dscp=0x%p code=0x%x",
3151 * The target path is going to be provided by the redirector in one of the following forms:
3154 * 2. Absolute path prefaced as \??\UNC\<server>\<share>\<path>
3155 * 3. Absolute path prefaced as \??\<drive-letter>:\<path>
3157 * Relative paths can be used with just slash conversion. Absolute paths must be converted.
3158 * UNC paths with a server name that matches cm_NetbiosName then the path is an AFS path and
3159 * it must be converted to /<server>/<share>/<path>. Other UNC paths must be converted to
3160 * msdfs:\\<server>\<share>\<path>. Local disk paths should be converted to
3161 * msdfs:<drive-letter>:<path>.
3164 if ( TargetPath[0] == '\\' ) {
3165 size_t nbNameLen = strlen(cm_NetbiosName);
3169 if ( strncmp(TargetPath, "\\??\\UNC\\", 8) == 0) {
3171 if (strncmp(&TargetPath[8], cm_NetbiosName, nbNameLen) == 0 &&
3172 TargetPath[8 + nbNameLen] == '\\')
3175 s = strdup(&TargetPath[8 + nbNameLen]);
3184 * non-AFS UNC path (msdfs:\\server\share\path)
3185 * strlen("msdfs:\\") == 7 + 1 for the NUL
3187 len = 8 + strlen(&TargetPath[7]);
3188 s = malloc(8 + strlen(&TargetPath[7]));
3189 StringCbCopy(s, len, "msdfs:\\");
3190 StringCbCat(s, len, &TargetPath[7]);
3195 /* non-UNC path (msdfs:<drive>:\<path> */
3196 s = strdup(&TargetPath[4]);
3202 /* relative paths require slash conversion */
3203 char *s = TargetPath;
3210 /* Use current time */
3211 setAttr.mask = CM_ATTRMASK_UNIXMODEBITS | CM_ATTRMASK_CLIENTMODTIME;
3212 setAttr.unixModeBits = 0755;
3213 setAttr.clientModTime = time(NULL);
3215 code = cm_SymLink(dscp, FileName, TargetPath, flags, &setAttr, userp, &req, &scp);
3219 wchar_t shortName[13]=L"";
3223 if (dscp->flags & CM_SCACHEFLAG_ANYWATCH) {
3224 smb_NotifyChange(FILE_ACTION_ADDED,
3225 FILE_NOTIFY_CHANGE_DIR_NAME,
3226 dscp, FileName, NULL, TRUE);
3229 (*ResultCB)->ResultStatus = 0; // We will be able to fit all the data in here
3231 (*ResultCB)->ResultBufferLength = sizeof( AFSCreateSymlinkResultCB);
3233 pResultCB = (AFSCreateSymlinkResultCB *)(*ResultCB)->ResultData;
3235 dwRemaining = ResultBufferLength - sizeof( AFSCreateSymlinkResultCB) + sizeof( AFSDirEnumEntry);
3237 lock_ObtainWrite(&dscp->rw);
3238 code = cm_SyncOp(dscp, NULL, userp, &req, 0,
3239 CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
3241 smb_MapNTError(cm_MapRPCError(code, &req), &status, TRUE);
3242 (*ResultCB)->ResultStatus = status;
3243 lock_ReleaseWrite(&dscp->rw);
3244 cm_ReleaseSCache(dscp);
3245 cm_ReleaseSCache(scp);
3246 osi_Log3(afsd_logp, "RDR_CreateSymlinkEntry cm_SyncOp failure (2) dscp=0x%p code=0x%x status=0x%x",
3247 dscp, code, status);
3251 pResultCB->ParentDataVersion.QuadPart = dscp->dataVersion;
3253 cm_SyncOpDone(dscp, NULL, CM_SCACHESYNC_NEEDCALLBACK | CM_SCACHESYNC_GETSTATUS);
3254 lock_ReleaseWrite(&dscp->rw);
3256 if (cm_shortNames) {
3257 dfid.vnode = htonl(scp->fid.vnode);
3258 dfid.unique = htonl(scp->fid.unique);
3260 if (!cm_Is8Dot3(FileName))
3261 cm_Gen8Dot3NameIntW(FileName, &dfid, shortName, NULL);
3263 shortName[0] = '\0';
3266 code = RDR_PopulateCurrentEntry(&pResultCB->DirEnum, dwRemaining,
3267 dscp, scp, userp, &req, FileName, shortName,
3268 RDR_POP_FOLLOW_MOUNTPOINTS | RDR_POP_EVALUATE_SYMLINKS,
3269 0, NULL, &dwRemaining);
3270 cm_ReleaseSCache(scp);
3271 (*ResultCB)->ResultBufferLength = ResultBufferLength - dwRemaining;
3272 osi_Log0(afsd_logp, "RDR_CreateSymlinkEntry SUCCESS");
3274 (*ResultCB)->ResultStatus = STATUS_FILE_DELETED;
3275 (*ResultCB)->ResultBufferLength = 0;
3276 osi_Log2(afsd_logp, "RDR_CreateSymlinkEntry FAILURE code=0x%x status=0x%x",
3277 code, STATUS_FILE_DELETED);
3280 cm_ReleaseSCache(dscp);