Home > Articles > Operating Systems, Server > Solaris

This chapter is from the book

This chapter is from the book

5.7 The certmap.conf File

Web Server 7 can be configured to allow client authentication through the use of an X.509 digital certificate. This can be performed under the SSL settings for a particular HTTP listener.

When a server receives a request from a client, it can ask for the client’s certificate before proceeding. A client is programmed to respond by sending a client certificate to the server.

After checking that a client certificate chain ends with a trusted Certificate Authority (CA), the Web Server can optionally determine which user is identified by the client certificate and then look up that user’s entry in a directory server. The Web Server authenticates the user by comparing the information in the certificate with the data in the user’s directory entry.

To locate user entries in the directory, a server must know how to interpret certificates from different CAs. You provide the server with interpretation information by means of the certificate mapping configuration file (certmap.conf). This file provides three kinds of information for each listed CA:

  • It maps the distinguished name (DN) in the certificate to a branch point in the LDAP directory.
  • It specifies which DN values from the certificate (username, e-mail address, and so on) the server should use for the purpose of searching the directory.
  • It specifies whether the server should go through an additional verification process. This process involves comparing the certificate presented by the client for authentication with the certificate stored in the user’s directory entry. By comparing the certificate, the server determines whether to allow access or whether to revoke a certificate by removing it from the user’s directory entry.

If more than one directory entry contains the information in the user’s certificate, the server can examine all matching entries to determine which user is trying to authenticate. When examining a directory entry, the server compares the presented certificate with the certificate stored in the entry. If the presented certificate doesn’t match any directory entries or if matching entries don’t contain matching certificates, client authentication fails.

After the server finds a matching entry and certificate in the directory, it can determine the appropriate kind of authorization for the client. For example, some servers use information from a user’s entry to determine group membership, which in turn can be used during evaluation of access control instruction ACIs to determine what resources the user is authorized to access.

5.7.1 File Structure

The certmap.conf file contains information on how a client certificate is mapped to a directory server entry. Example 5.8 demonstrates the certificate mapping configuration file for the default Administration Node.

Example 5.8. Default certmap.conf File

#
# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

#
# This file configures how a certificate is mapped to an LDAP entry.
# See the documentation for more information on this file.
#
# The format of this file is as follows:
#    certmap <name> <issuerDN>
#    <name>:<prop1> [<val1>]
#    <name>:<prop2> [<val2>]
#
# Notes:
#
# 1.  Mapping can be defined per issuer of a certificate.  If mapping
#     doesn't exists for a particular 'issuerDN' then the server uses
#     the default mapping.
#
# 2.  There must be an entry for <name>=default and issuerDN "default".
#     This mapping is the default mapping.
#
# 3.  '#' can be used to comment out a line.
#
# 4.  DNComps & FilterComps are used to form the base DN and filter
#     resp. for performing an LDAP search while mapping the cert to a
#     user entry.
#
# 5.  DNComps can be one of the following:
#    commented out - take the user's DN from the cert as is
#    empty        - search the entire LDAP tree (DN == suffix)
#    attr names    - a comma separated list of attributes to form DN
#
# 6.  FilterComps can be one of the following:
#    commented out - set the filter to "objectclass=*"
#    empty        - set the filter to "objectclass=*"
#    attr names    - a comma separated list of attributes to form the
#                  filter
#

certmap default         default
#default:DNComps
#default:FilterComps    e, uid
#default:verifycert     on
#default:CmapLdapAttr   certSubjectDN
#default:library        <path_to_shared_lib_or_dll>
#default:InitFn       <Init function's name>

5.7.2 Syntax

The file contains one or more named mappings, each applying to a different certificate authority (CA).

