Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright (C) Igor Sysoev |
Maxim Konovalov | f8d59e3 | 2012-01-18 15:07:43 +0000 | [diff] [blame] | 4 | * Copyright (C) Nginx, Inc. |
Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <ngx_config.h> |
| 8 | #include <ngx_core.h> |
| 9 | #include <ngx_mysql.h> |
| 10 | #include <ngx_http.h> |
| 11 | |
| 12 | |
| 13 | typedef struct { |
Igor Sysoev | 0c189c5 | 2009-11-02 15:14:17 +0000 | [diff] [blame] | 14 | ngx_addr_t *peers; |
| 15 | ngx_uint_t npeers; |
Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 16 | } ngx_http_mysql_test_conf_t; |
| 17 | |
| 18 | |
| 19 | static void ngx_http_mysql_auth(ngx_mysql_t *m); |
| 20 | static void ngx_http_mysql_done(ngx_mysql_t *m); |
| 21 | static void *ngx_http_mysql_test_create_loc_conf(ngx_conf_t *cf); |
| 22 | static char *ngx_http_mysql_test(ngx_conf_t *cf, ngx_command_t *cmd, |
| 23 | void *conf); |
| 24 | |
| 25 | static ngx_command_t ngx_http_mysql_test_commands[] = { |
| 26 | |
| 27 | { ngx_string("mysql_test"), |
| 28 | NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
| 29 | ngx_http_mysql_test, |
| 30 | NGX_HTTP_LOC_CONF_OFFSET, |
| 31 | 0, |
| 32 | NULL }, |
| 33 | |
| 34 | ngx_null_command |
| 35 | }; |
| 36 | |
| 37 | |
Igor Sysoev | 8f12558 | 2006-07-28 15:16:17 +0000 | [diff] [blame] | 38 | static ngx_http_module_t ngx_http_mysql_test_module_ctx = { |
Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 39 | NULL, /* preconfiguration */ |
| 40 | NULL, /* postconfiguration */ |
| 41 | |
| 42 | NULL, /* create main configuration */ |
| 43 | NULL, /* init main configuration */ |
| 44 | |
| 45 | NULL, /* create server configuration */ |
| 46 | NULL, /* merge server configuration */ |
| 47 | |
| 48 | ngx_http_mysql_test_create_loc_conf, /* create location configuration */ |
| 49 | NULL /* merge location configuration */ |
| 50 | }; |
| 51 | |
| 52 | |
| 53 | ngx_module_t ngx_http_mysql_test_module = { |
| 54 | NGX_MODULE_V1, |
| 55 | &ngx_http_mysql_test_module_ctx, /* module context */ |
| 56 | ngx_http_mysql_test_commands, /* module directives */ |
| 57 | NGX_HTTP_MODULE, /* module type */ |
| 58 | NULL, /* init master */ |
| 59 | NULL, /* init module */ |
| 60 | NULL, /* init process */ |
| 61 | NULL, /* init thread */ |
| 62 | NULL, /* exit thread */ |
| 63 | NULL, /* exit process */ |
| 64 | NULL, /* exit master */ |
| 65 | NGX_MODULE_V1_PADDING |
| 66 | }; |
| 67 | |
| 68 | |
| 69 | static ngx_str_t ngx_mysql_login = ngx_string("root"); |
| 70 | static ngx_str_t ngx_mysql_passwd = ngx_string("tp"); |
| 71 | static ngx_str_t ngx_mysql_database = ngx_string("mysql"); |
| 72 | static ngx_str_t ngx_mysql_command_query = |
| 73 | ngx_string("select * from user"); |
| 74 | |
| 75 | |
| 76 | static ngx_int_t |
| 77 | ngx_http_mysql_test_handler(ngx_http_request_t *r) |
| 78 | { |
| 79 | ngx_int_t rc; |
| 80 | ngx_mysql_t *m; |
| 81 | ngx_http_mysql_test_conf_t *mtcf; |
| 82 | |
| 83 | mtcf = ngx_http_get_module_loc_conf(r, ngx_http_mysql_test_module); |
| 84 | |
| 85 | m = ngx_pcalloc(r->pool, sizeof(ngx_mysql_t)); |
| 86 | |
| 87 | if (m == NULL) { |
| 88 | return NGX_HTTP_INTERNAL_SERVER_ERROR; |
| 89 | } |
| 90 | |
| 91 | m->pool = r->pool; |
| 92 | m->handler = ngx_http_mysql_auth; |
| 93 | m->data = r; |
| 94 | |
| 95 | m->login = &ngx_mysql_login; |
| 96 | m->passwd = &ngx_mysql_passwd; |
| 97 | m->database = &ngx_mysql_database; |
| 98 | |
Igor Sysoev | 3d2fd18 | 2006-12-04 16:46:13 +0000 | [diff] [blame] | 99 | /* STUB */ |
| 100 | m->peer.sockaddr = mtcf->peers[0].sockaddr; |
| 101 | m->peer.socklen = mtcf->peers[0].socklen; |
| 102 | m->peer.name = &mtcf->peers[0].name; |
| 103 | m->peer.tries = mtcf->npeers; |
| 104 | m->peer.get = ngx_event_get_peer; |
| 105 | /**/ |
Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 106 | m->peer.log = r->connection->log; |
| 107 | m->peer.log_error = NGX_ERROR_ERR; |
Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 108 | |
| 109 | rc = ngx_mysql_connect(m); |
| 110 | |
| 111 | if (rc == NGX_OK || rc == NGX_AGAIN) { |
| 112 | return NGX_DONE; |
| 113 | } |
| 114 | |
| 115 | return NGX_HTTP_INTERNAL_SERVER_ERROR; |
| 116 | } |
| 117 | |
| 118 | |
| 119 | static void |
| 120 | ngx_http_mysql_auth(ngx_mysql_t *m) |
| 121 | { |
| 122 | ngx_http_request_t *r; |
| 123 | |
| 124 | r = m->data; |
| 125 | |
| 126 | if (m->state != NGX_OK) { |
| 127 | ngx_http_finalize_request(r, NGX_HTTP_NO_CONTENT); |
| 128 | return; |
| 129 | } |
| 130 | |
| 131 | m->query.len = NGX_MYSQL_CMDPKT_LEN + ngx_mysql_command_query.len; |
| 132 | |
Igor Sysoev | 7f6b2ff | 2008-06-17 15:00:30 +0000 | [diff] [blame] | 133 | m->query.data = ngx_pnalloc(r->pool, m->query.len); |
Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 134 | if (m->query.data == NULL) { |
| 135 | ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR); |
| 136 | return; |
| 137 | } |
| 138 | |
| 139 | ngx_memcpy(m->query.data + NGX_MYSQL_CMDPKT_LEN, |
| 140 | ngx_mysql_command_query.data, ngx_mysql_command_query.len); |
| 141 | |
| 142 | m->handler = ngx_http_mysql_done; |
| 143 | |
| 144 | ngx_mysql_query(m); |
| 145 | } |
| 146 | |
| 147 | |
| 148 | static void |
| 149 | ngx_http_mysql_done(ngx_mysql_t *m) |
| 150 | { |
| 151 | ngx_http_request_t *r; |
| 152 | |
| 153 | r = m->data; |
| 154 | |
| 155 | ngx_http_finalize_request(r, NGX_HTTP_NO_CONTENT); |
| 156 | } |
| 157 | |
| 158 | |
| 159 | static void * |
| 160 | ngx_http_mysql_test_create_loc_conf(ngx_conf_t *cf) |
| 161 | { |
| 162 | ngx_http_mysql_test_conf_t *conf; |
| 163 | |
| 164 | conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_mysql_test_conf_t)); |
| 165 | if (conf == NULL) { |
| 166 | return NGX_CONF_ERROR; |
| 167 | } |
| 168 | |
| 169 | return conf; |
| 170 | } |
| 171 | |
| 172 | static char * |
| 173 | ngx_http_mysql_test(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
| 174 | { |
| 175 | ngx_http_mysql_test_conf_t *mtcf = conf; |
| 176 | |
| 177 | ngx_str_t *value; |
| 178 | ngx_url_t u; |
| 179 | ngx_http_core_loc_conf_t *clcf; |
| 180 | |
| 181 | clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module); |
| 182 | clcf->handler = ngx_http_mysql_test_handler; |
| 183 | |
| 184 | value = cf->args->elts; |
| 185 | |
| 186 | ngx_memzero(&u, sizeof(ngx_url_t)); |
| 187 | |
| 188 | u.url = value[1]; |
Igor Sysoev | bf3aaac | 2006-12-12 16:46:16 +0000 | [diff] [blame] | 189 | u.default_port = 3306; |
Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 190 | |
Igor Sysoev | 7ed63ee | 2007-10-08 08:55:12 +0000 | [diff] [blame] | 191 | if (ngx_parse_url(cf->pool, &u) != NGX_OK) { |
Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 192 | if (u.err) { |
| 193 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
| 194 | "%s in upstream \"%V\"", u.err, &u.url); |
| 195 | } |
| 196 | |
| 197 | return NGX_CONF_ERROR; |
| 198 | } |
| 199 | |
Igor Sysoev | 3d2fd18 | 2006-12-04 16:46:13 +0000 | [diff] [blame] | 200 | mtcf->peers = u.addrs; |
| 201 | mtcf->npeers = u.naddrs; |
Igor Sysoev | afd7ec5 | 2006-05-29 17:28:12 +0000 | [diff] [blame] | 202 | |
| 203 | return NGX_CONF_OK; |
| 204 | } |