2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim:set ts=4 sw=4 sts=4 et cin: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsHttp_h__
|
|
|
|
#define nsHttp_h__
|
|
|
|
|
2013-09-22 20:35:52 -07:00
|
|
|
#include <stdint.h>
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "prtime.h"
|
2013-09-22 20:35:52 -07:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsError.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// http version codes
|
|
|
|
#define NS_HTTP_VERSION_UNKNOWN 0
|
|
|
|
#define NS_HTTP_VERSION_0_9 9
|
|
|
|
#define NS_HTTP_VERSION_1_0 10
|
|
|
|
#define NS_HTTP_VERSION_1_1 11
|
|
|
|
|
2013-07-08 06:10:18 -07:00
|
|
|
namespace mozilla {
|
2013-09-22 20:35:52 -07:00
|
|
|
|
|
|
|
class Mutex;
|
|
|
|
|
2013-07-08 06:10:18 -07:00
|
|
|
namespace net {
|
|
|
|
enum {
|
2013-09-27 10:55:24 -07:00
|
|
|
SPDY_VERSION_2_REMOVED = 2,
|
2013-07-26 14:22:46 -07:00
|
|
|
SPDY_VERSION_3 = 3,
|
|
|
|
SPDY_VERSION_31 = 4
|
2013-07-08 06:10:18 -07:00
|
|
|
};
|
|
|
|
} // namespace mozilla::net
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
typedef uint8_t nsHttpVersion;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// http connection capabilities
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#define NS_HTTP_ALLOW_KEEPALIVE (1<<0)
|
|
|
|
#define NS_HTTP_ALLOW_PIPELINING (1<<1)
|
|
|
|
|
|
|
|
// a transaction with this caps flag will continue to own the connection,
|
|
|
|
// preventing it from being reclaimed, even after the transaction completes.
|
|
|
|
#define NS_HTTP_STICKY_CONNECTION (1<<2)
|
|
|
|
|
2008-11-04 08:05:46 -08:00
|
|
|
// a transaction with this caps flag will, upon opening a new connection,
|
|
|
|
// bypass the local DNS cache
|
|
|
|
#define NS_HTTP_REFRESH_DNS (1<<3)
|
|
|
|
|
2009-02-17 14:06:52 -08:00
|
|
|
// a transaction with this caps flag will not pass SSL client-certificates
|
|
|
|
// to the server (see bug #466080), but is may also be used for other things
|
|
|
|
#define NS_HTTP_LOAD_ANONYMOUS (1<<4)
|
|
|
|
|
2011-05-21 03:03:36 -07:00
|
|
|
// a transaction with this caps flag keeps timing information
|
|
|
|
#define NS_HTTP_TIMING_ENABLED (1<<5)
|
|
|
|
|
2012-12-04 15:06:29 -08:00
|
|
|
// a transaction with this flag blocks the initiation of other transactons
|
|
|
|
// in the same load group until it is complete
|
|
|
|
#define NS_HTTP_LOAD_AS_BLOCKING (1<<6)
|
2011-07-22 09:31:37 -07:00
|
|
|
|
2011-12-13 07:55:50 -08:00
|
|
|
// Disallow the use of the SPDY protocol. This is meant for the contexts
|
|
|
|
// such as HTTP upgrade which are nonsensical for SPDY, it is not the
|
|
|
|
// SPDY configuration variable.
|
|
|
|
#define NS_HTTP_DISALLOW_SPDY (1<<7)
|
|
|
|
|
2012-12-04 15:06:29 -08:00
|
|
|
// a transaction with this flag loads without respect to whether the load
|
|
|
|
// group is currently blocking on some resources
|
|
|
|
#define NS_HTTP_LOAD_UNBLOCKED (1<<8)
|
|
|
|
|
2013-06-28 13:58:28 -07:00
|
|
|
// These flags allow a transaction to use TLS false start with
|
|
|
|
// weaker security profiles based on past history
|
|
|
|
#define NS_HTTP_ALLOW_RSA_FALSESTART (1<<9)
|
|
|
|
#define NS_HTTP_ALLOW_RC4_FALSESTART (1<<10)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// some default values
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#define NS_HTTP_DEFAULT_PORT 80
|
|
|
|
#define NS_HTTPS_DEFAULT_PORT 443
|
|
|
|
|
|
|
|
#define NS_HTTP_HEADER_SEPS ", \t"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// http atoms...
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
struct nsHttpAtom
|
|
|
|
{
|
|
|
|
operator const char *() const { return _val; }
|
|
|
|
const char *get() const { return _val; }
|
|
|
|
|
|
|
|
void operator=(const char *v) { _val = v; }
|
|
|
|
void operator=(const nsHttpAtom &a) { _val = a._val; }
|
|
|
|
|
|
|
|
// private
|
|
|
|
const char *_val;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nsHttp
|
|
|
|
{
|
|
|
|
static nsresult CreateAtomTable();
|
|
|
|
static void DestroyAtomTable();
|
|
|
|
|
2012-03-22 16:39:31 -07:00
|
|
|
// The mutex is valid any time the Atom Table is valid
|
|
|
|
// This mutex is used in the unusual case that the network thread and
|
|
|
|
// main thread might access the same data
|
|
|
|
static mozilla::Mutex *GetLock();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// will dynamically add atoms to the table if they don't already exist
|
|
|
|
static nsHttpAtom ResolveAtom(const char *);
|
|
|
|
static nsHttpAtom ResolveAtom(const nsACString &s)
|
|
|
|
{
|
|
|
|
return ResolveAtom(PromiseFlatCString(s).get());
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns true if the specified token [start,end) is valid per RFC 2616
|
|
|
|
// section 2.2
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool IsValidToken(const char *start, const char *end);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static inline bool IsValidToken(const nsCString &s) {
|
2007-03-22 10:30:00 -07:00
|
|
|
const char *start = s.get();
|
|
|
|
return IsValidToken(start, start + s.Length());
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the first instance (case-insensitive comparison) of the given
|
|
|
|
// |token| in the |input| string. the |token| is bounded by elements of
|
|
|
|
// |separators| and may appear at the beginning or end of the |input|
|
|
|
|
// string. null is returned if the |token| is not found. |input| may be
|
|
|
|
// null, in which case null is returned.
|
|
|
|
static const char *FindToken(const char *input, const char *token,
|
|
|
|
const char *separators);
|
|
|
|
|
|
|
|
// This function parses a string containing a decimal-valued, non-negative
|
2012-09-28 12:55:23 -07:00
|
|
|
// 64-bit integer. If the value would exceed INT64_MAX, then false is
|
2011-10-17 07:59:28 -07:00
|
|
|
// returned. Otherwise, this function returns true and stores the
|
2007-03-22 10:30:00 -07:00
|
|
|
// parsed value in |result|. The next unparsed character in |input| is
|
|
|
|
// optionally returned via |next| if |next| is non-null.
|
|
|
|
//
|
|
|
|
// TODO(darin): Replace this with something generic.
|
|
|
|
//
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool ParseInt64(const char *input, const char **next,
|
2012-08-22 08:56:38 -07:00
|
|
|
int64_t *result);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Variant on ParseInt64 that expects the input string to contain nothing
|
|
|
|
// more than the value being parsed.
|
2012-08-22 08:56:38 -07:00
|
|
|
static inline bool ParseInt64(const char *input, int64_t *result) {
|
2007-03-22 10:30:00 -07:00
|
|
|
const char *next;
|
|
|
|
return ParseInt64(input, &next, result) && *next == '\0';
|
|
|
|
}
|
|
|
|
|
2012-09-22 08:27:17 -07:00
|
|
|
// Return whether the HTTP status code represents a permanent redirect
|
2012-10-01 13:04:09 -07:00
|
|
|
static bool IsPermanentRedirect(uint32_t httpStatus);
|
2012-09-22 08:27:17 -07:00
|
|
|
|
2012-09-25 08:04:25 -07:00
|
|
|
// Return whether upon a redirect code of httpStatus for method, the
|
|
|
|
// request method should be rewritten to GET.
|
2012-10-01 13:04:09 -07:00
|
|
|
static bool ShouldRewriteRedirectToGET(uint32_t httpStatus, nsHttpAtom method);
|
2012-09-25 08:04:25 -07:00
|
|
|
|
|
|
|
// Return whether the specified method is safe as per RFC 2616,
|
|
|
|
// Section 9.1.1.
|
|
|
|
static bool IsSafeMethod(nsHttpAtom method);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Declare all atoms
|
2012-08-27 18:21:20 -07:00
|
|
|
//
|
2007-03-22 10:30:00 -07:00
|
|
|
// The atom names and values are stored in nsHttpAtomList.h and are brought
|
|
|
|
// to you by the magic of C preprocessing. Add new atoms to nsHttpAtomList
|
|
|
|
// and all support logic will be auto-generated.
|
|
|
|
//
|
|
|
|
#define HTTP_ATOM(_name, _value) static nsHttpAtom _name;
|
|
|
|
#include "nsHttpAtomList.h"
|
|
|
|
#undef HTTP_ATOM
|
|
|
|
};
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// utilities...
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
static inline uint32_t
|
2007-03-22 10:30:00 -07:00
|
|
|
PRTimeToSeconds(PRTime t_usec)
|
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
return uint32_t( t_usec / PR_USEC_PER_SEC );
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#define NowInSeconds() PRTimeToSeconds(PR_Now())
|
|
|
|
|
2012-08-29 19:49:31 -07:00
|
|
|
// Round q-value to 2 decimal places; return 2 most significant digits as uint.
|
|
|
|
#define QVAL_TO_UINT(q) ((unsigned int) ((q + 0.005) * 100.0))
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#define HTTP_LWS " \t"
|
|
|
|
#define HTTP_HEADER_VALUE_SEPS HTTP_LWS ","
|
|
|
|
|
|
|
|
#endif // nsHttp_h__
|