]> git.meshlink.io Git - meshlink/log
meshlink
9 years agoMerge branch 'mesh_topology_output' into roles
Niklas Hofmann [Wed, 13 Aug 2014 11:30:16 +0000 (13:30 +0200)]
Merge branch 'mesh_topology_output' into roles

9 years agofixing comparison expression
Niklas Hofmann [Wed, 13 Aug 2014 07:27:05 +0000 (09:27 +0200)]
fixing comparison expression

9 years agoFix segfault when two nodes that just joined a mesh want to autoconnect to each other.
Guus Sliepen [Tue, 12 Aug 2014 20:03:32 +0000 (22:03 +0200)]
Fix segfault when two nodes that just joined a mesh want to autoconnect to each other.

In this case, we have not exchanged public keys yet. That should not be
a problem, but we blindly pass a NULL pointer to sptps_start() in this
case which blindly dereferences it. Fix sptps_start() by making sure no
arguments are NULL, and teach MeshLink to exchange keys between
reachable nodes when it tries to make a meta-connection.

9 years agocreate a new connection only in case there is none
Niklas Hofmann [Tue, 12 Aug 2014 15:34:50 +0000 (17:34 +0200)]
create a new connection only in case there is none

9 years agofixed some potentially nasty memory issues
Niklas Hofmann [Tue, 12 Aug 2014 14:40:41 +0000 (16:40 +0200)]
fixed some potentially nasty memory issues

9 years agoasserts added to make sure devclass is valid
Niklas Hofmann [Tue, 12 Aug 2014 09:52:02 +0000 (11:52 +0200)]
asserts added to make sure devclass is valid

9 years agoRemoved references to HAVE_STRUCT_SOCKADDR_STORAGE.
Aaron Krebs [Tue, 12 Aug 2014 09:43:35 +0000 (11:43 +0200)]
Removed references to HAVE_STRUCT_SOCKADDR_STORAGE.

Enforced sockaddr_storage support in configure.ac

9 years agoconverging auto connect algorithm
Niklas Hofmann [Tue, 12 Aug 2014 03:32:22 +0000 (05:32 +0200)]
converging auto connect algorithm

9 years agoChanged meshlink_get_all_edges_state to re-use memory.
Aaron Krebs [Mon, 11 Aug 2014 10:13:25 +0000 (12:13 +0200)]
Changed meshlink_get_all_edges_state to re-use memory.

9 years agoFinished sockaddr_t to sockaddr_storage copy on meshlink_edge_t.
Aaron Krebs [Mon, 11 Aug 2014 08:56:58 +0000 (10:56 +0200)]
Finished sockaddr_t to sockaddr_storage copy on meshlink_edge_t.

9 years agoImplemented API function to capture mesh edges.
Aaron Krebs [Sat, 9 Aug 2014 20:05:34 +0000 (22:05 +0200)]
Implemented API function to capture mesh edges.

9 years agoRemoved extern keyword.
Aaron Krebs [Sat, 9 Aug 2014 17:38:03 +0000 (19:38 +0200)]
Removed extern keyword.

9 years agoadded log info
Niklas Hofmann [Sat, 9 Aug 2014 18:14:01 +0000 (20:14 +0200)]
added log info

9 years agofixed missing unlock
Niklas Hofmann [Sat, 9 Aug 2014 17:34:12 +0000 (19:34 +0200)]
fixed missing unlock

9 years agoReplaced node_mutex with mesh_mutex.
Aaron Krebs [Sat, 9 Aug 2014 15:54:56 +0000 (17:54 +0200)]
Replaced node_mutex with mesh_mutex.

This reverses the mutex use; instead of locking when modifying nodes,
we unlock when not modifying the mesh. Any API functions that wish
to use the mesh must aquire the lock first.

TODO: Currently there is a deadlock problem, and the discovery thread is not
cleanly handled yet.

9 years agofix in log message
Niklas Hofmann [Sat, 9 Aug 2014 16:45:29 +0000 (18:45 +0200)]
fix in log message

9 years agofix arith exception, log messages for autoconnect code
Niklas Hofmann [Sat, 9 Aug 2014 16:42:02 +0000 (18:42 +0200)]
fix arith exception, log messages for autoconnect code

9 years agoclass based connect behaviour
Niklas Hofmann [Sat, 9 Aug 2014 16:26:35 +0000 (18:26 +0200)]
class based connect behaviour

9 years agoexplicit declaration of node_write_dclass
Niklas Hofmann [Sat, 9 Aug 2014 14:38:52 +0000 (16:38 +0200)]
explicit declaration of node_write_dclass

