mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 09:08:04 -05:00
windows read password from file
This commit is contained in:
parent
3a84987107
commit
247a82232c
@ -4715,26 +4715,30 @@ static char *map_file(const char *infile, const off_t size)
|
|||||||
{
|
{
|
||||||
char *indata = NULL;
|
char *indata = NULL;
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
HANDLE fh, fm;
|
HANDLE fhandle, fmap;
|
||||||
(void)size;
|
(void)size;
|
||||||
fh = CreateFile(infile, GENERIC_READ, FILE_SHARE_READ , NULL, OPEN_EXISTING, 0, NULL);
|
fhandle = CreateFile(infile, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
||||||
if (fh == INVALID_HANDLE_VALUE)
|
if (fhandle == INVALID_HANDLE_VALUE) {
|
||||||
return NULL;
|
return NULL;
|
||||||
fm = CreateFileMapping(fh, NULL, PAGE_READONLY, 0, 0, NULL);
|
}
|
||||||
if (fm == NULL)
|
fmap = CreateFileMapping(fhandle, NULL, PAGE_READONLY, 0, 0, NULL);
|
||||||
|
if (fmap == NULL) {
|
||||||
return NULL;
|
return NULL;
|
||||||
indata = MapViewOfFile(fm, FILE_MAP_READ, 0, 0, 0);
|
}
|
||||||
|
indata = (char *)MapViewOfFile(fmap, FILE_MAP_READ, 0, 0, 0);
|
||||||
#else
|
#else
|
||||||
int fd = open(infile, O_RDONLY);
|
int fd = open(infile, O_RDONLY);
|
||||||
if (fd < 0)
|
if (fd < 0) {
|
||||||
return NULL;
|
return NULL;
|
||||||
|
}
|
||||||
#ifdef HAVE_SYS_MMAN_H
|
#ifdef HAVE_SYS_MMAN_H
|
||||||
indata = mmap(0, size, PROT_READ, MAP_PRIVATE, fd, 0);
|
indata = mmap(0, size, PROT_READ, MAP_PRIVATE, fd, 0);
|
||||||
if (indata == MAP_FAILED)
|
if (indata == MAP_FAILED) {
|
||||||
return NULL;
|
return NULL;
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
printf("No file mapping function\n");
|
printf("No file mapping function\n");
|
||||||
return NULL
|
return NULL;
|
||||||
#endif /* HAVE_SYS_MMAN_H */
|
#endif /* HAVE_SYS_MMAN_H */
|
||||||
#endif /* WIN32 */
|
#endif /* WIN32 */
|
||||||
return indata;
|
return indata;
|
||||||
@ -4920,19 +4924,38 @@ static char *getpassword(const char *prompt)
|
|||||||
static int read_password(GLOBAL_OPTIONS *options)
|
static int read_password(GLOBAL_OPTIONS *options)
|
||||||
{
|
{
|
||||||
char passbuf[4096];
|
char passbuf[4096];
|
||||||
int passfd, passlen;
|
int passlen;
|
||||||
const u_char utf8_bom[] = {0xef, 0xbb, 0xbf};
|
const u_char utf8_bom[] = {0xef, 0xbb, 0xbf};
|
||||||
|
|
||||||
if (options->readpass) {
|
if (options->readpass) {
|
||||||
passfd = open(options->readpass, O_RDONLY);
|
#ifdef WIN32
|
||||||
|
HANDLE fhandle, fmap;
|
||||||
|
LPVOID faddress;
|
||||||
|
fhandle = CreateFile(options->readpass, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
||||||
|
if (fhandle == INVALID_HANDLE_VALUE) {
|
||||||
|
return 0; /* FAILED */
|
||||||
|
}
|
||||||
|
fmap = CreateFileMapping(fhandle, NULL, PAGE_READONLY, 0, 0, NULL);
|
||||||
|
if (fmap == NULL) {
|
||||||
|
return 0; /* FAILED */
|
||||||
|
}
|
||||||
|
faddress = MapViewOfFile(fmap, FILE_MAP_READ, 0, 0, 0);
|
||||||
|
if (faddress == NULL) {
|
||||||
|
return 0; /* FAILED */
|
||||||
|
}
|
||||||
|
passlen = (int)GetFileSize(fhandle, NULL);
|
||||||
|
memcpy(passbuf, faddress, passlen);
|
||||||
|
UnmapViewOfFile(faddress);
|
||||||
|
CloseHandle(fhandle);
|
||||||
|
#else
|
||||||
|
int passfd = open(options->readpass, O_RDONLY);
|
||||||
if (passfd < 0) {
|
if (passfd < 0) {
|
||||||
printf("Failed to open password file: %s\n", options->readpass);
|
|
||||||
return 0; /* FAILED */
|
return 0; /* FAILED */
|
||||||
}
|
}
|
||||||
passlen = read(passfd, passbuf, sizeof passbuf - 1);
|
passlen = read(passfd, passbuf, sizeof passbuf - 1);
|
||||||
close(passfd);
|
close(passfd);
|
||||||
|
#endif /* WIN32 */
|
||||||
if (passlen <= 0) {
|
if (passlen <= 0) {
|
||||||
printf("Failed to read password from file: %s\n", options->readpass);
|
|
||||||
return 0; /* FAILED */
|
return 0; /* FAILED */
|
||||||
}
|
}
|
||||||
while (passlen > 0 && (passbuf[passlen-1] == 0x0a || passbuf[passlen-1] == 0x0d)) {
|
while (passlen > 0 && (passbuf[passlen-1] == 0x0a || passbuf[passlen-1] == 0x0d)) {
|
||||||
@ -4948,7 +4971,7 @@ static int read_password(GLOBAL_OPTIONS *options)
|
|||||||
#ifdef PROVIDE_ASKPASS
|
#ifdef PROVIDE_ASKPASS
|
||||||
} else if (options->askpass) {
|
} else if (options->askpass) {
|
||||||
options->pass = getpassword("Password: ");
|
options->pass = getpassword("Password: ");
|
||||||
#endif
|
#endif /* PROVIDE_ASKPASS */
|
||||||
}
|
}
|
||||||
return 1; /* OK */
|
return 1; /* OK */
|
||||||
}
|
}
|
||||||
@ -5979,8 +6002,10 @@ int main(int argc, char **argv)
|
|||||||
/* commands and options initialization */
|
/* commands and options initialization */
|
||||||
if (!main_configure(argc, argv, &cmd, &options))
|
if (!main_configure(argc, argv, &cmd, &options))
|
||||||
goto err_cleanup;
|
goto err_cleanup;
|
||||||
if (!read_password(&options))
|
if (!read_password(&options)) {
|
||||||
|
printf("Failed to read password from file: %s\n", options.readpass);
|
||||||
goto err_cleanup;
|
goto err_cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
/* read key and certificates */
|
/* read key and certificates */
|
||||||
if (cmd == CMD_SIGN && !read_crypto_params(&options, &cparams))
|
if (cmd == CMD_SIGN && !read_crypto_params(&options, &cparams))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user