Skip to content

Commit 381b6c7

Browse files
dschoGit for Windows Build Agent
authored andcommitted
Merge 'docker-volumes-are-no-symlinks'
This was pull request #1645 from ZCube/master Support windows container. Signed-off-by: Johannes Schindelin <[email protected]>
2 parents 4903972 + 8f3ec2b commit 381b6c7

File tree

4 files changed

+97
-16
lines changed

4 files changed

+97
-16
lines changed

compat/mingw.c

Lines changed: 68 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,7 @@ int mingw_lstat(const char *file_name, struct stat *buf)
984984
buf->st_uid = 0;
985985
buf->st_nlink = 1;
986986
buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes,
987-
reparse_tag);
987+
reparse_tag, file_name);
988988
buf->st_size = S_ISLNK(buf->st_mode) ? link_len :
989989
fdata.nFileSizeLow | (((off_t) fdata.nFileSizeHigh) << 32);
990990
buf->st_dev = buf->st_rdev = 0; /* not used by Git */
@@ -1035,7 +1035,7 @@ static int get_file_info_by_handle(HANDLE hnd, struct stat *buf)
10351035
buf->st_gid = 0;
10361036
buf->st_uid = 0;
10371037
buf->st_nlink = 1;
1038-
buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes, 0);
1038+
buf->st_mode = file_attr_to_st_mode(fdata.dwFileAttributes, 0, NULL);
10391039
buf->st_size = fdata.nFileSizeLow |
10401040
(((off_t)fdata.nFileSizeHigh)<<32);
10411041
buf->st_dev = buf->st_rdev = 0; /* not used by Git */
@@ -2510,6 +2510,13 @@ int mingw_rename(const char *pold, const char *pnew)
25102510
return 0;
25112511
gle = GetLastError();
25122512

2513+
if (gle == ERROR_ACCESS_DENIED && is_inside_windows_container()) {
2514+
/* Fall back to copy to destination & remove source */
2515+
if (CopyFileW(wpold, wpnew, FALSE) && !mingw_unlink(pold))
2516+
return 0;
2517+
gle = GetLastError();
2518+
}
2519+
25132520
/* revert file attributes on failure */
25142521
if (attrs != INVALID_FILE_ATTRIBUTES)
25152522
SetFileAttributesW(wpnew, attrs);
@@ -3816,3 +3823,62 @@ int uname(struct utsname *buf)
38163823
"%u", (v >> 16) & 0x7fff);
38173824
return 0;
38183825
}
3826+
3827+
/*
3828+
* Based on https://stackoverflow.com/questions/43002803
3829+
*
3830+
* [HKLM\SYSTEM\CurrentControlSet\Services\cexecsvc]
3831+
* "DisplayName"="@%systemroot%\\system32\\cexecsvc.exe,-100"
3832+
* "ErrorControl"=dword:00000001
3833+
* "ImagePath"=hex(2):25,00,73,00,79,00,73,00,74,00,65,00,6d,00,72,00,6f,00,
3834+
* 6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,
3835+
* 5c,00,63,00,65,00,78,00,65,00,63,00,73,00,76,00,63,00,2e,00,65,00,78,00,
3836+
* 65,00,00,00
3837+
* "Start"=dword:00000002
3838+
* "Type"=dword:00000010
3839+
* "Description"="@%systemroot%\\system32\\cexecsvc.exe,-101"
3840+
* "ObjectName"="LocalSystem"
3841+
* "ServiceSidType"=dword:00000001
3842+
*/
3843+
int is_inside_windows_container(void)
3844+
{
3845+
static int inside_container = -1; /* -1 uninitialized */
3846+
const char *key = "SYSTEM\\CurrentControlSet\\Services\\cexecsvc";
3847+
HKEY handle = NULL;
3848+
3849+
if (inside_container != -1)
3850+
return inside_container;
3851+
3852+
inside_container = ERROR_SUCCESS ==
3853+
RegOpenKeyExA(HKEY_LOCAL_MACHINE, key, 0, KEY_READ, &handle);
3854+
RegCloseKey(handle);
3855+
3856+
return inside_container;
3857+
}
3858+
3859+
int file_attr_to_st_mode (DWORD attr, DWORD tag, const char *path)
3860+
{
3861+
int fMode = S_IREAD;
3862+
if ((attr & FILE_ATTRIBUTE_REPARSE_POINT) &&
3863+
tag == IO_REPARSE_TAG_SYMLINK) {
3864+
int flag = S_IFLNK;
3865+
char buf[MAX_LONG_PATH];
3866+
3867+
/*
3868+
* Windows containers' mapped volumes are marked as reparse
3869+
* points and look like symbolic links, but they are not.
3870+
*/
3871+
if (path && is_inside_windows_container() &&
3872+
readlink(path, buf, sizeof(buf)) > 27 &&
3873+
starts_with(buf, "/ContainerMappedDirectories/"))
3874+
flag = S_IFDIR;
3875+
3876+
fMode |= flag;
3877+
} else if (attr & FILE_ATTRIBUTE_DIRECTORY)
3878+
fMode |= S_IFDIR;
3879+
else
3880+
fMode |= S_IFREG;
3881+
if (!(attr & FILE_ATTRIBUTE_READONLY))
3882+
fMode |= S_IWRITE;
3883+
return fMode;
3884+
}