9 years agoMerge branch 'everbase' into roles
Niklas Hofmann [Sat, 9 Aug 2014 14:35:26 +0000 (16:35 +0200)]
Merge branch 'everbase' into roles

9 years agopersistence of DeviceClass
Niklas Hofmann [Sat, 9 Aug 2014 14:34:43 +0000 (16:34 +0200)]
persistence of DeviceClass

9 years agonet_packet: trivial, adjust to logger to DEBUG
Saverio Proto [Sat, 9 Aug 2014 14:27:10 +0000 (16:27 +0200)]
net_packet: trivial, adjust to logger to DEBUG

9 years agomanynodes example: trivial, change debug levels
Saverio Proto [Sat, 9 Aug 2014 14:26:16 +0000 (16:26 +0200)]
manynodes example: trivial, change debug levels

9 years agoDon't crash when the log callback gets a NULL mesh.
Guus Sliepen [Sat, 9 Aug 2014 13:36:00 +0000 (15:36 +0200)]
Don't crash when the log callback gets a NULL mesh.

9 years agoMerge branch 'everbase' of chicago.everbase.net:meshlink/meshlink into everbase
Guus Sliepen [Sat, 9 Aug 2014 13:31:43 +0000 (15:31 +0200)]
Merge branch 'everbase' of chicago.everbase.net:meshlink/meshlink into everbase

9 years agoRestart UDP key exchange after PingTimeout if it didn't work.
Guus Sliepen [Sat, 9 Aug 2014 13:31:00 +0000 (15:31 +0200)]
Restart UDP key exchange after PingTimeout if it didn't work.

9 years agoroute avahi log to meshlink log
Niklas Hofmann [Sat, 9 Aug 2014 12:49:53 +0000 (14:49 +0200)]
route avahi log to meshlink log

9 years agolog level adjustments
Niklas Hofmann [Sat, 9 Aug 2014 12:05:25 +0000 (14:05 +0200)]
log level adjustments

9 years agoMerge branch 'roles' into everbase
Niklas Hofmann [Sat, 9 Aug 2014 10:09:37 +0000 (12:09 +0200)]
Merge branch 'roles' into everbase

9 years agocleanup of entry group in discovery_stop
Niklas Hofmann [Sat, 9 Aug 2014 10:08:48 +0000 (12:08 +0200)]
cleanup of entry group in discovery_stop

9 years agoexample manynodes: send test messages only to other nodes and not to ourselfs
Saverio Proto [Sat, 9 Aug 2014 10:06:53 +0000 (12:06 +0200)]
example manynodes: send test messages only to other nodes and not to ourselfs

9 years agodclass transfer while adding edges improved
Niklas Hofmann [Sat, 9 Aug 2014 10:02:55 +0000 (12:02 +0200)]
dclass transfer while adding edges improved

9 years agomanynodes example: improved logging
Saverio Proto [Sat, 9 Aug 2014 09:19:24 +0000 (11:19 +0200)]
manynodes example: improved logging

9 years agoFix packet length check in sptps_receive_data_datagram().
Guus Sliepen [Sat, 9 Aug 2014 09:56:59 +0000 (11:56 +0200)]
Fix packet length check in sptps_receive_data_datagram().

9 years agoADD EDGE fixed
Niklas Hofmann [Sat, 9 Aug 2014 09:50:31 +0000 (11:50 +0200)]
ADD EDGE fixed

9 years agofixed port byte order
Niklas Hofmann [Sat, 9 Aug 2014 09:46:10 +0000 (11:46 +0200)]
fixed port byte order

9 years agoMerge branch 'everbase' into roles
Niklas Hofmann [Sat, 9 Aug 2014 09:29:35 +0000 (11:29 +0200)]
Merge branch 'everbase' into roles

9 years agodclass support within the edge protocol
Niklas Hofmann [Sat, 9 Aug 2014 09:28:57 +0000 (11:28 +0200)]
dclass support within the edge protocol

9 years agointroduction of dclass and use as source for weight of edges
Niklas Hofmann [Sat, 9 Aug 2014 08:21:51 +0000 (10:21 +0200)]
introduction of dclass and use as source for weight of edges

9 years agoMerge branch 'discovery' of chicago.everbase.net:meshlink/meshlink into everbase
Guus Sliepen [Sat, 9 Aug 2014 08:21:00 +0000 (10:21 +0200)]
Merge branch 'discovery' of chicago.everbase.net:meshlink/meshlink into everbase

9 years agoFix buffer overflow in meshlink_hint_address().
Guus Sliepen [Sat, 9 Aug 2014 08:00:05 +0000 (10:00 +0200)]
Fix buffer overflow in meshlink_hint_address().

