]> arthur.barton.de Git - netatalk.git/blob - include/atalk/uam.h
0345a5485ce25fce600ca3ee5a85b40c9dcb5f64
[netatalk.git] / include / atalk / uam.h
1 /* Copyright (c) 1999 Adrian Sun (asun@zoology.washington.edu)
2  * All Rights Reserved.  See COPYRIGHT.
3  */
4
5 #ifndef UAM_H
6 #define UAM_H 1
7
8 #include <sys/cdefs.h>
9 #include <pwd.h>
10 #include <stdarg.h>
11
12 /* just a label for exported bits */
13 #define UAM_MODULE_EXPORT
14
15 /* type of uam */
16 #define UAM_MODULE_SERVER        1
17 #define UAM_MODULE_CLIENT        2
18
19 /* in case something drastic has to change */
20 #define UAM_MODULE_VERSION       1
21
22 /* things for which we can have uams */
23 #define UAM_SERVER_LOGIN         (1 << 0)
24 #define UAM_SERVER_CHANGEPW      (1 << 1)
25 #define UAM_SERVER_PRINTAUTH     (1 << 2) 
26
27 /* options */
28 #define UAM_OPTION_USERNAME     (1 << 0) /* get space for username */
29 #define UAM_OPTION_GUEST        (1 << 1) /* get guest user */
30 #define UAM_OPTION_PASSWDOPT    (1 << 2) /* get the password file */
31 #define UAM_OPTION_SIGNATURE    (1 << 3) /* get server signature */
32 #define UAM_OPTION_RANDNUM      (1 << 4) /* request a random number */
33 #define UAM_OPTION_HOSTNAME     (1 << 5) /* get host name */
34 #define UAM_OPTION_COOKIE       (1 << 6) /* cookie handle */
35 #define UAM_OPTION_PROTOCOL     (1 << 7) /* DSI or ASP */
36 #ifdef TRU64
37 #define UAM_OPTION_CLIENTNAME   (1 << 8) /* get client IP address */
38 #endif /* TRU64 */
39
40 /* some password options. you pass these in the length parameter and
41  * get back the corresponding option. not all of these are implemented. */
42 #define UAM_PASSWD_FILENAME     (1 << 0)
43 #define UAM_PASSWD_MINLENGTH    (1 << 1)
44 #define UAM_PASSWD_MAXFAIL      (1 << 2) /* not implemented yet. */
45 #define UAM_PASSWD_EXPIRETIME   (1 << 3) /* not implemented yet. */
46
47 /* i'm doing things this way because os x server's dynamic linker
48  * support is braindead. it also allows me to do a little versioning. */
49 struct uam_export {
50   int uam_type, uam_version;
51   int (*uam_setup)(const char *);
52   void (*uam_cleanup)(void);
53 };
54
55 /* register and unregister uams with these functions */
56 extern int uam_register __P((const int, const char *, const char *, ...));
57 extern void uam_unregister __P((const int, const char *));
58
59 /* helper functions */
60 extern struct passwd *uam_getname __P((char *, const int));
61 extern int uam_checkuser __P((const struct passwd *));
62
63 /* afp helper functions */
64 extern int uam_afp_read __P((void *, char *, int *,
65                              int (*)(void *, void *, const int)));
66 extern int uam_afpserver_option __P((void *, const int, void *, int *));
67 #ifdef TRU64
68 extern void uam_afp_getcmdline __P((int *, char ***));
69 #endif /* TRU64 */
70
71 /* switch.c */
72 #define UAM_AFPSERVER_PREAUTH  (0)
73 #define UAM_AFPSERVER_POSTAUTH (1 << 0)
74
75 extern int uam_afpserver_action __P((const int /*id*/, const int /*switch*/, 
76                                      int (**)(), int (**)()));
77
78 #endif