Use AC_GNU_SOURCE in daemon. Don't need _GNU_SOURCE in C files any more.
[libguestfs.git] / daemon / tune2fs.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 <unistd.h>
24 #include <ctype.h>
25
26 #include "../src/guestfs_protocol.h"
27 #include "daemon.h"
28 #include "actions.h"
29
30 char **
31 do_tune2fs_l (const char *device)
32 {
33   int r;
34   char *out, *err;
35   char *p, *pend, *colon;
36   char **ret = NULL;
37   int size = 0, alloc = 0;
38
39   IS_DEVICE (device, NULL);
40
41   r = command (&out, &err, "/sbin/tune2fs", "-l", device, NULL);
42   if (r == -1) {
43     reply_with_error ("tune2fs: %s", err);
44     free (err);
45     free (out);
46     return NULL;
47   }
48   free (err);
49
50   p = out;
51
52   /* Discard the first line if it contains "tune2fs ...". */
53   if (strncmp (p, "tune2fs ", 8) == 0) {
54     p = strchr (p, '\n');
55     if (p) p++;
56     else {
57       reply_with_error ("tune2fs: truncated output");
58       free (out);
59       return NULL;
60     }
61   }
62
63   /* Read the lines and split into "key: value". */
64   while (*p) {
65     pend = strchrnul (p, '\n');
66     if (*pend == '\n') {
67       *pend = '\0';
68       pend++;
69     }
70
71     if (!*p) continue;
72
73     colon = strchr (p, ':');
74     if (colon) {
75       *colon = '\0';
76
77       do { colon++; } while (*colon && isspace (*colon));
78
79       if (add_string (&ret, &size, &alloc, p) == -1) {
80         free (out);
81         return NULL;
82       }
83       if (strcmp (colon, "<none>") == 0 ||
84           strcmp (colon, "<not available>") == 0 ||
85           strcmp (colon, "(none)") == 0) {
86         if (add_string (&ret, &size, &alloc, "") == -1) {
87           free (out);
88           return NULL;
89         }
90       } else {
91         if (add_string (&ret, &size, &alloc, colon) == -1) {
92           free (out);
93           return NULL;
94         }
95       }
96     }
97     else {
98       if (add_string (&ret, &size, &alloc, p) == -1) {
99         free (out);
100         return NULL;
101       }
102       if (add_string (&ret, &size, &alloc, "") == -1) {
103         free (out);
104         return NULL;
105       }
106     }
107
108     p = pend;
109   }
110
111   free (out);
112
113   if (add_string (&ret, &size, &alloc, NULL) == -1)
114     return NULL;
115
116   return ret;
117 }