update pam config to use common-session
[debian/sudo] / sudo_nss.h
1 /*
2  * Copyright (c) 2007-2009 Todd C. Miller <Todd.Miller@courtesan.com>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 struct lbuf;
18 struct passwd;
19
20 struct sudo_nss {
21     struct sudo_nss *prev;
22     struct sudo_nss *next;
23     int (*open) __P((struct sudo_nss *nss));
24     int (*close) __P((struct sudo_nss *nss));
25     int (*parse) __P((struct sudo_nss *nss));
26     int (*setdefs) __P((struct sudo_nss *nss));
27     int (*lookup) __P((struct sudo_nss *nss, int, int));
28     int (*display_cmnd) __P((struct sudo_nss *nss, struct passwd *));
29     int (*display_defaults) __P((struct sudo_nss *nss, struct passwd *, struct lbuf *));
30     int (*display_bound_defaults) __P((struct sudo_nss *nss, struct passwd *, struct lbuf *));
31     int (*display_privs) __P((struct sudo_nss *nss, struct passwd *, struct lbuf *));
32     void *handle;
33     short ret_if_found;
34     short ret_if_notfound;
35 };
36
37 TQ_DECLARE(sudo_nss)
38
39 struct sudo_nss_list *sudo_read_nss     __P((void));