aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/sec_helper.cc
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2003-11-26 13:23:27 +0000
committerCorinna Vinschen <corinna@vinschen.de>2003-11-26 13:23:27 +0000
commit12069cf31bcd401720e1a86b353ac6237b5e29a3 (patch)
tree1c2de4e70fcc84c84af015ab3fb4349722301d5d /winsup/cygwin/sec_helper.cc
parent3db690789f317dc0798bf3dd883a24ebfbb57354 (diff)
downloadnewlib-12069cf31bcd401720e1a86b353ac6237b5e29a3.zip
newlib-12069cf31bcd401720e1a86b353ac6237b5e29a3.tar.gz
newlib-12069cf31bcd401720e1a86b353ac6237b5e29a3.tar.bz2
* dir.cc (mkdir): Use local security_descriptor. Call
set_security_attribute appropriately. * external.cc (cygwin_internal): Ditto. * fhandler.cc (fhandler_base::open): Ditto. * fhandler_socket.cc (fhandler_socket::bind): Ditto. * path.cc (symlink_worker): Ditto. * sec_acl.cc (setacl): Ditto. Call read_sd appropriately. (getace): Ditto. * sec_helper.cc (security_descriptor::malloc): New method. (security_descriptor::realloc): New method. (security_descriptor::free): New method. * security.cc (read_sd): Get security_descriptor as parameter instead of PSECURITY_DESCRIPTOR and a size. Drop unnecessary parameter check. Allocate the security_descriptor buffer according to size returned by a call to GetFileSecurity. Return buffer size on success. (write_sd): Get security_descriptor as parameter instead of PSECURITY_DESCRIPTOR and a size. (get_nt_attribute): Use local security_descriptor. (get_nt_object_attribute): Ditto in case of type == SE_REGISTRY_KEY. Allocate security_descriptor buffer according to size returned by a call to RegGetKeySecurity. (alloc_sd): Make static. Get security_descriptor as parameter instead of PSECURITY_DESCRIPTOR and a size. Drop unnecessary parameter check. (set_security_attribute): Get security_descriptor as parameter instead of PSECURITY_DESCRIPTOR and a size. (set_nt_attribute): Use local security_descriptor. (check_file_access): Ditto. * security.h: Add class security_descriptor. (read_sd): Change declaration to get security_descriptor as parameter instead of PSECURITY_DESCRIPTOR and a size. (write_sd): Ditto. (set_security_attribute): Ditto. (alloc_sd): Remove declaration. * thread.cc (semaphore::semaphore): Use local security_descriptor. Call set_security_attribute appropriately.
Diffstat (limited to 'winsup/cygwin/sec_helper.cc')
-rw-r--r--winsup/cygwin/sec_helper.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/winsup/cygwin/sec_helper.cc b/winsup/cygwin/sec_helper.cc
index ccd8d44..f0b851b 100644
--- a/winsup/cygwin/sec_helper.cc
+++ b/winsup/cygwin/sec_helper.cc
@@ -225,6 +225,35 @@ get_sids_info (cygpsid owner_sid, cygpsid group_sid, __uid32_t * uidret, __gid32
return ret;
}
+PSECURITY_DESCRIPTOR
+security_descriptor::malloc (size_t nsize)
+{
+ if (psd)
+ ::free (psd);
+ psd = (PSECURITY_DESCRIPTOR) ::malloc (nsize);
+ sd_size = psd ? nsize : 0;
+ return psd;
+}
+
+PSECURITY_DESCRIPTOR
+security_descriptor::realloc (size_t nsize)
+{
+ PSECURITY_DESCRIPTOR tmp = (PSECURITY_DESCRIPTOR) ::realloc (psd, nsize);
+ if (!tmp)
+ return NULL;
+ sd_size = nsize;
+ return psd = tmp;
+}
+
+void
+security_descriptor::free (void)
+{
+ if (psd)
+ ::free (psd);
+ psd = NULL;
+ sd_size = 0;
+}
+
#if 0 // unused
#define SIDLEN (sidlen = MAX_SID_LEN, &sidlen)
#define DOMLEN (domlen = INTERNET_MAX_HOST_NAME_LENGTH, &domlen)