1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
.\" $OpenBSD: X509_STORE_load_locations.3,v 1.6 2018/03/30 00:44:24 schwarze Exp $
.\" full merge up to:
.\" OpenSSL X509_STORE_add_cert b0edda11 Mar 20 13:00:17 2018 +0000
.\"
.\" Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: March 30 2018 $
.Dt X509_STORE_LOAD_LOCATIONS 3
.Os
.Sh NAME
.Nm X509_STORE_load_locations ,
.Nm X509_STORE_set_default_paths
.Nd configure files and directories used by a certificate store
.Sh SYNOPSIS
.In openssl/x509_vfy.h
.Ft int
.Fo X509_STORE_load_locations
.Fa "X509_STORE *store"
.Fa "const char *file"
.Fa "const char *dirs"
.Fc
.Ft int
.Fo X509_STORE_set_default_paths
.Fa "X509_STORE *store"
.Fc
.Sh DESCRIPTION
.Fn X509_STORE_load_locations
instructs the
.Fa store
to use the PEM file
.Fa file
and all the PEM files in the directories
contained in the colon-separated list
.Fa dirs
for looking up certificates, in addition to files and directories
that are already configured.
The certificates in the directores must be in hashed form, as documented in
.Xr X509_LOOKUP_hash_dir 3 .
Directories already in use are not added again.
If
.Dv NULL
is passed for
.Fa file
or
.Fa dirs ,
no new file or no new directories are added, respectively.
.Pp
.Fn X509_STORE_load_locations
is identical to
.Xr SSL_CTX_load_verify_locations 3
except that it operates directly on an
.Vt X509_STORE
object, rather than on the store used by an SSL context.
See that manual page for more information.
.Pp
.Fn X509_STORE_set_default_paths
is similar except that it instructs the
.Fa store
to use the default PEM file and directory
(as documented in
.Sx FILES )
in addition to what is already configured.
It ignores errors that occur while trying to load the file or to
add the directory, but it may still fail for other reasons, for
example when out of memory while trying to allocate the required
.Vt X509_LOOKUP
objects.
.Pp
.Fn X509_STORE_set_default_paths
is identical to
.Xr SSL_CTX_set_default_verify_paths 3
except that it operates directly on an
.Vt X509_STORE
object, rather than on the store used by an SSL context.
See that manual page for more information.
.Sh RETURN VALUES
.Fn X509_STORE_load_locations
returns 1 if all files and directories specified were successfully
added.
It returns 0 for failure.
That can happen if adding the file failed, if adding any of the
directories failed, or if both arguments were
.Dv NULL .
.Pp
.Fn X509_STORE_set_default_paths
returns 0 for some error conditions and 1 otherwise, not just for
success, but also for various cases of failure.
.Sh FILES
.Bl -tag -width Ds
.It Pa /etc/ssl/cert.pem
default PEM file for
.Fn X509_STORE_set_default_paths
.It Pa /etc/ssl/certs/
default directory for
.Fn X509_STORE_set_default_paths
.El
.Sh SEE ALSO
.Xr SSL_CTX_load_verify_locations 3 ,
.Xr X509_LOOKUP_hash_dir 3 ,
.Xr X509_STORE_new 3 ,
.Xr X509_STORE_set1_param 3 ,
.Xr X509_STORE_set_verify_cb 3
.Sh HISTORY
.Fn X509_STORE_load_locations
and
.Fn X509_STORE_set_default_paths
first appeared in SSLeay 0.8.0 and have been available since
.Ox 2.4 .
.Sh BUGS
By the time that adding a directory is found to have failed,
the file and some other directories may already have been successfully loaded,
so these functions may change the state of the store even when they fail.
.Pp
.Fn X509_STORE_set_default_paths
clears the error queue, deleting even error information that was
already present when it was called.
|