Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
73383c25
Commit
73383c25
authored
12 years ago
by
Felix Fietkau
Browse files
Options
Downloads
Patches
Plain Diff
pptp: kill the call manager process on shutdown
SVN-Revision: 31606
parent
3225530e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
package/pptp/patches/100-signal_cleanup.patch
+74
-0
74 additions, 0 deletions
package/pptp/patches/100-signal_cleanup.patch
with
74 additions
and
0 deletions
package/pptp/patches/100-signal_cleanup.patch
0 → 100644
+
74
−
0
View file @
73383c25
--- a/pptp.c
+++ b/pptp.c
@@ -60,6 +60,7 @@
int syncppp = 0;
int log_level = 1;
int disable_buffer = 0;
+pid_t callmgr_pid = 0;
struct in_addr get_ip_address(char *name);
int open_callmgr(struct in_addr inetaddr, char *phonenr, int argc,char **argv,char **envp, int pty_fd, int gre_fd);
@@ -115,6 +116,8 @@
sigjmp_buf env;
/*** signal handler ***********************************************************/
void sighandler(int sig)
{
+ fprintf(stderr, "Got signal, pid=%d\n", callmgr_pid);
+ fflush(stderr);
siglongjmp(env, 1);
}
@@ -330,6 +333,14 @@
int main(int argc, char **argv, char **e
parent_pid = 0; /* don't kill pppd */
}
+ if (sigsetjmp(env, 1)!= 0) goto shutdown;
+
+ signal(SIGINT, sighandler);
+ signal(SIGTERM, sighandler);
+ signal(SIGKILL, sighandler);
+ signal(SIGCHLD, sighandler);
+ signal(SIGUSR1, sigstats);
+
do {
/*
* Open connection to call manager (Launch call manager if necessary.)
@@ -360,13 +371,6 @@
int main(int argc, char **argv, char **e
if (rc != 0) perror("prctl");
#endif
inststr(argc, argv, envp, buf);
- if (sigsetjmp(env, 1)!= 0) goto shutdown;
-
- signal(SIGINT, sighandler);
- signal(SIGTERM, sighandler);
- signal(SIGKILL, sighandler);
- signal(SIGCHLD, sighandler);
- signal(SIGUSR1, sigstats);
/* Do GRE copy until close. */
pptp_gre_copy(call_id, peer_call_id, pty_fd, gre_fd);
@@ -375,6 +379,8 @@
shutdown:
/* on close, kill all. */
if(launchpppd)
kill(parent_pid, SIGTERM);
+ if (callmgr_pid)
+ kill(callmgr_pid, SIGTERM);
close(pty_fd);
close(callmgr_sock);
exit(0);
@@ -407,7 +413,7 @@
int open_callmgr(struct in_addr inetaddr
struct sockaddr_un where;
const int NUM_TRIES = 3;
int i, fd;
- pid_t pid;
+ pid_t pid = 0;
int status;
/* Open socket */
if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
@@ -434,6 +440,7 @@
int open_callmgr(struct in_addr inetaddr
launch_callmgr(inetaddr, phonenr, argc, argv, envp);
}
default: /* parent */
+ callmgr_pid = pid;
waitpid(pid, &status, 0);
if (status!= 0)
fatal("Call manager exited with error %d", status);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment