2017-12-13 16:30:39 +00:00
|
|
|
/*- mdXhl.c
|
|
|
|
* SPDX-License-Identifier: Beerware
|
|
|
|
*
|
2016-01-14 21:08:23 +00:00
|
|
|
* ----------------------------------------------------------------------------
|
1994-07-24 03:29:56 +00:00
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
2002-03-25 13:52:45 +00:00
|
|
|
* <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
|
1994-07-24 03:29:56 +00:00
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2001-09-30 21:56:22 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1995-02-24 08:51:34 +00:00
|
|
|
#include <sys/types.h>
|
2001-03-17 10:00:50 +00:00
|
|
|
#include <sys/stat.h>
|
1996-10-25 06:48:29 +00:00
|
|
|
#include <fcntl.h>
|
1995-02-24 08:51:34 +00:00
|
|
|
#include <unistd.h>
|
1994-07-24 03:29:56 +00:00
|
|
|
|
1996-10-25 06:48:29 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "mdX.h"
|
|
|
|
|
1994-07-24 03:29:56 +00:00
|
|
|
char *
|
1995-07-12 09:13:49 +00:00
|
|
|
MDXEnd(MDX_CTX *ctx, char *buf)
|
1994-07-24 03:29:56 +00:00
|
|
|
{
|
2002-09-08 15:10:04 +00:00
|
|
|
int i;
|
|
|
|
unsigned char digest[LENGTH];
|
|
|
|
static const char hex[]="0123456789abcdef";
|
1995-05-30 05:51:47 +00:00
|
|
|
|
2002-09-08 15:10:04 +00:00
|
|
|
if (!buf)
|
|
|
|
buf = malloc(2*LENGTH + 1);
|
|
|
|
if (!buf)
|
|
|
|
return 0;
|
|
|
|
MDXFinal(digest, ctx);
|
|
|
|
for (i = 0; i < LENGTH; i++) {
|
|
|
|
buf[i+i] = hex[digest[i] >> 4];
|
|
|
|
buf[i+i+1] = hex[digest[i] & 0x0f];
|
|
|
|
}
|
|
|
|
buf[i+i] = '\0';
|
|
|
|
return buf;
|
1994-07-24 03:29:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2016-10-17 13:47:22 +00:00
|
|
|
MDXFd(int fd, char *buf)
|
2001-03-17 10:00:50 +00:00
|
|
|
{
|
2016-10-17 13:47:22 +00:00
|
|
|
return MDXFdChunk(fd, buf, 0, 0);
|
2001-03-17 10:00:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2016-10-17 13:47:22 +00:00
|
|
|
MDXFdChunk(int fd, char *buf, off_t ofs, off_t len)
|
1994-07-24 03:29:56 +00:00
|
|
|
{
|
2015-07-09 16:13:05 +00:00
|
|
|
unsigned char buffer[16*1024];
|
2002-09-08 15:10:04 +00:00
|
|
|
MDX_CTX ctx;
|
2018-05-23 17:01:28 +00:00
|
|
|
struct stat stbuf;
|
|
|
|
int readrv, e;
|
2016-01-14 21:08:23 +00:00
|
|
|
off_t remain;
|
1994-07-24 03:29:56 +00:00
|
|
|
|
2016-01-14 21:08:23 +00:00
|
|
|
if (len < 0) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return NULL;
|
2015-12-30 18:04:50 +00:00
|
|
|
}
|
2016-01-14 21:08:23 +00:00
|
|
|
|
|
|
|
MDXInit(&ctx);
|
|
|
|
if (ofs != 0) {
|
|
|
|
errno = 0;
|
|
|
|
if (lseek(fd, ofs, SEEK_SET) != ofs ||
|
|
|
|
(ofs == -1 && errno != 0)) {
|
|
|
|
readrv = -1;
|
|
|
|
goto error;
|
|
|
|
}
|
2015-12-30 18:04:50 +00:00
|
|
|
}
|
2016-01-14 21:08:23 +00:00
|
|
|
remain = len;
|
|
|
|
readrv = 0;
|
|
|
|
while (len == 0 || remain > 0) {
|
|
|
|
if (len == 0 || remain > sizeof(buffer))
|
|
|
|
readrv = read(fd, buffer, sizeof(buffer));
|
2002-09-08 15:10:04 +00:00
|
|
|
else
|
2016-01-14 21:08:23 +00:00
|
|
|
readrv = read(fd, buffer, remain);
|
2018-04-17 17:23:47 +00:00
|
|
|
if (readrv <= 0)
|
2002-09-08 15:10:04 +00:00
|
|
|
break;
|
2016-01-14 21:08:23 +00:00
|
|
|
MDXUpdate(&ctx, buffer, readrv);
|
|
|
|
remain -= readrv;
|
2018-04-17 17:23:47 +00:00
|
|
|
}
|
2015-12-30 18:04:50 +00:00
|
|
|
error:
|
2016-01-14 21:08:23 +00:00
|
|
|
if (readrv < 0)
|
|
|
|
return NULL;
|
2002-09-08 15:10:04 +00:00
|
|
|
return (MDXEnd(&ctx, buf));
|
1994-07-24 03:29:56 +00:00
|
|
|
}
|
|
|
|
|
2016-10-17 13:47:22 +00:00
|
|
|
char *
|
|
|
|
MDXFile(const char *filename, char *buf)
|
|
|
|
{
|
|
|
|
return (MDXFileChunk(filename, buf, 0, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
MDXFileChunk(const char *filename, char *buf, off_t ofs, off_t len)
|
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
int e, fd;
|
|
|
|
|
|
|
|
fd = open(filename, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return NULL;
|
|
|
|
ret = MDXFdChunk(fd, buf, ofs, len);
|
|
|
|
e = errno;
|
|
|
|
close (fd);
|
|
|
|
errno = e;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1994-07-24 03:29:56 +00:00
|
|
|
char *
|
2006-01-17 15:35:57 +00:00
|
|
|
MDXData (const void *data, unsigned int len, char *buf)
|
1994-07-24 03:29:56 +00:00
|
|
|
{
|
2002-09-08 15:10:04 +00:00
|
|
|
MDX_CTX ctx;
|
1994-07-24 03:29:56 +00:00
|
|
|
|
2002-09-08 15:10:04 +00:00
|
|
|
MDXInit(&ctx);
|
|
|
|
MDXUpdate(&ctx,data,len);
|
|
|
|
return (MDXEnd(&ctx, buf));
|
1994-07-24 03:29:56 +00:00
|
|
|
}
|
2015-05-10 13:21:36 +00:00
|
|
|
|
2015-05-11 16:45:33 +00:00
|
|
|
#ifdef WEAK_REFS
|
|
|
|
/* When building libmd, provide weak references. Note: this is not
|
|
|
|
activated in the context of compiling these sources for internal
|
|
|
|
use in libcrypt.
|
|
|
|
*/
|
2015-05-10 13:21:36 +00:00
|
|
|
#undef MDXEnd
|
|
|
|
__weak_reference(_libmd_MDXEnd, MDXEnd);
|
|
|
|
#undef MDXFile
|
|
|
|
__weak_reference(_libmd_MDXFile, MDXFile);
|
|
|
|
#undef MDXFileChunk
|
|
|
|
__weak_reference(_libmd_MDXFileChunk, MDXFileChunk);
|
|
|
|
#undef MDXData
|
|
|
|
__weak_reference(_libmd_MDXData, MDXData);
|
2015-05-11 16:45:33 +00:00
|
|
|
#endif
|