Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 169150
b: refs/heads/master
c: 8753f6b
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Smalley authored and James Morris committed Oct 7, 2009
1 parent 8e541c2 commit 842dff1
Show file tree
Hide file tree
Showing 8 changed files with 136 additions and 966 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c6d3aaa4e35c71a32a86ececacd4eea7ecfc316c
refs/heads/master: 8753f6bec352392b52ed9b5e290afb34379f4612
4 changes: 2 additions & 2 deletions trunk/scripts/selinux/Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
subdir-y := mdp
subdir- += mdp
subdir-y := mdp genheaders
subdir- += mdp genheaders
5 changes: 5 additions & 0 deletions trunk/scripts/selinux/genheaders/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
hostprogs-y := genheaders
HOST_EXTRACFLAGS += -Isecurity/selinux/include

always := $(hostprogs-y)
clean-files := $(hostprogs-y)
118 changes: 118 additions & 0 deletions trunk/scripts/selinux/genheaders/genheaders.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <ctype.h>

struct security_class_mapping {
const char *name;
const char *perms[sizeof(unsigned) * 8 + 1];
};

#include "classmap.h"
#include "initial_sid_to_string.h"

#define max(x, y) ((x > y) ? x : y)

const char *progname;

void usage(void)
{
printf("usage: %s flask.h av_permissions.h\n", progname);
exit(1);
}

char *stoupperx(const char *s)
{
char *s2 = strdup(s);
char *p;

if (!s2) {
fprintf(stderr, "%s: out of memory\n", progname);
exit(3);
}

for (p = s2; *p; p++)
*p = toupper(*p);
return s2;
}

int main(int argc, char *argv[])
{
int i, j, k;
int isids_len;
FILE *fout;

progname = argv[0];

if (argc < 3)
usage();

fout = fopen(argv[1], "w");
if (!fout) {
fprintf(stderr, "Could not open %s for writing: %s\n",
argv[1], strerror(errno));
exit(2);
}

for (i = 0; secclass_map[i].name; i++) {
struct security_class_mapping *map = &secclass_map[i];
map->name = stoupperx(map->name);
for (j = 0; map->perms[j]; j++)
map->perms[j] = stoupperx(map->perms[j]);
}

isids_len = sizeof(initial_sid_to_string) / sizeof (char *);
for (i = 1; i < isids_len; i++)
initial_sid_to_string[i] = stoupperx(initial_sid_to_string[i]);

fprintf(fout, "/* This file is automatically generated. Do not edit. */\n");
fprintf(fout, "#ifndef _SELINUX_FLASK_H_\n#define _SELINUX_FLASK_H_\n\n");

for (i = 0; secclass_map[i].name; i++) {
struct security_class_mapping *map = &secclass_map[i];
fprintf(fout, "#define SECCLASS_%s", map->name);
for (j = 0; j < max(1, 40 - strlen(map->name)); j++)
fprintf(fout, " ");
fprintf(fout, "%2d\n", i+1);
}

fprintf(fout, "\n");

for (i = 1; i < isids_len; i++) {
char *s = initial_sid_to_string[i];
fprintf(fout, "#define SECINITSID_%s", s);
for (j = 0; j < max(1, 40 - strlen(s)); j++)
fprintf(fout, " ");
fprintf(fout, "%2d\n", i);
}
fprintf(fout, "\n#define SECINITSID_NUM %d\n", i-1);
fprintf(fout, "\n#endif\n");
fclose(fout);

fout = fopen(argv[2], "w");
if (!fout) {
fprintf(stderr, "Could not open %s for writing: %s\n",
argv[2], strerror(errno));
exit(4);
}

fprintf(fout, "/* This file is automatically generated. Do not edit. */\n");
fprintf(fout, "#ifndef _SELINUX_AV_PERMISSIONS_H_\n#define _SELINUX_AV_PERMISSIONS_H_\n\n");

for (i = 0; secclass_map[i].name; i++) {
struct security_class_mapping *map = &secclass_map[i];
for (j = 0; map->perms[j]; j++) {
fprintf(fout, "#define %s__%s", map->name,
map->perms[j]);
for (k = 0; k < max(1, 40 - strlen(map->name) - strlen(map->perms[j])); k++)
fprintf(fout, " ");
fprintf(fout, "0x%08xUL\n", (1<<j));
}
}

fprintf(fout, "\n#endif\n");
fclose(fout);
exit(0);
}
10 changes: 9 additions & 1 deletion trunk/security/selinux/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,13 @@ selinux-$(CONFIG_SECURITY_NETWORK_XFRM) += xfrm.o

selinux-$(CONFIG_NETLABEL) += netlabel.o

EXTRA_CFLAGS += -Isecurity/selinux/include
EXTRA_CFLAGS += -Isecurity/selinux -Isecurity/selinux/include

$(obj)/avc.o: $(obj)/flask.h

quiet_cmd_flask = GEN $(obj)/flask.h $(obj)/av_permissions.h
cmd_flask = scripts/selinux/genheaders/genheaders $(obj)/flask.h $(obj)/av_permissions.h

targets += flask.h
$(obj)/flask.h: $(src)/include/classmap.h FORCE
$(call if_changed,flask)
870 changes: 0 additions & 870 deletions trunk/security/selinux/include/av_permissions.h

This file was deleted.

91 changes: 0 additions & 91 deletions trunk/security/selinux/include/flask.h

This file was deleted.

2 changes: 1 addition & 1 deletion trunk/security/selinux/ss/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Makefile for building the SELinux security server as part of the kernel tree.
#

EXTRA_CFLAGS += -Isecurity/selinux/include
EXTRA_CFLAGS += -Isecurity/selinux -Isecurity/selinux/include
obj-y := ss.o

ss-y := ebitmap.o hashtab.o symtab.o sidtab.o avtab.o policydb.o services.o conditional.o mls.o
Expand Down

0 comments on commit 842dff1

Please sign in to comment.