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