common.h revision 1.1 1 1.1 agc /*-
2 1.1 agc * Copyright (c) 1998-2004 Dag-Erling Codan Smrgrav
3 1.1 agc * All rights reserved.
4 1.1 agc *
5 1.1 agc * Redistribution and use in source and binary forms, with or without
6 1.1 agc * modification, are permitted provided that the following conditions
7 1.1 agc * are met:
8 1.1 agc * 1. Redistributions of source code must retain the above copyright
9 1.1 agc * notice, this list of conditions and the following disclaimer
10 1.1 agc * in this position and unchanged.
11 1.1 agc * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 agc * notice, this list of conditions and the following disclaimer in the
13 1.1 agc * documentation and/or other materials provided with the distribution.
14 1.1 agc * 3. The name of the author may not be used to endorse or promote products
15 1.1 agc * derived from this software without specific prior written permission
16 1.1 agc *
17 1.1 agc * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 1.1 agc * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 1.1 agc * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 1.1 agc * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 1.1 agc * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 1.1 agc * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 1.1 agc * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 1.1 agc * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 1.1 agc * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 1.1 agc * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 1.1 agc *
28 1.1 agc * $FreeBSD: src/lib/libfetch/common.h,v 1.27.6.1 2006/11/11 00:16:07 des Exp $
29 1.1 agc */
30 1.1 agc
31 1.1 agc #ifndef _COMMON_H_INCLUDED
32 1.1 agc #define _COMMON_H_INCLUDED
33 1.1 agc
34 1.1 agc #define FTP_DEFAULT_PORT 21
35 1.1 agc #define HTTP_DEFAULT_PORT 80
36 1.1 agc #define FTP_DEFAULT_PROXY_PORT 21
37 1.1 agc #define HTTP_DEFAULT_PROXY_PORT 3128
38 1.1 agc
39 1.1 agc #ifdef WITH_SSL
40 1.1 agc #include <openssl/crypto.h>
41 1.1 agc #include <openssl/x509.h>
42 1.1 agc #include <openssl/pem.h>
43 1.1 agc #include <openssl/ssl.h>
44 1.1 agc #include <openssl/err.h>
45 1.1 agc #endif
46 1.1 agc
47 1.1 agc /* Connection */
48 1.1 agc typedef struct fetchconn conn_t;
49 1.1 agc struct fetchconn {
50 1.1 agc int sd; /* socket descriptor */
51 1.1 agc char *buf; /* buffer */
52 1.1 agc size_t bufsize; /* buffer size */
53 1.1 agc size_t buflen; /* length of buffer contents */
54 1.1 agc int err; /* last protocol reply code */
55 1.1 agc #ifdef WITH_SSL
56 1.1 agc SSL *ssl; /* SSL handle */
57 1.1 agc SSL_CTX *ssl_ctx; /* SSL context */
58 1.1 agc X509 *ssl_cert; /* server certificate */
59 1.1 agc SSL_METHOD *ssl_meth; /* SSL method */
60 1.1 agc #endif
61 1.1 agc int ref; /* reference count */
62 1.1 agc };
63 1.1 agc
64 1.1 agc /* Structure used for error message lists */
65 1.1 agc struct fetcherr {
66 1.1 agc const int num;
67 1.1 agc const int cat;
68 1.1 agc const char *string;
69 1.1 agc };
70 1.1 agc
71 1.1 agc /* for _fetch_writev */
72 1.1 agc struct iovec;
73 1.1 agc
74 1.1 agc void _fetch_seterr(struct fetcherr *, int);
75 1.1 agc void _fetch_syserr(void);
76 1.1 agc void _fetch_info(const char *, ...);
77 1.1 agc int _fetch_default_port(const char *);
78 1.1 agc int _fetch_default_proxy_port(const char *);
79 1.1 agc int _fetch_bind(int, int, const char *);
80 1.1 agc conn_t *_fetch_connect(const char *, int, int, int);
81 1.1 agc conn_t *_fetch_reopen(int);
82 1.1 agc conn_t *_fetch_ref(conn_t *);
83 1.1 agc int _fetch_ssl(conn_t *, int);
84 1.1 agc ssize_t _fetch_read(conn_t *, char *, size_t);
85 1.1 agc int _fetch_getln(conn_t *);
86 1.1 agc ssize_t _fetch_write(conn_t *, const char *, size_t);
87 1.1 agc ssize_t _fetch_writev(conn_t *, struct iovec *, int);
88 1.1 agc int _fetch_putln(conn_t *, const char *, size_t);
89 1.1 agc int _fetch_close(conn_t *);
90 1.1 agc int _fetch_add_entry(struct url_ent **, int *, int *,
91 1.1 agc const char *, struct url_stat *);
92 1.1 agc int _fetch_netrc_auth(struct url *url);
93 1.1 agc
94 1.1 agc #define _ftp_seterr(n) _fetch_seterr(_ftp_errlist, n)
95 1.1 agc #define _http_seterr(n) _fetch_seterr(_http_errlist, n)
96 1.1 agc #define _netdb_seterr(n) _fetch_seterr(_netdb_errlist, n)
97 1.1 agc #define _url_seterr(n) _fetch_seterr(_url_errlist, n)
98 1.1 agc
99 1.1 agc #ifndef NDEBUG
100 1.1 agc #define DEBUG(x) do { if (fetchDebug) { x; } } while (/* CONSTCOND */ 0)
101 1.1 agc #else
102 1.1 agc #define DEBUG(x) do { } while (/* CONSTCOND */ 0)
103 1.1 agc #endif
104 1.1 agc
105 1.1 agc /*
106 1.1 agc * I don't really like exporting _http_request() and _ftp_request(),
107 1.1 agc * but the HTTP and FTP code occasionally needs to cross-call
108 1.1 agc * eachother, and this saves me from adding a lot of special-case code
109 1.1 agc * to handle those cases.
110 1.1 agc *
111 1.1 agc * Note that _*_request() free purl, which is way ugly but saves us a
112 1.1 agc * whole lot of trouble.
113 1.1 agc */
114 1.1 agc FILE *_http_request(struct url *, const char *,
115 1.1 agc struct url_stat *, struct url *, const char *);
116 1.1 agc FILE *_ftp_request(struct url *, const char *,
117 1.1 agc struct url_stat *, struct url *, const char *);
118 1.1 agc
119 1.1 agc /*
120 1.1 agc * Check whether a particular flag is set
121 1.1 agc */
122 1.1 agc #define CHECK_FLAG(x) (flags && strchr(flags, (x)))
123 1.1 agc
124 1.1 agc #endif
125