Move everything to use the common pidfile functions.
authorJeremy Allison <jra@samba.org>
Thu, 19 Jul 2012 23:36:18 +0000 (16:36 -0700)
committerJeremy Allison <jra@samba.org>
Thu, 19 Jul 2012 23:36:18 +0000 (16:36 -0700)
The extra code in source3/lib/pidfile.c is no longer needed.

source3/libsmb/clidgram.c
source3/nmbd/nmbd.c
source3/smbd/server.c
source3/smbd/server_exit.c
source3/utils/smbcontrol.c
source3/web/startstop.c
source3/web/statuspage.c
source3/winbindd/winbindd.c

index d9de99eb0439c62a7cad5f2ab5ec3e66e2162514..6e3ecb386582d5c0037d207a81b2ae3bf0abedf8 100644 (file)
@@ -26,6 +26,7 @@
 #include "libsmb/nmblib.h"
 #include "messages.h"
 #include "librpc/gen_ndr/samr.h"
+#include "../lib/util/pidfile.h"
 
 /*
  * cli_send_mailslot, send a mailslot for client code ...
@@ -327,7 +328,7 @@ struct tevent_req *nbt_getdc_send(TALLOC_CTX *mem_ctx,
        if (tevent_req_nomem(state->my_mailslot, req)) {
                return tevent_req_post(req, ev);
        }
-       state->nmbd_pid = pidfile_pid_s3("nmbd");
+       state->nmbd_pid = pidfile_pid(lp_piddir(), "nmbd");
        if (state->nmbd_pid == 0) {
                DEBUG(3, ("No nmbd found\n"));
                tevent_req_nterror(req, NT_STATUS_NOT_SUPPORTED);
index df12405adac83f6a9482ffe86dbb4fb420f61a93..a28ed7c393df503c3e7b6bc6e0c5e8839bb04aec 100644 (file)
@@ -25,6 +25,7 @@
 #include "nmbd/nmbd.h"
 #include "serverid.h"
 #include "messages.h"
+#include "../lib/util/pidfile.h"
 
 int ClientNMB       = -1;
 int ClientDGRAM     = -1;
@@ -70,7 +71,7 @@ static void terminate(struct messaging_context *msg)
        gencache_stabilize();
        serverid_deregister(messaging_server_id(msg));
 
-       pidfile_unlink_s3("nmbd");
+       pidfile_unlink(lp_piddir(), "nmbd");
 
        exit(0);
 }
@@ -942,7 +943,7 @@ static bool open_sockets(bool isdaemon, int port)
                mkdir(lp_piddir(), 0755);
        }
 
-       pidfile_create_s3("nmbd");
+       pidfile_create(lp_piddir(), "nmbd");
 
        status = reinit_after_fork(msg, nmbd_event_context(),
                                   false);
index ee1eafb0dc5b52b93cd1f772953cd43e39a8fca4..63edf0020a59aa3f14377032b8ea0a1c561b6d0d 100644 (file)
@@ -43,6 +43,7 @@
 #include "lib/param/param.h"
 #include "lib/background.h"
 #include "lib/conn_tdb.h"
+#include "../lib/util/pidfile.h"
 
 struct smbd_open_socket;
 struct smbd_child_pid;
@@ -1285,7 +1286,7 @@ extern void build_options(bool screen);
                mkdir(lp_piddir(), 0755);
 
        if (is_daemon)
-               pidfile_create_s3("smbd");
+               pidfile_create(lp_piddir(), "smbd");
 
        status = reinit_after_fork(msg_ctx,
                                   ev_ctx,
index ab64b9c8a9c09526fcc6086c997b70706ff3881f..517d4c27da6994f15b4e91b637e57a1f6b48f5f6 100644 (file)
@@ -44,6 +44,7 @@
 #include "printing.h"
 #include "serverid.h"
 #include "messages.h"
+#include "../lib/util/pidfile.h"
 
 static struct files_struct *log_writeable_file_fn(
        struct files_struct *fsp, void *private_data)
@@ -216,7 +217,7 @@ static void exit_server_common(enum server_exit_reason how,
                DEBUG(3,("Server exit (%s)\n",
                        (reason ? reason : "normal exit")));
                if (am_parent) {
-                       pidfile_unlink_s3("smbd");
+                       pidfile_unlink(lp_piddir(), "smbd");
                }
                gencache_stabilize();
        }
index dbbd8049de833efbe6020351c2f09a72c38fe21e..54c5d62c9774038f6e72c341efde0dab8c213d0e 100644 (file)
@@ -32,6 +32,7 @@
 #include "libsmb/nmblib.h"
 #include "messages.h"
 #include "util_tdb.h"
+#include "../lib/util/pidfile.h"
 
 #if HAVE_LIBUNWIND_H
 #include <libunwind.h>
@@ -1365,7 +1366,7 @@ static struct server_id parse_dest(struct messaging_context *msg,
 
        /* Look up other destinations in pidfile directory */
 
