2 * Samba Unix/Linux SMB client library
3 * Interface to the g_lock facility
4 * Copyright (C) Volker Lendecke 2009
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 static bool net_g_lock_init(TALLOC_CTX
*mem_ctx
,
26 struct tevent_context
**pev
,
27 struct messaging_context
**pmsg
,
28 struct g_lock_ctx
**pg_ctx
)
30 struct tevent_context
*ev
= NULL
;
31 struct messaging_context
*msg
= NULL
;
32 struct g_lock_ctx
*g_ctx
= NULL
;
34 ev
= samba_tevent_context_init(mem_ctx
);
36 d_fprintf(stderr
, "ERROR: could not init event context\n");
39 msg
= messaging_init(mem_ctx
, ev
);
41 d_fprintf(stderr
, "ERROR: could not init messaging context\n");
44 g_ctx
= g_lock_ctx_init(mem_ctx
, msg
);
46 d_fprintf(stderr
, "ERROR: could not init g_lock context\n");
61 struct net_g_lock_do_state
{
66 static void net_g_lock_do_fn(void *private_data
)
68 struct net_g_lock_do_state
*state
=
69 (struct net_g_lock_do_state
*)private_data
;
70 state
->result
= system(state
->cmd
);
73 static int net_g_lock_do(struct net_context
*c
, int argc
, const char **argv
)
75 struct net_g_lock_do_state state
;
76 const char *name
, *cmd
;
81 d_printf("Usage: net g_lock do <lockname> <timeout> "
86 timeout
= atoi(argv
[1]);
92 status
= g_lock_do(name
, G_LOCK_WRITE
,
93 timeval_set(timeout
/ 1000, timeout
% 1000),
94 net_g_lock_do_fn
, &state
);
95 if (!NT_STATUS_IS_OK(status
)) {
96 d_fprintf(stderr
, "ERROR: g_lock_do failed: %s\n",
100 if (state
.result
== -1) {
101 d_fprintf(stderr
, "ERROR: system() returned %s\n",
105 d_fprintf(stderr
, "command returned %d\n", state
.result
);
111 static int net_g_lock_dump_fn(struct server_id pid
, enum g_lock_type lock_type
,
116 pidstr
= server_id_str(talloc_tos(), &pid
);
117 d_printf("%s: %s\n", pidstr
,
118 (lock_type
& 1) ? "WRITE" : "READ");
123 static int net_g_lock_dump(struct net_context
*c
, int argc
, const char **argv
)
125 struct tevent_context
*ev
= NULL
;
126 struct messaging_context
*msg
= NULL
;
127 struct g_lock_ctx
*g_ctx
= NULL
;
131 d_printf("Usage: net g_lock dump <lockname>\n");
135 if (!net_g_lock_init(talloc_tos(), &ev
, &msg
, &g_ctx
)) {
139 (void)g_lock_dump(g_ctx
, argv
[0], net_g_lock_dump_fn
, NULL
);
149 static int net_g_lock_locks_fn(const char *name
, void *private_data
)
151 d_printf("%s\n", name
);
155 static int net_g_lock_locks(struct net_context
*c
, int argc
, const char **argv
)
157 struct tevent_context
*ev
= NULL
;
158 struct messaging_context
*msg
= NULL
;
159 struct g_lock_ctx
*g_ctx
= NULL
;
163 d_printf("Usage: net g_lock locks\n");
167 if (!net_g_lock_init(talloc_tos(), &ev
, &msg
, &g_ctx
)) {
171 ret
= g_lock_locks(g_ctx
, net_g_lock_locks_fn
, NULL
);
176 return ret
< 0 ? -1 : ret
;
179 int net_g_lock(struct net_context
*c
, int argc
, const char **argv
)
181 struct functable func
[] = {
186 N_("Execute a shell command under a lock"),
187 N_("net g_lock do <lock name> <timeout> <command>\n")
193 N_("List all locknames"),
194 N_("net g_lock locks\n")
200 N_("Dump a g_lock locking table"),
201 N_("net g_lock dump <lock name>\n")
203 {NULL
, NULL
, 0, NULL
, NULL
}
206 return net_run_function(c
, argc
, argv
, "net g_lock", func
);