1 /* Misc util functions */
3 char const *cvs_id_util
= "$Id: util.c,v 1.7 2004-11-29 02:17:18 bodea Exp $";
8 #include <sys/socket.h>
9 #include <netinet/in.h>
10 #include <arpa/inet.h>
19 // format ipv4 addr as a dotted-quad; n chooses one of 4 static buffers
21 char *fmtaddr(ipt addr
, int n
)
23 static char addrs
[4][16];
26 if (n
< 0 || n
>= 4) return "";
28 return strcpy(addrs
[n
], inet_ntoa(in
));
31 void *shared_malloc(unsigned int size
)
34 p
= mmap(NULL
, size
, PROT_READ
| PROT_WRITE
, MAP_SHARED
| MAP_ANONYMOUS
, 0, 0);
42 extern int udpfd
, controlfd
, tunfd
, snoopfd
, ifrfd
, cluster_sockfd
;
45 pid_t
fork_and_close()
53 if (config
->scheduler_fifo
)
55 struct sched_param params
= {0};
56 params
.sched_priority
= 0;
57 if (sched_setscheduler(0, SCHED_OTHER
, ¶ms
))
59 LOG(0, 0, 0, "Error setting scheduler to OTHER after fork: %s\n", strerror(errno
));
60 LOG(0, 0, 0, "This is probably really really bad.\n");
64 signal(SIGPIPE
, SIG_DFL
);
65 signal(SIGCHLD
, SIG_DFL
);
66 signal(SIGHUP
, SIG_DFL
);
67 signal(SIGUSR1
, SIG_DFL
);
68 signal(SIGQUIT
, SIG_DFL
);
69 signal(SIGKILL
, SIG_DFL
);
70 signal(SIGALRM
, SIG_DFL
);
71 signal(SIGTERM
, SIG_DFL
);
74 if (tunfd
!= -1) close(tunfd
);
75 if (udpfd
!= -1) close(udpfd
);
76 if (controlfd
!= -1) close(controlfd
);
77 if (snoopfd
!= -1) close(snoopfd
);
78 if (ifrfd
!= -1) close(ifrfd
);
79 if (cluster_sockfd
!= -1) close(cluster_sockfd
);
80 if (clifd
!= -1) close(clifd
);
82 for (i
= 0; radfds
&& i
< config
->num_radfds
; i
++)
85 for (i
= 0; i
< BGP_NUM_PEERS
; i
++)
86 if (bgp_peers
[i
].sock
!= -1)
87 close(bgp_peers
[i
].sock
);