This time I'm waiting for the computer.
[citadel.git] / citadel / server / context.h
1
2 #ifndef CONTEXT_H
3 #define CONTEXT_H
4
5 #include <stdarg.h>
6 #include "sysdep.h"
7 #include "server.h"
8 #include "sysdep_decls.h"
9 #include "threads.h"
10
11
12 // Values for CitContext.state
13 // 
14 // A session that is doing nothing is in CON_IDLE state.  When activity
15 // is detected on the socket, it goes to CON_READY, indicating that it
16 // needs to have a worker thread bound to it.  When a thread binds to
17 // the session, it goes to CON_EXECUTING and does its thing.  When the
18 // transaction is finished, the thread sets it back to CON_IDLE and lets
19 // it go.
20 typedef enum __CCState {
21         CON_IDLE,               // This context is doing nothing
22         CON_GREETING,           // This context needs to output its greeting
23         CON_STARTING,           // This context is outputting its greeting
24         CON_READY,              // This context needs attention
25         CON_EXECUTING,          // This context is bound to a thread
26         CON_SYS                 // This is a system context and mustn't be purged
27 } CCState;
28
29 #ifndef __CIT_CONTEXT__
30 #define __CIT_CONTEXT__
31 typedef struct CitContext CitContext;
32 #endif
33
34 // This structure keeps track of all information relating to a running 
35 // session on the server.  We keep one of these for each session.
36 struct CitContext {
37         CitContext *prev;       // Link to previous session in list
38         CitContext *next;       // Link to next session in the list
39
40         int cs_pid;             // session ID
41         double created;         // time of birth
42         time_t lastcmd;         // time of last command executed
43         time_t lastidle;        // For computing idle time
44         CCState state;          // thread state (see CON_ values below)
45         int kill_me;            // Set to nonzero to flag for termination
46
47         IOBuffer SendBuf,       // Our write Buffer
48                 RecvBuf,        // Our block buffered read buffer
49                 SBuf;           // Our block buffered read buffer for clients
50
51         StrBuf *MigrateBuf;     // Our block buffered read buffer
52         StrBuf *sMigrateBuf;    // Our block buffered read buffer
53
54         int client_socket;
55         int is_local_client;    // set to 1 if client is running on the same host
56         // Redirect this session's output to a memory buffer?
57         StrBuf *redirect_buffer;                // the buffer
58         StrBuf *StatusMessage;
59 #ifdef HAVE_OPENSSL
60         SSL *ssl;
61         int redirect_ssl;
62 #endif
63
64         char curr_user[USERNAME_SIZE];  // name of current user
65         int logged_in;          // logged in?
66         int internal_pgm;       // authenticated as internal program?
67         int nologin;            // not allowed to log in
68         int curr_view;          // The view type for the current user/room
69
70         time_t previous_login;  // Date/time of previous login
71         char lastcmdname[5];    // name of last command executed
72         unsigned cs_flags;      // miscellaneous flags
73         int is_async;           // Nonzero if client accepts async msgs
74         int async_waiting;      // Nonzero if there are async msgs waiting
75         int input_waiting;      // Nonzero if there is client input waiting
76         int can_receive_im;     // Session is capable of receiving instant messages
77
78         // Client information
79         char cs_clientinfo[256];// if its a unix domain socket, some info for logging.
80         uid_t cs_UDSclientUID;  // the uid of the client when talking via UDS
81         char cs_clientname[32]; // name of client software
82         char cs_host[64];       // host logged in from
83         char cs_addr[64];       // address logged in from
84
85         // The Internet type of thing
86         char cs_principal_id[256];              // User principal identity for XMPP, ActivityPub, etc.
87         char cs_inet_email[128];                // Return address of outbound Internet mail
88         char cs_inet_other_emails[1024];        // User's other valid Internet email addresses
89         char cs_inet_fn[128];                   // Friendly-name of outbound Internet mail
90
91         FILE *download_fp;      // Fields relating to file transfer
92         size_t download_fp_total;
93         char download_desired_section[128];
94         FILE *upload_fp;
95         char upl_file[256];
96         char upl_path[PATH_MAX];
97         char upl_comment[256];
98         char upl_filedir[PATH_MAX];
99         char upl_mimetype[64];
100
101         struct ctdluser user;   // Database record buffers
102         struct ctdlroom room;
103
104         // A linked list of all instant messages sent to us.
105         struct ExpressMessage *FirstExpressMessage;
106         int disable_exp;        // Set to 1 to disable incoming pages
107         int newmail;            // Other sessions increment this
108
109         // Preferred MIME formats
110         char preferred_formats[256];
111         int msg4_dont_decode;
112
113         // Dynamically allocated session data
114         void *session_specific_data;            // Used by individual protocol modules
115         struct cit_ical *CIT_ICAL;              // calendaring data
116         struct ma_info *ma;                     // multipart/alternative data
117         const char *ServiceName;                // readable purpose of this session
118         long tcp_port;
119         char *ldap_dn;                          // DN of user when using AUTHMODE_LDAP
120
121         void (*h_command_function) (void) ;     // service command function
122         void (*h_async_function) (void) ;       // do async msgs function
123         void (*h_greeting_function) (void) ;    // greeting function for session startup
124
125         long *cached_msglist;                   // results of the previous CtdlForEachMessage()
126         int cached_num_msgs;
127
128         char vcard_updated_by_ldap;             // !0 iff ldap changed the vcard, treat as aide update
129 };
130
131 #define CC MyContext()
132
133 extern pthread_key_t MyConKey;                  // TSD key for MyContext()
134 extern int num_sessions;
135 extern CitContext masterCC;
136 extern CitContext *ContextList;
137
138 CitContext *MyContext (void);
139 void RemoveContext (struct CitContext *);
140 CitContext *CreateNewContext (void);
141 void context_cleanup(void);
142 void kill_session (int session_to_kill);
143 void InitializeMasterCC(void);
144 void dead_session_purge(int force);
145 void set_async_waiting(struct CitContext *ccptr);
146
147 CitContext *CloneContext(CitContext *CloneMe);
148
149 // forcibly close and flush fd's on shutdown
150 void terminate_all_sessions(void);
151
152 void terminate_idle_sessions(void);
153 int CtdlTerminateOtherSession (int session_num);
154 // bits returned by CtdlTerminateOtherSession
155 #define TERM_FOUND      0x01
156 #define TERM_ALLOWED    0x02
157 #define TERM_KILLED     0x03
158 #define TERM_NOTALLOWED -1
159
160 // Bind a thread to a context.  (It's inline merely to speed things up.)
161 static INLINE void become_session(CitContext *which_con) {
162         pthread_setspecific(MyConKey, (void *)which_con );
163 }
164
165 #endif // CONTEXT_H