uuencode.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Copyright (C) 2000 by Glenn McGrath
  4. *
  5. * based on the function base64_encode from http.c in wget v1.6
  6. * Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
  7. *
  8. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  9. */
  10. #include "busybox.h"
  11. #define SRC_BUF_SIZE 45 // This *MUST* be a multiple of 3
  12. #define DST_BUF_SIZE 4 * ((SRC_BUF_SIZE + 2) / 3)
  13. int uuencode_main(int argc, char **argv)
  14. {
  15. const size_t src_buf_size = SRC_BUF_SIZE;
  16. const size_t dst_buf_size = DST_BUF_SIZE;
  17. size_t write_size = dst_buf_size;
  18. struct stat stat_buf;
  19. FILE *src_stream = stdin;
  20. const char *tbl;
  21. size_t size;
  22. mode_t mode;
  23. RESERVE_CONFIG_BUFFER(src_buf, SRC_BUF_SIZE + 1);
  24. RESERVE_CONFIG_BUFFER(dst_buf, DST_BUF_SIZE + 1);
  25. tbl = bb_uuenc_tbl_std;
  26. if (getopt32(argc, argv, "m") & 1) {
  27. tbl = bb_uuenc_tbl_base64;
  28. }
  29. switch (argc - optind) {
  30. case 2:
  31. src_stream = xfopen(argv[optind], "r");
  32. xstat(argv[optind], &stat_buf);
  33. mode = stat_buf.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
  34. if (src_stream == stdout) {
  35. puts("NULL");
  36. }
  37. break;
  38. case 1:
  39. mode = 0666 & ~umask(0666);
  40. break;
  41. default:
  42. bb_show_usage();
  43. }
  44. printf("begin%s %o %s", tbl == bb_uuenc_tbl_std ? "" : "-base64", mode, argv[argc - 1]);
  45. while ((size = fread(src_buf, 1, src_buf_size, src_stream)) > 0) {
  46. if (size != src_buf_size) {
  47. /* write_size is always 60 until the last line */
  48. write_size = (4 * ((size + 2) / 3));
  49. /* pad with 0s so we can just encode extra bits */
  50. memset(&src_buf[size], 0, src_buf_size - size);
  51. }
  52. /* Encode the buffer we just read in */
  53. bb_uuencode((unsigned char*)src_buf, dst_buf, size, tbl);
  54. putchar('\n');
  55. if (tbl == bb_uuenc_tbl_std) {
  56. putchar(tbl[size]);
  57. }
  58. if (fwrite(dst_buf, 1, write_size, stdout) != write_size) {
  59. bb_perror_msg_and_die(bb_msg_write_error);
  60. }
  61. }
  62. printf(tbl == bb_uuenc_tbl_std ? "\n`\nend\n" : "\n====\n");
  63. die_if_ferror(src_stream, "source"); /* TODO - Fix this! */
  64. fflush_stdout_and_exit(EXIT_SUCCESS);
  65. }