9 years agoFinish implementation of log callbacks.
Guus Sliepen [Fri, 8 Aug 2014 15:43:50 +0000 (17:43 +0200)]
Finish implementation of log callbacks.

9 years agoMerge branch 'discovery' into everbase
Niklas Hofmann [Fri, 8 Aug 2014 15:01:07 +0000 (17:01 +0200)]
Merge branch 'discovery' into everbase

9 years agoallow multiple instances of avahi
Niklas Hofmann [Fri, 8 Aug 2014 15:00:32 +0000 (17:00 +0200)]
allow multiple instances of avahi

9 years agomanynodes example: committed /test command to test if it is possible to succefully...
Saverio Proto [Fri, 8 Aug 2014 14:16:20 +0000 (14:16 +0000)]
manynodes example: committed /test command to test if it is possible to succefully deliver data among the nodes

9 years agoMerge branch 'discovery' into everbase
Niklas Hofmann [Fri, 8 Aug 2014 14:12:41 +0000 (16:12 +0200)]
Merge branch 'discovery' into everbase

9 years agoOnly start discovery once per process.
Guus Sliepen [Fri, 8 Aug 2014 14:09:11 +0000 (16:09 +0200)]
Only start discovery once per process.

Starting multiple Avahi threads in one process will fail with one of the
threads triggering an assert(), thus killing the process. It's not
critical that Avahi runs, so make sure we only start one.

9 years agoFix a compiler warning.
Guus Sliepen [Fri, 8 Aug 2014 14:09:01 +0000 (16:09 +0200)]
Fix a compiler warning.

9 years agoTXT record bugfix
Niklas Hofmann [Fri, 8 Aug 2014 14:08:23 +0000 (16:08 +0200)]
TXT record bugfix

9 years agoMerge branch 'everbase' into discovery
Niklas Hofmann [Fri, 8 Aug 2014 13:22:32 +0000 (15:22 +0200)]
Merge branch 'everbase' into discovery

9 years agoexample manynodes fixed to use meshlink_join
Saverio Proto [Fri, 8 Aug 2014 13:17:37 +0000 (13:17 +0000)]
example manynodes fixed to use meshlink_join

9 years agomanynodes chat example: use a prefix for nodes names so that is possible to run multi...
Saverio Proto [Fri, 8 Aug 2014 12:40:15 +0000 (12:40 +0000)]
manynodes chat example: use a prefix for nodes names so that is possible to run multiple instances of this example on multiple hosts and link them together

9 years agoMake sure the tests compile again.
Guus Sliepen [Fri, 8 Aug 2014 13:13:49 +0000 (15:13 +0200)]
Make sure the tests compile again.

9 years agoDon't link with -lavahi-client, we only need the avahi-core.
Guus Sliepen [Fri, 8 Aug 2014 13:04:46 +0000 (15:04 +0200)]
Don't link with -lavahi-client, we only need the avahi-core.

9 years agoMerge branch 'everbase' of chicago.everbase.net:meshlink/meshlink into everbase
Niklas Hofmann [Fri, 8 Aug 2014 12:33:39 +0000 (14:33 +0200)]
Merge branch 'everbase' of chicago.everbase.net:meshlink/meshlink into everbase

9 years agoMerge branch 'discovery' into everbase
Niklas Hofmann [Fri, 8 Aug 2014 12:32:03 +0000 (14:32 +0200)]
Merge branch 'discovery' into everbase

Conflicts:
examples/chatpp.cc
src/meshlink++.h
src/meshlink.c

9 years agosptps: split error conditions handling
Saverio Proto [Fri, 8 Aug 2014 11:46:18 +0000 (11:46 +0000)]
sptps: split error conditions handling

9 years agochanged name of SRV record to fingerprint
Niklas Hofmann [Fri, 8 Aug 2014 12:00:35 +0000 (14:00 +0200)]
changed name of SRV record to fingerprint

9 years agoMSG_NOSIGNAL option in send() will prevent SIGPIPE
Saverio Proto [Fri, 8 Aug 2014 11:18:42 +0000 (11:18 +0000)]
MSG_NOSIGNAL option in send() will prevent SIGPIPE

9 years agoChat example: Trivial, fix return in void function
Saverio Proto [Fri, 8 Aug 2014 11:05:55 +0000 (11:05 +0000)]
Chat example: Trivial, fix return in void function

9 years agocheck result of malloc
Niklas Hofmann [Fri, 8 Aug 2014 10:40:17 +0000 (12:40 +0200)]
check result of malloc

