Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-08-05 | The peer_l is not needed in the rde but still allocated, free them and | Claudio Jeker | |
save 1k per peer. OK henning@ | |||
2004-08-03 | Fix mem-leak on exit. OK henning@ | Claudio Jeker | |
2004-07-28 | The hole dance to close a mrt file after fd passing in the parent is not | Claudio Jeker | |
needed as the fd is closed while beeing passed. looks good henning@ | |||
2004-07-05 | fix a few KNF fallouts | Henning Brauer | |
2004-07-04 | 2 more file descriptors for each RDE and SE inherited from the parent | Henning Brauer | |
we should close | |||
2004-07-04 | when getting rid of the listen_addr TAILQ after forking actually close | Henning Brauer | |
the file descriptors in RDE and parent process, not needed or used there | |||
2004-07-03 | Switch mrt dumping to fd passing. This gives some speed up when extensive | Claudio Jeker | |
dumping is done. Acctually mrt dumps were broken because of the fd passing. The nice side effect is a much cleaner code, especially in the parent process. OK henning@ | |||
2004-06-20 | at least somewhat consistently name the TAILQ_ENTRYs... this confused me | Henning Brauer | |
more than once | |||
2004-06-20 | implement file descriptor passing in the imsg/msgbuf framework, and use | Henning Brauer | |
it to let the main process to prepare new listening sockets (socket() and bind()) on behalf of the session engine, which of course cannot bind() to ports < 1024 any more once it dropped privileges. with some help from theo, claudio ok | |||
2004-06-06 | rework bgpd's handling of listening sockets. instead of one for each | Henning Brauer | |
supported address familiy, keep a tailq of an arbitary number of them. the new struct listen_addr contains the sockaddr and the fd. this fixes quite some nasty behaviour which was a consequence of the previous model. looks right deraadt@, and discussed with claudio | |||
2004-05-21 | Add support for dynamic announcements. Usefule to annouce temporary | Claudio Jeker | |
blackhole routes or to make network announcements dependent on a external state (e.g. for carp setups) OK henning@ | |||
2004-05-07 | add a filter option to dump prefixes learned in UPDATEs into a PF table, | Damien Miller | |
intended for building realtime BGP blacklists (e.g. with spamd); ok claudio & henning | |||
2004-05-03 | little KNF issue | Henning Brauer | |
2004-04-29 | sock -> fd; ok henning | Theo de Raadt | |
2004-04-27 | crud stripping; henning ok | Theo de Raadt | |
2004-04-25 | Remove the no longer needed configure stuff in RDE. The peer list needs no | Claudio Jeker | |
longer to be synced between parent, SE and RDE. OK henning@ | |||
2004-03-16 | delay creating the control socket until after forking, but before chroot | Henning Brauer | |
(lives in /var/run, i. e. outside chroot) and privdrop. claudio ok | |||
2004-03-12 | fix the "wait for child processes to terminate" code, and move it down a bit | Henning Brauer | |
millert ok | |||
2004-03-11 | Shutdown the RDE cleanly on exit. Plug some memleaks. OK henning@ | Claudio Jeker | |
2004-03-11 | Free unneeded mrt lists in SE and on exit. OK henning@ | Claudio Jeker | |
2004-03-10 | pass a pointer to the network list as well to session_main so we can free() | Henning Brauer | |
the members after fork | |||
2004-03-10 | pass a pointer to the filter rule list to session_main() so we can free() | Henning Brauer | |
the list entries and the head there after forking | |||
2004-03-10 | free peer list on exit, claudio ok | Henning Brauer | |
2004-03-01 | Arrrg. Not my day. Sync printconfig with parser here too. | Claudio Jeker | |
2004-02-19 | Make the code more portable. Add some missing header files and make the use | Claudio Jeker | |
of the queue(3) makros more portable. OK henning@ some time ago. | |||
2004-02-09 | print networks too | Henning Brauer | |
2004-02-09 | drain the list fluffier | Henning Brauer | |
2004-02-09 | print more fluff | Henning Brauer | |
2004-02-09 | move printing the config to where it belongs | Henning Brauer | |
2004-02-07 | send filter rules to the RDE on reloads, help & ok claudio | Henning Brauer | |
2004-02-06 | initial cut at the filtering language. | Henning Brauer | |
structs etc to describe a rule, filter rule list management parser groks filter defs now. claudio ok, discussion & help also jakob theo | |||
2004-02-03 | defer free()ing the previous peer list until after parsing the config file | Henning Brauer | |
so in the parser we can access it. will be needed soon. | |||
2004-01-23 | use log_addr | Henning Brauer | |
2004-01-22 | use log_warnx and log_info. reclassify a few messages in the process and fix | Henning Brauer | |
a few messages. ok claudio@ | |||
2004-01-22 | s/log_err/log_warn/ | Henning Brauer | |
it is like warn(3), nor err(3). so use a less confusing name. | |||
2004-01-20 | check early wether user _bgpd exists so we can bail out early and nicely | Henning Brauer | |
prodded by theo | |||
2004-01-17 | Make it possible to announce own networks. In the RDE these prefixes are | Claudio Jeker | |
attached to a pseudo peer and inserted like all other prefixes into the RIB. OK henning@ | |||
2004-01-17 | allow the interfaces as bgpd sees 'em to be queried via imsgs | Henning Brauer | |
2004-01-11 | use bgpd_addr in the nexthop tree; change nexthop_add/_remove accordingly | Henning Brauer | |
ok claudio@ | |||
2004-01-11 | in the nexthop imsgs use struct bgpd_addr for the data part instead of | Henning Brauer | |
in_addr_t ok claudio@ | |||
2004-01-11 | use struct bgpd_addr for nexthop and gateway in struct kroute_nexthop | Henning Brauer | |
(and thus the nexthop messages between parent and RDE) ok claudio@ | |||
2004-01-11 | new message IMSG_CTL_SHOW_NEXTHOP: request/send lost of BGP nexthops and | Henning Brauer | |
the result of their validity check | |||
2004-01-11 | The buffer changes produced some fallout in the mrt code. | Claudio Jeker | |
Wait until all data has been written out before closing the file and fix some obvious misstakes. OK henning@ | |||
2004-01-09 | for IMSG_CTL_KROUTEs allow matching based on flags, | Henning Brauer | |
add IMGS_CTL_KROUTE_ADDR to match the route for a given address ok claudio@ | |||
2004-01-09 | get us a stateful imsg relaying framework, and the first receiver, | Henning Brauer | |
IMSG_CTL_KROUTE, to have the kroute structs forming the fib sent to a control socket. ok claudio@ | |||
2004-01-08 | rename a few functions to further clarify things | Henning Brauer | |
2004-01-06 | 2004 | Henning Brauer | |
2004-01-05 | Big overhaul of the mrt code. | Claudio Jeker | |
Dumping of incomming bgp messages is now possible and dumping the (not yet) filtered updates works too. Per neighbor dumps are still missing. OK henning@ | |||
2004-01-05 | correctly handle SIGCHLD. | Henning Brauer | |
SIGCHLD does _not_ translate to "a child process went kaboom". waitpid() and check status; if the child exited or terminated log & quit ok claudio@ | |||
2004-01-05 | waitpid's return is a pid_t | Henning Brauer | |