Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mini losetup implementation for busybox |
| 3 | * |
| 4 | * Copyright (C) 2002 Matt Kraai. |
| 5 | * |
| 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 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 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 GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | #include <getopt.h> |
| 23 | #include <stdlib.h> |
| 24 | |
| 25 | #include "busybox.h" |
| 26 | |
Rob Landley | 1d589b2 | 2005-11-29 23:47:10 +0000 | [diff] [blame] | 27 | int losetup_main (int argc, char **argv) |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 28 | { |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 29 | int offset = 0; |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 30 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 31 | /* This will need a "while(getopt()!=-1)" loop when we can have more than |
| 32 | one option, but for now we can't. */ |
| 33 | switch(getopt(argc,argv, "do:")) { |
| 34 | case 'd': |
| 35 | /* detach takes exactly one argument */ |
Rob Landley | 1d589b2 | 2005-11-29 23:47:10 +0000 | [diff] [blame] | 36 | if(optind+1==argc && !del_loop(argv[optind])) return EXIT_SUCCESS; |
| 37 | die_failed: |
| 38 | bb_perror_msg_and_die("%s",argv[optind]); |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 39 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 40 | case 'o': |
| 41 | offset = bb_xparse_number (optarg, NULL); |
| 42 | /* Fall through to do the losetup */ |
| 43 | case -1: |
| 44 | /* losetup takes two argument:, loop_device and file */ |
Rob Landley | 1d589b2 | 2005-11-29 23:47:10 +0000 | [diff] [blame] | 45 | if(optind+2==argc) { |
| 46 | if(set_loop(&argv[optind], argv[optind + 1], offset)>=0) |
| 47 | return EXIT_SUCCESS; |
| 48 | else goto die_failed; |
| 49 | } |
| 50 | if(optind+1==argc) { |
| 51 | char *s=query_loop(argv[optind]); |
| 52 | if (!s) goto die_failed; |
| 53 | printf("%s: %s\n",argv[optind],s); |
| 54 | if(ENABLE_FEATURE_CLEAN_UP) free(s); |
| 55 | return EXIT_SUCCESS; |
| 56 | } |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 57 | break; |
| 58 | } |
| 59 | bb_show_usage(); |
| 60 | return EXIT_FAILURE; |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 61 | } |