Implement RString and RStringList return types.
[libguestfs.git] / daemon / ls.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 #include <fcntl.h>
26 #include <sys/stat.h>
27
28 #include "daemon.h"
29 #include "actions.h"
30
31 char **
32 do_ls (const char *path)
33 {
34   reply_with_error ("ls command is not yet implemented");
35   return NULL;
36 }
37
38 char *
39 do_ll (const char *path)
40 {
41   int r, len;
42   char *out, *err;
43   char *spath;
44
45   if (path[0] != '/') {
46     reply_with_error ("ll: path must start with a / character");
47     return NULL;
48   }
49
50   /* This exposes the /sysroot, because we can't chroot and run the ls
51    * command (since 'ls' won't necessarily exist in the chroot).  This
52    * command is not meant for serious use anyway, just for quick
53    * interactive sessions.  For the same reason, you can also "escape"
54    * the sysroot (eg. 'll /..').
55    */
56   len = strlen (path) + 9;
57   spath = malloc (len);
58   if (!spath) {
59     reply_with_perror ("malloc");
60     return NULL;
61   }
62   snprintf (spath, len, "/sysroot%s", path);
63
64   r = command (&out, &err, "ls", "-la", spath, NULL);
65   free (spath);
66   if (r == -1) {
67     reply_with_error ("%s", err);
68     free (out);
69     free (err);
70     return NULL;
71   }
72
73   free (err);
74   return out;                   /* caller frees */
75 }