X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Fpidfile.c;h=425b3043a28fdc054f26e03405aad19752eebc0f;hp=61a802f69713c78e78dedfb4bf81680eac884402;hb=d7636352ce359e807b392a6e5ac0a6aeff4a63d2;hpb=42e01abd54bd36ee84a45a2b646cfa27034de8d1 diff --git a/lib/pidfile.c b/lib/pidfile.c index 61a802f6..425b3043 100644 --- a/lib/pidfile.c +++ b/lib/pidfile.c @@ -14,9 +14,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* left unaltered for tinc -- Ivo Timmermans */ @@ -41,7 +41,8 @@ pid_t read_pid (char *pidfile) if (!(f=fopen(pidfile,"r"))) return 0; - fscanf(f,"%ld", &pid); + if(fscanf(f,"%20ld", &pid) != 1) + pid = 0; fclose(f); return pid; } @@ -84,8 +85,12 @@ pid_t write_pid (char *pidfile) int fd; pid_t pid; - if ( ((fd = open(pidfile, O_RDWR|O_CREAT, 0644)) == -1) - || ((f = fdopen(fd, "r+")) == NULL) ) { + if ((fd = open(pidfile, O_RDWR|O_CREAT, 0644)) == -1) { + return 0; + } + + if ((f = fdopen(fd, "r+")) == NULL) { + close(fd); return 0; } @@ -98,18 +103,18 @@ pid_t write_pid (char *pidfile) pid = getpid(); if (!fprintf(f,"%ld\n", (long)pid)) { - close(fd); + fclose(f); return 0; } fflush(f); #ifdef HAVE_FLOCK if (flock(fd, LOCK_UN) == -1) { - close(fd); + fclose(f); return 0; } #endif - close(fd); + fclose(f); return pid; }