* INLINE doesn't work across several objects as of C99; we just survive it the way...
[citadel.git] / citadel / context.h
1 /* $Id: sysdep_decls.h 7265 2009-03-25 23:18:46Z dothebart $ */
2
3 #ifndef CONTEXT_H
4 #define CONTEXT_H
5
6 #include <stdarg.h>
7 #include "sysdep.h"
8 #include "server.h"
9 #include "sysdep_decls.h"
10 #include "threads.h"
11
12
13 /*
14  * Here's the big one... the Citadel context structure.
15  *
16  * This structure keeps track of all information relating to a running 
17  * session on the server.  We keep one of these for each session thread.
18  *
19  */
20 struct CitContext {
21         struct CitContext *prev;        /* Link to previous session in list */
22         struct CitContext *next;        /* Link to next session in the list */
23
24         int cs_pid;             /* session ID */
25         int dont_term;          /* for special activities like artv so we don't get killed */
26         time_t lastcmd;         /* time of last command executed */
27         time_t lastidle;        /* For computing idle time */
28         int state;              /* thread state (see CON_ values below) */
29         int kill_me;            /* Set to nonzero to flag for termination */
30
31         const char *Pos;        /* Our read position inside of the ReadBuf */
32         StrBuf *ReadBuf;        /* Our block buffered read buffer */
33         StrBuf *MigrateBuf;        /* Our block buffered read buffer */
34
35         const char *sPos;        /* Our read position inside of the ReadBuf */
36         StrBuf *sReadBuf;        /* Our block buffered read buffer */
37         StrBuf *sMigrateBuf;        /* Our block buffered read buffer */
38         int client_socket;
39         int is_local_socket;    /* set to 1 if client is on unix domain sock */
40         /* Redirect this session's output to a memory buffer? */
41         StrBuf *redirect_buffer;                /* the buffer */
42 #ifdef HAVE_OPENSSL
43         SSL *ssl;
44         int redirect_ssl;
45 #endif
46
47         char curr_user[USERNAME_SIZE];  /* name of current user */
48         int logged_in;          /* logged in */
49         int internal_pgm;       /* authenticated as internal program */
50         int nologin;            /* not allowed to log in */
51         int curr_view;          /* The view type for the current user/room */
52         int is_master;          /* Is this session logged in using the master user? */
53
54         char net_node[32]       ;/* Is the client another Citadel server? */
55         time_t previous_login;  /* Date/time of previous login */
56         char lastcmdname[5];    /* name of last command executed */
57         unsigned cs_flags;      /* miscellaneous flags */
58         int is_async;           /* Nonzero if client accepts async msgs */
59         int async_waiting;      /* Nonzero if there are async msgs waiting */
60         int input_waiting;      /* Nonzero if there is client input waiting */
61         int can_receive_im;     /* Session is capable of receiving instant messages */
62
63         /* Client information */
64         int cs_clientdev;       /* client developer ID */
65         int cs_clienttyp;       /* client type code */
66         int cs_clientver;       /* client version number */
67         uid_t cs_UDSclientUID;  /* the uid of the client when talking via UDS */
68         char cs_clientname[32]; /* name of client software */
69         char cs_host[64];       /* host logged in from */
70         char cs_addr[64];       /* address logged in from */
71
72         /* The Internet type of thing */
73         char cs_inet_email[128];                /* Return address of outbound Internet mail */
74         char cs_inet_other_emails[1024];        /* User's other valid Internet email addresses */
75         char cs_inet_fn[128];                   /* Friendly-name of outbound Internet mail */
76
77         FILE *download_fp;      /* Fields relating to file transfer */
78         size_t download_fp_total;
79         char download_desired_section[128];
80         FILE *upload_fp;
81         char upl_file[256];
82         char upl_path[PATH_MAX];
83         char upl_comment[256];
84         char upl_filedir[PATH_MAX];
85         char upl_mimetype[64];
86         char dl_is_net;
87         char upload_type;
88
89         struct ctdluser user;   /* Database record buffers */
90         struct ctdlroom room;
91
92         /* Beginning of cryptography - session nonce */
93         char cs_nonce[NONCE_SIZE];      /* The nonce for this session's next auth transaction */
94
95
96         /* A linked list of all instant messages sent to us. */
97         struct ExpressMessage *FirstExpressMessage;
98         int disable_exp;        /* Set to 1 to disable incoming pages */
99         int newmail;            /* Other sessions increment this */
100
101         /* Masqueraded values in the 'who is online' list */
102         char fake_username[USERNAME_SIZE];
103         char fake_hostname[64];
104         char fake_roomname[ROOMNAMELEN];
105
106         /* Preferred MIME formats */
107         char preferred_formats[256];
108         int msg4_dont_decode;
109
110         /* Dynamically allocated session data */
111         char *session_specific_data;            /* Used by individual protocol modules */
112         struct cit_ical *CIT_ICAL;              /* calendaring data */
113         struct ma_info *ma;                     /* multipart/alternative data */
114         const char *ServiceName;                /* readable purpose of this session */
115         void *openid_data;                      /* Data stored by the OpenID module */
116         char *ldap_dn;                          /* DN of user when using AUTHMODE_LDAP */
117
118
119         void (*h_command_function) (void) ;     /* service command function */
120         void (*h_async_function) (void) ;       /* do async msgs function */
121         void (*h_greeting_function) (void) ;    /* greeting function for session startup */
122 };
123
124 typedef struct CitContext CitContext;
125
126 /*
127  * Values for CitContext.state
128  * 
129  * A session that is doing nothing is in CON_IDLE state.  When activity
130  * is detected on the socket, it goes to CON_READY, indicating that it
131  * needs to have a worker thread bound to it.  When a thread binds to
132  * the session, it goes to CON_EXECUTING and does its thing.  When the
133  * transaction is finished, the thread sets it back to CON_IDLE and lets
134  * it go.
135  */
136 enum {
137         CON_IDLE,               /* This context is doing nothing */
138         CON_GREETING,           /* This context needs to output its greeting */
139         CON_STARTING,           /* This context is outputting its greeting */
140         CON_READY,              /* This context needs attention */
141         CON_EXECUTING           /* This context is bound to a thread */
142 };
143
144 #define CC MyContext()
145
146
147 extern citthread_key_t MyConKey;                        /* TSD key for MyContext() */
148 extern int num_sessions;
149 extern CitContext masterCC;
150 extern CitContext *ContextList;
151
152 CitContext *MyContext (void);
153 void RemoveContext (struct CitContext *);
154 CitContext *CreateNewContext (void);
155 void context_cleanup(void);
156 void kill_session (int session_to_kill);
157 void InitializeMasterCC(void);
158 void dead_session_purge(int force);
159 void set_async_waiting(struct CitContext *ccptr);
160
161 /* Deprecated, user CtdlBumpNewMailCounter() instead */
162 void BumpNewMailCounter(long) __attribute__ ((deprecated));
163
164 void terminate_idle_sessions(void);
165 int CtdlTerminateOtherSession (int session_num);
166 /* bits returned by CtdlTerminateOtherSession */
167 #define TERM_FOUND      0x01
168 #define TERM_ALLOWED    0x02
169 #define TERM_KILLED     0x03
170 #define TERM_NOTALLOWED -1
171
172 /*
173  * Bind a thread to a context.  (It's inline merely to speed things up.)
174  */
175 static INLINE void become_session(CitContext *which_con) {
176 /*
177         pid_t tid = syscall(SYS_gettid);
178 */
179         citthread_setspecific(MyConKey, (void *)which_con );
180 /*
181         CtdlLogPrintf(CTDL_DEBUG, "[%d]: Now doing %s\n", 
182                       (int) tid, 
183                       ((which_con != NULL) && (which_con->ServiceName != NULL)) ? 
184                       which_con->ServiceName:"");
185 */
186 }
187
188
189 #endif /* CONTEXT_H */