source: code/icb.h@ 8871953

Last change on this file since 8871953 was a2fadb4, checked in by Mike Belopuhov <mike@…>, 11 years ago

Get rid of ICB_MSGSIZE+1, fix various off-by-ones and do some truncation
where necessary.

  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[cd7b81d]1/*
2 * Copyright (c) 2009 Mike Belopuhov
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 */
16
17#include <sys/queue.h>
[fa271b8]18#include <sys/tree.h>
[cd7b81d]19
[a2fadb4]20/*
21 * ICB packet has the following format: <length><type><data>
22 * <lenght> is one byte length of the packet excluding the <lenght> byte;
23 * <type> is one byte type of the packet;
24 * <data> might not be null-terminated.
25 */
[cd7b81d]26#define ICB_MSGSIZE 256
27
28#define ICB_MAXGRPLEN 32
29#define ICB_MAXNICKLEN 32
30#define ICB_MAXPASSLEN 32
31#define ICB_MAXTOPICLEN 160
[1d2125a]32#define ICB_MTABLEN 50 /* XXX */
[cd7b81d]33
34#define ICB_M_LOGIN 'a'
35#define ICB_M_OPEN 'b'
36#define ICB_M_PERSONAL 'c'
37#define ICB_M_STATUS 'd'
38enum {
39 STATUS_ARRIVE,
40 STATUS_BOOT,
41 STATUS_DEPART,
[9195a6a]42 STATUS_HELP,
[cd7b81d]43 STATUS_NAME,
[bf02a60]44 STATUS_NOBEEP,
[cd7b81d]45 STATUS_NOTIFY,
46 STATUS_SIGNON,
47 STATUS_SIGNOFF,
48 STATUS_STATUS,
49 STATUS_TOPIC,
50 STATUS_WARNING
51};
52#define ICB_M_ERROR 'e'
53#define ICB_M_IMPORTANT 'f'
54#define ICB_M_EXIT 'g'
55#define ICB_M_COMMAND 'h'
56#define ICB_M_CMDOUT 'i'
57enum {
58 CMDOUT_CO,
59 CMDOUT_EC,
60 CMDOUT_WG,
[4284008]61 CMDOUT_WH,
62 CMDOUT_WL,
[cd7b81d]63};
64#define ICB_M_PROTO 'j'
65#define ICB_M_BEEP 'k'
66#define ICB_M_PING 'l'
67#define ICB_M_PONG 'm'
68#define ICB_M_NOOP 'n'
69
70#define ICB_M_SEP '\001'
71
72struct icb_group;
73
74struct icb_session {
[fa271b8]75 uint64_t id;
[cd7b81d]76 char nick[ICB_MAXNICKLEN];
77 char client[ICB_MAXNICKLEN];
78 char host[MAXHOSTNAMELEN];
[a2fadb4]79 char buffer[ICB_MSGSIZE];
[cd7b81d]80 struct event ev;
81 struct bufferevent *bev;
82 struct icb_group *group;
83 size_t length;
[c9402c3]84 size_t rlen;
[cd7b81d]85 time_t login;
86 time_t last;
87 int port;
88 uint32_t flags;
89#define SETF(t, f) ((t) |= (f))
90#define CLRF(t, f) ((t) &= ~(f))
91#define ISSETF(t, f) ((t) & (f))
92#define ICB_SF_PROTOSENT 0x01
93#define ICB_SF_LOGGEDIN 0x02
94#define ICB_SF_NOGROUP 0x08
[bf02a60]95#define ICB_SF_NOBEEP 0x10
96#define ICB_SF_NOBEEP2 0x20
[fa271b8]97
98 /* session tree */
99 RB_ENTRY(icb_session) node;
100
101 /* in-group linkage */
102 LIST_ENTRY(icb_session) entry;
[cd7b81d]103};
104
105struct icb_group {
106 char name[ICB_MAXGRPLEN];
107 char mpass[ICB_MAXPASSLEN];
108 char topic[ICB_MAXTOPICLEN];
109 LIST_ENTRY(icb_group) entry;
110 LIST_HEAD(, icb_session) sess;
[4284008]111 struct icb_session *mod;
[cd7b81d]112};
113
114LIST_HEAD(icb_grlist, icb_group) groups;
115
116struct icbd_callbacks {
117 void (*drop)(struct icb_session *, char *);
118 void (*log)(struct icb_session *, int, const char *, ...);
119 void (*send)(struct icb_session *, char *, ssize_t);
120};
121
122#ifndef nitems
123#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
124#endif
125
126/* cmd.c */
127void *icb_cmd_lookup(char *);
128
129/* icb.c */
130struct icb_group *icb_addgroup(struct icb_session *, char *, char *);
[626f420]131void icb_cmdout(struct icb_session *, int, char *);
132void icb_delgroup(struct icb_group *);
133void icb_error(struct icb_session *, const char *, ...);
134void icb_init(struct icbd_callbacks *);
135void icb_input(struct icb_session *);
136inline int icb_ismod(struct icb_group *, struct icb_session *);
[f3c60e6]137int icb_modpermit(struct icb_session *, int);
[626f420]138int icb_pass(struct icb_group *, struct icb_session *,
139 struct icb_session *);
140void icb_privmsg(struct icb_session *, char *, char *);
141void icb_remove(struct icb_session *, char *);
142void icb_sendfmt(struct icb_session *, const char *, ...);
143void icb_start(struct icb_session *);
144void icb_status(struct icb_session *, int, const char *, ...);
145void icb_status_group(struct icb_group *, struct icb_session *,
146 int, const char *, ...);
147void icb_who(struct icb_session *, struct icb_group *);
[b7bc432]148int icb_vis(char *, const char *, size_t, int);
[cd7b81d]149
150/* callbacks from icbd.c */
[626f420]151void (*icb_drop)(struct icb_session *, char *);
152void (*icb_log)(struct icb_session *, int, const char *, ...);
153void (*icb_send)(struct icb_session *, char *, ssize_t);
Note: See TracBrowser for help on using the repository browser.