compat/mingw.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,3 +717,8 @@ void open_in_gdb(void);
717717
* Used by Pthread API implementation for Windows
718718
*/
719719
int err_win_to_posix(DWORD winerr);
720+
721+
/*
722+
* Check current process is inside Windows Container.
723+
*/
724+
int is_inside_windows_container(void);

compat/win32.h

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,7 @@
66
#include <windows.h>
77
#endif
88

9-
static inline int file_attr_to_st_mode (DWORD attr, DWORD tag)
10-
{
11-
int fMode = S_IREAD;
12-
if ((attr & FILE_ATTRIBUTE_REPARSE_POINT) && tag == IO_REPARSE_TAG_SYMLINK)
13-
fMode |= S_IFLNK;
14-
else if (attr & FILE_ATTRIBUTE_DIRECTORY)
15-
fMode |= S_IFDIR;
16-
else
17-
fMode |= S_IFREG;
18-
if (!(attr & FILE_ATTRIBUTE_READONLY))
19-
fMode |= S_IWRITE;
20-
return fMode;
21-
}
9+
extern int file_attr_to_st_mode (DWORD attr, DWORD tag, const char *path);
2210

2311
static inline int get_file_attr(const char *fname, WIN32_FILE_ATTRIBUTE_DATA *fdata)
2412
{

compat/win32/fscache.c

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,30 @@ static struct fsentry *fseentry_create_entry(struct fscache *cache,
200200
fdata->FileAttributes & FILE_ATTRIBUTE_REPARSE_POINT ?
201201
fdata->EaSize : 0;
202202

203+
/*
204+
* On certain Windows versions, host directories mapped into
205+
* Windows Containers ("Volumes", see https://docs.docker.com/storage/volumes/)
206+
* look like symbolic links, but their targets are paths that
207+
* are valid only in kernel mode.
208+
*
209+
* Let's work around this by detecting that situation and
210+
* telling Git that these are *not* symbolic links.
211+
*/
212+
if (fse->reparse_tag == IO_REPARSE_TAG_SYMLINK &&
213+
sizeof(buf) > (list ? list->len + 1 : 0) + fse->len + 1 &&
214+
is_inside_windows_container()) {
215+
size_t off = 0;
216+
if (list) {
217+
memcpy(buf, list->dirent.d_name, list->len);
218+
buf[list->len] = '/';
219+
off = list->len + 1;
220+
}
221+
memcpy(buf + off, fse->dirent.d_name, fse->len);
222+
buf[off + fse->len] = '\0';
223+
}
224+
203225
fse->st_mode = file_attr_to_st_mode(fdata->FileAttributes,
204-
fdata->EaSize);
226+
fdata->EaSize, buf);
205227
fse->dirent.d_type = S_ISREG(fse->st_mode) ? DT_REG :
206228
S_ISDIR(fse->st_mode) ? DT_DIR : DT_LNK;
207229
fse->u.s.st_size = S_ISLNK(fse->st_mode) ? MAX_LONG_PATH :

0 commit comments

Comments
 (0)