Hash symbols (#) at the beginning of a line indicate that the line is a comment. These are ignored by Web Server. Additional lines have the following syntax:

    certmap <name> <issuerDN>
    <name>:<property> [<value>]

The first line uses the name parameter to specify a name for the certificate mapping. It uses the issuerDN parameter to specify the attributes that form the distinguished name found in the CA certificate.

The name attribute is arbitrary; you can call it whatever you want it to be. The issuerDN attribute, however, must exactly match the distinguished name of the CA who issued the client certificate. For example, the following two issuerDN lines differ only in the spaces separating the attributes, but the server treats these two entries as different:

    certmap name ou=Example CA,o=Example,c=US
    certmap name ou=Example CA, o=Example, c=US

The second and subsequent lines of a mapping identify the rules that the server should use when searching the directory for information extracted from a certificate:

    certmap name issuerDN
    name:property1 [value1]
    name:property2 [value2]
    ...

These rules are specified through the use of one or more of the following properties: DNComps, FilterComps, VerifyCert, CmapLdapAttr, Library, and InitFn. Additionally, you could use the certificate API to customize your own properties.

Table 5.4 describes each of the properties contained in the certificate mapping configuration file.

Table 5.4. certmap.conf Properties

Property

Description

DNComps

A list of comma-separated attributes used to determine where in the LDAP directory the server should start searching for entries that match the user’s information (that is, the owner of the client certificate). The server gathers values for these attributes from the client certificate and uses the values to form an LDAP DN, which then determines where the server starts its search in the LDAP directory. For example, if you set DNComps to use the organization (o) and country attributes of the DN, the server starts the search from the o=<organization>, c=<country> entry in the LDAP directory, where <organization> and <country> are replaced with values from the DN in the certificate.

Note the following situations:

  • If there isn’t a DNComps entry in the mapping, the server uses either the CmapLdapAttr setting or the entire subject DN in the client certificate.
  • If the DNComps entry is present but has no value, the server searches the entire LDAP tree for entries matching the filter.

FilterComps

A list of comma-separated attributes used to create a filter by gathering information from the user’s DN in the client certificate. The server uses the values for these attributes to form the search criteria used to match entries in the LDAP directory. If the server finds one or more entries in the LDAP directory that match the user’s information gathered from the certificate, the search is successful and the server optionally performs a verification.

For example, if FilterComps is set to use the e-mail and user ID attributes (FilterComps=e,uid), the server searches the directory for an entry whose values for e-mail and user ID match the end user’s information gathered from the client certificate. E-mail addresses and user IDs are good filters because they are usually unique entries in the directory. The filter needs to be specific enough to match only one entry in the LDAP database.

The following provides a list of valid X.509v3 certificate attributes:

  • c—Country
  • o—Organization
  • cn—Common name
  • l—Location
  • st—State
  • ou—Organizational unit
  • uid—User ID
  • e or mail—E-mail address

Note that the attribute names for the filters must be attribute names from the certificate, not from the LDAP directory. For example, some certificates have an e attribute for the user’s e-mail address; whereas LDAP calls that attribute mail.

verifycert

Tells the server whether it should compare the client’s certificate with the certificate found in the LDAP directory. It takes two values, on and off. You should use this property only if your LDAP directory contains certificates. This feature is useful to ensure your end users have a valid, unrevoked certificate.

CmapLdapAttr

A name for the attribute in the LDAP directory that contains subject DNs from all certificates belonging to the user. The default for this property is certSubjectDN. This attribute isn’t a standard LDAP attribute, so to use this property, you must extend the LDAP schema. Additionally, the search takes place more quickly if the attribute specified by CmapLdapAttr is indexed.

If this property exists in the certmap.conf file, the server searches the entire LDAP directory for an entry whose attribute (named with this property) matches the subject’s full DN (taken from the certificate). If the search doesn’t find any entries, the server retries the search, using the DNComps and FilterComps mappings.

This approach to matching a certificate to an LDAP entry is useful when it’s difficult to match entries using DNComps and FilterComps.

Library

A property whose value is a pathname to a shared library or DLL. You need to use this property only if you create your own properties using the certificate API. For more information, see the Sun Java System Web Server 7.0 Developer’s Guide.

InitFn

A property whose value is the name of an initialization (init) function from a custom library. You need to use this property only if you create your own properties by using the certificate API.

If you are using the Library and InitFn properties, a complete mapping might look like this:

    certmap Example CA       ou=Example CA, o=Example, c=US
    Example CA:CmapLdapAttr  certSubjectDN
    Example CA:DNComps       o, c
    Example CA:FilterComps   e, uid
    Example CA:VerifyCert    on

In this example, the name of the certificate mapping is Example CA, and it is mapped to the issuer’s distinguished name of ou=Example CA, o=Example, c=US.

The CmapLdapAttr property tells the server to search the entire directory for an entry whose certSubjectDN matches the subject’s full DN as listed in the client certificate. If the search doesn’t yield any entries, the server retries the search, using the DNComps and FilterComps mappings.

The DNComps property indicates that the base distinguished name (baseDN) of the search should be created from the organization and country attributes that are extracted from the client certificate.

The FilterComps property indicates that the Web Server should search for entries that match the e-mail and user ID attributes extracted from the client certificate.

The VerifyCert property tells the server whether it should compare the client’s certificate with the certificate found in the user’s directory entry. A value of on ensures that the server does not authenticate the client unless the certificate presented exactly matches the certificate stored in the directory.

5.7.3 Context

Each server instance has its own certificate mapping configuration file; therefore, there is a one-to-one correspondence between the server instance and this file.

5.7.4 Modifications

The Administration Console and command line interface do not provide a method for managing the certificate mapping configuration file. As such, entries must be added to the certmap.conf file directly on a particular Administration Node. After this has been performed, the modifications must be pulled back into the configuration and then pushed out to additional Administration Nodes as appropriate.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020