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.
26 #include "../src/guestfs_protocol.h"
31 do_checksum (const char *csumtype, const char *path)
39 if (STRCASEEQ (csumtype, "crc"))
41 else if (STRCASEEQ (csumtype, "md5"))
43 else if (STRCASEEQ (csumtype, "sha1"))
45 else if (STRCASEEQ (csumtype, "sha224"))
46 program = "sha224sum";
47 else if (STRCASEEQ (csumtype, "sha256"))
48 program = "sha256sum";
49 else if (STRCASEEQ (csumtype, "sha384"))
50 program = "sha384sum";
51 else if (STRCASEEQ (csumtype, "sha512"))
52 program = "sha512sum";
54 reply_with_error ("unknown checksum type, expecting crc|md5|sha1|sha224|sha256|sha384|sha512");
58 /* Make the path relative to /sysroot. */
59 buf = sysroot_path (path);
61 reply_with_perror ("malloc");
65 r = command (&out, &err, program, buf, NULL);
68 reply_with_error ("%s: %s", program, err);
76 /* Split it at the first whitespace. */
77 len = strcspn (out, " \t\n");
80 return out; /* Caller frees. */