Codebase list cyrus-imapd / debian/2.4.17+caldav_beta9-11 imap / protocol.h
debian/2.4.17+caldav_beta9-11

Tree @debian/2.4.17+caldav_beta9-11 (Download .tar.gz)

protocol.h @debian/2.4.17+caldav_beta9-11raw · history · blame

/* protocol.h -- client-side protocol abstraction
 *
 * Copyright (c) 1994-2008 Carnegie Mellon University.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. The name "Carnegie Mellon University" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For permission or any legal
 *    details, please contact
 *      Carnegie Mellon University
 *      Center for Technology Transfer and Enterprise Creation
 *      4615 Forbes Avenue
 *      Suite 302
 *      Pittsburgh, PA  15213
 *      (412) 268-7393, fax: (412) 268-7395
 *      innovation@andrew.cmu.edu
 *
 * 4. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by Computing Services
 *     at Carnegie Mellon University (http://www.cmu.edu/computing/)."
 *
 * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
 * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
 * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 * $Id: protocol.h,v 1.12 2010/01/06 17:01:38 murch Exp $
 */

#ifndef _INCLUDED_PROTOCOL_H
#define _INCLUDED_PROTOCOL_H

#include "saslclient.h"

#define MAX_CAPA 8

enum {
    /* generic capabilities */
    CAPA_AUTH		= (1 << 0),
    CAPA_STARTTLS	= (1 << 1),
    CAPA_COMPRESS	= (1 << 2)

    /*
      protocol specific capabilites MUST be in the range
      (1 << 3) .. (1 << MAX_CAPA)
    */
};

enum {
    /* protocol types */
    TYPE_STD		= 0,	/* protocol fits standard template */
    TYPE_SPEC		= 1	/* non-standard needs special functions */
};

struct stdprot_t;
struct backend;

struct banner_t {
    u_char auto_capa;		/* capability response sent automatically
				   in banner? */
    char *resp;			/* end of banner response */
};

struct capa_t {
    const char *str;
    unsigned long flag;
};

struct capa_cmd_t {
    const char *cmd;		/* [OPTIONAL] capability command string */
    const char *arg;		/* [OPTIONAL] capability command argument */
    const char *resp;		/* end of capability response */
    char *(*parse_mechlist)(const char *str, struct stdprot_t *std);
				/* [OPTIONAL] parse capability string,
				   returns space-separated list of mechs */
    struct capa_t capa[MAX_CAPA+1];/* list of capabilities to parse for
				      (MUST end with NULL entry) */
};

struct tls_cmd_t {
    const char *cmd;		/* TLS command string */
    const char *ok;		/* start TLS prompt */
    const char *fail;		/* failure response */
    u_char auto_capa;		/* capability response sent automatically
				   after TLS? */
};

struct simple_cmd_t {
    const char *cmd;		/* command string */
    const char *unsol;		/* unsolicited response */
    const char *ok;		/* success response */
};

struct stdprot_t {
    /* standard protocol that fits template */
    struct banner_t banner;
    struct capa_cmd_t capa_cmd;
    struct tls_cmd_t tls_cmd;
    struct sasl_cmd_t sasl_cmd;
    struct simple_cmd_t compress_cmd;
    struct simple_cmd_t ping_cmd;
    struct simple_cmd_t logout_cmd;
};

struct protocol_t {
    const char *service;	/* INET service name */
    const char *sasl_service;	/* SASL service name */
    unsigned type;
    union {
	struct stdprot_t std;
	struct {
	    /* special protocol */
	    int (*login)(struct backend *s, const char *userid,
			 sasl_callback_t *cb, const char **status);
	    int (*ping)(struct backend *s, const char *userid);
	    int (*logout)(struct backend *s);
	} spec;
    } u;
};

#endif /* _INCLUDED_PROTOCOL_H */