Blame SOURCES/0002-library-add-_adcli_bin_sid_to_str.patch

776d17
From 0d0c1bf9721ba523d8c3ac584bdbb9a8ffdddee7 Mon Sep 17 00:00:00 2001
776d17
From: Sumit Bose <sbose@redhat.com>
776d17
Date: Tue, 30 Jan 2018 14:37:05 +0100
776d17
Subject: [PATCH 2/9] library: add _adcli_bin_sid_to_str()
776d17
776d17
Convert a binary SID to the string representation.
776d17
776d17
https://bugs.freedesktop.org/show_bug.cgi?id=100118
776d17
776d17
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
776d17
---
776d17
 library/adprivate.h |   4 ++
776d17
 library/adutil.c    | 113 ++++++++++++++++++++++++++++++++++++++++++++++++++++
776d17
 2 files changed, 117 insertions(+)
776d17
776d17
diff --git a/library/adprivate.h b/library/adprivate.h
776d17
index fc146af..e99f9fc 100644
776d17
--- a/library/adprivate.h
776d17
+++ b/library/adprivate.h
776d17
@@ -31,6 +31,7 @@
776d17
 #include <limits.h>
776d17
 #include <stdlib.h>
776d17
 #include <stdio.h>
776d17
+#include <stdint.h>
776d17
 
776d17
 #include <ldap.h>
776d17
 
776d17
@@ -132,6 +133,9 @@ int            _adcli_str_has_prefix         (const char *str,
776d17
 int            _adcli_str_has_suffix         (const char *str,
776d17
 		                              const char *suffix);
776d17
 
776d17
+char *          _adcli_bin_sid_to_str        (const uint8_t *data,
776d17
+                                              size_t len);
776d17
+
776d17
 char *         _adcli_str_dupn               (void *data,
776d17
                                               size_t len);
776d17
 
776d17
diff --git a/library/adutil.c b/library/adutil.c
776d17
index cd40f45..829cdd9 100644
776d17
--- a/library/adutil.c
776d17
+++ b/library/adutil.c
776d17
@@ -293,6 +293,83 @@ _adcli_strv_set (char ***field,
776d17
 	*field = newval;
776d17
 }
776d17
 
776d17
+char *
776d17
+_adcli_bin_sid_to_str (const uint8_t *data,
776d17
+                       size_t len)
776d17
+{
776d17
+	uint8_t sid_rev_num;
776d17
+	int8_t num_auths;
776d17
+	uint8_t id_auth[6];
776d17
+	uint32_t id_auth_val;
776d17
+	uint32_t sub_auths[15];
776d17
+	uint32_t val;
776d17
+	size_t p = 0;
776d17
+	size_t c;
776d17
+	int nc;
776d17
+	char *sid_buf;
776d17
+	size_t sid_buf_len;
776d17
+
776d17
+	if (data == NULL || len < 8) {
776d17
+		return NULL;
776d17
+	}
776d17
+
776d17
+	sid_rev_num = (uint8_t) data [p];
776d17
+	p++;
776d17
+
776d17
+	num_auths = (int8_t) data[p];
776d17
+	p++;
776d17
+
776d17
+	if (num_auths > 15 || len < 8 + (num_auths * sizeof (uint32_t))) {
776d17
+		return NULL;
776d17
+	}
776d17
+
776d17
+	for (c = 0; c < 6; c++) {
776d17
+		id_auth[c] = (uint8_t) data[p];
776d17
+		p++;
776d17
+	}
776d17
+
776d17
+	/* Only 32bits are used for the string representation */
776d17
+	id_auth_val = (id_auth[2] << 24) +
776d17
+	              (id_auth[3] << 16) +
776d17
+	              (id_auth[4] << 8) +
776d17
+	              (id_auth[5]);
776d17
+
776d17
+	for (c = 0; c < num_auths; c++) {
776d17
+		memcpy (&val, data + p, sizeof (uint32_t));
776d17
+		sub_auths[c] = le32toh (val);
776d17
+
776d17
+		p += sizeof (uint32_t);
776d17
+	}
776d17
+
776d17
+	sid_buf_len = 17 + (num_auths * 11);
776d17
+	sid_buf = calloc (1, sid_buf_len);
776d17
+	if (sid_buf == NULL) {
776d17
+		return NULL;
776d17
+	}
776d17
+
776d17
+	nc = snprintf (sid_buf, sid_buf_len, "S-%u-%lu", sid_rev_num,
776d17
+	              (unsigned long) id_auth_val);
776d17
+	if (nc < 0 || nc >= sid_buf_len) {
776d17
+		free (sid_buf);
776d17
+		return NULL;
776d17
+	}
776d17
+
776d17
+	p = 0;
776d17
+	for (c = 0; c < num_auths; c++) {
776d17
+		p += nc;
776d17
+		sid_buf_len -= nc;
776d17
+
776d17
+		nc = snprintf (sid_buf + p, sid_buf_len, "-%lu",
776d17
+		               (unsigned long) sub_auths[c]);
776d17
+		if (nc < 0 || nc >= sid_buf_len) {
776d17
+			free (sid_buf);
776d17
+			return NULL;
776d17
+		}
776d17
+	}
776d17
+
776d17
+	return sid_buf;
776d17
+}
776d17
+
776d17
 char *
776d17
 _adcli_str_dupn (void *data,
776d17
                  size_t len)
776d17
@@ -508,6 +585,41 @@ test_check_nt_time_string_lifetime (void)
776d17
 	assert (_adcli_check_nt_time_string_lifetime ("130645404000000000", 100000));
776d17
 }
