Error with GetAccessControl()

G

Guest

Hi,

I've written a very quick console app to recursive through a directory tree
and display directories that have explicit file permissions (code below). It
works, but GetAccessControl() fails on some folders (always the same) with
the error:

The binary form of an ACE object is invalid.
Parameter name: binaryForm

I've had a look at the folder properties, security tab for a couple of the
affected folders and everything seems to look ok.

Anyone have any ideas?

Thanks,
Ryan

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Security.Principal;
using System.Security.AccessControl;

namespace CheckACLs {
class Program {
static void Main(string[] args) {
DirectoryInfo di = new DirectoryInfo(@"c:\");
DisplayRights(di, 0);
Console.ReadKey();
}

static void DisplayRights(DirectoryInfo di, int recurseLevel) {
if (recurseLevel <= 2) {
recurseLevel++;
foreach (DirectoryInfo d in di.GetDirectories()) {
DisplayRights(d, recurseLevel);
}
}

bool firstRun = true;

DirectorySecurity ds = di.GetAccessControl();
foreach (FileSystemAccessRule fsa in ds.GetAccessRules(true,
false, typeof(NTAccount))) {
if (firstRun) {
Console.WriteLine(di.FullName);
firstRun = false;
}

Console.WriteLine("\t" + fsa.IdentityReference.ToString() +
" " +
fsa.FileSystemRights.ToString() + " " +
fsa.AccessControlType.ToString());
}
}
}
}
 
K

Kevin Yu [MSFT]

Hi Ryan,

Yes, this is a know issue in .net framework 2.0. You can check the
following link for more information:

http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?Feedbac
kID=97797

As far as I know, a hotfix for this issue is available now. The product
group fixed this by relaxing the constraints of the ACEs. You can contact
Microsoft PSS for this hotfix. Here are their contact information.

http://support.microsoft.com/common/international.aspx?rdpath=gp;en-us;offer
prophone

If anything is unclear, please feel free to let me know.

Kevin Yu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top