Annotate

plugins/mod_compression.lua @ 4624:3e4715d44561

portmanager: Support 'default_port' in service options
author Matthew Wild <mwild1@gmail.com>
date Thu, 15 Mar 2012 16:29:30 +0000
parent 4481:408c2f688e4e
child 4898:010c01841ed0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1669
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
1 -- Prosody IM
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
2 -- Copyright (C) 2009 Tobias Markmann
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
3 --
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
4 -- This project is MIT/X11 licensed. Please see the
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
5 -- COPYING file in the source package for more information.
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
6 --
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
7
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
8 local st = require "util.stanza";
1671
d196ac213104 Actually inject de- and compression into the reading/writing functions.
Tobias Markmann <tm@ayena.de>
parents: 1670
diff changeset
9 local zlib = require "zlib";
1678
79eb903d0e67 Using pcall to make save the rest from zlib fails. Emit errors on those fails.
Tobias Markmann <tm@ayena.de>
parents: 1677
diff changeset
10 local pcall = pcall;
2882
4e72048d4a24 mod_compression: Fixed various possible tracebacks in logging.
Waqas Hussain <waqas20@gmail.com>
parents: 2279
diff changeset
11 local tostring = tostring;
1669
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
12
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
13 local xmlns_compression_feature = "http://jabber.org/features/compress"
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
14 local xmlns_compression_protocol = "http://jabber.org/protocol/compress"
2280
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
15 local xmlns_stream = "http://etherx.jabber.org/streams";
1669
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
16 local compression_stream_feature = st.stanza("compression", {xmlns=xmlns_compression_feature}):tag("method"):text("zlib"):up();
3148
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
17 local add_filter = require "util.filters".add_filter;
1669
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
18
4481
408c2f688e4e mod_compression: Change default compression level to 7
Kim Alvefur <zash@zash.se>
parents: 4480
diff changeset
19 local compression_level = module:get_option_number("compression_level", 7);
1676
719350956714 Add config option handling.
Tobias Markmann <tm@ayena.de>
parents: 1674
diff changeset
20
719350956714 Add config option handling.
Tobias Markmann <tm@ayena.de>
parents: 1674
diff changeset
21 if not compression_level or compression_level < 1 or compression_level > 9 then
719350956714 Add config option handling.
Tobias Markmann <tm@ayena.de>
parents: 1674
diff changeset
22 module:log("warn", "Invalid compression level in config: %s", tostring(compression_level));
719350956714 Add config option handling.
Tobias Markmann <tm@ayena.de>
parents: 1674
diff changeset
23 module:log("warn", "Module loading aborted. Compression won't be available.");
719350956714 Add config option handling.
Tobias Markmann <tm@ayena.de>
parents: 1674
diff changeset
24 return;
719350956714 Add config option handling.
Tobias Markmann <tm@ayena.de>
parents: 1674
diff changeset
25 end
1669
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
26
2609
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
27 module:hook("stream-features", function(event)
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
28 local origin, features = event.origin, event.features;
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
29 if not origin.compressed then
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
30 -- FIXME only advertise compression support when TLS layer has no compression enabled
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
31 features:add_child(compression_stream_feature);
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
32 end
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
33 end);
1669
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
34
2609
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
35 module:hook("s2s-stream-features", function(event)
2613
afa20941e098 s2smanager, mod_compression, mod_tls: Changed event.session to event.origin for s2s-stream-features event for consistency.
Waqas Hussain <waqas20@gmail.com>
parents: 2609
diff changeset
36 local origin, features = event.origin, event.features;
2609
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
37 -- FIXME only advertise compression support when TLS layer has no compression enabled
3540
bc139431830b Monster whitespace commit (beware the whitespace monster).
Waqas Hussain <waqas20@gmail.com>
parents: 3532
diff changeset
38 if not origin.compressed then
2609
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
39 features:add_child(compression_stream_feature);
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
40 end
2ee28cae530a mod_compression: Hook stream-features event using new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 2324
diff changeset
41 end);
2280
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
42
2291
c6bed51c6733 mod_compression: Some comment clean up.
Tobias Markmann <tm@ayena.de>
parents: 2289
diff changeset
43 -- Hook to activate compression if remote server supports it.
2280
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
44 module:hook_stanza(xmlns_stream, "features",
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
45 function (session, stanza)
1673
5f81cd6d4a92 Remove space at the end of a line.
Tobias Markmann <tm@ayena.de>
parents: 1672
diff changeset
46 if not session.compressed then
2280
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
47 -- does remote server support compression?
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
48 local comp_st = stanza:child_with_name("compression");
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
49 if comp_st then
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
50 -- do we support the mechanism
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
51 for a in comp_st:children() do
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
52 local algorithm = a[1]
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
53 if algorithm == "zlib" then
2282
6f54dac3ec2d mod_compression: Prepare activating of compression on s2s.
Tobias Markmann <tm@ayena.de>
parents: 2280
diff changeset
54 session.sends2s(st.stanza("compress", {xmlns=xmlns_compression_protocol}):tag("method"):text("zlib"))
3295
8865d1b3dce2 mod_compression: Lowered a log level.
Waqas Hussain <waqas20@gmail.com>
parents: 3200
diff changeset
55 session.log("debug", "Enabled compression using zlib.")
2280
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
56 return true;
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
57 end
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
58 end
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
59 session.log("debug", "Remote server supports no compression algorithm we support.")
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
60 end
1672
614623f393c6 Add FIXME to remember TLS compression detection.
Tobias Markmann <tm@ayena.de>
parents: 1671
diff changeset
61 end
1669
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
62 end
2280
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
63 , 250);
0b0fe49e5251 Enable one way stream compression on s2s links.
Tobias Markmann <tm@ayena.de>
parents: 2279
diff changeset
64
2285
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
65
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
66 -- returns either nil or a fully functional ready to use inflate stream
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
67 local function get_deflate_stream(session)
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
68 local status, deflate_stream = pcall(zlib.deflate, compression_level);
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
69 if status == false then
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
70 local error_st = st.stanza("failure", {xmlns=xmlns_compression_protocol}):tag("setup-failed");
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
71 (session.sends2s or session.send)(error_st);
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
72 session.log("error", "Failed to create zlib.deflate filter.");
2887
765e7070d0a8 Merge with 0.6 (into 0.7, namely mod_compression fixes)
Matthew Wild <mwild1@gmail.com>
parents: 2613 2886
diff changeset
73 module:log("error", "%s", tostring(deflate_stream));
2285
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
74 return
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
75 end
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
76 return deflate_stream
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
77 end
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
78
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
79 -- returns either nil or a fully functional ready to use inflate stream
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
80 local function get_inflate_stream(session)
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
81 local status, inflate_stream = pcall(zlib.inflate);
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
82 if status == false then
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
83 local error_st = st.stanza("failure", {xmlns=xmlns_compression_protocol}):tag("setup-failed");
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
84 (session.sends2s or session.send)(error_st);
2887
765e7070d0a8 Merge with 0.6 (into 0.7, namely mod_compression fixes)
Matthew Wild <mwild1@gmail.com>
parents: 2613 2886
diff changeset
85 session.log("error", "Failed to create zlib.inflate filter.");
765e7070d0a8 Merge with 0.6 (into 0.7, namely mod_compression fixes)
Matthew Wild <mwild1@gmail.com>
parents: 2613 2886
diff changeset
86 module:log("error", "%s", tostring(inflate_stream));
2285
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
87 return
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
88 end
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
89 return inflate_stream
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
90 end
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
91
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
92 -- setup compression for a stream
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
93 local function setup_compression(session, deflate_stream)
3148
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
94 add_filter(session, "bytes/out", function(t)
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
95 local status, compressed, eof = pcall(deflate_stream, tostring(t), 'sync');
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
96 if status == false then
3226
69e920d7c968 mod_compression: Move logging of compression/decompression errors to before the closing of the stream, to make logs a bit easier to follow
Matthew Wild <mwild1@gmail.com>
parents: 3223
diff changeset
97 module:log("warn", "%s", tostring(compressed));
3148
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
98 session:close({
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
99 condition = "undefined-condition";
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
100 text = compressed;
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
101 extra = st.stanza("failure", {xmlns="http://jabber.org/protocol/compress"}):tag("processing-failed");
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
102 });
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
103 return;
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
104 end
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
105 return compressed;
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
106 end);
2285
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
107 end
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
108
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
109 -- setup decompression for a stream
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
110 local function setup_decompression(session, inflate_stream)
3148
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
111 add_filter(session, "bytes/in", function(data)
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
112 local status, decompressed, eof = pcall(inflate_stream, data);
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
113 if status == false then
3226
69e920d7c968 mod_compression: Move logging of compression/decompression errors to before the closing of the stream, to make logs a bit easier to follow
Matthew Wild <mwild1@gmail.com>
parents: 3223
diff changeset
114 module:log("warn", "%s", tostring(decompressed));
3148
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
115 session:close({
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
116 condition = "undefined-condition";
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
117 text = decompressed;
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
118 extra = st.stanza("failure", {xmlns="http://jabber.org/protocol/compress"}):tag("processing-failed");
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
119 });
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
120 return;
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
121 end
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
122 return decompressed;
a83a995fe5db mod_compression: Use filters! \o/
Matthew Wild <mwild1@gmail.com>
parents: 3127
diff changeset
123 end);
2285
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
124 end
3dd7fdee9035 mod_compression: Some further refactoring.
Tobias Markmann <tm@ayena.de>
parents: 2284
diff changeset
125
3532
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
126 module:hook("stanza/http://jabber.org/protocol/compress:compressed", function(event)
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
127 local session = event.origin;
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
128
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
129 if session.type == "s2sout_unauthed" or session.type == "s2sout" then
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
130 session.log("debug", "Activating compression...")
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
131 -- create deflate and inflate streams
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
132 local deflate_stream = get_deflate_stream(session);
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
133 if not deflate_stream then return true; end
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
134
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
135 local inflate_stream = get_inflate_stream(session);
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
136 if not inflate_stream then return true; end
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
137
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
138 -- setup compression for session.w
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
139 setup_compression(session, deflate_stream);
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
140
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
141 -- setup decompression for session.data
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
142 setup_decompression(session, inflate_stream);
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
143 session:reset_stream();
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
144 local default_stream_attr = {xmlns = "jabber:server", ["xmlns:stream"] = "http://etherx.jabber.org/streams",
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
145 ["xmlns:db"] = 'jabber:server:dialback', version = "1.0", to = session.to_host, from = session.from_host};
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
146 session.sends2s("<?xml version='1.0'?>");
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
147 session.sends2s(st.stanza("stream:stream", default_stream_attr):top_tag());
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
148 session.compressed = true;
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
149 return true;
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
150 end
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
151 end);
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
152
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
153 module:hook("stanza/http://jabber.org/protocol/compress:compress", function(event)
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
154 local session, stanza = event.origin, event.stanza;
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
155
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
156 if session.type == "c2s" or session.type == "s2sin" or session.type == "c2s_unauthed" or session.type == "s2sin_unauthed" then
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
157 -- fail if we are already compressed
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
158 if session.compressed then
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
159 local error_st = st.stanza("failure", {xmlns=xmlns_compression_protocol}):tag("setup-failed");
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
160 (session.sends2s or session.send)(error_st);
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
161 session.log("debug", "Client tried to establish another compression layer.");
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
162 return true;
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
163 end
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
164
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
165 -- checking if the compression method is supported
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
166 local method = stanza:child_with_name("method");
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
167 method = method and (method[1] or "");
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
168 if method == "zlib" then
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
169 session.log("debug", "zlib compression enabled.");
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
170
2286
e0b2d934f316 mod_compression: Enabeling compression for outgoing s2s streams.
Tobias Markmann <tm@ayena.de>
parents: 2285
diff changeset
171 -- create deflate and inflate streams
2292
9c5941198719 mod_compression: Declaring the de-/compression pipes as local.
Tobias Markmann <tm@ayena.de>
parents: 2291
diff changeset
172 local deflate_stream = get_deflate_stream(session);
3532
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
173 if not deflate_stream then return true; end
2286
e0b2d934f316 mod_compression: Enabeling compression for outgoing s2s streams.
Tobias Markmann <tm@ayena.de>
parents: 2285
diff changeset
174
2292
9c5941198719 mod_compression: Declaring the de-/compression pipes as local.
Tobias Markmann <tm@ayena.de>
parents: 2291
diff changeset
175 local inflate_stream = get_inflate_stream(session);
3532
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
176 if not inflate_stream then return true; end
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
177
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
178 (session.sends2s or session.send)(st.stanza("compressed", {xmlns=xmlns_compression_protocol}));
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
179 session:reset_stream();
2286
e0b2d934f316 mod_compression: Enabeling compression for outgoing s2s streams.
Tobias Markmann <tm@ayena.de>
parents: 2285
diff changeset
180
e0b2d934f316 mod_compression: Enabeling compression for outgoing s2s streams.
Tobias Markmann <tm@ayena.de>
parents: 2285
diff changeset
181 -- setup compression for session.w
e0b2d934f316 mod_compression: Enabeling compression for outgoing s2s streams.
Tobias Markmann <tm@ayena.de>
parents: 2285
diff changeset
182 setup_compression(session, deflate_stream);
e0b2d934f316 mod_compression: Enabeling compression for outgoing s2s streams.
Tobias Markmann <tm@ayena.de>
parents: 2285
diff changeset
183
e0b2d934f316 mod_compression: Enabeling compression for outgoing s2s streams.
Tobias Markmann <tm@ayena.de>
parents: 2285
diff changeset
184 -- setup decompression for session.data
e0b2d934f316 mod_compression: Enabeling compression for outgoing s2s streams.
Tobias Markmann <tm@ayena.de>
parents: 2285
diff changeset
185 setup_decompression(session, inflate_stream);
3532
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
186
2286
e0b2d934f316 mod_compression: Enabeling compression for outgoing s2s streams.
Tobias Markmann <tm@ayena.de>
parents: 2285
diff changeset
187 session.compressed = true;
3532
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
188 elseif method then
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
189 session.log("debug", "%s compression selected, but we don't support it.", tostring(method));
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
190 local error_st = st.stanza("failure", {xmlns=xmlns_compression_protocol}):tag("unsupported-method");
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
191 (session.sends2s or session.send)(error_st);
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
192 else
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
193 (session.sends2s or session.send)(st.stanza("failure", {xmlns=xmlns_compression_protocol}):tag("setup-failed"));
2282
6f54dac3ec2d mod_compression: Prepare activating of compression on s2s.
Tobias Markmann <tm@ayena.de>
parents: 2280
diff changeset
194 end
3532
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
195 return true;
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
196 end
4f2cd1c688e1 mod_compression: Updated to use the new events API.
Waqas Hussain <waqas20@gmail.com>
parents: 3301
diff changeset
197 end);
1669
b8eec163a823 Commit initial version of mod_compression.
Tobias Markmann <tm@ayena.de>
parents:
diff changeset
198