Commit graph

316 commits

Author SHA1 Message Date
Kim Alvefur
1784c121bb Merge 0.11->trunk 2020-10-15 17:23:21 +02:00
Kim Alvefur
d040d165bd Back out changeset 2c1583bb0e0f
Same reason as 712b2e6a09d9
2020-10-15 17:21:58 +02:00
Kim Alvefur
f61a3420ea Back out 6dde2c9fa272: Doesn't work on Lua 5.1 2020-10-15 17:12:33 +02:00
Kim Alvefur
ff4668cb1f util.strbitop: Remove redundant init function
When you have 3 almost identical functions, you tend to edit one and
then copypaste. Forgot to remove this line from the other two.
2020-10-15 17:05:53 +02:00
Kim Alvefur
339ababe64 util.strbitop: Create buffer in the correct size (optimization)
This avoids dynamically growing the buffer as Lua does when luaL_addchar
is used, thus saving on realloc calls.
2020-10-15 16:43:30 +02:00
Kim Alvefur
1c55a0be07 util.strbitop: Reformat code
astyle \
	--indent=tab \
	--attach-classes \
	--indent-switches \
	--break-blocks \
	--pad-oper \
	--unpad-paren \
	--add-braces \
	--align-pointer=name \
	--lineend=linux \
	*.c
