Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #ifndef KAMID_H
18 #define KAMID_H
20 #include "compat.h"
22 #include <limits.h>
23 #include <stdint.h>
24 #include <tls.h>
26 /* TODO: make these customizable */
27 #define KD_CONF_FILE "/etc/kamid.conf"
28 #define KD_USER "_kamid"
29 #define KD_SOCKET "/var/run/kamid.sock"
31 #define IMSG_DATA_SIZE(imsg) ((imsg).hdr.len - IMSG_HEADER_SIZE)
33 #define MIN(a, b) ((a) < (b) ? (a) : (b))
35 struct imsgev {
36 struct imsgbuf ibuf;
37 void (*handler)(int, short, void *);
38 struct event ev;
39 short events;
40 };
42 enum imsg_type {
43 IMSG_NONE,
44 IMSG_CTL_LOG_VERBOSE,
45 IMSG_CTL_RELOAD,
46 IMSG_CONTROLFD,
47 IMSG_STARTUP,
48 IMSG_RECONF_CONF,
49 IMSG_RECONF_PKI,
50 IMSG_RECONF_PKI_CERT,
51 IMSG_RECONF_PKI_KEY,
52 IMSG_RECONF_LISTEN,
53 IMSG_RECONF_END,
54 IMSG_AUTH,
55 IMSG_AUTH_DIR,
56 IMSG_AUTH_TLS,
57 IMSG_CONN_GONE,
58 IMSG_BUF,
59 IMSG_MSIZE,
60 IMSG_CLOSE,
61 };
63 struct kd_options_conf {
64 /* ... */
65 };
67 enum table_type {
68 T_NONE = 0,
69 T_HASH = 0x01,
70 };
72 struct table {
73 char t_name[LINE_MAX];
74 enum table_type t_type;
75 char t_path[PATH_MAX];
76 void *t_handle;
77 struct table_backend *t_backend;
78 };
80 struct table_backend {
81 const char *name;
82 int (*open)(struct table *);
83 int (*add)(struct table *, const char *, const char *);
84 int (*lookup)(struct table *, const char *, char **);
85 void (*close)(struct table *);
86 };
88 /* table_static.c */
89 extern struct table_backend table_static;
91 #define L_NONE 0x0
92 #define L_TLS 0x1
93 struct kd_listen_conf {
94 STAILQ_ENTRY(kd_listen_conf) entry;
95 uint32_t id;
96 uint32_t flags;
97 int fd;
98 char iface[LINE_MAX];
99 uint16_t port;
100 struct table *auth_table;
101 char pki[LINE_MAX];
102 struct event ev;
103 struct tls *ctx;
104 };
106 struct kd_pki_conf {
107 STAILQ_ENTRY(kd_pki_conf) entry;
108 char name[LINE_MAX];
109 uint8_t *cert;
110 size_t certlen;
111 uint8_t *key;
112 size_t keylen;
113 struct tls_config *tlsconf;
114 };
116 struct kd_tables_conf {
117 STAILQ_ENTRY(kd_tables_conf) entry;
118 struct table *table;
119 };
121 struct kd_conf {
122 struct kd_options_conf kd_options;
123 STAILQ_HEAD(kd_pki_conf_head, kd_pki_conf) pki_head;
124 STAILQ_HEAD(kd_tables_conf_head, kd_tables_conf) table_head;
125 STAILQ_HEAD(kd_listen_conf_head, kd_listen_conf) listen_head;
126 };
128 struct kd_auth_req {
129 uint32_t listen_id;
130 char hash[128+1];
131 };
133 /*
134 * 9p message header.
136 * The message itself is len bytes long (counting the whole header
137 * too.)
138 */
139 struct np_msg_header {
140 uint32_t len;
141 uint8_t type;
142 uint16_t tag;
143 };
145 /* useful constants */
146 #define HEADERSIZE (4 + 1 + 2)
147 #define VERSION9P "9P2000"
148 #define MSIZE9P ((uint32_t)4*1024*1024)
149 #define NOTAG ((uint16_t)~0U)
150 #define NOFID ((uint32_t)~0U)
151 #define NOUID (-1)
152 #define QIDSIZE 13
153 #define MAXWELEM 16
155 /* bits in Qid.type */
156 #define QTDIR 0x80 /* type bit for directories */
157 #define QTAPPEND 0x40 /* type bit for append only files */
158 #define QTEXCL 0x20 /* type bit for exclusive use files */
159 #define QTMOUNT 0x10 /* type bit for mounted channel */
160 #define QTAUTH 0x08 /* type bit for authentication file */
161 #define QTTMP 0x04 /* type bit for non-backed-up file */
162 #define QTSYMLINK 0x02 /* type bit for symbolic link */
163 #define QTFILE 0x00 /* type bits for plain file */
165 /* Topen mode/flags */
166 #define KOREAD 0x00
167 #define KOWRITE 0x01
168 #define KORDWR 0x02
169 #define KOEXEC 0x03
170 #define KOTRUNC 0x10
171 #define KORCLOSE 0x40
173 /* 9p message types */
174 enum {
175 Tversion = 100,
176 Rversion,
177 Tauth = 102,
178 Rauth,
179 Tattach = 104,
180 Rattach,
181 Terror = 106, /* illegal */
182 Rerror,
183 Tflush = 108,
184 Rflush,
185 Twalk = 110,
186 Rwalk,
187 Topen = 112,
188 Ropen,
189 Tcreate = 114,
190 Rcreate,
191 Tread = 116,
192 Rread,
193 Twrite = 118,
194 Rwrite,
195 Tclunk = 120,
196 Rclunk,
197 Tremove = 122,
198 Rremove,
199 Tstat = 124,
200 Rstat,
201 Twstat = 126,
202 Rwstat,
203 Tmax,
205 /*
206 * plan9ports' include/fcall.h also has a
208 * Topenfd = 98,
209 * Ropenfd,
211 * which it's not mentioned in the 9p "rfc" over at
212 * 9p.cat-v.org. Ignoring that for now.
213 */
214 };
216 /* kamid.c */
217 extern int verbose;
218 int main_imsg_compose_listener(int, int, uint32_t, const void *, uint16_t);
219 void merge_config(struct kd_conf *, struct kd_conf *);
221 struct kd_conf *config_new_empty(void);
222 void config_clear(struct kd_conf *);
224 /* parse.y */
225 struct kd_conf *parse_config(const char *);
226 int cmdline_symset(char *);
228 #endif