776d17
 
776d17
+static void
776d17
+test_bin_sid_to_str (void)
776d17
+{
776d17
+	uint8_t sid1[] = { 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05,
776d17
+	                   0x15, 0x00, 0x00, 0x00, 0xF8, 0x12, 0x13, 0xDC,
776d17
+	                   0x47, 0xF3, 0x1C, 0x76, 0x47, 0x2F, 0x2E, 0xD7,
776d17
+	                   0x51, 0x04, 0x00, 0x00 };
776d17
+
776d17
+	uint8_t sid2[] = { 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05,
776d17
+	                   0x15, 0x00, 0x00, 0x00, 0xF8, 0x12, 0x13, 0xDC,
776d17
+	                   0x47, 0xF3, 0x1C, 0x76, 0x47, 0x2F, 0x2E, 0xD7};
776d17
+
776d17
+	uint8_t sid3[] = { 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05,
776d17
+	                   0x15, 0x00, 0x00, 0x00, 0x29, 0xC9, 0x4F, 0xD9,
776d17
+	                   0xC2, 0x3C, 0xC3, 0x78, 0x36, 0x55, 0x87, 0xF8};
776d17
+
776d17
+
776d17
+	char *str;
776d17
+
776d17
+	str = _adcli_bin_sid_to_str (sid1, sizeof (sid1));
776d17
+	assert (str != NULL);
776d17
+	assert (strcmp (str, "S-1-5-21-3692237560-1981608775-3610128199-1105") == 0);
776d17
+	free (str);
776d17
+
776d17
+	str = _adcli_bin_sid_to_str (sid2, sizeof (sid2));
776d17
+	assert (str != NULL);
776d17
+	assert (strcmp (str, "S-1-5-21-3692237560-1981608775-3610128199") == 0);
776d17
+	free (str);
776d17
+
776d17
+	str = _adcli_bin_sid_to_str (sid3, sizeof (sid2));
776d17
+	assert (str != NULL);
776d17
+	assert (strcmp (str, "S-1-5-21-3645884713-2026060994-4169618742") == 0);
776d17
+	free (str);
776d17
+}
776d17
+
776d17
 int
776d17
 main (int argc,
776d17
       char *argv[])
776d17
@@ -516,6 +628,7 @@ main (int argc,
776d17
 	test_func (test_strv_dup, "/util/strv_dup");
776d17
 	test_func (test_strv_count, "/util/strv_count");
776d17
 	test_func (test_check_nt_time_string_lifetime, "/util/check_nt_time_string_lifetime");
776d17
+	test_func (test_bin_sid_to_str, "/util/bin_sid_to_str");
776d17
 	return test_run (argc, argv);
776d17
 }
776d17
 
776d17
-- 
776d17
2.14.4
776d17