]> arthur.barton.de Git - netatalk.git/blob - include/atalk/uam.h
060bc228588f03b734a94e73fdae4a090b05e637
[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 #define UAM_OPTION_CLIENTNAME   (1 << 8) /* get client IP address */
37
38 /* some password options. you pass these in the length parameter and
39  * get back the corresponding option. not all of these are implemented. */
40 #define UAM_PASSWD_FILENAME     (1 << 0)
41 #define UAM_PASSWD_MINLENGTH    (1 << 1)
42 #define UAM_PASSWD_MAXFAIL      (1 << 2) /* not implemented yet. */
43 #define UAM_PASSWD_EXPIRETIME   (1 << 3) /* not implemented yet. */
44
45 /* i'm doing things this way because os x server's dynamic linker
46  * support is braindead. it also allows me to do a little versioning. */
47 struct uam_export {
48   int uam_type, uam_version;
49   int (*uam_setup)(const char *);
50   void (*uam_cleanup)(void);
51 };
52
53 /* register and unregister uams with these functions */
54 extern int uam_register __P((const int, const char *, const char *, ...));
55 extern void uam_unregister __P((const int, const char *));
56
57 /* helper functions */
58 extern struct passwd *uam_getname __P((char *, const int));
59 extern int uam_checkuser __P((const struct passwd *));
60
61 /* afp helper functions */
62 extern int uam_afp_read __P((void *, char *, int *,
63                              int (*)(void *, void *, const int)));
64 extern int uam_afpserver_option __P((void *, const int, void *, int *));
65 #ifdef TRU64
66 extern void uam_afp_getcmdline __P((int *, char ***));
67 #endif /* TRU64 */
68
69 /* switch.c */
70 #define UAM_AFPSERVER_PREAUTH  (0)
71 #define UAM_AFPSERVER_POSTAUTH (1 << 0)
72
73 extern int uam_afpserver_action __P((const int /*id*/, const int /*switch*/, 
74                                      int (**)(), int (**)()));
75
76 #endif