Skip to content

Commit 28c7967

Browse files
committed
Make owner validation configurable
1 parent 5085a0c commit 28c7967

File tree

5 files changed

+69
-0
lines changed

5 files changed

+69
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Thumbs.db
1414
*.ncb
1515
*.suo
1616
.vs/
17+
.idea/
1718
*.sln.ide/
1819
*.tlb
1920
*.tlh

LibGit2Sharp.Tests/GlobalSettingsFixture.cs

+15
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,20 @@ public void SetExtensions()
102102
extensions = GlobalSettings.GetExtensions();
103103
Assert.Equal(new[] { "newext", "noop", "objectformat", "partialclone" }, extensions);
104104
}
105+
106+
[Fact]
107+
public void OwnerValidation()
108+
{
109+
// Assert that owner validation is enabled by default
110+
Assert.True(GlobalSettings.OwnerValidation);
111+
112+
// Disable owner validation
113+
GlobalSettings.OwnerValidation = false;
114+
Assert.False(GlobalSettings.OwnerValidation);
115+
116+
// Enable it again
117+
GlobalSettings.OwnerValidation = true;
118+
Assert.True(GlobalSettings.OwnerValidation);
119+
}
105120
}
106121
}

LibGit2Sharp/Core/NativeMethods.cs

+8
Original file line numberDiff line numberDiff line change
@@ -746,6 +746,10 @@ internal static extern int git_libgit2_opts(int option, uint level,
746746
[DllImport(libgit2, CallingConvention = CallingConvention.Cdecl)]
747747
internal static extern int git_libgit2_opts(int option, int enabled);
748748

749+
// git_libgit2_opts(GIT_OPT_GET_*, int *enabled)
750+
[DllImport(libgit2, CallingConvention = CallingConvention.Cdecl)]
751+
internal static extern unsafe int git_libgit2_opts(int option, int* enabled);
752+
749753
// git_libgit2_opts(GIT_OPT_SET_USER_AGENT, const char *path)
750754
[DllImport(libgit2, CallingConvention = CallingConvention.Cdecl)]
751755
internal static extern int git_libgit2_opts(int option,
@@ -782,6 +786,10 @@ internal static extern int git_libgit2_opts_osxarm64(int option, IntPtr nop2, In
782786
[DllImport(libgit2, CallingConvention = CallingConvention.Cdecl, EntryPoint = "git_libgit2_opts")]
783787
internal static extern int git_libgit2_opts_osxarm64(int option, IntPtr nop2, IntPtr nop3, IntPtr nop4, IntPtr nop5, IntPtr nop6, IntPtr nop7, IntPtr nop8, int enabled);
784788

789+
// git_libgit2_opts(GIT_OPT_GET_*, int enabled)
790+
[DllImport(libgit2, CallingConvention = CallingConvention.Cdecl, EntryPoint = "git_libgit2_opts")]
791+
internal static extern unsafe int git_libgit2_opts_osxarm64(int option, IntPtr nop2, IntPtr nop3, IntPtr nop4, IntPtr nop5, IntPtr nop6, IntPtr nop7, IntPtr nop8, int* enabled);
792+
785793
// git_libgit2_opts(GIT_OPT_SET_USER_AGENT, const char *path)
786794
[DllImport(libgit2, CallingConvention = CallingConvention.Cdecl, EntryPoint = "git_libgit2_opts")]
787795
internal static extern int git_libgit2_opts_osxarm64(int option, IntPtr nop2, IntPtr nop3, IntPtr nop4, IntPtr nop5, IntPtr nop6, IntPtr nop7, IntPtr nop8,

LibGit2Sharp/Core/Proxy.cs

+32
Original file line numberDiff line numberDiff line change
@@ -3397,6 +3397,8 @@ private enum LibGit2Option
33973397
SetOdbLoosePriority, // GIT_OPT_SET_ODB_LOOSE_PRIORITY,
33983398
GetExtensions, // GIT_OPT_GET_EXTENSIONS,
33993399
SetExtensions, // GIT_OPT_SET_EXTENSIONS
3400+
GetOwnerValidation, // GIT_OPT_GET_OWNER_VALIDATION
3401+
SetOwnerValidation, // GIT_OPT_SET_OWNER_VALIDATION
34003402
}
34013403

34023404
/// <summary>
@@ -3570,6 +3572,36 @@ public static string[] git_libgit2_opts_get_extensions()
35703572
}
35713573
}
35723574

3575+
/// <summary>
3576+
/// Gets the value of owner validation
3577+
/// </summary>
3578+
public static unsafe bool git_libgit2_opts_get_owner_validation()
3579+
{
3580+
// libgit2 expects non-zero value for true
3581+
int res, enabled;
3582+
if (isOSXArm64)
3583+
res = NativeMethods.git_libgit2_opts_osxarm64((int)LibGit2Option.GetOwnerValidation, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, &enabled);
3584+
else
3585+
res = NativeMethods.git_libgit2_opts((int)LibGit2Option.GetOwnerValidation, &enabled);
3586+
Ensure.ZeroResult(res);
3587+
return enabled != 0;
3588+
}
3589+
3590+
/// <summary>
3591+
/// Enable or disable owner validation
3592+
/// </summary>
3593+
/// <param name="enabled">true to enable owner validation, false otherwise</param>
3594+
public static void git_libgit2_opts_set_owner_validation(bool enabled)
3595+
{
3596+
// libgit2 expects non-zero value for true
3597+
int res;
3598+
if (isOSXArm64)
3599+
res = NativeMethods.git_libgit2_opts_osxarm64((int)LibGit2Option.SetOwnerValidation, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, enabled ? 1 : 0);
3600+
else
3601+
res = NativeMethods.git_libgit2_opts((int)LibGit2Option.SetOwnerValidation, enabled ? 1 : 0);
3602+
Ensure.ZeroResult(res);
3603+
}
3604+
35733605
#endregion
35743606

35753607
#region git_worktree_

LibGit2Sharp/GlobalSettings.cs

+13
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,19 @@ public static string NativeLibraryPath
204204
}
205205
}
206206

207+
/// <summary>
208+
/// Controls the status of repository directory owner validation.
209+
/// </summary>
210+
/// <remarks>
211+
/// By default, repository directories must be owned by the current user to be opened. This can be disabled by setting this property to false.
212+
/// Note that disabling this can lead to security vulnerabilities (see CVE-2022-24765).
213+
/// </remarks>
214+
public static bool OwnerValidation
215+
{
216+
get => Proxy.git_libgit2_opts_get_owner_validation();
217+
set => Proxy.git_libgit2_opts_set_owner_validation(value);
218+
}
219+
207220
internal static string GetAndLockNativeLibraryPath()
208221
{
209222
nativeLibraryPathLocked = true;

0 commit comments

Comments
 (0)