Todo: ntfsclone.
[libguestfs.git] / daemon / selinux.c
1 /* libguestfs - the guestfsd daemon
2  * Copyright (C) 2009 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24
25 #ifdef HAVE_SELINUX_SELINUX_H
26 #include <selinux/selinux.h>
27 #endif
28
29 #include "../src/guestfs_protocol.h"
30 #include "daemon.h"
31 #include "actions.h"
32
33 /* setcon is only valid under the following circumstances:
34  * - single threaded
35  * - enforcing=0
36  */
37 int
38 do_setcon (const char *context)
39 {
40 #if defined(HAVE_LIBSELINUX) && defined(HAVE_SETCON)
41   if (setcon ((char *) context) == -1) {
42     reply_with_perror ("setcon");
43     return -1;
44   }
45
46   return 0;
47 #else
48   reply_with_error ("%s is not available", __func__);
49   return -1;
50 #endif
51 }
52
53 char *
54 do_getcon (void)
55 {
56 #if defined(HAVE_LIBSELINUX) && defined(HAVE_GETCON)
57   security_context_t context;
58   char *r;
59
60   if (getcon (&context) == -1) {
61     reply_with_perror ("getcon");
62     return NULL;
63   }
64
65   r = strdup (context);
66   freecon (context);
67   if (r == NULL) {
68     reply_with_perror ("strdup");
69     return NULL;
70   }
71
72   return r;                     /* caller frees */
73 #else
74   reply_with_error ("%s is not available", __func__);
75   return NULL;
76 #endif
77 }