2 Chown command -- for the Midnight Commander
4 Copyright (C) 1994-2024
5 Free Software Foundation, Inc.
7 This file is part of the Midnight Commander.
9 The Midnight Commander is free software: you can redistribute it
10 and/or modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation, either version 3 of the License,
12 or (at your option) any later version.
14 The Midnight Commander is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * \brief Source: chown command
34 #include <sys/types.h>
38 #include "lib/global.h"
40 #include "lib/tty/tty.h"
42 #include "lib/vfs/vfs.h"
43 #include "lib/strutil.h"
45 #include "lib/widget.h"
47 #include "src/setup.h" /* panels_options */
49 #include "cmd.h" /* chown_cmd() */
51 /*** global variables ****************************************************************************/
53 /*** file scope macro definitions ****************************************************************/
60 #define B_SETALL B_USER
61 #define B_SETUSR (B_USER + 1)
62 #define B_SETGRP (B_USER + 2)
66 #define chown_label(n,txt) label_set_text (chown_label [n].l, txt)
68 /*** file scope type declarations ****************************************************************/
70 /*** forward declarations (file scope functions) *************************************************/
72 /*** file scope variables ************************************************************************/
81 } chown_but
[BUTTONS
] =
84 { B_SETALL
, NORMAL_BUTTON
, 5, 0, N_("Set &all") },
85 { B_SETGRP
, NORMAL_BUTTON
, 5, 0, N_("Set &groups") },
86 { B_SETUSR
, NORMAL_BUTTON
, 5, 0, N_("Set &users") },
87 { B_ENTER
, DEFPUSH_BUTTON
, 3, 0, N_("&Set") },
88 { B_CANCEL
, NORMAL_BUTTON
, 3, 0, N_("&Cancel") }
92 /* summary length of three buttons */
99 } chown_label
[LABELS
] =
110 static int current_file
;
111 static gboolean ignore_all
;
113 static WListbox
*l_user
, *l_group
;
115 /* --------------------------------------------------------------------------------------------- */
116 /*** file scope functions ************************************************************************/
117 /* --------------------------------------------------------------------------------------------- */
122 static gboolean i18n
= FALSE
;
131 for (i
= 0; i
< BUTTONS
; i
++)
132 chown_but
[i
].text
= _(chown_but
[i
].text
);
133 #endif /* ENABLE_NLS */
135 for (i
= 0; i
< BUTTONS
; i
++)
137 chown_but
[i
].len
= str_term_width1 (chown_but
[i
].text
) + 3; /* [], spaces and w/o & */
138 if (chown_but
[i
].flags
== DEFPUSH_BUTTON
)
139 chown_but
[i
].len
+= 2; /* <> */
142 blen
+= chown_but
[i
].len
;
148 /* --------------------------------------------------------------------------------------------- */
151 chown_refresh (const Widget
* h
)
156 tty_setcolor (COLOR_NORMAL
);
158 widget_gotoyx (h
, y
+ 0, x
);
159 tty_print_string (_("Name"));
160 widget_gotoyx (h
, y
+ 2, x
);
161 tty_print_string (_("Owner name"));
162 widget_gotoyx (h
, y
+ 4, x
);
163 tty_print_string (_("Group name"));
164 widget_gotoyx (h
, y
+ 6, x
);
165 tty_print_string (_("Size"));
166 widget_gotoyx (h
, y
+ 8, x
);
167 tty_print_string (_("Permission"));
170 /* --------------------------------------------------------------------------------------------- */
173 chown_bg_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
178 frame_callback (w
, NULL
, MSG_DRAW
, 0, NULL
);
179 chown_refresh (WIDGET (w
->owner
));
183 return frame_callback (w
, sender
, msg
, parm
, data
);
187 /* --------------------------------------------------------------------------------------------- */
190 chown_dlg_create (WPanel
* panel
)
197 struct passwd
*l_pass
;
200 single_set
= (panel
->marked
< 2) ? 3 : 0;
201 lines
= GH
+ 4 + (single_set
!= 0 ? 2 : 4);
202 cols
= GW
* 3 + 2 + 6;
205 dlg_create (TRUE
, 0, 0, lines
, cols
, WPOS_CENTER
, FALSE
, dialog_colors
, NULL
, NULL
,
206 "[Chown]", _("Chown command"));
209 /* draw background */
210 ch_dlg
->bg
->callback
= chown_bg_callback
;
212 group_add_widget (g
, groupbox_new (2, 3, GH
, GW
, _("User name")));
213 l_user
= listbox_new (3, 4, GH
- 2, GW
- 2, FALSE
, NULL
);
214 group_add_widget (g
, l_user
);
215 /* add field for unknown names (numbers) */
216 listbox_add_item (l_user
, LISTBOX_APPEND_AT_END
, 0, _("<Unknown user>"), NULL
, FALSE
);
217 /* get and put user names in the listbox */
219 while ((l_pass
= getpwent ()) != NULL
)
220 listbox_add_item (l_user
, LISTBOX_APPEND_SORTED
, 0, l_pass
->pw_name
, NULL
, FALSE
);
223 group_add_widget (g
, groupbox_new (2, 4 + GW
, GH
, GW
, _("Group name")));
224 l_group
= listbox_new (3, 5 + GW
, GH
- 2, GW
- 2, FALSE
, NULL
);
225 group_add_widget (g
, l_group
);
226 /* add field for unknown names (numbers) */
227 listbox_add_item (l_group
, LISTBOX_APPEND_AT_END
, 0, _("<Unknown group>"), NULL
, FALSE
);
228 /* get and put group names in the listbox */
230 while ((l_grp
= getgrent ()) != NULL
)
231 listbox_add_item (l_group
, LISTBOX_APPEND_SORTED
, 0, l_grp
->gr_name
, NULL
, FALSE
);
234 group_add_widget (g
, groupbox_new (2, 5 + GW
* 2, GH
, GW
, _("File")));
235 /* add widgets for the file information */
236 for (i
= 0; i
< LABELS
; i
++)
238 chown_label
[i
].l
= label_new (chown_label
[i
].y
, 7 + GW
* 2, NULL
);
239 group_add_widget (g
, chown_label
[i
].l
);
246 group_add_widget (g
, hline_new (lines
- chown_but
[0].y
- 1, -1, -1));
248 y
= lines
- chown_but
[0].y
;
249 x
= (cols
- blen
) / 2;
251 for (i
= 0; i
< BUTTONS
- 2; i
++)
253 group_add_widget (g
, button_new (y
, x
, chown_but
[i
].ret_cmd
, chown_but
[i
].flags
,
254 chown_but
[i
].text
, NULL
));
255 x
+= chown_but
[i
].len
+ 1;
260 y
= lines
- chown_but
[i
].y
;
261 group_add_widget (g
, hline_new (y
- 1, -1, -1));
262 group_add_widget (g
, button_new (y
, WIDGET (ch_dlg
)->rect
.cols
/ 2 - chown_but
[i
].len
,
263 chown_but
[i
].ret_cmd
, chown_but
[i
].flags
, chown_but
[i
].text
,
266 group_add_widget (g
, button_new (y
, WIDGET (ch_dlg
)->rect
.cols
/ 2 + 1, chown_but
[i
].ret_cmd
,
267 chown_but
[i
].flags
, chown_but
[i
].text
, NULL
));
269 /* select first listbox */
270 widget_select (WIDGET (l_user
));
275 /* --------------------------------------------------------------------------------------------- */
278 chown_done (gboolean need_update
)
281 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
285 /* --------------------------------------------------------------------------------------------- */
287 static const GString
*
288 next_file (const WPanel
* panel
)
290 while (panel
->dir
.list
[current_file
].f
.marked
== 0)
293 return panel
->dir
.list
[current_file
].fname
;
296 /* --------------------------------------------------------------------------------------------- */
299 try_chown (const vfs_path_t
* p
, uid_t u
, gid_t g
)
301 const char *fname
= NULL
;
303 while (mc_chown (p
, u
, g
) == -1 && !ignore_all
)
305 int my_errno
= errno
;
310 fname
= x_basename (vfs_path_as_str (p
));
311 msg
= g_strdup_printf (_("Cannot chown \"%s\"\n%s"), fname
, unix_error_string (my_errno
));
313 query_dialog (MSG_ERROR
, msg
, D_ERROR
, 4, _("&Ignore"), _("Ignore &all"), _("&Retry"),
329 /* retry this file */
334 /* stop remain files processing */
342 /* --------------------------------------------------------------------------------------------- */
345 do_chown (WPanel
* panel
, const vfs_path_t
* p
, uid_t u
, gid_t g
)
349 ret
= try_chown (p
, u
, g
);
351 do_file_mark (panel
, current_file
, 0);
356 /* --------------------------------------------------------------------------------------------- */
359 apply_chowns (WPanel
* panel
, vfs_path_t
* vpath
, uid_t u
, gid_t g
)
363 if (!do_chown (panel
, vpath
, u
, g
))
368 const GString
*fname
;
371 fname
= next_file (panel
);
372 vpath
= vfs_path_from_str (fname
->str
);
373 ok
= (mc_stat (vpath
, &sf
) == 0);
377 /* if current file was deleted outside mc -- try next file */
378 /* decrease panel->marked */
379 do_file_mark (panel
, current_file
, 0);
385 ok
= do_chown (panel
, vpath
, u
, g
);
387 vfs_path_free (vpath
, TRUE
);
389 while (ok
&& panel
->marked
!= 0);
392 /* --------------------------------------------------------------------------------------------- */
393 /*** public functions ****************************************************************************/
394 /* --------------------------------------------------------------------------------------------- */
397 chown_cmd (WPanel
* panel
)
399 gboolean need_update
;
408 { /* do while any files remaining */
412 const GString
*fname
;
414 char buffer
[BUF_TINY
];
415 uid_t new_user
= (uid_t
) (-1);
416 gid_t new_group
= (gid_t
) (-1);
423 if (panel
->marked
!= 0)
424 fname
= next_file (panel
); /* next marked file */
426 fname
= panel_current_entry (panel
)->fname
; /* single file */
428 vpath
= vfs_path_from_str (fname
->str
);
430 if (mc_stat (vpath
, &sf_stat
) != 0)
432 vfs_path_free (vpath
, TRUE
);
436 ch_dlg
= chown_dlg_create (panel
);
438 /* select in listboxes */
439 listbox_set_current (l_user
, listbox_search_text (l_user
, get_owner (sf_stat
.st_uid
)));
440 listbox_set_current (l_group
, listbox_search_text (l_group
, get_group (sf_stat
.st_gid
)));
442 chown_label (0, str_trunc (fname
->str
, GW
- 4));
443 chown_label (1, str_trunc (get_owner (sf_stat
.st_uid
), GW
- 4));
444 chown_label (2, str_trunc (get_group (sf_stat
.st_gid
), GW
- 4));
445 size_trunc_len (buffer
, GW
- 4, sf_stat
.st_size
, 0, panels_options
.kilobyte_si
);
446 chown_label (3, buffer
);
447 chown_label (4, string_perm (sf_stat
.st_mode
));
449 result
= dlg_run (ch_dlg
);
464 listbox_get_current (l_group
, &text
, NULL
);
465 grp
= getgrnam (text
);
467 new_group
= grp
->gr_gid
;
468 listbox_get_current (l_user
, &text
, NULL
);
469 user
= getpwnam (text
);
471 new_user
= user
->pw_uid
;
472 if (result
== B_ENTER
)
474 if (panel
->marked
<= 1)
476 /* single or last file */
477 if (mc_chown (vpath
, new_user
, new_group
) == -1)
478 message (D_ERROR
, MSG_ERROR
, _("Cannot chown \"%s\"\n%s"),
479 fname
->str
, unix_error_string (errno
));
482 else if (!try_chown (vpath
, new_user
, new_group
))
484 /* stop multiple files processing */
491 apply_chowns (panel
, vpath
, new_user
, new_group
);
504 listbox_get_current (l_user
, &text
, NULL
);
505 user
= getpwnam (text
);
508 new_user
= user
->pw_uid
;
509 apply_chowns (panel
, vpath
, new_user
, new_group
);
521 listbox_get_current (l_group
, &text
, NULL
);
522 grp
= getgrnam (text
);
525 new_group
= grp
->gr_gid
;
526 apply_chowns (panel
, vpath
, new_user
, new_group
);
537 if (panel
->marked
!= 0 && result
!= B_CANCEL
)
539 do_file_mark (panel
, current_file
, 0);
543 vfs_path_free (vpath
, TRUE
);
545 widget_destroy (WIDGET (ch_dlg
));
547 while (panel
->marked
!= 0 && !end_chown
);
549 chown_done (need_update
);
552 /* --------------------------------------------------------------------------------------------- */