linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / security / selinux / ss / mls.c
index 7bc5b64..84047f6 100644 (file)
@@ -8,7 +8,7 @@
  *
  *     Support for enhanced MLS infrastructure.
  *
- * Copyright (C) 2004-2006 Trusted Computer Solutions, Inc.
+ * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc.
  */
 
 #include <linux/kernel.h>
@@ -384,34 +384,6 @@ out:
        return rc;
 }
 
-/*
- * Set the MLS fields in the security context structure
- * `context' based on the string representation in
- * the string `str'.  This function will allocate temporary memory with the
- * given constraints of gfp_mask.
- */
-int mls_from_string(char *str, struct context *context, gfp_t gfp_mask)
-{
-       char *tmpstr, *freestr;
-       int rc;
-
-       if (!selinux_mls_enabled)
-               return -EINVAL;
-
-       /* we need freestr because mls_context_to_sid will change
-          the value of tmpstr */
-       tmpstr = freestr = kstrdup(str, gfp_mask);
-       if (!tmpstr) {
-               rc = -ENOMEM;
-       } else {
-               rc = mls_context_to_sid(':', &tmpstr, context,
-                                       NULL, SECSID_NULL);
-               kfree(freestr);
-       }
-
-       return rc;
-}
-
 /*
  * Copies the effective MLS range from `src' into `dst'.
  */