]> andersk Git - moira.git/blame_incremental - server/mr_server.h
use CODE=ANSI_C option to proc
[moira.git] / server / mr_server.h
... / ...
CommitLineData
1/*
2 * $Source$
3 * $Author$
4 * $Header$
5 *
6 * Copyright (C) 1987 by the Massachusetts Institute of Technology
7 *
8 */
9
10#include <sys/types.h>
11#include <sys/uio.h>
12#include <sys/socket.h>
13#include <netinet/in.h>
14#include "mr_proto.h"
15#include <moira_site.h>
16#include <krb.h>
17#include <com_err.h>
18#include <stdlib.h>
19#include <stdarg.h>
20
21typedef struct returned_tuples {
22 struct returned_tuples *next;
23 OPERATION op;
24 mr_params *retval;
25} returned_tuples;
26
27/*
28 * This should be in the kerberos header file.
29 */
30
31struct krbname {
32 char name[ANAME_SZ];
33 char inst[INST_SZ];
34 char realm[REALM_SZ];
35};
36
37/*
38 * This structure holds all per-client information; one of these is
39 * allocated for each active client.
40 */
41
42typedef struct _client {
43 OPERATION pending_op; /* Primary pending operation */
44 CONNECTION con; /* Connection to the client */
45 int action; /* what action is pending? */
46 mr_params *args, reply;
47 int id; /* Unique id of client */
48 struct sockaddr_in haddr; /* IP address of client */
49 char clname[MAX_K_NAME_SZ]; /* Name client authenticated to */
50 struct krbname kname; /* Parsed version of the above */
51 int users_id; /* Moira-internal ID of authenticated user */
52 int client_id; /* Moira-internal ID of client for modby field */
53 returned_tuples *first, *last;
54 time_t last_time_used; /* Last time connection used */
55 char entity[9]; /* entity on other end of the connection */
56} client;
57
58/*
59 * States
60 */
61
62#define CL_DEAD 0
63#define CL_STARTING 1
64
65/*
66 * Actions.
67 */
68
69#define CL_ACCEPT 0
70#define CL_RECEIVE 1
71#define CL_SEND 2
72
73extern char *krb_realm;
74
75/*
76 * Debugging options.
77 */
78
79extern int log_flags;
80
81#define LOG_CONNECT 0x0001
82#define LOG_REQUESTS 0x0002
83#define LOG_ARGS 0x0004
84#define LOG_RESP 0x0008
85#define LOG_RES 0x0010
86#define LOG_VALID 0x0020
87#define LOG_SQL 0x0040
88#define LOG_GDSS 0x0080
89
90
91/* max length of query argument allowed */
92#define ARGLEN 257
93/* Used to setup static argv, maximum argc */
94#define QMAXARGS 22
95
96/* statistics on number of queries by version number */
97extern int newqueries, oldqueries;
98
99/* Maximum and minimum values that will ever be chosen for IDs */
100#define MAX_ID_VALUE 31999
101#define MIN_ID_VALUE 100
102
103/* Sleepy states for the server! */
104#define AWAKE 0
105#define SLEEPY 1
106#define ASLEEP 2
107#define GROGGY 3
108extern int dormant;
109
110/* state for the incremental update system */
111extern int inc_running, inc_pid;
112extern time_t inc_started, now;
113#define INC_TIMEOUT (3 * 60) /* 3 minutes */
114
115
116#define SQL_NO_MATCH 1403 /* oracle, not ingres (= 100) */
117
118/* prototypes from gdb */
119int gdb_init(void);
120int gdb_debug(int flag);
121void start_accepting_client(CONNECTION, OPERATION, CONNECTION *,
122 char *, int *, TUPLE *);
123int initialize_operation(OPERATION, int (*init_function)(), char *,
124 int (*cancel_function)());
125int reset_operation(OPERATION);
126int delete_operation(OPERATION);
127int start_replying_to_client(OPERATION, CONNECTION, int, char *, char *);
128int op_select(LIST_OF_OPERATIONS, int, fd_set *, fd_set *, fd_set *,
129 struct timeval *);
130
131/* prototypes from libmoira */
132struct save_queue *sq_create(void);
133int sq_save_data(struct save_queue *sq, void *data);
134int sq_save_unique_data(struct save_queue *sq, void *data);
135int sq_save_args(int argc, void *argv[], struct save_queue *sq);
136int sq_get_data(struct save_queue *sq, void *data);
137int sq_remove_data(struct save_queue *sq, void *data);
138int sq_empty(struct save_queue *sq);
139void sq_destroy(struct save_queue *sq);
140
141void send_zgram(char *instance, char *buf);
142void critical_alert(char *, char *, ...);
143void mr_destroy_reply(mr_params *reply);
144int gdss2et(int);
145
146/* prototypes from increment.dc */
147void incremental_init(void);
148void next_incremental(void);
149void incremental_update(void);
150void incremental_flush(void);
151
152/* prototypes from qrtn.dc */
153void dbmserr(void);
154void dosql(char *buffers[]);
155int mr_open_database(void);
156void mr_close_database(void);
157int mr_process_query(client *cl, char *name, int argc, char *argv_ro[],
158 int (*action)(), char *actarg);
159int mr_check_access(client *cl, char *name, int argc, char *argv_ro[]);
160void sanity_check_queries(void);
161int set_krb_mapping(char *name, char *login, int ok, int *kid, int *uid);
162int find_member(char *list_type, int list_id, client *cl);
163int do_for_all_rows(char *query, int count, int (*action)(), int actarg);
164int build_qual(char *fmt, int argc, char *argv[], char *qual);
165
166
167/* prototyoes from qsupport.dc */
168int set_pop_usage(int id, int cnt);
169
170/* prototypes from qvalidate.dc */
171void sanity_check_database(void);
172int add_string(char *name);
173int convert_wildcards(char *arg);
174
175/* prototypes from mr_main.c */
176void clist_delete(client *cp);
177
178/* prototypes from mr_sauth.c */
179void do_auth(client *cl);
180
181/* prototypes from mr_scall.c */
182void do_client(client *cp);
183int trigger_dcm(int dummy0, int dummy1, client *cl);
184
185/* prototypes from mr_shutdown.c */
186void sigshut(int);
187void do_shutdown(client *cl);
188
189/* prototypes from mr_util.c */
190char *requote(char *buf, char *cp, int len);
191void log_args(char *tag, int version, int argc, char **argv);
192void mr_com_err(const char *whoami, long code, const char *fmt, va_list pvar);
193int mr_trim_args(int argc, char **argv);
194char **mr_copy_args(char **argv, int argc);
This page took 0.402937 seconds and 5 git commands to generate.