summaryrefslogtreecommitdiffstats
path: root/lib/socket_wrapper
Commit message (Collapse)AuthorAgeFilesLines
* socket_wrapper: make sure interfaces are in the valid range on bind()Stefan Metzmacher2011-07-101-0/+5
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Sun Jul 10 18:24:14 CEST 2011 on sn-devel-104
* lib/socket_wrapper: allow up to 32 interfaces for a bigger 'make test'Andrew Bartlett2011-04-191-1/+4
| | | | | | The combined s3/s4 'make test' needs more interfaces. Andrew Bartlett
* socket_wrapper: fix handling of addr and addrlenStefan Metzmacher2011-03-091-4/+5
| | | | metze
* lib/socket_wrapper: try to fix the build on solarisStefan Metzmacher2011-03-041-0/+13
| | | | | | | struct msg does not contain msg_control, msg_controllen and msg_flags on solaris. metze
* socket_wrapper: use swrap_sendmsg_before()/after() in swrap_writev()Stefan Metzmacher2011-03-031-49/+17
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Thu Mar 3 23:43:39 CET 2011 on sn-devel-104
* socket_wrapper: use swrap_sendmsg_before()/after() in swrap_sendmsg()Stefan Metzmacher2011-03-031-47/+66
| | | | | | | This also adds the same logic for broadcast as in swrap_sendto() for SOCK_DGRAM. metze
* socket_wrapper: use swrap_sendmsg_before()/after() in swrap_send()Stefan Metzmacher2011-03-031-37/+18
| | | | metze
* socket_wrapper: use swrap_sendmsg_before()/after() in swrap_sendto()Stefan Metzmacher2011-03-031-86/+35
| | | | metze
* socket_wrapper: add swrap_sendmsg_before/after helper functionsStefan Metzmacher2011-03-031-0/+191
| | | | | | | | Currently have almost the same logic in swrap_send(), swrap_sendto(), swrap_writev() and swrap_sendmsg(), this helper functions let combine all the logic in 2 places. metze
* socket_wrapper: replace recvmsg() correctlyStefan Metzmacher2011-03-031-0/+6
| | | | metze
* socket_wrapper: readv() should only work on connected socketsStefan Metzmacher2011-03-031-0/+5
| | | | metze
* socket_wrapper: move swrap_ioctl() above the send*/recv* functionsStefan Metzmacher2011-03-031-26/+26
| | | | metze
* socket_wrapper: fix compiler warningsStefan Metzmacher2011-03-031-28/+37
| | | | metze
* socket_wrapper: don't allow connect() to the broadcast addressStefan Metzmacher2011-03-031-1/+8
| | | | | | This will simplify other code later. metze
* Fix some nonempty blank linesVolker Lendecke2011-02-131-18/+18
|
* socket_wrapper: avoid c++ style comments.Günther Deschner2011-02-101-2/+2
| | | | | | Seen on the aix s3-waf build where it causes the build to fail. Guenther
* s4-smbtorture: Make test names lowercase and dot-separated.Jelmer Vernooij2010-12-111-1/+1
| | | | | | | | This is consistent with the test names used by selftest, should make the names less confusing and easier to integrate with other tools. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Dec 11 04:16:13 CET 2010 on sn-devel-104
* socket_wrapper: Only add as global dependency when enabled.Jelmer Vernooij2010-11-121-3/+3
|
* s4-waf: Only enable various wrappers if they're actually used.Jelmer Vernooij2010-11-121-0/+1
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Fri Nov 12 14:33:34 UTC 2010 on sn-devel-104
* socket_wrapper: fill in sa.sa_len if the system supports itStefan Metzmacher2010-11-051-2/+12
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Fri Nov 5 14:40:00 UTC 2010 on sn-devel-104
* s4: Remove the old perl/m4/make/mk-based build system.Jelmer Vernooij2010-10-311-8/+0
| | | | | | | | The new waf-based build system now has all the same functionality, and the old build system has been broken for quite some time. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Oct 31 02:01:44 UTC 2010 on sn-devel-104
* Lowercase socket_wrapper name.Jelmer Vernooij2010-10-212-2/+2
| | | | | | | Avoid linking against socket_wrapper outside of developer mode. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Thu Oct 21 20:26:11 UTC 2010 on sn-devel-104
* wrapper: make socket_wrapper, uid_wrapper and nss_wrapper private libsAndrew Tridgell2010-10-211-4/+5
| | | | | | this prevents double instantiation Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* socket_wrapper: Make it work on freebsd for udp packetsStefan Metzmacher2010-10-101-1/+11
| | | | | Autobuild-User: Matthieu Patou <mat@samba.org> Autobuild-Date: Sun Oct 10 12:57:00 UTC 2010 on sn-devel-104
* s4-waf: fixed target group for SOCKET_WRAPPERAndrew Tridgell2010-05-031-0/+1
|
* s4-waf: put the --xxx-wrapper options in 'developer options' groupAndrew Tridgell2010-04-181-1/+2
|
* Revert "socket-wrapper: not all systems have FIONREAD defined"Stefan Metzmacher2010-04-081-2/+0
| | | | | | | | | | | | | | | | | | | This reverts commit 710aa773d54509de34404f9992c5058ddfa45f3b. We rely on FIONREAD in a lot of other parts in the code, so there's no need to have an ifdef for it in the socket_wrapper code. On tru64 FIONREAD is defined in <sys/ioctl.h> and we include <sys/ioctl.h> via "system/network.h". Tridge: maybe a HAVE_SYS_IOCTL_H was missing at the time you tried it on tru64? If we find a platform that doesn't support it, we need to bail out at configure time or provide a replacement in libreplace. metze
* build: allow the waf build to work with python 3.0 and 3.1Thomas Nagy2010-04-081-4/+2
| | | | | | Python 3.x is a bit fussier about print statements and indentation. Signed-off-by: Andrew Tridgell <tridge@samba.org>
* s4-waf: added a --enable-selftest option as a shortcutAndrew Tridgell2010-04-061-1/+3
| | | | | This is equiavalent to --enable-uid-wrapper --enable-nss-wrapper --enable-socket-wrapper but is easier to remember!
* s4-waf: fixed some deps now we don't auto-include tevent and replaceAndrew Tridgell2010-04-061-2/+2
| | | | | this is preparation for being able to use system versions of these libraries
* s4-waf: mark the wscript files as python so vim/emacs knows how to highlight ↵Andrew Tridgell2010-04-062-0/+4
| | | | them
* build: commit all the waf build files in the treeAndrew Tridgell2010-04-061-0/+4
|
* build: nearly there on samba4 buildAndrew Tridgell2010-04-061-0/+1
|
* build: added wrapper optionsAndrew Tridgell2010-04-061-0/+11
|
* socket-wrapper: not all systems have FIONREAD definedAndrew Tridgell2010-04-031-0/+2
| | | | tru64 for example
* socket_wrapper: also ignore AF_INET6 in swrap_setsockopt()Stefan Metzmacher2010-02-171-0/+4
| | | | metze
* socket_wrapper: swrap_read() should use SWRAP_RECV* for swrap_dump_packet()Stefan Metzmacher2009-09-081-5/+3
| | | | | | This is the same as swrap_recv(). metze
* Add read() to socketwrapper. Metze please check.Jeremy Allison2009-09-072-1/+38
| | | | Jeremy.
* Partially revert restriction of socket_wrapper to 1500 byte writesAndrew Bartlett2009-06-191-10/+32
| | | | | | | | | | | This keeps the restriction for stream sockets (where the caller will retry), without creating problems on datagram sockets (CLDAP is not defined, as far as I know, across multiple UDP packets). The commit adding this restriction was 47b106c0ae8b91c9cccfc21bf8e4e416b1abfd5d Andrew Bartlett
* fixed socket wrapper to determine family from the right structureAndrew Tridgell2009-06-091-1/+1
| | | | | | | | In convert_in_un_remote() the socket family can be accessed either as si->family or inaddr->sa_family. We were using the si->family to determine how to cast the inaddr structure, but if si->family != inaddr->sa_family then we will incorrectly be casting a in6 structure as in4 or vice-versa.
* socket_wrapper Cope with SOCK_CLOEXEC and SOCK_NONBLOCK flagsAndrew Bartlett2009-06-041-4/+16
| | | | | | | | | | Heimdal will, on supporting systems, set these flags in the type argument of socket(), causing breakage when combined with socket_wrapper. For background on these flags, see http://lwn.net/Articles/281965/ Andrew Bartlett
* Add support for sendmsg() in socket_wrapperAndrew Bartlett2009-05-262-0/+77
| | | | | | | | This is required because the deferred connect code skips the connect() until sending the packet, but unless we catch this call, the connect() never happens. Andrew Bartlett
* socket_wrapper: fix the build on systems without ipv6 supportStefan Metzmacher2009-04-141-0/+2
| | | | metze
* socket_wrapper: fix crash bug in swrap_readv/writevStefan Metzmacher2009-04-101-4/+10
| | | | metze
* socket_wrapper: fix connect() for dgram sockets, if the destination isn't ↵Stefan Metzmacher2009-03-231-4/+52
| | | | | | | | | | | | there yet Now we defer the real_connect() for dgram sockets to the first send()/sendto() call, as the destination might not be there at connect time. Commit 66dc53ee017d74a6f610bbe04337f064901fe2a1 was an incomplete fix for this problem. metze
* Revert "socket_wrapper: fix connect() for dgram sockets, if the destination ↵Stefan Metzmacher2009-03-221-7/+3
| | | | | | | | | | | isn't there yet" This reverts commit 66dc53ee017d74a6f610bbe04337f064901fe2a1. Somehow this leads to timeouts in some tests, samba4.ldb.ldapi and samba4.rpc.schannel. I need to look at it more closely later... metze
* socket_wrapper: fix connect() for dgram sockets, if the destination isn't ↵Stefan Metzmacher2009-03-211-3/+7
| | | | | | there yet metze
* socket_wrapper: wrap readv() and writev()Stefan Metzmacher2009-03-102-7/+137
| | | | metze
* socket_wrapper: try to make ipv6 support more portableStefan Metzmacher2009-03-091-9/+22
| | | | | | The internal structure of in6_addr isn't always the same. metze
* socket_wrapper: downgrade ipv6 sockets to ipv4 is in connect() if the dest ↵Stefan Metzmacher2009-03-081-5/+13
| | | | | | | | is ipv4 We only do this if the socket isn't explicit bound yet. metze