9 years agoappname added, which is used by mdns as part of the service type
Niklas Hofmann [Fri, 8 Aug 2014 10:35:05 +0000 (12:35 +0200)]
appname added, which is used by mdns as part of the service type

9 years agoTest whether UDP communication is working.
Guus Sliepen [Fri, 8 Aug 2014 10:00:41 +0000 (12:00 +0200)]
Test whether UDP communication is working.

9 years agoHandle io_t's being deleted out of order while going through loop->ios.
Guus Sliepen [Fri, 8 Aug 2014 09:59:39 +0000 (11:59 +0200)]
Handle io_t's being deleted out of order while going through loop->ios.

9 years agoActually implement sptps_verify_datagram(), so try_mac() works.
Guus Sliepen [Fri, 8 Aug 2014 09:52:13 +0000 (11:52 +0200)]
Actually implement sptps_verify_datagram(), so try_mac() works.

9 years agouse uuid for hostname and service name, because we exchange all important information...
Niklas Hofmann [Fri, 8 Aug 2014 09:05:17 +0000 (11:05 +0200)]
use uuid for hostname and service name, because we exchange all important information via service type and TXT record

9 years agouses publish_no_reverse flag of avahi
Niklas Hofmann [Fri, 8 Aug 2014 08:33:12 +0000 (10:33 +0200)]
uses publish_no_reverse flag of avahi

9 years agoMake sure outgoing->mesh is set.
Guus Sliepen [Fri, 8 Aug 2014 08:01:39 +0000 (10:01 +0200)]
Make sure outgoing->mesh is set.

This caused a segmentation fault when cancelling outgoing connections.

9 years agocode cleanup; noptr fix
Niklas Hofmann [Thu, 7 Aug 2014 17:01:58 +0000 (19:01 +0200)]
code cleanup; noptr fix

9 years agoRemove references to port 655 from MeshLink.
Guus Sliepen [Thu, 7 Aug 2014 16:33:08 +0000 (18:33 +0200)]
Remove references to port 655 from MeshLink.

First of all, port 655 is officially registered as the port for tinc,
not for any other application. Second, applications built on top of
MeshLink will probably run as non-root, and so cannot bind to ports
lower than 1024 anyway.

- Never try binding to port 655 when setting up a new node.
- Always require a valid port number when making connections.

9 years agoSpeed up making outgoing connections.
Guus Sliepen [Thu, 7 Aug 2014 15:47:58 +0000 (17:47 +0200)]
Speed up making outgoing connections.

- Immediately fire the periodic_handler() when the main loop starts.
- Use a very short timeout if we haven't made enough real and pending
  connections yet to fill the autoconnect budget.

This basically means we immediately start up to 3 outgoing connections
to different nodes.

9 years agoRemove debug messages from meshlink_queue.h.
Guus Sliepen [Thu, 7 Aug 2014 15:01:50 +0000 (17:01 +0200)]
Remove debug messages from meshlink_queue.h.

9 years agoAllow meshlink_start() to work after meshlink_stop().
Guus Sliepen [Thu, 7 Aug 2014 14:27:43 +0000 (16:27 +0200)]
Allow meshlink_start() to work after meshlink_stop().

The way the MeshLink thread is signaled that it has to quit using
meshlink_stop() is by shutting down one of the listening sockets.
However, it has to be repaired to allow meshlink_start() to work again.

Maybe not the prettiest solution.

9 years agoCall meshlink_stop before meshlink_join in the chat program
Saverio Proto [Thu, 7 Aug 2014 14:18:38 +0000 (14:18 +0000)]
Call meshlink_stop before meshlink_join in the chat program

9 years agoAfter killing meshlink thread update the bool status threadstarted
Saverio Proto [Thu, 7 Aug 2014 13:04:18 +0000 (15:04 +0200)]
After killing meshlink thread update the bool status threadstarted

9 years agoAdd a public API for the thread-safe message queue.
Guus Sliepen [Thu, 7 Aug 2014 13:41:16 +0000 (15:41 +0200)]
Add a public API for the thread-safe message queue.

9 years agoRemove .dirstamp file.
Guus Sliepen [Thu, 7 Aug 2014 12:34:37 +0000 (14:34 +0200)]
Remove .dirstamp file.

It absolutely does not belong in the repository.

9 years agoes compiliert, aber failed immernoch. :-( was ist da los???
Lars [Sun, 3 Aug 2014 23:31:42 +0000 (01:31 +0200)]
es compiliert, aber failed immernoch. :-( was ist da los???

9 years agoobject-oriented interface 1st durchstich, incl. chat program adopted. :-)
Lars [Sun, 3 Aug 2014 23:25:12 +0000 (01:25 +0200)]
object-oriented interface 1st durchstich, incl. chat program adopted. :-)

