New API: checksum-device for checksumming devices.
[libguestfs.git] / daemon / checksum.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 checksum (const char *csumtype, const char *path)
32 {
33   const char *program;
34   char *out, *err;
35   int r;
36   int len;
37
38   if (STRCASEEQ (csumtype, "crc"))
39     program = "cksum";
40   else if (STRCASEEQ (csumtype, "md5"))
41     program = "md5sum";
42   else if (STRCASEEQ (csumtype, "sha1"))
43     program = "sha1sum";
44   else if (STRCASEEQ (csumtype, "sha224"))
45     program = "sha224sum";
46   else if (STRCASEEQ (csumtype, "sha256"))
47     program = "sha256sum";
48   else if (STRCASEEQ (csumtype, "sha384"))
49     program = "sha384sum";
50   else if (STRCASEEQ (csumtype, "sha512"))
51     program = "sha512sum";
52   else {
53     reply_with_error ("unknown checksum type, expecting crc|md5|sha1|sha224|sha256|sha384|sha512");
54     return NULL;
55   }
56
57   r = command (&out, &err, program, path, NULL);
58   if (r == -1) {
59     reply_with_error ("%s: %s", program, err);
60     free (out);
61     free (err);
62     return NULL;
63   }
64
65   free (err);
66
67   /* Split it at the first whitespace. */
68   len = strcspn (out, " \t\n");
69   out[len] = '\0';
70
71   return out;                   /* Caller frees. */
72 }
73
74 char *
75 do_checksum (const char *csumtype, const char *path)
76 {
77   /* Make the path relative to /sysroot. */
78   char *buf = sysroot_path (path);
79   if (!buf) {
80     reply_with_perror ("malloc");
81     return NULL;
82   }
83
84   char *r = checksum (csumtype, buf);
85   free (buf);
86   return r;
87 }
88
89 char *
90 do_checksum_device (const char *csumtype, const char *device)
91 {
92   return checksum (csumtype, device);
93 }