patch-cmdline.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * patch-cmdline.c - patch the kernel command line on rb532
  3. *
  4. * Copyright (C) 2006 Felix Fietkau <[email protected]>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or (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
  14. * GNU 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. * $Id:$
  21. */
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <stddef.h>
  25. #include <unistd.h>
  26. #include <fcntl.h>
  27. #include <sys/mman.h>
  28. #include <sys/stat.h>
  29. #include <string.h>
  30. #define SEARCH_SPACE (16 * 1024)
  31. #define CMDLINE_MAX 512
  32. int main(int argc, char **argv)
  33. {
  34. int fd, found = 0, len, ret = -1;
  35. char *ptr, *p;
  36. if (argc != 3) {
  37. fprintf(stderr, "Usage: %s <file> <cmdline>\n", argv[0]);
  38. goto err1;
  39. }
  40. len = strlen(argv[2]);
  41. if (len + 9 > CMDLINE_MAX) {
  42. fprintf(stderr, "Command line string too long\n");
  43. goto err1;
  44. }
  45. if (((fd = open(argv[1], O_RDWR)) < 0) ||
  46. (ptr = (char *) mmap(0, SEARCH_SPACE + CMDLINE_MAX, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0)) == (void *) (-1)) {
  47. fprintf(stderr, "Could not open kernel image");
  48. goto err2;
  49. }
  50. for (p = ptr; p < (ptr + SEARCH_SPACE); p += 4) {
  51. if (memcmp(p, "CMDLINE:", 8) == 0) {
  52. found = 1;
  53. p += 8;
  54. break;
  55. }
  56. }
  57. if (!found) {
  58. fprintf(stderr, "Command line marker not found!\n");
  59. goto err3;
  60. }
  61. memset(p, 0, CMDLINE_MAX - 8);
  62. strcpy(p, argv[2]);
  63. msync(p, CMDLINE_MAX, MS_SYNC|MS_INVALIDATE);
  64. ret = 0;
  65. err3:
  66. munmap((void *) ptr, len);
  67. err2:
  68. if (fd > 0)
  69. close(fd);
  70. err1:
  71. return ret;
  72. }