From: jbrindle@tresys.com
To: selinux@tycho.nsa.gov
Subject: [PATCH 03/33] libsepol: context serialization
Date: Mon, 23 Apr 2007 17:34:58 -0400 [thread overview]
Message-ID: <20070423213723.109922000@tresys.com> (raw)
In-Reply-To: 20070423213455.741326000@tresys.com
This adds serialize/unserialize methods for context records.
---
libsepol/include/sepol/context_record.h | 10 +++
libsepol/src/context_internal.h | 2
libsepol/src/context_record.c | 84 ++++++++++++++++++++++++++++++++
3 files changed, 96 insertions(+)
Index: selinux-pms-support/libsepol/include/sepol/context_record.h
===================================================================
--- selinux-pms-support.orig/libsepol/include/sepol/context_record.h
+++ selinux-pms-support/libsepol/include/sepol/context_record.h
@@ -1,6 +1,7 @@
#ifndef _SEPOL_CONTEXT_RECORD_H_
#define _SEPOL_CONTEXT_RECORD_H_
+#include <inttypes.h>
#include <sepol/handle.h>
struct sepol_context;
@@ -43,6 +44,15 @@ extern int sepol_context_clone(sepol_han
extern void sepol_context_free(sepol_context_t * con);
+/* Serialize/Unserialize */
+extern int sepol_context_serialize(sepol_handle_t * handle,
+ const sepol_context_t * context,
+ char **data, uint64_t * size);
+
+extern int sepol_context_unserialize(sepol_handle_t * handle,
+ char **data, uint64_t * size,
+ sepol_context_t ** context);
+
/* Parse to/from string */
extern int sepol_context_from_string(sepol_handle_t * handle,
const char *str, sepol_context_t ** con);
Index: selinux-pms-support/libsepol/src/context_internal.h
===================================================================
--- selinux-pms-support.orig/libsepol/src/context_internal.h
+++ selinux-pms-support/libsepol/src/context_internal.h
@@ -16,4 +16,6 @@ hidden_proto(sepol_context_clone)
hidden_proto(sepol_context_set_role)
hidden_proto(sepol_context_set_type)
hidden_proto(sepol_context_set_user)
+ hidden_proto(sepol_context_serialize)
+ hidden_proto(sepol_context_unserialize)
#endif
Index: selinux-pms-support/libsepol/src/context_record.c
===================================================================
--- selinux-pms-support.orig/libsepol/src/context_record.c
+++ selinux-pms-support/libsepol/src/context_record.c
@@ -1,9 +1,11 @@
+#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "context_internal.h"
#include "debug.h"
+#include "serialize.h"
struct sepol_context {
@@ -198,6 +200,88 @@ void sepol_context_free(sepol_context_t
hidden_def(sepol_context_free)
+/* Serialize/Unserialize */
+/** Destructively modifies data and size.
+ * Caller must pre-allocate space for data.
+ * Use sepol_context_calculate_serialized_size(). */
+int sepol_context_serialize(sepol_handle_t * handle,
+ const sepol_context_t * context,
+ char **data, uint64_t * size)
+{
+ int status = STATUS_SUCCESS;
+ char *context_string = NULL;
+
+ /* Sundry sanity checks. */
+ if (handle == NULL || context == NULL) {
+ status = STATUS_ERR;
+ goto cleanup;
+ }
+
+ /* Context. */
+ status = sepol_context_to_string(handle, context, &context_string);
+ if (status != STATUS_SUCCESS)
+ goto cleanup;
+
+ status =
+ sepol_serialize(handle, context_string,
+ (context_string ==
+ NULL) ? 0 : strlen(context_string), SEPOL_SERIAL_STRING,
+ data, size);
+ if (status != STATUS_SUCCESS)
+ goto cleanup;
+
+ /* Cleanup. */
+ cleanup:
+ free(context_string);
+ return status;
+}
+
+hidden_def(sepol_context_serialize)
+
+/** Destructively modifies context, data and size.
+ * Allocates space for context.
+ * Caller must free. */
+int sepol_context_unserialize(sepol_handle_t * handle,
+ char **data, uint64_t * size,
+ sepol_context_t ** context)
+{
+ int status = STATUS_SUCCESS;
+ char *context_string = NULL;
+ size_t *context_string_size = NULL;
+
+ /* Sundry sanity checks. */
+ if (handle == NULL || data == NULL || *data == NULL || size == NULL) {
+ status = STATUS_ERR;
+ goto cleanup;
+ }
+
+ /* Context. */
+ status =
+ sepol_unserialize(handle,
+ data, size,
+ (void **)&context_string, &context_string_size, SEPOL_SERIAL_STRING);
+ if (status != STATUS_SUCCESS)
+ goto cleanup;
+ if (context_string != NULL) {
+ status =
+ sepol_context_from_string(handle, context_string, context);
+ if (status != STATUS_SUCCESS)
+ goto cleanup;
+ } else {
+ status = sepol_context_create(handle, context);
+ if (status != STATUS_SUCCESS)
+ goto cleanup;
+ }
+
+ /* Cleanup. */
+ cleanup:
+ free(context_string);
+ free(context_string_size);
+ return status;
+}
+
+hidden_def(sepol_context_unserialize)
+
int sepol_context_from_string(sepol_handle_t * handle,
const char *str, sepol_context_t ** con)
{
--
--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.
next prev parent reply other threads:[~2007-04-24 18:30 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-23 21:34 [PATCH 00/33] libsemanage/libsepol object serialization and ps-api jbrindle
2007-04-23 21:34 ` [PATCH 01/33] libsepol: basic serilization support jbrindle
2007-04-24 20:00 ` Karl MacMillan
2007-04-24 22:29 ` Joshua Brindle
2007-04-25 4:49 ` Karl MacMillan
2007-04-25 14:14 ` Joshua Brindle
2007-04-25 15:16 ` Karl MacMillan
2007-04-25 15:21 ` Joshua Brindle
2007-04-25 15:40 ` Karl MacMillan
2007-04-25 15:52 ` Joshua Brindle
2007-04-25 16:00 ` Karl MacMillan
2007-04-25 16:25 ` Joshua Brindle
2007-04-25 17:11 ` James Antill
2007-04-25 18:08 ` Karl MacMillan
2007-04-23 21:34 ` [PATCH 02/33] libsepol: boolean serialization jbrindle
2007-04-25 4:56 ` Karl MacMillan
2007-04-23 21:34 ` jbrindle [this message]
2007-04-23 21:34 ` [PATCH 04/33] libsepol: interface serialization jbrindle
2007-04-23 21:35 ` [PATCH 05/33] libsepol: node serialization jbrindle
2007-04-23 21:35 ` [PATCH 06/33] libsepol: port serialization jbrindle
2007-04-23 21:35 ` [PATCH 07/33] libsepol: user serialization jbrindle
2007-04-23 21:35 ` [PATCH 08/33] libsemanage: DESTDIR support in INCLUDE and safe test target jbrindle
2007-04-23 21:35 ` [PATCH 09/33] libsemanage: dbase/dconfig cleanup jbrindle
2007-04-23 21:35 ` [PATCH 10/33] libsemanage: database serialization jbrindle
2007-04-23 21:35 ` [PATCH 11/33] libsemanage: endianness macros jbrindle
2007-04-23 21:35 ` [PATCH 12/33] libsemanage: basic serialization jbrindle
2007-04-24 21:16 ` Karl MacMillan
2007-04-24 22:31 ` Joshua Brindle
2007-04-24 22:39 ` Karl MacMillan
2007-04-23 21:35 ` [PATCH 13/33] libsemanage: testing infrastructure jbrindle
2007-04-23 21:35 ` [PATCH 14/33] libsemanage: boolean serialization jbrindle
2007-04-23 21:35 ` [PATCH 15/33] libsemanage: context serialization jbrindle
2007-04-23 21:35 ` [PATCH 16/33] libsemanage: fcontext serialization jbrindle
2007-04-23 21:35 ` [PATCH 17/33] libsemanage: interface serialization jbrindle
2007-04-23 21:35 ` [PATCH 18/33] libsemanage: node serialization jbrindle
2007-04-23 21:35 ` [PATCH 19/33] libsemanage: port serialization jbrindle
2007-04-23 21:35 ` [PATCH 20/33] libsemanage: seuser serialization jbrindle
2007-04-23 21:35 ` [PATCH 21/33] libsemanage: user serialization jbrindle
2007-04-23 21:35 ` [PATCH 22/33] libsemanage: module serialization jbrindle
2007-04-23 21:35 ` [PATCH 23/33] libsemanage: commit number serialization jbrindle
2007-04-23 21:35 ` [PATCH 24/33] libsemanage: networking support jbrindle
2007-04-23 21:35 ` [PATCH 25/33] libsemanage: policy server database hooks jbrindle
2007-04-24 21:39 ` Karl MacMillan
2007-04-24 22:39 ` Joshua Brindle
2007-04-24 23:20 ` Karl MacMillan
2007-04-24 23:57 ` Joshua Brindle
2007-04-25 4:42 ` Karl MacMillan
2007-04-23 21:35 ` [PATCH 26/33] libsemanage: module serialization tests jbrindle
2007-04-23 21:35 ` [PATCH 27/33] libsemanage: booleans " jbrindle
2007-04-23 21:35 ` [PATCH 28/33] libsemanage: fcontexts " jbrindle
2007-04-23 21:35 ` [PATCH 29/33] libsemanage: interface " jbrindle
2007-04-23 21:35 ` [PATCH 30/33] libsemanage: node " jbrindle
2007-04-23 21:35 ` [PATCH 31/33] libsemanage: port " jbrindle
2007-04-23 21:35 ` [PATCH 32/33] libsemanage: seuser " jbrindle
2007-04-23 21:35 ` [PATCH 33/33] libsemanage: user " jbrindle
2007-04-24 19:48 ` [PATCH 00/33] libsemanage/libsepol object serialization and ps-api Joshua Brindle
2007-04-24 23:12 ` James Antill
2007-04-25 4:46 ` James Antill
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070423213723.109922000@tresys.com \
--to=jbrindle@tresys.com \
--cc=selinux@tycho.nsa.gov \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.