9 years agoFix compiler warnings in manynodes.c.
Guus Sliepen [Thu, 31 Jul 2014 15:18:08 +0000 (17:18 +0200)]
Fix compiler warnings in manynodes.c.

9 years agoCheck return value of fread() when reading from /dev/urandom.
Guus Sliepen [Thu, 31 Jul 2014 15:13:21 +0000 (17:13 +0200)]
Check return value of fread() when reading from /dev/urandom.

9 years agowe might have to think about locking in case we call meshlink-methods - todo added
Niklas Hofmann [Thu, 31 Jul 2014 01:26:59 +0000 (03:26 +0200)]
we might have to think about locking in case we call meshlink-methods - todo added

9 years agoignore unknown address types (just in case)
Niklas Hofmann [Thu, 31 Jul 2014 01:21:53 +0000 (03:21 +0200)]
ignore unknown address types (just in case)

9 years agoa first mdns discovery implementation
Niklas Hofmann [Thu, 31 Jul 2014 01:08:06 +0000 (03:08 +0200)]
a first mdns discovery implementation

9 years agoMerge branch 'address_hint_api' into discovery
Niklas Hofmann [Wed, 30 Jul 2014 23:51:55 +0000 (01:51 +0200)]
Merge branch 'address_hint_api' into discovery

9 years agoavahi mdns integration
Niklas Hofmann [Wed, 30 Jul 2014 23:44:43 +0000 (01:44 +0200)]
avahi mdns integration

9 years agoMerge remote-tracking branch 'origin/everbase' into discovery
Niklas Hofmann [Wed, 30 Jul 2014 22:40:28 +0000 (00:40 +0200)]
Merge remote-tracking branch 'origin/everbase' into discovery

9 years agoavahi mdns skeleton
Niklas Hofmann [Wed, 30 Jul 2014 22:39:39 +0000 (00:39 +0200)]
avahi mdns skeleton

9 years agoAdd meshlink_get_fingerprint().
Guus Sliepen [Wed, 30 Jul 2014 16:18:09 +0000 (18:18 +0200)]
Add meshlink_get_fingerprint().

This function returns a (fingerprint of a) node's public key in
printable ASCII.

9 years agoFree memory.
Aaron Krebs [Wed, 30 Jul 2014 16:04:17 +0000 (18:04 +0200)]
Free memory.

9 years agoImplemented meshlink_hint_address().
Aaron Krebs [Wed, 30 Jul 2014 15:44:58 +0000 (17:44 +0200)]
Implemented meshlink_hint_address().

9 years agoUtility functions to get string representation of sockaddr components.
Aaron Krebs [Wed, 30 Jul 2014 15:44:23 +0000 (17:44 +0200)]
Utility functions to get string representation of sockaddr components.

9 years agoAdd proper error reporting to the chat examples.
Guus Sliepen [Wed, 30 Jul 2014 15:25:42 +0000 (17:25 +0200)]
Add proper error reporting to the chat examples.

9 years agoFix meshlink_get_all_nodes().
Guus Sliepen [Wed, 30 Jul 2014 15:22:39 +0000 (17:22 +0200)]
Fix meshlink_get_all_nodes().

9 years agoAdd missing meshlink_errnos in meshlink_start().
Guus Sliepen [Wed, 30 Jul 2014 15:06:47 +0000 (17:06 +0200)]
Add missing meshlink_errnos in meshlink_start().

9 years agoFix a crash when meshlink_open() is called with an invalid confbase.
Guus Sliepen [Wed, 30 Jul 2014 14:59:38 +0000 (16:59 +0200)]
Fix a crash when meshlink_open() is called with an invalid confbase.

9 years agoSet meshlink_errno everywhere an error is returned by the public API.
Guus Sliepen [Wed, 30 Jul 2014 14:52:47 +0000 (16:52 +0200)]
Set meshlink_errno everywhere an error is returned by the public API.

9 years agoMake sure mesh->name is available to the application.
Guus Sliepen [Wed, 30 Jul 2014 14:36:44 +0000 (16:36 +0200)]
Make sure mesh->name is available to the application.

For now, it will be replaced by a function.

9 years agoNew API function for address hinting.
Aaron Krebs [Wed, 30 Jul 2014 14:14:39 +0000 (16:14 +0200)]
New API function for address hinting.

9 years agoFix the C++ wrapper and the examples.
Guus Sliepen [Wed, 30 Jul 2014 13:09:50 +0000 (15:09 +0200)]
Fix the C++ wrapper and the examples.