diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-08-21 17:38:27 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-08-21 17:38:27 +0000 |
commit | e1e4b104b6610b4e7bbf70d7759f0e08bfae6fa6 (patch) | |
tree | a76ac4ed66a76c934df82032546e9a124f58da5a | |
parent | 2e9fe498f27316f6b91ecf4540ca3c2c64f959c5 (diff) | |
download | cygnal-e1e4b104b6610b4e7bbf70d7759f0e08bfae6fa6.tar.gz cygnal-e1e4b104b6610b4e7bbf70d7759f0e08bfae6fa6.tar.bz2 cygnal-e1e4b104b6610b4e7bbf70d7759f0e08bfae6fa6.zip |
* uinfo.cc (pwdgrp::load): Use NT native functions.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/uinfo.cc | 89 |
2 files changed, 57 insertions, 36 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 0db674fb9..4b0ce4eb1 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2007-08-21 Corinna Vinschen <corinna@vinschen.de> + * uinfo.cc (pwdgrp::load): Use NT native functions. + +2007-08-21 Corinna Vinschen <corinna@vinschen.de> + * fhandler_disk_file.cc (fhandler_base::fstat_helper): Rewrite checking for executable file magic using a thread safe method and re-enable this code. diff --git a/winsup/cygwin/uinfo.cc b/winsup/cygwin/uinfo.cc index 210b1d1f7..af6035c5b 100644 --- a/winsup/cygwin/uinfo.cc +++ b/winsup/cygwin/uinfo.cc @@ -508,9 +508,16 @@ pwdgrp::add_line (char *eptr) void pwdgrp::load (const char *posix_fname) { - const char *res; static const char failed[] = "failed"; static const char succeeded[] = "succeeded"; + const char *res = failed; + HANDLE fh = NULL; + LARGE_INTEGER off = { QuadPart:0LL }; + + NTSTATUS status; + OBJECT_ATTRIBUTES attr; + IO_STATUS_BLOCK io; + FILE_STANDARD_INFORMATION fsi; if (buf) free (buf); @@ -525,44 +532,54 @@ pwdgrp::load (const char *posix_fname) if (pc.error || !pc.exists () || pc.isdir ()) { paranoid_printf ("strange path_conv problem"); - res = failed; + goto out; } - else + status = NtOpenFile (&fh, FILE_READ_DATA, + pc.get_object_attr (attr, sec_none_nih), &io, + FILE_SHARE_VALID_FLAGS, 0); + if (!NT_SUCCESS (status)) { - HANDLE fh = CreateFile (pc.get_win32 (), GENERIC_READ, - FILE_SHARE_VALID_FLAGS, NULL, OPEN_EXISTING, - FILE_ATTRIBUTE_NORMAL, 0); - if (fh == INVALID_HANDLE_VALUE) - { - paranoid_printf ("%s CreateFile failed, %E"); - res = failed; - } - else - { - DWORD size = GetFileSize (fh, NULL), read_bytes; - buf = (char *) malloc (size + 1); - if (!ReadFile (fh, buf, size, &read_bytes, NULL)) - { - paranoid_printf ("ReadFile failed, %E"); - CloseHandle (fh); - if (buf) - free (buf); - buf = NULL; - res = failed; - } - else - { - CloseHandle (fh); - buf[read_bytes] = '\0'; - char *eptr = buf; - while ((eptr = add_line (eptr))) - continue; - debug_printf ("%s curr_lines %d", posix_fname, curr_lines); - res = succeeded; - } - } + paranoid_printf ("NtOpenFile(%S) failed, status %p", + pc.get_nt_native_path (), status); + goto out; } - + status = NtQueryInformationFile (fh, &io, &fsi, sizeof fsi, + FileStandardInformation); + if (!NT_SUCCESS (status)) + { + paranoid_printf ("NtQueryInformationFile(%S) failed, status %p", + pc.get_nt_native_path (), status); + goto out; + } + /* FIXME: Should we test for HighPart set? If so, the + passwd or group file is way beyond what we can handle. */ + /* FIXME 2: It's still ugly that we keep the file in memory. + Big organizations have naturally large passwd files. */ + buf = (char *) malloc (fsi.EndOfFile.LowPart + 1); + if (!buf) + { + paranoid_printf ("malloc (%d) failed", fsi.EndOfFile.LowPart); + goto out; + } + status = NtReadFile (fh, NULL, NULL, NULL, &io, buf, + fsi.EndOfFile.LowPart, &off, NULL); + if (!NT_SUCCESS (status)) + { + paranoid_printf ("NtReadFile(%S) failed, status %p", + pc.get_nt_native_path (), status); + free (buf); + goto out; + } + buf[fsi.EndOfFile.LowPart] = '\0'; + char *eptr = buf; + while ((eptr = add_line (eptr))) + continue; + debug_printf ("%s curr_lines %d", posix_fname, curr_lines); + res = succeeded; + +out: + if (fh) + NtClose (fh); debug_printf ("%s load %s", posix_fname, res); initialized = true; } |