2020-10-15 16:26:56 +02:00
Kim Alvefur
9e41caf702 Merge 0.11->trunk 2020-10-15 17:14:03 +02:00
Kim Alvefur
9233d48222 Merge 0.11->trunk 2020-10-15 16:51:16 +02:00
Matthew Wild
5a3e9e37bc Merge 0.11->trunk 2020-10-15 14:25:09 +01:00
Kim Alvefur
57c5c4ddbe configure: Pass compiler flag to enable ICU only when building util.encodings
Passing it in CFLAGS applied to all modules, which was not needed.
2020-07-12 23:28:04 +02:00
Kim Alvefur
897bfdfa74 util.strbitop: Library for bitwise operations on strings 2019-09-07 13:37:47 +02:00
Matthew Wild
512f97b32f util.ringbuffer: Ensure unsigned chars are always returned from :byte() 2020-06-24 12:34:20 +01:00
Kim Alvefur
c7f339117d util-src: Use the luaL_pushfail API added in Lua 5.4 to highlight all failure conditions
Actually just an alias of pushnil, but it does make it more obvious
where the failure conditions are, which is good for readability.
2020-06-07 02:25:56 +02:00
Matthew Wild
2155ef819e util.ringbuffer: Add :sub() and :byte() methods equivalent to the string methods 2020-06-04 15:19:20 +01:00
Kim Alvefur
05bfe971bf util.ringbuffer: Prevent creation of buffer with negative size
Previously this would have been (unsigned)-1 which is a large positive
integer.
2020-06-04 16:11:08 +02:00
Kim Alvefur
73efa2f2f1 util.ringbuffer: Prevent creation of zero-size buffer 2020-05-29 18:11:42 +02:00
Kim Alvefur
d88904312b util.pposix,signal: Pass around various OS numbers as integers [Lua 5.3]
Passing around PIDs, UIDs etc as integers makes it more sane in Lua 5.3.
Getting 1234.0 as PID is silly. Shouldn't change any behavior as these
are all integers on the C side and the integral floats are accepted as
integers when passed back from Lua into C.
2020-05-04 21:51:30 +02:00
Kim Alvefur
d146b0d68a util.hashes: Fix output length of PBKDF2-HMAC-SHA256
Somehow it got SHA1's 20 byte output instead of the proper 32 = 256/8
2020-04-22 21:38:36 +02:00
Emmanuel Gil Peyrot
61789d01d9 util.net: Fix signedness warning on ARM
net.c:87:56: warning: comparison of integer expressions of different signedness: ?long unsigned int? and ?long int? [-Wsign-compare]
2020-01-30 14:22:21 +01:00
Emmanuel Gil Peyrot
83a7665a0e util.*.c: Add static qualifiers everywhere 2019-12-01 20:25:20 +01:00
Emmanuel Gil Peyrot
52ab88e51e util.encodings: Remove redundant cast 2019-12-01 23:34:49 +01:00
Emmanuel Gil Peyrot
af6462aa3a util.encodings: Don?t export unneeded symbols
This reduces the binary size from 22704?B to 18592?B.
2019-12-01 23:34:45 +01:00
Kim Alvefur
612b1ffff1 Merge 0.11->trunk 2019-11-16 16:52:31 +01:00
Kim Alvefur
6a2b94e8b8 util.pposix: Avoid overflow of malloc info at 2GB (fixes #1445 until 4GB) 2019-11-16 16:45:33 +01:00
Kim Alvefur
99ae8431de util.encodings: Don't ignore non-strings passed to stringprep functions
If you manage to pass a table or something weird to these, you deserve
to know.
2019-11-02 13:09:54 +01:00
Kim Alvefur
988243a601 util.encodings: Strictly verify that the 'strict' *prep argument is a boolean
This is to prevent mistakes like nodeprep(username:gsub("a","b")) from
unintentionally invoking strict mode.
2019-10-30 16:22:44 +01:00
Kim Alvefur
4ff75d0fc9 util.encodings: Allow unassigned code points in ICU mode to match libidn behavior (fixes #1348) 2019-04-24 16:16:19 +02:00
Kim Alvefur
8f4840c484 util.encodings: Optional strict flag to stringprep 2019-04-24 15:01:00 +02:00
Kim Alvefur
5888ebf21b util.encodings: Spell out all IDNA 2008 options ICU has 2019-09-11 00:40:30 +02:00
Kim Alvefur
fb8c824b0b util.encodings: Switch ICU binding to IDNA2008 (fixes #533, #1301) 2019-09-11 00:14:59 +02:00
Kim Alvefur
b84ddeeb2f util.hashes: Use HMAC function provided by OpenSSL (fixes #1345) 2019-04-19 13:12:00 +02:00
Kim Alvefur
b105494187 util-src/makefile: Update with util.poll and util.compat (fixes #1251) 2018-11-30 16:00:12 +01:00
Matthew Wild
3bc2c02797 util.xpcall, util.compat: Add non-hacky multi-argument xpcall() for Lua 5.1 2018-10-26 19:29:08 +01:00
Kim Alvefur
6d12622b2a net.server_epoll: Special handling of signal interrupts 2018-10-12 03:22:09 +02:00
Kim Alvefur
ec7fb3ee61 net.server_epoll: Ignore ENOENT when deregitering socket
It should not really happen
2018-10-12 03:21:11 +02:00
Kim Alvefur
6f088c5034 net.server_epoll: Graceful handling of registering already added socket 2018-10-12 03:20:09 +02:00
Kim Alvefur
dd8a4ff498 util.poll: Fix inverted logic 2018-10-11 18:56:11 +02:00
Kim Alvefur
ea072c9adb util.poll: Handle failed epoll FD creation 2018-10-11 18:52:12 +02:00
Kim Alvefur
dc9800c929 util.poll: Early return from __gc in case of no valid epoll FD
This could happen if the epoll FD has already been closed or
the epoll_create call failed
2018-10-11 18:50:04 +02:00
Kim Alvefur
080fdb85d2 util.poll: Increase max epoll events per call
This makes the struct roughly the same size in both epoll and select
mode (64bit).

There doesn?t seem to be much guidance on an appropriate size, it does
not seem to matter too much since if there are more events they will
simply show up in the next epoll_wait call. The number of exactly
concurrent events should be fairly low most of the time anyways.
2018-10-08 15:33:15 +02:00
Kim Alvefur
34be9eaebf util.poll: Zero FD sets watched for errors on creation 2018-10-07 20:58:51 +02:00
Kim Alvefur
e70b1af98a net.poll: Guard against negative or too large FDs 2018-10-07 18:44:46 +02:00
Kim Alvefur
b39130c595 util.poll: Fix missing return for adding duplicate FD 2018-10-07 18:41:44 +02:00
Kim Alvefur
1da6bcc301 util.poll: Tweak metatable name field 2018-10-06 18:32:57 +02:00
Kim Alvefur
3e48ac275a util.poll: Fix monitoring of socket exceptions in select mode
Since state->err is a set of all watched FDs, this mistake caused all
sockets to appear to have errors.
2018-10-06 17:19:50 +02:00
Kim Alvefur
128f7d4593 util.poll: Lua 5.1 compat 2018-09-15 01:17:53 +02:00
Kim Alvefur
afea46904d util.poll: Remove 'inline' from function declaration
Why does this fix building?
2018-09-15 01:05:59 +02:00
Kim Alvefur
a638626334 util.poll: Import poll library with epoll and select support 2018-05-16 23:56:34 +02:00
Kim Alvefur
90cb134f6d util.pposix: Allow _DARWIN_C_SOURCE to be overriden
Like the others there
2018-09-08 11:52:44 +02:00
Kim Alvefur
74fa6ced21 Merge 0.10->trunk 2018-09-08 11:51:52 +02:00