-       if ((pid = pidfile_pid_s3(dest)) != 0) {
+       if ((pid = pidfile_pid(lp_piddir(), dest)) != 0) {
                return pid_to_procid(pid);
        }
 
index ef2871ccd3a5378f79bbf33acf95867d7b37f142..ec8f802ae95caf3db30b451243b6c071a7998977 100644 (file)
@@ -20,7 +20,7 @@
 #include "includes.h"
 #include "web/swat_proto.h"
 #include "dynconfig/dynconfig.h"
-
+#include "../lib/util/pidfile.h"
 
 /** Startup smbd from web interface. */
 void start_smbd(void)
@@ -86,7 +86,7 @@ void start_winbindd(void)
 /* stop smbd */
 void stop_smbd(void)
 {
-       pid_t pid = pidfile_pid_s3("smbd");
+       pid_t pid = pidfile_pid(lp_piddir(), "smbd");
 
        if (geteuid() != 0) return;
 
@@ -98,7 +98,7 @@ void stop_smbd(void)
 /* stop nmbd */
 void stop_nmbd(void)
 {
-       pid_t pid = pidfile_pid_s3("nmbd");
+       pid_t pid = pidfile_pid(lp_piddir(), "nmbd");
 
        if (geteuid() != 0) return;
 
@@ -110,7 +110,7 @@ void stop_nmbd(void)
 /* stop winbindd */
 void stop_winbindd(void)
 {
-       pid_t pid = pidfile_pid_s3("winbindd");
+       pid_t pid = pidfile_pid(lp_piddir(), "winbindd");
 
        if (geteuid() != 0) return;
 
index d04554901c562e21f6da05d2c24aab705df1f165..d25797064332429712c9b3d4a0f1230ae3c763a9 100644 (file)
@@ -23,6 +23,7 @@
 #include "locking/proto.h"
 #include "librpc/gen_ndr/open_files.h"
 #include "lib/conn_tdb.h"
+#include "../lib/util/pidfile.h"
 
 #define _(x) lang_msg_rotate(talloc_tos(),x)
 
@@ -253,7 +254,7 @@ void status_page(void)
        TALLOC_CTX *ctx = talloc_stackframe();
        const char form_name[] = "status";
 
-       smbd_pid = pid_to_procid(pidfile_pid_s3("smbd"));
+       smbd_pid = pid_to_procid(pidfile_pid(lp_piddir(), "smbd"));
 
        if (!verify_xsrf_token(form_name)) {
                goto output_page;
index c2ac2e003242727380d12f9f8751ef597e54d2ff..685ef488818e70617b96424558b3dd54019203dc 100644 (file)
@@ -36,6 +36,7 @@
 #include "serverid.h"
 #include "auth.h"
 #include "messages.h"
+#include "../lib/util/pidfile.h"
 
 #undef DBGC_CLASS
 #define DBGC_CLASS DBGC_WINBIND
@@ -184,7 +185,7 @@ static void terminate(bool is_parent)
 
        if (is_parent) {
                serverid_deregister(procid_self());
-               pidfile_unlink_s3("winbindd");
+               pidfile_unlink(lp_piddir(), "winbindd");
        }
 
        exit(0);
@@ -1449,7 +1450,7 @@ int main(int argc, char **argv, char **envp)
        if (!interactive)
                become_daemon(Fork, no_process_group, log_stdout);
 
-       pidfile_create_s3("winbindd");
+       pidfile_create(lp_piddir(), "winbindd");
 
 #if HAVE_SETPGID
        /*