1 /* libguestfs - the guestfsd daemon
2 * Copyright (C) 2009 Red Hat Inc.
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.
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.
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.
33 do_ls (const char *path)
36 int size = 0, alloc = 0;
41 ABS_PATH (path, NULL);
48 reply_with_perror ("opendir: %s", path);
52 while ((d = readdir (dir)) != NULL) {
53 if (strcmp (d->d_name, ".") == 0 || strcmp (d->d_name, "..") == 0)
56 if (add_string (&r, &size, &alloc, d->d_name) == -1) {
62 if (add_string (&r, &size, &alloc, NULL) == -1) {
67 if (closedir (dir) == -1) {
68 reply_with_perror ("closedir: %s", path);
73 sort_strings (r, size-1);
78 do_ll (const char *path)
85 ABS_PATH (path, NULL);
87 /* This exposes the /sysroot, because we can't chroot and run the ls
88 * command (since 'ls' won't necessarily exist in the chroot). This
89 * command is not meant for serious use anyway, just for quick
90 * interactive sessions. For the same reason, you can also "escape"
91 * the sysroot (eg. 'll /..').
93 len = strlen (path) + 9;
96 reply_with_perror ("malloc");
99 snprintf (spath, len, "/sysroot%s", path);
101 r = command (&out, &err, "ls", "-la", spath, NULL);
104 reply_with_error ("%s", err);
111 return out; /* caller frees */