GH391: Apple port
Also make internal functions consistently return values, and add a comment documenting them. Reviewed-by: Ben Laurie <ben@openssl.org>
This commit is contained in:
parent
a351805733
commit
ce249fac57
@ -124,7 +124,10 @@ static int bit_isset(unsigned char *set, unsigned int bit)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void add_entry(enum Type type, unsigned int hash, const char *filename,
|
/*
|
||||||
|
* Process an entry; return number of errors.
|
||||||
|
*/
|
||||||
|
static int add_entry(enum Type type, unsigned int hash, const char *filename,
|
||||||
const unsigned char *digest, int need_symlink,
|
const unsigned char *digest, int need_symlink,
|
||||||
unsigned short old_id)
|
unsigned short old_id)
|
||||||
{
|
{
|
||||||
@ -151,7 +154,7 @@ static void add_entry(enum Type type, unsigned int hash, const char *filename,
|
|||||||
BIO_printf(bio_err,
|
BIO_printf(bio_err,
|
||||||
"%s: skipping duplicate certificate in %s\n",
|
"%s: skipping duplicate certificate in %s\n",
|
||||||
opt_getprog(), filename);
|
opt_getprog(), filename);
|
||||||
return;
|
return 1;
|
||||||
}
|
}
|
||||||
if (strcmp(filename, ep->filename) == 0) {
|
if (strcmp(filename, ep->filename) == 0) {
|
||||||
found = ep;
|
found = ep;
|
||||||
@ -161,8 +164,12 @@ static void add_entry(enum Type type, unsigned int hash, const char *filename,
|
|||||||
}
|
}
|
||||||
ep = found;
|
ep = found;
|
||||||
if (ep == NULL) {
|
if (ep == NULL) {
|
||||||
if (bp->num_needed >= MAX_COLLISIONS)
|
if (bp->num_needed >= MAX_COLLISIONS) {
|
||||||
return;
|
BIO_printf(bio_err,
|
||||||
|
"%s: hash table overflow for %s\n",
|
||||||
|
opt_getprog(), filename);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
ep = app_malloc(sizeof(*ep), "collision bucket");
|
ep = app_malloc(sizeof(*ep), "collision bucket");
|
||||||
*ep = nilhentry;
|
*ep = nilhentry;
|
||||||
ep->old_id = ~0;
|
ep->old_id = ~0;
|
||||||
@ -181,8 +188,13 @@ static void add_entry(enum Type type, unsigned int hash, const char *filename,
|
|||||||
bp->num_needed++;
|
bp->num_needed++;
|
||||||
memcpy(ep->digest, digest, evpmdsize);
|
memcpy(ep->digest, digest, evpmdsize);
|
||||||
}
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Check if a symlink goes to the right spot; return 0 if okay.
|
||||||
|
* This can be -1 if bad filename, or an error count.
|
||||||
|
*/
|
||||||
static int handle_symlink(const char *filename, const char *fullpath)
|
static int handle_symlink(const char *filename, const char *fullpath)
|
||||||
{
|
{
|
||||||
unsigned int hash = 0;
|
unsigned int hash = 0;
|
||||||
@ -214,41 +226,50 @@ static int handle_symlink(const char *filename, const char *fullpath)
|
|||||||
return -1;
|
return -1;
|
||||||
linktarget[n] = 0;
|
linktarget[n] = 0;
|
||||||
|
|
||||||
add_entry(type, hash, linktarget, NULL, 0, id);
|
return add_entry(type, hash, linktarget, NULL, 0, id);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* process a file, return number of errors.
|
||||||
|
*/
|
||||||
static int do_file(const char *filename, const char *fullpath, enum Hash h)
|
static int do_file(const char *filename, const char *fullpath, enum Hash h)
|
||||||
{
|
{
|
||||||
STACK_OF (X509_INFO) *inf;
|
STACK_OF (X509_INFO) *inf = NULL;
|
||||||
X509_INFO *x;
|
X509_INFO *x;
|
||||||
X509_NAME *name = NULL;
|
X509_NAME *name = NULL;
|
||||||
BIO *b;
|
BIO *b;
|
||||||
const char *ext;
|
const char *ext;
|
||||||
unsigned char digest[EVP_MAX_MD_SIZE];
|
unsigned char digest[EVP_MAX_MD_SIZE];
|
||||||
int i, type, ret = -1;
|
int i, type, errs = 0;
|
||||||
|
|
||||||
|
/* Does it end with a recognized extension? */
|
||||||
if ((ext = strrchr(filename, '.')) == NULL)
|
if ((ext = strrchr(filename, '.')) == NULL)
|
||||||
return 0;
|
goto end;
|
||||||
for (i = 0; i < (int)OSSL_NELEM(extensions); i++) {
|
for (i = 0; i < (int)OSSL_NELEM(extensions); i++) {
|
||||||
if (strcasecmp(extensions[i], ext + 1) == 0)
|
if (strcasecmp(extensions[i], ext + 1) == 0)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (i >= (int)OSSL_NELEM(extensions))
|
if (i >= (int)OSSL_NELEM(extensions))
|
||||||
return -1;
|
goto end;
|
||||||
|
|
||||||
if ((b = BIO_new_file(fullpath, "r")) == NULL)
|
/* Does it have X.509 data in it? */
|
||||||
return -1;
|
if ((b = BIO_new_file(fullpath, "r")) == NULL) {
|
||||||
|
BIO_printf(bio_err, "%s: skipping %s, cannot open file\n",
|
||||||
|
opt_getprog(), filename);
|
||||||
|
errs++;
|
||||||
|
goto end;
|
||||||
|
}
|
||||||
inf = PEM_X509_INFO_read_bio(b, NULL, NULL, NULL);
|
inf = PEM_X509_INFO_read_bio(b, NULL, NULL, NULL);
|
||||||
BIO_free(b);
|
BIO_free(b);
|
||||||
if (inf == NULL)
|
if (inf == NULL)
|
||||||
return -1;
|
goto end;
|
||||||
|
|
||||||
if (sk_X509_INFO_num(inf) != 1) {
|
if (sk_X509_INFO_num(inf) != 1) {
|
||||||
BIO_printf(bio_err,
|
BIO_printf(bio_err,
|
||||||
"%s: skipping %s,"
|
"%s: skipping %s,"
|
||||||
"it does not contain exactly one certificate or CRL\n",
|
"it does not contain exactly one certificate or CRL\n",
|
||||||
opt_getprog(), filename);
|
opt_getprog(), filename);
|
||||||
|
/* This is not an error. */
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
x = sk_X509_INFO_value(inf, 0);
|
x = sk_X509_INFO_value(inf, 0);
|
||||||
@ -263,16 +284,19 @@ static int do_file(const char *filename, const char *fullpath, enum Hash h)
|
|||||||
}
|
}
|
||||||
if (name) {
|
if (name) {
|
||||||
if ((h == HASH_NEW) || (h == HASH_BOTH))
|
if ((h == HASH_NEW) || (h == HASH_BOTH))
|
||||||
add_entry(type, X509_NAME_hash(name), filename, digest, 1, ~0);
|
errs += add_entry(type, X509_NAME_hash(name), filename, digest, 1, ~0);
|
||||||
if ((h == HASH_OLD) || (h == HASH_BOTH))
|
if ((h == HASH_OLD) || (h == HASH_BOTH))
|
||||||
add_entry(type, X509_NAME_hash_old(name), filename, digest, 1, ~0);
|
errs += add_entry(type, X509_NAME_hash_old(name), filename, digest, 1, ~0);
|
||||||
}
|
}
|
||||||
|
|
||||||
end:
|
end:
|
||||||
sk_X509_INFO_pop_free(inf, X509_INFO_free);
|
sk_X509_INFO_pop_free(inf, X509_INFO_free);
|
||||||
return ret;
|
return errs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Process a directory; return number of errors found.
|
||||||
|
*/
|
||||||
static int do_dir(const char *dirname, enum Hash h)
|
static int do_dir(const char *dirname, enum Hash h)
|
||||||
{
|
{
|
||||||
BUCKET *bp, *nextbp;
|
BUCKET *bp, *nextbp;
|
||||||
@ -280,7 +304,7 @@ static int do_dir(const char *dirname, enum Hash h)
|
|||||||
OPENSSL_DIR_CTX *d = NULL;
|
OPENSSL_DIR_CTX *d = NULL;
|
||||||
struct stat st;
|
struct stat st;
|
||||||
unsigned char idmask[MAX_COLLISIONS / 8];
|
unsigned char idmask[MAX_COLLISIONS / 8];
|
||||||
int i, n, nextid, buflen, ret = -1;
|
int i, n, nextid, buflen, errs = 0;
|
||||||
const char *pathsep;
|
const char *pathsep;
|
||||||
const char *filename;
|
const char *filename;
|
||||||
char *buf;
|
char *buf;
|
||||||
@ -301,7 +325,7 @@ static int do_dir(const char *dirname, enum Hash h)
|
|||||||
continue;
|
continue;
|
||||||
if (S_ISLNK(st.st_mode) && handle_symlink(filename, buf) == 0)
|
if (S_ISLNK(st.st_mode) && handle_symlink(filename, buf) == 0)
|
||||||
continue;
|
continue;
|
||||||
do_file(filename, buf, h);
|
errs += do_file(filename, buf, h);
|
||||||
}
|
}
|
||||||
OPENSSL_DIR_end(&d);
|
OPENSSL_DIR_end(&d);
|
||||||
|
|
||||||
@ -334,15 +358,19 @@ static int do_dir(const char *dirname, enum Hash h)
|
|||||||
if (verbose)
|
if (verbose)
|
||||||
BIO_printf(bio_out, "link %s -> %s\n",
|
BIO_printf(bio_out, "link %s -> %s\n",
|
||||||
ep->filename, &buf[n]);
|
ep->filename, &buf[n]);
|
||||||
if (unlink(buf) < 0 && errno != ENOENT)
|
if (unlink(buf) < 0 && errno != ENOENT) {
|
||||||
BIO_printf(bio_err,
|
BIO_printf(bio_err,
|
||||||
"%s: Can't unlink %s, %s\n",
|
"%s: Can't unlink %s, %s\n",
|
||||||
opt_getprog(), buf, strerror(errno));
|
opt_getprog(), buf, strerror(errno));
|
||||||
if (symlink(ep->filename, buf) < 0)
|
errs++;
|
||||||
|
}
|
||||||
|
if (symlink(ep->filename, buf) < 0) {
|
||||||
BIO_printf(bio_err,
|
BIO_printf(bio_err,
|
||||||
"%s: Can't symlink %s, %s\n",
|
"%s: Can't symlink %s, %s\n",
|
||||||
opt_getprog(), ep->filename,
|
opt_getprog(), ep->filename,
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
|
errs++;
|
||||||
|
}
|
||||||
} else if (remove_links) {
|
} else if (remove_links) {
|
||||||
/* Link to be deleted */
|
/* Link to be deleted */
|
||||||
snprintf(buf, buflen, "%s%s%n%08x.%s%d",
|
snprintf(buf, buflen, "%s%s%n%08x.%s%d",
|
||||||
@ -351,10 +379,12 @@ static int do_dir(const char *dirname, enum Hash h)
|
|||||||
if (verbose)
|
if (verbose)
|
||||||
BIO_printf(bio_out, "unlink %s\n",
|
BIO_printf(bio_out, "unlink %s\n",
|
||||||
&buf[n]);
|
&buf[n]);
|
||||||
if (unlink(buf) < 0 && errno != ENOENT)
|
if (unlink(buf) < 0 && errno != ENOENT) {
|
||||||
BIO_printf(bio_err,
|
BIO_printf(bio_err,
|
||||||
"%s: Can't unlink %s, %s\n",
|
"%s: Can't unlink %s, %s\n",
|
||||||
opt_getprog(), buf, strerror(errno));
|
opt_getprog(), buf, strerror(errno));
|
||||||
|
errs++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
OPENSSL_free(ep->filename);
|
OPENSSL_free(ep->filename);
|
||||||
OPENSSL_free(ep);
|
OPENSSL_free(ep);
|
||||||
@ -363,10 +393,9 @@ static int do_dir(const char *dirname, enum Hash h)
|
|||||||
}
|
}
|
||||||
hash_table[i] = NULL;
|
hash_table[i] = NULL;
|
||||||
}
|
}
|
||||||
ret = 0;
|
|
||||||
|
|
||||||
OPENSSL_free(buf);
|
OPENSSL_free(buf);
|
||||||
return ret;
|
return errs;
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef enum OPTION_choice {
|
typedef enum OPTION_choice {
|
||||||
@ -390,7 +419,7 @@ int rehash_main(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
const char *env, *prog;
|
const char *env, *prog;
|
||||||
char *e, *m;
|
char *e, *m;
|
||||||
int ret = 0;
|
int errs = 0;
|
||||||
OPTION_CHOICE o;
|
OPTION_CHOICE o;
|
||||||
enum Hash h = HASH_NEW;
|
enum Hash h = HASH_NEW;
|
||||||
|
|
||||||
@ -426,18 +455,18 @@ int rehash_main(int argc, char **argv)
|
|||||||
|
|
||||||
if (*argv) {
|
if (*argv) {
|
||||||
while (*argv)
|
while (*argv)
|
||||||
ret |= do_dir(*argv++, h);
|
errs += do_dir(*argv++, h);
|
||||||
} else if ((env = getenv("SSL_CERT_DIR")) != NULL) {
|
} else if ((env = getenv("SSL_CERT_DIR")) != NULL) {
|
||||||
m = BUF_strdup(env);
|
m = BUF_strdup(env);
|
||||||
for (e = strtok(m, ":"); e != NULL; e = strtok(NULL, ":"))
|
for (e = strtok(m, ":"); e != NULL; e = strtok(NULL, ":"))
|
||||||
ret |= do_dir(e, h);
|
errs += do_dir(e, h);
|
||||||
OPENSSL_free(m);
|
OPENSSL_free(m);
|
||||||
} else {
|
} else {
|
||||||
ret |= do_dir("/etc/ssl/certs", h);
|
errs += do_dir("/etc/ssl/certs", h);
|
||||||
}
|
}
|
||||||
|
|
||||||
end:
|
end:
|
||||||
return ret ? 2 : 0;
|
return errs;
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user