update all NEED_ROOT uses
[libguestfs.git] / daemon / headtail.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 #include <unistd.h>
25
26 #include "../src/guestfs_protocol.h"
27 #include "daemon.h"
28 #include "actions.h"
29
30 static char **
31 headtail (const char *prog, const char *flag, const char *n, char *path)
32 {
33   char *buf;
34   char *out, *err;
35   int r;
36   char **lines;
37
38   NEED_ROOT (return NULL);
39   ABS_PATH (path, return NULL);
40
41   /* Make the path relative to /sysroot. */
42   buf = sysroot_path (path);
43   if (!buf) {
44     reply_with_perror ("malloc");
45     return NULL;
46   }
47
48   r = command (&out, &err, prog, flag, n, buf, NULL);
49   free (buf);
50   if (r == -1) {
51     reply_with_error ("%s %s %s: %s", prog, flag, n, err);
52     free (out);
53     free (err);
54     return NULL;
55   }
56
57   free (err);
58
59 #if 0
60   /* Split it at the first whitespace. */
61   len = strcspn (out, " \t\n");
62   out[len] = '\0';
63 #endif
64
65   lines = split_lines (out);
66   free (out);
67   if (lines == NULL) return NULL;
68
69   return lines;
70 }
71
72 char **
73 do_head (char *path)
74 {
75   return headtail ("head", "-n", "10", path);
76 }
77
78 char **
79 do_tail (char *path)
80 {
81   return headtail ("tail", "-n", "10", path);
82 }
83
84 char **
85 do_head_n (int n, char *path)
86 {
87   char nbuf[16];
88
89   snprintf (nbuf, sizeof nbuf, "%d", n);
90
91   return headtail ("head", "-n", nbuf, path);
92 }
93
94 char **
95 do_tail_n (int n, char *path)
96 {
97   char nbuf[16];
98
99   if (n >= 0)
100     snprintf (nbuf, sizeof nbuf, "%d", n);
101   else
102     snprintf (nbuf, sizeof nbuf, "+%d", -n);
103
104   return headtail ("tail", "-n", nbuf, path);
105 }