X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=blobdiff_plain;f=include%2Fatalk%2Fglobals.h;h=fb2848f345dad857facb0388062143115e9cf1f9;hp=28d928b418a2264d51103628db3a82cb38a2bfd3;hb=071887b8a84c7111477d9e1fcc8be9ea2b0c47e5;hpb=64fdc798ef9a837d28228fbbeff05b3cc8a6c82c diff --git a/include/atalk/globals.h b/include/atalk/globals.h index 28d928b4..fb2848f3 100644 --- a/include/atalk/globals.h +++ b/include/atalk/globals.h @@ -7,11 +7,8 @@ #define AFPD_GLOBALS_H 1 #include - -#ifdef ADMIN_GRP #include #include -#endif /* ADMIN_GRP */ #ifdef HAVE_NETDB_H #include /* this isn't header-protected under ultrix */ @@ -22,6 +19,19 @@ #include #include #include +#ifdef WITH_DTRACE +#include +#else +/* List of empty dtrace macros */ +#define AFP_AFPFUNC_START(a,b) +#define AFP_AFPFUNC_DONE(a, b) +#define AFP_CNID_START(a) +#define AFP_CNID_DONE() +#define AFP_READ_START(a) +#define AFP_READ_DONE() +#define AFP_WRITE_START(a) +#define AFP_WRITE_DONE() +#endif /* #define DOSFILELEN 12 */ /* Type1, DOS-compat*/ #define MACFILELEN 31 /* Type2, HFS-compat */ @@ -38,14 +48,19 @@ #define OPTION_CLOSEVOL (1 << 1) #define OPTION_SERVERNOTIF (1 << 2) #define OPTION_NOSENDFILE (1 << 3) -/* #define OPTION_CUSTOMICON (1 << 4) */ +#define OPTION_VETOMSG (1 << 4) /* whether to send an AFP message for veto file access */ #define OPTION_AFP_READ_LOCK (1 << 5) /* whether to do AFP spec conforming read locks (default: no) */ #define OPTION_ANNOUNCESSH (1 << 6) #define OPTION_UUID (1 << 7) #define OPTION_ACL2MACCESS (1 << 8) #define OPTION_NOZEROCONF (1 << 9) -#define OPTION_KEEPSESSIONS (1 << 10) /* preserve sessions across master afpd restart with SIGQUIT */ +#define OPTION_ACL2MODE (1 << 10) #define OPTION_SHARE_RESERV (1 << 11) /* whether to use Solaris fcntl F_SHARE locks */ +#define OPTION_DBUS_AFPSTATS (1 << 12) /* whether to run dbus thread for afpstats */ +#define OPTION_SPOTLIGHT (1 << 13) /* whether to initialize Spotlight support */ +#define OPTION_SPOTLIGHT_VOL (1 << 14) /* whether spotlight shall be enabled by default for volumes */ +#define OPTION_RECVFILE (1 << 15) +#define OPTION_SPOTLIGHT_EXPR (1 << 16) /* whether to allow Spotlight logic expressions */ #define PASSWD_NONE 0 #define PASSWD_SET (1 << 0) @@ -83,32 +98,40 @@ struct afp_options { uint32_t server_quantum; int dsireadbuf; /* scale factor for sizefof(dsi->buffer) = server_quantum * dsireadbuf */ char *hostname; - char *listen, *port; + char *listen, *interfaces, *port; char *Cnid_srv, *Cnid_port; char *configfile; char *uampath, *fqdn; char *sigconffile; char *uuidconf; - char *guest, *loginmesg, *keyfile, *passwdfile; + char *guest, *loginmesg, *keyfile, *passwdfile, *extmapfile; char *uamlist; char *signatureopt; unsigned char signature[16]; char *k5service, *k5realm, *k5keytab; + size_t k5principal_buflen; + char *k5principal; char *unixcodepage, *maccodepage, *volcodepage; charset_t maccharset, unixcharset; mode_t umask; mode_t save_mask; -#ifdef ADMIN_GRP gid_t admingid; -#endif /* ADMIN_GRP */ int volnamelen; /* default value for winbind authentication */ - char *ntdomain, *ntseparator; + char *ntdomain, *ntseparator, *addomain; char *logconfig; char *logfile; char *mimicmodel; char *adminauthuser; + char *ignored_attr; + int splice_size; + char *cnid_mysql_host; + char *cnid_mysql_user; + char *cnid_mysql_pw; + char *cnid_mysql_db; struct afp_volume_name volfile; + struct afp_volume_name includefile; + uint64_t sparql_limit; }; typedef struct AFPObj { @@ -128,11 +151,16 @@ typedef struct AFPObj { gid_t *groups; int ngroups; int afp_version; + int cnx_cnt, cnx_max; /* Functions */ void (*logout)(void); void (*exit)(int); int (*reply)(void *, int); int (*attention)(void *, AFPUserBytes); + int fce_version; + char *fce_ign_names; + char *fce_notify_script; + struct sl_ctx *sl_ctx; } AFPObj; /* typedef for AFP functions handlers */ @@ -152,14 +180,9 @@ extern const char *Cnid_port; extern int get_afp_errno (const int param); extern void afp_options_init (struct afp_options *); extern void afp_options_parse_cmdline(AFPObj *obj, int ac, char **av); -extern void afp_options_free(struct afp_options *); -extern void setmessage (const char *); +extern int setmessage (const char *); extern void readmessage (AFPObj *); -/* gettok.c */ -extern void initline (int, char *); -extern int parseline (int, char *); - /* afp_util.c */ extern const char *AfpNum2name (int ); extern const char *AfpErr2name(int err); @@ -168,5 +191,5 @@ extern const char *AfpErr2name(int err); extern struct dir rootParent; extern void afp_over_dsi (AFPObj *); - +extern void afp_over_dsi_sighandlers(AFPObj *obj); #endif /* globals.h */