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;
45 reply_with_perror ("opendir: %s", path);
49 while ((d = readdir (dir)) != NULL) {
50 if (STREQ (d->d_name, ".") || STREQ (d->d_name, ".."))
53 if (add_string (&r, &size, &alloc, d->d_name) == -1) {
59 if (add_string (&r, &size, &alloc, NULL) == -1) {
64 if (closedir (dir) == -1) {
65 reply_with_perror ("closedir: %s", path);
70 sort_strings (r, size-1);
74 /* Because we can't chroot and run the ls command (since 'ls' won't
75 * necessarily exist in the chroot), this command can be used to escape
76 * from the sysroot (eg. 'll /..'). This command is not meant for
77 * serious use anyway, just for quick interactive sessions.
81 do_ll (const char *path)
87 spath = sysroot_path (path);
89 reply_with_perror ("malloc");
93 r = command (&out, &err, "ls", "-la", spath, NULL);
96 reply_with_error ("%s", err);
103 return out; /* caller frees */