1 // SPDX-License-Identifier: GPL-2.0
3 /* NOTE: we really do want to use the kernel headers here */
4 #define __EXPORTED_HEADERS__
12 #include <sys/socket.h>
14 struct security_class_mapping
{
16 const char *perms
[sizeof(unsigned) * 8 + 1];
20 #include "initial_sid_to_string.h"
22 #define max(x, y) (((int)(x) > (int)(y)) ? x : y)
26 static void usage(void)
28 printf("usage: %s flask.h av_permissions.h\n", progname
);
32 static char *stoupperx(const char *s
)
38 fprintf(stderr
, "%s: out of memory\n", progname
);
47 int main(int argc
, char *argv
[])
52 const char *needle
= "SOCKET";
60 fout
= fopen(argv
[1], "w");
62 fprintf(stderr
, "Could not open %s for writing: %s\n",
63 argv
[1], strerror(errno
));
67 for (i
= 0; secclass_map
[i
].name
; i
++) {
68 struct security_class_mapping
*map
= &secclass_map
[i
];
69 map
->name
= stoupperx(map
->name
);
70 for (j
= 0; map
->perms
[j
]; j
++)
71 map
->perms
[j
] = stoupperx(map
->perms
[j
]);
74 isids_len
= sizeof(initial_sid_to_string
) / sizeof (char *);
75 for (i
= 1; i
< isids_len
; i
++)
76 initial_sid_to_string
[i
] = stoupperx(initial_sid_to_string
[i
]);
78 fprintf(fout
, "/* This file is automatically generated. Do not edit. */\n");
79 fprintf(fout
, "#ifndef _SELINUX_FLASK_H_\n#define _SELINUX_FLASK_H_\n\n");
81 for (i
= 0; secclass_map
[i
].name
; i
++) {
82 struct security_class_mapping
*map
= &secclass_map
[i
];
83 fprintf(fout
, "#define SECCLASS_%s", map
->name
);
84 for (j
= 0; j
< max(1, 40 - strlen(map
->name
)); j
++)
86 fprintf(fout
, "%2d\n", i
+1);
91 for (i
= 1; i
< isids_len
; i
++) {
92 const char *s
= initial_sid_to_string
[i
];
93 fprintf(fout
, "#define SECINITSID_%s", s
);
94 for (j
= 0; j
< max(1, 40 - strlen(s
)); j
++)
96 fprintf(fout
, "%2d\n", i
);
98 fprintf(fout
, "\n#define SECINITSID_NUM %d\n", i
-1);
99 fprintf(fout
, "\nstatic inline bool security_is_socket_class(u16 kern_tclass)\n");
100 fprintf(fout
, "{\n");
101 fprintf(fout
, "\tbool sock = false;\n\n");
102 fprintf(fout
, "\tswitch (kern_tclass) {\n");
103 for (i
= 0; secclass_map
[i
].name
; i
++) {
104 struct security_class_mapping
*map
= &secclass_map
[i
];
105 substr
= strstr(map
->name
, needle
);
106 if (substr
&& strcmp(substr
, needle
) == 0)
107 fprintf(fout
, "\tcase SECCLASS_%s:\n", map
->name
);
109 fprintf(fout
, "\t\tsock = true;\n");
110 fprintf(fout
, "\t\tbreak;\n");
111 fprintf(fout
, "\tdefault:\n");
112 fprintf(fout
, "\t\tbreak;\n");
113 fprintf(fout
, "\t}\n\n");
114 fprintf(fout
, "\treturn sock;\n");
115 fprintf(fout
, "}\n");
117 fprintf(fout
, "\n#endif\n");
120 fout
= fopen(argv
[2], "w");
122 fprintf(stderr
, "Could not open %s for writing: %s\n",
123 argv
[2], strerror(errno
));
127 fprintf(fout
, "/* This file is automatically generated. Do not edit. */\n");
128 fprintf(fout
, "#ifndef _SELINUX_AV_PERMISSIONS_H_\n#define _SELINUX_AV_PERMISSIONS_H_\n\n");
130 for (i
= 0; secclass_map
[i
].name
; i
++) {
131 struct security_class_mapping
*map
= &secclass_map
[i
];
132 for (j
= 0; map
->perms
[j
]; j
++) {
134 fprintf(stderr
, "Too many permissions to fit into an access vector at (%s, %s).\n",
135 map
->name
, map
->perms
[j
]);
138 fprintf(fout
, "#define %s__%s", map
->name
,
140 for (k
= 0; k
< max(1, 40 - strlen(map
->name
) - strlen(map
->perms
[j
])); k
++)
142 fprintf(fout
, "0x%08xU\n", (1<<j
));
146 fprintf(fout
, "\n#endif\n");