File: pidfile.c

package info (click to toggle)
jpilot 1.8.1.2-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,660 kB
  • sloc: ansic: 41,310; sh: 11,788; makefile: 272
file content (101 lines) | stat: -rw-r--r-- 2,704 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* $Id: pidfile.c,v 1.6 2010-03-29 05:44:30 rikster5 Exp $ */

/*******************************************************************************
 * pidfile.c
 * A module of J-Pilot http://jpilot.org
 *
 * Copyright (C) 2005 by Jason Day
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * 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-1307  USA
 */

/********************************* Includes ***********************************/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <signal.h>

#include "i18n.h"
#include "log.h"
#include "utils.h"
#include "pidfile.h"

/********************************* Constants **********************************/
#define JPILOT_PIDFILE  "jpilot.pid"

#ifndef O_SYNC
#  define O_SYNC  0       /* use it if we have it */
#endif

/******************************* Global vars **********************************/
static char pidfile[FILENAME_MAX];

/****************************** Main Code *************************************/
void setup_pidfile(void)
{
   memset(pidfile, 0, FILENAME_MAX);
   get_home_file_name(JPILOT_PIDFILE, pidfile, FILENAME_MAX);
}

pid_t check_for_jpilot(void)
{
   FILE *pidfp;
   int pid;

   pid = 0;
   if ((pidfp = fopen(pidfile, "r")) != NULL) {
      fscanf(pidfp, "%d", &pid);

      if (kill (pid, 0) == -1) {
         jp_logf(JP_LOG_WARN, _("removing stale pidfile\n"));
         pid = 0;
         unlink(pidfile);
      }

      fclose(pidfp);
   }

   return pid;
}

void write_pid(void)
{
   char tmp[20];
   int fd;

   jp_logf(JP_LOG_DEBUG, "pidfile: %s\n", pidfile);
   if ((fd = open(pidfile, O_WRONLY|O_CREAT|O_EXCL|O_SYNC, S_IRUSR|S_IWUSR)) != -1)
   {
      g_snprintf(tmp, sizeof(tmp), "%d\n", getpid());
      write(fd, tmp, strlen (tmp));
      close(fd);
   }
   else {
      jp_logf(JP_LOG_FATAL,_("create pidfile failed: %s\n"), strerror(errno));
      jp_logf(JP_LOG_WARN, _("Warning: hotplug syncing disabled.\n"));
   }
}

void cleanup_pidfile(void)
{
   if (getpid() == check_for_jpilot())
      unlink(pidfile);
}