123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- %%% Copyright (C) 2009 - Will Glozer. All rights reserved.
- -module(pgsql_sock).
- -behavior(gen_server).
- -export([start_link/0,
- connect/5,
- close/1,
- get_parameter/2,
- squery/2,
- parse/4,
- bind/4,
- execute/4,
- describe/3,
- sync/1,
- close/3,
- cancel/1]).
- -export([handle_call/3, handle_cast/2, handle_info/2]).
- -export([init/1, code_change/3, terminate/2]).
- %% state callbacks
- -export([auth/2, initializing/2, on_message/2]).
- -include("pgsql.hrl").
- -include("pgsql_binary.hrl").
- -record(state, {mod,
- sock,
- data = <<>>,
- backend,
- handler,
- queue = queue:new(),
- async,
- ready,
- timeout = 5000,
- parameters = [],
- txstatus}).
- %% -- client interface --
- start_link() ->
- gen_server:start_link(?MODULE, [], []).
- connect(C, Host, Username, Password, Opts) ->
- gen_server:call(C, {connect, Host, Username, Password, Opts}, infinity).
- close(C) when is_pid(C) ->
- catch gen_server:call(C, stop, infinity),
- ok.
- get_parameter(C, Name) ->
- gen_server:call(C, {get_parameter, to_binary(Name)}).
- squery(C, Sql) ->
- gen_server:call(C, {squery, Sql}, infinity).
- parse(C, Name, Sql, Types) ->
- gen_server:call(C, {parse, Name, Sql, Types}, infinity).
- bind(C, Statement, PortalName, Parameters) ->
- gen_server:call(C, {bind, Statement, PortalName, Parameters}, infinity).
- execute(C, Statement, PortalName, MaxRows) ->
- gen_server:call(C, {execute, Statement, PortalName, MaxRows}, infinity).
- describe(C, Type, Name) ->
- gen_server:call(C, {describe, Type, Name}, infinity).
- close(C, Type, Name) ->
- gen_server:call(C, {close, Type, Name}, infinity).
- sync(C) ->
- gen_server:call(C, sync, infinity).
- cancel(S) ->
- gen_server:cast(S, cancel).
- %% -- gen_server implementation --
- init([]) ->
- {ok, #state{}}.
- handle_call({connect, Host, Username, Password, Opts},
- From,
- #state{queue = Queue} = State) ->
- %% TODO split connect/query timeout?
- Timeout = proplists:get_value(timeout, Opts, 5000),
- Port = proplists:get_value(port, Opts, 5432),
- SockOpts = [{active, false}, {packet, raw}, binary, {nodelay, true}],
- {ok, Sock} = gen_tcp:connect(Host, Port, SockOpts, Timeout),
- State2 = case proplists:get_value(ssl, Opts) of
- T when T == true; T == required ->
- start_ssl(Sock, T, Opts, State);
- _ ->
- State#state{mod = gen_tcp, sock = Sock}
- end,
- Opts2 = ["user", 0, Username, 0],
- case proplists:get_value(database, Opts, undefined) of
- undefined -> Opts3 = Opts2;
- Database -> Opts3 = [Opts2 | ["database", 0, Database, 0]]
- end,
- send(State2, [<<196608:?int32>>, Opts3, 0]),
- Async = proplists:get_value(async, Opts, undefined),
- setopts(State2, [{active, true}]),
- put(username, Username),
- put(password, Password),
- {noreply,
- State2#state{handler = auth,
- queue = queue:in(From, Queue),
- async = Async},
- Timeout};
- handle_call(stop, From, #state{queue = Queue} = State) ->
- %% TODO flush queue
- {stop, normal, ok, State}.
- handle_cast(cancel, State = #state{backend = {Pid, Key}}) ->
- {ok, {Addr, Port}} = inet:peername(State#state.sock),
- SockOpts = [{active, false}, {packet, raw}, binary],
- {ok, Sock} = gen_tcp:connect(Addr, Port, SockOpts),
- Msg = <<16:?int32, 80877102:?int32, Pid:?int32, Key:?int32>>,
- ok = gen_tcp:send(Sock, Msg),
- gen_tcp:close(Sock),
- {noreply, State}.
- handle_info({Closed, Sock}, #state{sock = Sock} = State)
- when Closed == tcp_closed; Closed == ssl_closed ->
- {stop, sock_closed, State};
- handle_info({Error, Sock, Reason}, #state{sock = Sock} = State)
- when Error == tcp_error; Error == ssl_error ->
- {stop, {sock_error, Reason}, State};
- handle_info(timeout, #state{handler = Handler} = State) ->
- ?MODULE:Handler(timeout, State);
- handle_info({_, Sock, Data2}, #state{data = Data, sock = Sock} = State) ->
- loop(State#state{data = <<Data/binary, Data2/binary>>}, infinity).
- loop(#state{data = Data, handler = Handler} = State, Timeout) ->
- case pgsql_wire:decode_message(Data) of
- {Message, Tail} ->
- case ?MODULE:Handler(Message, State#state{data = Tail}) of
- {noreply, State2} ->
- loop(State2, infinity);
- {noreply, State2, Timeout2} ->
- loop(State2, Timeout2);
- R = {stop, _Reason2, _State2} ->
- R
- end;
- _ ->
- {noreply, State, Timeout}
- end.
- terminate(_Reason, _State) ->
- %% TODO send termination msg, close socket
- ok.
- code_change(_OldVsn, State, _Extra) ->
- {ok, State}.
- %% -- internal functions --
- start_ssl(S, Flag, Opts, #state{timeout = Timeout} = State) ->
- ok = gen_tcp:send(S, <<8:?int32, 80877103:?int32>>),
- {ok, <<Code>>} = gen_tcp:recv(S, 1, Timeout),
- case Code of
- $S ->
- case ssl:connect(S, Opts, Timeout) of
- {ok, S2} -> State#state{mod = ssl, sock = S2};
- {error, Reason} -> exit({ssl_negotiation_failed, Reason})
- end;
- $N ->
- case Flag of
- true -> State;
- required -> exit(ssl_not_available)
- end
- end.
- setopts(#state{mod = Mod, sock = Sock}, Opts) ->
- case Mod of
- gen_tcp -> inet:setopts(Sock, Opts);
- ssl -> ssl:setopts(Sock, Opts)
- end.
- send(#state{mod = Mod, sock = Sock}, Data) ->
- Mod:send(Sock, pgsql_wire:encode(Data)).
- send(#state{mod = Mod, sock = Sock}, Type, Data) ->
- Mod:send(Sock, pgsql_wire:encode(Type, Data)).
- reply(#state{queue = Q} = State, Message) ->
- {{value, {Pid, _}}, Q2} = queue:out(Q),
- Pid ! Message,
- State#state{queue = Q2}.
- gen_reply(#state{queue = Q} = State, Message) ->
- {{value, From}, Q2} = queue:out(Q),
- gen_server:reply(From, Message),
- State#state{queue = Q2}.
- notify_async(#state{async = Pid}, Msg) ->
- case is_pid(Pid) of
- true -> Pid ! {pgsql, self(), Msg};
- false -> false
- end.
- %% -- backend message handling --
- %% AuthenticationOk
- auth({$R, <<0:?int32>>}, State) ->
- #state{timeout = Timeout} = State,
- {noreply, State#state{handler = initializing}, Timeout};
- %% AuthenticationCleartextPassword
- auth({$R, <<3:?int32>>}, State) ->
- #state{timeout = Timeout} = State,
- send(State, $p, [get(password), 0]),
- {noreply, State, Timeout};
- %% AuthenticationMD5Password
- auth({$R, <<5:?int32, Salt:4/binary>>}, State) ->
- #state{timeout = Timeout} = State,
- Digest1 = hex(erlang:md5([get(password), get(username)])),
- Str = ["md5", hex(erlang:md5([Digest1, Salt])), 0],
- send(State, $p, Str),
- {noreply, State, Timeout};
- auth({$R, <<M:?int32, _/binary>>}, State) ->
- case M of
- 2 -> Method = kerberosV5;
- 4 -> Method = crypt;
- 6 -> Method = scm;
- 7 -> Method = gss;
- 8 -> Method = sspi;
- _ -> Method = unknown
- end,
- {stop,
- normal,
- gen_reply(State, {error, {unsupported_auth_method, Method}})};
- %% ErrorResponse
- auth({error, E}, State) ->
- case E#error.code of
- <<"28000">> -> Why = invalid_authorization_specification;
- <<"28P01">> -> Why = invalid_password;
- Any -> Why = Any
- end,
- {stop, normal, gen_reply(State, {error, Why})};
- auth(timeout, State) ->
- {stop, normal, gen_reply(State, {error, timeout})};
- auth(Other, State) ->
- #state{timeout = Timeout} = State,
- {noreply, State2} = on_message(Other, State),
- {noreply, State2, Timeout}.
- %% BackendKeyData
- initializing({$K, <<Pid:?int32, Key:?int32>>}, State) ->
- #state{timeout = Timeout} = State,
- State2 = State#state{backend = {Pid, Key}},
- {noreply, State2, Timeout};
- initializing(timeout, State) ->
- {stop, normal, gen_reply(State, {error, timeout})};
- %% ReadyForQuery
- initializing({$Z, <<Status:8>>}, State) ->
- #state{parameters = Parameters} = State,
- erase(username),
- erase(password),
- %% TODO decode dates to now() format
- case lists:keysearch(<<"integer_datetimes">>, 1, Parameters) of
- {value, {_, <<"on">>}} -> put(datetime_mod, pgsql_idatetime);
- {value, {_, <<"off">>}} -> put(datetime_mod, pgsql_fdatetime)
- end,
- State2 = State#state{handler = on_message,
- txstatus = Status,
- ready = true},
- {noreply, gen_reply(State2, {ok, self()})};
- initializing({error, _} = Error, State) ->
- {stop, normal, gen_reply(State, Error)};
- initializing(Other, State) ->
- #state{timeout = Timeout} = State,
- {noreply, State2} = on_message(Other, State),
- {noreply, State2, Timeout}.
- %% NoticeResponse
- on_message({$N, Data}, State) ->
- notify_async(State, {notice, pgsql_wire:decode_error(Data)}),
- {noreply, State};
- %% ParameterStatus
- on_message({$S, Data}, State) ->
- [Name, Value] = pgsql_wire:decode_strings(Data),
- Parameters2 = lists:keystore(Name, 1, State#state.parameters,
- {Name, Value}),
- {noreply, State#state{parameters = Parameters2}};
- %% NotificationResponse
- on_message({$A, <<Pid:?int32, Strings/binary>>}, State) ->
- case pgsql_wire:decode_strings(Strings) of
- [Channel, Payload] -> ok;
- [Channel] -> Payload = <<>>
- end,
- %% TODO use it
- notify_async(State, {notification, Channel, Pid, Payload}),
- {noreply, State}.
- to_binary(B) when is_binary(B) -> B;
- to_binary(L) when is_list(L) -> list_to_binary(L).
- hex(Bin) ->
- HChar = fun(N) when N < 10 -> $0 + N;
- (N) when N < 16 -> $W + N
- end,
- <<<<(HChar(H)), (HChar(L))>> || <<H:4, L:4>> <= Bin>>.
|