2009-02-19 16:14:09 +00:00
|
|
|
/*
|
|
|
|
* uhub - A tiny ADC p2p connection hub
|
2010-01-19 21:58:03 +00:00
|
|
|
* Copyright (C) 2007-2010, Jan Vidar Krey
|
2009-02-19 16:14:09 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HAVE_UHUB_USER_H
|
|
|
|
#define HAVE_UHUB_USER_H
|
|
|
|
|
|
|
|
struct hub_info;
|
2009-05-19 20:57:50 +00:00
|
|
|
struct hub_iobuf;
|
2010-04-05 13:51:18 +00:00
|
|
|
struct flood_control;
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
enum user_state
|
|
|
|
{
|
|
|
|
state_protocol = 0, /**<< "User must send a valid protocol handshake" */
|
|
|
|
state_identify = 1, /**<< "User must send identification message (INF) " */
|
|
|
|
state_verify = 2, /**<< "User must send password to verify identification" */
|
|
|
|
state_normal = 3, /**<< "User is logged in." */
|
|
|
|
state_cleanup = 4, /**<< "User is disconnected, but other users need to be notified." */
|
|
|
|
state_disconnected = 5, /**<< "User is disconnected" */
|
|
|
|
};
|
|
|
|
|
2009-03-20 17:37:05 +00:00
|
|
|
enum user_flags
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
feature_base = 0x00000001, /** BASE: Basic configuration (required by all clients) */
|
|
|
|
feature_auto = 0x00000002, /** AUT0: Automatic nat detection traversal */
|
|
|
|
feature_bbs = 0x00000004, /** BBS0: Bulletin board system (not supported) */
|
|
|
|
feature_ucmd = 0x00000008, /** UCMD: User commands (not supported by this software) */
|
|
|
|
feature_zlif = 0x00000010, /** ZLIF: gzip stream compression (not supported) */
|
|
|
|
feature_tiger = 0x00000020, /** TIGR: Client supports the tiger hash algorithm */
|
|
|
|
feature_bloom = 0x00000040, /** BLO0: Bloom filter (not supported) */
|
|
|
|
feature_ping = 0x00000080, /** PING: Hub pinger information extension */
|
|
|
|
feature_link = 0x00000100, /** LINK: Hub link (not supported) */
|
2009-08-03 14:20:32 +00:00
|
|
|
feature_adcs = 0x00000200, /** ADCS: ADC over TLS/SSL */
|
2010-04-05 10:45:35 +00:00
|
|
|
feature_bas0 = 0x00000400, /** BAS0: Obsolete pre-ADC/1.0 protocol version */
|
2013-02-13 20:10:48 +00:00
|
|
|
flag_opnotify = 0x00200000, /** User should receive operation notifications. NOTE: Only operators should have this flag! */
|
2010-04-05 13:51:18 +00:00
|
|
|
flag_flood = 0x00400000, /** User has been notified about flooding. */
|
2010-01-19 21:58:03 +00:00
|
|
|
flag_muted = 0x00800000, /** User is muted (cannot chat) */
|
2009-02-19 16:14:09 +00:00
|
|
|
flag_ignore = 0x01000000, /** Ignore further reads */
|
2009-03-21 01:58:53 +00:00
|
|
|
flag_maxbuf = 0x02000000, /** Hit max buf read, ignore msg */
|
|
|
|
flag_choke = 0x04000000, /** Choked: Cannot send, waiting for write event */
|
|
|
|
flag_want_read = 0x08000000, /** Need to read (SSL) */
|
|
|
|
flag_want_write = 0x10000000, /** Need to write (SSL) */
|
|
|
|
flag_user_list = 0x20000000, /** Send queue bypass (when receiving the send queue) */
|
2009-07-25 01:54:59 +00:00
|
|
|
flag_pipeline = 0x40000000, /** Hub message pipelining */
|
|
|
|
flag_nat = 0x80000000, /** nat override enabled */
|
2009-02-19 16:14:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum user_quit_reason
|
|
|
|
{
|
|
|
|
quit_unknown = 0,
|
|
|
|
quit_disconnected = 1, /** User disconnected */
|
|
|
|
quit_kicked = 2, /** User was kicked */
|
|
|
|
quit_banned = 3, /** User was banned */
|
|
|
|
quit_timeout = 4, /** User timed out (no data for a while) */
|
|
|
|
quit_send_queue = 5, /** User's send queue was overflowed */
|
|
|
|
quit_memory_error = 6, /** Not enough memory available */
|
|
|
|
quit_socket_error = 7, /** A socket error occured */
|
|
|
|
quit_protocol_error = 8, /** Fatal protocol error */
|
|
|
|
quit_logon_error = 9, /** Unable to login (wrong password, CID/PID, etc) */
|
2010-02-07 22:08:04 +00:00
|
|
|
quit_update_error = 10, /** Update error. INF update changed share/slot info and no longer satisfies the hub limits. */
|
|
|
|
quit_hub_disabled = 11, /** Hub is disabled. No new connections allowed */
|
|
|
|
quit_ghost_timeout = 12, /** The user is a ghost, and trying to login from another connection */
|
2009-02-19 16:14:09 +00:00
|
|
|
};
|
|
|
|
|
2009-08-02 20:53:25 +00:00
|
|
|
/** Returns an apropriate string for the given quit reason */
|
|
|
|
extern const char* user_get_quit_reason_string(enum user_quit_reason);
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
struct hub_user_info
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-03-20 15:40:59 +00:00
|
|
|
sid_t sid; /** session ID */
|
2009-02-19 16:14:09 +00:00
|
|
|
char nick[MAX_NICK_LEN+1]; /** User's nick name */
|
2011-12-09 09:29:50 +00:00
|
|
|
char cid[MAX_CID_LEN+1]; /** global client ID */
|
|
|
|
char user_agent[MAX_UA_LEN+1];/** User agent string */
|
2009-09-28 21:15:15 +00:00
|
|
|
struct ip_addr_encap addr; /** User's IP address */
|
2009-02-19 16:14:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This struct contains additional information about the user, such
|
|
|
|
* as the number of bytes and files shared, and the number of hubs the
|
|
|
|
* user is connected to, etc.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
struct hub_user_limits
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-10-06 15:40:09 +00:00
|
|
|
uint64_t shared_size; /** Shared size in bytes */
|
|
|
|
size_t shared_files; /** The number of shared files */
|
|
|
|
size_t upload_slots; /** The number of upload slots */
|
|
|
|
size_t hub_count_user; /** The number of hubs connected as user */
|
|
|
|
size_t hub_count_registered; /** The number of hubs connected as registered user */
|
|
|
|
size_t hub_count_operator; /** The number of hubs connected as operator */
|
|
|
|
size_t hub_count_total; /** The number of hubs connected to in total */
|
2009-02-19 16:14:09 +00:00
|
|
|
};
|
|
|
|
|
2013-02-13 20:10:13 +00:00
|
|
|
enum user_type
|
|
|
|
{
|
|
|
|
user_type_client, /** A user connected normally as an ADC client */
|
|
|
|
user_type_bot, /** Not really a user, but a bot inside the hub */
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef void (*bot_recv_msg)(struct hub_user*, struct adc_message* msg);
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
struct hub_user
|
2009-05-26 17:46:51 +00:00
|
|
|
{
|
2009-10-06 15:40:09 +00:00
|
|
|
struct hub_user_info id; /** Contains nick name and CID */
|
2011-12-09 09:29:50 +00:00
|
|
|
enum auth_credentials credentials; /** see enum user_credentials */
|
|
|
|
enum user_state state; /** see enum user_state */
|
2013-02-13 20:10:13 +00:00
|
|
|
enum user_type type;
|
2012-05-09 21:27:06 +00:00
|
|
|
uint32_t flags; /** see enum user_flags */
|
2009-10-06 15:40:09 +00:00
|
|
|
struct linked_list* feature_cast; /** Features supported by feature cast */
|
|
|
|
struct adc_message* info; /** ADC 'INF' message (broadcasted to everyone joining the hub) */
|
|
|
|
struct hub_info* hub; /** The hub instance this user belong to */
|
2013-02-13 20:10:13 +00:00
|
|
|
void* ptr;
|
2012-09-28 07:20:33 +00:00
|
|
|
struct ioq_recv* recv_queue;
|
|
|
|
struct ioq_send* send_queue;
|
2009-10-06 15:40:09 +00:00
|
|
|
struct net_connection* connection; /** Connection data */
|
|
|
|
struct hub_user_limits limits; /** Data used for limitation */
|
|
|
|
enum user_quit_reason quit_reason; /** Quit reason (see user_quit_reason) */
|
2010-04-05 13:51:18 +00:00
|
|
|
struct flood_control flood_chat;
|
|
|
|
struct flood_control flood_connect;
|
|
|
|
struct flood_control flood_search;
|
|
|
|
struct flood_control flood_update;
|
|
|
|
struct flood_control flood_extras;
|
2009-02-19 16:14:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a user with the given socket descriptor.
|
|
|
|
* This basically only allocates memory and initializes all variables
|
|
|
|
* to an initial state.
|
|
|
|
*
|
|
|
|
* state is set to state_protocol.
|
|
|
|
*
|
|
|
|
* @param sd socket descriptor associated with the user
|
|
|
|
* @return User object or NULL if not enough memory is available.
|
|
|
|
*/
|
2009-10-07 15:37:31 +00:00
|
|
|
extern struct hub_user* user_create(struct hub_info* hub, struct net_connection* con, struct ip_addr_encap* addr);
|
2013-02-13 20:10:13 +00:00
|
|
|
extern struct hub_user* user_create_bot(struct hub_info* hub, const char* nick, const char* description, bot_recv_msg msg_handler);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a user.
|
|
|
|
*
|
|
|
|
* !WRONG! If the user is logged in a quit message is issued.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_destroy(struct hub_user* user);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This associates a INF message to the user.
|
|
|
|
* If the user already has a INF message associated, then this is
|
|
|
|
* released before setting the new one.
|
2009-05-16 10:32:48 +00:00
|
|
|
*
|
|
|
|
* @param info new inf message (can be NULL)
|
2009-02-19 16:14:09 +00:00
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_set_info(struct hub_user* user, struct adc_message* info);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
2009-05-16 10:32:48 +00:00
|
|
|
/**
|
|
|
|
* Update a user's INF message.
|
|
|
|
* Will parse replace all ellements in the user's inf message with
|
|
|
|
* the parameters from the cmd (merge operation).
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_update_info(struct hub_user* user, struct adc_message* cmd);
|
2009-05-16 10:32:48 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/**
|
|
|
|
* Specify a user's state.
|
|
|
|
* NOTE: DON'T, unless you know what you are doing.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_set_state(struct hub_user* user, enum user_state);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns 1 if the user is in state state_normal, or 0 otherwise.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern int user_is_logged_in(struct hub_user* user);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
2009-06-22 17:38:24 +00:00
|
|
|
/**
|
|
|
|
* Returns 1 if the user is in state_protocol.
|
|
|
|
* Returns 0 otherwise.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern int user_is_protocol_negotiating(struct hub_user* user);
|
2009-06-22 17:38:24 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/**
|
|
|
|
* Returns 1 if the user is in state_protocol, state_identify or state_verify.
|
|
|
|
* Returns 0 otherwise.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern int user_is_connecting(struct hub_user* user);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns 1 only if the user is in state_cleanup or state_disconnected.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern int user_is_disconnecting(struct hub_user* user);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
2009-05-18 15:52:30 +00:00
|
|
|
/**
|
|
|
|
* Returns 1 if a user is protected, which includes users
|
|
|
|
* having any form of elevated privileges.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern int user_is_protected(struct hub_user* user);
|
2009-05-18 15:52:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns 1 if a user is registered, with or without privileges.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern int user_is_registered(struct hub_user* user);
|
2009-05-18 15:52:30 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/**
|
|
|
|
* User supports the protocol extension as given in fourcc.
|
|
|
|
* This is usually set while the user is connecting, but can
|
|
|
|
* also be used to subscribe to a new class of messages from the
|
|
|
|
* hub.
|
|
|
|
*
|
|
|
|
* @see enum user_flags
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_support_add(struct hub_user* user, int fourcc);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* User no longer supports the protocol extension as given in fourcc.
|
|
|
|
* This can be used to unsubscribe to certain messages generated by
|
|
|
|
* the hub.
|
|
|
|
* @see enum user_flags
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_support_remove(struct hub_user* user, int fourcc);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
2009-09-28 21:15:15 +00:00
|
|
|
extern const char* user_get_address(struct hub_user* user);
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/**
|
|
|
|
* Sets the nat override flag for a user, this allows users on the same
|
|
|
|
* subnet as a natted hub to spoof their IP in order to use active mode
|
|
|
|
* on a natted hub.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_set_nat_override(struct hub_user* user);
|
|
|
|
extern int user_is_nat_override(struct hub_user* user);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a flag. @see enum user_flags
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_flag_set(struct hub_user* user, enum user_flags flag);
|
|
|
|
extern void user_flag_unset(struct hub_user* user, enum user_flags flag);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a flag. @see enum user_flags
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern int user_flag_get(struct hub_user* user, enum user_flags flag);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a user supports 'feature' for feature casting (basis for 'Fxxx' messages)
|
|
|
|
* The feature cast is specified as the 'SU' argument to the user's
|
|
|
|
* INF-message.
|
|
|
|
*
|
|
|
|
* @param feature a feature to lookup (example: 'TCP4' or 'UDP4')
|
|
|
|
* @return 1 if 'feature' supported, or 0 otherwise
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern int user_have_feature_cast_support(struct hub_user* user, char feature[4]);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set feature cast support for feature.
|
|
|
|
*
|
|
|
|
* @param feature a feature to lookup (example: 'TCP4' or 'UDP4')
|
|
|
|
* @return 1 if 'feature' supported, or 0 otherwise
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern int user_set_feature_cast_support(struct hub_user* u, char feature[4]);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove all feature cast support features.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_clear_feature_cast_support(struct hub_user* u);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
2009-05-26 17:46:51 +00:00
|
|
|
/**
|
|
|
|
* Mark the user with a want-write flag, meaning it should poll for writability.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_net_io_want_write(struct hub_user* user);
|
2009-05-26 17:46:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark the user with a want read flag, meaning it should poll for readability.
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
extern void user_net_io_want_read(struct hub_user* user);
|
2009-07-19 00:12:50 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
#endif /* HAVE_UHUB_USER_H */
|
|
|
|
|
|
|
|
|