191094Sdes/*-
2115619Sdes * Copyright (c) 2002-2003 Networks Associates Technology, Inc.
3228690Sdes * Copyright (c) 2004-2011 Dag-Erling Sm��rgrav
491094Sdes * All rights reserved.
591094Sdes *
691094Sdes * This software was developed for the FreeBSD Project by ThinkSec AS and
799158Sdes * Network Associates Laboratories, the Security Research Division of
899158Sdes * Network Associates, Inc.  under DARPA/SPAWAR contract N66001-01-C-8035
999158Sdes * ("CBOSS"), as part of the DARPA CHATS research program.
1091094Sdes *
1191094Sdes * Redistribution and use in source and binary forms, with or without
1291094Sdes * modification, are permitted provided that the following conditions
1391094Sdes * are met:
1491094Sdes * 1. Redistributions of source code must retain the above copyright
1591094Sdes *    notice, this list of conditions and the following disclaimer.
1691094Sdes * 2. Redistributions in binary form must reproduce the above copyright
1791094Sdes *    notice, this list of conditions and the following disclaimer in the
1891094Sdes *    documentation and/or other materials provided with the distribution.
1991094Sdes * 3. The name of the author may not be used to endorse or promote
2091094Sdes *    products derived from this software without specific prior written
2191094Sdes *    permission.
2291094Sdes *
2391094Sdes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2491094Sdes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2591094Sdes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2691094Sdes * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2791094Sdes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2891094Sdes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2991094Sdes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3091094Sdes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3191094Sdes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3291094Sdes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3391094Sdes * SUCH DAMAGE.
3491094Sdes *
35255376Sdes * $Id: pam_prompt.c 648 2013-03-05 17:54:27Z des $
3691094Sdes */
3791094Sdes
38228690Sdes#ifdef HAVE_CONFIG_H
39228690Sdes# include "config.h"
40228690Sdes#endif
41228690Sdes
4299158Sdes#include <sys/types.h>
4399158Sdes
4491094Sdes#include <stdarg.h>
4591094Sdes
4691094Sdes#include <security/pam_appl.h>
4791094Sdes#include <security/openpam.h>
4891094Sdes
4991094Sdes/*
5091094Sdes * OpenPAM extension
5191094Sdes *
5291094Sdes * Call the conversation function
5391094Sdes */
5491094Sdes
5591094Sdesint
56174832Sdespam_prompt(const pam_handle_t *pamh,
5791094Sdes	int style,
5891094Sdes	char **resp,
5991094Sdes	const char *fmt,
6091094Sdes	...)
6191094Sdes{
6291094Sdes	va_list ap;
6391094Sdes	int r;
6491094Sdes
6591094Sdes	va_start(ap, fmt);
6691094Sdes	r = pam_vprompt(pamh, style, resp, fmt, ap);
6791094Sdes	va_end(ap);
6891094Sdes	return (r);
6991094Sdes}
7091100Sdes
7191100Sdes/*
7291100Sdes * Error codes:
7391100Sdes *
7491100Sdes *     !PAM_SYMBOL_ERR
7591100Sdes *	PAM_SYSTEM_ERR
7691100Sdes *	PAM_BUF_ERR
7791100Sdes *	PAM_CONV_ERR
7891100Sdes */
7991100Sdes
8091100Sdes/**
8191100Sdes * The =pam_prompt function constructs a message from the specified format
8291100Sdes * string and arguments and passes it to the given PAM context's
8391100Sdes * conversation function.
8491100Sdes *
8591100Sdes * A pointer to the response, or =NULL if the conversation function did
8691100Sdes * not return one, is stored in the location pointed to by the =resp
8791100Sdes * argument.
8891100Sdes *
8991100Sdes * See =pam_vprompt for further details.
9091100Sdes *
9191100Sdes * >pam_error
9291100Sdes * >pam_info
9391100Sdes * >pam_vprompt
9491100Sdes */
95